/* De Art Studio — landing page styles */

:root {
  --brand-primary: #D7BF44;
  --brand-secondary: #000000;
  --brand-accent: #8A8578;
  --brand-text: #333333;
  --brand-bg: #FFFFFF;
  --brand-primary-10: color-mix(in srgb, #D7BF44 10%, transparent);
  --brand-primary-15: color-mix(in srgb, #D7BF44 15%, transparent);
  --brand-primary-20: color-mix(in srgb, #D7BF44 20%, white);
  --brand-dark: color-mix(in srgb, #D7BF44 80%, #0f172a);
  --ivory: #FAF9F7;
  --sand: #F0EDE8;
  --stone: #E8E4DD;
  --taupe: #D8D1C5;
  --walnut: #8C6E4E;
  --espresso: #000000;
  --charcoal: #2B2B2B;
  --line: rgba(0,0,0,0.10);
  --line-soft: rgba(0,0,0,0.06);
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-xl: 0px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --display: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; border-radius: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans); font-size: 17px; line-height: 1.7;
  color: var(--brand-text); background: var(--brand-bg);
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1,h2,h3,h4,h5 { font-family: var(--display); font-weight: 500; color: var(--espresso); line-height: 1.1; letter-spacing: -0.01em; text-wrap: balance; }
p { text-wrap: pretty; }

.eyebrow {
  font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--charcoal); display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--brand-primary); }

section { --sx: 64px; --sy: 96px; padding: var(--sy) var(--sx); position: relative; }
@media (min-width: 1441px) { section { --sx: 100px; --sy: 104px; } }
@media (max-width: 1024px) { section { --sx: 32px; --sy: 64px; } }
@media (max-width: 720px)  { section { --sx: 16px; --sy: 48px; } }
section.has-cta { padding-bottom: 0; }

.container { max-width: 1400px; margin: 0 auto; }

/* Grid items default to min-width:auto, which lets wide children push past the viewport. */
.hero-grid > *, .final-grid > *, .prod-panel > *, .problem-grid > *, .faq-layout > *,
.section-cta-inner > *, .footer-grid > *, .swatch-detail > *, .review-featured > * { min-width: 0; }
.form-row input, .form-row select, .form-row textarea { max-width: 100%; }

/* ===== FABRIC TEXTURE (shared by curtain panels and swatches) ===== */
.fabric {
  background-color: var(--taupe);
  background-image:
    repeating-linear-gradient(90deg, rgba(0,0,0,0.06) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.20) 0 3px, rgba(255,255,255,0.24) 3px 9px, rgba(0,0,0,0.05) 9px 30px, rgba(255,255,255,0.11) 30px 38px),
    linear-gradient(90deg, rgba(0,0,0,0.32), rgba(0,0,0,0.02) 22%, rgba(255,255,255,0.20) 48%, rgba(0,0,0,0.12) 74%, rgba(0,0,0,0.36));
}

/* ===== STICKY HEADER (black) ===== */
.sticky-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--espresso);
  border-bottom: 1px solid color-mix(in srgb, var(--ivory) 14%, transparent);
  height: 72px; display: flex; align-items: center;
}
.sticky-header-inner { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.header-logo img { height: 40px; max-width: 190px; object-fit: contain; }
.header-nav { display: flex; gap: 30px; font-size: 13px; letter-spacing: 0.02em; }
.header-nav a { color: color-mix(in srgb, var(--ivory) 82%, transparent); transition: color 0.2s; }
.header-nav a:hover { color: var(--brand-primary); }
.header-right { display: flex; align-items: center; gap: 18px; }
.header-whatsapp {
  display: inline-flex; align-items: center; gap: 8px; color: #FFFFFF;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s;
}
.header-whatsapp svg { fill: #FFFFFF; transition: fill 0.2s; }
.header-whatsapp:hover, .header-whatsapp:hover svg { color: var(--brand-primary); fill: var(--brand-primary); }
.header-right .btn { background: var(--brand-primary); color: var(--espresso); border-color: var(--brand-primary); }
.header-right .btn:hover { background: #FFFFFF; border-color: #FFFFFF; color: var(--espresso); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 30px; min-height: 52px;
  font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--espresso); color: var(--ivory); border: 1px solid var(--espresso);
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
  cursor: pointer; text-align: center; white-space: nowrap;
}
.btn:hover { background: var(--charcoal); }
.btn-line { background: transparent; color: var(--espresso); border: 1px solid var(--espresso); }
.btn-line:hover { background: var(--espresso); color: var(--ivory); }
.btn-sm { padding: 11px 20px; min-height: 42px; font-size: 11px; }
.btn-full { width: 100%; }

@media (max-width: 1100px) { .header-nav { display: none; } .sticky-header-inner { padding: 0 24px; } }
@media (max-width: 720px) {
  .sticky-header { height: 58px; }
  .sticky-header-inner { padding: 0 16px; gap: 12px; }
  .header-logo img { height: 30px; max-width: 132px; }
  .header-whatsapp { display: none; }
  .header-right .btn { padding: 10px 14px; font-size: 10px; letter-spacing: 0.08em; }
}
@media (max-width: 380px) { .header-logo img { max-width: 104px; } .header-right .btn { padding: 10px 10px; letter-spacing: 0.05em; } }

/* ===== CTA BAND (gold, bleeds to the section edges so it never reads as a footer) ===== */
.section-cta {
  margin: 64px calc(-1 * var(--sx)) 0;
  padding: 16px var(--sx);
  background: var(--brand-primary);
  color: var(--espresso);
}
.section-cta-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.section-cta-copy { font-family: var(--display); font-size: 19px; line-height: 1.35; color: var(--espresso); }
@media (min-width: 1100px) { .section-cta-copy { white-space: nowrap; } }
.section-cta-actions { display: grid; grid-auto-flow: column; gap: 10px; }
.section-cta .btn { background: var(--espresso); color: var(--ivory); border-color: var(--espresso); min-width: 220px; padding: 12px 22px; min-height: 44px; }
.section-cta .btn:hover { background: #FFFFFF; color: var(--espresso); border-color: var(--espresso); }
.section-cta .btn-line { background: transparent; color: var(--espresso); border-color: var(--espresso); }
.section-cta .btn-line:hover { background: var(--espresso); color: var(--brand-primary); }
@media (max-width: 980px) {
  .section-cta { margin-top: 48px; padding: 16px var(--sx); }
  .section-cta-inner { grid-template-columns: 1fr; gap: 20px; }
  .section-cta-copy { font-size: 21px; }
  .section-cta-actions { grid-auto-flow: row; }
  .section-cta .btn { min-width: 0; width: 100%; }
}

/* ===== HERO ===== */
.hero { padding-top: 76px; padding-bottom: 0; background: var(--ivory); }
/* keeps the headline readable when a background photo is set via the dashboard;
   invisible when no background is applied */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(92deg, rgba(250,249,247,0.96) 0%, rgba(250,249,247,0.90) 34%, rgba(250,249,247,0.50) 60%, rgba(250,249,247,0.14) 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
.hero-content .eyebrow { margin-bottom: 26px; }
.hero h1 { font-size: clamp(38px, 5.2vw, 72px); font-weight: 400; line-height: 1.03; letter-spacing: -0.02em; margin-bottom: 26px; }
.hero h1 em { font-style: italic; color: var(--brand-primary); font-weight: 500; }
.hero-sub { font-size: 18px; line-height: 1.65; color: var(--charcoal); max-width: 52ch; font-weight: 300; }

/* Credential band: centred, dark, so it reads as a claim rather than fine print */
.hero-signals { margin: 72px calc(-1 * var(--sx)) 0; padding: 30px var(--sx); background: var(--espresso); }
.hero-signals-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); }
.sig { text-align: center; padding: 4px 24px; border-left: 1px solid color-mix(in srgb, var(--ivory) 20%, transparent); }
.sig:first-child { border-left: none; }
.sig-k { display: block; font-family: var(--display); font-size: clamp(22px, 2.2vw, 30px); font-style: italic; color: var(--brand-primary); line-height: 1.15; margin-bottom: 6px; }
.sig-v { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: color-mix(in srgb, var(--ivory) 80%, transparent); line-height: 1.4; }
@media (max-width: 860px) {
  .hero-signals-inner { grid-template-columns: 1fr; }
  .sig { border-left: none; padding: 16px 0; border-top: 1px solid color-mix(in srgb, var(--ivory) 18%, transparent); }
  .sig:first-child { border-top: none; padding-top: 0; }
}

/* ===== FORM ===== */
.form-card { background: var(--brand-bg); padding: 40px 36px; border: 1px solid var(--line); box-shadow: var(--shadow-md); position: relative; }
.form-card::before { content: ""; position: absolute; top: 0; left: 0; width: 64px; height: 3px; background: var(--brand-primary); }
.form-title { font-family: var(--display); font-size: 30px; font-weight: 500; margin-bottom: 6px; color: var(--espresso); }
.form-sub { font-size: 13px; color: var(--brand-accent); margin-bottom: 26px; letter-spacing: 0.02em; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 7px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 13px 14px; font-family: var(--sans); font-size: 15px;
  color: var(--brand-text); background: var(--ivory); border: 1px solid var(--line);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-row textarea { resize: vertical; min-height: 84px; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--espresso); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-primary) 25%, transparent);
}
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-success { display: none; padding: 26px 24px; background: var(--sand); border-top: 3px solid var(--brand-primary); font-size: 15px; line-height: 1.6; color: var(--charcoal); }
.form-success.visible { display: block; }
@media (max-width: 1024px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 720px) {
  .hero { padding-top: 40px; }
  .hero h1 { font-size: clamp(31px, 8.4vw, 44px); }
  .hero-sub { font-size: 16px; }
  .form-card { padding: 26px 20px; }
  .form-row-split { grid-template-columns: 1fr; }
}

