/* ===========================
   Stonemark Group LLC — styles.css
   Official brand: Graphite #242B33 + Stonemark Blue #2C6FB5
   Warm accent: Copper #D38A2E · Neutral: Slate #6B747C
   =========================== */

:root {
  /* Official brand palette */
  --graphite:     #242B33;
  --graphite-mid: #2E3640;
  --blue:         #2C6FB5;
  --blue-dark:    #1E5A9E;
  --blue-light:   #93BBE8;
  --blue-pale:    #EAF2FC;
  --copper:       #D38A2E;
  --slate:        #6B747C;
  --surface:      #F8FAFB;
  --white:        #FFFFFF;

  /* Semantic aliases (keep old amber names for HTML inline style compat) */
  --stone:            var(--graphite);
  --stone-mid:        var(--graphite-mid);
  --amber:            var(--blue);
  --amber-dark:       var(--blue-dark);
  --amber-light:      var(--blue-light);
  --amber-pale:       var(--blue-pale);

  /* Text */
  --color-bg:         var(--surface);
  --color-surface:    var(--white);
  --color-text:       var(--graphite);
  --color-muted:      #3D4852;
  --color-subtle:     var(--slate);
  --color-accent:     var(--blue);
  --color-accent-dark:var(--blue-dark);

  /* Layout */
  --container-max:    1160px;
  --container-pad:    1.5rem;
  --radius-sm:        0.5rem;
  --radius-md:        1rem;
  --radius-lg:        1.5rem;
  --radius-pill:      999px;
  --shadow-soft:      0 4px 24px rgba(36,43,51,0.08);
  --shadow-card:      0 8px 32px rgba(36,43,51,0.13);
  --shadow-cta:       0 16px 40px rgba(44,111,181,0.30);

  /* Transitions */
  --t: 200ms ease;

  /* Typography */
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Base ── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ── Utility ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.97rem;
  border-radius: var(--radius-pill);
  padding: 0.85rem 2.25rem;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover, .btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(44,111,181,0.40);
}

.btn-outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: rgba(44,111,181,0.08);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--blue);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-ghost:hover { gap: 0.65rem; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(36,43,51,0.08);
  transition: box-shadow var(--t);
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(36,43,51,0.10);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1rem;
}

/* ── Brand / Logo ── */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

/* Real logo image */
.brand-logo {
  height: 36px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
/* Footer: PNG has white bg so we hide it and render text instead */
.site-footer .brand-logo {
  display: none;
}
.site-footer .brand::after {
  content: 'Stonemark Group';
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-muted);
}
.nav-links a:hover, .nav-links a.active { color: var(--graphite); }
.nav-links .btn { margin-left: 0.5rem; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(36,43,51,0.12);
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--graphite);
  border-radius: 999px;
  transition: transform var(--t), opacity var(--t);
}
.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); }

/* ── Hero ── */
.hero {
  padding: clamp(5rem,10vw,8rem) 0 clamp(4rem,8vw,6.5rem);
  background:
    radial-gradient(ellipse 70% 60% at 80% -10%, rgba(44,111,181,0.09), transparent),
    radial-gradient(ellipse 50% 50% at -5% 90%, rgba(36,43,51,0.05), transparent),
    var(--surface);
  text-align: center;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--graphite);
  margin-bottom: 1.25rem;
  max-width: 18ch;
  margin-inline: auto;
}
.hero-title span { color: var(--blue); }

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.175rem);
  color: var(--color-muted);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero-actions .btn-primary { padding: 1rem 2.75rem; font-size: 1.025rem; }

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-subtle);
  font-weight: 500;
}
.hero-trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--blue-light); }

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 760px;
  margin: 3.5rem auto 0;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--graphite);
  letter-spacing: -0.02em;
}
.stat-num span { color: var(--blue); }
.stat-label { font-size: 0.88rem; color: var(--color-subtle); margin-top: 0.25rem; }

/* ── Section shared ── */
.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--graphite-mid); color: var(--white); }

.section-header {
  text-align: center;
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--graphite);
  margin-bottom: 0.75rem;
}
.section-title span { color: var(--blue); }
.section-dark .section-title { color: var(--white); }
.section-lead { font-size: 1.05rem; color: var(--color-muted); }
.section-dark .section-lead { color: rgba(255,255,255,0.75); }

