/* ==========================================================================
   TurnoverPro — Design System & Global Styles
   Brand: Trustworthy · Fast · Meticulous · Hospitable
   Palette: fresh teal + warm clay on a "fresh linen" cream canvas
   Type: Fraunces (display, characterful serif) + Inter (body)
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --teal-900: #0a3d37;
  --teal-800: #0b4f47;
  --teal-700: #0e6b60;
  --teal-600: #10897a;
  --teal-500: #16a394;
  --teal-100: #d3ece7;
  --teal-50:  #ecf6f3;

  --clay-600: #c56a3e;
  --clay-500: #d97b4f;
  --clay-400: #e8a06f;
  --clay-100: #f7e2d4;

  --ink:      #14201e;
  --ink-soft: #33413e;
  --muted:    #5c6a67;
  --line:     #e5e0d6;
  --line-soft:#efebe2;

  --cream:    #f7f4ee;
  --cream-2:  #f1ede4;
  --surface:  #ffffff;

  --gold:     #e0a92e;
  --success:  #1f8a5b;
  --danger:   #c0392b;

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  /* Radii & shadows */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(20, 32, 30, 0.06), 0 1px 3px rgba(20, 32, 30, 0.05);
  --shadow-md: 0 8px 24px rgba(14, 107, 96, 0.10), 0 2px 6px rgba(20, 32, 30, 0.05);
  --shadow-lg: 0 24px 60px rgba(11, 79, 71, 0.16);

  --container: 1180px;
  --header-h: 76px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--teal-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--teal-500); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p { margin: 0 0 1rem; }

ul { margin: 0; padding: 0; }

:focus-visible {
  outline: 3px solid var(--teal-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: .75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2rem);
}
.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--cream { background: var(--cream); }
.section--white { background: var(--surface); }
.section--dark { background: var(--teal-900); color: #eaf3f1; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--clay-500);
  display: inline-block;
}
.section--dark .eyebrow { color: var(--teal-100); }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 0; }
.section--dark .section-head p { color: #c6ddd8; }

.lead { font-size: 1.15rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--teal-700);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: .95rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { color: var(--btn-fg); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { --btn-bg: var(--clay-500); box-shadow: 0 6px 18px rgba(217, 123, 79, .28); }
.btn--primary:hover { --btn-bg: var(--clay-600); }

.btn--dark { --btn-bg: var(--teal-800); }
.btn--dark:hover { --btn-bg: var(--teal-700); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}
.btn--ghost:hover { border-color: var(--teal-600); color: var(--teal-700); }

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.btn--lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn svg { width: 18px; height: 18px; }

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-weight: 600;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- Header / Navbar ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(20,32,30,.05);
}
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.brand:hover { color: var(--ink); }
.brand__mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--teal-700);
  color: #fff;
  border-radius: 11px;
  font-size: 1.05rem;
  box-shadow: var(--shadow-sm);
}
.brand__mark svg { width: 22px; height: 22px; }
.brand strong { font-weight: 600; }
.brand span { color: var(--teal-600); }

.nav__links {
  display: flex;
  align-items: center;
  gap: .3rem;
  list-style: none;
}
.nav__links a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: .98rem;
  padding: .55rem .85rem;
  border-radius: var(--radius-sm);
  position: relative;
}
.nav__links a:hover { color: var(--teal-700); background: var(--teal-50); }
.nav__links a[aria-current="page"] { color: var(--teal-800); font-weight: 600; }
.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: .85rem; right: .85rem; bottom: .28rem;
  height: 2px;
  background: var(--clay-500);
  border-radius: 2px;
}
.nav__menu { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); }
.nav__actions { display: flex; align-items: center; gap: .75rem; }

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav__toggle span { position: relative; }
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after { position: absolute; top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    display: grid;
    gap: 1.25rem;
    padding: 1.5rem clamp(1.15rem, 4vw, 2rem) 2rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
  }
  .nav__menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; visibility: visible; }
  .nav__links { flex-direction: column; align-items: stretch; gap: .25rem; }
  .nav__links a { padding: .85rem 1rem; font-size: 1.1rem; }
  .nav__links a[aria-current="page"]::after { display: none; }
  .nav__links a[aria-current="page"] { background: var(--teal-50); }
  .nav__actions { flex-direction: column; align-items: stretch; }
  .nav__actions .btn { width: 100%; }
  .nav__actions .nav__phone { text-align: center; }
}

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  color: var(--ink);
  font-size: .95rem;
}
.nav__phone svg { width: 16px; height: 16px; color: var(--teal-600); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 100% 0%, var(--teal-50) 0%, rgba(236,246,243,0) 55%),
    var(--cream);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5.5rem);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: .4rem .9rem .4rem .5rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.hero__badge .stars { color: var(--gold); letter-spacing: 1px; }
