/* ───────────────────────────────────────────
   Oyster Bay Estate — Styles
   ─────────────────────────────────────────── */

/* ── Tokens ── */
:root {
  --forest:  #0a1f1a;
  --forest2: #0f2d26;
  --green:   #1a5c44;
  --teal:    #0d7a6b;
  --gold:    #c8a25a;
  --gold-lt: #e8c97a;
  --ink:     #111816;
  --ink-mid: #3d4d49;
  --ink-lt:  #7a8e89;
  --sand:    #f0ede4;
  --paper:   #f8f6f0;
  --white:   #ffffff;
  --line:    rgba(17,24,22,.1);
  --shadow-sm: 0 2px 12px rgba(17,24,22,.07);
  --shadow-md: 0 8px 32px rgba(17,24,22,.12);
  --shadow-lg: 0 24px 64px rgba(17,24,22,.16);
  --radius:  4px;
  --max:     1160px;
  --font:    'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
address { font-style: normal; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; }
button { cursor: pointer; font: inherit; }
input, select, textarea { font: inherit; }

/* ── Skip link ── */
.skip-link {
  position: absolute;
  top: -6rem;
  left: 1rem;
  z-index: 100;
  background: var(--white);
  color: var(--ink);
  padding: .75rem 1.25rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--gold);
  transition: top .15s;
}
.skip-link:focus { top: 1rem; }

/* ── Layout helpers ── */
.container {
  width: min(var(--max), 100% - 2.5rem);
  margin-inline: auto;
}
.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}
.bg-sand { background: var(--sand); }
.bg-dark  { background: var(--forest); color: var(--white); }

/* ── Section header ── */
.section-tag {
  display: inline-block;
  margin-bottom: .85rem;
  padding: .3rem .9rem;
  background: rgba(200,162,90,.15);
  color: var(--gold);
  border-radius: 2rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.bg-dark .section-tag {
  background: rgba(200,162,90,.2);
}
.section-header {
  max-width: 700px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header h2 { font-size: clamp(1.9rem, 3.8vw, 3.2rem); }
.section-sub {
  margin-top: .85rem;
  color: var(--ink-mid);
  font-size: 1.07rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 3.1rem;
  padding: .8rem 1.6rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: background .18s, color .18s, border-color .18s, transform .15s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold);
  color: #1a1100;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
}
.btn-full { width: 100%; justify-content: center; }


/* ════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════ */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
  color: var(--white);
  transition: background .22s, box-shadow .22s, color .22s, padding .22s;
}
.site-header.is-scrolled {
  padding-block: .75rem;
  color: var(--ink);
  background: rgba(248,246,240,.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: .9rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1.5px solid currentColor;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  border-radius: 2px;
  flex-shrink: 0;
}
.brand-text strong, .brand-text span { display: block; line-height: 1.2; }
.brand-text strong { font-size: .95rem; font-weight: 800; }
.brand-text span   { font-size: .75rem; opacity: .7; }

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: .9rem;
  font-weight: 600;
}
.site-nav a { text-decoration: none; opacity: .9; transition: opacity .15s; }
.site-nav a:hover { opacity: 1; }
.nav-cta {
  padding: .6rem 1.2rem;
  border: 1.5px solid currentColor;
  border-radius: var(--radius);
  opacity: 1 !important;
}
.is-scrolled .nav-cta {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.is-scrolled .nav-cta:hover {
  background: var(--forest2);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  background: transparent;
  border: 1.5px solid currentColor;
  border-radius: var(--radius);
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--white);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(5,14,11,.95) 0%, rgba(8,20,17,.70) 45%, rgba(10,24,20,.32) 100%),
    linear-gradient(0deg, rgba(5,12,10,.90) 0%, transparent 52%),
    linear-gradient(180deg, rgba(8,18,14,.55) 0%, transparent 28%);
  mix-blend-mode: normal;
}
.hero-body {
  position: relative;
  width: 100%;
  padding-bottom: clamp(10rem, 16vw, 14rem);
  padding-top: 9rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.4rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero h1 {
  max-width: 860px;
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.0;
}
.hero-lead {
  max-width: 580px;
  margin-top: 1.5rem;
  color: rgba(255,255,255,.8);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2.2rem;
}

/* Stats bar */
.hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--forest);
  border-top: 2px solid var(--gold);
}
.stat {
  position: relative;
  padding: 1.9rem 1.8rem 1.7rem;
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
  gap: .15rem;
  overflow: hidden;
  transition: background .22s;
}
.stat::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.stat:hover { background: rgba(255,255,255,.04); }
.stat:hover::after { transform: scaleX(1); }
.stat:last-child { border-right: 0; }