/* ── Services grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(36,43,51,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: rgba(44,111,181,0.25);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(44,111,181,0.12), rgba(44,111,181,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.service-icon svg { width: 24px; height: 24px; }

.service-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--graphite);
}
.service-desc { font-size: 0.95rem; color: var(--color-muted); }

/* ── Feature list (How it works) ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.feature-item { display: flex; flex-direction: column; gap: 0.75rem; }
.feature-num {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1;
}
.feature-title { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--graphite); }
.feature-desc { font-size: 0.93rem; color: var(--color-muted); }

/* ── Service areas ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.area-card {
  background: var(--white);
  border: 1px solid rgba(36,43,51,0.07);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform var(--t), border-color var(--t);
}
.area-card:hover { transform: translateY(-3px); border-color: rgba(44,111,181,0.3); }
.area-city { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--graphite); margin-top: 0.75rem; }
.area-state { font-size: 0.85rem; color: var(--color-subtle); margin-top: 0.2rem; }
.area-icon { color: var(--blue); }

/* ── CTA section ── */
.cta-section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(44,111,181,0.10), transparent),
    var(--surface);
  text-align: center;
}
.cta-section .section-title { margin-bottom: 1rem; }
.cta-section .section-lead { margin-bottom: 2.5rem; }

/* ── Footer ── */
.site-footer {
  background: var(--graphite);
  color: rgba(255,255,255,0.75);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-desc { font-size: 0.9rem; margin-top: 0.85rem; line-height: 1.65; max-width: 26ch; }
.footer-col-title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: 0.93rem;
  margin-bottom: 1.15rem;
  letter-spacing: 0.03em;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.9rem; transition: color var(--t); }
.footer-links a:hover { color: var(--blue-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.85rem;
}

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 5vw, 4.5rem);
  background: linear-gradient(135deg, var(--graphite) 0%, var(--graphite-mid) 100%);
  color: var(--white);
  text-align: center;
}
.page-hero .eyebrow { color: var(--blue-light); }
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.page-hero-sub {
  font-size: 1.075rem;
  color: rgba(255,255,255,0.78);
  max-width: 52ch;
  margin-inline: auto;
}

/* ── Contact form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-family: var(--font-head); font-size: 0.9rem; font-weight: 600; color: var(--graphite); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(36,43,51,0.14);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--graphite);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(44,111,181,0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #A0ADB8; }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(44,111,181,0.10);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: var(--graphite); }
.contact-info-value { font-size: 0.93rem; color: var(--color-muted); margin-top: 0.2rem; }

/* ── Legal pages ── */
.legal-content {
  max-width: 780px;
  margin-inline: auto;
  padding: clamp(3.5rem, 6vw, 5rem) var(--container-pad);
}
.legal-content h2 {
  font-size: 1.35rem; font-weight: 700; color: var(--graphite);
  margin: 2.5rem 0 0.75rem; padding-top: 0.5rem;
  border-top: 1px solid rgba(36,43,51,0.07);
}
.legal-content h2:first-of-type { border-top: none; margin-top: 0; }
.legal-content p { font-size: 0.97rem; color: var(--color-muted); margin-bottom: 1rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { font-size: 0.97rem; color: var(--color-muted); margin-bottom: 0.4rem; }
.legal-content a { color: var(--blue); text-decoration: underline; }
.legal-meta { font-size: 0.85rem; color: var(--color-subtle); margin-bottom: 2.5rem; }

/* ── About / values ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(36,43,51,0.07);
  border-left: 4px solid var(--blue);
}
.value-title { font-family: var(--font-head); font-weight: 700; color: var(--graphite); margin-bottom: 0.5rem; }
.value-desc { font-size: 0.93rem; color: var(--color-muted); }

/* ── Estimate form page ── */
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.book-benefits { display: flex; flex-direction: column; gap: 1.25rem; }
.book-benefit-item { display: flex; align-items: flex-start; gap: 0.85rem; }
.benefit-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(44,111,181,0.12);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.benefit-text { font-size: 0.97rem; color: var(--color-muted); }
.benefit-text strong { color: var(--graphite); }

/* ── Consent boxes ── */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  accent-color: var(--blue);
  cursor: pointer;
}
.checkbox-group label {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--color-muted);
  cursor: pointer;
}
.checkbox-group label a { color: var(--blue); text-decoration: underline; }
.sms-consent-box {
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  padding: 1rem 1rem 0.5rem 1rem;
  margin-bottom: 1.25rem;
  background: #F8FAFB;
}
.sms-consent-heading {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: #4A5568; margin-bottom: 0.6rem;
}