/* ===== IMAGE PLACEHOLDER ===== */
.img-placeholder {
  background: linear-gradient(135deg, var(--sand), var(--stone));
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; width: 100%;
}
.placeholder-inner { max-width: 420px; text-align: center; padding: 26px; }
.placeholder-label { display: inline-block; background: var(--espresso); color: var(--ivory); font-family: var(--sans); font-size: 10px; font-weight: 700; padding: 4px 12px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.16em; }
.placeholder-prompt { color: var(--charcoal); font-size: 13px; line-height: 1.6; font-style: italic; margin: 0; font-family: var(--display); }

/* ===== SECTION HEADS ===== */
.section-head { margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(27px, 3vw, 44px); font-weight: 400; line-height: 1.08; letter-spacing: -0.015em; }
.section-head h2 em { font-style: italic; color: var(--brand-primary); }
@media (min-width: 1200px) { .section-head h2 { white-space: nowrap; } }

/* ===== PROBLEM: image left, 4 distinct situations right ===== */
.problem { background: var(--sand); }
.problem-grid { display: grid; grid-template-columns: 5fr 6fr; gap: 72px; align-items: center; }
.problem-photo { aspect-ratio: 4/5; min-height: 500px; }
.stall { background: var(--brand-bg); box-shadow: var(--shadow-sm); padding: 26px 30px; }
.stall + .stall { margin-top: 16px; }
.stall p { font-family: var(--display); font-size: 21px; line-height: 1.42; color: var(--espresso); }
@media (max-width: 1024px) {
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .problem-photo { aspect-ratio: 16/10; min-height: 0; }
  .stall { padding: 20px 22px; }
  .stall p { font-size: 18px; }
}

