/* ===================================================
   EUPHORIA ESTATE HOMES — Main Stylesheet
   Colors matched to original site
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Jost:wght@200;300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  /* === EXACT BRAND COLORS from Logo === */
  --brand-green:      #235B3D;   /* forest green — logo background */
  --brand-green-dark: #1A4430;   /* deeper green for nav/footer */
  --brand-green-mid:  #2D7050;   /* mid green */
  --brand-gold:       #B4A536;   /* exact logo gold rgb(180,165,54) */
  --brand-gold-light: #C8B84A;   /* lighter gold for hover */
  --brand-gold-dark:  #8A7E28;   /* darker gold */

  /* Mapped aliases */
  --navy:       var(--brand-green-dark);
  --navy-deep:  #112B1E;
  --navy-mid:   var(--brand-green);
  --cream:      #F5F2EA;
  --cream-dark: #EDE8DA;
  --gold:       var(--brand-gold);
  --gold-light: var(--brand-gold-light);
  --gold-dark:  var(--brand-gold-dark);
  --text-dark:  #1A2E1F;
  --text-mid:   #3D5247;
  --text-light: #6B8070;
  --white:      #FFFFFF;
  --border:     rgba(180,165,54,0.28);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', sans-serif;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm:  0 2px 12px rgba(26,68,48,0.10);
  --shadow-md:  0 8px 32px rgba(26,68,48,0.15);
  --shadow-lg:  0 20px 60px rgba(26,68,48,0.20);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-sans); }
ul { list-style: none; }

/* ── Custom Cursor ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}
body { cursor: none; }

/* ── Particle Canvas ── */
#particle-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  background: rgba(26,68,48,0.97);   /* brand forest green */
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(180,165,54,0.18);
  transition: box-shadow .4s var(--ease);
}
.site-nav.scrolled {
  box-shadow: 0 4px 24px rgba(17,43,30,0.4);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}
/* Full logo image used in nav — circular emblem only, no text beside it */
.logo-mark {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 6px rgba(180,165,54,0.35));
  transition: filter 0.4s;
}
.logo-mark:hover,
.nav-logo:hover .logo-mark {
  filter: drop-shadow(0 0 14px rgba(180,165,54,0.65));
}
/* Separate text block shown next to logo on desktop */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  margin-left: 13px;
}
.logo-name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.logo-sub {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-gold);
  font-weight: 300;
  margin-top: 1px;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 44px;
}
.nav-links a {
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  position: relative;
  padding-bottom: 2px;
  transition: color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta-btn {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-green-dark);
  background: var(--brand-gold);
  border: none;
  padding: 11px 26px;
  font-weight: 500;
  transition: background .3s, transform .3s, box-shadow .3s;
}
.nav-cta-btn:hover {
  background: var(--brand-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(180,165,54,0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--gold);
  transition: .3s;
}

/* Mobile nav overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 76px 0 0;
  background: rgba(26,68,48,0.99);
  backdrop-filter: blur(16px);
  z-index: 850;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-overlay.open { display: flex; }
.mobile-overlay a {
  font-size: 22px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  font-family: var(--font-serif);
  transition: color .3s;
}
.mobile-overlay a:hover { color: var(--gold); }

/* ── Page Wrapper ── */
.page-content {
  position: relative;
  z-index: 1;
  padding-top: 76px; /* nav height */
}

/* ── Section Shared ── */
.section {
  padding: 100px 0;
}
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 48px;
}
.section-label {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.gold-rule {
  width: 52px; height: 2px;
  background: var(--gold);
  margin: 24px 0;
  display: block;
}
.section-para {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 540px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 14px 36px;
  transition: all .35s var(--ease);
  border: none;
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-101%);
  transition: transform .4s var(--ease);
}
.btn-gold span { position: relative; z-index: 1; }
.btn-gold:hover::before { transform: translateX(0); }
.btn-gold:hover { box-shadow: 0 12px 36px rgba(184,151,90,0.35); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left  { opacity: 0; transform: translateX(-28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(28px);  transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* delay helpers */
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: #112B1E;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.52;
  animation: heroZoom 16s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.06); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17,43,30,0.78) 0%,
    rgba(17,43,30,0.36) 55%,
    rgba(17,43,30,0.58) 100%
  );
}
.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(0deg, var(--cream) 0%, transparent 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 60px;
}
.hero-inner { max-width: 720px; }
.hero-eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(184,151,90,0.15);
  border: 1px solid rgba(184,151,90,0.3);
  padding: 7px 18px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .3s forwards;
}
.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .5s forwards;
}
.hero-h1 em { font-style: italic; color: var(--gold-light); }
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .7s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .9s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.4s forwards;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, transparent 100%);
  animation: scrollDrop 1.5s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%,100% { transform: scaleY(1) translateY(0); opacity: .6; }
  50%      { transform: scaleY(1.3) translateY(4px); opacity: 1; }
}
.hero-stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  background: rgba(26,68,48,0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(180,165,54,0.22);
  transform: translateY(0);
}
.hero-stat {
  flex: 1;
  padding: 24px 32px;
  border-right: 1px solid rgba(180,165,54,0.15);
  opacity: 0;
  animation: fadeUp .8s var(--ease) calc(1s + var(--i, 0) * .15s) forwards;
}
.hero-stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 5px;
}

