/* =========================================================
   ProSpace — Flexible Office Spaces in Dubai
   Shared stylesheet
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Navy + gold palette — matches Tarpon Office Spaces branding */
  --green-900: #0d1a38;
  --green-800: #142a52;
  --green-700: #1d3a6b;
  --green-600: #2a4d86;
  --gold-500: #f4b81b;
  --gold-600: #dca00c;
  --gold-400: #f9cf57;
  --cream: #f5f7fb;
  --cream-200: #e7edf6;
  --white: #ffffff;
  --ink: #16243f;
  --muted: #647088;
  --muted-light: #a6b0c2;
  --line: #dde4ef;
  --line-dark: #28406a;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 4px 14px rgba(22, 36, 29, 0.06);
  --shadow-md: 0 14px 40px rgba(22, 36, 29, 0.10);
  --shadow-lg: 0 28px 70px rgba(22, 36, 29, 0.18);

  --font-head: "Sora", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(56px, 8vw, 110px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-600);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--gold-500); display: inline-block; }

.section-title { font-size: clamp(1.8rem, 3.6vw, 3rem); }
.lead { color: var(--muted); font-size: 1.02rem; max-width: 54ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
}
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--gold { background: var(--gold-500); color: var(--green-900); }
.btn--gold:hover { background: var(--gold-400); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(243,196,63,.4); }
.btn--dark { background: var(--green-800); color: var(--white); }
.btn--dark:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { border: 1.5px solid currentColor; }
.btn--outline:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.btn--ghost-light { border: 1.5px solid rgba(255,255,255,.4); color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--green-900); border-color: #fff; }
.btn--block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); transition: gap .3s var(--ease), color .3s var(--ease); }
.link-arrow:hover { gap: 14px; color: var(--gold-600); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,246,241,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled { background: rgba(247,246,241,.96); border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  background: var(--green-800); color: var(--gold-500); font-size: 1.05rem; transition: transform .4s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.05); }

.nav-center { display: flex; align-items: center; gap: 6px; }
.nav-link {
  position: relative; padding: 9px 16px; border-radius: 999px; font-weight: 500; font-size: 0.95rem;
  color: var(--ink); transition: color .25s var(--ease), background .25s var(--ease);
}
.nav-link::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--gold-500); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav-link:hover { color: var(--green-800); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--green-800); font-weight: 600; }
.nav-link.active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 14px; }

/* location pill */
.location-pill {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px;
  border: 1px solid var(--line); border-radius: 999px; background: var(--white);
  font-size: 0.85rem; font-weight: 500; color: var(--muted); transition: border-color .25s, color .25s;
}
.location-pill:hover { border-color: var(--gold-500); color: var(--ink); }
.location-pill svg { color: var(--gold-600); }

/* hamburger */
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px; position: relative;
  background: var(--white); border: 1px solid var(--line);
}
.nav-toggle span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s var(--ease), top .35s var(--ease); }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
body.nav-open .nav-toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.nav-overlay { display: none; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: var(--green-800);
  color: #fff;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding-top: clamp(40px, 6vw, 70px);
  padding-bottom: clamp(28px, 4vw, 44px);
  position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(243,196,63,.18), transparent 70%); border-radius: 50%;
}
.hero-top { display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; align-items: start; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); font-weight: 700; line-height: 1.02; letter-spacing: -0.03em; }
.hero h1 .accent { color: var(--gold-500); }
.hero-sub { color: rgba(255,255,255,.72); max-width: 42ch; margin-top: 22px; font-size: 1.05rem; }
.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.hero-aside { display: flex; flex-direction: column; gap: 14px; padding-top: 8px; }
.hero-card {
  display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: var(--radius);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10); backdrop-filter: blur(4px);
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.hero-card:hover { transform: translateY(-3px); background: rgba(255,255,255,.12); }
.hero-card img { width: 84px; height: 64px; object-fit: cover; border-radius: 10px; }
.hero-card h4 { font-size: 1rem; }
.hero-card p { font-size: 0.82rem; color: rgba(255,255,255,.6); }
.hero-card .tag { margin-left: auto; font-size: .72rem; padding: 5px 10px; border-radius: 999px; background: var(--gold-500); color: var(--green-900); font-weight: 600; }

