/* ============================================================
   HOPCLOVER STUDIOS — graphite, bold, sleek, contemporary
   ============================================================ */

:root {
  /* graphite palette */
  --bg:           #0d0d0d;
  --bg-1:         #141414;
  --bg-2:         #1a1a1a;
  --bg-3:         #232323;

  --ink:          #f5f4f0;
  --ink-mute:     rgba(245,244,240,.58);
  --ink-faint:    rgba(245,244,240,.32);

  --rule:         rgba(245,244,240,.10);
  --rule-soft:    rgba(245,244,240,.06);
  --rule-strong:  rgba(245,244,240,.22);

  /* signature accent */
  --clover:       #ea5e65;
  --clover-warm:  #f47d83;

  /* type */
  --display: "Inter", "Helvetica Neue", Helvetica, ui-sans-serif, system-ui, sans-serif;
  --sans:    "Schibsted Grotesk", ui-sans-serif, system-ui, sans-serif;
  --mono:    "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* layout */
  --gutter: clamp(20px, 4vw, 64px);
  --maxw: 1480px;
  --radius: 0;
}

/* RESET ============================================================ */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--bg); }
body {
  font-family: var(--sans);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
  letter-spacing: -.005em;
}
img,svg { display: block; max-width: 100%; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select, button { font: inherit; color: inherit; }

::selection { background: var(--clover); color: var(--bg); }

/* atmospheric grain (very subtle) ===================================== */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(182,240,138,.06), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(255,255,255,.04), transparent 60%);
}

/* SKIP LINK ================================================ */
.skip { position: absolute; left: -9999px; top: 0; }
.skip:focus { left: 16px; top: 16px; background: var(--ink); color: var(--bg); padding: 10px 14px; z-index: 9999; }

/* TYPOGRAPHY HELPERS ======================================= */
.mono { font-family: var(--mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; }
.dim  { color: var(--ink-mute); }

em { font-style: normal; color: var(--clover); font-weight: inherit; }

/* UTIL TOP STRIP =========================================== */
.util {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}
.util__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gutter);
  font-size: .66rem;
}
.util__center { justify-self: center; }
@media (max-width: 760px) {
  .util { display: none; }
}

/* NAV ====================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13,13,13,.78);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: 16px var(--gutter);
}
.brand__logo { height: 30px; width: auto; display: block; }
.footer__logo img { height: 34px; width: auto; display: block; }
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 24;
}
.brand__mark { width: 28px; height: 28px; color: var(--ink); flex: 0 0 auto; }
.brand__mark circle { fill: var(--ink); }
.brand__mark g path, .brand__mark g circle { fill: var(--bg); }
.brand__word em { color: var(--ink-mute); margin-left: .25em; font-weight: 500; }
.brand__word::before { content: " "; }

.nav__links {
  display: flex;
  gap: clamp(14px, 2.5vw, 36px);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: -.005em;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-mute);
  transition: color .2s;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 2px;
  height: 1px; background: var(--clover);
  transition: right .35s cubic-bezier(.7,0,.2,1);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }

.nav__menu { display: none; }
@media (max-width: 880px) {
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
  }
  .nav__brand { font-size: 1rem; }
  .brand__logo { height: 26px; }
  .nav__cta { padding: 10px 16px; font-size: .85rem; }
  .nav__cta span { display: none; }
  .nav__cta::before { content: "Book"; }
  .nav__links {
    position: fixed;
    inset: 70px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    padding: 24px var(--gutter);
    transform: translateY(calc(-100% - 90px));
    transition: transform .4s cubic-bezier(.7,0,.2,1);
    visibility: hidden;
  }
  .nav__links.is-open { transform: translateY(0); visibility: visible; }
  .nav__links a { padding: 14px 0; font-size: 1.4rem; font-family: var(--display); font-weight: 600; border-bottom: 1px solid var(--rule); color: var(--ink); }
  .nav__menu {
    display: inline-flex; flex-direction: column; justify-content: center;
    width: 36px; height: 36px; gap: 5px; align-items: center;
  }
  .nav__menu span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s; }
  .nav__menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
  .nav__menu[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
}

/* BUTTONS ================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: -.005em;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 16px; height: 16px; transition: transform .35s cubic-bezier(.7,0,.2,1); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary {
  background: var(--ink);
  color: var(--bg);
}
.btn--primary:hover { background: var(--clover); color: var(--bg); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn--lg { padding: 18px 30px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* link arrow underline */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  transition: gap .25s ease, color .25s, border-color .25s;
}
.link-arrow:hover { gap: 14px; color: var(--clover); border-color: var(--clover); }
.link-arrow svg { width: 16px; height: 16px; }
.link-arrow--lg { font-size: 1.05rem; padding: 10px 0; }

