/* ============================================================
   CRINO Designs & Print — Design System
   ============================================================ */
:root {
  --navy: #0C1220;
  --navy-2: #081423;
  --navy-3: #1C3A5E;
  --cream: #F7F5F0;
  --cream-2: #EFE9DD;
  --gold: #C9A45C;  /* champagne gold — quiet-luxury pass (Sep 2026) */
  --gold-2: #A97F3C;  /* deep bronze accent (quiet-luxury pass) */
  --ink: #0C1220;
  --muted: #516075;
  --muted-2: #8A9CB0;
  --cyan: #2CA9E1;
  --magenta: #C9A45C;  /* retired — quiet-luxury champagne (Sep 2026) */
  --yellow: #FFDD15;
  --white: #ffffff;
  --line: rgba(12, 26, 48, 0.10);
  --line-light: rgba(255, 255, 255, 0.14);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 30px 70px -30px rgba(12, 26, 48, 0.38);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.14; letter-spacing: 0em; font-weight: 600; }
.accent { color: var(--gold-foil-2); font-style: italic; }

.container { width: min(1220px, 92%); margin-inline: auto; }
.section-pad { padding: 96px 0; }

section[id], [id] { scroll-margin-top: 96px; }

/* Scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold-foil), var(--gold-foil-3) 55%, var(--gold-foil-2));
  z-index: 1000; transition: width .1s linear;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px; border-radius: 999px;
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn .arr { transition: transform .3s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn:active { transform: scale(0.98); }

.btn-gold { background: linear-gradient(140deg, var(--gold-foil-3), var(--gold-foil) 55%, var(--gold-foil-2)); color: var(--navy); box-shadow: 0 8px 24px -8px rgba(154, 119, 53, 0.55); }
.btn-gold:hover { filter: brightness(1.05); box-shadow: 0 12px 30px -8px rgba(154, 119, 53, 0.65); }

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-3); }

.btn-ghost { border: 1px solid var(--line-light); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }

.btn-outline { border: 1.5px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-lg { padding: 16px 32px; font-size: 1.02rem; }
.btn-block { justify-content: center; width: 100%; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--navy);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 12px 40px -18px rgba(0,0,0,0.6); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 14px; height: 80px; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand-logo { height: 44px; width: auto; display: block; flex: 0 0 auto; }

.nav-links { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; }
.nav-links a {
  color: var(--muted-2); font-weight: 600; font-size: 0.88rem; letter-spacing: .01em; white-space: nowrap;
  position: relative; padding: 6px 0; transition: color .25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--gold-foil), var(--gold-foil-3) 55%, var(--gold-foil-2));
}

.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; background: var(--navy-2); padding: 8px 5% 28px;
  border-top: 1px solid var(--line-light);
}
.mobile-menu ul { display: flex; flex-direction: column; }
.mobile-menu a { color: var(--muted-2); font-weight: 600; padding: 13px 0; border-bottom: 1px solid var(--line-light); }
.mobile-menu a.active { color: var(--gold); }
.mobile-menu .btn { margin-top: 18px; width: 100%; justify-content: center; }

/* ============================================================
   Hero (home)
   ============================================================ */
.hero {
  position: relative; background: var(--navy); color: var(--white);
  padding: 76px 0 40px; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(198, 161, 92, 0.14), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(27, 58, 87, 0.5), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
  mask-image: radial-gradient(700px 500px at 80% 20%, #000, transparent 70%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; min-height: 76vh; }

.kicker {
  display: inline-block; font-family: var(--font-display); font-weight: 500; font-size: 0.86rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-foil-2);
  margin-bottom: 22px;
}
.kicker-light { color: var(--gold-foil-3); }

.hero h1 { font-size: clamp(2.4rem, 5vw, 4.15rem); color: var(--white); }
.hero .sub { color: var(--muted-2); font-size: 1.15rem; max-width: 520px; margin: 22px 0 30px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats { display: flex; gap: 40px; margin-top: 46px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat b { font-family: var(--font-display); font-size: 2.1rem; color: var(--gold); line-height: 1; }
.stat span { color: var(--muted-2); font-size: 0.85rem; margin-top: 6px; }

/* Hero collage */
.hero-visual { position: relative; }
.hero-collage { position: relative; height: 540px; }
.hero-card {
  position: absolute; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.1);
  will-change: transform;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card.main { width: 66%; height: 72%; left: 0; top: 12%; z-index: 1; }
.hero-card.f2 { width: 46%; height: 40%; right: 0; top: 0; z-index: 3; border: 5px solid var(--navy); }
.hero-card.f3 { width: 42%; height: 34%; right: 4%; bottom: 4%; z-index: 4; border: 5px solid var(--navy); }
.hero-badge {
  position: absolute; left: -26px; bottom: -14px; z-index: 5;
  width: 104px; height: 104px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 16px 40px -10px rgba(154, 119, 53, 0.45);
  animation: floaty 5s ease-in-out infinite;
}
.hero-badge b { font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.hero-badge span { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.hero-chip {
  position: absolute; right: 8%; bottom: -4px; z-index: 6;
  display: flex; align-items: center; gap: 9px;
  background: var(--white); color: var(--navy);
  font-weight: 700; font-size: 0.86rem; padding: 12px 18px; border-radius: 999px;
  box-shadow: var(--shadow);
}
.hero-chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold-foil-3); box-shadow: 0 0 0 0 rgba(198,161,92,.6); animation: pulse 2s infinite; }

@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(198,161,92,.55); } 70% { box-shadow: 0 0 0 12px rgba(198,161,92,0); } 100% { box-shadow: 0 0 0 0 rgba(198,161,92,0); } }

.scroll-cue {
  position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted-2); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  margin-top: 8px;
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: cue 2s infinite; }
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============================================================
   Marquee ticker
   ============================================================ */
.ticker { background: var(--navy); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); overflow: hidden; padding: 20px 0; }
.ticker-track { display: flex; gap: 46px; width: max-content; animation: ticker 28s linear infinite; }
.ticker-track span { display: flex; align-items: center; gap: 46px; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 3vw, 2.3rem); color: rgba(255,255,255,0.94); white-space: nowrap; }
.ticker-track i { font-style: normal; color: var(--gold); font-size: 0.7em; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   Trust bar
   ============================================================ */
.trust-bar { background: var(--cream); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 26px 20px; border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: 0; }
.t-ic {
  width: 44px; height: 44px; border-radius: 12px; flex: 0 0 auto;
  background: rgba(198, 161, 92, 0.16); color: var(--gold-foil-2);
  display: grid; place-items: center; font-size: 1.2rem; font-weight: 700;
}
.trust-item b { display: block; font-size: 0.98rem; }
.trust-item span { color: var(--muted); font-size: 0.84rem; }

/* ============================================================
   Section heads
   ============================================================ */
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
.lead { color: var(--muted); font-size: 1.08rem; margin-top: 16px; }

/* ============================================================
   Services grid (home)
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 6px 24px -14px rgba(11,27,43,0.2);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover img { transform: scale(1.06); }
.sc-body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.sc-num { font-family: var(--font-display); font-weight: 800; font-size: 0.82rem; color: var(--gold-foil-2); letter-spacing: 0.1em; }
.sc-body h3 { font-size: 1.35rem; }
.sc-body p { color: var(--muted); font-size: 0.94rem; }
.sc-more { margin-top: auto; padding-top: 10px; font-weight: 700; font-size: 0.9rem; color: var(--navy); display: inline-flex; align-items: center; gap: 8px; }
.sc-more .arr { transition: transform .3s var(--ease); }
.service-card:hover .sc-more .arr { transform: translateX(4px); }


/* ============================================================
   Masonry / tiles
   ============================================================ */
.masonry { columns: 3; column-gap: 24px; }
.tile {
  position: relative; break-inside: avoid; margin-bottom: 24px;
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  box-shadow: 0 6px 20px -14px rgba(11,27,43,0.25);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), opacity .4s;
}
.tile:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.tile img { width: 100%; transition: transform .6s var(--ease); }
.tile:hover img { transform: scale(1.05); }
.t-cap {
  position: absolute; inset: auto 0 0 0; padding: 40px 18px 16px;
  background: linear-gradient(transparent, rgba(11,27,43,0.82));
  color: var(--white); display: flex; flex-direction: column; gap: 4px;
  opacity: 0; transform: translateY(8px); transition: .35s var(--ease);
}
.tile:hover .t-cap { opacity: 1; transform: translateY(0); }
.tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.t-cap b { font-family: var(--font-display); font-size: 1.05rem; }