.stat-icon {
  color: var(--gold);
  opacity: .8;
  margin-bottom: .55rem;
  display: flex;
}

.stat strong {
  display: block;
  color: var(--gold);
  font-size: clamp(1.25rem, 2.3vw, 1.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.stat span {
  display: block;
  margin-top: .3rem;
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  letter-spacing: .03em;
}


/* ════════════════════════════════════════════
   INTRO
   ════════════════════════════════════════════ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.intro-lead h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-top: .75rem;
  color: var(--forest);
}
.intro-body p {
  color: var(--ink-mid);
  font-size: 1.07rem;
  line-height: 1.75;
}
.intro-body p + p { margin-top: 1rem; }

.check-list {
  margin-top: 1.5rem;
  display: grid;
  gap: .75rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--ink-mid);
  font-size: .97rem;
  line-height: 1.5;
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: .18rem;
  background: var(--gold);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}


/* ════════════════════════════════════════════
   SPACES
   ════════════════════════════════════════════ */
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.space-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  overflow: hidden;
}
.space-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,162,90,.4);
}
.space-card-featured {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.space-card-featured p { color: rgba(255,255,255,.75); }
.space-card-icon {
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(200,162,90,.12);
  color: var(--gold);
}
.space-card-featured .space-card-icon {
  background: rgba(200,162,90,.18);
}
.space-card-num {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(17,24,22,.05);
  pointer-events: none;
  user-select: none;
}
.space-card-featured .space-card-num { color: rgba(255,255,255,.06); }
.space-card h3 {
  font-size: 1.22rem;
  font-weight: 700;
  margin-top: .25rem;
}
.space-card p {
  color: var(--ink-mid);
  font-size: .97rem;
  line-height: 1.65;
  flex: 1;
}
.space-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--teal);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: gap .15s;
  margin-top: auto;
}
.space-card-featured .space-link { color: var(--gold); }
.space-link:hover { gap: .7rem; }


/* ════════════════════════════════════════════
   WHY US
   ════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.why-copy h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); color: var(--forest); margin-top: .5rem; }
.why-copy > p { margin-top: 1rem; color: var(--ink-mid); line-height: 1.75; font-size: 1.05rem; }

.feature-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
}
.feature-icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  background: rgba(200,162,90,.1);
  color: var(--gold);
  border-radius: 50%;
  margin-top: .1rem;
}
.feature-list strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .3rem;
}
.feature-list p {
  color: var(--ink-mid);
  font-size: .93rem;
  line-height: 1.6;
}


/* ════════════════════════════════════════════
   CLIENTS
   ════════════════════════════════════════════ */
.clients {
  background: var(--forest);
  color: var(--white);
}
.clients .section-tag {
  background: rgba(200,162,90,.18);
  color: var(--gold);
}
.clients-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.clients-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  color: var(--white);
  margin-top: .6rem;
  letter-spacing: -0.02em;
}
.clients-header-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}
.clients-intro {
  color: rgba(255,255,255,.62);
  font-size: 1.05rem;
  line-height: 1.75;
  padding-bottom: .2rem;
  margin: 0;
}
.clients-controls {
  display: flex;
  gap: .5rem;
}
.clients-nav-btn {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(200,162,90,.15);
  border: 1.5px solid rgba(200,162,90,.3);
  color: var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .2s;
  font-weight: 600;
  flex-shrink: 0;
}
.clients-nav-btn:hover {
  background: rgba(200,162,90,.25);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.clients-nav-btn:active {
  transform: translateY(0);
}

.clients-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(calc(100% / 4 - 1px), calc(100% / 4 - 1px));
  gap: 1px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: calc(var(--radius) * 2);
  margin-bottom: 3rem;
  padding: 1px;
  box-sizing: border-box;
}
.client-card {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.clients-grid::-webkit-scrollbar {
  height: 5px;
}
.clients-grid::-webkit-scrollbar-track {
  background: rgba(255,255,255,.04);
}
.clients-grid::-webkit-scrollbar-thumb {
  background: rgba(200,162,90,.35);
  border-radius: 2px;
}
.clients-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(200,162,90,.55);
}
.client-card {
  background: rgba(255,255,255,.04);
  padding: 2.75rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  position: relative;
  transition: background .22s;
}
.client-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.client-card:hover { background: rgba(255,255,255,.08); }
.client-card:hover::before { transform: scaleX(1); }