.hero-banner {
  margin-top: clamp(28px, 4vw, 44px); position: relative; z-index: 1;
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 21 / 8; min-height: 220px;
}
.hero-banner img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s var(--ease); }
.hero-banner:hover img { transform: scale(1.06); }
.hero-banner .stat-row {
  position: absolute; left: 18px; bottom: 18px; right: 18px; display: flex; gap: 12px; flex-wrap: wrap;
}
.hero-stat { background: rgba(22,36,29,.55); backdrop-filter: blur(8px); padding: 10px 18px; border-radius: 14px; color: #fff; }
.hero-stat b { font-family: var(--font-head); font-size: 1.3rem; display: block; }
.hero-stat span { font-size: .78rem; color: rgba(255,255,255,.7); }

/* =========================================================
   CREATING / intro split
   ========================================================= */
.intro-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.intro-grid h2 { font-size: clamp(1.7rem, 3.4vw, 2.8rem); font-weight: 600; }
.intro-grid h2 .hl { color: var(--gold-600); }
.intro-side p { color: var(--muted); }
.intro-figure { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-md); }
.intro-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.intro-figure:hover img { transform: scale(1.05); }
.intro-meta { display: flex; gap: 28px; margin-top: 26px; flex-wrap: wrap; }
.intro-meta .num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: var(--green-800); }
.intro-meta span { font-size: .85rem; color: var(--muted); }

/* =========================================================
   WORK CONNECT — dark desk grid
   ========================================================= */
.dark { background: var(--green-800); color: #fff; }
.dark .lead { color: rgba(255,255,255,.66); }
.dark .section-title { color: #fff; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(34px, 5vw, 54px); }
.section-head .lead { margin: 14px auto 0; }

.desk-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.desk-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/10;
  background: var(--green-700); cursor: pointer; min-height: 200px;
}
.desk-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.desk-card:hover img { transform: scale(1.08); }
.desk-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(15,25,20,.85)); }
.desk-card .desk-info { position: absolute; left: 20px; bottom: 18px; right: 20px; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.desk-card h4 { font-size: 1.15rem; color: #fff; }
.desk-card .price { font-family: var(--font-head); font-weight: 700; background: var(--gold-500); color: var(--green-900); padding: 6px 12px; border-radius: 10px; font-size: .9rem; flex-shrink: 0; white-space: nowrap; }
.desk-card .price span { font-weight: 500; font-size: .72rem; }
.desk-feature {
  position: relative; border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; justify-content: space-between;
  background: linear-gradient(160deg, var(--green-600), var(--green-700)); border: 1px solid var(--line-dark); aspect-ratio: 16/10;
}
.desk-feature h3 { font-size: 1.4rem; }
.desk-feature p { color: rgba(255,255,255,.66); font-size: .92rem; margin-top: 8px; }

/* =========================================================
   PREMIUM OPTIONS — split list
   ========================================================= */
.options-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.options-figure { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-md); }
.options-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.options-figure:hover img { transform: scale(1.05); }
.option-list { display: flex; flex-direction: column; }
.option-row {
  display: grid; grid-template-columns: 44px 1fr auto; gap: 18px; align-items: center;
  padding: 22px 0; border-top: 1px solid var(--line); transition: padding-left .3s var(--ease);
}
.option-row:last-child { border-bottom: 1px solid var(--line); }
.option-row:hover { padding-left: 10px; }
.option-row .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--cream-200); display: grid; place-items: center; color: var(--green-700); transition: background .3s, color .3s; }
.option-row:hover .ico { background: var(--gold-500); color: var(--green-900); }
.option-row h4 { font-size: 1.08rem; }
.option-row p { color: var(--muted); font-size: .9rem; }
.option-row .chev { color: var(--muted-light); transition: transform .3s var(--ease), color .3s; }
.option-row:hover .chev { transform: translateX(5px); color: var(--gold-600); }

/* =========================================================
   PRICING / Perfect workspace
   ========================================================= */