.tile.hidden { display: none; }
.portfolio-foot { display: flex; justify-content: center; margin-top: 40px; }

/* ============================================================
   Split (about teaser / about)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.split-media { position: relative; }
.split-media > img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.media-note {
  position: absolute; right: -18px; bottom: 28px;
  width: 128px; height: 128px; border-radius: 50%;
  background: linear-gradient(140deg, var(--gold-foil-3), var(--gold-foil) 55%, var(--gold-foil-2)); color: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 16px 40px -10px rgba(154,119,53,0.55), inset 0 1px 0 rgba(255,255,255,0.5);
}
.media-note b { font-family: var(--font-display); font-size: 1.9rem; line-height: 1; }
.media-note span { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.2; }

.split-copy h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); margin-bottom: 18px; }
.split-copy > p { color: var(--muted); margin-bottom: 14px; }
.perk-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 28px 0 30px; }
.perk { display: flex; gap: 12px; }
.p-ic { width: 34px; height: 34px; border-radius: 10px; background: rgba(198,161,92,0.16); color: var(--gold-foil-2); display: grid; place-items: center; font-size: 1rem; flex: 0 0 auto; }
.perk b { display: block; font-size: 0.96rem; }
.perk span { color: var(--muted); font-size: 0.84rem; }

/* ============================================================
   Stats band
   ============================================================ */
.stats-band { background: var(--navy); color: var(--white); padding: 72px 0; position: relative; overflow: hidden; }
.stats-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 20% 0%, rgba(198,161,92,0.16), transparent 60%); }
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-cell .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--gold); line-height: 1; }
.stat-cell .l { color: var(--muted-2); margin-top: 10px; font-size: 0.95rem; }

/* ============================================================
   Quotes
   ============================================================ */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote-card { background: var(--white); border-radius: var(--radius-lg); padding: 30px; box-shadow: 0 6px 24px -16px rgba(11,27,43,0.22); display: flex; flex-direction: column; gap: 16px; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.quote-card blockquote { font-family: var(--font-display); font-size: 1.22rem; font-weight: 700; line-height: 1.35; }
.who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.av { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--gold); display: grid; place-items: center; font-weight: 800; }
.who b { display: block; font-size: 0.92rem; }
.who span { color: var(--muted); font-size: 0.82rem; }

/* ============================================================
   Menu strip (pricing teaser)
   ============================================================ */
.menu-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 6px 24px -16px rgba(11,27,43,0.2); }
.menu-item { padding: 34px 24px; text-align: center; border-left: 1px solid var(--line); }
.menu-item:first-child { border-left: 0; }
.m-price { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: var(--navy); }
.menu-item span { color: var(--muted); font-size: 0.9rem; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { background: var(--navy); color: var(--white); text-align: center; padding: 110px 0; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 420px at 50% 120%, rgba(198,161,92,0.20), transparent 60%); }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3.2rem); position: relative; }
.cta-band p { color: var(--muted-2); font-size: 1.12rem; max-width: 560px; margin: 18px auto 0; position: relative; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 34px; position: relative; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--navy-2); color: var(--muted-2); padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-lockup { margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; max-width: 280px; }
.site-footer h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; }
.site-footer ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer ul a { font-size: 0.9rem; transition: color .25s; }
.site-footer ul a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; }
.footer-contact .ic { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line-light); font-size: 0.82rem; }
.tagline { color: var(--gold); }

/* ============================================================
   Page hero (interior pages)
   ============================================================ */
.page-hero { background: var(--navy); color: var(--white); padding: 72px 0 84px; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 380px at 85% 0%, rgba(198,161,92,0.15), transparent 60%); }
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); max-width: 760px; }
.page-hero .sub { color: var(--muted-2); font-size: 1.15rem; max-width: 620px; margin-top: 18px; }
.breadcrumb { display: flex; gap: 10px; font-size: 0.84rem; color: var(--muted-2); margin-bottom: 26px; }
.breadcrumb a { transition: color .25s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* ============================================================
   Service detail rows
   ============================================================ */
.service-detail { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; padding: 40px 0; border-bottom: 1px solid var(--line); }
.service-detail:last-child { border-bottom: 0; }
.sd-media { position: relative; }
.sd-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.sd-num {
  position: absolute; top: -34px; left: -18px;
  font-family: var(--font-display); font-weight: 800; font-size: 6rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 2px var(--gold);
}
.sd-copy h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); margin-bottom: 14px; }
.sd-copy > p { color: var(--muted); margin-bottom: 22px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.chip { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: 0.86rem; font-weight: 600; color: var(--navy); }
.sd-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   Filter bar
   ============================================================ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 48px; }
.filter-btn {
  border: 1.5px solid var(--navy); background: transparent; color: var(--navy);
  border-radius: 999px; padding: 10px 22px; font-weight: 700; font-size: 0.9rem;
  transition: .3s var(--ease);
}
.filter-btn:hover { background: rgba(11,27,43,0.06); }
.filter-btn.active { background: var(--navy); color: var(--white); }

/* ============================================================
   Pricing
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 30px 26px;
  border: 1px solid var(--line); display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured { border: 2px solid var(--gold-foil); }
.pc-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white); font-size: 0.74rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em; padding: 6px 16px; border-radius: 999px;
}
.pc-top h3 { font-size: 1.5rem; }
.pc-top p { color: var(--muted); font-size: 0.88rem; margin-top: 8px; min-height: 44px; }
.pc-price { margin: 20px 0 22px; }
.pc-price .from { display: block; font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.pc-price b { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--navy); }
.price-card ul { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.price-card ul li { font-size: 0.92rem; color: var(--muted); }
.price-card .btn { margin-top: auto; }

/* Menu tables */
.menu-tables { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.menu-table { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: 0 6px 24px -16px rgba(11,27,43,0.18); }
.menu-table h3 { display: flex; align-items: center; gap: 12px; font-size: 1.2rem; margin-bottom: 18px; }
.mt-num { font-family: var(--font-display); font-size: 0.8rem; color: var(--gold-2); }
.menu-table table { width: 100%; border-collapse: collapse; }
.menu-table tr { border-bottom: 1px solid var(--line); }
.menu-table tr:last-child { border-bottom: 0; }
.menu-table td { padding: 13px 0; font-size: 0.92rem; color: var(--muted); }
.menu-table td.price { text-align: right; color: var(--navy); font-weight: 700; white-space: nowrap; }
.fineprint { text-align: center; color: var(--muted); font-size: 0.82rem; margin-top: 40px; max-width: 640px; margin-inline: auto; }

/* ============================================================
   Values + process (about)
   ============================================================ */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { background: var(--white); border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: 0 6px 24px -16px rgba(11,27,43,0.18); }
.v-num { font-family: var(--font-display); font-weight: 800; font-size: 0.82rem; color: var(--gold-foil-2); letter-spacing: 0.1em; }
.value-card h3 { font-size: 1.3rem; margin: 14px 0 10px; }
.value-card p { color: var(--muted); font-size: 0.92rem; }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { background: var(--white); border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: 0 6px 24px -16px rgba(11,27,43,0.18); position: relative; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: var(--gold);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.22rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-info h2, .contact-form h2 { font-size: 1.8rem; margin-bottom: 14px; }
.contact-info > p { color: var(--muted); margin-bottom: 28px; }
.info-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: left;
  background: var(--white); border-radius: var(--radius); padding: 20px 22px;
  box-shadow: 0 6px 24px -16px rgba(11,27,43,0.16);
}
.info-card b { display: block; font-size: 1rem; }
.info-card a { display: block; color: var(--navy); font-weight: 700; font-size: 1.05rem; }
.info-card a:hover { color: var(--gold-2); }
.info-card span { display: block; color: var(--muted); font-size: 0.86rem; }
.info-card.hours { margin-top: 16px; }
.map-embed { margin-top: 20px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 6px 24px -16px rgba(11,27,43,0.2); }
.map-embed iframe { width: 100%; height: 240px; border: 0; display: block; filter: saturate(0.85); }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--font-body); font-size: 0.96rem; color: var(--ink); background: var(--cream);
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-foil); box-shadow: 0 0 0 4px rgba(198,161,92,0.18); background: var(--white);
}
.file-note span { display: flex; gap: 8px; color: var(--muted); font-size: 0.84rem; background: rgba(198,161,92,0.12); padding: 12px 14px; border-radius: 10px; }
.form-success { margin-top: 16px; text-align: center; font-weight: 700; color: #1B365C; background: #E6F4FB; padding: 14px; border-radius: 12px; }

/* FAQ */
.faq-list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.faq { background: var(--white); border-radius: var(--radius); box-shadow: 0 6px 24px -16px rgba(11,27,43,0.16); }
.faq summary {
  cursor: pointer; padding: 22px 26px; font-weight: 700; font-size: 1.05rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-foil-2); transition: transform .3s var(--ease); flex: 0 0 auto; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 26px 24px; color: var(--muted); font-size: 0.95rem; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
html.js .reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); } html.js .reveal:not(.in-view) { opacity: 0; transform: translateY(28px); }
.reveal.in-view { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }
  .mobile-menu.open { display: block; }
  .services-grid, .menu-tables, .pricing-grid, .values-grid, .process { grid-template-columns: repeat(2, 1fr); }
  .quotes-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 2; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 0; }
  .trust-item { border-top: 1px solid var(--line); }
  .trust-item:nth-child(-n+2) { border-top: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding: 20px 0 30px; }
  .hero-collage { height: 440px; margin-top: 30px; }
  .split { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 36px; }
  .sd-num { font-size: 4.6rem; top: -28px; left: -8px; }
  .contact-grid { grid-template-columns: 1fr; }
  .menu-strip { grid-template-columns: repeat(2, 1fr); }
  .menu-item { border-top: 1px solid var(--line); }
  .menu-item:nth-child(-n+2) { border-top: 0; }
  .menu-item:nth-child(3) { border-left: 0; }
}

