/* ============================================================
   Horizon Fife Ltd — site stylesheet
   Brand colours live in :root — change once, applies everywhere.
   ============================================================ */
:root {
  --ink: #1d232b;          /* headings, footer bg */
  --slate: #46525f;        /* body text */
  --accent: #d6281e;       /* Horizon brand red (from logo) */
  --accent-dark: #a91d15;  /* hover state */
  --sand: #f6f2ec;         /* warm section background */
  --line: #e5e0d8;         /* borders */
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(29, 35, 43, 0.10);
  --maxw: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--slate);
  line-height: 1.65;
  font-size: 17px;
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: .6em; }
h3 { font-size: 1.18rem; margin-bottom: .4em; }
p + p { margin-top: 1em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
section { padding: 70px 0; }
.section-sand { background: var(--sand); }
.kicker {
  display: inline-block; text-transform: uppercase; letter-spacing: .14em;
  font-size: .8rem; font-weight: 700; color: var(--accent-dark); margin-bottom: .5em;
}
.lead { font-size: 1.13rem; max-width: 62ch; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 999px;
  font-weight: 700; font-size: 1rem; letter-spacing: .01em;
  transition: all .18s ease; text-decoration: none !important;
  border: 2px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(255,255,255,.7); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
}
.nav-bar {
  display: grid; grid-template-columns: minmax(max-content, 1fr) auto minmax(max-content, 1fr);
  align-items: center; height: 74px; gap: 16px;
}
/* brand: logo with the strapline underneath, stretched to the logo's width */
.brand { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; justify-self: start; text-decoration: none !important; }
.brand img { height: 36px; width: auto; }
.brand-text { display: block; width: 100%; line-height: 1; }
.brand-tag {
  display: block; font-size: .64rem; text-transform: uppercase;
  color: var(--accent-dark); font-weight: 700; white-space: nowrap;
  text-align: right; /* sits flush with the logo's right edge */
}

.nav-menu { display: flex; align-items: center; gap: 6px; list-style: none; justify-self: center; }
.nav-menu > li { position: relative; }
.nav-menu a {
  display: block; padding: 10px 14px; color: var(--ink); font-weight: 600;
  font-size: .98rem; border-radius: 8px; text-decoration: none !important;
}
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--accent-dark); }
.nav-menu .nav-cta { display: none; } /* CTA lives in the bar on desktop; menu copy is mobile-only */

.nav-right { justify-self: end; display: flex; align-items: center; gap: 12px; }
.nav-quote {
  background: var(--accent); color: #fff !important; border-radius: 999px;
  padding: 11px 22px; font-weight: 700; font-size: .95rem;
  text-decoration: none !important; white-space: nowrap; transition: .18s;
}
.nav-quote:hover { background: var(--accent-dark); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .2s; }

.has-sub > a::after { content: " ▾"; font-size: .72em; }
.sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 240px; background: #fff;
  border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow);
  list-style: none; padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: .18s ease;
}
.has-sub:hover .sub-menu, .has-sub.open .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu a { padding: 9px 12px; font-weight: 500; }
.sub-menu a:hover { background: var(--sand); color: var(--accent-dark); }

