/* ===================================================================
   Polly — styles.css
   Warm + cinematic + human. Living aurora, Fraunces, spring physics.
   =================================================================== */

:root {
  --cream:    #FFF3E6;
  --cream-2:  #FCE7D1;
  --cream-3:  #FBDCBF;
  --ink:      #2A1810;   /* warm near-black */
  --ink-2:    #6E5749;
  --ink-3:    #9A8475;
  --coral:    #FF5A3C;
  --coral-d:  #E8431F;
  --tangerine:#FF9A2E;
  --rose:     #FF8066;
  --berry:    #E8455F;
  --sun:      #FFC861;
  --espresso: #20100A;   /* warm finale dark */

  --spring: cubic-bezier(.34, 1.56, .64, 1);
  --ease:   cubic-bezier(.22, .7, .25, 1);
  --shadow: 0 30px 70px -28px rgba(110,60,30,.45);
  --shadow-warm: 0 24px 60px -22px rgba(255,90,60,.45);

  --font-display: 'Fraunces', 'Heebo', Georgia, serif;
  --font-body: 'Hanken Grotesk', 'Heebo', system-ui, sans-serif;

  --shell: 1240px;
  --pad: clamp(20px, 4.5vw, 64px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px; line-height: 1.55; font-weight: 400;
  overflow-x: clip; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
::selection { background: var(--coral); color: var(--cream); }

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding-inline: var(--pad); }

/* ---------- Living aurora canvas ---------- */
/* low-res canvas (set in JS) upscaled by the browser = smooth, cheap softness — no per-frame blur filter */
#aurora { position: fixed; inset: 0; z-index: 0; width: 100vw; height: 100vh; opacity: .92; pointer-events: none; }
.grain { position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
main, .nav, .footer { position: relative; z-index: 2; }

/* ---------- Scroll progress ---------- */
.progress { position: fixed; top: 0; inset-inline-start: 0; height: 3px; width: 100%; transform: scaleX(0); transform-origin: left; background: var(--coral); z-index: 300; }
html[dir="rtl"] .progress { transform-origin: right; }

/* ===================================================================
   NAV
   =================================================================== */
.nav { position: fixed; top: 0; inset-inline: 0; z-index: 200; transition: background .4s var(--ease), border-color .4s, padding .35s; padding-block: 6px; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(255,243,230,.78); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid rgba(42,24,16,.1); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 24px; }
.brand { font-family: var(--font-display); font-weight: 600; font-size: 27px; letter-spacing: -.01em; display: inline-flex; align-items: center; gap: 9px; }
.brand-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--coral); transition: transform .4s var(--spring); }
.brand:hover .brand-dot { transform: scale(1.5); }

.nav-links { display: flex; gap: 32px; }
.nav-links a { font-weight: 500; font-size: 16px; position: relative; padding: 4px 0; }
.nav-links a::after { content: ""; position: absolute; bottom: -1px; inset-inline-start: 0; width: 0; height: 2px; background: var(--coral); border-radius: 2px; transition: width .35s var(--ease); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 13px; }
.lang { width: 42px; height: 38px; border: 1.5px solid var(--ink); border-radius: 50px; font-weight: 700; font-size: 13px; transition: background .25s, color .25s, transform .3s var(--spring); }
.lang:hover { background: var(--ink); color: var(--cream); transform: rotate(-6deg); }
.burger { display: none; flex-direction: column; gap: 6px; width: 42px; height: 38px; align-items: center; justify-content: center; }
.burger span { width: 24px; height: 2.2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--spring), opacity .25s; }
.burger.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.burger.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Pills / buttons ---------- */
.pill { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 30px; background: var(--coral); color: var(--cream); border-radius: 50px; font-weight: 700; font-size: 16.5px; box-shadow: var(--shadow-warm); transition: transform .4s var(--spring), background .3s, box-shadow .3s; will-change: transform; }
.pill:hover { transform: translateY(-3px) scale(1.03); background: var(--coral-d); }
.pill:active { transform: translateY(-1px) scale(.98); }
.pill-sm { padding: 11px 22px; font-size: 15px; box-shadow: none; }
.pill-block { width: 100%; }
.pill-ghost { background: transparent; color: var(--coral); box-shadow: inset 0 0 0 2px var(--coral); }
.pill-ghost:hover { background: var(--coral); color: var(--cream); box-shadow: var(--shadow-warm); }
.pill-arrow { transition: transform .4s var(--spring); }
.pill:hover .pill-arrow { transform: translateX(5px); }
html[dir="rtl"] .pill-arrow { transform: scaleX(-1); }
html[dir="rtl"] .pill:hover .pill-arrow { transform: scaleX(-1) translateX(5px); }

