:root {
  /* Brand colours */
  --ink: #10100f;
  --body: #3b3a36;
  --muted: #74716a;
  --line: #e7e1d7;
  --paper: #f6f1e8;
  --cream: #fbf8f1;
  --white: #fff;
  --olive: #405e42;
  --olive-2: #6f8f5f;
  --olive-hover: #3a5038;
  --olive-active: #2a4028;
  --orange: #ef5a24;
  --blue: #1f6d8f;
  /* Shadows & radius */
  --shadow: 0 20px 60px rgba(32, 28, 20, .10);
  --shadow-sm: 0 4px 16px rgba(64, 94, 66, 0.12);
  --r: 8px;
  /* Spacing scale (8px grid) */
  --sp-1: 0.5rem;   /* 8px  */
  --sp-2: 1rem;     /* 16px */
  --sp-3: 1.5rem;   /* 24px */
  --sp-4: 2rem;     /* 32px */
  --sp-6: 3rem;     /* 48px */
  --sp-8: 4rem;     /* 64px */
  --sp-12: 6rem;    /* 96px */
  /* Font sizes */
  --text-sm: 0.875rem;  /* 14px */
  --text-base: 1rem;    /* 16px */
  --text-lg: 1.125rem;  /* 18px */
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--body);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; object-fit: cover; -webkit-user-select: none; user-select: none; }
a { color: inherit; text-decoration: none; -webkit-user-select: none; user-select: none; }
ul { margin: 0; padding: 0; list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: 16px; border-radius: var(--r); }
h1, h2, h3 {
  margin: 0;
  color: var(--ink);
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
}
h1 { font-size: clamp(2rem, 3.5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 2.5vw, 2.5rem); }
h3 { font-size: clamp(1.125rem, 1.75vw, 1.75rem); }
p { margin: 0; font-weight: 300; }

.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1rem;
  color: var(--olive);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--orange); }