/* HERO ===================================================== */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 100px) 0 0;
  z-index: 2;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/video/hero-poster.jpg');
  background-size: cover;
  background-position: center 45%;
  background-repeat: no-repeat;
  filter: grayscale(.5) brightness(.66) contrast(1.08);
  z-index: -3;
  pointer-events: none;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: grayscale(.5) brightness(.66) contrast(1.08);
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__video.is-playing { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hero__media { display: none; } }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, transparent 0%, rgba(13,13,13,.45) 60%, var(--bg) 100%),
    linear-gradient(180deg, rgba(13,13,13,.55) 0%, rgba(13,13,13,.3) 40%, rgba(13,13,13,.9) 100%);
  z-index: -1;
  pointer-events: none;
}
.hero__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
}
.hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(50px, 10.5vw, 196px);
  line-height: .94;
  letter-spacing: -.055em;
  color: var(--ink);
  font-variation-settings: "opsz" 96;
}
.hero__title em {
  color: var(--clover);
  font-variation-settings: "opsz" 96;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .word {
  display: inline-block;
  transform: translateY(110%);
  animation: wordRise .9s cubic-bezier(.7,0,.2,1) forwards;
}
.hero__title .line:nth-child(1) .word { animation-delay: .15s; }
.hero__title .line:nth-child(2) .word:nth-child(1) { animation-delay: .25s; }
.hero__title .line:nth-child(2) .word:nth-child(2) { animation-delay: .35s; }
.hero__title .line:nth-child(3) .word { animation-delay: .45s; }
@keyframes wordRise {
  to { transform: translateY(0); }
}

.hero__lede {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  max-width: 56ch;
  color: var(--ink-mute);
  letter-spacing: -.01em;
}

.hero__cta {
  display: flex; flex-wrap: wrap; gap: 14px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-top: clamp(16px, 2vw, 32px);
}
.hero__stats li {
  padding: 26px clamp(14px, 1.5vw, 24px);
  display: flex; flex-direction: column; gap: 10px;
  border-right: 1px solid var(--rule);
}
.hero__stats li:last-child { border-right: 0; }
.hero__stats strong {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--ink);
  font-variation-settings: "opsz" 96;
}
.hero__stats sup {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  position: relative;
  top: -.3em;
}
@media (max-width: 760px) {
  .hero__stats { grid-template-columns: repeat(2,1fr); }
  .hero__stats li:nth-child(2) { border-right: 0; }
  .hero__stats li:nth-child(1), .hero__stats li:nth-child(2) { border-bottom: 1px solid var(--rule); }
}

/* LOGO BAND (brands grid) ================================= */
.logo-band {
  margin-top: clamp(40px, 6vw, 90px);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg-1);
}
.logo-band__label {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(22px, 3vw, 34px) var(--gutter) 0;
}
.logo-band__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(18px, 2.5vw, 32px) var(--gutter) clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: clamp(22px, 3vw, 44px) clamp(14px, 2vw, 28px);
  align-items: center;
  list-style: none;
}
.logo-band__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
}
.logo-band__cell img {
  width: var(--w, 110px);
  max-width: 100%;
  height: auto;
  opacity: .78;
  transition: opacity .3s ease;
}
.logo-band__cell:hover img { opacity: 1; }
@media (max-width: 880px) { .logo-band__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 540px) { .logo-band__grid { grid-template-columns: repeat(4, 1fr); gap: 22px 12px; } .logo-band__cell { min-height: 40px; } }

/* SECTION HEADER ========================================== */
.section-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  margin-bottom: clamp(40px, 5vw, 80px);
}
.section-head--split {
  grid-template-columns: 1.2fr 1fr;
  align-items: end;
  gap: clamp(24px, 5vw, 80px);
}
@media (max-width: 880px) {
  .section-head--split { grid-template-columns: 1fr; }
}

.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 5.25vw, 91px);
  line-height: .99;
  letter-spacing: -.04em;
  color: var(--ink);
  font-variation-settings: "opsz" 64;
}
.section-title em {
  color: var(--clover);
  font-variation-settings: "opsz" 96;
}
.section-sub {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-mute);
  max-width: 56ch;
}

/* MANIFESTO =============================================== */
.manifesto {
  padding: clamp(80px, 10vw, 180px) 0;
  position: relative;
  z-index: 2;
}
.manifesto__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  gap: 48px;
}
.manifesto__copy {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 4.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -.035em;
  color: var(--ink);
  max-width: 22ch;
  font-variation-settings: "opsz" 96;
}
.manifesto__copy em { color: var(--clover); font-weight: 400; }

