/* ==========================================================================
   VENANT STUDIO — venantstudio.com
   Design system: "magazine splash, amber cut" — after Agence Foudre (accent re-keyed from pink to amber at Pierre's request) (styles.refero.design)
   Source tokens: styles.refero.design/style/c1534c74-f7b8-44de-a913-586d0f78fb08

   Rules this file obeys:
     · Typography IS the design — huge ultra-black display in burnt amber
     · Body reads in forest-green ink on warm chalk. Editorial, not ceremonial.
     · Flat: no shadows, no gradients. Depth from colour contrast and scale.
     · Radii: 10px buttons · 20px cards · 25px elevated · 9999px circles
     · Sparse, asymmetric, left-aligned. Massive whitespace.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=clash-grotesk@400,500,700&display=swap');

/* ---------- Tokens ---------- */
:root {
  --chalk:    #fefaf3;   /* page canvas — warm ivory */
  --peach:    #fcecd7;   /* soft surfaces, cards — apricot cream */
  --white:    #ffffff;   /* inputs, highest surface */
  --amber:  #e56e0d;   /* display headlines, primary actions — burnt amber */
  --forest:   #00522d;   /* body ink — deep green */
  --forest-65:rgba(0,82,45,.65);   /* muted text */
  --apricot:#f8d9a9;   /* tag fills, secondary accents — apricot */
  --amber-hi:   #f78d2b;   /* hover on amber surfaces */
  --sand:    #eadfce;   /* subtle dividers — warm sand */
  --black:    #000000;   /* icons only */

  --display: 'Anton', 'Arial Narrow', Impact, sans-serif;
  --sans: 'Clash Grotesk', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --r-btn:  10px;
  --r-card: 20px;
  --r-el:   25px;
  --r-full: 9999px;

  --maxw: 1280px;
  --gut:  clamp(1.25rem, 3.2vw, 2.5rem);
  --bay:  clamp(4rem, 8vw, 7.5rem);   /* 60–120px section gaps */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
body {
  font-family: var(--sans); font-size: 17px; font-weight: 400; line-height: 1.55;
  color: var(--forest); background: var(--chalk);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden;
}
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--amber); color: var(--white); }

/* ---------- Type — the design itself ---------- */
h1, h2 {
  font-family: var(--display); font-weight: 400; color: var(--amber);
  text-transform: uppercase; letter-spacing: .01em; line-height: .88; text-wrap: balance;
}
h1 { font-size: clamp(3.4rem, 2rem + 7vw, 9.5rem); }
h2 { font-size: clamp(2.4rem, 1.6rem + 3.6vw, 5rem); }
h1 em, h2 em { font-style: normal; color: var(--forest); }
h3, h4 { font-family: var(--sans); font-weight: 700; color: var(--forest); line-height: 1.15; text-wrap: balance; letter-spacing: -.01em; }
h3 { font-size: clamp(1.4rem, 1.2rem + .9vw, 1.85rem); }
h4 { font-size: 1.25rem; }
p { text-wrap: pretty; }
.sub  { font-size: clamp(1.1rem, 1rem + .4vw, 1.3rem); line-height: 1.45; color: var(--forest); max-width: 46ch; font-weight: 500; }
.body { font-size: .95rem; line-height: 1.5; }
.small { font-size: .875rem; line-height: 1.45; }
.muted { color: var(--forest-65); }
.lab { font-size: .95rem; color: var(--forest-65); font-weight: 500; }
.lab::before { content: ''; display: inline-block; width: 24px; height: 3px; background: var(--amber); vertical-align: middle; margin-right: .6em; border-radius: 2px; }

/* ---------- Layout ---------- */
.wrap { width: min(100% - (var(--gut) * 2), var(--maxw)); margin-inline: auto; }
.bay { padding-block: var(--bay); }
.bay-sm { padding-block: clamp(2.5rem, 5vw, 4rem); }
.grid { display: grid; gap: 1.25rem; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .g-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .g-2, .g-3 { grid-template-columns: 1fr; } }
.stack { display: flex; flex-direction: column; gap: .5rem; }
.rule { height: 1px; background: var(--sand); border: 0; }
.paper { background: var(--peach); }
.dark  { background: var(--forest); color: var(--chalk); }
.dark h1, .dark h2 { color: var(--apricot); }
.dark h3, .dark h4 { color: var(--white); }
.dark .sub, .dark .lab, .dark .muted { color: rgba(254,250,243,.78); }

