/* ----------------------------------------------------------------
   Clarity Sound & Lighting — site styles
   ----------------------------------------------------------------
   Aesthetic: film poster / Boiler Room / agency.
   Pure black canvas, off-white type, hairline rules.
   Typography:
     Anton              — condensed display caps for headlines & wordmarks
     Archivo (variable) — body, UI labels (wdth axis for narrow caps)
     JetBrains Mono     — meta / data / coordinates
---------------------------------------------------------------- */

:root {
  --bg:        #000000;
  --bg-2:      #0a0a0a;
  --bg-3:      #131313;
  --ink:       #f4f4f0;
  --ink-2:     #c9c9c4;
  --ink-dim:   #7e7e78;
  --ink-mute:  #4e4e48;
  --rule:      rgba(244, 244, 240, 0.14);
  --rule-2:    rgba(244, 244, 240, 0.28);
  --rule-3:    rgba(244, 244, 240, 0.55);
  --maxw:      1320px;
  --pad:       clamp(20px, 3.8vw, 56px);

  --display:   "Anton", "Impact", "Arial Narrow Bold", sans-serif;
  --sans:      "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:      "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --ease:      cubic-bezier(.2,.7,.1,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  font-variation-settings: "wdth" 100;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
  opacity: .045;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 12px; top: 12px; background: var(--ink); color: var(--bg); padding: 8px 12px; z-index: 100; }

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

/* ------------- mono label utility ------------- */
.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 500;
  font-feature-settings: "ss01";
}

/* ------------- wordmark ------------- */
.wordmark {
  font-family: var(--display);
  font-size: 26px;
  line-height: .85;
  letter-spacing: .02em;
  color: var(--ink);
  text-transform: uppercase;
}
.wordmark--lg {
  font-size: clamp(80px, 14vw, 200px);
  letter-spacing: .005em;
  line-height: .85;
  display: block;
}

/* ------------- nav ------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--pad);
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(14px) saturate(1.05);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  border-bottom: 1px solid transparent;
  transition: border-color .35s var(--ease);
}
.nav--scrolled { border-bottom-color: var(--rule); }
.nav__mark {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  position: relative;
  z-index: 2;
}
.nav__name {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 500;
}
.nav__name span { color: var(--ink-mute); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  font-variation-settings: "wdth" 85;
}
.nav__links a {
  color: var(--ink-2);
  transition: color .25s var(--ease);
  position: relative;
}
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  color: var(--bg) !important;
  background: var(--ink);
  padding: 11px 22px;
  border-radius: 0;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav__cta:hover { background: transparent; color: var(--ink) !important; outline: 1px solid var(--ink); }
.nav__burger {
  display: none;
  background: none;
  border: 1px solid var(--rule-2);
  border-radius: 0;
  width: 44px; height: 44px;
  padding: 0;
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 1px; background: var(--ink);
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.nav__burger span:nth-child(1) { top: 17px; }
.nav__burger span:nth-child(2) { top: 24px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  /* Hide the long tagline on small screens so the wordmark has room */
  .nav__name { display: none; }
  .nav__links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    height: 100vh;
    height: 100dvh;
    z-index: 49;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 26px;
    background: var(--bg);
    font-family: var(--display);
    font-size: 40px;
    letter-spacing: .01em;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s var(--ease), visibility .3s var(--ease);
    border-top: 1px solid var(--rule);
  }
  .nav__links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav__cta { font-family: var(--sans); font-size: 14px; letter-spacing: .22em; }
  .nav__burger { display: inline-block; position: relative; z-index: 51; }
  .nav { z-index: 52; }
}

/* ------------- generic section heads ------------- */
.section__head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  gap: 22px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 500;
}
.kicker::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--ink-dim);
}
.section__title {
  font-family: var(--display);
  font-size: clamp(54px, 9vw, 140px);
  line-height: .92;
  letter-spacing: .005em;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  text-transform: uppercase;
  text-wrap: balance;
}
.section__sub {
  font-family: var(--sans);
  color: var(--ink-2);
  font-size: 17px;
  max-width: 56ch;
  margin: 6px 0 0;
  line-height: 1.55;
}
.section__sub a {
  color: var(--ink);
  border-bottom: 1px solid var(--rule-2);
  padding-bottom: 1px;
  transition: border-color .25s var(--ease);
}
.section__sub a:hover { border-color: var(--ink); }

