:root {
  --pine:    #1E2D24;
  --brown:   #6B472C;
  --gold:    #B08A4B;
  --gold-lt: #C9A96E;
  --cream:   #F5F2EC;
  --cream-dk:#EAE5DA;
  --slate:   #4A4F4B;
  --white:   #FDFAF5;
  --text:    #2A2A2A;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Cormorant Garamond', Georgia, serif;
  overflow-x: hidden;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
.noise-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 72px;
  background: transparent;
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(176, 138, 75, 0.1);
}

/* Adjust for WordPress Admin Bar */
body.admin-bar nav {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar nav {
    top: 46px;
  }
}

nav.scrolled {
  height: 60px;
  background: rgba(20, 32, 26, 0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

body.admin-bar nav.scrolled {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar nav.scrolled {
    top: 46px;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  line-height: 1;
  text-decoration: none;
}

.nav-logo .custom-logo {
  height: 52px;
  width: auto;
  transition: height 0.4s ease;
  display: block;
}

@media (max-width: 768px) {
  .nav-logo .custom-logo {
    height: 40px;
  }
}

nav.scrolled .nav-logo .custom-logo {
  height: 42px;
}

@media (max-width: 768px) {
  nav.scrolled .nav-logo .custom-logo {
    height: 34px;
  }
}

.nav-links, .nav-links ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links li {
  list-style: none;
}

.nav-links a, .nav-links li a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.8);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  display: block;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

/* CTA style for specific menu items */
.nav-links .menu-item-cta a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pine) !important;
  background: var(--gold);
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  transition: all 0.3s;
}

.nav-links .menu-item-cta a:hover { background: var(--gold-lt); }
.nav-links .menu-item-cta a::after { display: none !important; }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background: var(--pine);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 45, 36, 0.85) 0%, rgba(176, 138, 75, 0.15) 100%);
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 6rem;
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '— ';
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 2rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-body {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,242,236,0.75);
  max-width: 400px;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
}

.btn-primary {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  background: var(--gold);
  color: var(--pine);
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(176,138,75,0.35);
}

.btn-outline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  background: transparent;
  color: var(--cream);
  text-decoration: none;
  border: 1px solid rgba(245,242,236,0.4);
  transition: all 0.3s;
  cursor: pointer;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-badge {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.hero-badge-ring {
  width: 90px;
  height: 90px;
  border: 1px solid rgba(176,138,75,0.5);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-badge-ring::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(176,138,75,0.25);
  border-radius: 50%;
}

.hero-badge .hrg {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.hero-badge .est {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.45rem;
  letter-spacing: 0.25em;
  color: rgba(176,138,75,0.7);
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(176,138,75,0.6);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ─── SECTION BASE ─── */
section { position: relative; overflow: hidden; }

.section-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label::before { content: '— '; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.1;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.ornament-line {
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  flex: 1;
}

.ornament-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ─── PILLARS / SERVICES ─── */
#pillars {
  background: var(--pine);
  padding: 5rem 6rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.pillar {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(176,138,75,0.15);
  transition: background 0.4s;
  cursor: default;
}

.pillar:last-child { border-right: none; }

.pillar:hover { background: rgba(176,138,75,0.06); }

.pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
  opacity: 0.85;
  color: var(--gold-lt);
}

.pillar-icon .uil { font-size: 1.8rem; line-height: 1; }

.pillar-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.pillar-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(245,242,236,0.5);
}

.pillar-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(176,138,75,0.3);
  padding-bottom: 2px;
  transition: border-color 0.3s;
}

.pillar-link:hover { border-color: var(--gold); }

/* ─── ABOUT / STORY ─── */
#story {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.story-left {
  background: var(--pine);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-visual {
  position: relative;
  width: 340px;
  height: 420px;
  z-index: 2;
}

.story-frame-outer {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(176,138,75,0.4);
}

.story-frame-inner {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(176,138,75,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
}

.story-monogram {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.story-clubs-svg {
  width: 180px;
  height: 180px;
  opacity: 0.7;
}

.story-caption {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(176,138,75,0.7);
}

.story-right {
  padding: 7rem 6rem 7rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-right .section-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--pine);
  margin-bottom: 1.5rem;
}

.story-right p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--slate);
  margin-bottom: 1.2rem;
}

.story-right p strong {
  font-weight: 600;
  color: var(--pine);
}

.story-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 2rem;
}

.story-value {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}

.story-value::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.5rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ─── RENTALS ─── */
#rentals {
  background: var(--white);
  padding: 7rem 6rem;
}

.rentals-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

#rentals .section-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--pine);
}

#rentals .section-body {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--slate);
}

.rental-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--cream-dk);
}

.rental-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.4s;
  cursor: default;
}

.rental-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.rental-card:hover::before { transform: scaleX(1); }
.rental-card:hover { background: var(--cream); }