/* ===== PRODUCTS ===== */
.products { background: var(--brand-bg); }
.prod-nav { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.prod-tab {
  padding: 22px 18px; min-height: 62px; text-align: left;
  font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-accent); border-left: 1px solid var(--line); position: relative; transition: color 0.2s;
}
.prod-tab:first-child { border-left: none; }
.prod-tab:hover { color: var(--espresso); }
.prod-tab[aria-selected="true"] { color: var(--espresso); }
.prod-tab[aria-selected="true"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; background: var(--brand-primary); }
.prod-panel { display: none; padding-top: 52px; }
.prod-panel.is-active { display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center; }
.prod-stage { position: relative; aspect-ratio: 4/3; }
.prod-stage .img-placeholder { position: absolute; inset: 0; height: 100%; opacity: 0; transition: opacity 0.45s var(--ease-out); pointer-events: none; }
.prod-stage .img-placeholder.is-shown { opacity: 1; pointer-events: auto; }
.prod-panel h3 { font-size: clamp(26px, 3vw, 40px); font-weight: 400; line-height: 1.1; margin-bottom: 30px; }
.prod-line {
  display: block; width: 100%; text-align: left; padding: 22px 20px 22px 22px;
  border-top: 1px solid var(--line); background: transparent; position: relative; transition: background 0.25s;
}
.prod-line:last-of-type { border-bottom: 1px solid var(--line); }
.prod-line::before { content: ""; position: absolute; left: 0; top: -1px; bottom: -1px; width: 3px; background: var(--brand-primary); transform: scaleY(0); transform-origin: top; transition: transform 0.3s var(--ease-out); }
.prod-line[aria-pressed="true"] { background: var(--ivory); }
.prod-line[aria-pressed="true"]::before { transform: scaleY(1); }
.prod-line:hover { background: var(--ivory); }
.prod-line-name { display: block; font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 9px; }
.prod-line p { font-size: 16px; line-height: 1.65; color: var(--charcoal); max-width: 54ch; }
@media (max-width: 1024px) {
  .prod-panel.is-active { grid-template-columns: 1fr; gap: 36px; }
  .prod-stage { aspect-ratio: 16/10; order: 2; }
  .prod-panel .prod-copy { order: 1; }
}
@media (max-width: 720px) {
  .prod-tab { padding: 16px 10px; min-height: 56px; font-size: 11px; letter-spacing: 0.1em; text-align: center; }
  .prod-panel { padding-top: 32px; }
  .prod-stage { aspect-ratio: 4/3; }
  .prod-line { padding: 20px 0 20px 16px; }
}

/* ===== INCLUDED: one continuous curtain pulled along a track ===== */
.included { background: var(--ivory); }
.ct { margin-bottom: 52px; }
.ct-track { height: 10px; background: var(--espresso); position: relative; }
.ct-track::after {
  content: ""; position: absolute; left: 6px; right: 6px; bottom: -6px; height: 6px;
  background-image: repeating-linear-gradient(90deg, var(--espresso) 0 3px, transparent 3px 24px);
}
.ct-strip {
  position: relative; display: grid; grid-template-columns: repeat(6, 1fr);
  background: linear-gradient(115deg, #FFFFFF, #F1ECE0 42%, #FFFFFF 72%, #F4F0E6);
  border: 1px solid var(--line); border-top: none; overflow: hidden;
}
.ct-curtain {
  position: absolute; top: 0; bottom: 0; right: 0; left: 16.6667%;
  transition: left 0.8s var(--ease-out); pointer-events: none; z-index: 1; overflow: hidden;
  background-color: #3E3A33;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(0,0,0,0.20) 72%),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.36) 0 3px, rgba(255,255,255,0.10) 3px 9px, rgba(0,0,0,0.14) 9px 30px, rgba(255,255,255,0.06) 30px 38px);
}
.ct-curtain::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 26px; z-index: 1;
  background-image: repeating-linear-gradient(90deg, rgba(0,0,0,0.45) 0 3px, rgba(255,255,255,0.16) 3px 6px);
  box-shadow: 6px 0 14px rgba(0,0,0,0.35);
}
.ct-curtain::after {
  content: ""; position: absolute; top: -20%; bottom: -20%; left: 0; width: 34%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.05) 35%, rgba(255,255,255,0.24) 50%, rgba(255,255,255,0.05) 65%, transparent 100%);
  animation: ct-sheen 6.5s ease-in-out infinite;
}
@keyframes ct-sheen {
  0% { transform: translateX(-130%); }
  55% { transform: translateX(330%); }
  100% { transform: translateX(330%); }
}
@media (prefers-reduced-motion: reduce) { .ct-curtain::after { animation: none; opacity: 0.5; } }
.ct-cell {
  position: relative; z-index: 2; min-width: 0; padding: 28px 10px 24px; text-align: center;
  border-left: 1px solid var(--line); background: none; overflow-wrap: break-word;
}
.ct-cell:first-child { border-left: none; }
.ct-pin { display: block; width: 9px; height: 9px; background: var(--espresso); margin: 0 auto 14px; transition: background 0.3s; }
.ct-cell[aria-selected="true"] .ct-pin { background: var(--brand-primary); }
.ct-name {
  display: block; font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-accent); line-height: 1.5; transition: color 0.3s, text-shadow 0.3s;
}
.ct-cell:hover .ct-name { color: var(--espresso); }
.ct-cell[aria-selected="true"] .ct-name { color: var(--espresso); }
.ct-cell.is-covered .ct-pin { background: color-mix(in srgb, var(--ivory) 85%, transparent); }
.ct-cell.is-covered .ct-name, .ct-cell.is-covered:hover .ct-name {
  color: var(--ivory); text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

.swatch-detail { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: center; }
.sw-stage { position: relative; aspect-ratio: 4/3; }
.sw-stage .img-placeholder { position: absolute; inset: 0; height: 100%; opacity: 0; transition: opacity 0.45s var(--ease-out); pointer-events: none; }
.sw-stage .img-placeholder.is-shown { opacity: 1; pointer-events: auto; }
.swatch-panel { display: none; }
.swatch-panel.is-active { display: block; }
.swatch-panel h3 { font-size: clamp(28px, 3.2vw, 42px); font-weight: 400; line-height: 1.1; margin-bottom: 22px; }
.swatch-panel p { font-size: 17px; line-height: 1.7; color: var(--charcoal); max-width: 52ch; }
.swatch-hint { margin-top: 28px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-accent); }
@media (max-width: 1024px) {
  .swatch-detail { grid-template-columns: 1fr; gap: 36px; }
  .sw-stage { aspect-ratio: 16/10; }
}
@media (max-width: 720px) {
  .ct-cell { padding: 20px 4px 18px; }
  .ct-name { font-size: 8px; letter-spacing: 0.08em; }
  .ct-pin { width: 7px; height: 7px; margin-bottom: 10px; }
  .ct-curtain::before { width: 14px; }
}

