/*
Theme Name: Angel Ash Wings
Theme URI: https://angelashwings.com
Author: Mary Ellen Ionetz
Author URI: https://angelashwings.com
Description: A bespoke memorial-atelier theme for Angel Ash Wings — angel wings hand-painted with a loved one's cremation ashes. Elementor-ready: import the included homepage template and edit every text block visually in Elementor. Calm, upscale one-page design with a consultation form that emails you directly via Web3Forms (hCaptcha built in, no SMTP setup).
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: angel-ash-wings
*/

/* ============================================================
   ANGEL ASH WINGS — shared stylesheet
   Upscale-atelier / med-spa direction. Near-white cool ground,
   matte brushed-brass gold, Didone display + humanist sans.
   Used by version-1 / version-2 / version-3.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500;600;700&display=swap');

:root {
  /* grounds — near-white with a faint cool-blue cast */
  --bg:          #F4F7FC;
  --bg-warm:     #EAF0F8;
  --bg-cool:     #E4EBF4;
  --paper:       #FBFCFF;
  --surface:     #FFFFFF;

  /* ink — soft cool charcoal */
  --ink:         #373A44;
  --ink-soft:    #5F626E;
  --muted:       #979AA6;

  /* accents — matte brushed-brass */
  --gold:        #B29B6C;
  --gold-deep:   #857249;
  --gold-soft:   #E7E1D2;
  --gold-wash:   #ECF1F9;
  --blush:       #C79AA0;
  --blush-soft:  #EEE7EA;
  --sage-soft:   #E6ECF2;

  --line:        rgba(55, 58, 72, 0.11);
  --line-soft:   rgba(55, 58, 72, 0.06);
  --shadow:      0 30px 70px -40px rgba(45, 55, 80, 0.28);
  --shadow-sm:   0 18px 44px -28px rgba(45, 55, 80, 0.24);
  --shadow-xs:   0 8px 24px -16px rgba(45, 55, 80, 0.20);

  --serif: "Didot", "Bodoni 72", "Hoefler Text", "Playfair Display", "Times New Roman", serif;
  --sans:  "Avenir Next", "Avenir", "Century Gothic", "Futura", "Segoe UI", system-ui, sans-serif;
  --script: "Dancing Script", "Snell Roundhand", "Segoe Script", "Brush Script MT", cursive;

  --measure: 60ch;
  --r: 14px;
  --r-lg: 22px;
  --nav-h: 74px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink-soft);
  font-family: var(--sans); font-size: 17px; line-height: 1.75; font-weight: 400;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
h1, h2, h3, .serif { font-family: var(--serif); font-weight: 400; color: var(--ink); }
h1, h2, h3 { letter-spacing: 0.005em; }
::selection { background: var(--gold-soft); color: var(--ink); }
a { color: inherit; }
img, svg, video { max-width: 100%; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

/* primitives */
.wrap   { width: min(90%, 1160px); margin-inline: auto; }
.narrow { width: min(90%, 780px);  margin-inline: auto; }
.band   { padding-block: clamp(5rem, 11vw, 9rem); position: relative; }
section { scroll-margin-top: calc(var(--nav-h) + 8px); }

.eyebrow {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.28em;
  font-size: 0.68rem; font-weight: 600; color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 0.85em; margin: 0 0 1.4rem;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold); opacity: 0.7; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 30px; height: 1px; background: var(--gold); opacity: 0.7; }

.section-head { max-width: 40ch; }
.section-head.center { max-width: 46ch; margin-inline: auto; text-align: center; }
h2.title { font-size: clamp(2rem, 4.6vw, 3.3rem); line-height: 1.1; margin: 0 0 1.2rem; text-wrap: balance; }
.lede { font-size: 1.14rem; color: var(--ink-soft); max-width: var(--measure); line-height: 1.7; }
.section-head.center .lede { margin-inline: auto; }
.ital { font-style: italic; }
.gold { color: var(--gold-deep); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em; font-family: var(--sans);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1.05em 1.9em; border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: transform .22s ease, background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn-primary { background: var(--gold); color: #2c2818; box-shadow: 0 10px 24px -16px rgba(45,55,80,0.28); }
.btn-primary:hover { background: #A68C5A; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }
.btn-soft { background: var(--surface); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-xs); }
.btn-soft:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,0.9); color: #2c2818; }
.btn-line-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.65); }
.btn-line-light:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }

/* header */
header.site {
  position: sticky; top: 0; z-index: 60; height: var(--nav-h); display: flex; align-items: center;
  background: color-mix(in srgb, var(--bg) 80%, transparent); backdrop-filter: saturate(1.1) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s ease, background .3s ease;
}
header.site.scrolled { border-bottom-color: var(--line); background: color-mix(in srgb, var(--bg) 92%, transparent); }
/* header over a dark hero (cinematic) starts transparent + light text */
body.hero-dark header.site:not(.scrolled) { background: transparent; }
body.hero-dark header.site:not(.scrolled) .brand,
body.hero-dark header.site:not(.scrolled) .nav-links a { color: #fff; }
body.hero-dark header.site:not(.scrolled) .brand .mark { color: #fff; }
body.hero-dark header.site:not(.scrolled) .menu-toggle { color:#fff; border-color: rgba(255,255,255,0.5); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: 100%; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--ink); }
.brand .mark { width: auto; height: 46px; object-fit: contain; flex: none; filter: drop-shadow(0 1px 1.5px rgba(0,0,0,0.16)); animation: markFloat 5.5s ease-in-out infinite, markGlow 4.2s ease-in-out infinite; will-change: transform, filter; }
@keyframes markFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-2.5px); } }
@keyframes markGlow { 0%,100% { filter: drop-shadow(0 1px 1.5px rgba(0,0,0,0.16)); } 50% { filter: drop-shadow(0 1px 1.5px rgba(0,0,0,0.16)) drop-shadow(0 0 7px rgba(206,168,104,0.55)); } }
@media (prefers-reduced-motion: reduce) { .brand .mark { animation: none; } }
.brand .name { font-family: var(--script); font-weight: 700; font-size: 1.78rem; letter-spacing: 0; white-space: nowrap; line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--ink-soft); font-family: var(--script); font-size: 1.18rem; font-weight: 600; letter-spacing: 0; text-transform: none; transition: color .2s ease; }
.nav-links a:hover { color: var(--gold-deep); }
.nav-actions { display: flex; align-items: center; gap: 0.8rem; }
.nav .btn { padding: 0.8em 1.5em; }
.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--line); background: transparent; color: var(--ink); cursor: pointer; place-items: center; }
.menu-toggle svg { width: 20px; height: 20px; }