.pricing-toggle { display: inline-flex; gap: 6px; padding: 6px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); margin: 22px auto 0; }
.pricing-toggle button { padding: 9px 22px; border-radius: 999px; color: rgba(255,255,255,.7); font-weight: 600; font-size: .88rem; transition: background .3s var(--ease), color .3s var(--ease); }
.pricing-toggle button.active { background: var(--gold-500); color: var(--green-900); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden; color: var(--ink);
  border: 1px solid rgba(255,255,255,.08); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.price-card .ph { height: 168px; overflow: hidden; }
.price-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.price-card:hover .ph img { transform: scale(1.08); }
.price-card .body { padding: 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.price-card .loc { font-size: .8rem; color: var(--muted); }
.price-card h4 { font-size: 1.2rem; }
.price-card .feat { display: flex; flex-direction: column; gap: 7px; margin: 12px 0 4px; }
.price-card .feat li { display: flex; gap: 9px; align-items: center; font-size: .88rem; color: var(--muted); }
.price-card .feat li svg { color: var(--gold-600); flex-shrink: 0; }
.price-card .price { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; margin-top: auto; }
.price-card .price span { font-size: .85rem; font-weight: 500; color: var(--muted); }
.price-card.featured { outline: 2px solid var(--gold-500); position: relative; }
/* Light-background pricing section (e.g. directly under the page hero) */
.pricing-light { background: var(--white); }
.pricing-light .price-card { border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.pricing-light .price-card:hover { box-shadow: var(--shadow-lg); }
.price-card .badge { position: absolute; top: 14px; right: 14px; background: var(--gold-500); color: var(--green-900); font-size: .72rem; font-weight: 700; padding: 5px 11px; border-radius: 999px; }

/* =========================================================
   FEATURES — image + accordion list
   ========================================================= */
.features-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.features-figure { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-md); }
.features-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.features-figure:hover img { transform: scale(1.05); }
.feature-items { display: flex; flex-direction: column; gap: 14px; }
.feature-item {
  display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 22px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--line); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.feature-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-item .ico { width: 52px; height: 52px; border-radius: 14px; background: var(--green-800); color: var(--gold-500); display: grid; place-items: center; transition: transform .4s var(--ease); }
.feature-item:hover .ico { transform: rotate(-6deg) scale(1.06); }
.feature-item h4 { font-size: 1.1rem; }
.feature-item p { color: var(--muted); font-size: .9rem; margin-top: 4px; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: var(--white); color: var(--ink); border-radius: var(--radius-lg); padding: 24px;
  border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column; gap: 14px;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testi-card .stars { color: var(--gold-500); letter-spacing: 2px; font-size: 1rem; }
.testi-card .quote { font-size: .95rem; color: #2c3a31; flex: 1; }
.testi-foot { display: flex; align-items: center; gap: 12px; }
.testi-foot .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--green-700); color: #fff; display: grid; place-items: center; font-weight: 600; font-family: var(--font-head); }
.testi-foot .who b { display: block; font-size: .92rem; }
.testi-foot .who span { font-size: .78rem; color: var(--muted); }
.testi-foot .src { margin-left: auto; font-size: .78rem; font-weight: 600; color: var(--muted); }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 14px;
}
.gallery a { position: relative; overflow: hidden; border-radius: var(--radius); display: block; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery a:hover img { transform: scale(1.1); }
.gallery a::after {
  content: ""; position: absolute; inset: 0; background: rgba(22,36,29,.0); transition: background .4s var(--ease);
}
.gallery a:hover::after { background: rgba(22,36,29,.25); }
.gallery .wide { grid-column: span 2; }
.gallery .tall { grid-row: span 2; }
.gallery .label {
  position: absolute; left: 14px; bottom: 12px; z-index: 2; color: #fff; font-weight: 600; font-family: var(--font-head);
  opacity: 0; transform: translateY(8px); transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gallery a:hover .label { opacity: 1; transform: translateY(0); }

/* =========================================================
   COMMUNITY FORM
   ========================================================= */
.community { position: relative; padding-block: clamp(48px, 7vw, 96px); overflow: hidden; }
.community-bg { position: absolute; inset: 0; }
.community-bg img { width: 100%; height: 100%; object-fit: cover; }
.community-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(22,36,29,.82), rgba(22,36,29,.55)); }
.community .inner { position: relative; z-index: 2; max-width: 620px; margin-inline: auto; }
.form-card { background: var(--gold-500); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 44px); box-shadow: var(--shadow-lg); }
.form-card h2 { color: var(--green-900); font-size: clamp(1.6rem, 3vw, 2.3rem); text-align: center; }
.form-card p { text-align: center; color: rgba(22,36,29,.7); margin: 8px auto 24px; font-size: .92rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; color: var(--green-900); }
.field input, .field select, .field textarea {
  padding: 13px 15px; border-radius: 12px; border: 1.5px solid transparent; background: rgba(255,255,255,.92);
  color: var(--ink); transition: border-color .25s, box-shadow .25s; width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-800); box-shadow: 0 0 0 4px rgba(22,46,36,.12); }