.lead { max-width: 650px; color: var(--muted); font-size: clamp(1rem, 1.8vw, 1.18rem); }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section.paper { background: var(--paper); }
.section.white { background: var(--white); }
.section.dark { background: var(--ink); color: rgba(255,255,255,.66); }
.section.dark h2, .section.dark h3 { color: var(--white); }
.section-head { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .75fr); gap: 2rem; align-items: end; margin-bottom: 2.4rem; }
.section-head.center { display: block; text-align: center; }
.section-head.center .lead { margin: .85rem auto 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 241, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.brand { display: inline-flex; align-items: center; gap: .72rem; min-width: max-content; }
.brand img { width: 56px; height: 56px; object-fit: contain; background: none; }
.brand span { color: var(--ink); font-family: 'Poppins', system-ui, sans-serif; font-size: 1.5rem; }
.menu { display: flex; align-items: center; gap: clamp(.8rem, 2vw, 1.8rem); }
.menu a { color: var(--muted); font-size: .86rem; font-weight: 500; letter-spacing: .01em; transition: color .2s ease; }
.menu a:hover { color: var(--ink); }
.menu a[aria-current="page"] { color: var(--ink); font-weight: 700; }
.nav-actions { display: flex; align-items: center; gap: .8rem; }
.nav-actions .phone { color: var(--ink); font-weight: 600; font-size: .9rem; transition: color .2s ease, text-shadow .2s ease; }
.nav-actions .phone:hover { color: var(--olive); font-weight: 700; text-shadow: 0 0 12px rgba(64, 94, 66, 0.3); }
.mobile-toggle { display: none; border: 0; background: transparent; font-size: 1.8rem; line-height: 1; color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .78rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(16, 16, 15, 0.15); }
.btn:active { transform: translateY(0); box-shadow: 0 2px 6px rgba(16, 16, 15, 0.1); }
@media (hover: none) { .btn:hover { transform: none; box-shadow: none; } }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #2a2a28; }
.btn-dark:active { background: #1a1a18; }
.btn-olive { background: var(--olive); color: var(--white); }
.btn-olive:hover { background: #3a5038; }
.btn-olive:active { background: #2a4028; }
.btn-light { background: var(--white); color: var(--olive); }
.btn-light:hover { background: #f9f6f0; }
.btn-outline { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--olive); color: var(--olive); background: rgba(64, 94, 66, 0.02); }
.btn-outline:active { background: rgba(64, 94, 66, 0.05); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: stretch;
  background:
    radial-gradient(circle at 18% 20%, rgba(111,143,95,.34), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(31,109,143,.16), transparent 28%),
    linear-gradient(140deg, #fbf8f1 0%, #efe5d5 48%, #dbe6d4 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -5vw;
  bottom: -4vw;
  color: rgba(16,16,15,.045);
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: clamp(7rem, 18vw, 18rem);
  letter-spacing: -.05em;
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: minmax(360px, 1fr) minmax(0, 1.4fr); gap: clamp(2.5rem, 5vw, 5rem); align-items: center; padding: clamp(3rem, 6vw, 6rem) 0; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 .emphasis { color: var(--olive); font-style: italic; }
.hero-copy .lead { margin-top: 1.25rem; max-width: 520px; color: #5f5c55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 2.3rem; border: 1px solid var(--line); background: var(--line); border-radius: var(--r); overflow: hidden; }
.hero-points li { background: rgba(255,255,255,.55); padding: 1rem; color: var(--ink); font-size: .86rem; font-weight: 600; }
.hero-media { position: relative; z-index: 2; display: grid; gap: 12px; grid-template-columns: 1fr 1fr; align-items: end; }
.hero-media img { width: 100%; border-radius: var(--r); box-shadow: var(--shadow); object-fit: cover; }
.hero-media img:first-child { aspect-ratio: 3/4; }
.hero-media img:last-child { aspect-ratio: 3/4; transform: translateY(-40px); }
.metric-card {
  position: absolute;
  left: 14%;
  bottom: 9%;
  z-index: 3;
  width: min(260px, 58vw);
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.metric-card strong { display: block; color: var(--ink); font-family: 'Poppins', system-ui, sans-serif; font-size: 2rem; line-height: 1; }
.metric-card span { color: var(--muted); font-size: .78rem; }

.ticker { overflow: hidden; border-block: 1px solid var(--line); background: var(--white); }
.ticker-track { display: flex; width: max-content; animation: ticker 32s linear infinite; }
.ticker span { padding: .95rem 2rem; color: var(--muted); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
@keyframes ticker { to { transform: translateX(-50%); } }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: all .2s ease;
}
.card:hover {
  border-color: var(--olive);
  box-shadow: 0 4px 16px rgba(64, 94, 66, 0.12);
  transform: translateY(-2px);
}
.card:active {
  transform: translateY(0);
}
.card-body { padding: 1.4rem; }
.card img { width: 100%; aspect-ratio: 16/11; object-fit: cover; transition: transform .3s ease; }
.card:hover img { transform: scale(1.04); }
.card h3 { margin-bottom: .55rem; }
.card p { color: var(--muted); font-size: .92rem; }
.price { margin-top: 1rem; color: var(--ink); font-family: 'Poppins', system-ui, sans-serif; font-size: 2rem; line-height: 1; }
.price small { color: var(--muted); font-family: 'Poppins', sans-serif; font-size: .78rem; }

.space-list { border-top: 1px solid var(--line); }
.space-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) minmax(160px, auto);
  gap: 1.2rem;
  align-items: start;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
  transition: background .15s ease;
}
.space-row:hover {
  background: rgba(111, 143, 95, 0.02);
}
.space-row:active {
  background: transparent;
}
.space-row .num { color: var(--orange); font-family: 'Poppins', system-ui, sans-serif; font-size: 1.1rem; }
.space-row h3 { font-size: 1.7rem; }
.space-row p { max-width: 660px; color: var(--muted); font-size: .94rem; }
.space-row .price { margin: 0; text-align: right; }

.amenities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.amenity { min-height: 120px; padding: 1.15rem; background: var(--cream); }
.amenity b { display: block; color: var(--ink); margin-bottom: .35rem; }
.amenity span { color: var(--muted); font-size: .86rem; }

.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, .8fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split img { width: 100%; border-radius: var(--r); box-shadow: var(--shadow); aspect-ratio: 4/3; }
.check-list { display: grid; gap: .8rem; margin-top: 1.4rem; }
.check-list li { position: relative; padding-left: 1.35rem; color: var(--muted); }
.check-list li::before { content: ""; position: absolute; left: 0; top: .65rem; width: 7px; height: 7px; background: var(--orange); border-radius: 50%; }

.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 10px; }
.gallery figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--r); background: var(--line); }
.gallery img { width: 100%; height: 100%; min-height: 240px; }
.gallery .wide { grid-column: span 7; }
.gallery .mid { grid-column: span 5; }
.gallery .third { grid-column: span 4; }
.gallery figcaption { position: absolute; left: .7rem; bottom: .7rem; padding: .25rem .62rem; border-radius: 999px; background: rgba(16,16,15,.58); color: var(--white); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.1); border-radius: var(--r); overflow: hidden; margin-top: 2rem; }
.stat { padding: 1.5rem; background: rgba(255,255,255,.055); }
.stat strong { display: block; color: var(--white); font-family: 'Poppins', system-ui, sans-serif; font-size: 3rem; line-height: 1; }
.stat span { color: rgba(255,255,255,.5); font-size: .86rem; }

.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.quote { padding: 1.25rem; border: 1px solid var(--line); border-radius: var(--r); background: var(--white); }
.quote.featured { background: var(--ink); border-color: var(--ink); color: rgba(255,255,255,.72); }
.quote p { font-family: 'Poppins', system-ui, sans-serif; font-size: .92rem; line-height: 1.55; color: inherit; }
.quote cite { display: block; margin-top: .85rem; color: var(--muted); font-style: normal; font-size: .78rem; }
.quote.featured cite { color: rgba(255,255,255,.45); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.article-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: all .2s ease; cursor: pointer; }
.article-card:hover { border-color: var(--olive); box-shadow: 0 4px 16px rgba(64, 94, 66, 0.12); transform: translateY(-2px); }
.article-card:active { transform: translateY(0); }
.article-card a { display: block; text-decoration: none; color: inherit; }
.article-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .3s ease; }
.article-card:hover img { transform: scale(1.03); }
.article-card .meta { color: var(--olive); font-size: .72rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.article-card h3 { margin: .55rem 0; font-size: 1.45rem; }
.article-card p { color: var(--muted); font-size: .9rem; }

.faq { display: grid; gap: .8rem; }
.faq details { border: 1px solid var(--line); border-radius: var(--r); background: var(--white); padding: 1rem 1.15rem; }
.faq summary { cursor: pointer; color: var(--ink); font-weight: 800; }
.faq p { margin-top: .6rem; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.form { display: grid; gap: .9rem; padding: 1.4rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); box-shadow: 0 2px 8px rgba(16, 16, 15, 0.04); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
.form button { margin-top: 0.5rem; }
.form button:disabled { opacity: 0.6; cursor: not-allowed; }
[data-form-status] { min-height: 1.4em; padding: 0.6rem 0.8rem; border-radius: var(--r); font-size: .9rem; display: none; }
[data-form-status].show { display: block; animation: slideDown .3s ease; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
label { display: grid; gap: .35rem; color: var(--ink); font-size: .84rem; font-weight: 800; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--cream);
  color: var(--ink);
  font: inherit;
  padding: .8rem .9rem;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
input::placeholder, textarea::placeholder, select::placeholder {
  color: var(--muted);
  opacity: 0.7;
}
textarea { min-height: 130px; resize: vertical; }
input:hover, select:hover, textarea:hover {
  border-color: var(--olive2);
  background: rgba(111, 143, 95, 0.02);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--olive);
  outline-offset: 1px;
  border-color: var(--olive);
  background: rgba(255,255,255,.95);
  box-shadow: 0 0 0 3px rgba(64, 94, 66, .1);
}
.contact-card { padding: 1.4rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); }
.contact-card a { color: var(--olive); font-weight: 800; }

.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: linear-gradient(135deg, var(--olive) 0%, #3d5c40 100%);
  color: rgba(255,255,255,.75);
  text-align: center;
}
.cta::before {
  content: "WORK BETTER";
  position: absolute;
  inset: auto 0 -5vw 0;
  color: rgba(255,255,255,.05);
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: clamp(4rem, 13vw, 13rem);
  letter-spacing: -.05em;
}
.cta .wrap { position: relative; z-index: 1; }
.cta h2 { color: var(--white); margin-bottom: 1.2rem; font-size: clamp(2rem, 5vw, 3rem); }
.cta p { max-width: 620px; margin: 0 auto 2.2rem; font-size: 1.05rem; line-height: 1.6; }
.cta-actions { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; margin-top: 0.5rem; }

.site-footer { background: var(--ink); color: rgba(255,255,255,.5); padding: 4rem 0 2rem; border-top: 1px solid rgba(255,255,255,.1); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 3rem; }
.footer-grid h2, .footer-grid h3 { color: var(--white); font-family: 'Poppins', sans-serif; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 600; }
.footer-grid a { display: block; margin-top: .65rem; color: rgba(255,255,255,.6); font-size: .92rem; transition: color .2s ease, transform .2s ease; }
.footer-grid a:hover { color: var(--white); transform: translateX(4px); }
.footer-grid p { margin-bottom: 1rem; line-height: 1.6; font-size: .95rem; color: rgba(255,255,255,.55); }
.footer-brand { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.2rem; }
.footer-brand img { width: 40px; height: 40px; object-fit: contain; }
.footer-brand strong { color: var(--white); font-family: 'Poppins', system-ui, sans-serif; font-size: 1.4rem; font-weight: 600; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1.5rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; color: rgba(255,255,255,.45); }

/* ── Event cards ──────────────────────────────────────────── */
.event-list { display: grid; gap: 1.5rem; margin-top: 2rem; }
.event-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  align-items: center;
  cursor: pointer;
  transition: box-shadow .3s ease, transform .3s cubic-bezier(.22,1,.36,1), border-color .2s ease;
}
.event-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  transform: translateY(-3px);
  border-color: var(--olive);
}
.event-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 6px;
}
.event-card-meta { color: var(--muted); font-size: .9rem; margin: .4rem 0 .9rem; }
.event-card-price { font-weight: 700; color: var(--ink); }
.event-card-price small { color: var(--muted); font-weight: 400; margin-left: .3rem; }
.event-card-actions { display: flex; gap: 1rem; align-items: center; margin-top: 1.25rem; flex-wrap: wrap; }

