/* ==========================================================================
   Cloud Tax Consultants Ltd
   Classic UK accountancy layout: banded header, mega-dropdown nav, boxed
   1200px content, green/blue colour blocking, mega footer.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --blue:        #094e77;
  --blue-dark:   #073a59;
  --blue-light:  #12628f;
  --green:       #75a83c;
  --green-dark:  #5f8c2e;
  --green-light: #8bc24b;
  --charcoal:    #2d2e2d;
  --charcoal-2:  #3a3b3a;

  --ink:        #333333;
  --ink-muted:  #5f6b6b;
  --line:       #dcdfe1;
  --line-soft:  #eceff1;
  --surface:    #ffffff;
  --surface-alt:#f4f6f7;

  --container: 1200px;
  --gutter: 15px;

  --font: Tahoma, Geneva, "Segoe UI", Verdana, sans-serif;
  --font-head: "Fjalla One", "Arial Narrow", "Segoe UI Semibold", Tahoma, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .1);
  --shadow:    0 3px 12px rgba(0, 0, 0, .13);
  --ease: cubic-bezier(.25, .6, .35, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: #e8ebed;
  color: var(--ink);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }

h1, h2, h3, h4 {
  margin: 0 0 .55em;
  font-family: var(--font-head);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.22;
  color: var(--charcoal);
}
h1 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 1.95rem); }
h3 { font-size: 1.28rem; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* The whole site sits in a white "page" sheet, like classic UK firm sites */
.page-sheet {
  max-width: 1290px;
  margin: 0 auto;
  background: var(--surface);
  box-shadow: 0 0 22px rgba(0, 0, 0, .12);
}
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ==========================================================================
   Header band 1 — logo + contact details + hours badge
   ========================================================================== */
.masthead { background: var(--blue); color: #dbe9f2; }
.masthead__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 26px;
  padding: 9px 0;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand:hover { text-decoration: none; }
.brand__mark {
  width: 54px; height: 54px;
  flex: none;
  background: #fff;
  border: 2px solid var(--green);
  padding: 3px;
}
.brand__name {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: .03em;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
}
.brand__tag {
  display: block;
  font-family: var(--font);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-top: 4px;
}

.masthead__contacts { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; }
.contact-chip { display: flex; align-items: center; gap: 9px; }
.contact-chip__icon {
  width: 30px; height: 30px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
}
.contact-chip__icon svg { width: 15px; height: 15px; }
.contact-chip__body { font-size: .84rem; line-height: 1.4; }
.contact-chip__body a { color: #fff; font-weight: 700; display: block; }
.contact-chip__body a:hover { color: var(--green-light); }
.contact-chip__body span { display: block; color: #b6cddd; }

.masthead__badge {
  border: 2px solid var(--green);
  padding: 5px 13px;
  text-align: center;
  background: rgba(255, 255, 255, .07);
  line-height: 1.2;
}
.masthead__badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-light);
}
.masthead__badge span { font-size: .74rem; color: #cfe0ec; }

/* ==========================================================================
   Header band 2 — slogan + quick links
   ========================================================================== */
.slogan-bar { background: var(--blue-dark); color: #dbe9f2; border-top: 1px solid rgba(255, 255, 255, .12); }
.slogan-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 20px;
  padding: 5px 0;
  font-size: .84rem;
}
.slogan-bar p { margin: 0; }
.slogan-bar__links { display: flex; flex-wrap: wrap; gap: 6px; }
.slogan-bar__links a {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 3px;
  color: #fff;
  font-size: .82rem;
}
.slogan-bar__links a:hover { background: var(--green); border-color: var(--green); text-decoration: none; }

/* ==========================================================================
   Header band 3 — main navigation with dropdowns
   ========================================================================== */
.mainnav { background: var(--green); position: relative; z-index: 80; }
.mainnav__inner { display: flex; align-items: stretch; justify-content: center; }
.menu { display: flex; flex-wrap: wrap; justify-content: center; }
.menu > li { position: relative; }
.menu > li > a,
.menu > li > .menu__top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 13px;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  background: none;
  border: 0;
  cursor: pointer;
}
.menu > li > a:hover,
.menu > li > .menu__top:hover,
.menu > li.is-open > .menu__top,
.menu > li > a[aria-current="page"] {
  background: var(--green-dark);
  text-decoration: none;
}
.menu__caret { width: 11px; height: 11px; transition: transform .2s var(--ease); }
.menu > li.is-open .menu__caret { transform: rotate(180deg); }

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 268px;
  background: #fff;
  border-top: 3px solid var(--blue);
  box-shadow: var(--shadow);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
  z-index: 90;
}
/* keep the last dropdowns inside the viewport */
.menu > li:nth-last-child(-n+3) > .submenu { left: auto; right: 0; }
.menu > li:hover > .submenu,
.menu > li:focus-within > .submenu,
.menu > li.is-open > .submenu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.submenu a {
  display: block;
  padding: 9px 18px;
  font-size: .87rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.submenu li:last-child a { border-bottom: 0; }
.submenu a:hover { background: var(--green); color: #fff; text-decoration: none; }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 12px 15px;
  background: var(--green);
  border: 0;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .85rem;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }

/* ==========================================================================
   Hero banner
   ========================================================================== */
/* green frame around the banner, as on classic accountancy layouts */
.banner-frame { background: var(--green); padding: 16px 0; }
.banner-frame > .container { padding-inline: var(--gutter); }

.banner {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(9, 78, 119, .96) 0%, rgba(9, 78, 119, .82) 46%, rgba(45, 46, 45, .88) 100%),
    radial-gradient(circle at 78% 30%, #12628f 0%, #094e77 40%, #2d2e2d 100%);
  color: #fff;
  border-bottom: 5px solid var(--green);
}
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .5;
  pointer-events: none;
}
.banner__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: 40px;
  align-items: center;
  padding: 44px 34px 46px;
}

