:root {
  --sp-bg: #ffffff;
  --sp-text: #222222;
  --sp-sage: #6fb52d;
  --sp-ochre: #1f6f2b;
  --sp-white: #ffffff;
  --club-red: #e43025;
}
body {
  background: #f4f4f4;
  color: #222222;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
a { color: #1f6f2b; text-decoration: none; }
a:hover { text-decoration: underline; }
.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 42px;
}
.brand img {
  width: 150px;
  height: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  max-width: 820px;
  padding-top: 12px;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 15px;
}
.main-nav a {
  color: #1f6f2b;
  text-shadow: 0 1px 1px rgba(255,255,255,.45);
}
.nav-item-wrap { position: relative; display: inline-flex; }
.nav-children {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(31,27,22,.86);
  padding: 8px 0;
}
.nav-children a {
  display: block;
  padding: 8px 12px;
  text-shadow: none;
}
.nav-item-wrap:hover .nav-children,
.nav-item-wrap:focus-within .nav-children { display: block; }
.hero {
  min-height: 650px;
  background: linear-gradient(90deg, rgba(255,255,255,.48), rgba(255,255,255,.06)), url("/assets/images/course-aerial.jpg") center / cover no-repeat;
  position: relative;
  padding: 28px 42px;
}
.hero-copy {
  padding-top: 330px;
  max-width: 560px;
}
.hero-copy h1 {
  margin: 0 0 14px;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 38px;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero-copy p {
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 18px;
}
.booking-button {
  display: inline-block;
  background: #e43025;
  color: #222222;
  padding: 9px 14px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  border-radius: 2px;
}
.photo-band {
  margin: -110px 22px 0;
  min-height: 230px;
  background: linear-gradient(rgba(20,18,12,.52), rgba(20,18,12,.52)), url("/assets/images/golf-course.jpg") center / cover no-repeat;
  position: relative;
  padding: 32px;
  color: #ffffff;
}
.photo-band img { width: 150px; opacity: .9; }
.page-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 38px 24px 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
}
.content-panel {
  min-width: 0;
  background: transparent;
}
.page-title {
  margin-bottom: 22px;
}
.page-title h1 {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 30px;
  line-height: 1.2;
  margin: 0;
}
.section-label, .tag {
  color: #6fb52d;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.content-flow {
  overflow-wrap: anywhere;
}
.content-flow p { margin: 0 0 1rem; }
.content-flow h2, .content-flow h3, .content-flow h4 {
  font-family: "Roboto Slab", Georgia, serif;
  color: #6fb52d;
  margin: 1.2rem 0 .6rem;
}
.content-image { margin: 0 0 18px; }
.content-image img, .gallery-grid img, .story-thumb img {
  max-width: 100%;
  height: auto;
  display: block;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 18px 0;
}
.content-list { padding-left: 1.2rem; }
.item-list { display: grid; gap: 14px; }
.story-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  background: #ffffff;
  border-top: 4px solid #6fb52d;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(31,27,22,.08);
}
.story-body h3 {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 20px;
  margin: 4px 0 8px;
}
.story-body h3 a { color: #222222; }
.table-wrap { max-width: 100%; overflow-x: auto; margin: 18px 0; }
.table-wrap table {
  border-collapse: collapse;
  min-width: 620px;
  width: 100%;
}
.table-wrap td,
.table-wrap th {
  border: 1px solid rgba(31,27,22,.16);
  overflow-wrap: anywhere;
  padding: 8px;
  vertical-align: top;
}
.article-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr);
}
.article-layout.navpos-left {
  grid-template-columns: 240px minmax(0, 1fr);
}
.article-layout.navpos-right {
  grid-template-columns: minmax(0, 1fr) 240px;
}
.article-layout.navpos-left .content-panel {
  order: 2;
}
.article-layout.navpos-left .toc.side {
  order: 1;
}
.toc {
  background: rgba(255,255,255,.55);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  padding: 10px;
}
.toc.side {
  align-self: start;
  display: grid;
  margin: 0;
}
.toc a {
  overflow-wrap: anywhere;
}
.hub-editorial {
  margin-bottom: 28px;
  overflow-wrap: anywhere;
}
.category-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.category-grid.columns-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.category-grid.columns-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.category-card {
  background: #ffffff;
  border-top: 4px solid #6fb52d;
  box-shadow: 0 8px 24px rgba(31,27,22,.08);
  min-width: 0;
  padding: 18px;
}
.category-card h2 {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 20px;
  line-height: 1.18;
  overflow-wrap: anywhere;
}
.category-card p,
.category-card a {
  overflow-wrap: anywhere;
}
blockquote {
  border-left: 5px solid #1f6f2b;
  background: rgba(255,255,255,.55);
  padding: 10px 16px;
}
.sidebar { display: grid; align-content: start; gap: 16px; }
.side-module {
  background: #ffffff;
  border-top: 4px solid #6fb52d;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(31,27,22,.08);
}
.side-module h3 {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 19px;
  margin: 0 0 10px;
}
.side-module ul { list-style: none; margin: 0; padding: 0; }
.side-module li {
  border-bottom: 1px solid rgba(31,27,22,.12);
  padding: 7px 0;
}
.site-footer {
  background: #222222;
  color: #ffffff;
  border-top: 4px solid #e43025;
  padding: 24px;
  text-align: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}
.breadcrumbs, .breadcrumb { max-width: 1120px; margin: 0 auto; padding: 12px 24px 0; }
@media (max-width: 840px) {
  .site-header { position: static; background: #ffffff; padding: 22px; display: block; }
  .main-nav { display: block; }
  .main-nav a { display: block; padding: 6px 0; }
  .hero { min-height: 560px; }
  .hero-copy { padding-top: 180px; }
  .page-shell, .story-card { grid-template-columns: 1fr; }
  .photo-band { margin: -80px 12px 0; }
  .article-layout,
  .article-layout.navpos-left,
  .article-layout.navpos-right,
  .category-grid,
  .category-grid.columns-2,
  .category-grid.columns-4 {
    grid-template-columns: minmax(0, 1fr);
  }
  .article-layout.navpos-left .content-panel,
  .article-layout.navpos-left .toc.side {
    order: initial;
  }
  .table-wrap table {
    min-width: 0;
    table-layout: fixed;
  }
}