/* FLOORPLAN =============================================== */
.floorplan {
  padding: clamp(80px, 10vw, 140px) 0 clamp(40px, 6vw, 90px);
  background: var(--bg-1);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  z-index: 2;
}
.floorplan__diagram {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  color: var(--ink);
}
.floorplan__diagram svg { width: 100%; height: auto; }
@media (max-width: 880px) {
  .floorplan__diagram { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .floorplan__diagram svg { min-width: 820px; }
  .floorplan__diagram--scroll { scrollbar-width: thin; }
}
.floorplan__caption {
  text-align: center;
  margin-top: 22px;
}
.zone__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -.04em;
  fill: var(--ink);
}
.zone__lbl {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -.02em;
  fill: var(--ink);
}
.zone__lbl.small { font-size: 14px; }
.zone__sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  fill: var(--ink-mute);
}
/* Override SVG fills via CSS ----------- */
.floorplan__diagram svg [stroke="currentColor"] { stroke: rgba(245,244,240,.55); }
.floorplan__diagram svg rect[fill^="rgba(47,74,56"] { fill: rgba(182,240,138,.06); }
.floorplan__diagram svg pattern#grid path { stroke: rgba(245,244,240,.05); }
.floorplan__diagram svg pattern#dots circle { fill: rgba(245,244,240,.18); }
.zone rect { transition: fill .3s ease; cursor: pointer; }
.zone:hover rect { fill: rgba(182,240,138,.22) !important; }
.floorplan__diagram svg path[fill="rgba(22,21,19,.85)"] { fill: var(--clover); }
.floorplan__diagram svg polygon[fill="currentColor"] { fill: var(--ink); }

/* SPACES (cards) ========================================== */
.spaces {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) var(--gutter);
  display: grid;
  gap: clamp(60px, 8vw, 120px);
  position: relative;
  z-index: 2;
}
.space {
  display: grid;
  grid-template-columns: 100px 1fr 360px;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.space__index {
  display: flex; flex-direction: column; gap: 10px;
}
.space__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(56px, 7vw, 110px);
  line-height: .97;
  letter-spacing: -.06em;
  color: var(--clover);
  font-variation-settings: "opsz" 96;
}
.space__body { display: grid; gap: 24px; }
.space__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 4.2vw, 67px);
  line-height: .94;
  letter-spacing: -.04em;
  color: var(--ink);
  font-variation-settings: "opsz" 64;
}
.space__title em { color: var(--clover); }
.space__lede {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.55;
  color: var(--ink-mute);
  max-width: 52ch;
}
.space__list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
  margin-top: 4px;
}
.space__list li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: .95rem;
}
.space__list li > span:last-child { color: var(--ink); font-weight: 500; }

.space__visual {
  position: sticky;
  top: 100px;
  align-self: start;
  background: var(--bg-1);
  border: 1px solid var(--rule);
  padding: 22px;
}
.space__visual svg { color: var(--ink); }
.space__visual svg [stroke="currentColor"] { stroke: rgba(245,244,240,.45); }
.space__visual svg rect[fill^="rgba(47,74,56"] { fill: rgba(182,240,138,.05); }
.space__visual svg circle[fill="none"] { stroke: rgba(245,244,240,.45); }

@media (max-width: 1080px) {
  .space { grid-template-columns: 1fr; gap: 28px; }
  .space__visual { position: static; max-width: 360px; }
}

/* KITCHEN FEATURE ========================================= */
.kitchen-feat {
  background: var(--bg-2);
  color: var(--ink);
  padding: clamp(80px, 10vw, 180px) 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.kitchen-feat::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(182,240,138,.12), transparent 55%);
  pointer-events: none;
}
.kitchen-feat__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  display: grid;
  gap: clamp(36px, 5vw, 72px);
}
.kitchen-feat__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 105px);
  line-height: .99;
  letter-spacing: -.045em;
  font-variation-settings: "opsz" 96;
}
.kitchen-feat__title em {
  color: var(--clover);
}
.kitchen-feat__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 72px);
  max-width: 1100px;
}
.kitchen-feat__cols p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--ink-mute);
}
.kitchen-feat__cols em { color: var(--clover); }
@media (max-width: 760px) { .kitchen-feat__cols { grid-template-columns: 1fr; } }