.rental-type {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.rental-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pine);
  margin-bottom: 0.8rem;
}

.rental-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--slate);
  margin-bottom: 1.5rem;
}

.rental-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brown);
}

.rental-price span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--slate);
  text-transform: uppercase;
}

.what-included {
  margin-top: 4rem;
  background: var(--pine);
  padding: 3rem 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: start;
}

.included-item {
  text-align: center;
}

.included-icon {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
  display: block;
  color: var(--gold);
}

.included-icon .uil { font-size: 1.6rem; line-height: 1; }

.included-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.included-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(245,242,236,0.5);
}

/* ─── RESTORATION ─── */
#restoration {
  background: var(--cream-dk);
  padding: 7rem 6rem;
}

.restoration-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 5rem;
}

#restoration .section-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--pine);
  margin: 1rem 0;
}

#restoration .section-body {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--slate);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.3;
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 0.5rem;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  border: 1px solid var(--gold);
  background: var(--cream-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  transition: all 0.35s;
  position: relative;
}

.process-step:hover .step-number {
  background: var(--gold);
  color: var(--pine);
}

.step-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pine);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--slate);
}

.restoration-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 4rem;
  background: var(--pine);
}

.principle {
  background: var(--pine);
  padding: 2.5rem 2.5rem;
  border-top: 1px solid rgba(176,138,75,0.2);
}

.principle-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.principle-icon .uil { font-size: 1.5rem; line-height: 1; }

.principle h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.principle p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245,242,236,0.5);
}

/* ─── TOURNAMENTS ─── */
#tournaments {
  background: var(--pine);
  padding: 7rem 6rem;
}

.tournaments-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 5rem;
}

#tournaments .section-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--cream);
}

#tournaments .section-body {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,242,236,0.65);
}

.tournament-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.tournament-card {
  background: rgba(245,242,236,0.04);
  border: 1px solid rgba(176,138,75,0.2);
  padding: 3rem;
  position: relative;
  transition: background 0.4s;
}

.tournament-card:hover {
  background: rgba(176,138,75,0.08);
}

.tournament-season {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tournament-season .uil { font-size: 0.9rem; }

.tournament-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.tournament-date {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(176,138,75,0.7);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.tournament-date .uil { font-size: 0.9rem; }

.tournament-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,242,236,0.55);
  margin-bottom: 2rem;
}

.why-play {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(176,138,75,0.1);
}

.why-item {
  background: var(--pine);
  padding: 2rem 1.8rem;
  text-align: center;
}

.why-icon { font-size: 1.6rem; display: block; margin-bottom: 0.8rem; color: var(--gold); }
.why-icon .uil { font-size: 1.6rem; line-height: 1; }

.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.why-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(245,242,236,0.45);
}

/* ─── SHOP ─── */
#shop {
  background: var(--white);
  padding: 7rem 6rem;
}

.shop-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

#shop .section-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--pine);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5px;
  background: var(--cream-dk);
}

.shop-item {
  background: var(--white);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.35s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.shop-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.35s;
}

.shop-item:hover::after { transform: scaleX(1); }
.shop-item:hover { background: var(--cream); }

.shop-emoji { font-size: 1.8rem; display: block; margin-bottom: 0.8rem; color: var(--gold); }
.shop-emoji .uil { font-size: 1.8rem; line-height: 1; }

.shop-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pine);
  margin-bottom: 0.3rem;
}

.shop-item-price {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ─── RESERVE / CTA ─── */
#reserve {
  background: var(--cream-dk);
  padding: 7rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.reserve-left .section-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--pine);
  margin: 1rem 0;
}

.reserve-left p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 2rem;
}

.reserve-form {
  background: var(--white);
  padding: 3rem;
  border: 1px solid rgba(107,71,44,0.12);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pine);
  margin-bottom: 0.3rem;
}

.form-sub {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(107,71,44,0.2);
  background: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--pine);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group textarea { resize: vertical; min-height: 80px; }

/* ─── CONTACT ─── */
#contact {
  background: var(--pine);
  padding: 5rem 6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.contact-block h4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-block p,
.contact-block a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,242,236,0.7);
  text-decoration: none;
  display: block;
}

.contact-block a:hover  { color: var(--slate); }

/* ─── WOOCOMMERCE STYLING ─── */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
    background: var(--cream-dk) !important;
    border-top: 3px solid var(--gold) !important;
    color: var(--pine) !important;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.woocommerce-message .button, .woocommerce-info .button {
    background: var(--pine) !important;
    color: var(--cream) !important;
}

.woocommerce-Price-amount {
    color: var(--gold);
    font-weight: 600;
}

.shop_table.cart {
    border: 1px solid rgba(176,138,75,0.2) !important;
    font-family: 'Cormorant Garamond', serif;
}

.cart_totals h2 {
    font-family: 'Playfair Display', serif;
    color: var(--pine);
}

#payment {
    background: var(--cream) !important;
}