@media (max-width: 400px) { .brand-tag { display: none; } }
@media (max-width: 940px) {
  .nav-bar { display: flex; justify-content: space-between; }
  .brand-tag { display: block; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; inset: 74px 0 auto 0; background: #fff; flex-direction: column;
    align-items: stretch; gap: 0; padding: 10px 18px 24px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); display: none; max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .sub-menu {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; border-left: 3px solid var(--sand); border-radius: 0; margin-left: 10px;
    display: none; padding: 0;
  }
  .has-sub.open .sub-menu { display: block; }
  .nav-menu .nav-cta { display: block; margin-top: 10px; }
  .nav-menu .nav-cta a { background: var(--accent); color: #fff !important; border-radius: 999px; text-align: center; }
  .nav-menu .nav-cta a:hover { background: var(--accent-dark); }
  .nav-quote { display: none; } /* on mobile the CTA lives inside the menu */
}
@media (max-width: 500px) { .brand-tag { display: none; } }

/* ---------- hero ---------- */
.hero {
  position: relative; color: #fff; padding: 130px 0 120px;
  background: linear-gradient(rgba(20, 25, 32, .62), rgba(20, 25, 32, .62)), url('../images/hero.jpg') center/cover no-repeat, var(--ink);
}
.hero h1 { color: #fff; max-width: 16ch; }
.hero .lead { color: rgba(255,255,255,.92); margin: 18px 0 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.page-hero {
  position: relative; color: #fff; padding: 84px 0 70px;
  background: linear-gradient(rgba(20,25,32,.66), rgba(20,25,32,.66)), url('../images/hero.jpg') center/cover no-repeat, var(--ink);
}
.page-hero h1 { color: #fff; }
.page-hero .crumbs { font-size: .88rem; color: rgba(255,255,255,.75); margin-bottom: 10px; }
.page-hero .crumbs a { color: rgba(255,255,255,.9); }
.page-hero .lead { color: rgba(255,255,255,.9); margin-top: 12px; }

/* ---------- trust strip ---------- */
.trust-strip { background: var(--ink); color: #fff; padding: 18px 0; }
.trust-items { display: flex; flex-wrap: wrap; gap: 10px 34px; justify-content: center; font-weight: 600; font-size: .95rem; }
.trust-items span::before { content: "✓ "; color: var(--accent); font-weight: 800; }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 940px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .18s ease, box-shadow .18s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card img { height: 210px; object-fit: cover; width: 100%; }
.card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.card-body p { font-size: .97rem; flex: 1; }
.card-link { margin-top: 14px; font-weight: 700; color: var(--accent-dark); }
.card-link::after { content: " →"; }
a.card-wrap { text-decoration: none !important; color: inherit; display: flex; }

/* ---------- feature / split ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }

.checklist { list-style: none; margin-top: 18px; }
.checklist li { padding: 7px 0 7px 32px; position: relative; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 7px; width: 22px; height: 22px;
  background: var(--accent); color: #fff; border-radius: 50%; font-size: .8rem;
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat b { display: block; font-size: 2.2rem; color: var(--accent-dark); font-weight: 800; }
.stat span { font-size: .92rem; font-weight: 600; color: var(--ink); }

/* ---------- testimonial ---------- */
.quote {
  background: #fff; border-left: 5px solid var(--accent); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 34px 38px; max-width: 760px; margin: 0 auto;
}
.quote p { font-size: 1.12rem; font-style: italic; color: var(--ink); }
.quote footer { margin-top: 16px; font-weight: 700; color: var(--accent-dark); font-style: normal; }

/* ---------- accreditation logos ---------- */
.logo-row { display: flex; flex-wrap: wrap; gap: 34px; align-items: center; justify-content: center; }
.logo-row a { display: block; }
.logo-row img { height: 84px; width: auto; filter: grayscale(20%); opacity: .9; transition: .18s; }
.logo-row img:hover { filter: none; opacity: 1; }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 860px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .gallery { grid-template-columns: 1fr; } }
.gallery a { display: block; border-radius: var(--radius); overflow: hidden; }
.gallery img { aspect-ratio: 4/3; object-fit: cover; width: 100%; transition: transform .25s ease; }
.gallery a:hover img { transform: scale(1.04); }

.lightbox {
  position: fixed; inset: 0; background: rgba(15,18,23,.93); display: none;
  align-items: center; justify-content: center; z-index: 500; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 18px; right: 24px; background: none; border: 0;
  color: #fff; font-size: 2.2rem; cursor: pointer; line-height: 1;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--accent-dark), var(--accent));
  color: #fff; text-align: center; padding: 64px 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.94); max-width: 56ch; margin: 10px auto 26px; }
.cta-band .btn-primary { background: #fff; color: var(--accent-dark); }
.cta-band .btn-primary:hover { background: var(--ink); color: #fff; }

/* ---------- service page ---------- */
.service-layout { display: grid; grid-template-columns: 1fr 320px; gap: 46px; align-items: start; }
@media (max-width: 900px) { .service-layout { grid-template-columns: 1fr; } }
.service-body h2 { margin-top: 1.4em; }
.service-body h2:first-child { margin-top: 0; }
.side-card {
  background: var(--sand); border-radius: var(--radius); padding: 28px;
  position: sticky; top: 96px;
}
.side-card h3 { margin-bottom: 10px; }
.side-card .btn { width: 100%; text-align: center; margin-top: 14px; }
.side-card .phone { font-size: 1.3rem; font-weight: 800; color: var(--ink); display: block; margin-top: 6px; }
.side-links { list-style: none; margin-top: 20px; border-top: 1px solid var(--line); padding-top: 16px; }
.side-links li { padding: 5px 0; }
.mini-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 26px 0 6px; }
.mini-gallery img { border-radius: 8px; aspect-ratio: 4/3; object-fit: cover; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 46px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h3 { margin-top: 22px; }
.contact-info h3:first-child { margin-top: 0; }
.contact-info a { font-weight: 600; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
label { display: block; font-weight: 600; color: var(--ink); font-size: .92rem; margin: 14px 0 6px; }
input, select, textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 8px;
  font: inherit; color: var(--ink); background: #fff;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); }
textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .85rem; margin-top: 12px; color: #7c8794; }
.form-status { margin-top: 14px; font-weight: 700; display: none; }
.form-status.ok { display: block; color: #1a7f37; }
.form-status.err { display: block; color: #b42318; }
.hp { position: absolute; left: -9999px; opacity: 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #c6ccd4; padding: 60px 0 26px; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .08em; }
.site-footer ul { list-style: none; }
.site-footer li { padding: 4px 0; }
.site-footer a { color: #c6ccd4; }
.site-footer a:hover { color: var(--accent); }
.footer-brand img { height: 42px; margin-bottom: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: .85rem; color: #8b94a0;
}

/* ---------- accreditation cards (homepage) ---------- */
.accred-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
@media (max-width: 1020px) { .accred-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .accred-grid { grid-template-columns: repeat(2, 1fr); } }
.accred-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 18px; text-align: center; transition: transform .18s ease, box-shadow .18s ease;
  display: flex; flex-direction: column; align-items: center;
}
.accred-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
a.accred-card { text-decoration: none !important; color: inherit; }
.accred-card img { height: 88px; width: auto; margin-bottom: 16px; }
.accred-card h3 { font-size: 1rem; margin-bottom: 6px; }
.accred-card p { font-size: .84rem; line-height: 1.5; color: var(--slate); }

/* ---------- gallery filters + captions ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 34px; }
.filter-btn {
  border: 1.5px solid var(--line); background: #fff; color: var(--ink);
  padding: 9px 20px; border-radius: 999px; font: inherit; font-weight: 600;
  font-size: .92rem; cursor: pointer; transition: .15s;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent-dark); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.gallery figure { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; }
.gallery figure.hidden { display: none; }
.gallery figcaption {
  position: absolute; left: 10px; bottom: 10px; background: rgba(29,35,43,.82);
  color: #fff; font-size: .76rem; font-weight: 600; padding: 4px 12px;
  border-radius: 999px; letter-spacing: .04em; pointer-events: none;
}

/* ---------- project case study ---------- */
.cs-feature {
  display: grid; grid-template-columns: 1.1fr .9fr; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line);
  margin-bottom: 46px; background: #fff;
}
@media (max-width: 820px) { .cs-feature { grid-template-columns: 1fr; } }
.cs-feature img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
.cs-feature-body { padding: 34px 36px; display: flex; flex-direction: column; justify-content: center; }
.cs-feature-body .kicker { margin-bottom: .4em; }
.cs-feature-body .btn { align-self: flex-start; margin-top: 20px; }

.cs-facts { display: flex; flex-wrap: wrap; gap: 14px 40px; background: var(--sand);
  border-radius: var(--radius); padding: 22px 28px; margin: 30px 0 10px; }
.cs-facts div b { display: block; font-size: .78rem; text-transform: uppercase;
  letter-spacing: .1em; color: var(--accent-dark); }
.cs-facts div span { font-weight: 600; color: var(--ink); }

.cs-phase { margin-top: 54px; }
.cs-phase-label {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; color: var(--accent-dark);
  margin-bottom: 8px;
}
.cs-phase-label::before { content: ""; width: 34px; height: 3px; background: var(--accent); border-radius: 2px; }
.cs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
@media (max-width: 700px) { .cs-grid { grid-template-columns: repeat(2, 1fr); } }
.cs-grid a { border-radius: 8px; overflow: hidden; display: block; }
.cs-grid img { aspect-ratio: 4/3; object-fit: cover; width: 100%; transition: transform .25s; }
.cs-grid a:hover img { transform: scale(1.04); }


/* ---------- service page extras ---------- */
.mini-gallery.three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 560px) { .mini-gallery.three { grid-template-columns: repeat(2, 1fr); } }
.work-cta { margin: 8px 0 6px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 26px; }
@media (max-width: 760px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--sand); border-radius: var(--radius); padding: 22px 20px; }
.step-num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--accent); color: #fff;
  font-weight: 800; display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; font-size: .95rem;
}
.step h3 { font-size: 1.02rem; margin-bottom: 4px; }
.step p { font-size: .9rem; line-height: 1.5; }

/* ---------- project story slider ---------- */
.cs-slider-wrap { position: relative; margin-top: 40px; }
.cs-slider { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: thin; }
.cs-slide {
  flex: 0 0 min(520px, 88%); scroll-snap-align: start; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  text-decoration: none !important; color: inherit; display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.cs-slide:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cs-slide img { height: 260px; object-fit: cover; width: 100%; }
.cs-slide-body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.cs-slide-body p { font-size: .95rem; flex: 1; }
.cs-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cs-tag {
  background: var(--sand); color: var(--accent-dark); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; padding: 4px 12px; border-radius: 999px;
}
.cs-arrows { display: flex; gap: 10px; justify-content: flex-end; margin-top: 14px; }
.cs-arrow {
  width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--line);
  background: #fff; color: var(--ink); font-size: 1.1rem; cursor: pointer; transition: .15s;
}
.cs-arrow:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* compact story card on service pages */
.cs-mini {
  display: grid; grid-template-columns: 190px 1fr; gap: 0; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; background: var(--sand);
  text-decoration: none !important; color: inherit; margin: 30px 0 6px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.cs-mini:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cs-mini img { width: 100%; height: 100%; object-fit: cover; min-height: 150px; }
.cs-mini-body { padding: 20px 24px; }
.cs-mini-body .kicker { margin-bottom: .2em; font-size: .72rem; }
.cs-mini-body h3 { margin-bottom: 4px; }
.cs-mini-body p { font-size: .9rem; }
@media (max-width: 560px) { .cs-mini { grid-template-columns: 1fr; } .cs-mini img { height: 170px; } }

/* ---------- team cards ---------- */
.team-card { text-align: left; }
.team-avatar {
  width: 84px; height: 84px; border-radius: 50%; background: var(--sand);
  color: var(--accent-dark); font-weight: 800; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  margin: 26px 24px 0;
}
.team-photo { width: 100%; height: 240px; object-fit: cover; }
.team-role {
  color: var(--accent-dark); font-weight: 700; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px;
}
.team-card .card-body p:last-child { font-size: .93rem; }

/* ---------- legal pages ---------- */
.legal-body h2 { font-size: 1.3rem; margin-top: 1.8em; }
.legal-body h2:first-of-type { margin-top: .6em; }
.legal-body p { margin-top: .8em; }

/* ---------- cookie consent banner ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 600;
  max-width: 560px; margin: 0 auto; background: var(--ink); color: #dbe1e8;
  border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,.35);
  padding: 16px 20px; display: flex; flex-wrap: wrap; gap: 10px 16px;
  align-items: center; font-size: .85rem; line-height: 1.45;
}
.cookie-banner p { margin: 0; flex: 1 1 260px; }
.cookie-banner a { color: #fff; text-decoration: underline; }
.cookie-banner .cb-actions { display: flex; gap: 8px; }
.cookie-banner button {
  font: inherit; font-weight: 700; border-radius: 999px; padding: 8px 18px;
  cursor: pointer; border: 1.5px solid transparent; transition: .15s;
}
.cb-accept { background: var(--accent); color: #fff; }
.cb-accept:hover { background: var(--accent-dark); }
.cb-essential { background: none; color: #fff; border-color: rgba(255,255,255,.45) !important; }
.cb-essential:hover { border-color: #fff !important; }

/* ---------- testimonial slider ---------- */
.quote-slider { position: relative; max-width: 780px; margin: 30px auto 0; }
.quote-slider .quote { display: none; min-height: 210px; }
.quote-slider .quote.active { display: block; animation: qfade .5s ease; }
@keyframes qfade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.quote footer span.q-src { display: block; font-weight: 500; color: var(--slate); font-size: .85rem; margin-top: 3px; }
.q-nav { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 18px; }
.q-dots { display: flex; gap: 8px; }
.q-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); border: 0; cursor: pointer; padding: 0; }
.q-dot.active { background: var(--accent); }

/* ---------- areas we cover ---------- */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 38px; }
@media (max-width: 860px) { .areas-grid { grid-template-columns: 1fr; } }
.area-group { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; }
.area-group h3 { font-size: 1.05rem; margin-bottom: 10px; }
.area-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.area-chip { background: var(--sand); color: var(--ink); font-size: .84rem; font-weight: 600; padding: 5px 14px; border-radius: 999px; }
