:root {
  --espresso: #14110e;
  --cocoa: #1f1a16;
  --surface: #2a231d;
  --cream: #f4ebe1;
  --cream-muted: #e4d5c4;
  --ink: #1a1512;
  --muted: #a89888;
  --faint: #8a7b6c;
  --border: rgb(244 235 225 / 0.14);
  --border-strong: rgb(244 235 225 / 0.28);
  --destructive: #c45c4a;
  --display: "Fraunces", ui-serif, Georgia, serif;
  --sans: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --shadow: 0 0 0 1px rgb(244 235 225 / 0.08);
  --lift: 0 24px 48px -24px rgb(0 0 0 / 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --text-display: clamp(2.5rem, 1.2rem + 5vw, 4.75rem);
  --text-title: clamp(1.75rem, 1.1rem + 2.2vw, 3rem);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  color-scheme: dark;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--espresso);
  color: var(--cream);
  font-family: var(--sans);
  min-height: 100vh;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  text-wrap: balance;
  letter-spacing: -0.025em;
  margin: 0;
}

p { text-wrap: pretty; }

button:not(:disabled), [role="button"]:not(:disabled) { cursor: pointer; }

::selection { background: var(--cream); color: var(--espresso); }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 80;
  background: var(--cream);
  color: var(--espresso);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}

.wrap {
  width: min(72rem, calc(100% - 2rem));
  margin-inline: auto;
}
@media (min-width: 640px) {
  .wrap { width: min(72rem, calc(100% - 3rem)); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: env(safe-area-inset-top);
  background: var(--espresso);
  border-bottom: 1px solid transparent;
}
@media (min-width: 768px) {
  .site-header {
    background: rgb(20 17 14 / 0.88);
  }
  .site-header.is-scrolled {
    border-color: var(--border);
    background: rgb(20 17 14 / 0.96);
  }
}
.site-header.is-open {
  border-color: var(--border);
  background: var(--espresso);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  height: 4rem;
  min-width: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  text-decoration: none;
  color: var(--cream);
}
.logo-mark {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 0.25rem;
  background: var(--cream);
  color: var(--espresso);
}
.logo-mark svg { width: 1.25rem; height: 1.25rem; }
.logo-word {
  font-family: var(--display);
  font-size: 1.125rem;
  letter-spacing: -0.025em;
  line-height: 1;
  white-space: nowrap;
}

.nav-desktop { display: none; gap: 1.75rem; align-items: center; }
.nav-desktop a {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}
.nav-desktop a:hover,
.nav-desktop a.is-active { color: var(--cream); }
.header-cta { display: none; }
.menu-toggle {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border: 0;
  background: transparent;
  color: var(--cream);
  display: grid;
  place-items: center;
  padding: 0;
}
.menu-bars {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: background-color 150ms;
}
.menu-bars::before,
.menu-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 150ms var(--ease), top 150ms var(--ease);
}
.menu-bars::before { top: -6px; }
.menu-bars::after { top: 6px; }
.site-header.is-open .menu-bars { background: transparent; }
.site-header.is-open .menu-bars::before {
  top: 0;
  transform: rotate(45deg);
}
.site-header.is-open .menu-bars::after {
  top: 0;
  transform: rotate(-45deg);
}
@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
}

.nav-mobile {
  display: none;
  position: fixed;
  top: calc(4rem + env(safe-area-inset-top, 0px));
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
  background: var(--espresso);
  padding: 0.75rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.site-header.is-open .nav-mobile { display: flex; }
.nav-mobile a:not(.nav-cta) {
  display: flex;
  align-items: center;
  min-height: 3rem;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--cream);
}
.nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  min-height: 3rem;
  padding: 0 1.25rem;
  border-radius: 0.5rem;
  background: #f4ebe1;
  color: #14110e;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: 0.5rem;
  border: 0;
  background: var(--cream);
  color: var(--espresso);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 150ms var(--ease), background-color 150ms;
}
.btn:hover { background: var(--cream-muted); }
.btn:active { transform: scale(0.96); }
.btn-lg { min-height: 3rem; padding: 0 1.75rem; font-size: 1rem; }
.btn-outline {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 1px var(--border-strong);
}
.btn-outline:hover { background: var(--surface); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  padding-left: 0;
  padding-right: 0;
}
.btn svg { width: 1rem; height: 1rem; }
.site-header a.header-cta { display: none; }
@media (min-width: 768px) {
  .site-header a.header-cta { display: inline-flex; }
}

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, var(--cocoa) 0%, var(--espresso) 50%, var(--espresso) 100%);
}
.hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  padding: 4rem 0;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 7fr 5fr; padding: 6rem 0; }
}
.eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}
.display {
  font-size: var(--text-display);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 1rem 0 0;
}
.display em { font-style: italic; color: var(--cream-muted); }
.lede {
  margin: 1.25rem 0 0;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted);
}
.hero-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
@media (min-width: 640px) {
  .hero-actions { flex-direction: row; }
}
.studio {
  background: var(--cream);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: var(--lift);
}
.studio img { margin: 0 auto; width: 100%; max-width: 28rem; object-fit: contain; }
.studio .cut-show { max-width: 28rem; margin: 0 auto; }
.studio .cut-show img { max-width: none; }
.studio p {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--faint);
}
.photo { outline: 1px solid rgb(26 21 18 / 0.12); outline-offset: -1px; }
.photo-dark { outline: 1px solid rgb(244 235 225 / 0.1); outline-offset: -1px; }

