:root {
  --bg: #f4f0e9;
  --bg-deep: #ebe5db;
  --ink: #171512;
  --muted: #716b62;
  --muted-2: #8c857a;
  --line: rgba(23,21,18,.14);
  --line-strong: rgba(23,21,18,.24);
  --card: #fbf8f2;
  --paper: #fffdf9;
  --dark: #171614;
  --accent: #9c7438;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", Times, serif;
  --content: 1200px;
  --pad: clamp(20px, 3.2vw, 40px);
  --section-y: clamp(86px, 10vw, 142px);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--content);
  min-height: 72px;
  margin: auto;
  padding: 10px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-size: .98rem;
  font-weight: 780;
  letter-spacing: -.025em;
}
.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(156,116,56,.10);
}
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links > a:not(.button) {
  color: var(--ink);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 560;
  opacity: .76;
  transition: opacity .18s ease;
}
.nav-links > a:not(.button):hover { opacity: 1; }

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 720;
  letter-spacing: -.01em;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-1px); border-color: var(--ink); }
.button.primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.button.primary:hover { background: #292621; border-color: #292621; }
.button.secondary { background: rgba(255,255,255,.22); }
.button.inverse { color: #fff; border-color: rgba(255,255,255,.55); }
.button.inverse:hover { background: #fff; color: var(--ink); border-color: #fff; }
.button-lg { min-height: 52px; padding: 0 22px; font-size: .9rem; }

.hero {
  max-width: var(--content);
  min-height: min(820px, calc(100svh - 72px));
  margin: auto;
  padding: clamp(72px, 8vw, 116px) var(--pad) clamp(76px, 8vw, 112px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow,
.section-index {
  display: inline-block;
  font-size: .69rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-weight: 800;
}
.section-index { color: var(--muted-2); margin-bottom: 22px; }
.hero h1,
.section h2,
.final-cta h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero h1 {
  max-width: 690px;
  margin: 18px 0 26px;
  font-size: clamp(4.45rem, 7.1vw, 7.05rem);
  line-height: .84;
}
.hero h1 span { display: block; }
.hero-lede {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
  line-height: 1.62;
  letter-spacing: -.012em;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 32px; }
.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 24px;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.4;
}
.proof span { position: relative; padding-left: 13px; }
.proof span::before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  left: 0;
  top: .48em;
  border-radius: 50%;
  background: var(--accent);
}

.hero-stack {
  position: relative;
  min-height: 570px;
  isolation: isolate;
}
.stage-caption {
  position: absolute;
  z-index: 8;
  right: 2%;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: .7rem;
  letter-spacing: .01em;
}
.stage-caption span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink);
  font-size: .62rem;
  font-weight: 750;
}
.epk-card {
  position: absolute;
  width: min(330px, 68%);
  aspect-ratio: 210 / 297;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  background: var(--paper);
  box-shadow: 0 34px 80px rgba(35,28,20,.13);
  transform-origin: 50% 65%;
}
.card-back { right: 1%; top: 4%; transform: rotate(4.5deg); }
.card-mid { left: 1%; top: 16%; transform: rotate(-5.2deg); background: #191817; color: #fff; }
.card-front { left: 25%; top: 27%; transform: rotate(.8deg); background: #ebe5dc; }
.mini-line { height: 4px; margin: 8px 0; background: currentColor; opacity: .78; }
.mini-hero { height: 45%; margin: 12px 0; background: linear-gradient(135deg,#a39a8d,#403a34); }
.card-mid .mini-hero { background: linear-gradient(135deg,#5a5752,#181817); }
.card-front .mini-hero { background: linear-gradient(135deg,#b3aa9d,#6b6358); }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.mini-box { height: 58px; border: 1px solid currentColor; opacity: .34; }

.section {
  max-width: var(--content);
  margin: auto;
  padding: var(--section-y) var(--pad);
  border-top: 1px solid var(--line);
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: end;
  margin-bottom: clamp(44px, 5vw, 72px);
}
.section-head > div { min-width: 0; }
.section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(3.25rem, 5.25vw, 5.25rem);
  line-height: .9;
}
.section-head > p {
  max-width: 460px;
  margin: 0 0 .3em;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.65;
}

.layouts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.layout-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 14px 18px;
  background: color-mix(in srgb, var(--card) 88%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.layout-card:hover { transform: translateY(-2px); border-color: var(--line-strong); background: var(--card); }
.layout-card > div:last-child { display: flex; align-items: baseline; gap: 12px; padding: 0 4px; }
.layout-card > div:last-child span { color: var(--muted-2); font-size: .65rem; font-weight: 700; }
.layout-card strong { font-family: var(--serif); font-size: 1.22rem; font-weight: 600; letter-spacing: -.025em; }
.layout-preview {
  position: relative;
  height: 166px;
  overflow: hidden;
  border-radius: 12px;
  background: #ebe5dc;
  border: 1px solid rgba(0,0,0,.06);
}
.layout-preview.dark { background: #1b1a18; color: #fff; }
.layout-preview .a,.layout-preview .b { position: absolute; }
.preview-editorial .a { left: 10%; top: 12%; width: 34%; height: 12%; border-top: 5px solid #25231f; border-bottom: 1px solid #80786f; }
.preview-editorial .b { right: 8%; top: 9%; width: 42%; height: 76%; background: #92887a; }
.preview-luxury .a { left: 24%; top: 13%; width: 52%; height: 6%; background: #24211d; }
.preview-luxury .b { left: 12%; right: 12%; top: 36%; height: 44%; background: #aaa094; }
.preview-swiss .a { left: 8%; top: 10%; width: 7%; height: 80%; background: #24211d; }
.preview-swiss .b { left: 24%; top: 12%; width: 62%; height: 32%; border-top: 6px solid #24211d; border-bottom: 1px solid #837c72; }
.preview-cinematic .a { inset: 8%; background: linear-gradient(135deg,#5c5750,#242321); }
.preview-cinematic .b { left: 12%; right: 12%; bottom: 12%; height: 8%; border-top: 3px solid #fff; border-bottom: 1px solid rgba(255,255,255,.45); }
.preview-portfolio .a { left: 8%; top: 8%; width: 50%; height: 58%; background: #8d8478; }
.preview-portfolio .b { right: 8%; bottom: 8%; width: 42%; height: 48%; border: 1px solid rgba(255,255,255,.55); }
.preview-dossier .a { left: 8%; top: 8%; width: 24%; height: 84%; border-right: 1px solid #777066; }
.preview-dossier .b { left: 41%; right: 8%; top: 12%; height: 70%; border-top: 5px solid #24211d; border-bottom: 1px solid #777066; }
.preview-lookbook .a { left: 6%; top: 6%; bottom: 6%; width: 54%; background: #958b7e; }
.preview-lookbook .b { right: 8%; top: 13%; width: 24%; height: 70%; border-top: 5px solid #25231f; border-bottom: 1px solid #817a70; }
.preview-mono .a { left: 8%; top: 8%; width: 66%; height: 34%; background: #181715; }
.preview-mono .b { right: 8%; bottom: 8%; width: 46%; height: 48%; border: 2px solid #181715; }
.preview-label .a { left: 7%; top: 8%; width: 43%; height: 82%; border: 1px solid rgba(255,255,255,.55); }
.preview-label .b { right: 7%; top: 8%; width: 42%; height: 82%; background: linear-gradient(145deg,#20426e,#3c7799); }

.steps {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}
.step {
  min-height: 230px;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: space-between;
  padding: 24px 26px 28px 0;
}
.step + .step { border-left: 1px solid var(--line); padding-left: 26px; }
.step-number,.benefit > span { color: var(--muted-2); font-size: .67rem; font-weight: 780; letter-spacing: .08em; }
.step h3,.benefit h3 { margin: 0 0 10px; font-size: 1.02rem; letter-spacing: -.018em; }
.step p,.benefit p { max-width: 310px; margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.58; }
.step > div { align-self: end; }

.compact-head { grid-template-columns: 1fr; }
.benefits { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.benefit {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.18);
}
.benefit h3 { margin-top: auto; padding-top: 56px; }
.use-case-block {
  margin-top: clamp(48px,6vw,78px);
  padding-top: 34px;
  border-top: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: minmax(220px,.72fr) minmax(0,1.28fr);
  gap: clamp(36px,7vw,92px);
  align-items: start;
}
.use-case-intro p { max-width: 360px; margin: 16px 0 0; color: var(--muted); font-size: .92rem; line-height: 1.55; }
.uses { display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-start; }
.use {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,.27);
  font-size: .88rem;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.use.wide { padding-inline: 22px; }

.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.price-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px,3vw,40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
}
.price-card.featured { background: var(--dark); color: #fff; border-color: var(--dark); }
.price-card-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.plan-note { color: var(--muted-2); font-size: .72rem; }
.featured .plan-note { color: rgba(255,255,255,.58); }
.price { margin: 34px 0 4px; font-family: var(--serif); font-size: clamp(4rem,6vw,5.2rem); line-height: .9; letter-spacing: -.05em; }
.price-intro { max-width: 420px; min-height: 54px; margin: 12px 0 26px; color: var(--muted); font-size: .9rem; line-height: 1.55; }
.featured .price-intro { color: rgba(255,255,255,.65); }
.price-card ul { margin: 4px 0 34px; padding: 0; list-style: none; display: grid; gap: 0; }
.price-card li { position: relative; padding: 13px 0 13px 23px; border-top: 1px solid var(--line); font-size: .87rem; }
.featured li { border-color: rgba(255,255,255,.13); }
.price-card li::before { content: ""; position: absolute; left: 2px; top: 19px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.price-button { width: 100%; min-height: 50px; margin-top: auto; }
.featured .price-button { border-color: rgba(255,255,255,.48); color: #fff; }
.featured .price-button:hover { background: #fff; color: var(--ink); border-color: #fff; }

.faq-head { align-items: start; }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  position: relative;
  padding: 23px 46px 23px 0;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -.015em;
}
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 3px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
}
.faq details[open] summary::after { content: "−"; }
.faq p { max-width: 790px; margin: -3px 0 24px; color: var(--muted); font-size: .92rem; line-height: 1.65; }

.section-final { padding-top: clamp(62px,7vw,96px); }
.final-cta {
  min-height: 410px;
  display: grid;
  grid-template-columns: minmax(0,1.25fr) auto;
  align-items: end;
  gap: 48px;
  padding: clamp(36px,5.5vw,72px);
  overflow: hidden;
  position: relative;
  border-radius: clamp(26px,3vw,40px);
  background: var(--dark);
  color: #fff;
}
.final-cta::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -170px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(255,255,255,.025),0 0 0 108px rgba(255,255,255,.018);
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 { max-width: 760px; margin: 18px 0 20px; color: #fff; }
.final-cta p { max-width: 560px; margin: 0; color: rgba(255,255,255,.62); font-size: .92rem; line-height: 1.6; }
.final-button { min-width: 210px; min-height: 52px; }

.footer {
  max-width: var(--content);
  margin: auto;
  padding: 22px var(--pad) 54px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: start;
  color: var(--muted);
  font-size: .74rem;
}
.footer-brand { display: grid; gap: 4px; }
.footer-brand strong { color: var(--ink); font-size: .82rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 9px 16px; }
.footer a { color: inherit; text-decoration: none; }
.footer a:hover { color: var(--ink); }
.footer-year { white-space: nowrap; }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }

@media (max-width: 1024px) {
  .hero { grid-template-columns: minmax(0,1fr) minmax(330px,.8fr); gap: 42px; }
  .hero h1 { font-size: clamp(4rem,8vw,6.3rem); }
  .hero-stack { min-height: 500px; }
  .layouts { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .layout-card { min-height: 235px; }
  .layout-preview { height: 145px; }
}

@media (max-width: 820px) {
  :root { --section-y: 88px; }
  html { scroll-padding-top: 72px; }
  .nav-inner { min-height: 68px; }
  .nav-links > a:not(.button) { display: none; }
  .nav-cta { min-height: 42px; padding-inline: 17px; }
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 54px;
    padding-top: 78px;
    padding-bottom: 78px;
  }
  .hero h1 { max-width: 720px; font-size: clamp(4.2rem,12vw,6rem); }
  .hero-stack { width: min(620px,92%); min-height: 500px; margin: 0 auto; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head > p { max-width: 560px; }
  .layouts { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 150px; grid-template-columns: 54px 1fr; grid-template-rows: 1fr; gap: 20px; padding: 24px 0; align-items: end; }
  .step + .step { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .benefits { grid-template-columns: 1fr; }
  .benefit { min-height: 190px; }
  .benefit h3 { padding-top: 38px; }
  .use-case-block { grid-template-columns: 1fr; gap: 30px; }
  .pricing { grid-template-columns: 1fr; }
  .price-card { min-height: 0; }
  .final-cta { grid-template-columns: 1fr; min-height: 440px; align-items: end; }
  .final-button { width: fit-content; }
  .footer { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 520px) {
  :root { --pad: 20px; --section-y: 76px; }
  .nav-inner { min-height: 66px; padding-top: 9px; padding-bottom: 9px; }
  .logo { font-size: .92rem; }
  .logo-dot { width: 7px; height: 7px; }
  .nav-cta { min-height: 40px; padding: 0 15px; font-size: .78rem; }
  .hero { gap: 42px; padding-top: 64px; padding-bottom: 70px; }
  .hero h1 {
    max-width: 390px;
    margin-top: 15px;
    margin-bottom: 22px;
    font-size: clamp(3.65rem,14.7vw,4.55rem);
    line-height: .86;
    letter-spacing: -.06em;
  }
  .hero h1 span { display: inline; }
  .hero-lede { max-width: 390px; font-size: 1rem; line-height: 1.58; }
  .cta-row { display: grid; grid-template-columns: 1fr; gap: 9px; margin-top: 28px; }
  .button-lg { width: 100%; min-height: 50px; }
  .proof { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; margin-top: 20px; font-size: .72rem; }
  .proof span:last-child { grid-column: 1 / -1; }
  .hero-stack { width: 100%; min-height: 355px; margin-top: 4px; }
  .epk-card { width: min(218px,64%); padding: 12px; box-shadow: 0 22px 50px rgba(35,28,20,.13); }
  .card-back { right: 1%; top: 0; }
  .card-mid { left: 0; top: 13%; }
  .card-front { left: 27%; top: 24%; }
  .stage-caption { right: 0; bottom: -1px; font-size: .65rem; }
  .mini-hero { margin: 8px 0; }
  .mini-box { height: 36px; }
  .section-index { margin-bottom: 17px; font-size: .64rem; }
  .section h2,.final-cta h2 { font-size: clamp(2.9rem,12.4vw,3.55rem); line-height: .91; }
  .section-head { margin-bottom: 36px; }
  .section-head > p { font-size: .91rem; line-height: 1.58; }
  .layouts { grid-template-columns: 1fr; gap: 10px; }
  .layout-card { min-height: 0; padding: 11px 11px 16px; border-radius: 18px; gap: 15px; }
  .layout-preview { height: 190px; }
  .layout-card strong { font-size: 1.15rem; }
  .step { grid-template-columns: 38px 1fr; min-height: 132px; gap: 14px; }
  .benefit { min-height: 176px; padding: 20px; border-radius: 18px; }
  .benefit h3 { padding-top: 30px; }
  .use-case-block { margin-top: 46px; padding-top: 28px; }
  .use-case-intro p { font-size: .88rem; }
  .uses { gap: 8px; }
  .use { min-height: 44px; padding: 0 15px; font-size: .82rem; }
  .use.wide { padding-inline: 17px; }
  .price-card { padding: 25px 22px; border-radius: 24px; }
  .price { font-size: 4rem; margin-top: 28px; }
  .price-intro { min-height: 0; margin-bottom: 22px; }
  .price-card li { font-size: .84rem; }
  .faq summary { padding-top: 20px; padding-bottom: 20px; font-size: .94rem; }
  .faq p { font-size: .88rem; }
  .section-final { padding-top: 58px; }
  .final-cta { min-height: 470px; padding: 30px 24px; border-radius: 26px; }
  .final-cta h2 { margin-top: 16px; }
  .final-button { width: 100%; }
  .footer { padding-bottom: calc(44px + env(safe-area-inset-bottom,0px)); }
  .footer-links { gap: 9px 14px; }
}

@media (max-width: 390px) {
  :root { --pad: 18px; }
  .hero h1 { font-size: clamp(3.35rem,14.2vw,4rem); }
  .nav-cta { padding-inline: 13px; }
  .proof { grid-template-columns: 1fr; }
  .proof span:last-child { grid-column: auto; }
  .hero-stack { min-height: 330px; }
  .layout-preview { height: 176px; }
}

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