.hero__badge b { color: var(--ink); }
.hero h1 { margin-bottom: 1rem; }
.hero h1 em { font-style: italic; color: var(--teal-700); }
.hero__sub { font-size: 1.2rem; color: var(--ink-soft); max-width: 33ch; margin-bottom: 2rem; }
.hero .btn-row { margin-bottom: 2rem; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 500;
}
.hero__trust span { display: inline-flex; align-items: center; gap: .45rem; }
.hero__trust svg { width: 18px; height: 18px; color: var(--teal-600); flex: none; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero__card {
  position: absolute;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.hero__card--tl { top: 1.5rem; left: -1.5rem; }
.hero__card--br { bottom: 1.5rem; right: -1.25rem; }
.hero__card .ic {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: var(--teal-50);
  color: var(--teal-700);
  flex: none;
}
.hero__card .ic svg { width: 22px; height: 22px; }
.hero__card b { display: block; font-size: 1.05rem; line-height: 1.1; }
.hero__card small { color: var(--muted); font-size: .82rem; }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; padding-top: 2.5rem; }
  .hero__media { max-width: 460px; margin-inline: auto; }
  .hero__sub { max-width: none; }
  .hero__card--tl { left: 0.5rem; }
  .hero__card--br { right: 0.5rem; }
}
@media (max-width: 480px) {
  .hero__card { display: none; }
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--teal-100); transform: translateY(-3px); }

.svc-card__icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--teal-50);
  color: var(--teal-700);
  margin-bottom: 1.1rem;
}
.svc-card__icon svg { width: 26px; height: 26px; }
.svc-card h3 { margin-bottom: .4rem; }
.svc-card p { color: var(--muted); font-size: .97rem; margin: 0; }

/* accent variant for icons alternating */
.card:nth-child(3n+2) .svc-card__icon { background: var(--clay-100); color: var(--clay-600); }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: step; position: relative; }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2rem 1.6rem 1.6rem;
  position: relative;
}
.step__num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--teal-800);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  display: grid; place-items: center;
  margin-bottom: 1.1rem;
}
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--muted); margin: 0; }

