 :root {
  --espresso: #3b2416;
  --gold: #c89b5e;
  --cream: #f7f2eb;
  --beige: #e8d8c3;
  --sand: #dcc2a8;
  --charcoal: #1f1d1a;
  --ink: #2d241f;
  --ink-soft: #625349;
  --moss: #6c7a6e;
  --white: #ffffff;
  --line: rgba(59, 36, 22, 0.12);
  --line-strong: rgba(59, 36, 22, 0.2);
  --shadow-soft: 0 22px 70px rgba(59, 36, 22, 0.12);
  --shadow-deep: 0 28px 90px rgba(31, 29, 26, 0.24);
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(200, 155, 94, 0.58);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 120;
  transform: translateY(-150%);
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 800;
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.landing-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 110;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(59, 36, 22, 0.74);
  backdrop-filter: blur(18px);
  color: var(--white);
  padding: 14px 40px;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.landing-header.is-scrolled {
  background: rgba(59, 36, 22, 0.95);
  box-shadow: 0 16px 54px rgba(31, 29, 26, 0.28);
}

.brand-link,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-copy strong,
.footer-brand strong {
  display: block;
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
}

.brand-copy small,
.footer-brand small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 68% 26%, rgba(255, 255, 255, 0.94) 0 8%, transparent 9%),
    linear-gradient(145deg, rgba(200, 155, 94, 0.9), rgba(59, 36, 22, 0.95));
  box-shadow: 0 14px 34px rgba(31, 29, 26, 0.26);
}

.brand-mark::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 7px 7px 8px 8px;
  transform: rotate(45deg);
  border-top-color: transparent;
  border-left-color: transparent;
}

.brand-mark.small {
  width: 34px;
  height: 34px;
}

.brand-mark.small::before {
  width: 14px;
  height: 14px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 700;
  padding: 0 13px;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.site-nav .studio-link {
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.menu-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--white);
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-5px);
}

.menu-toggle span:last-child {
  transform: translateY(5px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(200, 155, 94, 0.22), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(108, 122, 110, 0.18), transparent 26%),
    linear-gradient(180deg, #4b3121 0%, #342017 64%, #2c1d17 100%);
  color: var(--white);
  padding: 134px 40px 82px;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.42;
  pointer-events: none;
}

.hero-glow-left {
  left: -110px;
  top: 84px;
  background: rgba(200, 155, 94, 0.34);
}

.hero-glow-right {
  right: -120px;
  bottom: -50px;
  background: rgba(108, 122, 110, 0.28);
}

.hero-inner,
.showcase-layout,
.fit-layout,
.routine-layout,
.contact-layout,
.faq-layout {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.fit-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-weight: 700;
  line-height: 0.96;
}

.hero h1 {
  font-size: 82px;
}

.hero-text {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-trust span,
.fit-selector button,
.routine-tabs button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  padding: 0 14px;
}

.hero-offer {
  display: grid;
  gap: 6px;
  margin-top: 28px;
}

.hero-offer strong {
  display: block;
  color: var(--white);
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 0.95;
}

.hero-offer span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 700;
}

.hero-offer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  padding: 0 20px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 18px 42px rgba(200, 155, 94, 0.24);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
  margin: 42px 0 0;
}

.hero-metrics div {
  min-height: 90px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 16px;
}

.hero-metrics dt {
  color: var(--gold);
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: 28px;
  font-weight: 700;
}

.hero-metrics dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.hero-stage {
  display: grid;
  gap: 16px;
}

.product-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-deep);
  padding: 28px;
}

.product-stage::after {
  content: "";
  position: absolute;
  inset: auto 10% 10px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  filter: blur(18px);
}

.product-stage img {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  object-fit: contain;
}

.product-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-notes div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  padding: 16px;
}

.product-notes span,
.contact-summary span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-notes strong,
.contact-summary strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.signal-band {
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 24px 0;
}

.section-inner,
.signal-grid {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.signal-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(247, 242, 235, 0.8), rgba(255, 255, 255, 0.98));
  padding: 18px;
}

.signal-grid strong,
.showcase-copy h3,
.detail-card h3,
.routine-summary h3 {
  display: block;
  margin: 0;
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.signal-grid p,
.section-heading p:not(.eyebrow),
.showcase-copy p,
.fit-detail p,
.routine-summary p,
.detail-card p,
.contact-copy p,
.faq-item p,
.contact-summary p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.section {
  padding: 94px 0;
}

.section-light {
  background: var(--cream);
}

.section-dark {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--charcoal);
  background-size: 44px 44px;
  color: var(--white);
}

.section-quiet {
  background: linear-gradient(180deg, rgba(232, 216, 195, 0.45), rgba(247, 242, 235, 0.8));
}

.section-faq {
  background: var(--white);
}

