/* ============================================================
   CURTAIN CARE IRELAND — Core Colour & Type Tokens
   Derived from the brand logo (navy wordmark, green "IRELAND"
   + wave, warm gold/cream curtain imagery).
   Load this file first; everything else builds on these vars.
   ============================================================ */

/* Fonts are loaded from Google Fonts as the nearest match to the
   custom logo wordmark — see README "Typography". Swap the @import
   for local @font-face if exact brand fonts become available. */
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&display=swap');

:root {
  /* ---------- BRAND CORE ---------- */
  --navy:        #0A3C82;  /* primary — the CurtainCare wordmark */
  --navy-700:    #072C61;  /* darker navy, hovers / depth */
  --navy-900:    #051F45;  /* deepest, footer / ink-on-light */
  --navy-400:    #1E5BB0;  /* lighter navy, links / focus */
  --navy-200:    #Bcd3ee;  /* tints (overwritten below, see note) */
  --navy-100:    #E8F0FA;  /* pale navy surface */

  --green:       #3DA24A;  /* secondary — emerald, IRELAND + wave */
  --green-700:   #2E7E39;  /* darker emerald */
  --lime:        #7ABB43;  /* fresh lime, the wave highlight */
  --green-100:   #EAF6EC;  /* pale green surface */

  --gold:        #B79A6A;  /* warm accent — the curtain fabric */
  --gold-300:    #D9C7A2;  /* light gold */
  --cream:       #FFF7E1;  /* warm surface — lamp-lit interior */

  /* ---------- NEUTRALS (cool, warmed slightly) ---------- */
  --ink:         #16243A;  /* primary text — near-navy charcoal */
  --slate:       #45556B;  /* secondary text */
  --muted:       #6E7A8A;  /* tertiary / captions / the URL grey */
  --line:        #E2E7EE;  /* hairline borders */
  --line-strong: #CBD4DF;  /* stronger dividers */
  --surface:     #F6F8FB;  /* app / page background */
  --surface-2:   #EEF2F7;  /* sunken panels */
  --white:       #FFFFFF;

  /* ---------- SEMANTIC ---------- */
  --fg1: var(--ink);
  --fg2: var(--slate);
  --fg3: var(--muted);
  --bg1: var(--white);
  --bg2: var(--surface);
  --bg3: var(--surface-2);

  --primary:        var(--navy);
  --primary-hover:  var(--navy-700);
  --accent:         var(--green);
  --accent-hover:   var(--green-700);
  --on-primary:     #FFFFFF;

  --success: #2E7E39;
  --warning: #C68A2E;
  --danger:  #C0413B;
  --info:    var(--navy-400);

  /* ---------- BRAND GRADIENTS ---------- */
  --grad-wave:  linear-gradient(90deg, var(--green) 0%, var(--lime) 55%, var(--navy-400) 100%);
  --grad-navy:  linear-gradient(160deg, var(--navy) 0%, var(--navy-700) 100%);
  --grad-warm:  linear-gradient(160deg, #FFFDF6 0%, var(--cream) 100%);

  /* ---------- TYPE FAMILIES ---------- */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif; /* elegant hero / quotes */
  --font-sans:    'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif; /* UI + body + headings */
  --font-body:    var(--font-sans);

  /* ---------- TYPE SCALE (1.25 major-third-ish, fluid-friendly) ---------- */
  --t-display: 64px;  --t-display-lh: 1.04; --t-display-ls: -0.01em;
  --t-h1: 44px; --t-h1-lh: 1.08; --t-h1-ls: -0.01em;
  --t-h2: 33px; --t-h2-lh: 1.14; --t-h2-ls: -0.005em;
  --t-h3: 25px; --t-h3-lh: 1.22;
  --t-h4: 20px; --t-h4-lh: 1.3;
  --t-body-lg: 18px; --t-body-lg-lh: 1.6;
  --t-body: 16px; --t-body-lh: 1.6;
  --t-small: 14px; --t-small-lh: 1.5;
  --t-caption: 12.5px; --t-caption-lh: 1.4;
  --t-overline: 12px; --t-overline-ls: 0.14em;

  /* ---------- WEIGHTS ---------- */
  --w-regular: 400;
  --w-medium: 500;
  --w-semibold: 600;
  --w-bold: 700;
  --w-extra: 800;

  /* ---------- RADII ---------- */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* ---------- SPACING (4px base) ---------- */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --sp-9: 96px; --sp-10: 128px;

  /* ---------- SHADOWS (soft, cool-navy tinted) ---------- */
  --sh-xs: 0 1px 2px rgba(10,60,130,.06);
  --sh-sm: 0 2px 8px rgba(10,60,130,.07);
  --sh-md: 0 8px 24px rgba(10,60,130,.10);
  --sh-lg: 0 18px 48px rgba(10,60,130,.14);
  --sh-focus: 0 0 0 3px rgba(30,91,176,.35);

  /* ---------- MOTION ---------- */
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur-fast: 140ms;
  --dur: 220ms;
  --dur-slow: 380ms;
}

/* correct the tint var (kept separate for clarity) */
:root { --navy-200: #BCD3EE; }

/* ============================================================
   SEMANTIC TYPE CLASSES
   ============================================================ */
.display {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  font-size: var(--t-display);
  line-height: var(--t-display-lh);
  letter-spacing: var(--t-display-ls);
  color: var(--fg1);
}
h1, .h1 {
  font-family: var(--font-sans);
  font-weight: var(--w-extra);
  font-size: var(--t-h1);
  line-height: var(--t-h1-lh);
  letter-spacing: var(--t-h1-ls);
  color: var(--fg1);
}
h2, .h2 {
  font-family: var(--font-sans);
  font-weight: var(--w-bold);
  font-size: var(--t-h2);
  line-height: var(--t-h2-lh);
  letter-spacing: var(--t-h2-ls);
  color: var(--fg1);
}
h3, .h3 {
  font-family: var(--font-sans);
  font-weight: var(--w-bold);
  font-size: var(--t-h3);
  line-height: var(--t-h3-lh);
  color: var(--fg1);
}
h4, .h4 {
  font-family: var(--font-sans);
  font-weight: var(--w-bold);
  font-size: var(--t-h4);
  line-height: var(--t-h4-lh);
  color: var(--fg1);
}
p, .body {
  font-family: var(--font-body);
  font-weight: var(--w-regular);
  font-size: var(--t-body);
  line-height: var(--t-body-lh);
  color: var(--fg2);
}
.body-lg {
  font-size: var(--t-body-lg);
  line-height: var(--t-body-lg-lh);
  color: var(--fg2);
}
.small { font-size: var(--t-small); line-height: var(--t-small-lh); }
.caption { font-size: var(--t-caption); line-height: var(--t-caption-lh); color: var(--fg3); }
.overline {
  font-family: var(--font-sans);
  font-weight: var(--w-bold);
  font-size: var(--t-overline);
  letter-spacing: var(--t-overline-ls);
  text-transform: uppercase;
  color: var(--green-700);
}
.serif-quote {
  font-family: var(--font-display);
  font-weight: var(--w-medium);
  font-style: italic;
  color: var(--fg1);
}
/* =============================================================
   Curtain Care Ireland — Redesigned Website Styles v2
   Depends on colors_and_type.css for tokens.
   ============================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ── Helpers ──────────────────────────────────────────────── */
.cc-icon { display: inline-flex; align-items: center; justify-content: center; }
.cc-icon svg { stroke-width: 1.75; }
.stars { color: var(--gold); display: inline-flex; gap: 3px; }
.stars svg { fill: currentColor; }

.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ── Overline label ──────────────────────────────────────── */
.cc-overline {
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-700);
  display: inline-flex; align-items: center; gap: 10px;
}
.cc-overline::before {
  content: ''; display: block;
  width: 28px; height: 2px;
  background: var(--green); border-radius: 2px; flex-shrink: 0;
}
/* Centred context — no left bar */
.sec-head .cc-overline { display: inline-block; }
.sec-head .cc-overline::before { display: none; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  font-family: var(--font-sans); font-weight: 700; font-size: 15px;
  border-radius: var(--r-pill); padding: 14px 26px;
  border: 1.5px solid transparent; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--dur) var(--ease); white-space: nowrap; line-height: 1;
  text-decoration: none;
}
.btn:active { transform: scale(.99) !important; }
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 2px 12px rgba(10,60,130,.22); }
.btn-primary:hover { background: var(--navy-700); box-shadow: 0 6px 22px rgba(10,60,130,.3); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn-secondary:hover { background: var(--navy-100); border-color: var(--navy-200); }
.btn-lg { font-size: 16px; padding: 16px 30px; }
.btn-block { width: 100%; justify-content: center; }

/* ── Section scaffold ────────────────────────────────────── */
.sec { padding: 96px 0; }
.sec-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.sec-head .cc-overline { margin-bottom: 18px; }
.sec-head h2 {
  font-size: clamp(30px, 3.8vw, 44px); font-weight: 800;
  letter-spacing: -.02em; margin: 0 0 16px;
  color: var(--navy-900); line-height: 1.05;
}
.sec-head p { font-size: 18px; color: var(--slate); line-height: 1.65; margin: 0; }

/* ─────────────────────────────────────────────────────────────
   HEADER
   ───────────────────────────────────────────────────────────── */
.cc-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.cc-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; gap: 24px;
}
.cc-logo { height: 46px; }
.cc-nav { display: flex; align-items: center; gap: 36px; }
.cc-nav a {
  font-weight: 600; font-size: 14.5px; color: var(--slate);
  transition: color var(--dur-fast); position: relative;
}
.cc-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: var(--navy);
  border-radius: 2px; transition: width var(--dur) var(--ease-out);
}
.cc-nav a:hover { color: var(--navy); }
.cc-nav a:hover::after { width: 100%; }
.cc-header-actions { display: flex; align-items: center; gap: 16px; }
.cc-hdr-phone {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 14.5px; color: var(--navy);
  transition: color var(--dur-fast);
}
.cc-hdr-phone:hover { color: var(--green-700); }
.cc-burger { display: none; background: none; border: none; cursor: pointer; color: var(--navy); padding: 6px; line-height: 1; }
.cc-mobile-nav { display: none; border-top: 1px solid var(--line); background: #fff; }
.cc-mobile-nav.open { display: block; }
.cc-mobile-nav a { display: block; padding: 14px 32px; font-weight: 600; font-size: 15px; color: var(--slate); border-bottom: 1px solid var(--line); }
.cc-mobile-nav a:hover { color: var(--navy); background: var(--surface); }
.cc-mobile-nav .btn { margin: 16px 32px; width: calc(100% - 64px); justify-content: center; display: flex; }

/* ─────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────── */
.cc-hero { background: var(--white); position: relative; overflow: hidden; }
.cc-hero::before {
  content: ''; position: absolute; top: -100px; right: -60px;
  width: 500px; height: 500px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(61,162,74,.07) 0%, transparent 65%);
}
body[data-theme="warm"] .cc-hero { background: linear-gradient(160deg, #FFFDF6 0%, var(--cream) 100%); }
body[data-theme="warm"] .cc-hero::before { background: radial-gradient(circle, rgba(183,154,106,.1) 0%, transparent 65%); }
body[data-theme="bold"] .cc-hero { background: linear-gradient(155deg, var(--navy-900) 0%, #0d3d78 100%); }
body[data-theme="bold"] .cc-hero::before { background: radial-gradient(circle, rgba(122,187,67,.1) 0%, transparent 65%); }

.cc-hero-wrap {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 72px; align-items: center;
  padding-top: 84px; padding-bottom: 96px;
}
.cc-hero-copy { display: flex; flex-direction: column; align-items: flex-start; }
.cc-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green-700); margin-bottom: 28px;
}
body[data-theme="bold"] .cc-hero-eyebrow { color: var(--lime); }
.cc-hero-eyebrow-bar { width: 32px; height: 2px; background: var(--green); border-radius: 2px; flex-shrink: 0; }
body[data-theme="bold"] .cc-hero-eyebrow-bar { background: var(--lime); }

.cc-hero h1 {
  font-size: clamp(44px, 5.6vw, 74px); font-weight: 800;
  letter-spacing: -.025em; line-height: 1.02;
  margin: 0 0 24px; color: var(--navy-900);
}
body[data-theme="bold"] .cc-hero h1 { color: #ffffff; }
.cc-hero h1 em { font-style: normal; color: var(--green); }
body[data-theme="warm"] .cc-hero h1 em { color: var(--gold); }
body[data-theme="bold"] .cc-hero h1 em { color: var(--gold-300); }

.cc-hero-lead { font-size: 18px; line-height: 1.68; color: var(--slate); margin: 0 0 36px; max-width: 32em; }
body[data-theme="bold"] .cc-hero-lead { color: #a8c0d8; }

.cc-hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.cc-hero-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700; color: var(--navy);
  transition: color var(--dur-fast); padding: 14px 0;
}
.cc-hero-phone:hover { color: var(--green-700); }
body[data-theme="bold"] .cc-hero-phone { color: rgba(255,255,255,.8); }
body[data-theme="bold"] .cc-hero-phone:hover { color: #fff; }

.cc-trust-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cc-trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--slate); }
body[data-theme="bold"] .cc-trust-item { color: rgba(170,195,220,.8); }
.cc-trust-item .cc-icon { color: var(--green); }
body[data-theme="bold"] .cc-trust-item .cc-icon { color: var(--lime); }

/* Hero media */
.cc-hero-media { position: relative; }
.cc-hero-photo-accent {
  position: absolute; inset: -14px 14px 14px -14px;
  border-radius: var(--r-xl); background: var(--green-100); z-index: 0;
}
body[data-theme="warm"] .cc-hero-photo-accent { background: rgba(183,154,106,.2); }
body[data-theme="bold"] .cc-hero-photo-accent { background: rgba(122,187,67,.15); }
.cc-hero-photo-wrap {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: 0 24px 60px rgba(10,60,130,.18); z-index: 1;
}
.cc-hero-photo-wrap img { width: 100%; height: 480px; object-fit: cover; display: block; }
.cc-hero-badge {
  position: absolute; bottom: 28px; left: -24px; z-index: 2;
  background: #fff; border-radius: var(--r-lg);
  box-shadow: 0 12px 32px rgba(10,60,130,.18);
  padding: 18px 22px; min-width: 190px;
}
.cc-hero-badge .b-num { font-weight: 800; font-size: 26px; color: var(--navy-900); line-height: 1; margin-top: 8px; }
.cc-hero-badge .b-lab { font-size: 12px; color: var(--muted); margin-top: 4px; line-height: 1.4; }

/* ─────────────────────────────────────────────────────────────
   TRUST BAR
   ───────────────────────────────────────────────────────────── */
.cc-trustbar { background: var(--navy); }
body[data-theme="warm"] .cc-trustbar { background: var(--white); border-top: 1px solid var(--gold-300); border-bottom: 1px solid var(--gold-300); }
body[data-theme="bold"] .cc-trustbar { background: var(--green); }
.cc-trustbar-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.cc-trustbar-stat { padding: 28px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
body[data-theme="warm"] .cc-trustbar-stat { border-right-color: var(--gold-300); }
.cc-trustbar-stat:last-child { border-right: none; }
.cc-trustbar-stat .t-num { font-size: 32px; font-weight: 800; letter-spacing: -.03em; color: #fff; line-height: 1; margin-bottom: 5px; }
body[data-theme="warm"] .cc-trustbar-stat .t-num { color: var(--navy-900); }
.cc-trustbar-stat .t-lab { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.55); letter-spacing: .02em; }
body[data-theme="warm"] .cc-trustbar-stat .t-lab { color: var(--slate); }

/* ─────────────────────────────────────────────────────────────
   SERVICES
   ───────────────────────────────────────────────────────────── */
.cc-services-sec { background: var(--white); }
.cc-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cc-svc-card {
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--r-lg); padding: 32px 28px 26px;
  transition: all var(--dur) var(--ease-out);
  cursor: pointer; position: relative; overflow: hidden;
}
.cc-svc-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, var(--lime) 55%, var(--navy-400) 100%);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease-out);
}
.cc-svc-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); border-color: transparent; }
.cc-svc-card:hover::after { transform: scaleX(1); }
.cc-svc-num { font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.cc-svc-icon-wrap { color: var(--navy); margin-bottom: 16px; }
.cc-svc-card:nth-child(2n) .cc-svc-icon-wrap { color: var(--green-700); }
.cc-svc-title { font-size: 18px; font-weight: 700; color: var(--navy-900); margin: 0 0 10px; letter-spacing: -.01em; }
.cc-svc-body { font-size: 14.5px; color: var(--slate); line-height: 1.62; margin: 0 0 18px; }
.cc-svc-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13.5px; font-weight: 700; color: var(--navy);
  transition: gap var(--dur-fast), color var(--dur-fast);
}
.cc-svc-card:hover .cc-svc-link { gap: 9px; color: var(--green-700); }