/* ── Marquee ── */
.marquee-wrap {
  background: var(--brand-gold);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 36px;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand-green-dark);
  font-weight: 500;
  white-space: nowrap;
}
.marquee-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(26,68,48,.45);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── About Section ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 1.5px solid rgba(184,151,90,0.3);
  z-index: 0;
  transition: .5s var(--ease);
}
.about-img-wrap:hover::before {
  top: -22px; left: -22px;
  right: 10px; bottom: 10px;
  border-color: var(--gold);
}
.about-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  z-index: 2;
  background: var(--brand-gold);
  color: var(--brand-green-dark);
  padding: 22px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.badge-num {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  display: block;
}
.badge-txt {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 4px;
  display: block;
}
.about-name {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 4px;
}
.about-role {
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.about-quote {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--gold-dark);
  margin-top: 24px;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}

/* ── Gallery Grid ── */
.gallery-strip {
  background: var(--navy-deep);
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery-strip-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.gallery-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.gallery-strip-item:hover img { transform: scale(1.07); }
.gallery-strip-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14,28,44,0);
  transition: background .4s;
}
.gallery-strip-item:hover::after { background: rgba(14,28,44,.25); }

/* Gallery masonry */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease), filter .5s;
}
.gal-item:hover img { transform: scale(1.06); filter: brightness(0.85); }
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14,28,44,.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .4s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-label {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
}
/* Tall items */
.gal-tall { aspect-ratio: 3/4; }
.gal-wide { aspect-ratio: 16/9; grid-column: span 2; }
.gal-square { aspect-ratio: 1; }
.gal-normal { aspect-ratio: 4/3; }

/* ── Services ── */
.services-bg { background: #1A4430; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.svc-card {
  background: rgba(255,255,255,.04);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background .4s, transform .4s var(--ease);
  border: 1px solid rgba(184,151,90,.08);
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover { background: rgba(255,255,255,.07); transform: translateY(-3px); }
.svc-number {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 300;
  color: rgba(184,151,90,.08);
  position: absolute;
  top: 20px; right: 24px;
  line-height: 1;
  transition: color .4s;
}
.svc-card:hover .svc-number { color: rgba(184,151,90,.14); }
.svc-icon {
  width: 52px; height: 52px;
  color: var(--gold);
  margin-bottom: 26px;
}
.svc-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 14px;
}
.svc-desc {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.svc-list { }
.svc-list li {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color .3s;
}
.svc-card:hover .svc-list li { color: rgba(255,255,255,.6); }
.svc-list li::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Testimonial / CTA Band ── */
.cta-band {
  background: linear-gradient(135deg, #112B1E 0%, #235B3D 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(180,165,54,.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band .section-title { color: #fff; }
.cta-phone {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 300;
  color: var(--gold-light);
  display: block;
  margin: 18px 0 30px;
  transition: opacity .3s;
}
.cta-phone:hover { opacity: .8; }
.cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
}

/* ── Features Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 10px;
}
.feat-item {
  background: var(--white);
  padding: 40px 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .4s, transform .3s var(--ease);
  border-left: 3px solid transparent;
}
.feat-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-left-color: var(--gold);
}
.feat-icon {
  width: 48px; height: 48px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}
.feat-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 8px;
}
.feat-desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── Contact Form ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: span 2; }
.form-label {
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-light);
}
.form-input,
.form-textarea,
.form-select {
  background: var(--white);
  border: 1.5px solid rgba(27,42,59,.12);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  padding: 13px 16px;
  outline: none;
  transition: border-color .3s;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 120px; }

/* ── Info Cards ── */
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
}
.info-icon {
  width: 42px; height: 42px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.info-label {
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.info-value {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--navy);
  line-height: 1.4;
}

/* ── Page Hero Banner ── */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 360px;
  overflow: hidden;
  background: #112B1E;
}
.page-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .5;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,43,30,.85) 0%, rgba(35,91,61,.4) 100%);
  display: flex;
  align-items: center;
  padding: 0 60px;
}
.page-hero-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(0deg, var(--cream) 0%, transparent 100%);
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
}
.page-hero h1 em { color: var(--gold-light); font-style: italic; }

/* ── Footer ── */
.site-footer {
  background: #112B1E;   /* deepest brand green */
  border-top: 1px solid rgba(180,165,54,0.14);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding: 72px 0 56px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,.38);
  margin-top: 18px;
  max-width: 280px;
}
.footer-heading {
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.38);
  transition: color .3s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(184,151,90,.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 11.5px;
  color: rgba(255,255,255,.28);
}
.footer-tagline {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: var(--gold);
}

/* ── Image Gallery Page ── */
.gallery-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gal-filter {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 9px 22px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-mid);
  transition: all .3s;
}
.gal-filter:hover,
.gal-filter.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,18,28,.96);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 32px;
  transition: color .3s;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(184,151,90,.15);
  border: 1px solid rgba(184,151,90,.3);
  color: rgba(255,255,255,.8);
  padding: 16px 20px;
  font-size: 20px;
  transition: all .3s;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* ── Utility ── */
.text-center { text-align: center; }
.text-white  { color: #fff; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }
.flex  { display: flex; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .container { padding: 0 36px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .site-nav { padding: 0 24px; }
  .nav-links, .nav-cta-btn { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 28px; }
  .hero-stats-bar { flex-wrap: wrap; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
  .gal-wide { grid-column: span 1; aspect-ratio: 4/3; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 36px; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .page-hero-overlay { padding: 0 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 42px; }
  .hero-stats-bar { display: none; }
  .gallery-strip { grid-template-columns: 1fr; }
}