.section-contact {
  background: linear-gradient(180deg, #3b2416 0%, #2d1b12 100%);
  color: var(--white);
}

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 20px 34px;
  align-items: start;
}

.showcase-layout > .section-heading {
  grid-column: 1 / -1;
}

.section-heading h2,
.fit-copy h2,
.contact-copy h2 {
  font-size: 52px;
}

.showcase-stage {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 18px;
}

.showcase-media {
  min-height: 480px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 242, 235, 0.9));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-copy {
  border-left: 2px solid rgba(200, 155, 94, 0.6);
  padding-left: 16px;
}

.showcase-kicker {
  display: inline-block;
  color: var(--moss);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-rail {
  display: grid;
  gap: 12px;
}

.feature-button,
.faq-button {
  width: 100%;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: inherit;
  text-align: left;
  padding: 18px;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.feature-button:hover,
.feature-button.is-active {
  transform: translateY(-1px);
  border-color: rgba(200, 155, 94, 0.6);
  background: rgba(255, 255, 255, 0.96);
}

.feature-button strong,
.fit-detail strong,
.faq-button strong {
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.feature-button span,
.faq-button span {
  color: var(--moss);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-button p,
.faq-button p {
  margin: 0;
  color: var(--ink-soft);
}

.fit-layout,
.routine-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 48px;
  align-items: start;
}

.fit-panel,
.routine-panel,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 24px;
}

.fit-selector,
.routine-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fit-selector button,
.routine-tabs button {
  cursor: pointer;
}

.fit-selector button.is-active,
.routine-tabs button.is-active {
  border-color: rgba(200, 155, 94, 0.4);
  background: var(--gold);
  color: var(--charcoal);
}

.fit-detail,
.routine-summary {
  margin-top: 24px;
}

.fit-points,
.routine-points,
.faq-list {
  display: grid;
  gap: 12px;
}

.fit-points,
.routine-points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.fit-points li,
.routine-points li,
.contact-points li {
  position: relative;
  padding-left: 20px;
}

.fit-points li::before,
.routine-points li::before,
.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.detail-layout {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.detail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.detail-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
}

.faq-list {
  align-content: start;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 242, 235, 0.72);
  overflow: hidden;
}

.faq-button {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 18px 20px;
}

.faq-button p {
  display: none;
}

.faq-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-item.is-open .faq-item-body {
  max-height: 220px;
}

.faq-item-body p {
  margin: 0;
  padding: 0 20px 20px;
}

.contact-copy {
  align-self: center;
}

.contact-summary {
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(31, 29, 26, 0.56);
  color: var(--white);
  padding: 12px 13px;
}

.contact-form textarea {
  min-height: 138px;
  resize: vertical;
}

.field-full {
  grid-column: 1 / -1;
}

.hidden-field {
  display: none;
}

.landing-footer {
  background: #201611;
  color: rgba(255, 255, 255, 0.72);
  padding: 30px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
  font-size: 14px;
}

.mobile-cta {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .landing-header,
  .hero {
    padding-inline: 24px;
  }

  .hero-inner,
  .showcase-layout,
  .fit-layout,
  .routine-layout,
  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .showcase-stage {
    position: static;
  }

  .signal-grid,
  .detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 70px;
  }

  body {
    padding-bottom: 72px;
  }

  .landing-header {
    min-height: var(--header-height);
    padding: 12px 18px;
  }

  .brand-copy strong,
  .footer-brand strong {
    font-size: 22px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    width: min(294px, calc(100vw - 36px));
    display: grid;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
    background: rgba(59, 36, 22, 0.98);
    box-shadow: var(--shadow-deep);
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    justify-content: flex-start;
    min-height: 44px;
  }

  .hero {
    padding: 110px 18px 56px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions,
  .hero-metrics,
  .signal-grid,
  .detail-grid,
  .contact-form,
  .product-notes {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .product-stage,
  .showcase-media {
    min-height: 360px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading h2,
  .fit-copy h2,
  .contact-copy h2 {
    font-size: 40px;
  }

  .section-inner,
  .signal-grid,
  .hero-inner,
  .showcase-layout,
  .fit-layout,
  .routine-layout,
  .contact-layout,
  .faq-layout,
  .detail-layout {
    width: min(100% - 36px, 1160px);
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-cta {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 14px;
    z-index: 105;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--gold);
    color: var(--charcoal);
    box-shadow: 0 18px 40px rgba(31, 29, 26, 0.26);
    font-weight: 800;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 48px;
  }

  .feature-button strong,
  .fit-detail strong,
  .faq-button strong,
  .signal-grid strong,
  .showcase-copy h3,
  .detail-card h3,
  .routine-summary h3 {
    font-size: 26px;
  }

  .hero-metrics div,
  .signal-grid article,
  .detail-card,
  .contact-summary,
  .fit-panel,
  .routine-panel,
  .contact-form {
    padding: 18px;
  }
}

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