/* ------------- buttons ------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  border-radius: 0;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-variation-settings: "wdth" 90;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .25s var(--ease);
  border: 1px solid transparent;
  position: relative;
  isolation: isolate;
}
.btn::after {
  content: "→";
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  transition: transform .3s var(--ease);
}
.btn:hover::after { transform: translateX(4px); }
.btn--primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn--primary:hover { background: var(--bg); color: var(--ink); }
.btn--ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); }

/* ------------- HERO ------------- */
.hero {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) var(--pad) clamp(48px, 8vw, 88px);
  display: grid;
  gap: clamp(20px, 3vw, 36px);
}
.hero__rail {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
  flex-wrap: wrap;
}
.hero__rail .mono { color: var(--ink-dim); }

.hero__title {
  margin: 0;
  line-height: 1;
}
.hero__word {
  display: block;
  font-family: var(--display);
  /* tuned to fill the viewport width at all sizes — Anton's advance
     averages ~0.42em, "CLARITY" is 7 chars, padding subtracted. */
  font-size: clamp(80px, 26.5vw, 360px);
  line-height: .82;
  letter-spacing: -.018em;
  color: var(--ink);
  text-transform: uppercase;
  font-weight: 400;
  margin: 0 0 0 -.025em;
}
.hero__caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
  flex-wrap: wrap;
}
.hero__sub-word {
  font-family: var(--sans);
  font-size: clamp(14px, 1.5vw, 22px);
  letter-spacing: .34em;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  font-variation-settings: "wdth" 90;
}