.link-underline { font-weight: 600; position: relative; padding-bottom: 3px; }
.link-underline::after { content: ""; position: absolute; bottom: 0; inset-inline-start: 0; width: 100%; height: 2px; background: var(--ink); transform: scaleX(0); transform-origin: var(--uo, left); transition: transform .4s var(--ease); }
html[dir="rtl"] .link-underline::after { --uo: right; }
.link-underline:hover::after { transform: scaleX(1); }

/* ===================================================================
   HERO
   =================================================================== */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding-top: 120px; padding-bottom: 80px; position: relative; }
.eyebrow { display: inline-block; font-weight: 600; font-size: 15px; color: var(--coral-d); margin-bottom: clamp(20px, 3vw, 34px); padding: 7px 16px; background: rgba(255,90,60,.1); border-radius: 50px; }

.hero-h { font-family: var(--font-display); font-weight: 600; font-size: clamp(54px, 13vw, 184px); line-height: .92; letter-spacing: -.035em; }
.hero-h .word { display: inline-block; opacity: 0; transform: translateY(80px) rotate(4deg); }
.hero-h .word.in { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform 1s var(--spring); }
.hero-h .accent { color: var(--coral); font-style: italic; font-weight: 500; position: relative; }
.squiggle { position: absolute; left: -2%; bottom: -.12em; width: 104%; height: .4em; color: var(--tangerine); overflow: visible; }
.squiggle path { stroke-dasharray: 600; stroke-dashoffset: 600; }
.squiggle.draw path { animation: draw 1s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero-foot { display: flex; justify-content: space-between; align-items: flex-end; gap: 48px; margin-top: clamp(36px, 5vw, 66px); flex-wrap: wrap; }
.hero-lede { max-width: 50ch; font-size: clamp(17px, 1.5vw, 21px); color: var(--ink-2); line-height: 1.5; }
.hero-cta { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.scrolldown { position: absolute; bottom: 30px; inset-inline-end: var(--pad); display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); }
.scrolldown-line { width: 1.5px; height: 46px; background: linear-gradient(var(--coral), transparent); position: relative; overflow: hidden; }
.scrolldown-line::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 40%; background: var(--coral); animation: drop 1.8s var(--ease) infinite; }
@keyframes drop { 0% { transform: translateY(-100%); } 60%,100% { transform: translateY(260%); } }

/* ===================================================================
   MARQUEE
   =================================================================== */
.marquee { background: var(--coral); color: var(--cream); overflow: hidden; transform: rotate(-1.6deg) scale(1.04); margin-block: clamp(30px, 6vw, 70px); box-shadow: var(--shadow-warm); }
.marquee-track { display: flex; align-items: center; gap: 30px; white-space: nowrap; width: max-content; padding: 18px 0; animation: slide 24s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(24px, 3.4vw, 44px); }
.marquee-track b { font-size: 20px; opacity: .7; }
@keyframes slide { to { transform: translateX(-50%); } }
html[dir="rtl"] .marquee-track { animation-direction: reverse; }

/* ===================================================================
   SECTIONS
   =================================================================== */
.section { padding-block: clamp(80px, 12vw, 150px); position: relative; }
.tag { display: inline-block; font-weight: 600; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--coral-d); margin-bottom: 18px; }
.sec-head { max-width: 720px; margin-bottom: clamp(48px, 7vw, 84px); }
.sec-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(38px, 6.5vw, 92px); line-height: .96; letter-spacing: -.03em; }
.sec-sub { font-size: clamp(17px, 1.6vw, 21px); color: var(--ink-2); margin-top: 20px; max-width: 48ch; }

