/* ============================================================
   CARR COMMUNICATIONS — Luxury Editorial Design System
   HTML5 + Vanilla CSS + Vanilla JS
   Palette derived from brand: deep ink navy + warm gold + cream
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette */
  --ink: #0B1F3A;          /* deep navy (primary) */
  --ink-2: #16335C;        /* lighter navy (secondary) */
  --ink-soft: #2A4A6E;
  --gold: #C9A24B;         /* warm gold accent */
  --gold-deep: #A8842F;    /* darker gold for text on light */
  --gold-soft: #E7CE92;
  --cream: #FAF7F0;        /* warm background */
  --cream-2: #F2ECDF;
  --surface: #FFFFFF;
  --text: #14202E;         /* near-black ink */
  --muted: #56646F;        /* muted body text */
  --line: #E6DECF;         /* hairline border */
  --line-strong: #D6CBB3;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(11,31,58,.06), 0 2px 6px rgba(11,31,58,.06);
  --shadow-md: 0 8px 24px rgba(11,31,58,.10), 0 2px 8px rgba(11,31,58,.06);
  --shadow-lg: 0 24px 60px rgba(11,31,58,.16), 0 8px 24px rgba(11,31,58,.10);
  --shadow-gold: 0 12px 36px rgba(201,162,75,.30);
  --glass: rgba(255,255,255,.72);
  --glass-dark: rgba(11,31,58,.55);

  /* Type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  /* z-index scale */
  --z-base: 1;
  --z-sticky: 40;
  --z-nav: 50;
  --z-overlay: 60;
  --z-modal: 70;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; color: var(--ink); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
p { max-width: 68ch; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); line-height: 1.75; }

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 8rem) 0; position: relative; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body); font-weight: 600; font-size: .76rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--gold); display: inline-block; }
.center .eyebrow::before { display: none; }
.section-head { max-width: 720px; margin: 0 auto 3.2rem; }
.section-head p { margin-inline: auto; }
.grad-text {
  background: linear-gradient(100deg, var(--gold-deep), var(--gold) 60%, var(--gold-soft));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.8rem; border-radius: var(--radius-pill);
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  cursor: pointer; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  position: relative; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--ink); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); background: var(--ink-2); }
.btn--gold { background: linear-gradient(120deg, var(--gold), var(--gold-deep)); color: #2a1f06; box-shadow: var(--shadow-gold); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(201,162,75,.42); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn--light { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-md); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn--block { width: 100%; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--ink); color: #d9e2ee; font-size: .85rem;
  position: relative; z-index: var(--z-nav);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 44px; padding-block: .35rem; }
.topbar a { transition: color .25s var(--ease); }
.topbar a:hover { color: var(--gold); }
.topbar-contact { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.topbar-contact a { display: inline-flex; align-items: center; gap: .45rem; }
.topbar-contact svg { width: 15px; height: 15px; color: var(--gold); }
.topbar-social { display: flex; gap: .85rem; align-items: center; }
.topbar-social a {
  width: 30px; height: 30px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.16); border-radius: 50%;
  transition: all .28s var(--ease);
}
.topbar-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-2px); }
.topbar-social svg { width: 15px; height: 15px; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(250,247,240,.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.nav.scrolled { background: rgba(250,247,240,.94); box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.nav .container { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand img, .brand svg.brand-mark { height: 40px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-display); font-size: 1.18rem; color: var(--ink); letter-spacing: .01em; }
.brand-text span { font-size: .64rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-weight: 500; font-size: .98rem; color: var(--text); position: relative; padding: .3rem 0; transition: color .25s var(--ease); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gold); transition: width .3s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.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 + backdrop are hidden on desktop; revealed in the <=820px query */
.nav-menu-mobile, .nav-backdrop { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(4rem, 8vw, 6rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(201,162,75,.16), transparent 60%),
    radial-gradient(900px 500px at -5% 12%, rgba(22,51,92,.10), transparent 55%),
    var(--cream);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 em { font-style: italic; color: var(--gold-deep); }
.hero .lead { margin-bottom: 2.2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.hero-meta { display: flex; gap: 2.2rem; flex-wrap: wrap; }
.hero-meta .stat strong { font-family: var(--font-display); font-size: 2rem; color: var(--ink); display: block; }
.hero-meta .stat span { font-size: .85rem; color: var(--muted); letter-spacing: .02em; }
.hero-visual { position: relative; }
.hero-visual .frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); transform: perspective(1400px) rotateY(-7deg) rotateX(2deg);
  transition: transform .6s var(--ease-out);
}
.hero-visual .frame:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(0deg); }
.hero-visual .frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.hero-visual .frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(11,31,58,.32)); }
.float-card {
  position: absolute; background: var(--glass); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 1rem 1.2rem;
}
.float-card--tl { top: 8%; left: -7%; display: flex; align-items: center; gap: .7rem; animation: float 6s ease-in-out infinite; }
.float-card--br { bottom: 7%; right: -6%; max-width: 230px; animation: float 7s ease-in-out infinite .8s; }
.float-card .rating { color: var(--gold); font-size: 1.05rem; letter-spacing: 2px; }
.float-card small { color: var(--muted); font-size: .78rem; }
.float-card strong { font-family: var(--font-display); color: var(--ink); }
.avatar-badge { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-deep)); display: grid; place-items: center; color: #2a1f06; font-weight: 700; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ---------- Logos / social proof strip ---------- */
.logos { border-block: 1px solid var(--line); background: var(--surface); }
.logos .container { padding-block: 2.2rem; }
.logos p { text-align: center; color: var(--muted); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin: 0 auto 1.4rem; }
.logo-row { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 5vw, 3.5rem); align-items: center; justify-content: center; }
.logo-row span { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.1rem,2vw,1.5rem); color: var(--ink); opacity: .5; transition: opacity .3s var(--ease); }
.logo-row span:hover { opacity: 1; }

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-deep)); transition: width .4s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { width: 100%; }
.card .icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(201,162,75,.16), rgba(11,31,58,.06));
  color: var(--gold-deep); margin-bottom: 1.3rem;
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .7rem; }
.card p { color: var(--muted); font-size: .98rem; }
.card .more, .post-card .more { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.2rem; color: var(--gold-deep); font-weight: 600; font-size: .9rem; }
.card .more svg, .post-card .more svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.card:hover .more svg, .post-card:hover .more svg { transform: translateX(4px); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--rev .split-media { order: 2; }
.split-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; transition: transform .8s var(--ease-out); }
.split-media:hover img { transform: scale(1.05); }
.split ul.ticks { margin-top: 1.5rem; display: grid; gap: .9rem; }
.split ul.ticks li { display: flex; gap: .8rem; align-items: flex-start; color: var(--text); }
.tick { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: rgba(201,162,75,.16); color: var(--gold-deep); display: grid; place-items: center; margin-top: 2px; }
.tick svg { width: 14px; height: 14px; }