.chips {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.chips li {
  display: inline-block;
  padding: 9px 16px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: -.005em;
  color: var(--ink);
  transition: all .2s;
}
.chips--select li:hover, .chips--check li:hover { border-color: var(--clover); color: var(--clover); }

/* EQUIPMENT =============================================== */
.equipment {
  padding: clamp(80px, 10vw, 160px) 0 clamp(60px, 7vw, 110px);
  position: relative;
  z-index: 2;
}
.equipment__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
}
.kit {
  padding: 36px 30px 36px 0;
  border-right: 1px solid var(--rule);
  display: grid;
  gap: 16px;
  align-content: start;
}
.kit:last-child { border-right: 0; padding-right: 0; }
.kit + .kit { padding-left: 30px; }
.kit h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 1.7vw, 30px);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--ink);
  font-variation-settings: "opsz" 32;
}
.kit p:not(.mono) {
  color: var(--ink-mute);
  font-size: .98rem;
  line-height: 1.55;
}
.equipment > .link-arrow--lg {
  display: block;
  width: max-content;
  margin: clamp(40px, 5vw, 64px) var(--gutter) 0;
}
@media (max-width: 880px) {
  .equipment__grid { grid-template-columns: 1fr 1fr; }
  .kit { border-right: 1px solid var(--rule); padding: 30px 20px; border-bottom: 1px solid var(--rule); }
  .kit:nth-child(2) { border-right: 0; }
  .kit:nth-child(3), .kit:nth-child(4) { border-bottom: 0; }
  .kit + .kit { padding-left: 20px; }
}
@media (max-width: 540px) {
  .equipment__grid { grid-template-columns: 1fr; }
  .kit { border-right: 0; }
}

/* AMENITIES =============================================== */
.amenities {
  background: var(--clover);
  color: var(--bg);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.amenities__rail {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 36px var(--gutter);
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  align-items: center;
}
.amenities__rail > div {
  display: flex; flex-direction: column; gap: 6px;
  padding: 8px 0 8px 20px;
  border-left: 1px solid rgba(13,13,13,.18);
}
.amenities__rail > div:first-child { border-left: 0; padding-left: 0; }
.amenity-ico { width: 1em; height: 1em; display: block; }
.amenities__rail strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1;
  letter-spacing: -.04em;
  font-variation-settings: "opsz" 96;
}
.amenities__rail .mono.dim { color: rgba(13,13,13,.65); }
@media (max-width: 1080px) { .amenities__rail { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px)  { .amenities__rail { grid-template-columns: repeat(2, 1fr); } }

/* RATES =================================================== */
.rates {
  padding: clamp(80px, 10vw, 160px) 0;
  position: relative;
  z-index: 2;
}
.rates__table {
  max-width: var(--maxw);
  margin: 0 auto clamp(28px, 3vw, 40px);
  padding: 0 var(--gutter);
  border-top: 1px solid var(--ink);
}
.rates__row {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
  gap: 16px;
  transition: background .2s;
}
.rates__row:not(.rates__row--head):not(.rates__row--feature):hover { background: var(--bg-1); }
.rates__row--head {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}
.rates__row > div {
  display: flex; flex-direction: column; gap: 4px;
}
.rates__row strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 32px);
  letter-spacing: -.04em;
  font-variation-settings: "opsz" 32;
}
.rates__row > div:not(:first-child) {
  font-family: var(--display);
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 600;
  letter-spacing: -.03em;
  color: var(--ink);
  font-variation-settings: "opsz" 32;
}
.rates__row > div:not(:first-child) .mono.dim {
  font-size: .62rem;
  margin-bottom: 0;
  color: var(--ink-faint);
  font-weight: 500;
}
.rates__row--feature {
  background: var(--bg-1);
}
.rates__row--feature strong { color: var(--clover); }
.rates__notes {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  gap: 8px;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 400;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-mute);
}
.rates__cta {
  display: inline-flex;
  margin: clamp(28px, 4vw, 48px) var(--gutter) 0;
}
@media (max-width: 720px) {
  .rates__row { grid-template-columns: 1fr; gap: 6px; padding: 22px 0; }
  .rates__row--head { display: none; }
}

