:root {
  color-scheme: light;
  --paper: #fbfaf6;
  --paper-2: #f2eee4;
  --ink: #171717;
  --muted: #66625b;
  --line: rgba(23, 23, 23, 0.14);
  --green: #375948;
  --burgundy: #8a2f3b;
  --cyan: #007e89;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", sans-serif;
}

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

p {
  color: var(--muted);
  line-height: 1.58;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 10px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(16px);
}

.logo img {
  display: block;
  width: 226px;
  height: auto;
}

.desktop-nav {
  display: flex;
  gap: clamp(10px, 1.5vw, 22px);
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.desktop-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--ink);
  border-color: var(--burgundy);
}

.hero {
  min-height: calc(100vh - 76px);
  max-width: 1440px;
  margin: 0 auto;
  padding: 42px clamp(20px, 4vw, 54px) 34px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.92;
}

h2 {
  font-size: clamp(34px, 4.5vw, 66px);
  line-height: 0.98;
}

h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.hero-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 4px;
  border: 1px solid var(--ink);
  font-weight: 750;
  font-size: 14px;
}

.button.primary {
  background: var(--ink);
  color: var(--paper);
}

.button.secondary {
  background: transparent;
}

.hero-visual {
  margin: 0;
}

.hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center right;
  border-radius: 0 0 0 72px;
}