/* ---------- Reviews (by service category) ---------- */
.reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
.google-badge { display: inline-flex; align-items: center; gap: .8rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: .6rem 1.2rem; box-shadow: var(--shadow-sm); }
.google-badge .g-logo { width: 24px; height: 24px; }
.google-badge .stars { color: var(--gold); letter-spacing: 2px; }
.google-badge b { font-family: var(--font-display); }
.review-tabs { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2rem; }
.review-tab {
  padding: .6rem 1.3rem; border-radius: var(--radius-pill); border: 1.5px solid var(--line-strong);
  font-weight: 600; font-size: .9rem; color: var(--muted); background: var(--surface);
  transition: all .3s var(--ease);
}
.review-tab:hover { border-color: var(--gold); color: var(--ink); }
.review-tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.8rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review-card .top { display: flex; align-items: center; justify-content: space-between; }
.review-card .stars { color: var(--gold); letter-spacing: 1px; font-size: .95rem; }
.review-card .g-mark { width: 20px; height: 20px; }
.review-card p { color: var(--text); font-size: .97rem; line-height: 1.65; }
.review-card .who { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.review-card .who .av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--ink-2), var(--ink)); color: #fff; display: grid; place-items: center; font-weight: 700; }
.review-card .who strong { display: block; font-family: var(--font-body); font-size: .95rem; color: var(--ink); }
.review-card .who span { font-size: .8rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.5rem, 6vw, 4.5rem); text-align: center; box-shadow: var(--shadow-lg); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 320px at 50% -20%, rgba(201,162,75,.30), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: #c6d2e0; margin: 0 auto 2rem; }
.cta-band .hero-actions { justify-content: center; margin: 0; }

/* ---------- Inquiry form ---------- */
.form-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.8rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: .45rem; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: .9rem 1.1rem; border: 1.5px solid var(--line-strong); border-radius: 12px;
  background: var(--cream); color: var(--text); transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(201,162,75,.16); }