/* FAQ ===================================================== */
.faq {
  padding: clamp(60px, 8vw, 130px) 0;
  background: var(--bg-1);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  z-index: 2;
}
.faq__list {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  border-top: 1px solid var(--ink);
}
.faq__list li { border-bottom: 1px solid var(--rule); }
.faq__list summary {
  display: grid;
  grid-template-columns: 80px 1fr 32px;
  gap: 24px;
  padding: 28px 0;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: -.03em;
  font-variation-settings: "opsz" 32;
  transition: color .2s;
  color: var(--ink);
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::marker { display: none; content: ""; }
.faq__list summary:hover { color: var(--clover); }
.faq__plus {
  width: 24px; height: 24px;
  position: relative;
  justify-self: end;
}
.faq__plus::before, .faq__plus::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 18px; height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform .3s ease;
}
.faq__plus::after { transform: translate(-50%, -50%) rotate(90deg); }
details[open] .faq__plus::after { transform: translate(-50%, -50%) rotate(0); }
.faq__list details p {
  padding: 0 0 30px 104px;
  max-width: 70ch;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(15px, 1.05vw, 17px);
  color: var(--ink-mute);
  line-height: 1.55;
}
@media (max-width: 720px) {
  .faq__list summary { grid-template-columns: 60px 1fr 24px; gap: 14px; }
  .faq__list details p { padding-left: 74px; }
}

/* ENQUIRE ================================================== */
.enquire {
  padding: clamp(80px, 10vw, 180px) 0;
  position: relative;
  z-index: 2;
}
.enquire__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.enquire__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(42px, 5.6vw, 105px);
  line-height: .99;
  letter-spacing: -.045em;
  color: var(--ink);
  font-variation-settings: "opsz" 96;
  margin-bottom: 26px;
}
.enquire__title em { color: var(--clover); }
.enquire__lede {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(18px, 1.3vw, 22px);
  line-height: 1.5;
  color: var(--ink-mute);
  max-width: 44ch;
  margin-bottom: 36px;
}
.enquire__contact { display: grid; gap: 22px; }
.enquire__contact li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  align-items: start;
  line-height: 1.55;
}
.enquire__contact a:hover { color: var(--clover); }

@media (max-width: 880px) {
  .enquire__grid { grid-template-columns: 1fr; }
}

/* FORM ===================================================== */
.enquire__form {
  background: var(--bg-1);
  border: 1px solid var(--rule);
  padding: clamp(28px, 4vw, 52px);
  display: grid;
  gap: 24px;
  position: relative;
}
.form__lbl { display: block; }
.field { display: grid; gap: 10px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--rule);
  background: var(--bg-2);
  color: var(--ink);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -.005em;
  transition: border-color .2s, background .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--clover);
  background: var(--bg-3);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field textarea { resize: vertical; min-height: 120px; }

/* chip selectors */
.chips--select, .chips--check {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 10px;
}
.chips--select label, .chips--check label {
  position: relative;
  cursor: pointer;
}
.chips--select input, .chips--check input {
  position: absolute; opacity: 0; pointer-events: none;
}
.chips--select span, .chips--check span {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-mute);
  transition: all .2s;
  background: transparent;
  letter-spacing: -.005em;
}
.chips--select label:hover span, .chips--check label:hover span {
  border-color: var(--ink);
  color: var(--ink);
}
.chips--select input:checked + span, .chips--check input:checked + span {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.form__small { font-size: .66rem; margin-top: -4px; }

@media (max-width: 540px) {
  .field-row { grid-template-columns: 1fr; }
}

/* FOOTER ================================================== */
.footer {
  background: var(--bg-2);
  color: var(--ink);
  padding: clamp(48px, 6vw, 90px) 0 28px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--rule);
}
.footer__top, .footer__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--rule);
  flex-wrap: wrap;
}
.footer__logo {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -.03em;
  font-variation-settings: "opsz" 24;
}
.footer__logo em { color: var(--ink-mute); margin-left: .25em; font-weight: 500; }
.footer__links { display: flex; gap: clamp(14px, 2vw, 28px); flex-wrap: wrap; }
.footer__links a { color: var(--ink-mute); transition: color .2s; font-weight: 500; }
.footer__links a:hover { color: var(--clover); }

.footer__big {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(120px, 23vw, 380px);
  line-height: .97;
  letter-spacing: -.07em;
  text-align: center;
  margin: clamp(20px, 4vw, 56px) 0;
  padding: 0 var(--gutter);
  font-variation-settings: "opsz" 96;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(245,244,240,.08) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  border-top: 1px solid var(--rule);
  font-size: .66rem;
}
.footer__bottom .dim { color: var(--ink-faint); }

/* FLOAT CTA =============================================== */
.float-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--clover);
  color: var(--bg);
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: -.005em;
  box-shadow: 0 14px 38px rgba(0,0,0,.5), 0 2px 6px rgba(0,0,0,.3);
  transform: translateY(140%);
  transition: transform .5s cubic-bezier(.7,0,.2,1), background .25s;
}
.float-cta.is-visible { transform: translateY(0); }
.float-cta:hover { background: var(--clover-warm); }
.float-cta__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 0 0 4px rgba(13,13,13,.25);
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(13,13,13,.3); transform: scale(1); }
  50%      { box-shadow: 0 0 0 9px rgba(13,13,13,0);   transform: scale(1.18); }
}