/* opaque sections sit over the aurora */
.manifesto, .work, .pricing { background: var(--cream); }
.services, .process { background: var(--cream-2); }

/* ---- Manifesto ---- */
.manifesto { text-align: center; }
.manifesto-h { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 4.6vw, 64px); line-height: 1.15; letter-spacing: -.02em; max-width: 18ch; margin: 0 auto; }
.manifesto-h .mw { display: inline; }
.manifesto-h .soft { color: var(--ink-3); }
.manifesto-h em { color: var(--coral); font-style: italic; }

/* ===================================================================
   WORK — cinematic scenes
   =================================================================== */
.scene { display: block; padding-block: clamp(40px, 6vw, 80px); border-top: 1px solid rgba(42,24,16,.12); }
.scene:last-child { border-bottom: 1px solid rgba(42,24,16,.12); }
.scene-inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.scene-flip .scene-text { order: 2; }
.scene-text { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.scene-idx { font-family: var(--font-display); font-size: 18px; color: var(--coral); font-style: italic; }
.scene-name { font-family: var(--font-display); font-weight: 600; font-size: clamp(40px, 6.5vw, 96px); line-height: .92; letter-spacing: -.03em; transition: transform .5s var(--spring); }
.scene:hover .scene-name { transform: translateX(8px); }
html[dir="rtl"] .scene:hover .scene-name { transform: translateX(-8px); }
.scene-cat { font-size: clamp(16px, 1.5vw, 20px); color: var(--ink-2); max-width: 36ch; }
.scene-go { font-weight: 700; color: var(--coral-d); margin-top: 6px; transition: letter-spacing .4s var(--ease); }
.scene:hover .scene-go { letter-spacing: .03em; }

.scene-visual { perspective: 1100px; }
.browser { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); background: var(--ink); transform-style: preserve-3d; transition: transform .5s var(--spring); will-change: transform; }
.browser-bar { display: flex; gap: 7px; padding: 13px 16px; background: rgba(255,243,230,.12); }
.browser-bar i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,243,230,.4); }
.browser-bar i:first-child { background: var(--coral); }
.browser-screen { aspect-ratio: 16/10.5; display: grid; place-content: center; place-items: center; gap: 8px; text-align: center; }
.screen-a { background: radial-gradient(120% 120% at 20% 10%, var(--tangerine), var(--coral) 45%, var(--berry)); }
.screen-b { background: radial-gradient(120% 120% at 80% 10%, var(--sun), var(--rose) 50%, var(--coral)); }
.screen-empty { background: repeating-linear-gradient(45deg, var(--cream-2), var(--cream-2) 14px, var(--cream-3) 14px, var(--cream-3) 28px); }
.screen-word { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 4vw, 54px); color: var(--cream); letter-spacing: -.02em; }
.screen-word em { font-style: italic; font-weight: 500; }
.screen-sub { font-weight: 700; font-size: 13px; letter-spacing: .25em; color: rgba(255,243,230,.85); }
.plus { font-family: var(--font-display); font-size: 70px; color: var(--coral); font-weight: 400; }
.scene-open .scene-name { color: var(--coral); }

/* ===================================================================
   SERVICES
   =================================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card { background: var(--cream); border: 1px solid rgba(42,24,16,.08); border-radius: 22px; padding: 34px 30px; transition: transform .5s var(--spring), box-shadow .5s var(--ease), background .3s; }
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.svc-ico { width: 48px; height: 48px; color: var(--coral); margin-bottom: 22px; }
.svc-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 25px; letter-spacing: -.01em; margin-bottom: 10px; }
.svc-card p { color: var(--ink-2); font-size: 16px; }
.svc-cta { background: var(--ink); color: var(--cream); display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.svc-cta h3 { color: var(--cream); }
.svc-cta p { color: rgba(255,243,230,.75); font-family: var(--font-display); font-style: italic; font-size: 21px; }
.svc-cta .link-underline { color: var(--coral); margin-top: 6px; }
.svc-cta .link-underline::after { background: var(--coral); }

/* ===================================================================
   PRICING
   =================================================================== */