.hero__bottom {
  display: grid;
  grid-template-columns: clamp(240px, 28vw, 360px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
}
.hero__copy { display: grid; gap: 26px; align-self: end; }

/* hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 3 / 4;
  min-height: 360px;
}
.portrait {
  position: relative;
  margin: 0;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  isolation: isolate;
}
.portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  filter: grayscale(1) contrast(1.1) brightness(.95);
  transition: transform 1.4s var(--ease);
}
.portrait:hover img { transform: scale(1.03); }
.portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.85) 100%);
  pointer-events: none;
}
.portrait figcaption {
  position: absolute;
  left: 14px; bottom: 14px; right: 14px;
  z-index: 2;
}
.portrait figcaption .mono { color: var(--ink); font-size: 10px; letter-spacing: .12em; }

.vis { position: absolute; pointer-events: none; }
.vis--a {
  width: 64px; height: 64px;
  bottom: -14px; left: -14px;
  background: var(--ink);
}
.vis__eq {
  position: absolute;
  right: 14px; top: 14px;
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 24px;
  z-index: 3;
}
.vis__eq span {
  display: block;
  width: 2px;
  background: var(--ink);
  animation: eq 1.2s var(--ease) infinite;
}
.vis__eq span:nth-child(1) { animation-delay: .0s; }
.vis__eq span:nth-child(2) { animation-delay: .12s; }
.vis__eq span:nth-child(3) { animation-delay: .25s; }
.vis__eq span:nth-child(4) { animation-delay: .07s; }
.vis__eq span:nth-child(5) { animation-delay: .31s; }
.vis__eq span:nth-child(6) { animation-delay: .18s; }
.vis__eq span:nth-child(7) { animation-delay: .04s; }
.vis__eq span:nth-child(8) { animation-delay: .22s; }
.vis__eq span:nth-child(9) { animation-delay: .15s; }
.vis__eq span:nth-child(10){ animation-delay: .28s; }
@keyframes eq {
  0%, 100% { height: 3px; }
  50%      { height: 24px; }
}

.hero__sub {
  font-family: var(--sans);
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--ink-2);
  max-width: 62ch;
  margin: 0;
  line-height: 1.55;
}
.hero__sub strong { color: var(--ink); font-weight: 600; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__stats {
  list-style: none;
  margin: 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 16px;
}
.hero__stats li {
  display: grid;
  gap: 8px;
  padding-right: 12px;
  border-right: 1px solid var(--rule);
}
.hero__stats li:last-child { border-right: 0; }
.hero__stat-num {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 64px);
  line-height: .9;
  letter-spacing: .005em;
  color: var(--ink);
  text-transform: uppercase;
}
.hero__stat-num em {
  font-style: normal;
  color: var(--ink-dim);
  margin-left: 2px;
}

@media (max-width: 900px) {
  .hero__bottom { grid-template-columns: 1fr; gap: 24px; }
  .hero__visual { aspect-ratio: 4 / 5; min-height: 380px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__stats li:nth-child(2) { border-right: 0; }
}
@media (max-width: 500px) {
  .hero__stats { grid-template-columns: 1fr 1fr; }
}

/* ------------- MARQUEE ------------- */
.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
  background: var(--bg);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: scroll 42s linear infinite;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  color: var(--ink);
  width: max-content;
  letter-spacing: .005em;
  text-transform: uppercase;
  line-height: 1;
}
.marquee__track em {
  color: var(--ink-mute);
  font-style: normal;
  font-family: var(--mono);
  font-size: .28em;
  font-weight: 400;
  letter-spacing: 0;
  vertical-align: middle;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ------------- ABOUT ------------- */
.about {
  position: relative; z-index: 2;
  padding: clamp(80px, 11vw, 150px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.about .section__head { padding: 0; margin-bottom: 64px; }
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr .85fr .9fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.about__copy { display: grid; gap: 22px; }
.about__copy .lead {
  font-family: var(--sans);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.35;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.005em;
  margin: 0;
  font-variation-settings: "wdth" 90;
}
.about__copy .lead i {
  font-family: var(--display);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--ink);
}
.about__copy p { color: var(--ink-2); font-size: 15px; line-height: 1.6; }
.about__copy strong { color: var(--ink); font-weight: 600; }

.about__portrait {
  margin: 0;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--bg-2);
  aspect-ratio: 3 / 4;
}
.about__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: grayscale(1) contrast(1.1) brightness(.95);
}
.about__portrait figcaption {
  position: absolute;
  left: 16px; bottom: 14px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.about__portrait figcaption span {
  color: var(--ink);
  font-weight: 600;
  margin-right: 8px;
}
.about__portrait::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 45%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.85));
}

.about__card {
  background: transparent;
  border-top: 1px solid var(--ink);
  border-radius: 0;
  padding: 22px 0 0;
}
.about__card h3 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 22px;
  color: var(--ink);
  font-weight: 500;
}
.about__card ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid; gap: 14px;
  counter-reset: kit-item;
  color: var(--ink-2);
  font-size: 14px;
}
.about__card li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.about__card li:last-child { border-bottom: 0; padding-bottom: 0; }
.about__card li::before {
  content: counter(kit-item, decimal-leading-zero);
  counter-increment: kit-item;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .04em;
  color: var(--ink-dim);
}