/* REVEAL ON SCROLL ======================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .hero__title .word { transform: translateY(0); }
}

/* ============================================================
   MULTIPAGE COMPONENTS
   ============================================================ */

/* nav active state */
.nav__links a.is-active { color: var(--ink); }
.nav__links a.is-active::after { right: 0; background: var(--clover); }

/* breadcrumbs */
.crumbs {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px var(--gutter) 0;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.crumbs ol { display: flex; flex-wrap: wrap; gap: 8px; }
.crumbs li { display: inline-flex; align-items: center; gap: 8px; }
.crumbs li + li::before { content: "/"; color: var(--ink-faint); margin-right: 0; }
.crumbs a { color: var(--ink-mute); transition: color .2s; }
.crumbs a:hover { color: var(--clover); }
.crumbs [aria-current="page"] { color: var(--ink); }

/* page hero (sub-pages) */
.page-hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 96px) var(--gutter) clamp(32px, 4vw, 64px);
  display: grid;
  gap: clamp(16px, 2vw, 28px);
  position: relative;
  z-index: 2;
}
.page-hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(42px, 7.7vw, 140px);
  line-height: .99;
  letter-spacing: -.045em;
  color: var(--ink);
  font-variation-settings: "opsz" 96;
}
.page-hero__title em {
  color: var(--clover);
  font-variation-settings: "opsz" 96;
}
.page-hero__sub {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  color: var(--ink-mute);
  max-width: 60ch;
}
.page-hero__cta {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 16px;
}

/* generic h2/lede */
.h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.0;
  letter-spacing: -.04em;
  color: var(--ink);
  font-variation-settings: "opsz" 64;
  margin-bottom: 32px;
}
.lede {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.55;
  color: var(--ink-mute);
  max-width: 60ch;
}

/* card grid (home spaces teaser) */
.card-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) var(--gutter);
  position: relative;
  z-index: 2;
}
.card-grid__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 16px;
}
.space-card {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 3vw, 44px);
  background: var(--bg);
  transition: background .25s ease;
  position: relative;
}
.space-card:hover { background: var(--bg-1); }
.space-card__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(60px, 6vw, 96px);
  line-height: .97;
  letter-spacing: -.06em;
  color: var(--clover);
  font-variation-settings: "opsz" 96;
}
.space-card__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--ink);
  font-variation-settings: "opsz" 64;
}
.space-card__tag { display: block; }
.space-card__lede { color: var(--ink-mute); font-size: .98rem; line-height: 1.55; max-width: 50ch; }
.space-card__cta {
  align-self: end;
  justify-self: start;
  margin-top: 8px;
}
@media (max-width: 760px) {
  .card-grid__list { grid-template-columns: 1fr; }
}

/* kitchen feat cta line */
.kitchen-feat__cta-line {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--ink-mute);
  max-width: 60ch;
}
.kitchen-feat__cta-line .link-arrow { display: inline-flex; margin-left: 8px; color: var(--ink); }

/* CTA band */
.cta-band {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg-1);
  padding: clamp(60px, 8vw, 130px) 0;
  position: relative;
  z-index: 2;
}
.cta-band__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  gap: 22px;
}
.cta-band__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 4.9vw, 84px);
  line-height: .99;
  letter-spacing: -.045em;
  color: var(--ink);
  font-variation-settings: "opsz" 64;
}
.cta-band__title em { color: var(--clover); }
.cta-band__sub {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.55;
  color: var(--ink-mute);
  max-width: 56ch;
}
.cta-band .btn { justify-self: start; }

/* generic text feature section */
.text-feature {
  padding: clamp(60px, 8vw, 130px) 0;
  position: relative;
  z-index: 2;
}
.text-feature__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* numbered process list */
.numlist {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.numlist li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
}
.numlist li > div { font-family: var(--sans); font-size: clamp(15px, 1.1vw, 18px); line-height: 1.55; color: var(--ink-mute); max-width: 60ch; }
.numlist li > div strong { color: var(--ink); font-weight: 600; display: inline; }

/* usecase list */
.usecase-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
  max-width: 800px;
}
.usecase-list li {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.usecase-list strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 1.6vw, 26px);
  letter-spacing: -.03em;
  color: var(--ink);
  font-variation-settings: "opsz" 32;
}
.usecase-list span { color: var(--ink-mute); }