.field textarea { resize: vertical; min-height: 130px; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #c0392b; box-shadow: 0 0 0 4px rgba(192,57,43,.12); }
.field .err { color: #c0392b; font-size: .8rem; margin-top: .35rem; display: none; }
.field.invalid .err { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 1rem; }
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success.show { display: block; }
.form-success .ok-icon { width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%; background: rgba(46,160,90,.14); color: #2ea05a; display: grid; place-items: center; }
.form-success .ok-icon svg { width: 32px; height: 32px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #b9c6d6; padding: clamp(3.5rem,7vw,5rem) 0 0; position: relative; }
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer .brand-text strong { color: #fff; }
.footer-about p { color: #9fb0c2; font-size: .95rem; margin-top: 1.2rem; max-width: 36ch; }
.footer ul.fnav li { margin-bottom: .7rem; }
.footer ul.fnav a { color: #b9c6d6; transition: color .25s var(--ease), padding .25s var(--ease); }
.footer ul.fnav a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact li { display: flex; gap: .7rem; margin-bottom: .9rem; font-size: .95rem; color: #b9c6d6; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; transition: all .28s var(--ease); }
.footer-social a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.6rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: .86rem; color: #92a3b5; }
.footer-bottom a { color: var(--gold-soft); font-weight: 600; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Mobile sticky action buttons ---------- */
.mobile-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-sticky); padding: .6rem; gap: .6rem; background: var(--glass); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(11,31,58,.10); }
.mobile-bar a { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .55rem; padding: .85rem; border-radius: 12px; font-weight: 700; font-size: .95rem; }
.mobile-bar .call { background: var(--ink); color: #fff; }
.mobile-bar .wa { background: #25D366; color: #06351b; }
.mobile-bar svg { width: 20px; height: 20px; }

/* Floating desktop WhatsApp bubble */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: var(--z-sticky); width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.45); transition: transform .3s var(--ease); animation: pulse 2.6s infinite; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
@keyframes pulse { 0% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { position: relative; padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3rem,5vw,4rem); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(900px 400px at 80% -10%, rgba(201,162,75,.16), transparent 60%), var(--cream); }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .85rem; color: var(--muted); margin-bottom: 1.2rem; }
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .lead { max-width: 62ch; }

/* ---------- Blog ---------- */
.post-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.post-card .thumb { aspect-ratio: 16/10; overflow: hidden; position: relative; background: var(--cream-2); }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.post-card:hover .thumb img { transform: scale(1.06); }
.post-card .tag { position: absolute; top: 1rem; left: 1rem; background: var(--glass); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: var(--ink); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .4rem .8rem; border-radius: var(--radius-pill); }
.post-card .body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }
.post-card .meta { font-size: .8rem; color: var(--muted); margin-bottom: .7rem; flex: 0 0 auto; }
.post-card h3 { font-size: 1.25rem; margin-bottom: .7rem; }
.post-card p { color: var(--muted); font-size: .94rem; }
.post-card .body p:not(.meta) { flex: 1; }
.post-card .more { margin-top: 1.1rem; }

/* ---------- About / team ---------- */
.team-card { text-align: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-card .photo { width: 130px; height: 130px; border-radius: 50%; margin: 0 auto 1.3rem; overflow: hidden; border: 3px solid var(--gold-soft); box-shadow: var(--shadow-md); }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.35rem; margin-bottom: .25rem; }
.team-card .role { color: var(--gold-deep); font-weight: 600; font-size: .9rem; letter-spacing: .04em; margin-bottom: 1rem; }
.team-card .socials { display: flex; gap: .6rem; justify-content: center; margin-top: 1.2rem; }
.team-card .socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--ink); transition: all .28s var(--ease); }
.team-card .socials a:hover { background: var(--ink); color: #fff; transform: translateY(-3px); }
.team-card .socials svg { width: 16px; height: 16px; }

.value-card { padding: 1.8rem; border-radius: var(--radius); background: var(--cream); border: 1px solid var(--line); }
.value-card .num { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); line-height: 1; margin-bottom: .8rem; }
.value-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.value-card p { color: var(--muted); font-size: .95rem; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.5rem,5vw,3.5rem); }
.stats-band .grid { text-align: center; }
.stats-band .stat strong { font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.2rem); display: block; color: #fff; }
.stats-band .stat span { color: var(--gold-soft); font-size: .9rem; letter-spacing: .04em; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem,5vw,3.5rem); align-items: start; }
.contact-info { display: grid; gap: 1.2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.contact-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-item .ci-icon { width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0; background: linear-gradient(135deg, rgba(201,162,75,.18), rgba(11,31,58,.06)); color: var(--gold-deep); display: grid; place-items: center; }
.contact-item .ci-icon svg { width: 22px; height: 22px; }
.contact-item h4 { font-family: var(--font-body); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem; }
.contact-item a, .contact-item p { color: var(--ink); font-weight: 600; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .float-card--tl { left: 0; } .float-card--br { right: 0; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .review-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu-mobile { position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); background: var(--cream); z-index: var(--z-overlay); transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: var(--shadow-lg); padding: 6rem 2rem 2rem; display: flex; flex-direction: column; gap: 1.4rem; }
  .nav-menu-mobile.open { transform: translateX(0); }
  .nav-menu-mobile a { font-size: 1.15rem; font-family: var(--font-display); color: var(--ink); padding-bottom: .8rem; border-bottom: 1px solid var(--line); }
  .nav-menu-mobile .btn { margin-top: 1rem; }
  .nav-backdrop { display: block; position: fixed; inset: 0; background: rgba(11,31,58,.4); z-index: var(--z-sticky); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); }
  .nav-backdrop.open { opacity: 1; pointer-events: auto; }
  .split, .split--rev .split-media { grid-template-columns: 1fr; order: 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .topbar-contact { display: none; }
  .topbar .container { justify-content: center; }
  .mobile-bar { display: flex; }
  .wa-float { display: none; }
  body { padding-bottom: 70px; }
  .hero-visual { max-width: 380px; }
  .float-card--tl, .float-card--br { display: none; }
}
@media (max-width: 480px) {
  .hero-meta { gap: 1.4rem; }
  .btn { padding: .85rem 1.4rem; font-size: .92rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-visual .frame { transform: none; }
}