/* ---------- Feature list (Why choose us) ---------- */
.feature-list { list-style: none; display: grid; gap: 1.1rem; }
.feature-list li { display: flex; gap: .9rem; align-items: flex-start; }
.feature-list .tick {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--teal-50);
  color: var(--teal-700);
  display: grid; place-items: center;
  margin-top: 2px;
}
.feature-list .tick svg { width: 17px; height: 17px; }
.feature-list b { display: block; }
.feature-list span { color: var(--muted); font-size: .95rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 5/4;
  object-fit: cover;
}

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; text-align: center; }
@media (max-width: 780px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__num .suffix { color: var(--clay-400); }
.stat__label { color: #bcd8d2; margin-top: .5rem; font-size: .98rem; }
.stats .stat { padding: 1rem; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.testimonial .stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }
.testimonial blockquote { margin: 0; font-size: 1.05rem; color: var(--ink-soft); line-height: 1.55; }
.testimonial__author { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.testimonial__author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial__author b { display: block; font-size: .98rem; }
.testimonial__author span { color: var(--muted); font-size: .87rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--teal-800), var(--teal-600));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #d6ece7; max-width: 52ch; margin-inline: auto; margin-bottom: 2rem; font-size: 1.1rem; }
.cta-band .btn-row { justify-content: center; }
.cta-band::after {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  right: -80px; top: -120px;
  background: radial-gradient(circle, rgba(255,255,255,.10), transparent 70%);
  pointer-events: none;
}

/* ---------- Logos / trust strip ---------- */
.trust-strip { border-block: 1px solid var(--line); background: var(--surface); }
.trust-strip__inner { display: flex; align-items: center; justify-content: center; gap: clamp(1.5rem, 5vw, 3.5rem); flex-wrap: wrap; padding-block: 1.5rem; }
.trust-strip__inner span { color: var(--muted); font-weight: 600; font-size: .95rem; display: inline-flex; align-items: center; gap: .5rem; }
.trust-strip__inner svg { width: 20px; height: 20px; color: var(--teal-600); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: var(--teal-900); color: #eaf3f1; padding-block: clamp(3rem, 6vw, 5rem); position: relative; overflow:hidden; }
.page-hero::after {
  content:""; position:absolute; inset:0;
  background: radial-gradient(90% 120% at 100% 0%, rgba(22,163,148,.25), transparent 60%);
  pointer-events:none;
}
.page-hero__inner { position: relative; max-width: 720px; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #c6ddd8; font-size: 1.15rem; margin: 0; }
.page-hero .eyebrow { color: var(--teal-100); }
.breadcrumb { display:flex; gap:.5rem; align-items:center; font-size:.85rem; color:#9fc3bc; margin-bottom:1.25rem; }
.breadcrumb a { color:#c6ddd8; }
.breadcrumb a:hover { color:#fff; }

/* ---------- Services detail ---------- */
.svc-detail { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items:center; }
.svc-detail:nth-child(even) .svc-detail__media { order: -1; }
@media (max-width: 880px){ .svc-detail{ grid-template-columns:1fr; } .svc-detail:nth-child(even) .svc-detail__media{ order:0; } }
.svc-detail__media img { width:100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; }
.svc-detail h2 { margin-bottom:.6rem; }
.svc-detail__tag { color: var(--clay-600); font-weight:600; font-size:.85rem; text-transform:uppercase; letter-spacing:.1em; display:block; margin-bottom:.5rem; }
.chips { display:flex; flex-wrap:wrap; gap:.5rem; margin-top:1rem; }
.chip { background: var(--teal-50); color: var(--teal-800); border-radius: var(--radius-pill); padding:.4rem .85rem; font-size:.85rem; font-weight:600; }

/* included checklist */
.included {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.checklist { list-style:none; display:grid; grid-template-columns: repeat(2,1fr); gap: .9rem 1.75rem; }
@media (max-width:620px){ .checklist{ grid-template-columns:1fr; } }
.checklist li { display:flex; align-items:center; gap:.7rem; font-weight:500; }
.checklist .tick { flex:none; width:26px; height:26px; border-radius:50%; background: var(--success); color:#fff; display:grid; place-items:center; }
.checklist .tick svg { width:15px; height:15px; }

/* ---------- Gallery ---------- */
.gallery { display:grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
@media (max-width:780px){ .gallery{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:480px){ .gallery{ grid-template-columns:1fr; } }
.gallery figure { margin:0; position:relative; overflow:hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.gallery img { width:100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .4s ease; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position:absolute; left:0; right:0; bottom:0;
  padding:1.5rem .9rem .8rem;
  background: linear-gradient(to top, rgba(10,61,55,.85), transparent);
  color:#fff; font-size:.9rem; font-weight:600;
}

/* ---------- Accordion / FAQ ---------- */
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.35rem 3rem 1.35rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.accordion__trigger:hover { color: var(--teal-700); }
.accordion__icon {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
  position: relative;
  transition: background-color .2s ease, border-color .2s ease;
}
.accordion__icon::before, .accordion__icon::after {
  content:""; position:absolute; background: var(--teal-700);
  border-radius:2px; transition: transform .25s ease, background-color .2s ease;
}
.accordion__icon::before { width: 13px; height: 2px; }
.accordion__icon::after { width: 2px; height: 13px; }
.accordion__trigger[aria-expanded="true"] .accordion__icon { background: var(--teal-700); border-color: var(--teal-700); }
.accordion__trigger[aria-expanded="true"] .accordion__icon::before,
.accordion__trigger[aria-expanded="true"] .accordion__icon::after { background:#fff; }
.accordion__trigger[aria-expanded="true"] .accordion__icon::after { transform: scaleY(0); }
.accordion__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
}
.accordion__panel-inner { padding: 0 3rem 1.5rem 0; color: var(--muted); }
.accordion__panel-inner p { margin: 0; }

/* ---------- Pricing ---------- */
.pricing-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:1.25rem; align-items:stretch; }
@media (max-width:1000px){ .pricing-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width:560px){ .pricing-grid{ grid-template-columns:1fr;} }
.price-card {
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  display:flex; flex-direction:column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card--featured { border-color: var(--teal-600); box-shadow: var(--shadow-md); position:relative; }
.price-card--featured::before {
  content:"Most popular";
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background: var(--clay-500); color:#fff;
  font-size:.72rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  padding:.35rem .85rem; border-radius: var(--radius-pill);
  white-space:nowrap;
}
.price-card h3 { margin-bottom:.25rem; }
.price-card__desc { color: var(--muted); font-size:.9rem; margin-bottom:1.1rem; }
.price-card__price { font-family: var(--font-display); font-size: 2.5rem; font-weight:600; color: var(--ink); line-height:1; }
.price-card__price small { display:block; font-family: var(--font-body); font-size:.8rem; color: var(--muted); font-weight:500; margin-bottom:.35rem; letter-spacing:.02em; text-transform:uppercase; }
.price-card__price sup { font-size: 1.3rem; top:-.6em; color: var(--muted); }
.price-card ul { list-style:none; display:grid; gap:.7rem; margin:1.4rem 0; }
.price-card li { display:flex; gap:.6rem; align-items:flex-start; font-size:.95rem; color: var(--ink-soft); }
.price-card li svg { width:18px; height:18px; color: var(--teal-600); flex:none; margin-top:2px; }
.price-card li.muted { color: var(--muted); }
.price-card li.muted svg { color: var(--line); }
.price-card .btn { margin-top:auto; }

/* comparison table */
.table-wrap { overflow-x:auto; border:1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
table.compare { width:100%; border-collapse: collapse; min-width: 640px; }
table.compare th, table.compare td { padding: 1rem 1.1rem; text-align:center; border-bottom:1px solid var(--line-soft); }
table.compare thead th { background: var(--teal-50); font-family: var(--font-display); font-size:1rem; color: var(--teal-900); }
table.compare tbody th { text-align:left; font-weight:500; color: var(--ink-soft); font-family: var(--font-body); }
table.compare tr:last-child td, table.compare tr:last-child th { border-bottom:none; }
table.compare .yes { color: var(--success); }
table.compare .no { color: var(--line); }
table.compare svg { width:20px; height:20px; }
table.compare tbody tr:hover { background: var(--cream); }

/* extras */
.extras-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:1rem; }
@media (max-width:780px){ .extras-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width:480px){ .extras-grid{ grid-template-columns:1fr;} }
.extra {
  background: var(--surface); border:1px solid var(--line-soft); border-radius: var(--radius);
  padding: 1.25rem; display:flex; align-items:center; justify-content:space-between; gap:1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.extra:hover { border-color: var(--teal-100); box-shadow: var(--shadow-sm); }
.extra b { font-weight:600; display:flex; align-items:center; gap:.7rem; }
.extra .ic { width:38px; height:38px; border-radius:10px; background: var(--clay-100); color: var(--clay-600); display:grid; place-items:center; flex:none; }
.extra .ic svg { width:20px; height:20px; }
.extra .price { color: var(--teal-700); font-weight:700; white-space:nowrap; }

/* ---------- About ---------- */
.values-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:1.25rem; }
@media (max-width:900px){ .values-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width:560px){ .values-grid{ grid-template-columns:1fr;} }
.value { background: var(--surface); border:1px solid var(--line-soft); border-radius: var(--radius); padding:1.6rem; }
.value .ic { width:46px; height:46px; border-radius:12px; background: var(--teal-50); color:var(--teal-700); display:grid; place-items:center; margin-bottom:1rem; }
.value .ic svg{ width:24px; height:24px; }
.value h3 { font-size:1.2rem; margin-bottom:.4rem; }
.value p { color: var(--muted); margin:0; font-size:.95rem; }

.team-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:1.5rem; }
@media (max-width:900px){ .team-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width:520px){ .team-grid{ grid-template-columns:1fr; max-width:320px; margin-inline:auto;} }
.team-card { text-align:center; }
.team-card img { width:100%; aspect-ratio:1; object-fit:cover; border-radius: var(--radius-lg); margin-bottom:1rem; box-shadow: var(--shadow-sm); }
.team-card h3 { font-size:1.2rem; margin-bottom:.15rem; }
.team-card .role { color: var(--teal-700); font-weight:600; font-size:.9rem; }
.team-card p { color: var(--muted); font-size:.9rem; margin:.6rem 0 0; }

/* timeline */
.timeline { position:relative; display:grid; gap:2rem; padding-left: 2rem; }
.timeline::before { content:""; position:absolute; left:7px; top:6px; bottom:6px; width:2px; background: var(--line); }
.timeline__item { position:relative; }
.timeline__item::before {
  content:""; position:absolute; left:-2rem; top:4px;
  width:16px; height:16px; border-radius:50%;
  background: var(--surface); border:3px solid var(--teal-600);
}
.timeline__item.is-major::before { background: var(--clay-500); border-color: var(--clay-500); }
.timeline__year { font-family: var(--font-display); font-size:1.3rem; color: var(--teal-700); font-weight:600; }
.timeline__item h3 { font-size:1.15rem; margin:.2rem 0 .3rem; }
.timeline__item p { color: var(--muted); margin:0; }

/* ---------- Contact ---------- */
.contact-grid { display:grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 3.5rem); align-items:start; }
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }
.info-card {
  background: var(--surface); border:1px solid var(--line-soft);
  border-radius: var(--radius); padding:1.4rem;
  display:flex; gap:1rem; align-items:flex-start;
}
.info-card .ic { width:46px;height:46px; border-radius:12px; background: var(--teal-50); color: var(--teal-700); display:grid; place-items:center; flex:none; }
.info-card .ic svg { width:23px; height:23px; }
.info-card h3 { font-size:1.1rem; margin-bottom:.2rem; }
.info-card p, .info-card a { color: var(--muted); margin:0; font-size:.97rem; }
.info-card a:hover { color: var(--teal-700); }
.info-stack { display:grid; gap:1rem; }

.area-list { list-style:none; display:flex; flex-wrap:wrap; gap:.6rem; }
.area-list li { background: var(--surface); border:1px solid var(--line); border-radius: var(--radius-pill); padding:.5rem 1rem; font-weight:600; font-size:.9rem; display:inline-flex; align-items:center; gap:.5rem; }
.area-list svg { width:15px; height:15px; color: var(--teal-600); }

/* forms */
.form { background: var(--surface); border:1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.4rem); box-shadow: var(--shadow-sm); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.1rem; }
@media (max-width:600px){ .form-grid{ grid-template-columns:1fr; } }
.field { display:flex; flex-direction:column; gap:.4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight:600; font-size:.9rem; }
.field label .req { color: var(--clay-600); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size:1rem; color: var(--ink);
  padding:.8rem .9rem; border:1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--cream); transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
  width:100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline:none; border-color: var(--teal-600); background:#fff;
  box-shadow: 0 0 0 4px rgba(16,137,122,.12);
}
.field .error-msg { color: var(--danger); font-size:.82rem; min-height: 1rem; display:none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); background: #fdf3f2; }
.field.has-error .error-msg { display:block; }
.form__note { color: var(--muted); font-size:.85rem; margin-top:1rem; display:flex; gap:.5rem; align-items:flex-start; }
.form__note svg { width:16px; height:16px; color: var(--teal-600); flex:none; margin-top:2px; }
.form-success {
  display:none; background: var(--teal-50); border:1px solid var(--teal-100);
  color: var(--teal-900); border-radius: var(--radius); padding:1.1rem 1.25rem; margin-bottom:1.25rem;
  align-items:center; gap:.75rem; font-weight:500;
}
.form-success.show { display:flex; }
.form-success svg { width:22px; height:22px; color: var(--success); flex:none; }

/* map placeholder */
.map-placeholder {
  border-radius: var(--radius-lg); overflow:hidden; border:1px solid var(--line);
  background:
    linear-gradient(0deg, rgba(16,137,122,.06), rgba(16,137,122,.06)),
    repeating-linear-gradient(45deg, var(--cream-2) 0 22px, var(--cream) 22px 44px);
  min-height: 320px; position:relative; display:grid; place-items:center; text-align:center;
}
.map-placeholder__pin {
  width:56px; height:56px; border-radius:50% 50% 50% 0; transform: rotate(-45deg);
  background: var(--clay-500); box-shadow: var(--shadow-md); margin-bottom:1rem; position:relative;
}
.map-placeholder__pin::after { content:""; position:absolute; inset:14px; background:#fff; border-radius:50%; }
.map-placeholder .inner { position:relative; z-index:2; padding:1rem; }
.map-placeholder p { color: var(--ink-soft); font-weight:600; margin:0; }
.map-placeholder small { color: var(--muted); }

/* ---------- Newsletter ---------- */
.newsletter-form { display:flex; gap:.6rem; flex-wrap:wrap; }
.newsletter-form input {
  flex:1 1 200px; min-width:0; padding:.75rem .9rem; border-radius: var(--radius-sm);
  border:1.5px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); color:#fff; font-size:.95rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.55); }
.newsletter-form input:focus { outline:none; border-color: var(--teal-500); background: rgba(255,255,255,.12); }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-900); color: #bcd4cf; }
.footer-top { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; padding-block: clamp(3rem, 5vw, 4.5rem); }
@media (max-width:900px){ .footer-top{ grid-template-columns:1fr 1fr; gap:2.5rem 2rem; } }
@media (max-width:520px){ .footer-top{ grid-template-columns:1fr; } }
.footer-brand .brand { color:#fff; margin-bottom:1rem; }
.footer-brand .brand:hover { color:#fff; }
.footer-brand p { color:#a8c6c0; font-size:.95rem; max-width: 34ch; }
.footer-col h4 { color:#fff; font-family: var(--font-body); font-size:.8rem; letter-spacing:.1em; text-transform:uppercase; margin-bottom:1.1rem; }
.footer-col ul { list-style:none; display:grid; gap:.7rem; }
.footer-col a { color:#bcd4cf; font-size:.95rem; }
.footer-col a:hover { color:#fff; }
.footer-news p { color:#a8c6c0; font-size:.95rem; margin-bottom:1rem; }
.socials { display:flex; gap:.6rem; margin-top:1.4rem; }
.socials a {
  width:40px; height:40px; border-radius:10px; display:grid; place-items:center;
  background: rgba(255,255,255,.07); color:#dbeae6; transition: background-color .2s ease, transform .2s ease;
}
.socials a:hover { background: var(--teal-600); color:#fff; transform: translateY(-2px); }
.socials svg { width:19px; height:19px; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.1);
  padding-block:1.5rem;
  display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap;
  font-size:.88rem; color:#9fbdb7;
}
.footer-bottom a { color:#9fbdb7; }
.footer-bottom a:hover { color:#fff; }
.footer-legal { display:flex; gap:1.5rem; flex-wrap:wrap; }

/* ---------- Utilities ---------- */
.text-center { text-align:center; }
.mt-0 { margin-top:0; } .mb-0 { margin-bottom:0; }
.stack-sm > * + * { margin-top:.75rem; }
.muted { color: var(--muted); }
.badge-soft { display:inline-flex; align-items:center; gap:.4rem; background: var(--teal-50); color: var(--teal-800); border-radius: var(--radius-pill); padding:.35rem .8rem; font-size:.82rem; font-weight:600; }
.divider { height:1px; background: var(--line); border:0; margin-block: clamp(2rem,4vw,3rem); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration:.001ms !important; transition-duration:.001ms !important; }
}