/* inclusions grid */
.incl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
}
.incl-grid > div {
  padding: 22px 24px 22px 0;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: grid; gap: 6px;
}
.incl-grid > div:nth-child(4n) { border-right: 0; padding-right: 0; }
.incl-grid > div:nth-child(4n+1) { padding-left: 0; }
.incl-grid > div:not(:nth-child(4n+1)) { padding-left: 24px; }
.incl-grid strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(18px, 1.4vw, 22px);
  letter-spacing: -.03em;
  color: var(--ink);
  font-variation-settings: "opsz" 32;
}
.incl-grid span { color: var(--ink-mute); font-size: .92rem; }
@media (max-width: 880px) {
  .incl-grid { grid-template-columns: repeat(2,1fr); }
  .incl-grid > div { border-right: 1px solid var(--rule); padding-left: 0 !important; padding-right: 24px; }
  .incl-grid > div:nth-child(2n) { border-right: 0; padding-right: 0; padding-left: 24px !important; }
}

.text-feature__media {
  margin: clamp(20px, 3vw, 34px) 0 clamp(22px, 3vw, 36px);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.text-feature__media img { display: block; width: 100%; height: auto; }

.hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form__turnstile { margin-top: 18px; }
.form__status {
  font-family: var(--sans);
  font-size: .92rem;
  line-height: 1.5;
  margin-top: 14px;
  padding: 12px 16px;
  border: 1px solid var(--rule);
}
.form__status[data-kind="ok"]    { border-color: var(--clover); color: var(--ink); }
.form__status[data-kind="error"] { border-color: var(--clover); color: var(--clover-warm); }

.chips--dark { gap: 10px; }
.chips--dark li {
  background: var(--bg-1);
  border-color: var(--rule);
}

/* FAQ page (multi-group) */
.faq-page {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(40px, 5vw, 80px);
}
.faq-group {
  padding: clamp(40px, 5vw, 80px) 0;
  border-top: 1px solid var(--rule);
}
.faq-group:first-child { border-top: 0; }
.faq-group__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 56px);
  letter-spacing: -.04em;
  color: var(--ink);
  font-variation-settings: "opsz" 64;
  margin-bottom: 28px;
}
.faq-page .faq__list { padding: 0; border-top: 1px solid var(--ink); }

/* SPACE DETAIL (per-space page) */
.space-detail {
  padding: clamp(40px, 6vw, 100px) 0;
}
.space-detail__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.space-detail__visual {
  background: var(--bg-1);
  border: 1px solid var(--rule);
  padding: clamp(20px, 3vw, 40px);
  position: sticky;
  top: 100px;
}
.space-detail__visual svg { width: 100%; height: auto; color: var(--ink); }
.space-detail__visual svg [stroke="currentColor"] { stroke: rgba(245,244,240,.45); }
.space-detail__visual svg rect[fill^="rgba(47,74,56"] { fill: rgba(182,240,138,.06); }
@media (max-width: 880px) {
  .space-detail__grid { grid-template-columns: 1fr; }
  .space-detail__visual { position: static; }
}

/* SPACE NAV (prev/next) */
.space-nav {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg-1);
}
.space-nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.space-nav__link {
  display: grid;
  gap: 8px;
  transition: color .2s;
}
.space-nav__link:hover { color: var(--clover); }
.space-nav__link--right { justify-self: end; text-align: right; }
.space-nav__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 32px);
  letter-spacing: -.03em;
  font-variation-settings: "opsz" 32;
  display: inline-flex; align-items: center; gap: 8px;
}
.space-nav__name svg { width: 18px; height: 18px; }
.space-nav__link:not(.space-nav__link--right) .space-nav__name svg { transform: scaleX(-1); }

/* floor plan link wrappers (clickable a wrap) */
.floorplan__diagram a { cursor: pointer; }

/* enquire page (book) — full width form */
#enquire-page {
  padding-top: clamp(28px, 4vw, 64px);
}

/* ============================================================
   PHOTOGRAPHY COMPONENTS (added with photo library rollout)
   ============================================================ */

/* full-bleed photo strip (studio / equipment pages) */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  z-index: 2;
}
.photo-strip:has(> img:nth-child(4)) { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) { .photo-strip:has(> img:nth-child(4)) { grid-template-columns: repeat(2, 1fr); } }
.photo-strip img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
@media (max-width: 640px) {
  .photo-strip { grid-template-columns: 1fr; }
}