/* ── Scroll reveal ────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

/* ── Hero floating images ─────────────────────────────────── */
.hero-media img:first-child {
  animation: float-a 6s ease-in-out infinite;
}
.hero-media img:last-child {
  animation: float-b 7s ease-in-out infinite;
}
@keyframes float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(-40px); }
  50% { transform: translateY(-30px); }
}
@media (max-width: 560px) {
  .hero-media img:last-child { animation: none; }
}

/* ── Metric card float ────────────────────────────────────── */
.metric-card {
  animation: float-card 5s ease-in-out infinite;
}
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ── Nav scroll-shrink ────────────────────────────────────── */
.site-header {
  transition: box-shadow .3s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(16,16,15,.09);
}

/* ── Nav link underline ───────────────────────────────────── */
.menu a {
  position: relative;
  transition: color .2s;
}
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--olive);
  transition: width .25s cubic-bezier(.22,1,.36,1);
}
.menu a:hover::after,
.menu a[aria-current="page"]::after {
  width: 100%;
}

/* ── Button enhanced hover ────────────────────────────────── */
.btn {
  transition: transform .22s cubic-bezier(.22,1,.36,1), background .2s ease, border-color .2s ease, box-shadow .22s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16,16,15,.13);
}
.btn:active { transform: translateY(0); box-shadow: none; }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(16,16,15,.10);
}
.card img {
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.card:hover img { transform: scale(1.04); }

/* ── Space rows ───────────────────────────────────────────── */
.space-row {
  transition: background .2s ease;
  border-radius: 0;
}
.space-row:hover { background: rgba(111,143,95,.04); }
.space-row .num {
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.space-row:hover .num { transform: scale(1.15) translateX(2px); }

/* ── Amenity tiles ────────────────────────────────────────── */
.amenity {
  transition: background .25s ease, transform .25s cubic-bezier(.22,1,.36,1);
}
.amenity:hover {
  background: var(--white);
  transform: translateY(-3px);
}

/* ── Gallery ──────────────────────────────────────────────── */
.gallery figure img {
  transition: transform .55s cubic-bezier(.22,1,.36,1);
}
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  transition: opacity .25s ease, transform .25s cubic-bezier(.22,1,.36,1);
  opacity: .85;
  transform: translateY(0);
}
.gallery figure:hover figcaption {
  opacity: 1;
  transform: translateY(-2px);
}

/* ── Stat counter ─────────────────────────────────────────── */
.stat strong {
  display: block;
  transition: color .2s;
}

/* ── Testimonial / quote ──────────────────────────────────── */
.quote {
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease;
}
.quote:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(16,16,15,.08);
}