/* ── Trust badges ── */
.trust-section {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  color: var(--graphite);
  font-weight: 600;
  font-size: 0.9rem;
}
.trust-icon { color: var(--blue); width: 32px; height: 32px; }

/* ── Concrete coatings service list ── */
.services-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.services-list li { margin-bottom: 0.5rem; font-size: 1.05rem; color: var(--color-muted); }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(36,43,51,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  line-height: 1;
  color: var(--blue-pale);
  font-family: Georgia, serif;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--copper);
}
.testimonial-stars svg { width: 18px; height: 18px; fill: currentColor; }
.testimonial-body {
  font-size: 0.97rem;
  color: var(--color-muted);
  line-height: 1.75;
  padding-top: 1rem;
  flex: 1;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(36,43,51,0.07);
}
.testimonial-name { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--graphite); }
.testimonial-detail { font-size: 0.83rem; color: var(--color-subtle); }

/* ── Partner Brands Strip ── */
.brands-strip {
  padding: 2.75rem 0;
  background: var(--white);
  border-top: 1px solid rgba(36,43,51,0.06);
  border-bottom: 1px solid rgba(36,43,51,0.06);
}
.brands-strip-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-subtle);
  margin-bottom: 1.5rem;
}
.brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.brand-pill {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  color: #8A939C;
  letter-spacing: 0.04em;
  padding: 0.45rem 1.1rem;
  border: 1.5px solid rgba(36,43,51,0.10);
  border-radius: var(--radius-pill);
  transition: color var(--t), border-color var(--t);
  white-space: nowrap;
}
.brand-pill:hover { color: var(--graphite); border-color: rgba(36,43,51,0.22); }

/* ── Team Grid ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: var(--white);
  border: 1px solid rgba(36,43,51,0.07);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--blue-pale) 0%, rgba(44,111,181,0.12) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue);
}
.team-name { font-family: var(--font-head); font-weight: 700; color: var(--graphite); margin-bottom: 0.2rem; }
.team-role { font-size: 0.85rem; color: var(--blue); font-weight: 600; margin-bottom: 0.6rem; }
.team-bio { font-size: 0.88rem; color: var(--color-muted); line-height: 1.6; }

/* ── Certification badges ── */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
}
.cert-card {
  background: var(--white);
  border: 1px solid rgba(36,43,51,0.07);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
}
.cert-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(44,111,181,0.12), rgba(44,111,181,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.cert-icon svg { width: 22px; height: 22px; }
.cert-body {}
.cert-title { font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; color: var(--graphite); }
.cert-desc { font-size: 0.82rem; color: var(--color-muted); margin-top: 0.2rem; line-height: 1.5; }

/* ── Confirmation ── */
#confirmation-message {
  display: none;
  padding: 2rem;
  background: #EAF2FC;
  color: #1E5A9E;
  border-radius: var(--radius-lg);
  border: 1px solid var(--blue-light);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 500;
}

/* ── Mobile responsive ── */
@media (max-width: 880px) {
  .contact-grid, .book-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: calc(100% + 1px); left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid rgba(36,43,51,0.07);
    padding: 1.5rem var(--container-pad) 2rem;
    gap: 1.25rem;
    box-shadow: 0 8px 24px rgba(36,43,51,0.10);
    z-index: 99;
  }
  .nav-links .btn { width: 100%; justify-content: center; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
  .stats-row { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
}

/* ── Animations ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fade-up 0.55s ease both; }
.fade-up[data-delay="1"] { animation-delay: 0.1s; }
.fade-up[data-delay="2"] { animation-delay: 0.2s; }
.fade-up[data-delay="3"] { animation-delay: 0.3s; }

/* ── Cookie Consent Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--graphite);
  color: #E8E6E3;
  padding: 1.25rem var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(36,43,51,0.22);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-text {
  font-size: 0.87rem;
  line-height: 1.6;
  flex: 1;
  min-width: 220px;
  color: #D4D0CB;
}
.cookie-banner-text a { color: var(--blue-light); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.55rem 1.25rem;
  font-size: 0.87rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t);
}
.cookie-btn-accept:hover { background: var(--blue-dark); }
.cookie-btn-decline {
  background: transparent;
  color: #C4BFB9;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 0.55rem 1.25rem;
  font-size: 0.87rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--t), color var(--t);
}
.cookie-btn-decline:hover { border-color: rgba(255,255,255,0.45); color: #fff; }
@media (max-width: 640px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}