.form-card .btn--dark { margin-top: 8px; }

/* =========================================================
   CTA strip
   ========================================================= */
.cta-strip { background: var(--green-800); color: #fff; border-radius: var(--radius-xl); padding: clamp(32px, 5vw, 60px); display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center; overflow: hidden; }
.cta-strip h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); }
.cta-strip p { color: rgba(255,255,255,.7); margin-top: 14px; max-width: 46ch; }
.cta-strip .cta-actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.cta-media { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cta-media img { border-radius: var(--radius); aspect-ratio: 1/1; object-fit: cover; transition: transform .6s var(--ease); }
.cta-media img:nth-child(2) { margin-top: 26px; }
.cta-media img:hover { transform: scale(1.05); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--green-900); color: rgba(255,255,255,.7); padding-block: clamp(48px, 6vw, 76px) 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand .brand { color: #fff; }
.footer-brand p { margin-top: 16px; font-size: .9rem; max-width: 34ch; }
.footer-col h5 { color: #fff; font-family: var(--font-head); font-size: .95rem; margin-bottom: 16px; }
.footer-col a { display: block; padding: 6px 0; font-size: .9rem; transition: color .25s, padding-left .25s; }
.footer-col a:hover { color: var(--gold-500); padding-left: 5px; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.07); color: #fff; transition: background .3s, transform .3s; }
.socials a:hover { background: var(--gold-500); color: var(--green-900); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid var(--line-dark); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .82rem; }

/* =========================================================
   PAGE HEADER (interior pages)
   ========================================================= */
.page-hero { background: var(--green-800); color: #fff; border-radius: 0 0 var(--radius-xl) var(--radius-xl); padding-block: clamp(48px, 7vw, 96px); text-align: center; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; left: -100px; bottom: -140px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(243,196,63,.16), transparent 70%); border-radius: 50%; }
.page-hero .crumbs { font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: 14px; position: relative; z-index: 1; }
.page-hero .crumbs a:hover { color: var(--gold-500); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,.7); max-width: 56ch; margin: 16px auto 0; position: relative; z-index: 1; }

/* about stats */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-box { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; text-align: center; transition: transform .35s var(--ease), box-shadow .35s; }
.stat-box:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stat-box b { font-family: var(--font-head); font-size: 2.2rem; color: var(--green-800); display: block; }
.stat-box span { font-size: .85rem; color: var(--muted); }

/* value cards */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; transition: transform .35s var(--ease), box-shadow .35s; }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card .ico { width: 54px; height: 54px; border-radius: 14px; background: var(--cream-200); color: var(--green-700); display: grid; place-items: center; margin-bottom: 16px; transition: background .3s, color .3s; }
.value-card:hover .ico { background: var(--gold-500); color: var(--green-900); }
.value-card h4 { font-size: 1.15rem; }
.value-card p { color: var(--muted); font-size: .92rem; margin-top: 8px; }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; aspect-ratio: 3/4; background: var(--green-700); }
.team-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.team-card:hover img { transform: scale(1.07); }
.team-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(15,25,20,.85)); }
.team-card .who { position: absolute; left: 18px; bottom: 16px; z-index: 2; color: #fff; }
.team-card .who b { font-family: var(--font-head); font-size: 1.05rem; display: block; }
.team-card .who span { font-size: .8rem; color: rgba(255,255,255,.7); }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: grid; grid-template-columns: 50px 1fr; gap: 16px; padding: 20px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s; }
.contact-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-item .ico { width: 50px; height: 50px; border-radius: 13px; background: var(--green-800); color: var(--gold-500); display: grid; place-items: center; }
.contact-item h4 { font-size: 1rem; }
.contact-item p { color: var(--muted); font-size: .9rem; }
.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.contact-form .field label { color: var(--ink); }
.contact-form .field input, .contact-form .field select, .contact-form .field textarea { background: var(--cream); border-color: var(--line); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); height: 360px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2); }

/* faq */
.faq { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .3s; }
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 22px; text-align: left; font-weight: 600; font-family: var(--font-head); font-size: 1.02rem; }
.faq-q .pm { width: 30px; height: 30px; border-radius: 50%; background: var(--cream-200); display: grid; place-items: center; flex-shrink: 0; transition: background .3s, transform .3s; }
.faq-item.open .faq-q .pm { background: var(--gold-500); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 22px 22px; color: var(--muted); font-size: .92rem; }