.pricing .sec-head { max-width: 640px; }
.price-cards { display: grid; grid-template-columns: 1fr 1.1fr; gap: 22px; max-width: 940px; }
.pcard { background: var(--cream); border: 1px solid rgba(42,24,16,.1); border-radius: 28px; padding: clamp(30px, 3.5vw, 46px); transition: transform .5s var(--spring), box-shadow .5s; }
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pcard-hero { background: var(--ink); color: var(--cream); box-shadow: var(--shadow); }
.pcard-kick { font-weight: 700; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--coral); }
.pcard-price { display: flex; align-items: flex-start; gap: 4px; margin: 18px 0 26px; }
.pc-cur { font-family: var(--font-display); font-size: clamp(26px, 2.6vw, 34px); font-weight: 600; margin-top: 12px; }
.pc-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(64px, 9vw, 116px); line-height: .82; letter-spacing: -.03em; }
.pc-per { align-self: flex-end; margin-bottom: 12px; margin-inline-start: 6px; font-weight: 600; color: var(--ink-3); }
.pcard-hero .pc-per { color: rgba(255,243,230,.6); }

.pcard-list { display: flex; flex-direction: column; gap: 13px; }
.pcard-list li { position: relative; padding-inline-start: 30px; font-size: 16.5px; }
.pcard-list li::before { content: ""; position: absolute; inset-inline-start: 0; top: 7px; width: 16px; height: 16px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(255,90,60,.18); }
.pcard-note { margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(42,24,16,.1); font-size: 15.5px; line-height: 1.55; color: var(--ink-2); }
.pcard-note + .pill { margin-top: 18px; }

.tiers { position: relative; display: flex; background: rgba(255,243,230,.1); border: 1px solid rgba(255,243,230,.2); border-radius: 50px; padding: 5px; margin-bottom: 18px; }
.tier-glide { position: absolute; top: 5px; bottom: 5px; width: calc((100% - 10px) / 3); inset-inline-start: 5px; background: var(--coral); border-radius: 50px; transition: transform .5s var(--spring); z-index: 0; }
.tier { position: relative; z-index: 1; flex: 1; padding: 11px 6px; font-weight: 700; font-size: 14.5px; color: rgba(255,243,230,.7); border-radius: 50px; transition: color .3s; }
.tier.active { color: var(--cream); }
.tier-note { font-size: 16px; color: rgba(255,243,230,.78); margin-bottom: 26px; min-height: 70px; }
.price-foot { margin-top: 30px; color: var(--ink-2); font-family: var(--font-display); font-style: italic; font-size: clamp(18px, 2vw, 24px); }

/* ===================================================================
   PROCESS
   =================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps-path { position: absolute; top: 36px; left: 0; width: 100%; height: 40px; color: var(--coral); opacity: .5; z-index: 0; }
.step { position: relative; z-index: 1; }
.step-n { display: inline-grid; place-items: center; width: 66px; height: 66px; border-radius: 50%; background: var(--cream); border: 2px solid var(--coral); color: var(--coral); font-family: var(--font-display); font-weight: 700; font-size: 24px; margin-bottom: 22px; transition: transform .5s var(--spring), background .3s, color .3s; }
.step:hover .step-n { transform: scale(1.1) rotate(-8deg); background: var(--coral); color: var(--cream); }
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(22px, 2.4vw, 30px); margin-bottom: 8px; letter-spacing: -.01em; }
.step p { color: var(--ink-2); font-size: 16px; max-width: 24ch; }

/* ===================================================================
   CONTACT  (warm finale, espresso)
   =================================================================== */