/* ===== PROCESS: roller blind carrying the steps ===== */
.process { background: var(--brand-bg); }
.slat-no { display: inline-block; margin-right: 14px; font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--walnut); vertical-align: 4px; }
.blind-window { position: relative; min-height: 560px; border: 1px solid var(--espresso); }
.blind-scene { position: absolute; inset: 0; }
.blind-scene .img-placeholder { height: 100%; border: none; }
.blind { position: absolute; top: 0; left: 0; right: 0; }
.blind-head { height: 22px; background: var(--espresso); position: relative; z-index: 2; }
.blind-head::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 4px; background: color-mix(in srgb, var(--espresso) 70%, transparent); }
.blind-body { overflow: hidden; transition: height 0.7s var(--ease-out); background: var(--ivory); background-image: repeating-linear-gradient(90deg, rgba(0,0,0,0.022) 0 1px, transparent 1px 5px); }
.blind-slats { list-style: none; }
.slat {
  padding: 26px 40px; border-bottom: 2px solid rgba(0,0,0,0.20);
  display: grid; grid-template-columns: 210px 1fr; gap: 32px; align-items: baseline;
  background-image: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(0,0,0,0) 26%, rgba(0,0,0,0.075));
  box-shadow: inset 0 -7px 11px -7px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.85);
}
.slat:nth-child(even) { background-color: #F4F1EB; }
.slat-step { font-family: var(--display); font-size: 27px; font-weight: 500; color: var(--espresso); line-height: 1.15; }
.slat p { font-size: 15px; line-height: 1.65; color: var(--charcoal); }
@media (min-width: 1200px) { .slat p { white-space: nowrap; } }
.blind-rail { height: 14px; background: var(--espresso); position: relative; z-index: 2; }
.blind-cord {
  position: absolute; right: 34px; top: 14px; width: 30px; height: 72px; background: none; padding: 0;
  display: flex; flex-direction: column; align-items: center;
}
.blind-cord::before { content: ""; width: 2px; flex: 1; background: var(--espresso); }
.blind-cord::after { content: ""; width: 12px; height: 22px; background: var(--brand-primary); box-shadow: inset 0 0 0 1px var(--espresso); }
.blind-cord:hover::after { background: var(--espresso); box-shadow: inset 0 0 0 1px var(--brand-primary); }
.blind-controls { display: flex; align-items: center; gap: 12px; margin: 0 0 20px; flex-wrap: wrap; }
.blind-btn {
  font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 11px 18px; border: 1px solid var(--line); color: var(--charcoal); transition: all 0.2s;
}
.blind-btn:hover { border-color: var(--espresso); color: var(--espresso); }
.blind-status { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-accent); }
@media (max-width: 900px) {
  .slat { grid-template-columns: 1fr; gap: 8px; padding: 22px 22px; }
  .slat-step { font-size: 23px; }
  .blind-cord { right: 16px; }
}
@media (max-width: 720px) { .blind-window { min-height: 420px; } .slat { padding: 18px 16px; } }

/* ===== CREDENTIALS ===== */
.credentials { background: var(--espresso); color: var(--ivory); text-align: center; }
.credentials h2 { color: var(--ivory); font-size: clamp(27px, 3vw, 44px); font-weight: 400; line-height: 1.08; letter-spacing: -0.015em; margin: 0 auto 48px; }
.credentials h2 em { font-style: italic; color: var(--brand-primary); }
.credentials .section-cta { text-align: left; }
.awards-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.awards-row .img-placeholder { aspect-ratio: 1/1; background: color-mix(in srgb, var(--ivory) 8%, transparent); border-color: color-mix(in srgb, var(--ivory) 22%, transparent); }
.awards-row .img-placeholder img { object-fit: contain !important; padding: 10px; box-sizing: border-box; }
.awards-row .placeholder-inner { padding: 14px; }
.awards-row .placeholder-label { background: var(--brand-primary); color: var(--espresso); font-size: 9px; letter-spacing: 0.12em; padding: 3px 8px; margin-bottom: 8px; }
.awards-row .placeholder-prompt { color: color-mix(in srgb, var(--ivory) 70%, transparent); font-size: 11px; line-height: 1.45; }
@media (max-width: 1024px) { .awards-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .awards-row { grid-template-columns: repeat(2, 1fr); gap: 12px; } .credentials-note { font-size: 18px; margin-bottom: 36px; } }