/* ── Article cards ────────────────────────────────────────── */
.article-card {
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease;
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(16,16,15,.10);
}
.article-card img {
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.article-card:hover img { transform: scale(1.04); }

/* ── FAQ smooth open ──────────────────────────────────────── */
.faq details {
  transition: background .2s ease;
}
.faq details[open] { background: var(--cream); }
.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--olive);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p {
  overflow: hidden;
  animation: faq-open .3s cubic-bezier(.22,1,.36,1);
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

/* ── CTA buttons ──────────────────────────────────────────── */
.cta .btn {
  font-weight: 600;
  transition: all .3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.cta .btn-light {
  background: var(--white);
  color: var(--olive);
  animation: cta-pulse 3s ease-in-out infinite;
}
.cta .btn-light:hover {
  background: #f5f5f5;
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
  transform: translateY(-2px);
}
.cta .btn-olive {
  border-color: var(--white);
  color: var(--white);
}
.cta .btn-olive:hover {
  background: rgba(255,255,255,.1);
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
  transform: translateY(-2px);
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(0,0,0,.15), 0 0 0 0 rgba(255,255,255,.4); }
  50% { box-shadow: 0 4px 12px rgba(0,0,0,.15), 0 0 0 12px rgba(255,255,255,0); }
}

/* ── Footer links ─────────────────────────────────────────── */
.footer-grid a {
  transition: color .2s ease, transform .2s ease;
  display: block;
  padding: 0.35rem 0;
  border-radius: 4px;
  outline-offset: 2px;
}
.footer-grid a:hover {
  color: var(--white);
  transform: translateX(3px);
}
.footer-grid a:focus {
  outline: 2px solid var(--orange);
}
.footer-grid a:active {
  transform: translateX(0);
}

@media (max-width: 880px) {
  .mobile-toggle { display: inline-flex; transition: transform .2s ease; }
  .mobile-toggle:active { transform: scale(0.95); }
  .menu {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    z-index: 40;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .menu.open { display: flex; animation: menuSlideDown .2s ease; }
  @keyframes menuSlideDown { from { opacity: 0; } to { opacity: 1; } }
  .menu a { padding: 1rem 20px; border-bottom: 1px solid var(--line); color: var(--ink); display: block; font-weight: 500; transition: background .15s ease, color .15s ease; min-height: 44px; display: flex; align-items: center; }
  .menu a:active { background: rgba(64, 94, 66, 0.08); }
  .menu a[aria-current="page"] { background: rgba(64, 94, 66, 0.1); color: var(--olive); font-weight: 700; }
  .nav-actions .phone { display: none; }
  .hero-grid, .section-head, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-media { grid-template-columns: 1fr 1fr; }
  .cards, .blog-grid, .footer-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .event-card { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.5rem; }
  .amenities { grid-template-columns: repeat(2, 1fr); }
  .gallery .wide, .gallery .mid, .gallery .third { grid-column: span 12; }
  .stats { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  h1 { font-size: clamp(2rem, 5vw, 2.25rem); }
  h2 { font-size: clamp(1.5rem, 4vw, 1.75rem); }
  h3 { font-size: clamp(1.125rem, 3vw, 1.375rem); }
  .lead { font-size: clamp(0.95rem, 2.5vw, 1.05rem); }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 24px, 1180px); padding: 0; }
  .nav { height: 64px; padding: 0 1rem; }
  .brand span { font-size: 1rem; }
  .brand img { width: 32px; height: 32px; }
  .nav-actions .phone { display: none; }
  .nav-actions .btn { padding: 0.6rem 1rem; font-size: 0.75rem; }
  .menu { padding: 0.8rem 16px 1.2rem; }

  .hero { min-height: 50vh; padding: 2rem 1rem; }
  .hero-points, .form-row, .amenities { grid-template-columns: 1fr; gap: 1rem; }
  .hero-media { grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 1.5rem; }
  .hero-media img:first-child { aspect-ratio: 4/5; }
  .hero-media img:last-child { aspect-ratio: 4/5; transform: translateY(-20px); display: block; }
  .metric-card { position: static; width: 100%; margin-top: 0.5rem; padding: 1rem; }

  .section { padding: 2.5rem 1rem; }
  .section-head { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
  .section-head.center { text-align: left; }

  .space-row { grid-template-columns: 1fr; gap: 0.8rem; padding: 1rem; }
  .space-row .price { text-align: left; margin-top: 0.5rem; }
  .space-row .num { font-size: 1.5rem; }

  .cards, .blog-grid, .testimonial-grid, .event-list { grid-template-columns: 1fr; gap: 1rem; }
  .event-card { grid-template-columns: 1fr; gap: 1rem; padding: 1.25rem; }
  .event-card-actions { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .event-card-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid h3 { margin-bottom: 0.8rem; }
  .footer-grid a { margin-top: 0.5rem; min-height: 44px; display: block; padding: 0.5rem 0; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; margin-top: 2rem; }

  input, select, textarea, button { min-height: 44px; padding: 0.5rem 0.75rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta { padding: 3.5rem 1rem; }
  .cta h2 { margin-bottom: 1rem; }
  .cta p { margin-bottom: 1.5rem; }
  .cta-actions { flex-direction: column; gap: 1rem; }
  .cta-actions .btn { width: 100%; min-height: 48px; font-size: 0.95rem; }

  .gallery .wide, .gallery .mid, .gallery .third { grid-column: span 12; }
  .stats { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .wrap { width: min(100% - 20px, 1180px); }
  .nav { height: 60px; }
  .brand span { font-size: 0.8rem; }
  .brand img { width: 28px; height: 28px; }
  .brand { gap: 0.3rem; }
  .menu { padding: 0.5rem 12px 1rem; }
  .mobile-toggle { font-size: 1.5rem; }

  .section { padding: 2rem 0.75rem; }
  .section-head { margin-bottom: 1rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.125rem; }

  .metric-card { font-size: 0.9rem; padding: 0.75rem; }
  .space-row .num { font-size: 1.2rem; }
  .space-row .price { font-size: 0.9rem; }

  .footer-grid { gap: 1.5rem; }
  .footer-grid h3 { font-size: 0.7rem; margin-bottom: 0.8rem; }
  .footer-grid a { font-size: 0.85rem; }
  .footer-bottom { font-size: 0.75rem; }

  input, select, textarea { font-size: 16px !important; }
  .btn { padding: 0.6rem 1rem; font-size: 0.8rem; }
  .amenities { grid-template-columns: 1fr; }

  .quote { padding: 1rem; margin-bottom: 1rem; }
  .article-card { margin-bottom: 1rem; }
}

/* ── Accessibility: Reduced Motion ────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-media img { animation: none !important; }
  .metric-card { animation: none !important; }
}

/* ── Very Small Mobile Screens (below 360px) ──────────────────── */
@media (max-width: 360px) {
  .wrap { width: min(100% - 16px, 1180px); }
  .nav { height: 56px; padding: 0 0.75rem; }
  .brand span { font-size: 0.7rem; }
  .brand img { width: 24px; height: 24px; }
  .nav-actions .btn { padding: 0.5rem 0.75rem; font-size: 0.7rem; }
  .mobile-toggle { font-size: 1.2rem; }

  .section { padding: 1.5rem 0.5rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .form { padding: 1rem; gap: 0.7rem; }
  input, select, textarea, button { padding: 0.7rem 0.8rem; font-size: 16px; }
  button { padding: 0.8rem 1rem; }

  .card-body { padding: 1rem; }
  .quote { padding: 0.9rem; }
}