.cut-show {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 0.75rem;
}
.cut-show img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: none !important;
}
.cut-show img.is-on { opacity: 1; }
.place-show { margin-top: 2.5rem; }
.cut-kicker {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cream-muted);
}

/* Stats */
.stats { border-block: 1px solid var(--border); background: var(--cocoa); }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat { padding: 2rem 1.25rem; }
.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.stat span { display: block; margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted); }

/* Sections */
.section { padding: 5rem 0; }
@media (min-width: 640px) { .section { padding: 7rem 0; } }
.section-border { border-bottom: 1px solid var(--border); }
.section-top { border-top: 1px solid var(--border); }
.scroll-mt { scroll-margin-top: 5rem; }
.title {
  font-size: var(--text-title);
  line-height: 1.15;
  margin-top: 0.75rem;
}
.muted { color: var(--muted); line-height: 1.6; }
.split { display: grid; gap: 3rem; }
@media (min-width: 1024px) {
  .split-how { grid-template-columns: 5fr 7fr; }
  .split-faq { grid-template-columns: 4fr 8fr; }
  .split-form { grid-template-columns: 5fr 7fr; }
  .split-host { grid-template-columns: 5fr 7fr; }
}

.cover {
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 0.75rem;
}
.cover img { width: 100%; height: 16rem; object-fit: cover; }
@media (min-width: 640px) { .cover img { height: 20rem; } }