/* ---------- HERO: cinematic full-bleed carousel (v1) ---------- */
.hero-cine { position: relative; height: 100svh; min-height: 620px; overflow: hidden; background:#11131a; }
.hero-cine .slides { position: absolute; inset: 0; }
.hero-cine .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.hero-cine .slide.active { opacity: 1; }
.hero-cine .slide video, .hero-cine .slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-cine .scrim { position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(15,17,24,0.42) 0%, rgba(15,17,24,0.18) 34%, rgba(15,17,24,0.22) 60%, rgba(15,17,24,0.72) 100%); }
.hero-cine .content { position: absolute; z-index: 3; inset: auto 0 0 0; padding: 0 0 clamp(3.5rem,7vw,6rem); text-align: center; color:#fff; }
.hero-cine .eyebrow { color:#e7dcc4; justify-content:center; }
.hero-cine .eyebrow::before, .hero-cine .eyebrow::after { background:#cbb98f; }
.hero-cine h1 { color:#fff; font-size: clamp(2.8rem, 7vw, 5.4rem); line-height: 1.03; margin:.3rem auto .5rem; max-width: 16ch; text-wrap: balance; }
.hero-cine h1 .ital { color:#eBD9B4; }
.hero-cine p.tag { color: rgba(255,255,255,0.9); max-width: 42ch; margin: 0 auto 2rem; font-size: clamp(1.05rem,2vw,1.3rem); }
.hero-cine .cta-row { display:flex; gap:.8rem; justify-content:center; flex-wrap:wrap; }
.hero-cine .dots { position:absolute; z-index:4; left:0; right:0; bottom:1.5rem; display:flex; gap:.6rem; justify-content:center; }
.hero-cine .dots button { width:9px; height:9px; border-radius:999px; border:0; background:rgba(255,255,255,0.4); cursor:pointer; padding:0; transition:background .3s, transform .3s; }
.hero-cine .dots button.on { background:#fff; transform:scale(1.25); }
.hero-cine .arrow { position:absolute; z-index:4; top:50%; transform:translateY(-50%); width:48px; height:48px; border-radius:999px; border:1px solid rgba(255,255,255,0.4); background:rgba(20,22,30,0.28); color:#fff; cursor:pointer; display:grid; place-items:center; transition:background .2s, border-color .2s; }
.hero-cine .arrow:hover { background:rgba(20,22,30,0.55); border-color:#fff; }
.hero-cine .arrow.prev { left:1.4rem; } .hero-cine .arrow.next { right:1.4rem; }
.hero-cine .arrow svg { width:20px; height:20px; }

/* ---------- HERO: split editorial (v2) ---------- */
.hero-split { position: relative; }
.hero-split .grid { display:grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem,5vw,4.5rem); align-items:center;
  padding-block: clamp(3.5rem,7vw,6rem) clamp(3.5rem,7vw,5rem); min-height: calc(100svh - var(--nav-h)); }
.hero-split .copy h1 { font-size: clamp(2.8rem, 5.4vw, 4.6rem); line-height: 1.04; margin:.4rem 0 .3rem; text-wrap: balance; }
.hero-split .copy h1 .ital { color: var(--gold-deep); }
.hero-split .copy p.tag { font-size: clamp(1.08rem,1.7vw,1.3rem); color: var(--ink-soft); max-width: 42ch; margin: 1.1rem 0 2rem; }
.hero-split .cta-row { display:flex; gap:.8rem; flex-wrap:wrap; }
.hero-split .filmframe { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); border:1px solid var(--line); aspect-ratio: 4/5; background:#11131a; }
.hero-split .filmframe video, .hero-split .filmframe img { width:100%; height:100%; object-fit: cover; }
.hero-split .filmframe .badge { position:absolute; left:14px; bottom:14px; z-index:2; display:flex; align-items:center; gap:.5em;
  background: rgba(20,22,30,0.5); color:#fff; font-size:.66rem; letter-spacing:.14em; text-transform:uppercase; padding:.5em .9em; border-radius:999px; backdrop-filter: blur(4px); }
.hero-split .filmframe .badge .live { width:7px; height:7px; border-radius:999px; background:#e7c98a; box-shadow:0 0 0 0 rgba(231,201,138,.7); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(231,201,138,.6);} 70%{box-shadow:0 0 0 8px rgba(231,201,138,0);} 100%{box-shadow:0 0 0 0 rgba(231,201,138,0);} }
.hero-split .thumbs { display:flex; gap:.7rem; margin-top:1rem; }
.hero-split .thumbs button { flex:1; border:1px solid var(--line); border-radius:10px; overflow:hidden; cursor:pointer; padding:0; background:#0b0c10; aspect-ratio: 3/4; transition: border-color .2s, transform .2s; }
.hero-split .thumbs button:hover { transform: translateY(-2px); }
.hero-split .thumbs button.on { border-color: var(--gold); }
.hero-split .thumbs img { width:100%; height:100%; object-fit: cover; display:block; }

/* ---------- HERO: reel wall (v3) ---------- */
.hero-reel { position: relative; }
.hero-reel .head { text-align:center; padding-block: clamp(3rem,6vw,5rem) 2rem; }
.hero-reel .head h1 { font-size: clamp(2.6rem, 6vw, 5rem); line-height:1.04; margin:.3rem auto .4rem; max-width: 16ch; text-wrap:balance; }
.hero-reel .head h1 .ital { color: var(--gold-deep); }
.hero-reel .head p.tag { font-size: clamp(1.05rem,2vw,1.28rem); color: var(--ink-soft); max-width: 44ch; margin:1rem auto 1.8rem; }
.hero-reel .head .cta-row { display:flex; gap:.8rem; justify-content:center; flex-wrap:wrap; }
.reel-rail { display:flex; gap:1.1rem; overflow-x:auto; padding: .5rem clamp(1rem,5vw,3rem) 2.5rem; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; scrollbar-width:none; }
.reel-rail::-webkit-scrollbar { display:none; }
.reel-card { position:relative; flex:0 0 auto; width: 280px; aspect-ratio: 9/16; border-radius: var(--r-lg); overflow:hidden;
  box-shadow: var(--shadow-sm); scroll-snap-align:center; background:#0b0c10; border:1px solid var(--line); }
.reel-card video, .reel-card img { width:100%; height:100%; object-fit:cover; }
.reel-card .cap { position:absolute; inset:auto 0 0 0; z-index:2; padding:1.4rem 1rem .95rem; color:#fff;
  background:linear-gradient(to top, rgba(20,20,26,0.72), transparent); }
.reel-card .cap .t { font-family:var(--serif); font-style:italic; font-size:1.05rem; }
.reel-card .cap .m { font-size:.62rem; letter-spacing:.14em; text-transform:uppercase; opacity:.85; margin-top:.15rem; font-weight:600; }

/* ---------- trust strip ---------- */
.trust-strip { background: var(--paper); border-block: 1px solid var(--line); }
.trust-row { display:flex; flex-wrap:wrap; justify-content:center; gap:1rem 3rem; padding-block:1.5rem; text-align:center; }
.trust-row .item { display:inline-flex; align-items:center; gap:.6em; font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; color:var(--ink-soft); font-weight:500; }
.trust-row .item svg { width:16px; height:16px; color:var(--gold); flex:none; }

/* ---------- making-of section ---------- */
.making { background: var(--bg-warm); }
.making .grid { display:grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem,5vw,4.5rem); align-items:center; }
.making .filmframe { position:relative; border-radius: var(--r-lg); overflow:hidden; box-shadow:var(--shadow); border:1px solid var(--line); aspect-ratio: 4/5; background:#0b0c10; }
.making .filmframe video, .making .filmframe img { width:100%; height:100%; object-fit:cover; }
.making .filmframe .play { position:absolute; inset:0; display:grid; place-items:center; z-index:2; }
.making .filmframe .play span { width:74px; height:74px; border-radius:999px; background:rgba(255,255,255,0.22); backdrop-filter:blur(4px); display:grid; place-items:center; border:1px solid rgba(255,255,255,0.6); transition:transform .2s, background .2s; }
.making .filmframe:hover .play span { transform:scale(1.06); background:rgba(255,255,255,0.32); }
.making .filmframe .play svg { width:26px; height:26px; color:#fff; margin-left:3px; }
.making p { max-width: var(--measure); }
.making .stat-row { display:flex; gap:2.4rem; margin-top:2rem; flex-wrap:wrap; }
.making .stat .n { font-family:var(--serif); font-size:2rem; color:var(--ink); line-height:1; }
.making .stat .l { font-size:.68rem; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); margin-top:.35rem; font-weight:600; }

/* ---------- story ---------- */
.story-grid { display:grid; grid-template-columns:0.9fr 1.1fr; gap:clamp(2.5rem,6vw,5rem); align-items:start; }
.story-grid .portrait { position: sticky; top: calc(var(--nav-h) + 24px); }
.portrait { position:relative; aspect-ratio:4/5; border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow); border:1px solid var(--line); background:#0b0c10; display:grid; place-items:center; }
.portrait video, .portrait img { width:100%; height:100%; object-fit:cover; }
.portrait .ph-label { position:absolute; bottom:16px; left:16px; right:16px; text-align:center; font-size:.66rem; letter-spacing:.16em; text-transform:uppercase; color:#fff; background:rgba(20,22,30,0.5); padding:.55em .9em; border-radius:999px; backdrop-filter:blur(4px); }
blockquote.pull { font-family:var(--serif); font-size:clamp(1.4rem,2.8vw,1.9rem); line-height:1.38; color:var(--ink); font-style:italic; margin:1.9rem 0 0; padding-left:1.4rem; border-left:2px solid var(--gold); max-width:32ch; }
.story-grid p { max-width:var(--measure); }
.sig { font-family:var(--serif); font-style:italic; font-size:1.5rem; color:var(--ink); margin-top:1.6rem; }
.sig small { display:block; font-family:var(--sans); font-style:normal; font-size:.68rem; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); margin-top:.35rem; font-weight:600; }

/* ---------- experience ---------- */
.experience { background: var(--bg-cool); }
.steps { display:grid; grid-template-columns:repeat(5,1fr); gap:1.6rem; margin-top:3.5rem; }
.step { text-align:center; display:flex; flex-direction:column; align-items:center; gap:.6rem; }
.step .ring { width:60px; height:60px; border-radius:999px; border:1px solid var(--gold); display:grid; place-items:center; font-family:var(--serif); font-size:1.3rem; color:var(--gold-deep); background:var(--paper); box-shadow:var(--shadow-xs); font-style:italic; }
.step h3 { font-size:1.18rem; margin:.4rem 0 .2rem; }
.step p { font-size:.93rem; margin:0; max-width:22ch; }
.step .sym { width:76px; height:76px; object-fit:contain; margin-bottom:.4rem; filter:drop-shadow(0 2px 5px rgba(0,0,0,0.14)); }

/* ---------- gallery ---------- */
.gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.6rem; margin-top:3.5rem; }
.art { position:relative; border-radius:var(--r-lg); overflow:hidden; aspect-ratio:4/5; box-shadow:var(--shadow-sm); display:block; isolation:isolate; background:#0b0c10; transition:transform .35s ease, box-shadow .35s ease; }
.art:hover { transform:translateY(-6px); box-shadow:var(--shadow); }
.art video, .art img { width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.art:hover video, .art:hover img { transform:scale(1.05); }
.art .cap { position:absolute; inset:auto 0 0 0; z-index:2; padding:2rem 1.3rem 1.2rem; background:linear-gradient(to top, rgba(20,20,26,0.66), transparent); color:#fff; }
.art .cap .t { font-family:var(--serif); font-size:1.16rem; font-style:italic; }
.art .cap .m { font-size:.66rem; letter-spacing:.16em; text-transform:uppercase; opacity:.85; margin-top:.25rem; font-weight:600; }
.art-note { margin-top:1.8rem; font-size:.8rem; color:var(--muted); text-align:center; font-style:italic; }

/* ---------- commissions ---------- */
.commissions { background: var(--bg-warm); }
.tiers { display:grid; grid-template-columns:repeat(4,1fr); gap:1.4rem; margin-top:3.5rem; }
.tier { background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg); padding:2rem 1.6rem; display:flex; flex-direction:column; gap:.6rem; position:relative; box-shadow:var(--shadow-xs); transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.tier:hover { transform:translateY(-6px); box-shadow:var(--shadow-sm); border-color:var(--gold-soft); }
.tier.feature { border-color:var(--gold); }
.tier .flag { position:absolute; top:-12px; left:50%; transform:translateX(-50%); background:var(--gold); color:#2c2818; font-size:.6rem; letter-spacing:.18em; text-transform:uppercase; padding:.4em .9em; border-radius:999px; font-weight:600; white-space:nowrap; }
.tier .tname { font-family:var(--serif); font-size:1.5rem; font-style:italic; }
.tier .tsize { font-size:.68rem; letter-spacing:.14em; color:var(--muted); text-transform:uppercase; font-weight:600; }
.tier .tprice { font-family:var(--serif); font-size:2.1rem; color:var(--ink); margin-top:.5rem; line-height:1; }
.tier .tprice small { font-family:var(--sans); font-size:.64rem; letter-spacing:.12em; color:var(--muted); text-transform:uppercase; display:block; margin-top:.4rem; font-weight:600; }
.tier .tdesc { font-size:.9rem; margin:.4rem 0 0; }
.tier .btn { margin-top:auto; width:100%; justify-content:center; }
.tier hr { border:none; border-top:1px solid var(--line-soft); margin:.4rem 0; }
.pricing-note { text-align:center; margin-top:1.8rem; font-size:.8rem; color:var(--muted); font-style:italic; }

/* ---------- testimonials ---------- */
.kind { background: var(--sage-soft); }
.quotes { display:grid; grid-template-columns:repeat(3,1fr); gap:1.6rem; margin-top:3.5rem; }
.quote { background:var(--paper); border:1px solid var(--line); border-radius:var(--r-lg); padding:2.2rem 1.9rem; box-shadow:var(--shadow-xs); display:flex; flex-direction:column; gap:1rem; }
.quote .qmark { font-family:var(--serif); font-size:3rem; line-height:.6; color:var(--gold); height:1.4rem; }
.quote p { font-family:var(--serif); font-style:italic; font-size:1.12rem; line-height:1.5; color:var(--ink); margin:0; }
.quote .who { font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); font-weight:600; margin-top:auto; }
.stars { display:flex; gap:3px; color:var(--gold); }
.stars svg { width:15px; height:15px; }

/* ---------- faq ---------- */
.faq-list { margin-top:3rem; border-top:1px solid var(--line); }
details.qa { border-bottom:1px solid var(--line); }
details.qa summary { list-style:none; cursor:pointer; padding:1.5rem .2rem; display:flex; align-items:center; justify-content:space-between; gap:1rem; font-family:var(--serif); font-size:1.2rem; color:var(--ink); }
details.qa summary::-webkit-details-marker { display:none; }
details.qa summary .plus { color:var(--gold); flex:none; font-size:1.4rem; line-height:1; transition:transform .25s ease; }
details.qa[open] summary .plus { transform:rotate(45deg); }
details.qa .a { padding:0 .2rem 1.6rem; max-width:var(--measure); font-size:.98rem; }

/* ---------- consultation form ---------- */
.consult { background: var(--gold-wash); }
.form-card { background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg); padding:clamp(1.8rem,4vw,3.4rem); box-shadow:var(--shadow); margin-top:3rem; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.3rem 1.5rem; }
.field { display:flex; flex-direction:column; gap:.45rem; }
.field.full { grid-column:1 / -1; }
.field label { font-size:.68rem; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-soft); font-weight:600; }
.field label .opt { text-transform:none; letter-spacing:0; color:var(--muted); font-weight:400; }
.field label .req { color:var(--blush); }
.field input, .field select, .field textarea { font-family:var(--sans); font-size:1rem; color:var(--ink); background:var(--bg); border:1px solid var(--line); border-radius:10px; padding:.85em 1em; transition:border-color .2s ease, box-shadow .2s ease; }
.field textarea { resize:vertical; min-height:130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color:var(--gold); box-shadow:0 0 0 3px var(--gold-soft); background:var(--surface); }
.form-actions { display:flex; align-items:center; gap:1.2rem; margin-top:1.8rem; flex-wrap:wrap; }
.form-actions .note { font-size:.84rem; color:var(--muted); }
.thankyou { display:none; text-align:center; padding:1rem 0; }
.thankyou.show { display:block; }
.thankyou .tick { width:62px; height:62px; margin:0 auto 1.2rem; color:var(--gold); }
.thankyou h3 { font-size:1.7rem; margin:0 0 .7rem; }
.thankyou p { max-width:46ch; margin:0 auto 1.5rem; }
.recap { text-align:left; background:var(--bg); border:1px solid var(--line); border-radius:12px; padding:1.1rem 1.3rem; max-width:460px; margin:0 auto 1.5rem; font-size:.92rem; }
.recap b { color:var(--ink); font-weight:600; }
.captcha-field { align-items:flex-start; gap:.55rem; }
.captcha-field .h-captcha { min-height:78px; }
.cap-note { display:none; font-size:.82rem; color:var(--blush); }
.cap-note.show { display:block; }

/* ---------- footer ---------- */
footer.site { background:var(--paper); border-top:1px solid var(--line); padding-block:clamp(3.5rem,7vw,5rem) 2.2rem; }
.foot-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:2.5rem; }
.foot-brand .brand { margin-bottom:1.1rem; }
.foot-brand p { max-width:34ch; font-size:.95rem; }
.foot-col h4 { font-size:.68rem; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); margin:.2rem 0 1.1rem; font-weight:700; font-family:var(--sans); }
.foot-col a { display:block; text-decoration:none; color:var(--ink-soft); font-size:.95rem; margin-bottom:.7rem; transition:color .2s ease; }
.foot-col a:hover { color:var(--gold-deep); }
.foot-bottom { margin-top:3rem; padding-top:1.6rem; border-top:1px solid var(--line); display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap; font-size:.78rem; color:var(--muted); }
.foot-bottom .preview-tag { color:var(--gold-deep); letter-spacing:.03em; }

/* ---------- back to top ---------- */
#toTop { position:fixed; right:22px; bottom:22px; z-index:70; width:48px; height:48px; border-radius:999px; background:var(--surface); border:1px solid var(--line); color:var(--ink); cursor:pointer; display:grid; place-items:center; box-shadow:var(--shadow-sm); opacity:0; transform:translateY(12px); pointer-events:none; transition:opacity .3s ease, transform .3s ease, border-color .2s ease; }
#toTop.show { opacity:1; transform:none; pointer-events:auto; }
#toTop:hover { border-color:var(--gold); color:var(--gold-deep); }
#toTop svg { width:20px; height:20px; }

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

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .making .grid, .hero-split .grid, .story-grid { grid-template-columns:1fr; }
  .hero-split .filmframe { max-width: 440px; margin-inline:auto; }
  .making .filmframe { max-width: 440px; margin-inline:auto; }
  .portrait { max-width:420px; margin-inline:auto; }
  .story-grid .portrait { position: static; }
  .steps { grid-template-columns:repeat(2,1fr); gap:2.4rem 1.6rem; }
  .gallery-grid { grid-template-columns:repeat(2,1fr); }
  .tiers { grid-template-columns:repeat(2,1fr); }
  .quotes { grid-template-columns:1fr; max-width:560px; margin-inline:auto; }
  .foot-grid { grid-template-columns:1fr 1fr; }
  .foot-brand { grid-column:1 / -1; }
}
@media (max-width: 880px) {
  .nav-links { display:none; }
  .nav-links.open { display:flex; flex-direction:column; align-items:flex-start; gap:1.3rem; position:absolute; top:var(--nav-h); left:0; right:0; background:var(--bg); border-bottom:1px solid var(--line); box-shadow:var(--shadow-sm); padding:1.6rem 5%; }
  body.hero-dark header.site:not(.scrolled) .nav-links.open a { color: var(--ink-soft); }
  .menu-toggle { display:grid; }
}
@media (max-width: 620px) {
  body { font-size:16px; }
  .nav-actions .btn:not(.menu-toggle) { display:none; }
  .hero-cine .cta-row, .hero-split .cta-row, .hero-reel .head .cta-row { flex-direction:column; align-items:stretch; }
  .hero-split .cta-row { align-items:flex-start; }
  .steps { grid-template-columns:1fr; }
  .gallery-grid { grid-template-columns:1fr; }
  .tiers { grid-template-columns:1fr; }
  .form-grid { grid-template-columns:1fr; }
  .foot-grid { grid-template-columns:1fr; }
  .foot-bottom { flex-direction:column; align-items:flex-start; }
  .reel-card { width: 230px; }
  .hero-cine .arrow { display:none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  .reveal { opacity:1; transform:none; transition:none; }
  * { transition-duration:0.001ms !important; animation:none !important; }
}

/* ============================================================
   ELEMENTOR ADAPTATION
   Lets this exact design render when the homepage is built with
   Elementor (native Text + HTML widgets carrying our classes).
   Harmless without Elementor — every selector needs a .elementor-* host.
   ============================================================ */
/* our band/background classes sit on the Elementor SECTION */
.elementor-section.band { padding-block: clamp(5rem, 11vw, 9rem); }
.elementor-section.trust-strip { padding-block: 0; }
/* full-bleed sections: let our own .wrap / .narrow control the width */
.elementor-section.full-bleed > .elementor-container { max-width: 100%; padding-left: 0; padding-right: 0; }
.elementor-section.full-bleed .elementor-widget-wrap { padding: 0; }
/* two-column bands (making, story): center vertically, keep our measure */
.elementor-section.aaw-2col > .elementor-container { max-width: 1160px; align-items: center; }
.elementor-section.aaw-2col .elementor-column > .elementor-widget-wrap { padding: 1rem; }
/* inner grids (tiers, testimonials): give the cards breathing room + equal height */
.tiers-row .elementor-column > .elementor-widget-wrap,
.quotes-row .elementor-column > .elementor-widget-wrap { padding: .7rem; }
.tiers-row .tier, .quotes-row .quote { height: 100%; }
.tiers-row .elementor-widget-text-editor, .quotes-row .elementor-widget-text-editor { height: 100%; }
.tiers-row .elementor-widget-container, .quotes-row .elementor-widget-container { height: 100%; }
/* stars in the Elementor testimonials use the ★ glyph, not inline SVG */
.kind .stars { color: var(--gold); font-size: 1rem; letter-spacing: .14em; display: block; }
/* Elementor wraps text-editor output; make sure our block elements keep their own spacing */
.elementor-widget-text-editor .elementor-widget-container > *:first-child { margin-top: 0; }