@media (max-width: 1000px) {
  .about__grid { grid-template-columns: 1fr 1fr; }
  .about__copy { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .about__grid { grid-template-columns: 1fr; }
}

/* ------------- SERVICES ------------- */
.services {
  position: relative; z-index: 2;
  padding: clamp(80px, 11vw, 150px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.services .section__head { padding: 0; margin-bottom: 64px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
}
.svc {
  padding: 40px 32px 36px;
  background: transparent;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  position: relative;
  display: grid;
  gap: 32px;
  align-content: start;
  transition: background .3s var(--ease);
}
.svc:nth-child(3n) { border-right: 0; }
.svc:nth-last-child(-n+3) { border-bottom: 1px solid var(--ink); }
.svc:hover { background: var(--bg-2); }
.svc__num {
  font-family: var(--mono);
  font-style: normal;
  font-weight: 500;
  color: var(--ink-dim);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.svc h3 {
  font-family: var(--display);
  font-size: 36px;
  margin: 0 0 14px;
  letter-spacing: .005em;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  text-transform: uppercase;
}
.svc p {
  color: var(--ink-2);
  font-size: 14px;
  margin: 0;
  max-width: 38ch;
  line-height: 1.6;
}
.svc strong { color: var(--ink); font-weight: 600; }
@media (max-width: 900px) {
  .services__grid { grid-template-columns: 1fr; }
  .svc { border-right: 0; }
}

/* ------------- SETUPS ------------- */
.setups {
  position: relative; z-index: 2;
  padding: clamp(80px, 11vw, 150px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.setups .section__head { padding: 0; margin-bottom: 64px; }
.setups__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.setup {
  border-radius: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  background: transparent;
  transition: transform .4s var(--ease);
}
.setup:hover { transform: translateY(-4px); }
.setup__visual {
  aspect-ratio: 4 / 5;
  position: relative;
  display: grid;
  place-items: end start;
  padding: 22px;
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: .005em;
  text-transform: uppercase;
  overflow: hidden;
  border: 1px solid var(--rule);
  line-height: 1;
}

.setup--white .setup__visual {
  color: #161616;
  background:
    radial-gradient(120% 80% at 25% 20%, #ffffff 0%, #ececea 50%, #cfcfcd 100%);
}
.setup--white .setup__visual::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, transparent 0 24px, rgba(0,0,0,.05) 24px 25px);
}
.setup--black .setup__visual {
  color: var(--ink);
  background:
    radial-gradient(120% 80% at 80% 25%, #1f1f1f 0%, #0a0a0a 60%, #000 100%);
}
.setup--black .setup__visual::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, transparent 0 24px, rgba(255,255,255,.05) 24px 25px);
}
.setup--rustic .setup__visual {
  color: var(--ink);
  background:
    linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 50%, #161616 100%);
}
.setup--rustic .setup__visual::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 7px, rgba(255,255,255,.04) 7px 8px),
    repeating-linear-gradient(90deg, transparent 0 41px, rgba(0,0,0,.4) 41px 42px);
  mix-blend-mode: overlay;
}
.setup--rustic .setup__visual::after {
  content: "";
  position: absolute;
  top: 22%; left: 0; right: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg, transparent 0 14px, var(--rule-3) 14px 16px);
}
.setup__visual span { position: relative; z-index: 2; }
.setup__body {
  padding: 22px 4px 4px;
  display: grid;
  gap: 8px;
}
.setup__body h3 {
  font-family: var(--display);
  margin: 0;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: .005em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}
.setup__body p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.55;
  max-width: 36ch;
}
@media (max-width: 900px) {
  .setups__grid { grid-template-columns: 1fr; }
}