/* ===== GALLERY: curtain-framed stage plus thumbnails ===== */
.gallery { background: var(--sand); }
.stage-pelmet { height: 14px; background: var(--espresso); position: relative; }
.stage-pelmet::after { content: ""; position: absolute; left: 8px; right: 8px; bottom: -8px; height: 8px; background-image: repeating-linear-gradient(90deg, var(--espresso) 0 3px, transparent 3px 30px); }
.stage { position: relative; aspect-ratio: 16/9; overflow: hidden; border: 1px solid var(--espresso); border-top: none; }
.stage-shot { position: absolute; inset: 0; }
.stage-shot .img-placeholder, .stage-shot > * { height: 100%; border: none; }
.stage-curtain {
  position: absolute; top: 0; bottom: 0; width: 52%;
  transition: transform 0.8s var(--ease-out);
  background-color: #E3D9C4;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.28), rgba(0,0,0,0.04) 55%, rgba(0,0,0,0.15)),
    repeating-linear-gradient(90deg,
      rgba(122,102,72,0.24) 0px, rgba(255,255,255,0.26) 15px,
      rgba(122,102,72,0.10) 33px, rgba(255,255,255,0.22) 50px,
      rgba(122,102,72,0.24) 66px);
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.20));
}
.stage-curtain::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 16px;
  background-image: radial-gradient(16px 46px at var(--scallop-side) 50%, #E3D9C4 96%, rgba(227,217,196,0) 100%);
  background-size: 16px 92px; background-repeat: repeat-y;
}
.sc-left { left: 0; transform: translateX(-96%); --scallop-side: 0; }
.sc-left::after { left: 100%; }
.sc-right { right: 0; transform: translateX(96%); --scallop-side: 100%; }
.sc-right::after { right: 100%; }
.stage.is-closed .sc-left, .stage.is-closed .sc-right { transform: translateX(0); }
.thumbs { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; margin-top: 20px; }
.thumb { display: block; padding: 0; background: none; position: relative; transition: transform 0.25s var(--ease-out); }
.thumb .img-placeholder { aspect-ratio: 4/3; }
.thumb .placeholder-prompt { display: none; }
.thumb .placeholder-inner { padding: 10px; }
.thumb .placeholder-label { font-size: 9px; letter-spacing: 0.1em; padding: 3px 7px; margin-bottom: 0; }
.thumb::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--brand-primary); transform: scaleX(0); transition: transform 0.25s var(--ease-out); }
.thumb[aria-selected="true"]::after { transform: scaleX(1); }
.thumb[aria-selected="true"] { transform: translateY(-4px); }
.thumb:hover { transform: translateY(-4px); }
.gallery-hint { display: block; margin-top: 16px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-accent); }
@media (max-width: 900px) {
  .thumbs { display: flex; overflow-x: auto; gap: 10px; scroll-snap-type: x mandatory; margin: 16px calc(-1 * var(--sx)) 0; padding: 0 var(--sx) 8px; }
  .thumb { flex: 0 0 132px; scroll-snap-align: start; }
  .stage { aspect-ratio: 4/3; }
}

/* ===== REVIEWS ===== */
.reviews { background: var(--brand-bg); }
.review-featured { display: grid; grid-template-columns: 5fr 6fr; gap: 72px; align-items: center; margin-bottom: 72px; }
.review-featured .img-placeholder { aspect-ratio: 1/1; min-height: 440px; }
.review-quote { font-family: var(--display); font-size: clamp(26px, 3.1vw, 42px); font-weight: 400; line-height: 1.24; color: var(--espresso); margin-bottom: 30px; letter-spacing: -0.008em; }
.review-attr { padding-top: 18px; border-top: 1px solid var(--brand-primary); display: inline-block; }
.review-name { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--espresso); margin-bottom: 4px; }
.review-role { font-size: 14px; color: var(--brand-accent); font-style: italic; font-family: var(--display); }

.revcar { border-top: 1px solid var(--line); padding-top: 44px; perspective: 1600px; }
.revcar-page { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; transform-origin: top center; transition: transform 0.3s ease-in, opacity 0.3s ease-in; }
.revcar-page.flip-out { transform: rotateX(-88deg); opacity: 0; }
.revcar-page.flip-in { transform: rotateX(80deg); opacity: 0; transition: none; }
.stage-shot img { width: 100%; height: 100%; object-fit: cover; }
.review-card { border-left: 3px solid var(--brand-primary); padding-left: 24px; }
.review-card .review-mini { font-family: var(--display); font-size: 21px; line-height: 1.42; color: var(--charcoal); margin-bottom: 18px; }
.revcar-controls { display: flex; align-items: center; gap: 18px; margin-top: 40px; }
.revcar-btn { width: 46px; height: 46px; border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; transition: all 0.2s; }
.revcar-btn:hover { border-color: var(--espresso); background: var(--espresso); color: var(--ivory); }
.revcar-btn svg { width: 16px; height: 16px; }
.revcar-count { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-accent); }
@media (max-width: 1024px) {
  .review-featured { grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; }
  .review-featured .img-placeholder { aspect-ratio: 16/10; min-height: 0; }
  .revcar-page { grid-template-columns: 1fr; gap: 30px; }
}