.woocommerce-checkout #order_review {
    border: 1px solid rgba(176,138,75,0.1);
    padding: 2rem;
}

/* ─── RESPONSIVE ─── */
footer {
  background: #0f1a12;
  padding: 3rem 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(176,138,75,0.15);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-tagline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.5rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(176,138,75,0.5);
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.4);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(245,242,236,0.25);
}

/* ─── PULL QUOTE / DIVIDER ─── */
.pull-quote {
  background: var(--brown);
  padding: 4rem 10rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pull-quote::before,
.pull-quote::after {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 12rem;
  font-weight: 800;
  color: rgba(245,242,236,0.05);
  position: absolute;
  line-height: 1;
  top: -1rem;
}

.pull-quote::before { left: 2rem; }
.pull-quote::after { content: '"'; right: 2rem; bottom: -2rem; top: auto; }

.pull-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  max-width: 750px;
  margin: 0 auto 1.2rem;
}

.pull-quote cite {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.6);
  font-style: normal;
}

/* ─── NEWSLETTER BAND ─── */
.newsletter {
  background: var(--cream-dk);
  padding: 3.5rem 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  border-top: 1px solid rgba(107,71,44,0.12);
  border-bottom: 1px solid rgba(107,71,44,0.12);
}

.newsletter-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pine);
}

.newsletter-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--slate);
}

.newsletter-form {
  display: flex;
  gap: 0;
  flex: 0 0 400px;
}

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(107,71,44,0.25);
  border-right: none;
  background: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--pine);
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

.newsletter-form button {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  background: var(--pine);
  color: var(--cream);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover { background: var(--gold); color: var(--pine); }

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MOBILE NAV TOGGLE ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scrollPulse {
  0% { transform: translateY(0); opacity: 0; }
  50% { transform: translateY(10px); opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  #hero { grid-template-columns: 1fr; min-height: 90vh; }
  .hero-left { padding: 8rem 2.5rem 4rem; }
  .hero-right { display: none; }
  #pillars { grid-template-columns: repeat(3, 1fr); padding: 3rem 2rem; }
  .pillar:nth-child(3) { border-right: none; }
  #story { grid-template-columns: 1fr; }
  .story-left { min-height: 300px; padding: 3rem; }
  .story-right { padding: 3rem 2.5rem; }
  .rentals-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .rental-cards { grid-template-columns: 1fr 1fr; }
  #rentals, #restoration, #shop, #reserve, #contact, #tournaments { padding: 5rem 2.5rem; }
  .process-steps { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
  .process-steps::before { display: none; }
  .tournament-cards { grid-template-columns: 1fr; }
  .why-play { grid-template-columns: 1fr 1fr; }
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
  #reserve { grid-template-columns: 1fr; gap: 3rem; }
  #contact { grid-template-columns: 1fr 1fr; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem; }
  .newsletter { flex-direction: column; padding: 3rem 2rem; }
  .newsletter-form { flex: none; width: 100%; }
  .pull-quote { padding: 3rem 3rem; }
  .what-included { grid-template-columns: repeat(2, 1fr); }
  .restoration-principles { grid-template-columns: 1fr; }
  nav { padding: 0 1.5rem; }
  .nav-links { 
    display: none; 
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--pine);
    padding: 4rem 2.5rem;
    gap: 2rem;
    z-index: 999;
    opacity: 1;
    transform: translateY(0);
    text-align: center;
    border-top: 1px solid rgba(176,138,75,0.15);
  }

  .nav-links.open a {
    font-size: 1.2rem;
    letter-spacing: 0.3em;
  }

  nav.scrolled .nav-links.open {
    top: 60px;
  }

  .nav-hamburger { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; }
  
  .nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-hamburger.active span:nth-child(2) { opacity: 0; }
  .nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .tournaments-header { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── WOOCOMMERCE COMPATIBILITY ─── */
.woocommerce span.onsale { background-color: var(--gold); }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit {
    background-color: var(--gold);
    color: var(--pine);
    font-family: 'Josefin Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 0;
    padding: 1rem 2rem;
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce #respond input#submit:hover {
    background-color: var(--gold-lt);
    color: var(--pine);
}
.woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce #respond input#submit.alt {
    background-color: var(--pine);
    color: var(--cream);
}
.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce #respond input#submit.alt:hover {
    background-color: var(--slate);
}
.woocommerce-Price-amount { color: var(--brown); font-family: 'Playfair Display', serif; }
.woocommerce ul.products li.product h2, .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Playfair Display', serif;
    color: var(--pine);
}
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--brown); }
.woocommerce-message, .woocommerce-info, .woocommerce-error { border-top-color: var(--gold); }
.woocommerce-message::before, .woocommerce-info::before { color: var(--gold); }

@media (max-width: 680px) {
  #pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(176,138,75,0.15); }
  .rental-cards { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .why-play { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