.proof-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.proof-strip div {
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip span,
.facts dt,
.platform-panel span,
.service-grid span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.proof-strip strong {
  display: block;
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 74px clamp(20px, 4vw, 54px);
  border-top: 1px solid var(--line);
}

.two-col {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(30px, 5vw, 70px);
}

.copy-block p {
  margin-top: 0;
  font-size: 18px;
}

.operation-summary {
  max-width: 520px;
  margin: 24px 0 0;
  font-size: 17px;
  color: var(--muted);
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.facts div {
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.facts dd {
  margin: 8px 0 0;
  font-size: 17px;
  line-height: 1.4;
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head p {
  font-size: 18px;
}

.section-link {
  margin: 28px 0 0;
}

.service-grid,
.check-grid,
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-grid article,
.check-grid article,
.policy-grid article {
  padding: 20px;
  border-top: 2px solid var(--burgundy);
  background: rgba(255, 255, 255, 0.38);
}

.service-grid article:nth-child(2n),
.check-grid article:nth-child(2n),
.policy-grid article:nth-child(2n) {
  border-top-color: var(--green);
}

.service-grid article:nth-child(3n) {
  border-top-color: var(--cyan);
}

.service-grid h3 {
  margin-top: 18px;
}

.product-wall {
  max-width: none;
  background: #f5f0e7;
}

.product-wall .section-head,
.product-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.24fr repeat(3, minmax(0, 0.78fr));
  gap: 14px;
}

.product-card,
.product-tile,
.product-note {
  min-height: 212px;
  padding: 20px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, #fffefa 72%, transparent);
}

.product-card span,
.product-tile span,
.product-note span {
  display: block;
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.product-card p,
.product-tile p {
  margin-bottom: 0;
}

.feature-product {
  grid-row: span 2;
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: 0;
  overflow: hidden;
}

.feature-product img {
  display: block;
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center right;
}

.feature-product div {
  padding: 0 22px 24px;
}

.feature-product h3 {
  max-width: 460px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.02;
  font-weight: 500;
}

.product-tile {
  display: grid;
  align-content: start;
  gap: 12px;
}

.product-tile h3 {
  margin-top: 2px;
}

.product-illustration {
  position: relative;
  height: 92px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.product-illustration::before,
.product-illustration::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(23, 23, 23, 0.72);
}

.coat::before {
  width: 64px;
  height: 72px;
  left: 42px;
  bottom: 8px;
  border-radius: 22px 22px 8px 8px;
  background: #375948;
}

.coat::after {
  width: 112px;
  height: 42px;
  left: 18px;
  top: 22px;
  border-width: 0 12px 0 12px;
  border-radius: 18px;
}

.dress::before {
  width: 74px;
  height: 70px;
  left: 38px;
  bottom: 8px;
  clip-path: polygon(34% 0, 66% 0, 100% 100%, 0 100%);
  background: #8a2f3b;
}

.dress::after {
  width: 46px;
  height: 22px;
  left: 52px;
  top: 10px;
  border-radius: 0 0 18px 18px;
  border-top: 0;
}

.knit::before {
  width: 92px;
  height: 64px;
  left: 28px;
  bottom: 14px;
  border-radius: 10px;
  background: repeating-linear-gradient(90deg, #d8cdbb 0 8px, #fbfaf6 8px 13px);
}

.knit::after {
  width: 24px;
  height: 24px;
  left: 62px;
  top: 12px;
  border-radius: 50%;
  border-bottom: 0;
}

.bag::before {
  width: 88px;
  height: 56px;
  left: 30px;
  bottom: 12px;
  border-radius: 8px 8px 14px 14px;
  background: #171717;
}

.bag::after {
  width: 50px;
  height: 40px;
  left: 49px;
  top: 12px;
  border-radius: 32px 32px 0 0;
  border-bottom: 0;
}

.shoe::before {
  width: 116px;
  height: 42px;
  left: 20px;
  bottom: 16px;
  border-radius: 38px 10px 14px 10px;
  transform: skewX(-12deg);
  background: #fbfaf6;
}

.shoe::after {
  width: 84px;
  height: 8px;
  left: 48px;
  bottom: 12px;
  background: #171717;
  border: 0;
}

.belt::before {
  width: 118px;
  height: 26px;
  left: 18px;
  bottom: 34px;
  border-radius: 999px;
  background: #5b3b2b;
}

.belt::after {
  width: 34px;
  height: 30px;
  right: 28px;
  bottom: 32px;
  border-color: #c8a15c;
}

.scarf::before {
  width: 42px;
  height: 78px;
  left: 44px;
  bottom: 8px;
  border-radius: 18px 18px 6px 6px;
  background: #8a2f3b;
}

.scarf::after {
  width: 42px;
  height: 66px;
  left: 78px;
  bottom: 10px;
  border-radius: 18px 18px 6px 6px;
  background: #375948;
  transform: rotate(12deg);
}

.hat::before {
  width: 78px;
  height: 42px;
  left: 36px;
  bottom: 28px;
  border-radius: 46px 46px 10px 10px;
  background: #d8cdbb;
}

.hat::after {
  width: 126px;
  height: 12px;
  left: 14px;
  bottom: 24px;
  border-radius: 999px;
  background: #171717;
}

.eyewear::before {
  width: 42px;
  height: 34px;
  left: 26px;
  bottom: 28px;
  border-radius: 50%;
  background: rgba(23, 23, 23, 0.08);
}

.eyewear::after {
  width: 42px;
  height: 34px;
  right: 26px;
  bottom: 28px;
  border-radius: 50%;
  background: rgba(23, 23, 23, 0.08);
  box-shadow: -42px 0 0 -19px #171717;
}

.jewelry::before {
  width: 72px;
  height: 72px;
  left: 38px;
  bottom: 10px;
  border-radius: 50%;
  border-color: #c8a15c;
}

.jewelry::after {
  width: 18px;
  height: 18px;
  left: 66px;
  top: 12px;
  border-radius: 50%;
  background: #8a2f3b;
  border-color: #8a2f3b;
}

.package::before {
  width: 92px;
  height: 62px;
  left: 28px;
  bottom: 12px;
  background: #d8cdbb;
}

.package::after {
  width: 92px;
  height: 1px;
  left: 28px;
  bottom: 44px;
  border: 0;
  border-top: 2px solid rgba(23, 23, 23, 0.72);
  transform: rotate(-18deg);
}

.product-note {
  background: #171717;
  color: #fbfaf6;
}

.product-note p,
.product-note span {
  color: #cfc9bb;
}

.testimonials {
  background: #fbfaf6;
}

.review-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-grid article {
  padding: 24px;
  border-left: 2px solid var(--burgundy);
  background: rgba(255, 255, 255, 0.44);
}

.review-grid p {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.24;
}

.review-grid strong,
.review-grid span {
  display: block;
}

.review-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.split-band {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 4vw, 60px);
  background: var(--paper-2);
}

.split-band > * {
  max-width: 620px;
}

.platform-panel {
  justify-self: end;
  width: min(100%, 620px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.platform-panel div {
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.platform-panel strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.timeline p {
  margin: 8px 0 0;
}

.compliance {
  background: #181714;
  color: #fbfaf6;
  max-width: none;
}

.compliance .section-head,
.compliance .check-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.compliance p,
.compliance .eyebrow {
  color: #cfc9bb;
}

.compliance .check-grid article {
  background: rgba(255, 255, 255, 0.04);
  border-top-color: #c8a15c;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 68px);
}

.contact-panel {
  border-top: 1px solid var(--line);
}

.contact-panel p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px clamp(20px, 4vw, 54px);
  border-top: 1px solid var(--line);
}

.footer img {
  width: 42px;
  height: 42px;
}

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

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px clamp(20px, 4vw, 54px) 56px;
}

.page-hero h1 {
  max-width: 850px;
}

.page-hero p {
  max-width: 760px;
  font-size: 20px;
}

.policy-doc {
  display: grid;
  gap: 42px;
}

.policy-doc article {
  max-width: 920px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.policy-doc h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero,
  .two-col,
  .split-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual img {
    aspect-ratio: 16 / 11;
  }

  .proof-strip,
  .facts,
  .service-grid,
  .check-grid,
  .policy-grid,
  .product-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-product {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .split-band > * {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
  }

  .logo img {
    width: 190px;
  }

  h1 {
    font-size: 48px;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .proof-strip,
  .facts,
  .service-grid,
  .check-grid,
  .policy-grid,
  .product-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .hero-visual img {
    border-radius: 0 0 0 42px;
  }
}