/* ===== FAQ: measuring-tape dividers, blind-style reveal ===== */
.faq { background: var(--ivory); }
.faq-layout { display: grid; grid-template-columns: 0.85fr 1.55fr; gap: 72px; align-items: start; }
.faq-media { position: sticky; top: 104px; }
.faq-media .img-placeholder { aspect-ratio: 4/5; }
.faq-tape {
  background: color-mix(in srgb, var(--brand-primary) 42%, #FFFFFF);
  padding: 12px 16px 20px; position: relative; margin-bottom: 2px;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.2);
}
.faq-tape span { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--espresso); }
.faq-tape::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 11px;
  background-image:
    repeating-linear-gradient(90deg, rgba(0,0,0,0.55) 0 1px, transparent 1px 12px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.75) 0 1px, transparent 1px 60px);
  background-size: 100% 5px, 100% 11px;
  background-position: bottom left, bottom left;
  background-repeat: repeat-x, repeat-x;
}
.faq-group + .faq-group { margin-top: 44px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; padding: 22px 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; text-align: left; font-family: var(--display); font-size: clamp(19px, 2vw, 25px); font-weight: 500; color: var(--espresso); line-height: 1.32; transition: color 0.2s; }
.faq-q:hover { color: var(--brand-primary); }
.faq-q > span:not(.faq-mark) { flex: 1 1 auto; }
.faq-mark { position: relative; width: 16px; height: 16px; flex: 0 0 16px; margin-top: 9px; }
.faq-mark::before, .faq-mark::after { content: ""; position: absolute; background: var(--espresso); transition: transform 0.3s var(--ease-out); }
.faq-mark::before { left: 0; top: 7.5px; width: 16px; height: 1.5px; }
.faq-mark::after { left: 7.25px; top: 0; width: 1.5px; height: 16px; }
.faq-q[aria-expanded="true"] .faq-mark::after { transform: scaleY(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease-out); }
.faq-a-inner { padding: 4px 0 28px 0; font-size: 16px; line-height: 1.72; color: var(--charcoal); }
@media (max-width: 1024px) {
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-media { position: static; }
}

/* ===== FINAL ===== */
.final { background: var(--espresso); color: var(--ivory); overflow: hidden; }
.final-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1300px; margin: 0 auto; }
.final .eyebrow { color: var(--ivory); }
.final h2 { color: var(--ivory); font-size: clamp(32px, 4.3vw, 56px); font-weight: 400; line-height: 1.06; margin: 0 0 26px; letter-spacing: -0.018em; }
.final h2 em { font-style: italic; color: var(--brand-primary); }
.final-body { font-size: 17px; line-height: 1.7; color: color-mix(in srgb, var(--ivory) 82%, transparent); margin-bottom: 30px; font-weight: 300; }
.final-signals { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid color-mix(in srgb, var(--ivory) 22%, transparent); padding-top: 24px; }
.final-signals .sig { text-align: left; padding: 0 20px; border-left-color: color-mix(in srgb, var(--ivory) 22%, transparent); }
.final-signals .sig:first-child { padding-left: 0; }
.final-signals .sig-k { font-size: 20px; }
.final .form-card { background: var(--ivory); }
.final .form-card .btn { background: var(--espresso); color: var(--ivory); border-color: var(--espresso); }
.final .form-card .btn:hover { background: var(--charcoal); border-color: var(--charcoal); }
@media (max-width: 1024px) { .final-grid { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 560px) { .final-signals { grid-template-columns: 1fr; gap: 14px; } .final-signals .sig { border-left: none; padding: 0; } }

/* ===== FOOTER ===== */
footer { background: var(--espresso); color: color-mix(in srgb, var(--ivory) 75%, transparent); padding: 72px 64px 32px; border-top: 1px solid color-mix(in srgb, var(--ivory) 10%, transparent); }
.footer-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1.3fr 1fr; gap: 60px; padding-bottom: 44px; border-bottom: 1px solid color-mix(in srgb, var(--ivory) 12%, transparent); }
.footer-logo { display: block; margin-bottom: 22px; }
.footer-logo img { width: 100%; max-width: 300px; height: auto; display: block; }
.footer-tagline { font-family: var(--display); font-style: italic; font-size: 17px; line-height: 1.5; color: color-mix(in srgb, var(--ivory) 68%, transparent); max-width: 40ch; }
.footer-heading { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ivory); margin-bottom: 20px; }
.footer-actions { display: flex; gap: 12px; margin-bottom: 22px; }
.footer-icon {
  width: 52px; height: 52px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid color-mix(in srgb, var(--ivory) 28%, transparent); color: var(--ivory); transition: all 0.2s;
}
.footer-icon svg { width: 22px; height: 22px; fill: currentColor; }
.footer-icon:hover { background: var(--brand-primary); border-color: var(--brand-primary); color: var(--espresso); }
.footer-address { color: color-mix(in srgb, var(--ivory) 62%, transparent); font-size: 13px; line-height: 1.7; }
.footer-address a { border-bottom: 1px solid color-mix(in srgb, var(--ivory) 30%, transparent); }
.footer-address a:hover { color: var(--brand-primary); border-bottom-color: var(--brand-primary); }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-links a:hover { color: var(--brand-primary); }
.footer-bottom { max-width: 1400px; margin: 0 auto; padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 12px; letter-spacing: 0.05em; color: color-mix(in srgb, var(--ivory) 48%, transparent); }
@media (max-width: 1024px) { footer { padding: 56px 32px 30px; } .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 720px) { footer { padding: 44px 16px 24px; } .footer-grid { grid-template-columns: 1fr; gap: 34px; } }