/* ---------- Header ---------- */
.hdr { position: sticky; top: 0; z-index: 100; background: rgba(254,250,243,.88); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.hdr-in { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand-mk { width: 34px; height: 34px; border-radius: var(--r-full); background: var(--amber); color: var(--white); display: grid; place-items: center; }
.brand-mk svg { width: 18px; height: 15px; }
.brand-nm { font-family: var(--display); font-size: 1.15rem; letter-spacing: .04em; text-transform: uppercase; color: var(--forest); }
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a { font-size: .95rem; font-weight: 500; color: var(--forest-65); transition: color .15s; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--forest); }
.nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 6px; text-decoration-color: var(--amber); text-decoration-thickness: 2.5px; }
.hdr-r { display: flex; align-items: center; gap: .5rem; }
.burger { display: none; width: 44px; height: 44px; border-radius: var(--r-full); border: 0; background: var(--apricot); cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.burger span { width: 16px; height: 2px; background: var(--forest); display: block; border-radius: 2px; transition: transform .2s, opacity .15s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (max-width: 860px) {
  .nav, .hdr-r .btn { display: none; }
  .burger { display: flex; }
  .nav { position: fixed; inset: 74px 0 auto 0; background: var(--chalk); flex-direction: column; align-items: stretch; gap: 0; padding: .5rem var(--gut) 1.25rem; opacity: 0; transform: translateY(-6px); pointer-events: none; transition: opacity .18s, transform .18s; }
  .nav.open { display: flex; opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: .9rem 0; border-bottom: 1px solid var(--sand); font-size: 1.05rem; color: var(--forest); }
  .nav a:last-child { border-bottom: 0; }
}

/* ---------- Buttons — 10px, flat ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; padding: 12px 22px; border-radius: var(--r-btn); font-size: .95rem; font-weight: 500; white-space: nowrap; cursor: pointer; border: 0; background: var(--peach); color: var(--forest); transition: background .15s, color .15s, transform .15s; }
.btn:hover { background: var(--apricot); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 2.5px solid var(--amber); outline-offset: 2px; }
.btn-fill { background: var(--amber); color: var(--white); }
.btn-fill:hover { background: var(--amber-hi); color: var(--forest); }
.btn-dark { background: var(--forest); color: var(--chalk); }
.btn-dark:hover { background: #00713e; }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn .arw { transition: transform .15s; }
.btn:hover .arw { transform: translateX(3px); }
.tlink { font-weight: 500; color: var(--forest); text-decoration: underline; text-underline-offset: 5px; text-decoration-color: var(--amber); text-decoration-thickness: 2.5px; transition: color .15s; }
.tlink:hover { color: var(--amber); }

/* ---------- Cards ---------- */
.card { background: var(--peach); border-radius: var(--r-card); padding: 30px; }
.card-nest { background: var(--chalk); border-radius: 14px; padding: 12px 16px; }
.tag { display: inline-flex; align-items: center; padding: 5px 13px; border-radius: var(--r-full); background: var(--apricot); color: var(--forest); font-size: .8125rem; font-weight: 700; }

/* ---------- Film hero — full-bleed cinematic video, display type over it ---------- */
.hero { padding-top: clamp(3rem, 7vw, 6rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.hero h1 { max-width: 12ch; margin-block: 1rem 1.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.75rem; }

.hero-film { position: relative; overflow: hidden; min-height: min(88vh, 860px); display: grid; align-items: end; padding: 0; }
.hero-film video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-film-veil { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(92deg, rgba(254,250,243,.92) 0%, rgba(254,250,243,.6) 40%, rgba(254,250,243,0) 70%),
              linear-gradient(180deg, rgba(254,250,243,.3) 0%, rgba(254,250,243,0) 30%, rgba(254,250,243,.6) 100%); }
.hero-film .wrap { position: relative; z-index: 2; padding-block: clamp(4.5rem, 9vw, 7rem) clamp(2.75rem, 6vw, 4.5rem); }
.hero-film h1 { max-width: 11ch; margin-block: 1rem 1.4rem; }
.hero-film .sub { max-width: 42ch; }
@media (max-width: 700px) { .hero-film { min-height: 74vh; } .hero-film-veil { background: linear-gradient(180deg, rgba(254,250,243,.6), rgba(254,250,243,.9)); } }

/* Facts strip */
.facts { display: flex; flex-wrap: wrap; gap: .5rem 2.25rem; padding-block: 1.2rem; border-bottom: 1px solid var(--sand); font-size: .95rem; color: var(--forest-65); }
.facts b { color: var(--forest); font-weight: 700; }

/* ---------- Section head ---------- */
.shead { display: flex; align-items: end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.shead h2 { margin-top: .5rem; max-width: 16ch; }

/* ---------- Work grid — live scaled previews ---------- */
.works { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 1000px) { .works { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .works { grid-template-columns: 1fr; } }
.work { display: block; background: var(--peach); border-radius: var(--r-card); overflow: hidden; transition: background .18s, transform .25s cubic-bezier(.2,.7,.2,1); }
.work:hover { background: var(--apricot); transform: translateY(-3px); }
.work-frame { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--chalk); border-radius: 14px; margin: 12px 12px 0; }
.work-view { position: absolute; inset: 0; transition: transform 3.2s cubic-bezier(.25,.1,.25,1); }
.work:hover .work-view { transform: translateY(-16%); }
.work-frame iframe { position: absolute; top: 0; left: 0; width: 1280px; max-width: none; height: 800px; border: 0; transform-origin: 0 0; pointer-events: none; }
.work-frame::after { content: ''; position: absolute; inset: 0; }
.work-body { padding: 16px 20px 20px; display: flex; align-items: start; justify-content: space-between; gap: .75rem; }
.work-ttl { font-family: var(--sans); font-weight: 700; font-size: 1.15rem; line-height: 1.15; color: var(--forest); }
.work-sub { font-size: .875rem; color: var(--forest-65); margin-top: 3px; }
.work-tag { flex: none; }

/* ---------- Service rows ---------- */
.svc { display: grid; grid-template-columns: 3.25rem 1fr; gap: 1.25rem; padding: 24px 0; border-top: 1px solid var(--sand); }
.svc:last-child { border-bottom: 1px solid var(--sand); }
.svc-no { font-family: var(--display); font-size: 1.5rem; color: var(--amber); padding-top: 2px; }
.svc h3 { margin-bottom: .3rem; }
.svc p { color: var(--forest-65); max-width: 62ch; }
.svc ul { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .75rem; }
.svc li { font-size: .8125rem; background: var(--peach); border-radius: var(--r-full); padding: 4px 13px; color: var(--forest); font-weight: 500; }

/* ---------- Pricing ---------- */
.plan { display: flex; flex-direction: column; gap: 1rem; }
.plan-nm { font-family: var(--display); font-size: 1.6rem; line-height: 1; text-transform: uppercase; letter-spacing: .02em; color: var(--forest); }
.plan-desc { color: var(--forest-65); font-size: .95rem; }
.plan-pr { display: flex; align-items: baseline; gap: .35rem; }
.plan-pr b { font-family: var(--display); font-size: 3.2rem; line-height: 1; font-weight: 400; color: var(--amber); }
.plan-pr small { font-size: .875rem; color: var(--forest-65); }
.plan-setup { font-size: .875rem; color: var(--forest-65); margin-top: -.5rem; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; flex: 1; padding-top: .25rem; }
.plan li { font-size: .95rem; color: var(--forest); padding-left: 1.4rem; position: relative; }
.plan li::before { content: ''; position: absolute; left: 0; top: .5em; width: 9px; height: 5px; border-left: 2.5px solid var(--amber); border-bottom: 2.5px solid var(--amber); transform: rotate(-45deg); }
.plan .btn { width: 100%; margin-top: .25rem; }
.plan-feat { background: var(--forest); color: var(--chalk); }
.plan-feat .plan-nm { color: var(--white); }
.plan-feat .plan-pr b { color: var(--apricot); }
.plan-feat .plan-desc, .plan-feat li, .plan-feat .plan-setup, .plan-feat .plan-pr small { color: rgba(254,250,243,.8); }
.plan-feat li::before { border-color: var(--apricot); }

/* ---------- Steps ---------- */
.step { display: grid; grid-template-columns: 3.25rem 1fr; gap: 1.25rem; padding: 22px 0; border-top: 1px solid var(--sand); }
.step:last-child { border-bottom: 1px solid var(--sand); }
.step-no { font-family: var(--display); font-size: 1.5rem; color: var(--amber); padding-top: 1px; }
.step h4 { margin-bottom: .25rem; }
.step p { color: var(--forest-65); max-width: 62ch; }

/* ---------- FAQ ---------- */
.faq details { border-top: 1px solid var(--sand); }
.faq details:last-child { border-bottom: 1px solid var(--sand); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 0; display: flex; justify-content: space-between; gap: 1rem; font-weight: 700; font-size: 1.05rem; color: var(--forest); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { position: relative; width: 14px; height: 14px; flex: none; margin-top: 5px; }
.faq summary .pm::before, .faq summary .pm::after { content: ''; position: absolute; background: var(--amber); transition: transform .2s; }
.faq summary .pm::before { inset: 6px 0 auto 0; height: 2.5px; }
.faq summary .pm::after { inset: 0 6px auto 6px; width: 2.5px; height: 14px; }
.faq details[open] summary .pm::after { transform: rotate(90deg); }
.faq-a { padding-bottom: 18px; color: var(--forest-65); max-width: 66ch; }

/* ---------- Forms ---------- */
.form { display: grid; gap: .875rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .875rem; color: var(--forest); font-weight: 500; }
.field input, .field textarea, .field select { padding: 12px 16px; background: var(--white); border: 0; border-radius: var(--r-btn); font-size: .95rem; width: 100%; color: var(--forest); }
.field textarea { min-height: 130px; resize: vertical; border-radius: 14px; }
.field input::placeholder, .field textarea::placeholder { color: var(--forest-65); opacity: .6; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 2.5px solid var(--amber); outline-offset: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .875rem; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .875rem; color: var(--forest-65); }

/* ---------- Footer ---------- */
.ftr { background: var(--forest); color: var(--chalk); padding-block: 3rem 1.5rem; margin-top: var(--bay); }
.ftr .brand-mk { background: var(--apricot); color: var(--forest); }
.ftr .brand-nm { color: var(--chalk); }
.ftr-in { display: flex; flex-wrap: wrap; align-items: start; justify-content: space-between; gap: 1.5rem; }
.ftr ul { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; }
.ftr ul a { font-size: .95rem; color: rgba(254,250,243,.78); }
.ftr ul a:hover { color: var(--white); }
.ftr-btm { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(254,250,243,.2); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; font-size: .8125rem; color: rgba(254,250,243,.6); }

/* ---------- Motion — quiet ---------- */
[data-rv] { opacity: 0; transform: translateY(10px); }
[data-rv].in { animation: up .5s ease both; }
@keyframes up { to { opacity: 1; transform: none; } }
[data-words] .w { display: inline-block; opacity: 0; transform: translateY(.25em); animation: wordIn .55s cubic-bezier(.2,.7,.2,1) forwards; }
@keyframes wordIn { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { [data-rv], [data-words] .w { opacity: 1; transform: none; animation: none; } }

/* ---------- Utilities ---------- */
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.max-60 { max-width: 60ch; }
.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--amber); color: var(--white); padding: .6em 1.1em; border-radius: var(--r-btn); }
.skip:focus { left: 1rem; top: 1rem; }

/* ---------- Work card details ---------- */
.work-id { display: flex; align-items: center; gap: .7rem; min-width: 0; }
.work-mk { width: 38px; height: 38px; border-radius: var(--r-full); color: #fff; display: grid; place-items: center; flex: none; }
.work-mk svg { width: 20px; height: 20px; }
.work-desc { padding: 0 20px; margin-top: -6px; font-size: .875rem; line-height: 1.45; color: var(--forest-65); }
.work-srv { list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; padding: 12px 20px 20px; }
.work-srv li { font-size: .75rem; font-weight: 500; background: var(--chalk); border-radius: var(--r-full); padding: 3px 11px; color: var(--forest); }
.work:hover .work-srv li { background: var(--white); }