/* ------------- PACKAGES ------------- */
.packages {
  position: relative; z-index: 2;
  padding: clamp(80px, 11vw, 150px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.packages .section__head { padding: 0; margin-bottom: 64px; }
.pkg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.pkg {
  background: transparent;
  border-right: 1px solid var(--rule);
  padding: 36px 32px 36px;
  display: grid;
  gap: 26px;
  position: relative;
  align-content: start;
  transition: background .3s var(--ease);
}
.pkg:last-child { border-right: 0; }
.pkg:hover { background: var(--bg-2); }
.pkg--feature {
  background: var(--ink);
  color: var(--bg);
  border-right-color: transparent;
}
.pkg--feature .pkg__from { color: rgba(0,0,0,.7); }
.pkg--feature .pkg__unit { color: rgba(0,0,0,.78); }
.pkg--feature ul { color: var(--bg); }
.pkg--feature ul li { border-bottom-color: rgba(0,0,0,.18); }
.pkg--feature ul li::before { color: rgba(0,0,0,.6); }
.pkg--feature:hover { background: var(--ink); }

.pkg__flag {
  position: absolute;
  top: 36px; right: 32px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(0,0,0,.75);
}
.pkg header { display: grid; gap: 4px; }
.pkg header h3 {
  font-family: var(--display);
  margin: 0 0 12px;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: .005em;
  text-transform: uppercase;
  color: inherit;
  line-height: 1;
}
.pkg--feature header h3 { color: var(--bg); }
.pkg__from {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.pkg__price {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 7vw, 96px);
  letter-spacing: .005em;
  line-height: .9;
  color: var(--ink);
  text-transform: uppercase;
  white-space: nowrap;
}
.pkg--feature .pkg__price { color: var(--bg); }
.pkg__unit {
  margin: 8px 0 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.pkg ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid; gap: 14px;
  color: var(--ink-2);
  font-size: 14px;
}
.pkg li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; align-items: baseline; padding-bottom: 14px; border-bottom: 1px solid var(--rule); }
.pkg li > strong { white-space: nowrap; }
.pkg--feature li { border-bottom-color: rgba(0,0,0,.18); }
.pkg li:last-child { border-bottom: 0; padding-bottom: 0; }
.pkg li::before {
  counter-increment: pkg-item;
  content: counter(pkg-item, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .04em;
  color: var(--ink-dim);
}
.pkg ul { counter-reset: pkg-item; }
.pkg strong { color: var(--ink); font-weight: 600; }
.pkg--feature strong { color: var(--bg); }
.pkg--feature .btn {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}
.pkg--feature .btn:hover { background: transparent; color: var(--bg); border-color: var(--bg); }
.pkg .btn { justify-self: start; }
@media (max-width: 900px) {
  .pkg__grid { grid-template-columns: 1fr; border-bottom: 0; }
  .pkg { border-right: 0; border-bottom: 1px solid var(--rule); }
  .pkg:last-child { border-bottom: 1px solid var(--ink); }
}

/* ------------- RESIDENCIES ------------- */
.resi {
  position: relative; z-index: 2;
  padding: 72px 0;
  background: var(--bg);
  color: var(--ink);
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.resi__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}
.resi__inner > .kicker {
  padding: 0 var(--pad);
  justify-self: center;
}
.resi__inner > .kicker::before { display: none; }
.resi__track {
  display: flex;
  align-items: center;
  gap: 44px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 64px);
  color: var(--ink);
  white-space: nowrap;
  width: max-content;
  animation: scroll 32s linear infinite;
  letter-spacing: .005em;
  text-transform: uppercase;
  line-height: 1;
}
.resi__track em {
  font-style: normal;
  color: var(--ink-mute);
  font-family: var(--mono);
  font-size: .3em;
  letter-spacing: 0;
  vertical-align: middle;
}

/* ------------- REVIEWS ------------- */
.reviews {
  position: relative; z-index: 2;
  padding: clamp(80px, 11vw, 150px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.reviews .section__head { padding: 0; margin-bottom: 64px; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
}
.review {
  margin: 0;
  background: transparent;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--ink);
  padding: 40px 32px;
  display: grid;
  gap: 32px;
  position: relative;
  align-content: start;
}
.review:last-child { border-right: 0; }
.review::before {
  content: "★ ★ ★ ★ ★";
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .35em;
  color: var(--ink);
  margin: 0;
  line-height: 1;
}
.review blockquote {
  margin: 0;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -.005em;
  font-variation-settings: "wdth" 95;
}
.review figcaption {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.review figcaption strong {
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 900px) {
  .reviews__grid { grid-template-columns: 1fr; }
  .review { border-right: 0; border-bottom: 1px solid var(--rule); }
  .review:last-child { border-bottom: 1px solid var(--ink); }
}

/* ------------- INSTAGRAM ------------- */
.ig {
  position: relative; z-index: 2;
  padding: clamp(80px, 11vw, 150px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 80px);
  align-items: center;
}
.ig__copy { display: grid; gap: 24px; align-content: center; }
.ig__copy p { color: var(--ink-2); }
.ig__copy .btn { justify-self: start; }
.ig__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.igtile {
  aspect-ratio: 1;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
  display: grid;
  place-items: end start;
  padding: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  background: var(--bg-2);
}
.igtile--1 { background: linear-gradient(135deg, #161616, #050505); }
.igtile--2 { background: linear-gradient(225deg, #161616, #050505); }
.igtile--3 { background: linear-gradient(315deg, #161616, #050505); }
.igtile--4 { background: linear-gradient(45deg, #161616, #050505); }
.igtile::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 18px, rgba(255,255,255,.04) 18px 19px);
}
.igtile span { position: relative; z-index: 2; }
@media (max-width: 900px) {
  .ig { grid-template-columns: 1fr; }
}

/* ------------- BOOKING ------------- */
.book {
  position: relative; z-index: 2;
  padding: clamp(80px, 11vw, 150px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 4vw, 88px);
  align-items: start;
}
.book__copy { display: grid; gap: 24px; }
.book__copy p { color: var(--ink-2); font-size: 16px; max-width: 46ch; }
.book__meta {
  list-style: none;
  margin: 16px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--ink);
  display: grid;
  gap: 0;
  font-size: 15px;
}
.book__meta li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: baseline;
  color: var(--ink);
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}
.book__meta li:last-child { border-bottom: 1px solid var(--ink); }
.book__meta span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 500;
}
.book__meta a { border-bottom: 1px solid var(--rule-2); }
.book__meta a:hover { color: var(--ink); border-color: var(--ink); }

.book__form {
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 20px;
}
.book__form label {
  display: grid;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 500;
}
.book__full { grid-column: 1 / -1; }
.book__form input,
.book__form select,
.book__form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-2);
  border-radius: 0;
  padding: 10px 0 14px;
  color: var(--ink);
  font: 500 16px/1.4 var(--sans);
  letter-spacing: 0;
  text-transform: none;
  transition: border-color .25s var(--ease);
  font-variation-settings: "wdth" 95;
}
.book__form input::placeholder,
.book__form textarea::placeholder { color: var(--ink-mute); }
.book__form input:focus,
.book__form select:focus,
.book__form textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.book__form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-dim) 50%),
    linear-gradient(135deg, var(--ink-dim) 50%, transparent 50%);
  background-position: calc(100% - 8px) 50%, calc(100% - 2px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 28px;
}
.book__form textarea {
  resize: vertical;
  border: 1px solid var(--rule-2);
  padding: 14px;
}
.book__form .btn { grid-column: 1 / -1; justify-self: start; margin-top: 4px; }
.book__note {
  grid-column: 1 / -1;
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 400;
}
.book__note a { color: var(--ink-dim); border-bottom: 1px solid var(--rule); text-transform: none; }
@media (max-width: 900px) {
  .book { grid-template-columns: 1fr; }
  .book__form { grid-template-columns: 1fr; padding: 26px; }
}

/* ------------- FOOTER ------------- */
.foot {
  position: relative; z-index: 2;
  background: var(--bg);
  color: var(--ink);
  padding: 88px var(--pad) 36px;
  border-top: 1px solid var(--rule);
}
.foot__top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.foot__brand .wordmark { color: var(--ink); }
.foot__name {
  margin: 18px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 500;
}
.foot__blurb {
  margin: 24px 0 0;
  color: var(--ink-2);
  font-size: 15px;
  max-width: 44ch;
  line-height: 1.55;
}
.foot__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-2);
  justify-self: end;
  font-weight: 500;
  align-items: flex-end;
  font-variation-settings: "wdth" 90;
}
.foot__links a { transition: color .25s var(--ease); }
.foot__links a:hover { color: var(--ink); }
.foot__bottom {
  max-width: var(--maxw);
  margin: 80px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--ink-mute);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .foot__top { grid-template-columns: 1fr; }
  .foot__links { justify-self: start; align-items: flex-start; }
}

/* ------------- reveal on scroll ------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}