/* Rotating headline slides */
.banner__slides { position: relative; }
.banner__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), visibility .6s;
}
.banner__slide.is-active { position: relative; opacity: 1; visibility: visible; transform: none; }
.banner__dots { display: flex; gap: 8px; margin-top: 22px; }
.banner__dots button {
  width: 30px; height: 5px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: background .2s var(--ease);
}
.banner__dots button.is-on { background: var(--green-light); }
.banner__eyebrow {
  display: inline-block;
  padding: 5px 14px;
  background: var(--green);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
/* slides 2 and 3 use h2 so the page keeps a single h1, but look identical */
.banner h1,
.banner__slide h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: .01em;
  margin-bottom: .3em;
}
.banner h1 em,
.banner__slide h2 em { font-style: normal; color: var(--green-light); display: block; }
.banner p { color: #cfdce6; max-width: 60ch; font-size: 1.02rem; }
.banner__btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.banner__card {
  background: rgba(255, 255, 255, .96);
  border-top: 5px solid var(--green);
  padding: 22px;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.banner__card h2 {
  font-size: 1.16rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--blue);
  border-bottom: 2px solid var(--line);
  padding-bottom: 10px;
}
.banner__card ul { display: grid; gap: 9px; margin-bottom: 18px; }
.banner__card li { display: flex; gap: 9px; align-items: flex-start; font-size: .9rem; }
.banner__card li svg { width: 16px; height: 16px; color: var(--green); flex: none; margin-top: 4px; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  --btn-bg: var(--green);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.btn:hover { background: var(--green-dark); text-decoration: none; }
.btn svg { width: 15px; height: 15px; flex: none; }
.btn--blue { --btn-bg: var(--blue); }
.btn--blue:hover { background: var(--blue-dark); }
.btn--outline {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, .6);
}
.btn--outline:hover { background: rgba(255, 255, 255, .14); }
.btn--ghost {
  --btn-bg: #fff;
  --btn-fg: var(--blue);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--surface-alt); }