/* photo grid (space pages, kitchen) */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 1.5vw, 20px);
}
.photo-grid figure { margin: 0; }
.photo-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid var(--rule);
}
.photo-grid figcaption {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
@media (max-width: 640px) { .photo-grid { grid-template-columns: 1fr; } }

.gallery {
  padding: clamp(40px, 6vw, 100px) 0;
  position: relative;
  z-index: 2;
}
.gallery__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  gap: clamp(24px, 3vw, 40px);
}

/* space card lead photo */
.space-card__photo {
  margin: calc(clamp(28px, 3vw, 44px) * -1) calc(clamp(28px, 3vw, 44px) * -1) 0;
}
.space-card__photo img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

/* full-studio banner card (home) */
.studio-band {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border: 1px solid var(--rule);
  background: var(--bg);
  margin-bottom: 1px;
  transition: background .25s ease;
}
.studio-band:hover { background: var(--bg-1); }
.studio-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}
.studio-band__body {
  padding: clamp(28px, 3vw, 44px);
  display: grid;
  gap: 18px;
  align-content: center;
}
.studio-band__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 3vw, 52px);
  line-height: .96;
  letter-spacing: -.04em;
  color: var(--ink);
  font-variation-settings: "opsz" 64;
}
.studio-band__title em { color: var(--clover); }
.studio-band__lede { color: var(--ink-mute); font-size: .98rem; line-height: 1.55; max-width: 50ch; }
@media (max-width: 760px) {
  .studio-band { grid-template-columns: 1fr; }
  .studio-band__media img { min-height: 200px; }
}

/* kitchen feature photo */
.kitchen-feat__photo img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border: 1px solid var(--rule);
}

/* space visual photo (studio page blocks) */
.space__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* LEGAL / TERMS PAGE ======================================= */
.legal {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(60px, 8vw, 120px);
  position: relative;
  z-index: 2;
}
.legal-draft {
  display: inline-block;
  color: var(--clover-warm);
  border: 1px solid rgba(234,94,101,.4);
  background: rgba(234,94,101,.08);
  padding: 8px 14px;
  margin-bottom: clamp(28px, 3vw, 44px);
}
.legal__clause {
  border-top: 1px solid var(--rule);
  padding: clamp(28px, 3.5vw, 48px) 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(12px, 2vw, 28px);
}
.legal__num { padding-top: 6px; }
.legal__clause h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: -.025em;
  line-height: 1.05;
  color: var(--ink);
  font-variation-settings: "opsz" 32;
  margin-bottom: 18px;
}
.legal__clause p,
.legal__clause li,
.legal__clause dd {
  color: var(--ink-mute);
  line-height: 1.65;
  font-size: .96rem;
  max-width: 74ch;
}
.legal__clause p + p, .legal__clause ul + p, .legal__clause table + p { margin-top: 14px; }
.legal__clause ul { margin-top: 10px; padding-left: 0; }
.legal__clause ul li {
  padding-left: 20px;
  position: relative;
  margin: 7px 0;
}
.legal__clause ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 8px; height: 1px;
  background: var(--clover);
}
.legal__clause a { color: var(--clover-warm); }
.legal__clause a:hover { color: var(--clover); }
.legal__defs { margin: 16px 0; }
.legal__defs dt {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 14px;
}
.legal__defs dd { margin-top: 4px; }
.legal__clause table {
  border-collapse: collapse;
  width: 100%;
  margin: 16px 0;
  font-size: .92rem;
}
.legal__clause th, .legal__clause td {
  border: 1px solid var(--rule);
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
  color: var(--ink-mute);
}
.legal__clause th {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--bg-1);
}
.tbc {
  font-family: var(--mono);
  font-size: .78em;
  background: rgba(234,94,101,.14);
  color: var(--clover-warm);
  padding: 1px 6px;
  border-radius: 3px;
  white-space: nowrap;
}
.legal-note {
  border: 1px solid rgba(234,94,101,.35);
  background: rgba(234,94,101,.06);
  padding: 14px 18px;
  margin-top: 18px;
}
.legal-note .mono { color: var(--clover-warm); display: block; margin-bottom: 8px; }
.legal-note p { font-size: .9rem; }
.legal__accept {
  border-top: 1px solid var(--rule-strong);
  padding-top: clamp(28px, 3.5vw, 48px);
  display: grid;
  gap: 12px;
}
.legal__accept p { color: var(--ink-mute); line-height: 1.65; max-width: 74ch; }
.legal__accept strong { color: var(--ink); font-weight: 600; }
.legal__accept .mono { margin-top: 10px; }
@media (max-width: 640px) {
  .legal__clause { grid-template-columns: 1fr; gap: 8px; }
  .legal__num { padding-top: 0; }
}