@media (max-width: 600px) {
  .section-pad { padding: 64px 0; }
  .services-grid, .menu-tables, .pricing-grid, .values-grid, .process, .quotes-grid { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:first-child { border-top: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .hero-collage { height: 380px; }
  .hero-card.f2 { width: 52%; }
  .hero-badge { width: 88px; height: 88px; bottom: -20px; }
  .hero-badge b { font-size: 1.6rem; }
  .perk-list { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 28px 22px; }
  .menu-strip { grid-template-columns: 1fr; }
  .menu-item { border-left: 0; border-top: 1px solid var(--line); }
  .menu-item:first-child { border-top: 0; }
}

/* ============================================================
   Announcement ad bar (top)
   ============================================================ */
.adbar {
  position: relative; z-index: 950;
  background: var(--navy-2);
  border-bottom: 1px solid rgba(198, 161, 92, 0.4);
  color: var(--gold-foil-3); text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.adbar-track { position: relative; height: 44px; }
.adbar-slide { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 12px; padding: 0 120px; text-align: center; transition: opacity .55s var(--ease), transform .55s var(--ease); }
html:not(.js) .adbar-slide:not(.active) { display: none; }
html.js .adbar-slide:not(.active) { opacity: 0; transform: translateY(10px); pointer-events: none; }
.adbar-slide.active { opacity: 1; transform: none; pointer-events: auto; }
.ad-ic { font-size: 1.05rem; flex: 0 0 auto; }
.ad-text { font-size: 0.9rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ad-text b { font-weight: 800; }
.ad-link { font-weight: 800; font-size: 0.85rem; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; flex: 0 0 auto; }
.ad-link .arr { transition: transform .3s var(--ease); }
.ad-link:hover .arr { transform: translateX(3px); }
.adbar-dots { position: absolute; right: 54px; top: 50%; transform: translateY(-50%); display: flex; gap: 6px; z-index: 2; }
.adbar-dots button { width: 7px; height: 7px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.55); padding: 0; transition: .3s; }
.adbar-dots button.active { width: 20px; border-radius: 999px; background: var(--gold-foil-3); }
.adbar-close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: #ffffff; font-size: 1.4rem; line-height: 1;
  padding: 4px 8px; z-index: 2; opacity: .65; transition: opacity .25s, transform .25s;
}
.adbar-close:hover { opacity: 1; transform: translateY(-50%) scale(1.12); }
.adbar.closed { display: none; }

/* ============================================================
   Product marquee ("print on anything")
   ============================================================ */
.prodticker-section { background: var(--cream); border-bottom: 1px solid var(--line); padding-top: 46px; overflow: hidden; }
.prodticker-head { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }
.prodticker-head .kicker { margin-bottom: 0; }
.prodticker-head p { color: var(--muted); font-size: 1.02rem; }
.prodticker-head p b { color: var(--navy); }
.prodticker { padding: 26px 0 30px; overflow: hidden; }
.prodticker-track { display: flex; gap: 12px; width: max-content; animation: prodticker 80s linear infinite; }
.prodticker:hover .prodticker-track { animation-play-state: paused; }
.pill {
  flex: 0 0 auto; background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: 10px 20px; font-weight: 700; font-size: 0.95rem;
  color: var(--navy); white-space: nowrap;
}
/* quiet luxury: uniform pills, subtle hover */
.pill { transition: border-color .3s var(--ease), background .3s var(--ease); }
.pill:hover { border-color: var(--navy); }
@keyframes prodticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   Portfolio lightbox
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(8, 19, 31, 0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox figure { max-width: min(1080px, 92vw); max-height: 88vh; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.lightbox img { max-width: 100%; max-height: 76vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 30px 80px -20px rgba(0,0,0,0.75); }
.lightbox figcaption { color: var(--white); text-align: center; }
.lb-tag { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.lb-title { font-family: var(--font-display); font-size: 1.35rem; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.5rem; transition: .25s;
  backdrop-filter: blur(6px);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.06); }
.lb-next:hover { transform: translateY(-50%) scale(1.06); }
.lb-counter { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: var(--muted-2); font-size: 0.85rem; letter-spacing: 0.12em; }

/* ============================================================
   Back to top
   ============================================================ */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 800;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--navy); color: var(--gold); border: 0;
  font-size: 1.4rem; line-height: 1; box-shadow: 0 12px 30px -10px rgba(11,27,43,0.5);
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: .35s var(--ease);
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--gold); color: var(--white); }

/* Hero sub emphasis */
.hero .sub b { color: var(--gold-foil-3); font-weight: 700; }

/* ============================================================
   Responsive (new components)
   ============================================================ */
@media (max-width: 700px) {
  .adbar-track { height: 46px; }
  .adbar-slide { padding: 0 92px 0 12px; gap: 8px; justify-content: flex-start; text-align: left; }
  .ad-text { font-size: 0.8rem; }
  .ad-link { display: none; }
  .adbar-dots { right: 40px; }
  .prodticker-section { padding-top: 40px; }
  .lb-close { top: 16px; right: 16px; }
  .lb-prev, .lb-next { width: 44px; height: 44px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lightbox img { max-height: 70vh; }
}

/* ============================================================
   Price estimator
   ============================================================ */
.estimator-section { padding: 0 0 96px; background: var(--cream); }
.estimator-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white); border-radius: var(--radius-lg); padding: 56px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.estimator-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(720px 420px at 88% -12%, rgba(198,161,92,0.28), transparent 60%);
}
.estimator-card > * { position: relative; }
.estimator-head { max-width: 640px; margin-bottom: 40px; }
.estimator-head .kicker { color: var(--gold-foil-3); }
.estimator-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); color: var(--white); }
.estimator-head p { color: var(--muted-2); margin-top: 12px; font-size: 1.05rem; }
.estimator-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: stretch; }
.est-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-content: start; }
.est-fields .field { margin-bottom: 0; }
.est-fields .field-qty { grid-column: 1 / -1; }
.est-fields .field label { color: var(--muted-2); }
.est-fields .field select, .est-fields .field input {
  background: rgba(255,255,255,0.07); border: 1.5px solid var(--line-light); color: var(--white);
}
.est-fields .field select:focus, .est-fields .field input:focus {
  border-color: var(--gold-foil); box-shadow: 0 0 0 4px rgba(198,161,92,0.25);
  background: rgba(255,255,255,0.12); color: var(--white);
}
.est-fields .field select option { color: var(--ink); background: var(--white); }
.est-presets { grid-column: 1 / -1; display: flex; gap: 10px; flex-wrap: wrap; }
.est-presets button {
  background: rgba(255,255,255,0.08); border: 1px solid var(--line-light); color: var(--white);
  border-radius: 999px; padding: 8px 18px; font-weight: 700; font-size: 0.9rem; transition: .25s;
}
.est-presets button:hover, .est-presets button.active { background: var(--gold); border-color: var(--gold); }
.est-result {
  background: rgba(255,255,255,0.06); border: 1px solid var(--line-light);
  border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column;
}
.est-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-2); margin-bottom: 8px; }
.est-price { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.9rem); color: #E9C87E; line-height: 1.05; }
.est-note { color: var(--muted-2); font-size: 0.92rem; margin: 12px 0 20px; }
.est-result .btn { margin-top: auto; }
.est-disclaimer { color: var(--muted-2); font-size: 0.78rem; margin-top: 14px; text-align: center; }
@media (max-width: 900px) {
  .estimator-card { padding: 40px 28px; }
  .estimator-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .est-fields { grid-template-columns: 1fr; }
  .est-fields .field-qty { grid-column: auto; }
  .est-presets { grid-column: auto; }
}