.btn--sm { padding: 7px 15px; font-size: .76rem; }
.btn--wide { width: 100%; }
.btn--danger { --btn-bg: #b03030; }
.btn--danger:hover { background: #8d2626; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* ==========================================================================
   Sections & headings
   ========================================================================== */
.section { padding: 46px 0; background: #fff; }
.section--alt { background: var(--surface-alt); }
.section--tight { padding: 32px 0; }

/* Centred rule heading, as used on classic accountancy sites */
.rule-head { text-align: center; margin-bottom: 26px; }
.rule-head h2 {
  display: inline-block;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.rule-head::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green) 12%, var(--green) 88%, transparent);
}
.rule-head p {
  max-width: 900px;
  margin: 16px auto 0;
  text-align: center;
  color: var(--ink-muted);
  font-size: .95rem;
}
.section-head { margin-bottom: 26px; }
.section-head h2 { color: var(--blue); text-transform: uppercase; letter-spacing: .03em; }
.section-head p { color: var(--ink-muted); margin-bottom: 0; }
.eyebrow {
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }
.grid > * { min-width: 0; }

/* ==========================================================================
   Thumbnails (stand-ins for photography — swap for real photos later)
   ========================================================================== */
.thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: rgba(255, 255, 255, .92);
}
.thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 30px 30px;
}
.thumb svg { width: 54px; height: 54px; position: relative; z-index: 1; }
.thumb--green { background: linear-gradient(135deg, var(--green-dark), var(--green-light)); }
.thumb--dark  { background: linear-gradient(135deg, var(--charcoal), #4c4e4c); }
.thumb--mix   { background: linear-gradient(135deg, var(--blue), var(--green-dark)); }

/* ==========================================================================
   Service intro cards (image + heading + text + read more)
   ========================================================================== */
.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s var(--ease), transform .2s var(--ease);
}
.svc-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.svc-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.svc-card h3 {
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: .03em;
  color: var(--charcoal);
  margin-bottom: .5em;
}
.svc-card p { font-size: .9rem; color: var(--ink-muted); text-align: justify; }
.svc-card .btn { align-self: flex-start; margin-top: 18px; }

/* ==========================================================================
   Dark overlay cards (4 across)
   ========================================================================== */
.tile-dark {
  position: relative;
  background: var(--charcoal);
  color: #d7dad7;
  display: flex;
  flex-direction: column;
}
.tile-dark .thumb { aspect-ratio: 16 / 9; }
.tile-dark__body { padding: 16px 18px 20px; }
.tile-dark h3 {
  color: #fff;
  font-size: .98rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .5em;
}
.tile-dark p { font-size: .84rem; color: #b9bdb9; text-align: justify; }

/* ==========================================================================
   Caption tiles (label bar over image)
   ========================================================================== */
.tile-cap {
  position: relative;
  display: block;
  border: 1px solid var(--line);
  overflow: hidden;
}
.tile-cap:hover { text-decoration: none; }
.tile-cap .thumb { aspect-ratio: 16 / 9; }
.tile-cap__label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 11px 15px;
  background: rgba(255, 255, 255, .88);
  color: var(--charcoal);
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-align: center;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.tile-cap:hover .tile-cap__label { background: var(--green); color: #fff; }

/* ==========================================================================
   Feature columns (title bar + image + text + detail button)
   ========================================================================== */
.feature-col {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-bottom: 18px;
}
.feature-col__title {
  background: var(--green);
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 9px 12px;
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin: 0;
}
.feature-col__media { border: 1px solid var(--line); border-top: 0; }
.feature-col p { padding: 16px 4px; font-size: .87rem; color: var(--ink-muted); text-align: justify; flex: 1; }
.feature-col .btn { align-self: center; }
.feature-col--accent { background: var(--green); padding: 0 14px 18px; }
.feature-col--accent .feature-col__title { background: var(--blue); margin-inline: -14px; }
.feature-col--accent p { color: #f2f7ea; }
.feature-col--accent .btn { background: #fff; color: var(--green-dark); }
.feature-col--accent .btn:hover { background: var(--surface-alt); }

/* ==========================================================================
   Why us / who we help / how we work
   ========================================================================== */
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  padding: 22px 20px;
  height: 100%;
}
.why-card__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: #eef5e4;
  color: var(--green-dark);
  border-radius: 50%;
  margin-bottom: 14px;
}
.why-card__icon svg { width: 22px; height: 22px; }
.why-card h3 { font-size: 1.02rem; text-transform: uppercase; letter-spacing: .03em; }
.why-card p { font-size: .89rem; color: var(--ink-muted); }

.who-row {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  height: 100%;
}
.who-row svg { width: 24px; height: 24px; color: var(--blue); flex: none; margin-top: 3px; }
.who-row h3 { font-size: 1rem; margin-bottom: .35em; }
.who-row p { font-size: .88rem; color: var(--ink-muted); }

.step {
  position: relative;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  padding: 24px 20px;
  height: 100%;
}
.step__num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-light);
  margin-bottom: 8px;
}
.step h3 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: .04em; }
.step p { color: #c3cdd5; font-size: .88rem; }
.section--dark { background: linear-gradient(120deg, var(--blue), var(--charcoal)); color: #cdd7de; }
.section--dark .rule-head h2 { color: #fff; }
.section--dark .rule-head p { color: #b9c5cd; }

/* ==========================================================================
   Checklists, quotes, panels
   ========================================================================== */
.checklist { display: grid; gap: 10px; margin: 18px 0 0; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; font-size: .93rem; }
.checklist svg { width: 18px; height: 18px; color: var(--green); flex: none; margin-top: 4px; }
.checklist strong { color: var(--charcoal); }

.panel {
  background: var(--blue);
  color: #d6e3ec;
  padding: 26px;
  border-top: 4px solid var(--green);
}
.panel h3 { color: #fff; text-transform: uppercase; font-size: 1.1rem; letter-spacing: .04em; }
.panel .checklist strong { color: #fff; }
.panel .checklist svg { color: var(--green-light); }

.quote {
  margin: 0;
  padding: 20px 24px;
  background: #eef5e4;
  border-left: 4px solid var(--green);
  color: var(--blue);
  font-size: 1.02rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}
.split--narrow { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
.split--top { align-items: start; }

/* ==========================================================================
   Service detail blocks (services page)
   ========================================================================== */
.service-block {
  scroll-margin-top: 140px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  padding: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 30px;
  align-items: start;
}
.service-block + .service-block { margin-top: 22px; }
.service-block .thumb { aspect-ratio: 16 / 8; }
.service-block h2 {
  font-size: 1.3rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .03em;
}
.service-block p { font-size: .92rem; color: var(--ink-muted); text-align: justify; }
.service-block__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 215px), 1fr));
  gap: 0 24px;
}
.service-block__items li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: .9rem;
  padding: 9px 0;
  border-bottom: 1px dotted var(--line);
}
.service-block__items svg { width: 16px; height: 16px; color: var(--green); flex: none; margin-top: 4px; }

/* ==========================================================================
   Individual service blocks (category pages)
   ========================================================================== */
.item-block {
  scroll-margin-top: 150px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  padding: 22px;
  margin-bottom: 18px;
  transition: box-shadow .2s var(--ease);
}
.item-block:hover { box-shadow: var(--shadow); }
.item-block__media .thumb { aspect-ratio: 16 / 10; }
.item-block h2 {
  font-size: 1.25rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: .4em;
}
.item-block p { font-size: .94rem; color: var(--ink-muted); text-align: justify; margin: 0; }

/* every other block puts the image on the right; the media column keeps its width */
.item-block--flip {
  grid-template-columns: minmax(0, 1fr) 250px;
  border-left-color: var(--blue);
}
.item-block--flip .item-block__media { order: 2; }

/* FAQ page groups */
.faq-group + .faq-group { margin-top: 34px; }
.faq-group__title {
  font-size: 1.2rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .04em;
  border-bottom: 2px solid var(--green);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

/* Back to top */
.to-top {
  position: fixed;
  right: 18px;
  bottom: 82px;
  z-index: 94;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .28);
  transition: background .18s var(--ease), opacity .18s var(--ease);
}
.to-top:hover { background: var(--green); }
.to-top[hidden] { display: none; }
.to-top svg { width: 20px; height: 20px; }

.chip-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.chip {
  padding: 7px 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .03em;
}
.chip:hover { background: var(--green); border-color: var(--green); color: #fff; text-decoration: none; }

/* ==========================================================================
   Page head (inner pages)
   ========================================================================== */
.page-head {
  background: linear-gradient(115deg, var(--blue), var(--charcoal));
  color: #cbd7df;
  border-bottom: 5px solid var(--green);
  padding: 34px 0;
}
.page-head h1 { color: #fff; text-transform: uppercase; margin-bottom: .25em; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.page-head p { color: #b9c5cd; margin-bottom: 0; max-width: 78ch; }
.crumbs { font-size: .82rem; color: #9db0bd; margin-bottom: 10px; }
.crumbs a { color: #cbd7df; }
.crumbs span { padding: 0 6px; opacity: .6; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.stars { display: inline-flex; gap: 2px; color: #f0a500; }
.stars svg { width: 16px; height: 16px; }
.stars--muted svg { color: #cfd4d8; }

.review {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.review__text { font-size: .95rem; margin: 0; }
.review__meta { margin-top: auto; display: flex; align-items: center; gap: 11px; }
.review__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  flex: none;
}
.review__name { font-weight: 700; font-size: .92rem; color: var(--charcoal); line-height: 1.3; }
.review__role { font-size: .82rem; color: var(--ink-muted); }

.rating-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  margin-bottom: 26px;
}
.rating-summary__score { font-size: 2rem; font-weight: 700; color: var(--blue); line-height: 1; }
.rating-summary__label { font-size: .88rem; color: var(--ink-muted); }

/* ==========================================================================
   Forms (enquiry band + review form + admin)
   ========================================================================== */
.contact-band { background: var(--green); padding: 0 0 40px; }
.contact-band__title {
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 14px 0;
  margin: 0 0 26px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-band .form-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.contact-band .field label { color: #f4f9ed; }
.contact-band .field .hint { color: #e3f0d2; }
.contact-band .error { color: #fff3cd; }
.contact-band .consent { color: #f4f9ed; }
.contact-band .consent a { color: #fff; text-decoration: underline; }
.contact-band .form-note { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .3); color: #f4f9ed; }
.contact-band .btn:not(.btn--blue) { background: #fff; color: var(--green-dark); }
.contact-band .btn:not(.btn--blue):hover { background: #eef5e4; }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  padding: 26px;
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; color: var(--charcoal); }
.field .hint { font-size: .8rem; font-weight: 400; color: var(--ink-muted); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #c6ccd1;
  border-radius: 2px;
  background: #fff;
  font: inherit;
  font-size: .92rem;
  color: var(--ink);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(9, 78, 119, .18);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] { border-color: #c0392b; background: #fdf5f5; }
.field .error { font-size: .8rem; color: #a02c2c; min-height: 1em; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .86rem; color: var(--ink-muted); }
.consent input { width: 17px; height: 17px; margin-top: 3px; flex: none; }

.star-picker { display: flex; gap: 4px; }
.star-picker button {
  background: none; border: 0; padding: 2px; cursor: pointer;
  color: #cfd4d8; line-height: 0;
  transition: transform .12s var(--ease), color .12s var(--ease);
}
.star-picker button svg { width: 28px; height: 28px; }
.star-picker button:hover { transform: scale(1.1); }
.star-picker button.is-on { color: #f0a500; }

.form-note {
  margin-top: 16px;
  padding: 12px 14px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  font-size: .84rem;
  color: var(--ink-muted);
}
.alert {
  padding: 13px 15px;
  font-size: .92rem;
  margin-bottom: 18px;
  border: 1px solid transparent;
}
.alert--ok  { background: #eaf6e3; border-color: #b7d99f; color: #3c6b1e; }
.alert--err { background: #fdecec; border-color: #f0bcbc; color: #a02c2c; }
.alert[hidden] { display: none; }

/* ==========================================================================
   Contact details / map
   ========================================================================== */
.contact-list { display: grid; gap: 12px; }
.contact-item {
  display: flex;
  gap: 13px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
}
.contact-item svg { width: 20px; height: 20px; color: var(--green-dark); flex: none; margin-top: 3px; }
.contact-item strong { display: block; color: var(--blue); font-size: .92rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 3px; }
.contact-item p, .contact-item a { font-size: .9rem; color: var(--ink-muted); margin: 0; }
.map-frame { border-top: 5px solid var(--green); background: var(--surface-alt); }
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { display: grid; gap: 10px; }
details.faq__item { border: 1px solid var(--line); background: #fff; padding: 2px 18px; }
details.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 32px 14px 0;
  font-weight: 600;
  color: var(--blue);
  position: relative;
}
details.faq__item summary::-webkit-details-marker { display: none; }
details.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 2px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  color: var(--green);
  line-height: 1;
}
details.faq__item[open] summary::after { content: "\2013"; }
details.faq__item p { padding: 0 0 16px; font-size: .92rem; color: var(--ink-muted); }

/* ==========================================================================
   CTA strip
   ========================================================================== */
.cta-strip {
  background: var(--charcoal);
  color: #d9dcd9;
  padding: 26px 0;
  border-top: 4px solid var(--green);
}
.cta-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 26px;
}
.cta-strip h2 { color: #fff; margin: 0 0 4px; font-size: 1.32rem; text-transform: uppercase; letter-spacing: .04em; }
.cta-strip p { margin: 0; font-size: .92rem; color: #b8bcb8; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-links { background: var(--green); padding: 30px 0; }
.footer-links h2 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-align: center;
  margin-bottom: 20px;
}
.footer-links__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 0 22px;
}
.footer-links a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  font-size: .84rem;
}
.footer-links a::before {
  content: "";
  width: 7px; height: 7px;
  background: #fff;
  flex: none;
  margin-top: 7px;
}
.footer-links a:hover { color: #eaf5da; text-decoration: none; }

.footer-info { background: #fff; padding: 30px 0; }
.footer-info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 26px;
}
.footer-info h3 {
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  border-bottom: 2px solid var(--green);
  padding-bottom: 8px;
  margin-bottom: 14px;
}
.footer-info li { display: flex; gap: 9px; align-items: flex-start; margin-bottom: 9px; font-size: .87rem; color: var(--ink-muted); }
.footer-info li svg { width: 15px; height: 15px; color: var(--green-dark); flex: none; margin-top: 4px; }
.footer-info span, .footer-info a { overflow-wrap: anywhere; }

.footer-bar { background: var(--blue-dark); color: #a9c1d1; padding: 16px 0; }
.footer-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  font-size: .84rem;
}
.footer-bar strong {
  display: block;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-bar a { color: #cfe0ec; }
.footer-bar__social { display: flex; gap: 8px; }
.footer-bar__social a {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .12);
  color: #fff;
}
.footer-bar__social a:hover { background: var(--green); }
.footer-bar__social svg { width: 16px; height: 16px; }
.footer-bar__links { display: flex; flex-wrap: wrap; gap: 6px 16px; }

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 95;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .28);
}
.wa-float:hover { background: #1eb457; text-decoration: none; }
.wa-float svg { width: 28px; height: 28px; }

/* ==========================================================================
   Admin (review moderation)
   ========================================================================== */
.admin-tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.admin-tab {
  padding: 9px 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
}
.admin-tab.is-active { background: var(--blue); color: #fff; border-color: var(--blue); }
.admin-row { border: 1px solid var(--line); border-left: 4px solid var(--green); background: #fff; padding: 20px; margin-bottom: 12px; }
.admin-row__head { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.admin-row__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.badge { display: inline-block; padding: 3px 10px; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.badge--pending  { background: #fdf0d5; color: #8a6100; }
.badge--approved { background: #e4f3da; color: #3c6b1e; }
.badge--rejected { background: #fbe3e3; color: #a02c2c; }
.empty-state {
  padding: 34px 20px;
  text-align: center;
  color: var(--ink-muted);
  background: var(--surface-alt);
  border: 1px dashed var(--line);
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--ink-muted); }
.small { font-size: .85rem; }
.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;
}
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .banner__inner { grid-template-columns: minmax(0, 1fr); padding: 34px 20px 38px; }
  .split, .split--narrow { grid-template-columns: minmax(0, 1fr); }
  .service-block { grid-template-columns: minmax(0, 1fr); }
  .contact-band .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .masthead__inner { justify-content: center; text-align: center; }
  .masthead__contacts { justify-content: center; }
  .slogan-bar__inner { justify-content: center; text-align: center; }

  .nav-toggle { display: flex; }
  .mainnav__inner { display: block; }
  .menu {
    display: none;
    flex-direction: column;
    background: var(--green-dark);
    max-height: 72vh;
    overflow-y: auto;
  }
  .menu.is-open { display: flex; }
  .menu > li { border-bottom: 1px solid rgba(255, 255, 255, .18); }
  .menu > li > a,
  .menu > li > .menu__top { width: 100%; justify-content: space-between; padding: 13px 18px; }
  .submenu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: 0;
    background: #fff;
    min-width: 0;
    padding: 0;
  }
  .menu > li:hover > .submenu,
  .menu > li:focus-within > .submenu { display: none; }
  .menu > li.is-open > .submenu { display: block; }
  .submenu a { padding: 11px 26px; }
}

@media (max-width: 860px) {
  .item-block,
  .item-block--flip { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .item-block--flip .item-block__media { order: 0; }
}

@media (max-width: 720px) {
  .contact-band .form-grid, .form-grid { grid-template-columns: minmax(0, 1fr); }
  .item-block p { text-align: left; }
  .cta-strip__inner { justify-content: flex-start; }
  .svc-card p, .tile-dark p, .feature-col p, .service-block p { text-align: left; }
}

@media (max-width: 560px) {
  .brand__name { font-size: 1.15rem; }
  .brand__mark { width: 46px; height: 46px; }
  .wa-float { width: 48px; height: 48px; right: 12px; bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  body { background: #fff; }
  .masthead, .slogan-bar, .mainnav, .wa-float, .footer-links, .footer-bar, .contact-band { display: none !important; }
}