/* amenities chips */
.amenity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.amenity { display: flex; align-items: center; gap: 12px; padding: 18px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); transition: transform .3s var(--ease), border-color .3s; }
.amenity:hover { transform: translateY(-3px); border-color: var(--gold-500); }
.amenity .ico { width: 40px; height: 40px; border-radius: 11px; background: var(--cream-200); color: var(--green-700); display: grid; place-items: center; flex-shrink: 0; }
.amenity span { font-size: .9rem; font-weight: 500; color: var(--ink); }

/* membership comparison perks */
.perk-list { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.perk-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.perk-list li svg { color: var(--gold-600); flex-shrink: 0; margin-top: 3px; }

/* =========================================================
   INTERACTIVE FLOOR PLAN
   ========================================================= */
.floorplan-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(16px, 3vw, 32px); box-shadow: var(--shadow-sm); }
.floorplan-legend { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-bottom: 22px; font-size: .85rem; color: var(--muted); }
.floorplan-legend span { display: inline-flex; align-items: center; gap: 8px; }
.swatch { width: 16px; height: 16px; border-radius: 4px; border: 1px solid rgba(0,0,0,.08); }
.swatch.available { background: #c6d8f2; }
.swatch.leased { background: #c5dca0; }
.swatch.common { background: #f3e7cb; }
.swatch.corridor { background: var(--gold-500); }

.floorplan {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  --suite-bg: #c6d8f2;
}
.fp-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; grid-column: 1 / -1; }
.suite {
  position: relative; border: 2px solid var(--green-800); border-radius: 8px; background: #c6d8f2;
  min-height: 86px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  font-family: var(--font-head); font-weight: 600; color: var(--green-900); cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  text-align: center; padding: 6px;
}
.suite small { font-weight: 500; font-size: .68rem; color: var(--green-700); }
.suite:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-md); background: var(--gold-400); z-index: 2; }
.suite.leased { background: #c5dca0; cursor: default; }
.suite.leased:hover { transform: none; box-shadow: none; background: #c5dca0; }
.suite .stat { font-size: .64rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 1px 7px; border-radius: 999px; }
.suite.available .stat { background: var(--green-800); color: #fff; }
.suite.leased .stat { background: #5e7a32; color: #fff; }

.fp-corridor { background: var(--gold-500); border-radius: 6px; grid-column: 1 / -1; height: 16px; margin: -2px 0; }
.fp-common {
  grid-column: 1 / -1; margin-top: 6px; background: #f3e7cb; border: 2px solid var(--green-800); border-radius: 10px;
  display: grid; grid-template-columns: 2fr 1fr; gap: 0; overflow: hidden;
}
.fp-conf { padding: 26px 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; }
.fp-conf .ic { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--green-800); display: grid; place-items: center; color: var(--green-800); }
.fp-conf b { font-family: var(--font-head); }
.fp-suite-m { background: #c6d8f2; border-left: 2px solid var(--green-800); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 4px; font-family: var(--font-head); font-weight: 600; color: var(--green-900); padding: 12px; cursor: pointer; transition: background .25s; }
.fp-suite-m:hover { background: var(--gold-400); }
.fp-amen-strip { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.fp-amen { background: var(--cream-200); border: 1px solid var(--line); border-radius: 8px; padding: 12px 6px; text-align: center; font-size: .74rem; font-weight: 600; color: var(--green-800); display: flex; flex-direction: column; align-items: center; gap: 6px; }
.fp-amen svg { color: var(--green-700); }
.floorplan-note { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 18px; }
/* prevent grid children from forcing the page wider than the viewport */
.suite, .fp-suite-m, .fp-amen, .fp-conf { min-width: 0; }
.suite { overflow: hidden; }
@media (max-width: 700px) {
  .fp-row { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .floorplan { gap: 6px; }
  .suite { min-height: 72px; font-size: .85rem; padding: 4px; }
  .suite .stat { font-size: .58rem; padding: 1px 5px; }
  .fp-common { grid-template-columns: 1fr; }
  .fp-suite-m { border-left: none; border-top: 2px solid var(--green-800); padding: 20px; }
  .fp-amen-strip { grid-template-columns: repeat(2, 1fr); }
  .fp-amen { font-size: .7rem; }
}
@media (max-width: 380px) {
  .suite { font-size: .78rem; }
  .suite .stat { font-size: .54rem; }
}

/* contact method quick cards */
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.method-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
  padding: 28px 20px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.method-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-500); }
.method-card .ico { width: 58px; height: 58px; border-radius: 16px; background: var(--green-800); color: var(--gold-500); display: grid; place-items: center; }
.method-card h4 { font-size: 1.1rem; }
.method-card b { font-family: var(--font-head); font-size: 1.15rem; color: var(--green-800); }
.method-card span { color: var(--muted); font-size: .88rem; }
@media (max-width: 760px) { .contact-methods { grid-template-columns: 1fr; } }

/* =========================================================
   RESPONSIVE GRID MODIFIERS (replace inline overrides)
   ========================================================= */
.value-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.desk-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.pricing-grid.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-inline: auto; }
@media (max-width: 1024px) {
  .value-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .desk-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .pricing-grid.cols-2 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .value-grid.cols-4, .desk-grid.cols-3 { grid-template-columns: 1fr; }
}

/* =========================================================
   HERO CONTACT FORM
   ========================================================= */
.hero-form {
  background: var(--white); border-radius: var(--radius); padding: 22px;
  box-shadow: var(--shadow-lg); width: 100%;
}
.hero-form h3 { color: var(--ink); font-size: 1.15rem; }
.hero-form p { color: var(--muted); font-size: .82rem; margin: 5px 0 14px; }
.hero-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-form .field { margin-bottom: 10px; }
.hero-form .field label { color: var(--ink); font-size: .76rem; font-weight: 600; }
.hero-form .field input, .hero-form .field textarea {
  background: var(--cream); border: 1px solid var(--line); color: var(--ink);
  padding: 11px 13px; border-radius: 10px; width: 100%; transition: border-color .25s, box-shadow .25s;
}
.hero-form .field input:focus, .hero-form .field textarea:focus { outline: none; border-color: var(--green-700); box-shadow: 0 0 0 3px rgba(42,77,134,.14); }
.hero-form textarea { min-height: 68px; resize: vertical; }
@media (max-width: 1180px) { .hero-form { flex: 1 1 100%; } }
@media (max-width: 460px) { .hero-form .form-row { grid-template-columns: 1fr; } }

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1180px) {
  .hero-top { grid-template-columns: 1fr; }
  .hero-aside { flex-direction: row; flex-wrap: wrap; }
  .hero-card { flex: 1 1 260px; }
}
@media (max-width: 1024px) {
  .nav-center { gap: 2px; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .team-grid, .stat-band, .amenity-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  /* mobile nav */
  .nav-center, .nav-right .btn, .location-pill { display: none; }
  .nav-toggle { display: block; }
  .nav-center {
    position: fixed; inset: 76px 0 auto 0; display: flex; flex-direction: column; gap: 4px;
    background: var(--cream); padding: 18px var(--gutter) 26px; border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform .45s var(--ease); z-index: 99; box-shadow: var(--shadow-md);
  }
  body.nav-open .nav-center { transform: translateY(0); }
  .nav-center .nav-link { padding: 14px 4px; border-radius: 10px; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav-center .nav-link::after { display: none; }
  .nav-center .btn { display: inline-flex; margin-top: 10px; }
  .nav-mobile-cta { display: flex !important; flex-direction: column; gap: 10px; }
  .nav-overlay { display: block; position: fixed; inset: 76px 0 0 0; background: rgba(22,36,29,.35); opacity: 0; pointer-events: none; transition: opacity .4s; z-index: 90; }
  body.nav-open .nav-overlay { opacity: 1; pointer-events: auto; }

  .intro-grid, .options-grid, .features-grid, .contact-grid, .cta-strip { grid-template-columns: 1fr; }
  .pricing-grid, .testi-grid, .value-grid { grid-template-columns: 1fr; }
  .desk-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-media { max-width: 420px; }
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery .wide { grid-column: span 2; }
  .stat-band, .team-grid, .amenity-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn, .cta-actions .btn { width: 100%; }
  .hero-banner { aspect-ratio: 4/3; }
  .footer-bottom { flex-direction: column; }
}
@media (min-width: 1600px) {
  :root { --maxw: 1360px; }
  body { font-size: 17px; }
}