/* ===== ANIMATIONS ===== */
[data-animate] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
[data-animate="left"] { transform: translateX(-26px); }
[data-animate="right"] { transform: translateX(26px); }
[data-animate].is-visible { opacity: 1; transform: none; }
[data-animate][data-delay="1"] { transition-delay: 0.07s; }
[data-animate][data-delay="2"] { transition-delay: 0.14s; }
[data-animate][data-delay="3"] { transition-delay: 0.21s; }
[data-animate][data-delay="4"] { transition-delay: 0.28s; }
@media (max-width: 720px) { [data-animate="left"], [data-animate="right"] { transform: translateY(22px); } }
@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; transition: none; }
  .ct-curtain, .stage-curtain, .blind-body, .revcar-page { transition: none !important; }
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--espresso); color: var(--ivory); padding: 8px 12px; z-index: 90;
  align-items: center; justify-content: space-between; gap: 10px; border-top: 2px solid var(--brand-primary);
}
.mobile-sticky-cta a.sticky-wa { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; }
.mobile-sticky-cta .btn { padding: 10px 14px; min-height: 40px; font-size: 10px; letter-spacing: 0.1em; background: var(--brand-primary); color: var(--espresso); border-color: var(--brand-primary); }
@media (max-width: 720px) { .mobile-sticky-cta.visible { display: flex; } body { padding-bottom: 60px; } }

/* ===== AMBIENT BACKGROUND MOTION (desktop and mobile) ===== */
.problem { overflow: hidden; }
.problem > .container, .problem .section-cta { position: relative; z-index: 1; }
.problem-drape {
  position: absolute; top: -6%; bottom: -6%; width: 130px; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.30), rgba(0,0,0,0.03) 55%, rgba(0,0,0,0.10)),
    repeating-linear-gradient(90deg,
      rgba(122,102,72,0.22) 0px, rgba(255,255,255,0.28) 13px,
      rgba(122,102,72,0.08) 28px, rgba(255,255,255,0.22) 42px,
      rgba(122,102,72,0.22) 56px);
  animation: drape-sway 9s ease-in-out infinite; transform-origin: top center;
}
.problem-drape.is-left { left: -26px; }
.problem-drape.is-right { right: -26px; animation-delay: -4.5s; }
@keyframes drape-sway {
  0%, 100% { transform: skewX(0deg) translateX(0); }
  50% { transform: skewX(2.4deg) translateX(10px); }
}

.credentials { overflow: hidden; }
.credentials > .container, .credentials .section-cta { position: relative; z-index: 1; }
.credentials::before, .credentials::after {
  content: ""; position: absolute; top: -20%; bottom: -20%; left: -30%; width: 26%; z-index: 0;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.04) 38%, rgba(255,255,255,0.10) 50%, rgba(255,255,255,0.04) 62%, transparent);
  pointer-events: none;
  animation: cred-shine 9s linear infinite;
}
.credentials::after { animation-delay: -4.5s; opacity: 0.6; }
@keyframes cred-shine {
  0% { transform: translateX(0); }
  100% { transform: translateX(560%); }
}