.steps { list-style: none; margin: 0; padding: 0; }
.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
}
.steps li:first-child { border-top: 0; padding-top: 0; }
.step-n {
  font-family: var(--display);
  font-size: 0.875rem;
  color: var(--faint);
  font-variant-numeric: tabular-nums;
}
.steps h3 { font-size: 1.25rem; font-weight: 500; }
.steps p { margin: 0.25rem 0 0; font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* Cream band */
.band-cream {
  background: var(--cream);
  color: var(--ink);
  color-scheme: light;
}
.band-cream .eyebrow { color: rgb(26 21 18 / 0.5); }
.band-cream .muted,
.band-cream p.body { color: rgb(26 21 18 / 0.7); }
.machine-photos {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .machine-photos { grid-template-columns: 1fr 1fr; } }
.machine-photos-one {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: 1fr;
}
.machine-photos-one figcaption { text-align: center; }
.machine-photos figure {
  margin: 0;
  border-radius: 1rem;
  padding: 0.75rem;
}
.machine-photos figcaption {
  padding: 0.75rem 0.5rem 0;
  font-size: 0.875rem;
  color: rgb(26 21 18 / 0.6);
}
.stock { margin-top: 4rem; }
.stock .title { font-size: var(--text-title); }
.stock-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .stock-grid { grid-template-columns: 1fr 1fr; } }
.stock-grid figure {
  margin: 0;
  background: rgb(228 213 196 / 0.4);
  border-radius: 1rem;
  padding: 1rem;
}
.stock-grid figcaption { padding: 1rem 0.25rem 0.25rem; }
.stock-grid figcaption strong {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
}
.stock-grid figcaption span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgb(26 21 18 / 0.7);
}
.chips-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}
.chips-inline li {
  border: 1px solid rgb(26 21 18 / 0.15);
  background: var(--cream);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
}
.feature-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
.feature {
  background: rgb(228 213 196 / 0.5);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.feature svg { width: 1.25rem; height: 1.25rem; color: rgb(26 21 18 / 0.7); }
.feature h3 { margin-top: 0.75rem; font-size: 1.125rem; }
.feature p { margin: 0.4rem 0 0; font-size: 0.875rem; line-height: 1.6; color: rgb(26 21 18 / 0.7); }

.offer-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .offer-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.offer-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1px;
  background: var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
}
@media (min-width: 768px) { .offer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .offer-grid { grid-template-columns: 1fr 1fr 1fr; } }
.offer-grid article {
  background: var(--espresso);
  padding: 1.75rem;
}
.offer-grid h3 { font-size: 1.25rem; font-weight: 500; }
.offer-grid p { margin: 0.5rem 0 0; font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

.places {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .places { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .places { grid-template-columns: 1fr 1fr 1fr; } }
.places article img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 0.75rem;
  transition: transform 500ms var(--ease);
}
.places article:hover img { transform: scale(1.04); }
.places h3 { margin-top: 1rem; font-size: 1.25rem; }
.places p { margin: 0.4rem 0 0; font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.mix {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}
.mix li {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cream-muted);
}
.places-note { margin-top: 2rem; font-size: 0.875rem; color: var(--muted); }

/* FAQ */
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 200ms var(--ease);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(225deg); }
.faq details p {
  margin: 0;
  padding: 0 0 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

.inquiry { background: rgb(31 26 22 / 0.4); }
.timeline { margin: 2rem 0 0; padding: 0; list-style: none; }
.timeline li { display: flex; gap: 0.75rem; font-size: 0.875rem; color: var(--cream-muted); margin-top: 0.75rem; }
.timeline span { color: var(--faint); }

/* Form */
.card {
  background: var(--cocoa);
  color: var(--cream);
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
@media (min-width: 640px) {
  .card { padding: 1.5rem 2rem; }
}
.card h3 { font-size: 1.5rem; margin-top: 0.25rem; }
.fields {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .fields { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 0.4rem; }
.field-head { display: flex; justify-content: space-between; font-size: 0.875rem; }
.field-head span { color: var(--faint); font-size: 0.75rem; }
label, legend { font-size: 0.875rem; font-weight: 500; color: var(--cream-muted); }
.field input,
.field textarea,
.field select,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  height: 48px;
  min-height: 48px;
  border-radius: 0.5rem;
  border: 1px solid rgb(244 235 225 / 0.28);
  background-color: #14110e;
  color: #f4ebe1;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 16px !important;
  line-height: 1.25;
  box-shadow: none;
  color-scheme: dark;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
input::placeholder,
textarea::placeholder {
  color: #8a7b6c;
  -webkit-text-fill-color: #8a7b6c;
  opacity: 1;
  font-size: 16px;
}
textarea { height: auto; min-height: 7rem; resize: vertical; }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--cream);
  box-shadow: 0 0 0 3px rgb(244 235 225 / 0.18);
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
input:-internal-autofill-selected,
input:-internal-autofill-previewed {
  -webkit-text-fill-color: #f4ebe1 !important;
  caret-color: #f4ebe1;
  border-color: rgb(244 235 225 / 0.16) !important;
  -webkit-box-shadow: 0 0 0 1000px #14110e inset !important;
  box-shadow: 0 0 0 1000px #14110e inset !important;
  background-color: #14110e !important;
  background-image: none !important;
  filter: none;
  transition: background-color 99999s ease-out 0s;
}
.chips { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 0.5rem; }
@media (min-width: 640px) { .chips { grid-template-columns: repeat(4, 1fr); } }
.chip, .pill {
  min-height: 2.75rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: var(--espresso);
  color: var(--cream-muted);
  font-size: 0.875rem;
  text-align: left;
  padding: 0.5rem 0.75rem;
}
.pill { border-radius: 999px; padding-inline: 1rem; }
.pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.chip.is-on, .pill.is-on {
  background: var(--cream);
  color: var(--espresso);
  border-color: var(--cream);
}
.consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--cream-muted);
  cursor: pointer;
}
.consent input { margin-top: 0.2rem; accent-color: var(--cream); }
.error { color: var(--destructive); font-size: 0.875rem; margin: 0.4rem 0 0; }
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) {
  .form-actions { flex-direction: row; align-items: center; }
}
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.success svg { width: 2rem; height: 2rem; }
.success h3 { margin-top: 1rem; font-size: 1.5rem; }
.success p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* Host page */
.host-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.host-hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.host-hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(20 17 14 / 0.55), rgb(20 17 14 / 0.92));
}
.host-hero .wrap { position: relative; padding: 5rem 0; }
@media (min-width: 640px) { .host-hero .wrap { padding: 7rem 0; } }
.pair {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .pair { grid-template-columns: 1fr 1fr; } }
.pair ul { list-style: none; margin: 1.25rem 0 0; padding: 0; }
.pair li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  margin-top: 0.75rem;
  color: var(--cream-muted);
}
.card-cream {
  background: var(--cream);
  color: var(--espresso);
}
.card-cream li { color: rgb(26 21 18 / 0.75); }
.check { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.15rem; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: var(--cocoa); }
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 0;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 5fr 3fr 4fr; }
}
.site-footer .eyebrow { margin-bottom: 0.75rem; }
.site-footer ul { list-style: none; margin: 0.75rem 0 0; padding: 0; }
.site-footer li { margin-top: 0.5rem; }
.site-footer a { text-decoration: none; font-size: 0.875rem; color: var(--cream-muted); }
.site-footer a:hover { color: var(--cream); }
.mail-lg {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--cream);
  text-decoration: none;
}
.legal {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--faint);
}
@media (min-width: 640px) {
  .legal { flex-direction: row; justify-content: space-between; align-items: center; }
}

.notfound {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 6rem 1.5rem;
}

@media (max-width: 639px) {
  .hero-grid { padding: 2.5rem 0 3rem; gap: 2rem; }
  .section { padding: 3.5rem 0; }
  .host-hero .wrap { padding: 3rem 0; }
  .stat { padding: 1.35rem 0.9rem; }
  .stat strong { font-size: 1.5rem; }
  .display { font-size: clamp(2.1rem, 11vw, 2.75rem); }
  .hero-actions .btn { width: 100%; }
  .wrap { width: min(72rem, calc(100% - 1.5rem)); }
  .studio { padding: 0.85rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
