/* =====================================================================
   Blessed Badge Studio — Global Stylesheet
   Brand: Navy #0E2A55  |  Gold #C9982E → #F1CE72  |  Cream #FBF8F3
   ===================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --navy-900: #071A34;
  --navy-800: #0A2145;
  --navy-700: #0E2A55;
  --navy-600: #163663;
  --navy-400: #3C5680;

  --gold-700: #8A6410;
  --gold-600: #A97C16;
  --gold-500: #C9982E;
  --gold-400: #DDAF45;
  --gold-300: #F1CE72;
  --gold-100: #F7E6BE;

  --cream-50: #FFFDF9;
  --cream-100: #FBF8F3;
  --cream-200: #F4EEE4;
  --cream-300: #E8DECC;

  --ink: #16233A;
  --muted: #5D6B82;
  --line: rgba(14, 42, 85, .12);

  --grad-gold: linear-gradient(135deg, #A97C16 0%, #E5BB58 32%, #F7E3A8 52%, #DDAF45 72%, #A97C16 100%);
  --grad-navy: linear-gradient(160deg, #0A2145 0%, #14315C 55%, #071A34 100%);

  --shadow-sm: 0 2px 10px rgba(7, 26, 52, .06);
  --shadow-md: 0 12px 32px rgba(7, 26, 52, .10);
  --shadow-lg: 0 26px 70px rgba(7, 26, 52, .16);

  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Jost", "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --wrap: 1200px;
  --nav-h: 84px;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream-100);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; color: var(--navy-700); margin: 0 0 .5em; letter-spacing: .005em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { margin: 0 0 1.1em; }
::selection { background: var(--gold-300); color: var(--navy-800); }

/* ---------- 3. Layout helpers ---------- */
.wrap { width: min(var(--wrap), calc(100% - 3rem)); margin-inline: auto; }
.wrap-narrow { width: min(860px, calc(100% - 3rem)); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section--tight { padding: clamp(2.8rem, 5vw, 4.5rem) 0; }
.section--cream { background: var(--cream-200); }
.section--white { background: var(--cream-50); }
.section--navy { background: var(--grad-navy); color: #DDE5F1; }
.section--navy h2, .section--navy h3 { color: #fff; }
.center { text-align: center; }
.grid { display: grid; gap: 1.6rem; }

/* ---------- 4. Brand ornaments ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-600); margin-bottom: 1rem;
}
.eyebrow::before, .eyebrow::after { content: ""; width: 26px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-500)); }
.eyebrow::after { background: linear-gradient(90deg, var(--gold-500), transparent); }
.section--navy .eyebrow { color: var(--gold-300); }

.divider { display: flex; align-items: center; justify-content: center; gap: .8rem; margin: 1.1rem auto 1.9rem; max-width: 300px; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-400)); }
.divider::after { background: linear-gradient(90deg, var(--gold-400), transparent); }
.divider span { width: 9px; height: 9px; transform: rotate(45deg); background: var(--grad-gold); border-radius: 2px; }

.lead { font-size: 1.08rem; color: var(--muted); max-width: 62ch; }
.center .lead { margin-inline: auto; }
.section--navy .lead, .section--navy p { color: #C4D2E6; }

.gold-text { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 2rem; border-radius: 999px; border: 1px solid transparent;
  font-size: .82rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--grad-gold); color: #3B2A05; box-shadow: 0 10px 26px rgba(169,124,22,.28); }
.btn--gold:hover { box-shadow: 0 16px 34px rgba(169,124,22,.38); }
.btn--navy { background: var(--navy-700); color: #fff; }
.btn--navy:hover { background: var(--navy-800); box-shadow: var(--shadow-md); }
.btn--ghost { border-color: var(--navy-700); color: var(--navy-700); }
.btn--ghost:hover { background: var(--navy-700); color: #fff; }
.btn--ghost-light { border-color: rgba(241,206,114,.55); color: var(--gold-300); }
.btn--ghost-light:hover { background: var(--gold-300); color: var(--navy-800); }
.btn--sm { padding: .7rem 1.4rem; font-size: .72rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }
.center .btn-row { justify-content: center; }

/* ---------- 6. Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,253,249,.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, background .3s ease;
}
.header.is-stuck { box-shadow: 0 6px 26px rgba(7,26,52,.09); }
.header__bar { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; min-height: var(--nav-h); }
.brand { display: flex; align-items: center; gap: .8rem; }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.brand__txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif); font-size: 1.28rem; font-weight: 700; letter-spacing: .04em; color: var(--navy-700); text-transform: uppercase; }
.brand__name em { font-style: normal; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand__sub { font-size: .56rem; letter-spacing: .38em; text-transform: uppercase; color: var(--muted); padding-left: .12em; }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  position: relative; padding: .55rem .72rem; border-radius: 8px; white-space: nowrap;
  font-size: .78rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--navy-700);
  transition: color .2s ease;
}
.nav a::after {
  content: ""; position: absolute; left: .78rem; right: .78rem; bottom: .28rem; height: 1.5px;
  background: var(--grad-gold); transform: scaleX(0); transform-origin: left; transition: transform .28s ease;
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav a.is-active { color: var(--gold-600); }

.has-sub { position: relative; display: inline-flex; align-items: center; }
.submenu {
  position: absolute; top: calc(100% + .35rem); left: 50%; transform: translate(-50%, 8px);
  min-width: 246px; background: var(--cream-50); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: .5rem; opacity: 0; visibility: hidden; transition: all .22s ease;
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.submenu a { display: block; padding: .6rem .9rem; text-transform: none; letter-spacing: .02em; font-size: .88rem; border-radius: 8px; }
.submenu a::after { display: none; }
.submenu a:hover { background: var(--cream-200); color: var(--gold-600); }

.header__cta { display: flex; align-items: center; gap: .6rem; }
.burger { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 10px; background: transparent; padding: 0; position: relative; }
.burger span { position: absolute; left: 13px; right: 13px; height: 1.8px; background: var(--navy-700); transition: transform .3s ease, opacity .2s ease; }
.burger span:nth-child(1) { top: 16px; } .burger span:nth-child(2) { top: 22px; } .burger span:nth-child(3) { top: 28px; }
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 7. Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--grad-navy); color: #fff; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 420px at 78% 18%, rgba(221,175,69,.20), transparent 65%),
    radial-gradient(560px 380px at 12% 88%, rgba(221,175,69,.12), transparent 65%);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(241,206,114,.16) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .5;
  -webkit-mask-image: radial-gradient(circle at 50% 40%, transparent 32%, #000 78%);
  mask-image: radial-gradient(circle at 50% 40%, transparent 32%, #000 78%);
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 3.5rem; align-items: center; padding: clamp(3.5rem, 7vw, 6.5rem) 0 clamp(4rem, 8vw, 7rem); }
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero h1 .gold-text { display: block; }
.hero__tag { font-family: var(--serif); font-style: italic; font-size: clamp(1.05rem, 2vw, 1.4rem); color: var(--gold-300); margin-bottom: 1.4rem; }
.hero p { color: #C7D5E8; max-width: 52ch; }
.hero .eyebrow { color: var(--gold-300); }
.hero__stats { display: flex; gap: 2.4rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hero__stat b { display: block; font-family: var(--serif); font-size: 1.9rem; color: var(--gold-300); line-height: 1; }
.hero__stat span { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: #9FB2CD; }

.hero__art { position: relative; display: flex; justify-content: center; }
.hero__ring { position: relative; width: min(420px, 82%); aspect-ratio: 1; display: grid; place-items: center; }
.hero__ring::before, .hero__ring::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(241,206,114,.30); }
.hero__ring::after { inset: 26px; border-style: dashed; border-color: rgba(241,206,114,.18); animation: spin 60s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero__ring img { width: 78%; filter: drop-shadow(0 22px 46px rgba(0,0,0,.4)); }

/* Page hero (interior pages) */
.phero { position: relative; background: var(--grad-navy); color: #fff; padding: clamp(3.2rem, 6vw, 5.4rem) 0 clamp(3rem, 5vw, 4.4rem); overflow: hidden; text-align: center; }
.phero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(620px 320px at 50% 0%, rgba(221,175,69,.20), transparent 70%); }
.phero__inner { position: relative; z-index: 2; }
.phero h1 { color: #fff; margin-bottom: .3em; }
.phero p { color: #BFCEE3; max-width: 60ch; margin-inline: auto; }
.crumbs { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: #8FA4C2; margin-bottom: 1.1rem; }
.crumbs a:hover { color: var(--gold-300); }
.crumbs span { color: var(--gold-300); }

/* ---------- 8. Cards ---------- */
.card {
  background: var(--cream-50); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,152,46,.35); }
.card__body { padding: 1.5rem 1.6rem 1.7rem; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { margin-bottom: .45rem; }
.card__body p { color: var(--muted); font-size: .95rem; margin-bottom: 1rem; }
.card__link { margin-top: auto; font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-600); display: inline-flex; align-items: center; gap: .45rem; }
.card__link::after { content: "→"; transition: transform .25s ease; }
.card:hover .card__link::after { transform: translateX(5px); }

.cards-3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.cards-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.cards-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

/* ---------- 9. Image placeholder system ---------- */
.shot { position: relative; margin: 0; overflow: hidden; background: var(--cream-200); border-radius: inherit; }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.3,1); }
.card:hover .shot img, .gal__item:hover .shot img { transform: scale(1.06); }
.shot--4x3 { aspect-ratio: 4 / 3; }
.shot--1x1 { aspect-ratio: 1 / 1; }
.shot--3x4 { aspect-ratio: 3 / 4; }
.shot--16x9 { aspect-ratio: 16 / 9; }

.shot.is-empty img { display: none; }
.shot.is-empty {
  background:
    linear-gradient(135deg, rgba(201,152,46,.07), rgba(14,42,85,.05)),
    repeating-linear-gradient(45deg, rgba(201,152,46,.06) 0 10px, transparent 10px 20px),
    var(--cream-200);
  display: grid; place-items: center; padding: 1rem;
  border: 1px dashed rgba(201,152,46,.45);
}
.shot.is-empty::after {
  content: "✦  " attr(data-file);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: .68rem; letter-spacing: .04em; color: var(--gold-600);
  text-align: center; line-height: 1.6; opacity: .95; word-break: break-all;
  background: rgba(255,253,249,.75); padding: .45rem .7rem; border-radius: 8px;
}

/* ---------- 10. Icon tiles ---------- */
.icontile { text-align: center; }
.icontile__ring {
  width: 92px; height: 92px; margin: 0 auto 1rem; border-radius: 50%;
  display: grid; place-items: center; background: var(--cream-50);
  border: 1px solid rgba(201,152,46,.4); box-shadow: inset 0 0 0 6px rgba(201,152,46,.06), var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.icontile:hover .icontile__ring { transform: translateY(-5px); box-shadow: inset 0 0 0 6px rgba(201,152,46,.12), var(--shadow-md); }
.icontile__ring svg { width: 42px; height: 42px; }
.icontile h4 { font-family: var(--sans); font-size: .78rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--navy-700); margin: 0; }
.section--navy .icontile__ring { background: rgba(255,255,255,.05); border-color: rgba(241,206,114,.35); }
.section--navy .icontile h4 { color: #E7EEF9; }

/* ---------- 11. Process ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.6rem; margin-top: 2.6rem; }
.step { position: relative; padding: 2.4rem 1.5rem 1.6rem; background: var(--cream-50); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: -18px; left: 1.4rem;
  font-family: var(--serif); font-size: 2.5rem; font-weight: 700;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.step h4 { font-family: var(--serif); font-size: 1.22rem; color: var(--navy-700); margin: 0 0 .4rem; }
.step p { font-size: .92rem; color: var(--muted); margin: 0; }
.section--navy .step { background: rgba(255,255,255,.045); border-color: rgba(241,206,114,.2); }
.section--navy .step h4 { color: #fff; }
.section--navy .step p { color: #B9C9DF; }

/* ---------- 12. Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split__stack { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.split__stack .shot { border-radius: var(--radius); }
.split__stack .shot:first-child { grid-row: span 2; }

/* ---------- 13. Gallery ---------- */
.filters { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; margin-bottom: 2.4rem; }
.chip {
  padding: .55rem 1.25rem; border-radius: 999px; border: 1px solid var(--line); background: var(--cream-50);
  font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--navy-700);
  transition: all .22s ease;
}
.chip:hover { border-color: var(--gold-500); color: var(--gold-600); }
.chip.is-active { background: var(--navy-700); border-color: var(--navy-700); color: #fff; }

.gal { columns: 3; column-gap: 1.3rem; }
.gal__item { break-inside: avoid; margin-bottom: 1.3rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); cursor: zoom-in; position: relative; background: var(--cream-50); border: 1px solid var(--line); }
.gal__item[hidden] { display: none; }
.gal__cap {
  position: absolute; inset: auto 0 0 0; padding: 2.2rem .95rem .85rem;
  background: linear-gradient(transparent, rgba(7,26,52,.85));
  color: #fff; font-size: .78rem; letter-spacing: .06em;
  opacity: 0; transition: opacity .3s ease;
}
.gal__item:hover .gal__cap { opacity: 1; }

.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(7,26,52,.94); display: none; place-items: center; padding: 2rem; backdrop-filter: blur(6px); }
.lightbox.is-open { display: grid; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 84vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 1.5rem; right: 1.8rem; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(241,206,114,.4); background: transparent; color: var(--gold-300); font-size: 1.4rem; }
.lightbox__cap { color: #C7D5E8; margin-top: 1rem; text-align: center; font-size: .9rem; letter-spacing: .06em; }

/* ---------- 14. Testimonials ---------- */
.quote { position: relative; background: var(--cream-50); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.6rem 1.8rem 1.8rem; box-shadow: var(--shadow-sm); height: 100%; }
.quote::before { content: "”"; position: absolute; top: .35rem; left: 1.4rem; font-family: var(--serif); font-size: 5rem; line-height: 1; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.quote p { font-family: var(--serif); font-size: 1.12rem; font-style: italic; color: var(--navy-700); line-height: 1.65; }
.quote footer { display: flex; align-items: center; gap: .85rem; margin-top: 1.3rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.quote__av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-gold); color: #3B2A05; font-weight: 700; font-size: .95rem; flex: none; }
.quote__who b { display: block; font-size: .92rem; color: var(--navy-700); }
.quote__who span { font-size: .78rem; color: var(--muted); }
.stars { color: var(--gold-500); letter-spacing: .18em; font-size: .9rem; margin-bottom: .7rem; }

/* ---------- 15. Forms ---------- */
.formcard { background: var(--cream-50); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.8rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--navy-700); margin-bottom: .45rem; }
.field label .req { color: var(--gold-600); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; font: inherit; font-size: .95rem; color: var(--ink);
  background: var(--cream-100); border: 1px solid var(--line); border-radius: 10px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #fff; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(201,152,46,.14);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .55rem; }
.check { display: flex; align-items: center; gap: .6rem; padding: .7rem .9rem; border: 1px solid var(--line); border-radius: 10px; background: var(--cream-100); font-size: .9rem; cursor: pointer; transition: all .2s ease; }
.check:hover { border-color: var(--gold-500); }
.check input { width: auto; accent-color: var(--gold-600); }
.check:has(input:checked) { border-color: var(--gold-500); background: rgba(241,206,114,.12); }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 1rem; }
.form-status { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: 10px; font-size: .9rem; display: none; }
.form-status.ok { display: block; background: rgba(46,138,87,.1); border: 1px solid rgba(46,138,87,.3); color: #1F6B44; }
.form-status.err { display: block; background: rgba(190,60,60,.08); border: 1px solid rgba(190,60,60,.28); color: #A03232; }

/* ---------- 16. Info / contact ---------- */
.infolist { display: grid; gap: 1.1rem; }
.infolist li { display: flex; gap: 1rem; align-items: flex-start; list-style: none; }
.infolist .ico { width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center; background: rgba(201,152,46,.12); border: 1px solid rgba(201,152,46,.3); }
.infolist .ico svg { width: 21px; height: 21px; }
.infolist b { display: block; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.infolist a, .infolist span { color: var(--navy-700); font-weight: 500; }
.infolist a:hover { color: var(--gold-600); }
.section--navy .infolist b { color: #93A7C4; }
.section--navy .infolist a, .section--navy .infolist span { color: #fff; }
.infolist ul { margin: 0; padding: 0; }

/* ---------- 17. CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--grad-navy); color: #fff; text-align: center; padding: clamp(3.4rem, 6vw, 5.2rem) 0; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% 120%, rgba(221,175,69,.24), transparent 70%); }
.cta-band__inner { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #C4D2E6; max-width: 56ch; margin-inline: auto; }

/* ---------- 18. Footer ---------- */
.footer { background: var(--navy-900); color: #A9BBD3; padding-top: clamp(3rem, 6vw, 4.5rem); font-size: .93rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2.4rem; padding-bottom: 2.8rem; }
.footer h5 { font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-300); margin: 0 0 1.1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer a:hover { color: var(--gold-300); }
.footer__brand img { width: 76px; margin-bottom: 1rem; }
.footer__brand p { max-width: 34ch; font-size: .9rem; }
.socials { display: flex; gap: .6rem; margin-top: 1.2rem; }
.socials a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(241,206,114,.28); transition: all .25s ease; }
.socials a:hover { background: var(--grad-gold); border-color: transparent; transform: translateY(-3px); }
.socials svg { width: 17px; height: 17px; fill: var(--gold-300); transition: fill .25s ease; }
.socials a:hover svg { fill: #3B2A05; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.09); padding: 1.4rem 0; display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between; font-size: .8rem; color: #7F92AE; }

/* ---------- 19. WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #25D366; box-shadow: 0 12px 30px rgba(37,211,102,.42);
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- 20. Misc ---------- */
.badge-pill { display: inline-block; padding: .3rem .85rem; border-radius: 999px; background: rgba(201,152,46,.13); border: 1px solid rgba(201,152,46,.3); color: var(--gold-600); font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.tick-list { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: .7rem; }
.tick-list li { display: flex; gap: .75rem; align-items: flex-start; font-size: .97rem; color: var(--muted); }
.tick-list li::before { content: "✦"; color: var(--gold-500); flex: none; margin-top: .1rem; }
.section--navy .tick-list li { color: #C4D2E6; }

.faq details { border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.faq summary { cursor: pointer; list-style: none; font-family: var(--serif); font-size: 1.18rem; color: var(--navy-700); display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold-600); font-size: 1.5rem; font-family: var(--sans); line-height: 1; transition: transform .25s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: .9rem 0 0; color: var(--muted); font-size: .96rem; }

.pricehint { font-size: .82rem; color: var(--gold-600); font-weight: 600; letter-spacing: .04em; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- 21. Responsive ---------- */
@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: block; }
  .nav.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: .1rem;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--cream-50); border-bottom: 1px solid var(--line);
    padding: 1rem 1.5rem 1.6rem; box-shadow: var(--shadow-md); max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav.is-open .has-sub { display: block; }
  .nav.is-open a { display: block; padding: .8rem .2rem; border-bottom: 1px solid var(--line); }
  .nav.is-open a::after { display: none; }
  .submenu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; background: transparent; padding: 0 0 0 1rem; min-width: 0; }
  .has-sub:hover .submenu, .has-sub:focus-within .submenu { transform: none; }
  .submenu a { font-size: .85rem; color: var(--muted); }
  .header { position: relative; }
  .header__bar { position: relative; }
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero .eyebrow, .hero .btn-row, .hero__stats { justify-content: center; }
  .hero p { margin-inline: auto; }
  .hero__art { order: -1; }
  .hero__ring { width: min(300px, 70%); }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .gal { columns: 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .wrap, .wrap-narrow { width: calc(100% - 2.2rem); }
  .field-row { grid-template-columns: 1fr; }
  .gal { columns: 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .header__cta .btn { display: none; }
  .brand__name { font-size: 1.05rem; }
  .brand img { width: 44px; height: 44px; }
  .hero__stats { gap: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =====================================================================
   22. CONNECT HUB  (connect.html — the QR landing page)
   ===================================================================== */
body.hub {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex; flex-direction: column;
  background: var(--grad-navy);
  color: #DDE5F1;
  padding: clamp(1.1rem, 4vw, 2.2rem) 1rem clamp(1.4rem, 4vw, 2.4rem);
  position: relative; overflow-x: hidden;
}
body.hub::before {
  content: ""; position: fixed; inset: 0; pointer-events: none;
  background:
    radial-gradient(560px 340px at 82% -6%, rgba(221,175,69,.22), transparent 66%),
    radial-gradient(460px 320px at 8% 104%, rgba(221,175,69,.14), transparent 66%);
}
body.hub::after {
  content: ""; position: fixed; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(241,206,114,.13) 1px, transparent 1px);
  background-size: 24px 24px; opacity: .45;
  -webkit-mask-image: radial-gradient(circle at 50% 34%, transparent 26%, #000 82%);
  mask-image: radial-gradient(circle at 50% 34%, transparent 26%, #000 82%);
}

.hub__shell { position: relative; z-index: 2; width: min(560px, 100%); margin: auto; }

.hub__top { text-align: center; margin-bottom: clamp(1.2rem, 4vw, 1.9rem); }
.hub__mark {
  width: clamp(72px, 19vw, 98px); margin: 0 auto .7rem;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.42));
}
.hub__name {
  font-family: var(--serif); font-weight: 700; color: #fff;
  font-size: clamp(1.5rem, 6.4vw, 2.05rem); letter-spacing: .05em;
  text-transform: uppercase; line-height: 1.1; margin: 0;
}
.hub__name em { font-style: normal; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hub__studio { font-size: .6rem; letter-spacing: .46em; text-transform: uppercase; color: #9FB2CD; margin: .4rem 0 .75rem; padding-left: .46em; }
.hub__tag { font-family: var(--serif); font-style: italic; font-size: clamp(.95rem, 3.6vw, 1.12rem); color: var(--gold-300); margin: 0; }
.hub__hint { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: #7D91AF; margin: .75rem 0 0; }

/* --- two columns: talk (left)  |  follow (right) --- */
.hub__grid { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; align-items: stretch; }
.hub__col { display: flex; flex-direction: column; gap: .7rem; min-width: 0; }
.hub__label {
  font-size: .58rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-300); text-align: center; margin: 0 0 .1rem; opacity: .9;
}

.tile {
  position: relative; flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .5rem; text-align: center;
  min-height: 78px; padding: .9rem .55rem;
  border-radius: 18px; border: 1px solid rgba(241,206,114,.26);
  background: rgba(255,255,255,.055);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: #EAF0F9; overflow: hidden;
  transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  -webkit-tap-highlight-color: transparent;
}
.tile::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .25s ease;
  background: linear-gradient(150deg, rgba(255,255,255,.14), transparent 60%);
}
.tile:active { transform: scale(.965); }
.tile:hover, .tile:focus-visible { border-color: rgba(241,206,114,.6); background: rgba(255,255,255,.10); box-shadow: 0 12px 30px rgba(0,0,0,.3); outline: none; }
.tile:hover::before { opacity: 1; }

.tile__ico { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; flex: none; background: rgba(241,206,114,.14); border: 1px solid rgba(241,206,114,.3); transition: background .25s ease, border-color .25s ease; }
.tile__ico svg { width: 21px; height: 21px; fill: var(--gold-300); transition: fill .25s ease; }
.tile__ico svg[data-stroke] { fill: none; stroke: var(--gold-300); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.tile b { display: block; font-size: .84rem; font-weight: 600; letter-spacing: .04em; line-height: 1.25; }
.tile span { display: block; font-size: .66rem; color: #9FB2CD; letter-spacing: .01em; line-height: 1.5; overflow-wrap: break-word; }
.tile span.tile__eml { font-size: .6rem; }

/* big left-hand tiles */
.tile--lg { min-height: 118px; gap: .55rem; }
.tile--lg .tile__ico { width: 52px; height: 52px; }
.tile--lg .tile__ico svg { width: 25px; height: 25px; }
.tile--lg b { font-size: .95rem; }

/* brand colours on tap */
.tile--call:hover .tile__ico, .tile--call:focus-visible .tile__ico { background: rgba(241,206,114,.9); border-color: transparent; }
.tile--call:hover .tile__ico svg, .tile--call:focus-visible .tile__ico svg { fill: #3B2A05; stroke: #3B2A05; }
.tile--mail:hover .tile__ico, .tile--mail:focus-visible .tile__ico { background: rgba(241,206,114,.9); border-color: transparent; }
.tile--mail:hover .tile__ico svg, .tile--mail:focus-visible .tile__ico svg { fill: #3B2A05; stroke: #3B2A05; }
.tile--wa:hover  { border-color: rgba(37,211,102,.75); }
.tile--wa:hover .tile__ico  { background: #25D366; border-color: transparent; }
.tile--ig:hover  { border-color: rgba(214,36,159,.75); }
.tile--ig:hover .tile__ico  { background: linear-gradient(45deg,#F9CE34,#EE2A7B 52%,#6228D7); border-color: transparent; }
.tile--fb:hover  { border-color: rgba(24,119,242,.75); }
.tile--fb:hover .tile__ico  { background: #1877F2; border-color: transparent; }
.tile--web:hover { border-color: rgba(241,206,114,.8); }
.tile--web:hover .tile__ico { background: var(--grad-gold); border-color: transparent; }
.tile--tt:hover .tile__ico { background: #010101; border-color: rgba(255,255,255,.4); }
.tile--yt:hover .tile__ico { background: #FF0033; border-color: transparent; }
.tile--wa:hover .tile__ico svg, .tile--ig:hover .tile__ico svg, .tile--fb:hover .tile__ico svg,
.tile--tt:hover .tile__ico svg, .tile--yt:hover .tile__ico svg { fill: #fff; }
.tile--web:hover .tile__ico svg { fill: none; stroke: #3B2A05; }

/* secondary full-width row */
.hub__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin-top: .7rem; }
.tile--sm { min-height: 74px; padding: .8rem .45rem; gap: .4rem; border-radius: 15px; }
.tile--sm .tile__ico { width: 34px; height: 34px; }
.tile--sm .tile__ico svg { width: 17px; height: 17px; }
.tile--sm b { font-size: .7rem; letter-spacing: .06em; }

.hub__quote { display: block; margin-top: .7rem; text-align: center; padding: 1rem; border-radius: 16px; background: var(--grad-gold); color: #3B2A05; font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; box-shadow: 0 12px 28px rgba(169,124,22,.34); transition: transform .18s ease; }
.hub__quote:active { transform: scale(.97); }

.hub__foot { text-align: center; margin-top: 1.2rem; font-size: .76rem; color: #8195B3; line-height: 1.9; }
.hub__foot a { color: var(--gold-300); }
.hub__foot .hub__handle { display: block; letter-spacing: .12em; color: #9FB2CD; }
.hub__rule { display: flex; align-items: center; justify-content: center; gap: .7rem; margin: 1rem auto .7rem; max-width: 220px; }
.hub__rule::before, .hub__rule::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(241,206,114,.45)); }
.hub__rule::after { background: linear-gradient(90deg, rgba(241,206,114,.45), transparent); }
.hub__rule span { width: 7px; height: 7px; transform: rotate(45deg); background: var(--grad-gold); border-radius: 2px; }

@media (max-width: 340px) {
  .hub__grid { grid-template-columns: 1fr; }
  .hub__row { grid-template-columns: 1fr 1fr; }
  .tile--lg { min-height: 96px; }
}
@media (min-width: 700px) {
  .tile { min-height: 96px; }
  .tile--lg { min-height: 150px; }
}