.contact { background: var(--espresso); color: var(--cream); overflow: hidden; }
.contact::before { content: ""; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(255,90,60,.5), transparent 70%); top: -200px; inset-inline-end: -150px; filter: blur(40px); z-index: 0; }
.contact .shell { position: relative; z-index: 1; }
.tag-light { color: var(--coral); }
.contact-h { font-family: var(--font-display); font-weight: 600; font-size: clamp(42px, 8.5vw, 124px); line-height: .94; letter-spacing: -.03em; margin: 14px 0 clamp(50px, 7vw, 88px); }
.contact-h span { display: block; }
.contact-h em { display: block; color: var(--coral); font-style: italic; font-weight: 500; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); }
.contact-links { display: flex; flex-direction: column; border-top: 1px solid rgba(255,243,230,.18); }
.clink { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding-block: clamp(16px, 2vw, 24px); border-bottom: 1px solid rgba(255,243,230,.18); transition: padding-inline .4s var(--spring), color .3s; }
.clink:hover { padding-inline: 16px; color: var(--coral); }
.clink-l { color: rgba(255,243,230,.55); font-weight: 600; }
.clink:hover .clink-l { color: var(--coral); }
.clink-v { font-family: var(--font-display); font-weight: 600; font-size: clamp(21px, 2.4vw, 32px); }