/* ============================================================
   Print bundles (package deals added 2026-08-27)
   ============================================================ */
.pkg-grid { grid-template-columns: repeat(3, 1fr); }
.pkg-card { padding: 0 0 30px; overflow: hidden; }
.pkg-card.featured { padding-bottom: 29px; }
.pkg-banner { padding: 26px 26px 20px; color: var(--white); position: relative; }
.pkg-banner .pkg-flag { position: absolute; top: 14px; right: 16px; background: var(--gold-foil-3); color: var(--navy); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 10px; border-radius: 999px; }
.pkg-banner h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--white); }
.pkg-banner .pkg-price { font-family: var(--font-display); font-size: 2.3rem; font-weight: 800; line-height: 1.05; margin-top: 8px; }
.pkg-banner .pkg-sub { display: block; font-size: 0.82rem; opacity: 0.85; margin-top: 4px; }
.pkg-banner.navy { background: linear-gradient(135deg, var(--navy-2), var(--navy-3)); }
.pkg-banner.magenta { background: linear-gradient(135deg, #9A7735, #7A5B26); } /* champagne-bronze (quiet luxury) */
.pkg-banner.slate { background: linear-gradient(135deg, #455A7A, #6B7F9C); }
.pkg-card ul { padding: 0 26px; margin: 20px 0 6px; display: flex; flex-direction: column; gap: 11px; }
.pkg-card ul li { font-size: 0.9rem; color: var(--muted); }
.pkg-meta { padding: 0 26px; margin-top: 18px; }
.pkg-value { font-size: 0.85rem; color: var(--muted); }
.pkg-value s { color: var(--muted-2); }
.pkg-value .save { color: #1a7f4f; }
.pkg-turn { display: inline-block; background: #eaf7f0; color: #1a7f4f; font-size: 0.8rem; font-weight: 700; border-radius: 999px; padding: 6px 12px; margin-top: 10px; }
.pkg-card .btn { margin: auto 26px 0; width: calc(100% - 52px); }
.rush-band { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; background: linear-gradient(115deg, #13243E, #1B365C 55%, #24466B); color: var(--white); border: 1px solid rgba(198,161,92,0.35); border-radius: var(--radius-lg); padding: 26px 30px; margin-top: 30px; box-shadow: var(--shadow); }
.rush-band .rush-ic { font-size: 2rem; line-height: 1; }
.rush-band h3 { font-family: var(--font-display); color: var(--white); font-size: 1.3rem; margin-bottom: 4px; }
.rush-band p { color: rgba(255, 255, 255, 0.92); font-size: 0.92rem; max-width: 680px; }
.rush-band .btn { margin-left: auto; }
@media (max-width: 1080px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pkg-grid { grid-template-columns: 1fr; } .rush-band .btn { margin-left: 0; } }
/* ============================================================
   LUXURY REFRESH (2026-08-27) — logo CMYK palette + Playfair
   ============================================================ */
::selection { background: var(--gold-foil); color: var(--navy); }
body { letter-spacing: 0.01em; }

/* CMYK hairline under kickers — the signature process-bar motif */
.section-head .kicker { position: relative; padding-bottom: 14px; }
.section-head.center .kicker::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  bottom: 0; width: 72px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-foil), var(--gold-foil-3) 55%, var(--gold-foil-2));
}

/* Luxury top hairline on price cards (CMYK process bar) */
.price-card:not(.pkg-card)::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-foil), var(--gold-foil-3) 55%, var(--gold-foil-2));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0; opacity: 0.85;
}
.price-card.featured:not(.pkg-card) { border: 1.5px solid var(--gold-foil); }

/* Numerals in Playfair for prices/statistics */
.stat b, .stat-cell .n, .m-price, .pc-price b, .pkg-price, .est-price {
  font-variant-numeric: lining-nums; letter-spacing: 0.01em;
}

/* Ticker reads like an engraved marquee */
.ticker-track span { text-transform: uppercase; letter-spacing: 0.1em; }

/* Card hover — quieter, silkier lift */
.price-card:hover { box-shadow: 0 34px 80px -32px rgba(12, 26, 48, 0.4); }

/* ============================================================
   GOLD FOIL PASS (2026-08-27) — champagne gold supporting tone
   + larger, prouder editorial serif. CMYK stays the brand pop.
   ============================================================ */
:root {
  --gold-foil: #C6A15C;   /* champagne gold — accents & hairlines */
  --gold-foil-2: #9A7735; /* deep antique gold — text-safe on light */
  --gold-foil-3: #EDD9A7; /* pale champagne highlight */
}

/* ---- Louder, tighter, prouder serif ---- */
h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -0.015em; }
.hero h1 { font-size: clamp(2.6rem, 5.8vw, 5rem); line-height: 1.05; }
.section-title { font-size: clamp(2.2rem, 4vw, 3.4rem); }
.hero .sub { font-size: 1.2rem; line-height: 1.65; }
.stat b, .stat-cell .n, .m-price, .pc-price b, .pkg-price { font-weight: 600; }

/* ---- Engraved-gold numerals, prices, small labels ---- */
.stat-cell .n, .stat b { color: var(--gold-foil-2); }
.pc-price b, .pkg-price, .est-price, .m-price, .tag { color: var(--gold-foil-2); }
/* banner prices in white — deep gold was near-invisible on the magenta banner */
.pkg-banner .pkg-price { color: var(--white); }
/* category chips on dark tile overlays get bright champagne, not deep gold */
.t-cap .tag { color: #E9C87E; }

/* ---- Hero seal becomes an engraved gold ring ---- */
.hero-badge {
  background: linear-gradient(140deg, var(--gold-foil-3), var(--gold-foil) 55%, var(--gold-foil-2));
  box-shadow: 0 18px 44px -12px rgba(154, 119, 53, 0.55), inset 0 1px 0 rgba(255,255,255,0.5);
}
.hero-badge b { color: var(--navy); }
.hero-badge span { color: rgba(12,18,32,0.78); }

/* ---- "Most popular" flags in champagne gold ---- */
.pc-flag { background: linear-gradient(140deg, var(--gold-foil-3), var(--gold-foil)); color: var(--navy); }

/* ---- Active nav underline picks up a gold note at the tail ---- */
.nav-links a.active::after {
  background: linear-gradient(90deg, var(--gold-foil), var(--gold-foil-3), var(--gold-foil-2));
}

/* ---- Footer kept quiet, sealed with a gold hairline ---- */
.site-footer { border-top: 1px solid rgba(198, 161, 92, 0.32); }

/* ---- Featured card: magenta edge + a cold-gold corner glow ---- */
.price-card.featured:not(.pkg-card) {
  border: 1.5px solid var(--gold-foil);
  box-shadow: 0 34px 80px -32px rgba(12,26,48,0.42), 0 0 0 1px rgba(198,161,92,0.25);
}

/* ============================================================
   GILDED FIRST-IMPRESSION PASS (2026-08-27)
   Every page opens with a signature of luxury: gold foil ribbon,
   shimmering gold serif accent, engraved kicker, foil buttons.
   CMYK remains the brand's identity pop everywhere else.
   ============================================================ */

/* -- Top of every page: champagne-gold foil ribbon -- */
body::before {
  content: ""; position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 1300;
  background: linear-gradient(90deg, var(--gold-foil-2), var(--gold-foil) 30%, var(--gold-foil-3) 50%, var(--gold-foil) 70%, var(--gold-foil-2));
  box-shadow: 0 1px 8px rgba(198, 161, 92, 0.45);
}

/* ---- Header: deep glass, sealed with a gold hairline ---- */
.site-header {
  background: rgba(10, 15, 26, 0.92);
  border-bottom: 1px solid rgba(198, 161, 92, 0.28);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}

/* ---- Hero: gilded atmosphere (glow + vignette + fine grain) ---- */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(900px 420px at 78% -8%, rgba(198, 161, 92, 0.18), transparent 62%),
    radial-gradient(1200px 700px at 12% 118%, rgba(8, 12, 22, 0.6), transparent 62%),
    url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.30'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Engraved gold kicker: hairline rules flanking the place name ---- */
.hero .kicker {
  color: var(--gold-foil-3); letter-spacing: 0.36em;
  display: inline-flex; align-items: center; gap: 14px;
}
.hero .kicker::before, .hero .kicker::after {
  content: ""; width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-foil));
}
.hero .kicker::after { background: linear-gradient(90deg, var(--gold-foil), transparent); }