/* ─────────────────────────────────────────────────────────────
   HOW IT WORKS
   ───────────────────────────────────────────────────────────── */
.cc-how-sec { background: var(--surface); }
body[data-theme="warm"] .cc-how-sec { background: var(--cream); }
.cc-steps { display: grid; grid-template-columns: repeat(4, 1fr); }
.cc-step { padding: 0 32px 0 0; position: relative; }
.cc-step:not(:last-child)::after {
  content: ''; position: absolute; top: 34px; right: 0;
  width: 1px; height: 50px; background: var(--line-strong);
}
.cc-step-num {
  font-size: 62px; font-weight: 800; letter-spacing: -.05em;
  line-height: 1; color: var(--navy-100); margin-bottom: 20px;
}
body[data-theme="warm"] .cc-step-num { color: rgba(183,154,106,.2); }
body[data-theme="bold"] .cc-step-num { color: rgba(10,60,130,.12); }
.cc-step-title { font-size: 16px; font-weight: 700; color: var(--navy-900); margin: 0 0 8px; line-height: 1.3; }
.cc-step-body { font-size: 14px; color: var(--slate); line-height: 1.62; margin: 0; }

/* ─────────────────────────────────────────────────────────────
   ECO BAND
   ───────────────────────────────────────────────────────────── */