.cform { display: flex; flex-direction: column; gap: 22px; }
.cfield { display: flex; flex-direction: column; gap: 8px; }
.cfield label { font-family: var(--font-display); font-style: italic; font-size: 19px; color: rgba(255,243,230,.85); }
.cfield input, .cfield select, .cfield textarea { background: transparent; border: none; border-bottom: 1.5px solid rgba(255,243,230,.28); color: var(--cream); font-family: var(--font-body); font-size: 18px; font-weight: 500; padding: 10px 0; transition: border-color .3s; }
.cfield input::placeholder, .cfield textarea::placeholder { color: rgba(255,243,230,.35); }
.cfield input:focus, .cfield select:focus, .cfield textarea:focus { outline: none; border-bottom-color: var(--coral); }
.cfield select option { background: var(--espresso); color: var(--cream); }
.cfield textarea { resize: vertical; }
.cform .pill { margin-top: 8px; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: var(--espresso); color: var(--cream); padding-block: 32px; border-top: 1px solid rgba(255,243,230,.14); }
.footer-inner { display: flex; flex-direction: column; gap: 18px; }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-row-bottom { border-top: 1px solid rgba(255,243,230,.14); padding-top: 18px; }
.footer-mark { font-family: var(--font-display); font-weight: 600; font-size: 26px; display: inline-flex; align-items: center; gap: 8px; }
.footer-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); }
.footer-links { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.footer-links a { color: rgba(255,243,230,.72); font-weight: 500; transition: color .25s; }
.footer-links a:hover { color: var(--coral); }
.footer-c { color: rgba(255,243,230,.6); font-size: 15px; }
.footer-made { font-family: var(--font-display); font-style: italic; }
.footer .link-underline::after { background: var(--coral); }

/* ===================================================================
   LEGAL PAGES (terms.html / privacy.html)
   =================================================================== */
.legal-body { background: var(--cream); }
.legal-nav { border-bottom: 1px solid rgba(42,24,16,.1); position: sticky; top: 0; background: rgba(255,243,230,.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); z-index: 50; }
.legal-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 18px; }
.legal-nav-right { display: flex; align-items: center; gap: 18px; }
.legal { padding-block: clamp(48px, 7vw, 90px) clamp(60px, 9vw, 120px); }
.legal .shell { max-width: 820px; }
.legal-kick { display: inline-block; font-weight: 600; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--coral-d); margin-bottom: 14px; }
.legal-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(40px, 7vw, 76px); line-height: 1; letter-spacing: -.03em; margin-bottom: 12px; }
.legal-updated { color: var(--ink-3); font-weight: 500; margin-bottom: 26px; }
.legal-note { background: var(--cream-2); border: 1px solid rgba(42,24,16,.1); border-inline-start: 4px solid var(--coral); border-radius: 14px; padding: 18px 22px; color: var(--ink-2); font-size: 15.5px; line-height: 1.55; margin-bottom: 46px; }
.legal-sec { margin-bottom: 34px; }
.legal-sec h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(22px, 3vw, 30px); letter-spacing: -.01em; margin-bottom: 12px; }
.legal-sec p, .legal-sec li { color: var(--ink-2); font-size: 16.5px; line-height: 1.62; }
.legal-sec p + p { margin-top: 12px; }
.legal-sec ul { margin: 12px 0 0; padding-inline-start: 24px; list-style: disc; display: flex; flex-direction: column; gap: 9px; }
.legal-sec strong { color: var(--ink); font-weight: 700; }
.legal-sec a { color: var(--coral-d); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Floating WhatsApp ---------- */
.fab { position: fixed; bottom: 22px; inset-inline-end: 22px; z-index: 150; width: 56px; height: 56px; display: grid; place-items: center; background: var(--coral); color: var(--cream); border-radius: 50%; box-shadow: var(--shadow-warm); transition: transform .4s var(--spring), background .3s; }
.fab:hover { transform: scale(1.12) rotate(8deg); background: var(--coral-d); }

/* ---------- First-visit language offer ---------- */
.lang-prompt {
  position: fixed; bottom: 22px; inset-inline-start: 22px; z-index: 250;
  display: flex; align-items: center; gap: 13px;
  max-width: min(92vw, 430px);
  padding: 12px 14px 12px 18px;
  background: var(--cream);
  border: 1px solid rgba(42,24,16,.14);
  border-radius: 18px;
  box-shadow: var(--shadow-warm);
  opacity: 0; transform: translateY(16px);
  transition: opacity .45s var(--ease), transform .55s var(--spring);
}
.lang-prompt.show { opacity: 1; transform: translateY(0); }
.lang-prompt-txt { font-size: 14.5px; line-height: 1.4; color: var(--ink); }
.lang-prompt-txt b { font-weight: 600; color: var(--coral); }
.lang-prompt-btn {
  flex: none; border: 0; cursor: pointer; font-family: inherit;
  padding: 9px 17px; border-radius: 50px;
  background: var(--coral); color: var(--cream);
  font-weight: 700; font-size: 13.5px; white-space: nowrap;
  transition: transform .3s var(--spring), background .3s;
}
.lang-prompt-btn:hover { background: var(--coral-d); transform: translateY(-1px); }
.lang-prompt-x {
  flex: none; border: 0; cursor: pointer; font-family: inherit;
  width: 30px; height: 30px; border-radius: 50%;
  background: none; color: var(--ink-2); font-size: 20px; line-height: 1;
  transition: background .25s, color .25s;
}
.lang-prompt-x:hover { background: rgba(42,24,16,.08); color: var(--ink); }
@media (max-width: 480px) {
  .lang-prompt { inset-inline: 14px; bottom: 90px; max-width: none; gap: 10px; padding: 12px 12px 12px 16px; }
  .lang-prompt-txt { font-size: 13.5px; }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease), transform 1s var(--spring); }
.reveal.in { opacity: 1; transform: none; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 900px) {
  .scene-inner { grid-template-columns: 1fr; gap: 26px; }
  .scene-flip .scene-text { order: 0; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .price-cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .steps-path { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  :root { --pad: 22px; }
  .nav-links { position: fixed; inset: 0; height: 100dvh; flex-direction: column; justify-content: center; align-items: flex-start; gap: 6px; padding-inline: var(--pad); background: var(--cream); transform: translateX(-100%); transition: transform .5s var(--spring); z-index: 190; }
  html[dir="rtl"] .nav-links { transform: translateX(100%); }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-family: var(--font-display); font-size: 44px; font-weight: 600; }
  .burger { display: flex; }
  .nav-right .pill-sm { display: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-foot { flex-direction: column; align-items: flex-start; }
  .scrolldown { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .hero-h .word { opacity: 1 !important; transform: none !important; }
  #aurora { animation: none; }
  .marquee { transform: rotate(-1.6deg); }
}