.reviews { overflow: hidden; }
.reviews > .container, .reviews .section-cta { position: relative; z-index: 1; }
.dust { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.dust span {
  position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: rgba(138,133,120,0.4); filter: blur(1px); opacity: 0;
  animation: dust-drift var(--dd, 15s) linear var(--dl, 0s) infinite;
}
.dust span:nth-child(1) { left: 8%;  top: 78%; --dd: 16s; --dl: 0s; }
.dust span:nth-child(2) { left: 22%; top: 88%; --dd: 13s; --dl: -4s; width: 4px; height: 4px; }
.dust span:nth-child(3) { left: 36%; top: 72%; --dd: 18s; --dl: -9s; }
.dust span:nth-child(4) { left: 52%; top: 84%; --dd: 12s; --dl: -2s; width: 6px; height: 6px; }
.dust span:nth-child(5) { left: 64%; top: 92%; --dd: 17s; --dl: -11s; width: 4px; height: 4px; }
.dust span:nth-child(6) { left: 76%; top: 76%; --dd: 14s; --dl: -6s; }
.dust span:nth-child(7) { left: 88%; top: 86%; --dd: 19s; --dl: -13s; width: 4px; height: 4px; }
.dust span:nth-child(8) { left: 44%; top: 95%; --dd: 15s; --dl: -8s; }
@keyframes dust-drift {
  0% { transform: translate(0, 0); opacity: 0; }
  12% { opacity: 0.55; }
  85% { opacity: 0.4; }
  100% { transform: translate(110px, -420px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .problem-drape, .dust { display: none; }
  .credentials::before, .credentials::after { animation: none; opacity: 0; }
}

/* ===== MOBILE-ONLY ADDITIONS (desktop rendering unchanged) ===== */
.hero-mobile-media, .awards-nav, .gal-nav, .ct-select { display: none; }
.slider-arrow {
  width: 46px; height: 46px; border: 1px solid var(--line); color: var(--espresso);
  display: inline-flex; align-items: center; justify-content: center; background: none;
}
.slider-arrow svg { width: 16px; height: 16px; }
.credentials .slider-arrow { border-color: color-mix(in srgb, var(--ivory) 35%, transparent); color: var(--ivory); }

@media (max-width: 720px) {
  /* hero: image between the headline and the intro */
  .hero::after { background: rgba(250,249,247,0.88); }
  .hero-mobile-media { display: block; margin: 4px 0 22px; }
  .hero-mobile-media .img-placeholder { aspect-ratio: 4/3; }

  /* credential band: each credential on 1 line */
  .sig { display: flex; align-items: baseline; justify-content: center; flex-wrap: wrap; gap: 4px 10px; padding: 12px 0; }
  .sig:first-child { padding-top: 0; }
  .sig-k { font-size: 17px; margin-bottom: 0; white-space: nowrap; }
  .sig-v { font-size: 9px; letter-spacing: 0.1em; white-space: nowrap; }

  /* CTA bands: centred copy, no WhatsApp twin */
  .section-cta-inner { text-align: center; }
  .section-cta-copy { text-align: center; }
  .credentials .section-cta { text-align: center; }
  #included .section-cta-actions .btn-line, #faq .section-cta-actions .btn-line { display: none; }

  /* blind status on 1 line; intermediate counts hidden */
  .blind-controls { gap: 10px; }
  .blind-status { width: 100%; white-space: nowrap; font-size: clamp(8px, 2.4vw, 9.5px); letter-spacing: 0.04em; }
  .blind-status[data-state="mid"] { visibility: hidden; }

  /* tighter run-ins: form to credential band, product hint to CTA band */
  .hero-signals { margin-top: 36px; padding-top: 18px; padding-bottom: 18px; }
  .sig { padding: 8px 0; }
  .section-cta { margin-top: 30px; }
  .swatch-hint { margin-top: 14px; }

  /* awards: sliding row with arrows, wraps around */
  .awards-row { display: flex; overflow-x: auto; gap: 12px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .awards-row::-webkit-scrollbar { display: none; }
  .awards-row .img-placeholder { flex: 0 0 72%; scroll-snap-align: center; aspect-ratio: 1/1; }
  .awards-nav { display: flex; justify-content: space-between; margin-top: 18px; }

  /* gallery: arrows under the thumbnails */
  .gal-nav { display: flex; justify-content: space-between; margin-top: 4px; }

  /* products: image between the heading and the type buttons */
  .prod-panel.is-active { display: flex; flex-direction: column; }
  .prod-copy { display: contents; }
  .prod-copy h3 { order: 1; margin-bottom: 20px; }
  /* explicit size: aspect-ratio collapses to 0x0 on a flex item whose only children are absolute */
  .prod-stage { order: 2; margin-bottom: 10px; flex: 0 0 auto; width: 100%; height: calc((100vw - 32px) * 0.75); }
  .prod-copy .prod-line { order: 3; }
  .prod-copy .swatch-hint { order: 4; }

  /* included: dropdown replaces the curtain track */
  .ct { display: none; }
  #included .swatch-hint { display: none; }
  .ct-select { display: block; margin-bottom: 26px; }
  .ct-select select {
    width: 100%; padding: 14px; font-family: var(--sans); font-size: 15px;
    color: var(--brand-text); background: var(--brand-bg); border: 1px solid var(--line);
  }
  .ct-select select:focus { outline: none; border-color: var(--espresso); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-primary) 25%, transparent); }

  /* FAQ: tighter spacing around the consultation image */
  .faq { padding-top: 36px; }
  .faq .section-head { margin-bottom: 24px; }
  .faq-layout { gap: 16px; }
}
@media (max-width: 360px) {
  .sig-v { font-size: 8px; letter-spacing: 0.05em; }
}

/* ── Sticky-header enforcement (auto-applied) ── */
.site-header, header.site-header, .sticky-header, header.sticky-header {
  position: fixed !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  z-index: 1000 !important;
}
body { padding-top: 40px; }
@media (max-width: 720px) { body { padding-top: 58px; } }

/* ──────────────── */

.hero-image-bg .placeholder-prompt,
.hero-image-bg .placeholder-label,
.package-card-bg .placeholder-prompt,
.package-card-bg .placeholder-label,
[class$="-bg"] .img-placeholder .placeholder-prompt,
[class$="-bg"] .img-placeholder .placeholder-label {
  display: none !important;
}

/* ──────────────── */

.problem { position: relative; isolation: isolate; }
.problem::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('/wp-content/uploads/2026/09/problem-1787215794401-opt.webp') center/cover no-repeat; opacity: 0.75; }
.products { position: relative; isolation: isolate; }
.products::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('/wp-content/uploads/2026/09/products-1787216681596-opt.webp') center/cover no-repeat; opacity: 0.65; }
.included { position: relative; isolation: isolate; }
.included::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('/wp-content/uploads/2026/09/included-1787215931372-opt.webp') center/cover no-repeat; opacity: 0.65; }
.process { position: relative; isolation: isolate; }
.process::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('/wp-content/uploads/2026/09/process-1787215951388-opt.webp') center/cover no-repeat; opacity: 0.7; }
.gallery { position: relative; isolation: isolate; }
.gallery::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('/wp-content/uploads/2026/09/gallery-1787215989204-opt.webp') center/cover no-repeat; opacity: 0.7; }
.reviews { position: relative; isolation: isolate; }
.reviews::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('/wp-content/uploads/2026/09/reviews-1787216756880-opt.webp') center/cover no-repeat; opacity: 0.7; }
.faq { position: relative; isolation: isolate; }
.faq::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('/wp-content/uploads/2026/09/faq-1787216060949-opt.webp') center/cover no-repeat; opacity: 0.7; }
.final { position: relative; isolation: isolate; }
.final::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('/wp-content/uploads/2026/09/final-1787216514861-opt.webp') center/cover no-repeat; opacity: 0.7; }
.hero { position: relative; isolation: isolate; }
.hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('/wp-content/uploads/2026/09/hero-1787216454572.webp') center/cover no-repeat; opacity: 0.7; }