.client-logo-wrap {
  width: 9rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.client-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(2);
  opacity: .6;
  transition: filter .25s, opacity .25s;
  display: block;
}
.client-card:hover .client-logo-wrap img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}
.client-initial {
  display: none;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: rgba(200,162,90,.15);
  border: 1.5px solid rgba(200,162,90,.3);
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .04em;
}

.client-info strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.client-info span {
  display: inline-block;
  margin-top: .55rem;
  padding: .25rem .75rem;
  background: rgba(200,162,90,.12);
  color: var(--gold);
  border-radius: 2rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.client-card-manager .client-info span {
  background: rgba(200,162,90,.22);
}

.clients-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.5rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: calc(var(--radius) * 2);
  background: rgba(255,255,255,.04);
}
.clients-cta p {
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  line-height: 1.5;
}



/* ════════════════════════════════════════════
   LOCATION
   ════════════════════════════════════════════ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.location-copy h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); margin-top: .5rem; color: var(--forest); }
.location-copy > p { margin-top: 1rem; color: var(--ink-mid); font-size: 1.05rem; line-height: 1.75; }

.location-details {
  margin-top: 1.75rem;
  display: grid;
  gap: .85rem;
}
.location-details li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--ink-mid);
  font-size: .97rem;
  line-height: 1.5;
}
.location-details svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: .15rem;
}
.location-details a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}
.location-details a:hover { text-decoration: underline; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  line-height: 0;
}
.map-wrap iframe { display: block; }


/* ════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.contact-copy h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  margin-top: .5rem;
  color: var(--white);
}
.contact-copy > p {
  margin-top: 1rem;
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  line-height: 1.75;
}
.contact-channels {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.channel-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: gap .15s;
}
.channel-link:hover { gap: 1rem; }
.channel-link svg { flex-shrink: 0; opacity: .8; }

/* Form feedback */
.form-feedback {
  padding: .85rem 1.1rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.5;
}
.form-feedback--success {
  background: rgba(26,92,68,.12);
  color: #2d8a62;
  border: 1px solid rgba(26,92,68,.25);
}
.form-feedback--error {
  background: rgba(185,28,28,.08);
  color: #c0392b;
  border: 1px solid rgba(185,28,28,.2);
}
.cf-turnstile { margin-top: .25rem; }