/* ---- Headline accent: gold foil italic with a slow shimmer ---- */
.hero h1 .accent { color: var(--gold-foil-2); }
@supports (background-clip: text) or (-webkit-background-clip: text) {
  .hero h1 .accent {
    background: linear-gradient(105deg,
      var(--gold-foil-3) 0%, var(--gold-foil) 28%,
      #F6E7C1 50%, var(--gold-foil) 72%, var(--gold-foil-2) 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    animation: foilShimmer 7s ease-in-out infinite;
  }
}
@keyframes foilShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* ---- Refined hero sub-copy ---- */
.hero .sub { color: rgba(244, 233, 205, 0.82); font-weight: 300; }

/* ---- Foil button: champagne gradient, navy type, shine sweep ---- */
.btn-foil {
  background: linear-gradient(160deg, #F0DCAB 0%, var(--gold-foil) 55%, var(--gold-foil-2) 100%);
  color: var(--navy);
  box-shadow: 0 14px 34px -10px rgba(154, 119, 53, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  position: relative; overflow: hidden;
}
.btn-foil::after {
  content: ""; position: absolute; top: 0; left: -70%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg); transition: left 0.65s var(--ease);
}
.btn-foil:hover::after { left: 130%; }
.btn-foil:hover { background: linear-gradient(160deg, #F5E5BE 0%, var(--gold-foil) 55%, var(--gold-foil-2) 100%); }

/* ---- Hero secondary: fine gold outline ---- */
.hero .btn-ghost {
  border: 1px solid rgba(198, 161, 92, 0.5); color: var(--gold-foil-3); background: transparent;
}
.hero .btn-ghost:hover { border-color: var(--gold-foil); background: rgba(198, 161, 92, 0.12); }

/* ---- Hero stats: engraved gold divider + numbers ---- */
.hero-stats { border-top: 1px solid rgba(198, 161, 92, 0.35); padding-top: 22px; }
.hero .stat b { letter-spacing: 0.02em; }

/* ---- Scroll cue glows gold ---- */
.scroll-cue { color: var(--gold-foil-2); }
.scroll-cue .line { background: linear-gradient(90deg, transparent, var(--gold-foil), transparent); }

/* ---- Marquee: champagne serif on jewelled lines ---- */
.ticker { border-top: 1px solid rgba(198, 161, 92, 0.35); border-bottom: 1px solid rgba(198, 161, 92, 0.35); }
.ticker-track span { color: var(--gold-foil-3); }

/* ---- Balanced display lines ---- */
h1, h2, h3 { text-wrap: balance; }

/* ---- Utility: any word becomes gold foil (for future use) ---- */
.gold-text {
  background: linear-gradient(105deg, var(--gold-foil-3), var(--gold-foil) 40%, var(--gold-foil-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ============================================================
   GOLD INTO CONTENT + TRUST PASS (2026-08-27)
   Championship gold flows through every section; the quote
   cards become gilded testimonials; form live-error styling.
   ============================================================ */

/* ---- Section headline accents read gold across the site ---- */
.section-title .accent, .section-title em.accent { color: var(--gold-foil-2); }

/* ---- Trust bar: icons glint gold ---- */
.trust-item .t-ic { color: var(--gold-foil-2); }

/* ---- Service cards: gold foil edge sweeping in on hover ---- */
.service-card { position: relative; }
.service-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, var(--gold-foil-2), var(--gold-foil), var(--gold-foil-3));
  opacity: 0; transition: opacity .45s;
}
.service-card:hover::before { opacity: 1; }

/* ---- Testimonials: gold stars, foiled quote mark, silk cards ---- */
.quote-card {
  background: linear-gradient(180deg, #FFFFFF, #FCF8EF);
  border: 1px solid rgba(198, 161, 92, 0.28);
  box-shadow: 0 24px 50px -26px rgba(12, 26, 48, 0.28);
  position: relative;
}
.quote-card::before {
  content: "\201C"; position: absolute; top: 2px; left: 22px;
  font-family: var(--font-display); font-size: 4.8rem; line-height: 1;
  background: linear-gradient(160deg, var(--gold-foil-3), var(--gold-foil), var(--gold-foil-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: 0.9; pointer-events: none;
}
.stars { color: var(--gold-foil); }
.quote-card blockquote { font-weight: 600; font-style: italic; }
.quote-card .av {
  background: linear-gradient(160deg, var(--gold-foil-3), var(--gold-foil));
  color: var(--navy); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

/* ---- Verifiable reviews: Google note ---- */
.review-note { margin-top: 28px; text-align: center; color: var(--muted); font-size: 0.92rem; }
.review-note a {
  color: var(--gold-foil-2); font-weight: 700; text-decoration: underline; text-underline-offset: 3px;
}
.review-note a:hover { color: var(--gold-foil); }

/* ---- Contact form: live error state ---- */
.form-error {
  margin-top: 16px; text-align: center; font-weight: 700; color: #8F1F1F;
  background: #FBEAEA; padding: 14px; border-radius: 12px;
}

/* ---- Respect guests who prefer reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .hero h1 .accent { animation: none; background-position: 0% 50%; }
  .hero-badge, .ticker-track, .service-card:hover, [class*="reveal"] { animation: none !important; transition: none !important; }
}

/* ============================================================
   HERO WOW PASS (2026-08-27) — bigger imagery, gold foil, drama
   ============================================================ */

/* ---- Foil CTA (was never defined — now the hero centrepiece) ---- */
.btn-foil {
  background: linear-gradient(120deg, var(--gold-foil-3) 0%, var(--gold-foil) 40%, var(--gold-foil-2) 100%);
  color: var(--navy) !important;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.65);
  position: relative; overflow: hidden;
}
.btn-foil::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-22deg); animation: foil-sweep 3.6s ease-in-out infinite;
}
.btn-foil:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.65); }
.btn-gold {
  background: linear-gradient(120deg, var(--gold-foil-3), var(--gold-foil) 45%, var(--gold-foil-2));
  color: var(--navy);
  box-shadow: 0 8px 22px -8px rgba(0, 0, 0, 0.4);
}
.btn-gold:hover { background: linear-gradient(120deg, var(--gold-foil), var(--gold-foil-2) 60%, var(--gold-foil-2)); }

/* ---- Hero backdrop: deeper navy + warm gold glow ---- */
.hero {
  background:
    radial-gradient(1100px 620px at 82% 6%, rgba(198, 161, 92, 0.14), transparent 62%),
    radial-gradient(900px 700px at 8% 108%, rgba(27, 58, 87, 0.65), transparent 60%),
    linear-gradient(160deg, #1B365C 0%, #13243E 58%, #0E1B2E 100%);
}
.hero::before {
  background:
    radial-gradient(760px 460px at 78% 18%, rgba(237, 217, 167, 0.16), transparent 64%),
    radial-gradient(640px 420px at 96% 78%, rgba(198, 161, 92, 0.10), transparent 60%);
}
.hero::after {
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(760px 480px at 72% 16%, #000, transparent 72%);
}

/* ---- Gold hairline across the very top of the hero ---- */
.hero-topline {
  position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 3;
  background: linear-gradient(90deg, transparent, var(--gold-foil-3) 18%, var(--gold-foil) 50%, var(--gold-foil-2) 82%, transparent);
  pointer-events: none;
}

/* ---- Kicker with gold rule ---- */
.kicker-light { display: inline-flex; align-items: center; gap: 14px; color: var(--gold-foil-3); }
.kicker-rule { width: 34px; height: 2px; background: linear-gradient(90deg, var(--gold-foil), var(--gold-foil-2)); border-radius: 2px; display: inline-block; }

/* ---- Headline: big, bright, foil shimmer ---- */
.hero h1 { letter-spacing: -0.01em; }
.hero h1 .accent {
  background: linear-gradient(100deg, var(--gold-foil-3) 0%, var(--gold-foil) 28%, #F6E7BE 50%, var(--gold-foil) 72%, var(--gold-foil-2) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: h1-sheen 6s linear infinite;
  position: relative; font-style: italic;
}
@keyframes h1-sheen { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }

/* ---- Stats: gold numbers + hairlines ---- */
.hero-stats { gap: 0; margin-top: 48px; }
.hero-stats .stat { padding: 0 34px; border-left: 1px solid rgba(198, 161, 92, 0.35); }
.hero-stats .stat:first-child { padding-left: 0; border-left: 0; }
.hero-stats .stat b { font-size: 2.3rem; letter-spacing: -0.02em; }

/* ---- Collage: taller, framed, floating drama ---- */
.hero-collage { height: 620px; }
.hero-plate {
  position: absolute; left: 18px; top: 16px; width: 66%; height: 76%;
  border: 2px solid rgba(198, 161, 92, 0.75); border-radius: 30px; z-index: 0;
  box-shadow: 0 0 60px -18px rgba(198, 161, 92, 0.35);
}
.hero-card.main {
  width: 64%; height: 72%; left: 44px; top: 40px; z-index: 2;
  border-radius: 24px; border: 0;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.65);
}
.hero-card.main img { transform: scale(1.01); }
.hero-card .corner {
  position: absolute; width: 34px; height: 34px; z-index: 3; pointer-events: none;
  opacity: 0.95;
}
.hero-card .corner.tl { top: 10px; left: 10px; border-top: 3px solid var(--gold-foil); border-left: 3px solid var(--gold-foil); border-top-left-radius: 12px; }
.hero-card .corner.br { bottom: 10px; right: 10px; border-bottom: 3px solid var(--gold-foil); border-right: 3px solid var(--gold-foil); border-bottom-right-radius: 12px; }

/* ---- Polaroid cards: white frame, gentle float ---- */
.hero-card.polaroid {
  border: 10px solid #FFFDF7; border-bottom-width: 34px; border-radius: 14px;
  box-shadow: 0 26px 54px -18px rgba(0, 0, 0, 0.6);
  animation: polaroid-float 7s ease-in-out infinite;
}
.hero-card.polaroid::after {
  content: ""; position: absolute; left: 50%; bottom: -22px; transform: translateX(-50%);
  width: 9px; height: 9px; border-radius: 50%; background: rgba(198, 161, 92, 0.85);
}
.hero-card.f2 { width: 40%; height: 34%; right: -6px; top: 26px; z-index: 4; rotate: 2.5deg; }
.hero-card.f3 { width: 34%; height: 28%; right: 12%; bottom: 2%; z-index: 5; rotate: -3deg; }
@keyframes polaroid-float { 0%, 100% { transform: translateY(0) rotate(2.5deg); } 50% { transform: translateY(-12px) rotate(2.5deg); } }

/* ---- Mini card (neon) tucked behind main ---- */
.hero-card.mini {
  width: 26%; height: 36%; left: 70%; bottom: 30%; z-index: 1;
  border-radius: 18px; border: 6px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 44px -18px rgba(0, 0, 0, 0.55);
  opacity: 0.96; transform: rotate(4deg);
}

/* ---- Gold badge: foil ball with sheen ---- */
.hero-badge {
  animation: floaty 5.5s ease-in-out infinite;
  left: -26px; bottom: -14px; width: 104px; height: 104px; z-index: 6;
  background: linear-gradient(140deg, var(--gold-foil-3), var(--gold-foil) 48%, var(--gold-foil-2));
  color: var(--navy); overflow: hidden;
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.hero-badge b { font-size: 2.1rem; }
.hero-badge i.badge-sheen {
  position: absolute; top: -60%; left: -30%; width: 70%; height: 200%;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.55) 50%, transparent 80%);
  transform: rotate(18deg); animation: foil-sheen 5.5s ease-in-out infinite;
}
.hero-chip { background: #FFFDF7; border: 1px solid rgba(198, 161, 92, 0.4); box-shadow: 0 16px 40px -14px rgba(0, 0, 0, 0.5); }
.hero-chip .dot { background: var(--gold-foil); box-shadow: 0 0 0 0 rgba(198, 161, 92, 0.6); animation: pulse-gold 2s infinite; }
@keyframes pulse-gold { 0% { box-shadow: 0 0 0 0 rgba(198,161,92,.55); } 70% { box-shadow: 0 0 0 12px rgba(198,161,92,0); } 100% { box-shadow: 0 0 0 0 rgba(198,161,92,0); } }

/* ---- Floating gold dust ---- */
.dust {
  position: absolute; width: 7px; height: 7px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #F6E4BE, var(--gold-foil) 70%);
  filter: blur(0.4px); z-index: 2; opacity: 0.9; pointer-events: none;
  animation: dust-drift 9s ease-in-out infinite;
}
.dust.d1 { top: 8%; left: 30%; animation-delay: 0s; }
.dust.d2 { top: 20%; right: 4%; width: 5px; height: 5px; animation-delay: 2.4s; }
.dust.d3 { bottom: 16%; left: 46%; width: 6px; height: 6px; animation-delay: 4.8s; }
@keyframes dust-drift { 0%, 100% { transform: translate(0, 0) scale(1); opacity: .85; } 25% { transform: translate(-14px, -22px) scale(1.15); opacity: 1; } 50% { transform: translate(8px, -40px) scale(0.9); opacity: .6; } 75% { transform: translate(-6px, -18px) scale(1.05); opacity: .9; } }
@keyframes foil-sheen { @keyframes foil-sweep { 0%, 22% { left: -80%; } 55%, 100% { left: 130%; } } 0%, 22% { left: -80%; } 55%, 100% { left: 130%; } }

/* ---- Foil ticker bar under the hero ---- */
.ticker.foil {
  background: linear-gradient(100deg, var(--gold-foil) 0%, var(--gold-foil-2) 55%, #8A6A2F 100%);
  border: none; padding: 22px 0;
  box-shadow: 0 18px 44px -22px rgba(154, 119, 53, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.ticker.foil .ticker-track span { color: var(--navy); font-weight: 800; }
.ticker.foil .ticker-track i { color: rgba(27, 58, 87, 0.55); font-size: 0.8em; }

/* ---- Reveal-on-load hero drama ---- */
.hero .hero-copy > * { animation: heroRise .8s var(--ease) both; }
.hero .hero-copy > *:nth-child(1) { animation-delay: .05s; }
.hero .hero-copy > *:nth-child(2) { animation-delay: .15s; }
.hero .hero-copy > *:nth-child(3) { animation-delay: .25s; }
.hero .hero-copy > *:nth-child(4) { animation-delay: .35s; }
.hero .hero-copy > *:nth-child(5) { animation-delay: .45s; }
@keyframes heroRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
.hero .hero-visual { animation: heroRise .9s .3s var(--ease) both; }

/* ---- Mobile: keep the drama but fit ---- */
@media (max-width: 900px) {
  .hero-collage { height: 480px; }
  .hero-card.f2 { width: 34%; }
  .hero-card.f3 { width: 46%; }
  .hero-card.mini { left: 64%; }
  .hero-badge { width: 104px; height: 104px; bottom: -22px; }
  .hero-badge b { font-size: 1.7rem; }
}
@media (max-width: 560px) {
  .hero-collage { height: 420px; }
  .hero-plate { width: 72%; height: 80%; }
  .hero-card.main { width: 70%; left: 34px; top: 34px; }
  .hero-card.f2 { width: 34%; }
  .hero-card.f3 { width: 46%; right: 6%; }
  .hero-card.mini { width: 30%; height: 34%; left: 66%; }
  .hero-badge { display: flex; }
  .dust { display: block; }
}

/* ============================================================
   BRAND & PRINT READINESS CHECKLIST POPUP (2026-08-27, v2 polish)
   First-visit lead magnet popup — navy + gold foil, on-brand.
   ============================================================ */
.checklist-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  overscroll-behavior: contain;
}
.checklist-modal[hidden] { display: none; }
body.cl-lock { overflow: hidden; }
.cl-backdrop {
  position: absolute; inset: 0;
  background: rgba(9, 20, 38, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: clFade .35s ease both;
}
.cl-card {
  position: relative; z-index: 1;
  width: min(920px, 100%);
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  background: #FFFDF8; color: var(--navy);
  border-radius: 22px;
  overflow-x: hidden; overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(198, 161, 92, 0.35);
  animation: cl-rise .45s cubic-bezier(.22,1,.36,1) both;
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
}
.cl-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; z-index: 5;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-foil-3), var(--gold-foil) 50%, var(--gold-foil-2));
}
.cl-close {
  position: absolute; top: 14px; right: 14px; z-index: 6;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(11, 27, 43, 0.08); border: 0; cursor: pointer;
  color: var(--navy); font-size: 1.3rem; line-height: 1;
  display: grid; place-items: center;
  transition: background .25s, transform .25s, color .25s;
}
.cl-close:hover { background: rgba(11, 27, 43, 0.16); transform: rotate(90deg); }
.cl-close:focus-visible { outline: 2px solid var(--gold-foil); outline-offset: 2px; }

/* Left: offer copy */
.cl-copy {
  position: relative;
  background:
    radial-gradient(700px 420px at 0% 0%, rgba(198, 161, 92, 0.16), transparent 60%),
    linear-gradient(155deg, #1B365C 0%, #13243E 62%, #0E1B2E 100%);
  color: #FAF7F2; padding: 42px 40px 36px;
  display: flex; flex-direction: column; justify-content: center; gap: 15px;
  overflow: hidden;
}
.cl-copy::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 26px 26px; pointer-events: none;
  mask-image: radial-gradient(560px 380px at 90% 10%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(560px 380px at 90% 10%, #000, transparent 75%);
}
.cl-copy > * { position: relative; z-index: 1; }
.cl-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-foil-3);
}
.cl-kicker::before {
  content: ""; width: 30px; height: 2px; flex: none;
  background: linear-gradient(90deg, var(--gold-foil), var(--gold-foil-2)); border-radius: 2px;
}
.cl-copy h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem); line-height: 1.16; color: #FAF7F2; margin-bottom: 2px;
}
.cl-copy h2 .cl-accent {
  background: linear-gradient(100deg, var(--gold-foil-3), var(--gold-foil) 45%, var(--gold-foil-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-fill-color: transparent;
  font-style: italic; font-weight: 700;
}
.cl-intro { color: rgba(250, 247, 242, 0.85); font-size: 0.98rem; line-height: 1.6; }
.cl-intro b { color: #FAF7F2; }
.cl-perks { list-style: none; display: grid; gap: 10px; margin: 2px 0; }
.cl-perks li {
  position: relative; padding-left: 34px;
  color: rgba(250, 247, 242, 0.9); font-size: 0.94rem; line-height: 1.45;
}
.cl-perks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(140deg, var(--gold-foil-3), var(--gold-foil));
  color: var(--navy); font-weight: 900; font-size: 0.72rem;
  display: grid; place-items: center;
}
.cl-note { color: rgba(250, 247, 242, 0.55); font-size: 0.82rem; font-style: italic; margin: 2px 0 0; padding-right: 124px; }
.cl-trust {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.78rem; color: rgba(250, 247, 242, 0.72); letter-spacing: 0.01em;
  padding-right: 124px;
}
.cl-trust .stars {
  color: var(--gold-foil); font-size: 0.72rem; letter-spacing: 0.18em; white-space: nowrap;
}
.cl-seal {
  position: absolute; right: 22px; bottom: 20px; z-index: 2;
  width: 108px; height: 108px; border-radius: 50%;
  background: linear-gradient(140deg, var(--gold-foil-3), var(--gold-foil) 50%, var(--gold-foil-2));
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  color: var(--navy);
  box-shadow: 0 18px 44px -14px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.65);
  animation: floaty 5.5s ease-in-out infinite;
}
.cl-seal::after {
  content: ""; position: absolute; inset: 7px; border-radius: 50%;
  border: 1.5px dashed rgba(19, 36, 62, 0.4); pointer-events: none;
}
.cl-seal b { font-family: var(--font-display); font-size: 1.4rem; line-height: 1; }
.cl-seal span { font-size: 0.56rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; line-height: 1.35; padding: 0 10px; }

/* Right: form */
.cl-formwrap { position: relative; padding: 44px 38px 34px; display: flex; flex-direction: column; justify-content: center; }
.cl-ribbon {
  align-self: flex-start; margin-bottom: 12px;
  font-size: 0.62rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--gold-foil-2); border: 1.5px solid rgba(198, 161, 92, 0.55);
  padding: 5px 12px; border-radius: 999px; background: rgba(198, 161, 92, 0.07);
}
.cl-formwrap h3 { font-size: 1.45rem; margin: 0 0 6px; }
.cl-sub { color: var(--muted); font-size: 0.88rem; margin: 0 0 18px; }
.cl-form { display: grid; gap: 13px; }
.cl-field { display: grid; gap: 5px; }
.cl-field label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--navy); }
.cl-field label i { color: var(--gold-foil-2); font-style: normal; }
.cl-field input, .cl-field select {
  width: 100%; padding: 12px 14px; font: inherit; font-size: 0.95rem;
  border: 1.5px solid #D8DCE3; border-radius: 10px; background: #FFFFFF; color: var(--navy);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.cl-field input:hover, .cl-field select:hover { border-color: #BFC7D4; }
.cl-field input:focus, .cl-field select:focus {
  outline: none; border-color: var(--gold-foil); box-shadow: 0 0 0 3px rgba(198, 161, 92, 0.22);
}
.cl-field input::placeholder { color: #9AA3B2; }
.cl-field input:-webkit-autofill,
.cl-field input:-webkit-autofill:hover,
.cl-field input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 40px #FFFFFF inset;
  -webkit-text-fill-color: var(--navy);
  transition: background-color 9999s ease-in-out 0s;
}
.cl-field select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  padding-right: 40px; cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2313243E' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center;
}
.cl-field select:has(option[value=""]:checked) { color: #8792A6; }
.cl-field select option { color: var(--navy); }
.cl-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.78rem; color: var(--muted); cursor: pointer; line-height: 1.45; }
.cl-consent input { margin-top: 2px; accent-color: var(--gold-foil); width: 15px; height: 15px; flex: none; cursor: pointer; }
.cl-consent.cl-error span { color: #B3261E; font-weight: 600; }
.cl-consent.cl-error { animation: clShake .4s ease; }
.cl-submit {
  width: 100%; padding: 15px 20px; margin-top: 2px;
  background: linear-gradient(120deg, var(--gold-foil-3), var(--gold-foil) 42%, var(--gold-foil-2));
  color: var(--navy); border: 0; border-radius: 12px; cursor: pointer;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem; letter-spacing: 0.04em;
  box-shadow: 0 14px 30px -12px rgba(154, 119, 53, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform .25s, box-shadow .25s, filter .25s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.cl-submit .arr { display: inline-block; transition: transform .25s; }
.cl-submit:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -14px rgba(154, 119, 53, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.6); }
.cl-submit:hover .arr { transform: translateX(4px); }
.cl-submit:active { transform: translateY(0) scale(0.99); }
.cl-submit:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }
.cl-submit:disabled { opacity: 0.75; cursor: wait; transform: none; }
.cl-status { font-size: 0.85rem; text-align: center; min-height: 1.2em; margin: 0; line-height: 1.4; }
.cl-status.ok {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: #177245; font-weight: 700; text-align: left;
  background: #EAF6EF; border: 1px solid #BFE5CF; border-radius: 10px; padding: 10px 12px;
}
.cl-status.ok::before { content: "✓"; flex: none; width: 18px; height: 18px; border-radius: 50%; background: #177245; color: #fff; font-size: 0.68rem; display: grid; place-items: center; }
.cl-status.err {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: #B3261E; font-weight: 700; text-align: left;
  background: #FCEFED; border: 1px solid #F2C4BE; border-radius: 10px; padding: 10px 12px;
}
.cl-status.err::before { content: "!"; flex: none; width: 18px; height: 18px; border-radius: 50%; background: #B3261E; color: #fff; font-size: 0.72rem; font-weight: 900; display: grid; place-items: center; }
.cl-download {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; margin-top: 10px; padding: 13px 18px;
  border-radius: 12px; text-decoration: none;
  background: linear-gradient(135deg, #D9BC8A, #C6A15C 45%, #B08A45);
  color: #13243E; font-weight: 800; font-size: 0.95rem; letter-spacing: 0.01em;
  box-shadow: 0 10px 22px -10px rgba(176, 138, 69, 0.75), inset 0 1px 0 rgba(255,255,255,0.55);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.cl-download .cl-dl-ico {
  display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(19, 36, 62, 0.12); font-size: 0.9rem; line-height: 1;
}
.cl-download:hover, .cl-download:focus-visible { transform: translateY(-1px); filter: brightness(1.04); box-shadow: 0 14px 26px -10px rgba(176, 138, 69, 0.85), inset 0 1px 0 rgba(255,255,255,0.55); }
.cl-download:active { transform: translateY(0); }
.cl-download:focus-visible { outline: 2px solid #13243E; outline-offset: 2px; }

@keyframes clFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes cl-rise { from { opacity: 0; transform: translateY(30px) scale(0.97); } to { opacity: 1; transform: none; } }
@keyframes clShake { 0%,100% { transform: translateX(0); } 25% { transform: translateX(-5px); } 50% { transform: translateX(5px); } 75% { transform: translateX(-3px); } }

/* Mobile: stack, keep it compact */
@media (max-width: 760px) {
  .checklist-modal { padding: 12px; align-items: flex-end; }
  .cl-card {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    width: 100%;
  }
  .cl-close { background: rgba(250, 247, 242, 0.16); color: #FAF7F2; }
  .cl-close:hover { background: rgba(250, 247, 242, 0.3); }
  .cl-copy { padding: 40px 24px 26px; gap: 13px; }
  .cl-kicker { font-size: 0.68rem; letter-spacing: 0.18em; }
  .cl-kicker::before { display: none; }
  .cl-copy h2 { font-size: 1.32rem; }
  .cl-perks li { font-size: 0.88rem; padding-left: 30px; }
  .cl-perks li::before { width: 20px; height: 20px; font-size: 0.66rem; }
  .cl-note { font-size: 0.78rem; padding-right: 0; }
  .cl-trust { padding-right: 0; }
  .cl-trust { font-size: 0.72rem; flex-wrap: wrap; }
  .cl-seal {
    position: static; width: auto; height: auto; align-self: flex-start;
    flex-direction: row; align-items: center; gap: 8px;
    padding: 8px 14px; border-radius: 999px; margin-top: 2px;
    animation: none;
  }
  .cl-seal::after { inset: 4px; border-radius: 999px; }
  .cl-seal b { font-size: 1rem; }
  .cl-seal span { margin-top: 0; padding: 0; font-size: 0.54rem; }
  .cl-seal br { display: none; }
  .cl-formwrap { padding: 32px 24px 26px; }
  .cl-ribbon { margin-bottom: 10px; }
  .cl-formwrap h3 { font-size: 1.3rem; }
  .cl-field input, .cl-field select { font-size: 16px; padding: 12px 13px; }
  .cl-field select { padding-right: 38px; }
}
@media (prefers-reduced-motion: reduce) {
  .cl-card, .cl-backdrop, .cl-seal, .cl-consent.cl-error { animation: none; }
  .cl-submit, .cl-submit .arr, .cl-close { transition: none; }
}

/* interactive-first link in checklist popup */
a.cl-interactive { display: block; margin-top: 14px; text-align: center; font-size: 13.5px; font-weight: 700; color: #1B365C; text-decoration: underline; text-underline-offset: 3px; }
a.cl-interactive:hover { color: #B08A45; }

.cl-download[hidden], .cl-interactive[hidden] { display: none !important; }

/* ---- Christmas 2026 accents ---- */
.xmas-link { color: var(--gold-foil) !important; font-weight: 700; }
.adbar-slide.xmas-slide .ad-link { color: var(--gold-foil); }

.pkg-link { color: var(--gold-foil-2) !important; font-weight: 700; }

/* "from" price eyebrows */
.pkg-banner .pkg-price .pfrom, .m-price .pfrom { display:block; font-size:0.72rem; font-weight:600; text-transform:uppercase; letter-spacing:0.14em; margin-bottom:3px; }
.pkg-banner .pkg-price .pfrom { color:rgba(255,255,255,0.8); }
.m-price .pfrom { color:var(--muted); }

/* ===== v68: nav dropdowns ===== */
.nav-links li.has-sub{position:relative}
.nav-links li.has-sub > a::after{content:"\25BE";font-size:.62em;margin-left:7px;opacity:.7;display:inline-block;transform:translateY(-1px)}
.nav-sub{position:absolute;top:calc(100% + 14px);left:50%;transform:translate(-50%,10px);min-width:240px;background:#fff;border:1px solid rgba(198,161,92,.28);border-radius:16px;box-shadow:0 26px 60px -18px rgba(0,0,0,.5);padding:10px;margin:0;list-style:none;opacity:0;visibility:hidden;transition:opacity .18s,transform .18s,visibility .18s;z-index:80}
.nav-sub::before{content:"";position:absolute;left:0;right:0;top:-14px;height:14px}
.nav-links li.has-sub:hover > .nav-sub,.nav-links li.has-sub:focus-within > .nav-sub{opacity:1;visibility:visible;transform:translate(-50%,0)}
.nav-sub a{display:block;padding:10px 14px;border-radius:10px;color:var(--navy)!important;background:none!important;font-weight:600;font-size:.9rem;white-space:nowrap;border-bottom:0}
.nav-sub a:hover{background:#F7F0E1;color:var(--gold)!important}
.nav-sub li{margin:0}
.nav-links li.has-sub.open > .nav-sub{opacity:1;visibility:visible;transform:translate(-50%,0)}
.nav-links li.has-sub.open > a::after{transform:rotate(180deg)}

/* ---------- contact page: branded SVG icons for info cards ---------- */
.info-card > div { width: 100%; }
.info-card .t-ic { flex: 0 0 auto; }

.info-card .t-ic{width:48px;height:48px;border-radius:14px}
.info-card .contact-ic svg{display:block}
.info-card .contact-ic.ic-call{background:rgba(198,161,92,.12);color:var(--gold-foil-2)}
.info-card .contact-ic.ic-mail{background:rgba(44,169,225,.13);color:#1E8EC4}
.info-card .contact-ic.ic-pin{background:rgba(198,161,92,.16);color:#A07E3B}
.info-card .contact-ic.ic-clock{background:rgba(16,24,43,.08);color:#1B2A44}
.info-card{transition:transform .2s,box-shadow .2s}
.info-card:hover{transform:translateY(-3px);box-shadow:0 14px 30px -16px rgba(11,27,43,.28)}
.info-card .t-ic{transition:transform .2s}
.info-card:hover .t-ic{transform:scale(1.07) rotate(-3deg)}

/* ---------- v84: guarantee glyph centred inside icon tile ---------- */
.info-card .contact-ic{display:flex;align-items:center;justify-content:center;padding:0}
.info-card .contact-ic svg{flex:0 0 auto;width:22px;height:22px}

/* ---------- v85: polished stacked contact cards (full centre axis) ---------- */
.info-card{align-items:center;text-align:center;gap:0;padding:28px 24px 26px}
.info-card > div{width:100%}
.info-card .t-ic{margin-bottom:14px;box-shadow:0 8px 16px -10px rgba(11,27,43,.30)}
.info-card b{margin-bottom:4px;letter-spacing:.01em}
.info-card a{margin-bottom:2px;overflow-wrap:anywhere}
.info-card span{line-height:1.55}
.info-card:hover .t-ic{transform:scale(1.06)}

/* ============================================================
   QUIET LUXURY COMPLETION (2026-09-11) — magenta retired site-wide.
   Accents read champagne; dark bands use the pale highlight tone.
   ============================================================ */
.cta-band .accent, .page-hero .accent, .pkgband .accent { color: var(--gold-foil-3); }

/* ---------- FAQ blocks (shared) ---------- */
.faq-list { max-width: 760px; margin: 26px auto 0; }
.faq-item { background:#fff; border:1px solid #E7E1D4; border-radius:12px; padding:16px 20px; margin-bottom:10px; }
.faq-item h3 { font-size:15px; font-weight:700; color:var(--navy); margin:0 0 4px; }
.faq-item p { margin:0; font-size:14px; color:var(--muted); }

/* Header logo sizing — 14 Sep */
.footer-brand .brand-logo{height:44px}
@media (max-width:1240px){.nav-links{display:none}.nav-toggle{display:flex}.nav-cta .btn{display:none}.mobile-menu.open{display:block}.brand-logo{height:36px}}

/* ---- v80 polish: estimate select contrast + essential card top ---- */
.est-fields .field select option { color: var(--ink); background: var(--white); }
.est-fields .field select { -webkit-appearance: none; appearance: none; background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.85) 50%), linear-gradient(135deg, rgba(255,255,255,0.85) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.est-price { color: var(--gold-foil-3); }