.cc-eco-sec { background: var(--white); }
.cc-eco-inner {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-700) 100%);
  border-radius: var(--r-xl); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
}
.cc-eco-copy { padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.cc-eco-overline {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--lime); margin-bottom: 20px;
}
.cc-eco-overline::before { content: ''; display: block; width: 28px; height: 2px; background: var(--lime); border-radius: 2px; flex-shrink: 0; }
.cc-eco-copy h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: #fff; margin: 0 0 16px; line-height: 1.08; letter-spacing: -.02em; }
.cc-eco-copy p { font-size: 16px; color: #9eb4d4; line-height: 1.68; margin: 0 0 32px; }
.cc-eco-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.cc-eco-point { display: flex; align-items: center; gap: 10px; }
.cc-eco-point .cc-icon { color: var(--lime); flex-shrink: 0; }
.cc-eco-point-label { font-size: 14px; font-weight: 700; color: #fff; }
.cc-eco-media { position: relative; overflow: hidden; }
.cc-eco-media img { width: 100%; height: 100%; min-height: 400px; object-fit: cover; display: block; }
.cc-eco-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(7,44,97,.5) 0%, transparent 60%); }

/* ─────────────────────────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────────────────────────── */
.cc-testi-sec { background: var(--surface); }
body[data-theme="warm"] .cc-testi-sec { background: var(--cream); }
.cc-featured-review {
  background: #fff; border: 1.5px solid var(--line);
  border-radius: var(--r-xl); padding: 52px 56px;
  text-align: center; margin-bottom: 20px;
  position: relative; overflow: hidden;
}
.cc-featured-review::before {
  content: '\201C'; position: absolute; top: 4px; left: 28px;
  font-size: 140px; line-height: 1; font-family: Georgia, serif; font-weight: 900;
  color: var(--navy-100); user-select: none; pointer-events: none; letter-spacing: 0;
}
body[data-theme="warm"] .cc-featured-review::before { color: rgba(183,154,106,.18); }
.cc-featured-review blockquote {
  font-size: clamp(18px, 2.2vw, 22px); font-weight: 700;
  color: var(--navy-900); line-height: 1.5;
  margin: 0 auto 28px; position: relative; z-index: 1;
  max-width: 680px;
}
.cc-featured-review .stars { margin-bottom: 24px; }
.cc-featured-review .who { display: flex; align-items: center; justify-content: center; gap: 12px; }
.cc-featured-review .av {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.cc-featured-review .name { font-weight: 700; font-size: 15px; color: var(--ink); }
.cc-featured-review .place { font-size: 13px; color: var(--muted); margin-top: 2px; }
.cc-mini-reviews { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cc-mini-review {
  background: #fff; border: 1.5px solid var(--line);
  border-radius: var(--r-lg); padding: 28px 30px;
  transition: box-shadow var(--dur), transform var(--dur);
}
.cc-mini-review:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.cc-mini-review .stars { margin-bottom: 14px; }
.cc-mini-review blockquote { font-size: 15.5px; color: var(--ink); line-height: 1.62; margin: 0 0 20px; font-weight: 500; }
.cc-mini-review .who { display: flex; align-items: center; gap: 10px; }
.cc-mini-review .av { width: 38px; height: 38px; border-radius: 50%; color: #fff; font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cc-mini-review .who b { font-size: 14px; color: var(--ink); display: block; line-height: 1.3; }
.cc-mini-review .who span { font-size: 12.5px; color: var(--muted); }

/* ─────────────────────────────────────────────────────────────
   QUOTE FORM
   ───────────────────────────────────────────────────────────── */
.cc-quote-sec { background: var(--navy-900); position: relative; overflow: hidden; }
.cc-quote-sec::before {
  content: ''; position: absolute; top: -200px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(61,162,74,.1) 0%, transparent 65%);
}
body[data-theme="warm"] .cc-quote-sec { background: var(--navy); }
body[data-theme="bold"] .cc-quote-sec { background: var(--green-700); }
.cc-quote-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; position: relative; z-index: 1; }
.cc-quote-intro { padding-top: 4px; }
.cc-quote-intro h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; color: #fff; margin: 16px 0 18px; letter-spacing: -.02em; line-height: 1.04; }
.cc-quote-intro p { font-size: 17px; color: #9fb4d2; line-height: 1.65; margin: 0 0 36px; }
body[data-theme="bold"] .cc-quote-intro p { color: rgba(255,255,255,.75); }
.cc-quote-contacts { display: flex; flex-direction: column; gap: 14px; }
.cc-quote-contact-item { display: flex; align-items: center; gap: 12px; font-size: 15px; color: #c0d4e8; font-weight: 500; }
.cc-quote-contact-item .cc-icon { color: var(--lime); flex-shrink: 0; }
body[data-theme="bold"] .cc-quote-contact-item .cc-icon { color: rgba(255,255,255,.9); }
.cc-form-card { background: #fff; border-radius: var(--r-xl); padding: 40px; box-shadow: 0 24px 64px rgba(5,31,69,.4); }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-size: 13px; font-weight: 700; color: var(--slate); }
.inp {
  font-family: var(--font-sans); font-size: 15px;
  padding: 12px 14px; border: 1.5px solid var(--line-strong);
  border-radius: var(--r-md); background: var(--white);
  color: var(--ink); width: 100%;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.inp:focus { outline: none; border-color: var(--navy-400); box-shadow: var(--sh-focus); }
.inp::placeholder { color: var(--muted); }
textarea.inp { resize: vertical; font-family: var(--font-sans); }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-family: var(--font-sans); font-size: 13.5px; font-weight: 600;
  padding: 9px 16px; border-radius: var(--r-pill);
  border: 1.5px solid var(--line-strong); background: #fff; color: var(--slate);
  cursor: pointer; transition: all var(--dur-fast);
  display: inline-flex; align-items: center; gap: 6px; line-height: 1;
}
.chip:hover { border-color: var(--navy-400); background: var(--navy-100); color: var(--navy); }
.chip.on { background: var(--navy); color: #fff; border-color: var(--navy); }
.form-note { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12.5px; color: var(--muted); margin-top: 12px; }
.cc-success { text-align: center; padding: 48px 24px; }
.cc-success-ring { width: 72px; height: 72px; border-radius: 50%; background: var(--green-100); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--green-700); }
.cc-success h3 { font-size: 22px; margin: 0 0 10px; color: var(--navy-900); font-weight: 800; }
.cc-success p { font-size: 15px; color: var(--slate); margin: 0 0 24px; line-height: 1.6; max-width: 28em; margin-left: auto; margin-right: auto; }

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */
.cc-footer { background: var(--navy-900); color: #fff; padding: 56px 0 28px; }
.cc-wave-bar { height: 4px; background: linear-gradient(90deg, var(--green) 0%, var(--lime) 55%, var(--navy-400) 100%); border-radius: var(--r-pill); margin-bottom: 52px; }
.cc-footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.cc-footer-logo { background: #fff; display: inline-block; border-radius: 10px; padding: 8px 10px; margin-bottom: 18px; }
.cc-footer-logo img { height: 36px; display: block; }
.cc-footer-blurb { font-size: 14px; color: #8faac8; line-height: 1.65; margin: 0 0 20px; max-width: 26ch; }
.cc-footer h5 { font-size: 11px; letter-spacing: .13em; text-transform: uppercase; color: #627486; margin: 0 0 18px; font-weight: 700; }
.cc-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.cc-footer ul a { color: #b0c4dc; font-size: 14px; transition: color var(--dur-fast); }
.cc-footer ul a:hover { color: #fff; }
.cc-footer-contacts { display: flex; flex-direction: column; gap: 12px; }
.cc-footer-contact-item { display: flex; align-items: center; gap: 10px; color: #b0c4dc; font-size: 14px; }
.cc-footer-contact-item .cc-icon { color: var(--lime); flex-shrink: 0; }
.cc-footer-base { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; color: #607284; font-size: 12.5px; flex-wrap: wrap; gap: 10px; }
.cc-footer-legal { display: flex; gap: 20px; }
.cc-footer-legal a { color: #7a94ab; transition: color var(--dur-fast); }
.cc-footer-legal a:hover { color: #c0d4e8; }

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .cc-nav, .cc-hdr-phone { display: none; }
  .cc-burger { display: inline-flex; }
  .cc-hero-wrap { grid-template-columns: 1fr; gap: 0; padding-top: 52px; padding-bottom: 60px; }
  .cc-hero-media { display: none; }
  .cc-svc-grid { grid-template-columns: 1fr 1fr; }
  .cc-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cc-step:not(:last-child)::after { display: none; }
  .cc-step { padding: 0; }
  .cc-eco-inner { grid-template-columns: 1fr; }
  .cc-eco-media { height: 260px; }
  .cc-eco-copy { padding: 48px 40px; }
  .cc-quote-wrap { grid-template-columns: 1fr; gap: 48px; }
  .cc-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .cc-svc-grid, .cc-steps, .cc-mini-reviews, .two { grid-template-columns: 1fr; }
  .cc-trustbar-inner { grid-template-columns: 1fr 1fr; }
  .cc-featured-review { padding: 36px 24px; }
  .cc-form-card { padding: 28px 22px; }
  .sec { padding: 64px 0; }
  .cc-footer-grid { grid-template-columns: 1fr; }
  .cc-eco-copy { padding: 36px 24px; }
  .wrap { padding: 0 20px; }
}

/* =============================================================
   CURTAIN CARE — B2B Bold landing overrides
   (hero photo from current front page; eco band copy-only; reviews
   omitted; CF7 form styling)
   ============================================================= */

/* Page wrapper guard so theme base styles don't bleed in */
.cc-bold-page { background: var(--white); }

/* Hero: two-column with the current front-page photo restored.
   (Base cc-styles.css governs the 1.05fr/.95fr grid; mobile still hides
   the photo via the <=1020px media query.) */
.cc-hero-media { display: block; }

/* Eco / Why in-situ band: single column (no photo) */
.cc-eco-inner { grid-template-columns: 1fr; }
.cc-eco-copy { padding: 56px 56px; }
.cc-eco-points { max-width: 640px; }

/* Service cards that link to real pages */
a.cc-svc-card { text-decoration: none; color: inherit; display: block; }

/* ── Contact Form 7 styled to match the Bold form card ────── */
.cc-form-card .wpcf7 { margin: 0; }
.cc-form-card .wpcf7 form > p,
.cc-form-card .cc-form-row { margin: 0 0 18px; display: flex; flex-direction: column; gap: 6px; }
.cc-form-card .cc-form-row label,
.cc-form-card .wpcf7 label { font-size: 13px; font-weight: 700; color: var(--slate); }
.cc-form-card .cc-form-row .required { color: var(--danger); }
.cc-form-card .wpcf7 input[type=text],
.cc-form-card .wpcf7 input[type=tel],
.cc-form-card .wpcf7 input[type=email],
.cc-form-card .wpcf7 input[type=number],
.cc-form-card .wpcf7 textarea {
  font-family: var(--font-sans); font-size: 15px;
  padding: 12px 14px; border: 1.5px solid var(--line-strong);
  border-radius: var(--r-md); background: var(--white);
  color: var(--ink); width: 100%;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.cc-form-card .wpcf7 input:focus,
.cc-form-card .wpcf7 textarea:focus { outline: none; border-color: var(--navy-400); box-shadow: var(--sh-focus); }
.cc-form-card .wpcf7 input::placeholder,
.cc-form-card .wpcf7 textarea::placeholder { color: var(--muted); }
.cc-form-card .wpcf7 textarea { resize: vertical; }

/* Facility-type radios rendered as selectable chips */
.cc-form-card .wpcf7 .wpcf7-radio { display: flex; gap: 8px; flex-wrap: wrap; }
.cc-form-card .wpcf7 .wpcf7-radio .wpcf7-list-item { margin: 0; }
.cc-form-card .wpcf7 .wpcf7-radio .wpcf7-list-item label {
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
  font-size: 13.5px; font-weight: 600; color: var(--slate);
  padding: 9px 16px; border-radius: var(--r-pill);
  border: 1.5px solid var(--line-strong); background: #fff; line-height: 1;
  transition: all var(--dur-fast);
}
.cc-form-card .wpcf7 .wpcf7-radio .wpcf7-list-item label:hover { border-color: var(--navy-400); background: var(--navy-100); color: var(--navy); }
.cc-form-card .wpcf7 .wpcf7-radio input[type=radio] { position: absolute; opacity: 0; pointer-events: none; }
.cc-form-card .wpcf7 .wpcf7-radio input[type=radio]:checked + span { color: #fff; }
/* checked styling via :has (modern browsers); graceful fallback otherwise */
.cc-form-card .wpcf7 .wpcf7-radio .wpcf7-list-item label:has(input:checked) { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Submit button → navy pill, full width */
.cc-form-card .wpcf7 input[type=submit],
.cc-form-card .wpcf7 .wpcf7-submit {
  font-family: var(--font-sans); font-weight: 700; font-size: 16px;
  background: var(--navy); color: #fff; border: 1.5px solid var(--navy);
  border-radius: var(--r-md); padding: 16px 30px; width: 100%;
  cursor: pointer; transition: all var(--dur) var(--ease); margin-top: 6px;
}
.cc-form-card .wpcf7 input[type=submit]:hover { background: var(--navy-700); border-color: var(--navy-700); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(10,60,130,.3); }

/* CF7 response/validation messages */
.cc-form-card .wpcf7 .wpcf7-not-valid-tip { color: var(--danger); font-size: 12.5px; font-weight: 600; }
.cc-form-card .wpcf7-response-output { border-radius: var(--r-md); font-size: 14px; margin: 14px 0 0; padding: 12px 14px; }
.cc-form-card .wpcf7 .wpcf7-spinner { margin: 12px auto 0; display: block; }