/* Form */
.enquiry-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  gap: 1.1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
label {
  display: grid;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink);
}
input, select, textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  padding: .8rem 1rem;
  border-radius: var(--radius);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,122,107,.12);
  background: var(--white);
}
textarea { resize: vertical; min-height: 100px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%237a8e89' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 6 8 10 12 6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .8rem center; padding-right: 2.5rem; }


/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.site-footer {
  background: #050f0d;
  color: rgba(255,255,255,.72);
  border-top: 2px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-top: clamp(3.5rem, 6vw, 5rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .brand-footer { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 320px; }

.footer-nav, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.footer-nav strong, .footer-contact strong {
  color: var(--white);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.footer-nav a, .footer-contact a {
  font-size: .92rem;
  text-decoration: none;
  transition: color .15s;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-contact address {
  font-size: .88rem;
  line-height: 1.65;
  margin-top: .25rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  padding-block: 1.5rem;
  font-size: .83rem;
}
.footer-bottom a { color: var(--gold); text-decoration: none; font-weight: 600; }


/* ════════════════════════════════════════════
   REVEAL ANIMATIONS
   ════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .32s; }


/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1020px) {
  .clients-grid { grid-auto-columns: minmax(calc(100% / 2 - 1px), calc(100% / 2 - 1px)); }
  .clients-header { grid-template-columns: 1fr; gap: 1rem; align-items: start; }
  .clients-header-right { align-items: flex-start; }
  .why-grid, .intro-grid, .location-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(3) { border-top: 1px solid rgba(255,255,255,.07); }
  .stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,.07); }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: calc(100% + .5rem);
    right: 1.25rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
    width: min(20rem, calc(100vw - 2.5rem));
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .65rem .75rem; border-radius: 2px; }
  .site-nav a:hover { background: var(--sand); }
  .nav-cta {
    background: var(--forest);
    color: var(--white) !important;
    border-color: var(--forest) !important;
    text-align: center;
    margin-top: .25rem;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: none; }
}

@media (max-width: 640px) {
  .spaces-grid  { grid-template-columns: 1fr; }
  .clients-grid { grid-auto-columns: 100%; }
  .nearby-grid  { grid-template-columns: 1fr 1fr; }
  .hero-stats   { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 1px solid rgba(255,255,255,.07); }
  .stat:nth-child(4) { border-right: 0; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  .footer-bottom { flex-direction: column; gap: .4rem; }
  .clients-cta { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
  .clients-grid { grid-auto-columns: 100%; }
  .nearby-grid  { grid-template-columns: 1fr; }
  .hero-stats   { grid-template-columns: 1fr; }
  .stat { border-right: 0 !important; border-top: 1px solid rgba(255,255,255,.07) !important; }
  .stat:first-child { border-top: none !important; }
  .stat:last-child { border-bottom: 0; }
}

/* ── Gallery ─────────────────────────────── */
.gallery-grid {
  columns: 4 220px;
  column-gap: .9rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: .9rem;
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  cursor: zoom-in;
  background: var(--sand);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,31,26,0);
  transition: background .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay { background: rgba(10,31,26,.4); }

.gallery-zoom-icon {
  opacity: 0;
  transform: scale(.7);
  transition: opacity .3s ease, transform .3s ease;
  color: var(--white);
  width: 2.6rem;
  height: 2.6rem;
  border: 1.5px solid rgba(255,255,255,.65);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-zoom-icon { opacity: 1; transform: scale(1); }
.gallery-item:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Lightbox */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(6,17,14,.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  opacity: 0;
  transition: opacity .22s ease;
}
.lb-overlay.lb-visible { opacity: 1; }
.lb-overlay[hidden]     { display: none; }

.lb-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(92vw, 1320px);
  max-height: 82vh;
}

.lb-img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
  display: block;
  transition: opacity .18s ease;
}
.lb-img.lb-loading { opacity: 0; }

.lb-close {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.2);
  color: var(--white);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
  z-index: 1;
}
.lb-close:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); }

.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.18);
  color: var(--white);
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
  z-index: 1;
}
.lb-nav:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); }
.lb-prev { left: 1.2rem; }
.lb-next { right: 1.2rem; }

.lb-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}
.lb-caption-text { color: rgba(255,255,255,.75); font-size: .9rem; font-weight: 500; }
.lb-counter       { color: rgba(255,255,255,.4);  font-size: .78rem; letter-spacing: .06em; }

@media (max-width: 768px) {
  .gallery-grid { columns: 2 150px; column-gap: .55rem; }
  .gallery-item { margin-bottom: .55rem; }
  .lb-prev { left: .6rem; }
  .lb-next { right: .6rem; }
  .lb-nav  { width: 2.3rem; height: 2.3rem; }
}

/* ── Scroll-to-top ── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 2.75rem;
  height: 2.75rem;
  background: var(--gold);
  color: #1a1100;
  border: none;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(200,162,90,.35);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .18s;
}
.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--gold-lt);
  transform: translateY(-3px);
}
@media (max-width: 640px) {
  .scroll-top { bottom: 1.25rem; right: 1.25rem; width: 2.4rem; height: 2.4rem; }
}
