/* ==========================================================================
   Henton Plumbing & Air Conditioning, Inc.
   Main stylesheet — hand-written, no external dependencies.
   Palette and typography preserved from the original 2018 site.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Fonts (served locally from /assets/fonts)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Contrail One';
  src: url('../fonts/ContrailOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans Pro';
  src: url('../fonts/SourceSansPro-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans Pro';
  src: url('../fonts/SourceSansPro-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans Pro';
  src: url('../fonts/SourceSansPro-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans Pro';
  src: url('../fonts/SourceSansPro-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gudea';
  src: url('../fonts/Gudea-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gudea';
  src: url('../fonts/Gudea-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   2. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand colours carried over from the original site */
  --teal: #37b0ba;
  --teal-dark: #227a82;
  --teal-deep: #0f4c58;
  --teal-ink: #08485d;
  --teal-tint: #eaf6f8;
  --teal-tint-2: #d5eef1;

  --coral: #cf4433;
  --coral-dark: #b83828;
  --coral-bright: #f26554;

  --ink: #26303a;
  --ink-strong: #171f27;
  --body: #4c4c4c;
  --muted: #5c6971;
  --line: #e2e8eb;
  --line-soft: #eef2f4;

  --bg: #ffffff;
  --bg-soft: #f5f8f9;
  --bg-dark: #232b33;
  --bg-darker: #1a2129;

  --amber: #c07407;

  /* Typography */
  --font-head: 'Contrail One', 'Trebuchet MS', 'Segoe UI', sans-serif;
  --font-body: 'Source Sans Pro', 'Gudea', 'Helvetica Neue', Arial, sans-serif;
  --font-alt: 'Gudea', 'Source Sans Pro', Arial, sans-serif;

  /* Spacing / shape */
  --wrap: 1200px;
  --wrap-narrow: 860px;
  --radius: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(24, 44, 52, .07);
  --shadow: 0 8px 28px rgba(24, 44, 52, .10);
  --shadow-lg: 0 20px 50px rgba(24, 44, 52, .16);
  --focus: 0 0 0 4px rgba(55, 176, 186, .28);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 82px;
}

/* --------------------------------------------------------------------------
   3. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img,
svg,
video { max-width: 100%; height: auto; display: block; }

a {
  color: var(--teal-dark);
  text-decoration: none;
  transition: color .2s var(--ease);
}
a:hover { color: var(--teal-deep); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink-strong);
  line-height: 1.2;
  margin: 0 0 .6em;
  font-weight: 400;
  letter-spacing: .2px;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.1vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.15em; }

ul, ol { margin: 0 0 1.15em; padding-left: 1.25em; }
li { margin-bottom: .45em; }

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2.5rem 0;
}

blockquote {
  margin: 1.8rem 0;
  padding: 1.2rem 1.5rem;
  border-left: 4px solid var(--teal);
  background: var(--teal-tint);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.06rem;
  color: var(--teal-deep);
}
blockquote p:last-child { margin-bottom: 0; }

strong, b { font-weight: 700; color: var(--ink); }

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: var(--bg-soft);
  padding: .1em .4em;
  border-radius: 4px;
  font-size: .9em;
}

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

::selection { background: var(--teal); color: #fff; }

/* --------------------------------------------------------------------------
   4. Layout helpers
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 22px;
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: clamp(52px, 7vw, 92px); }
.section--tight { padding-block: clamp(38px, 5vw, 60px); }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--teal-tint); }
.section--dark { background: var(--bg-dark); color: #d3dce2; }
.section--dark h2,
.section--dark h3 { color: #fff; }

.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 430px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.stack > * + * { margin-top: 1rem; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--teal-deep);
  color: #fff;
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus {
  left: 0;
  color: #fff;
}

.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;
}

/* --------------------------------------------------------------------------
   5. Section headings
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-alt);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: .7rem;
}
.section--dark .eyebrow { color: #6ed0d9; }

.section-head { max-width: 720px; margin-bottom: 2.6rem; }
.section-head.center { margin-inline: auto; }
.section-head p { font-size: 1.08rem; color: var(--muted); margin-bottom: 0; }
.section--dark .section-head p { color: #bac6ce; }

.rule {
  width: 62px;
  height: 4px;
  border-radius: 2px;
  background: var(--teal);
  margin: 0 0 1.1rem;
}
.center .rule { margin-inline: auto; }

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--teal-dark);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: .97rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 2px solid var(--btn-bg);
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  text-align: center;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background-color .18s var(--ease), color .18s var(--ease),
              border-color .18s var(--ease);
}
.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(55, 176, 186, .32);
}
.btn:active { transform: translateY(0); }

.btn--coral { --btn-bg: var(--coral); }
.btn--coral:hover { box-shadow: 0 10px 22px rgba(242, 101, 84, .36); }

.btn--dark { --btn-bg: var(--ink-strong); }
.btn--dark:hover { box-shadow: 0 10px 22px rgba(23, 31, 39, .3); }

.btn--ghost {
  background: transparent;
  color: var(--teal-dark);
  border-color: var(--teal-dark);
}
.btn--ghost:hover { background: var(--teal-dark); color: #fff; }

.btn--light {
  background: #fff;
  color: var(--teal-deep);
  border-color: #fff;
}
.btn--light:hover { background: var(--teal-tint); color: var(--teal-deep); }

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .65);
}
.btn--outline-light:hover { background: #fff; color: var(--teal-deep); border-color: #fff; }

.btn--sm { padding: 10px 20px; font-size: .86rem; }
.btn--lg { padding: 17px 36px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.center .btn-row { justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: .93rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--teal-dark);
}
.link-arrow svg { transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* --------------------------------------------------------------------------
   7. Icons
   -------------------------------------------------------------------------- */
.icon { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.icon--lg { width: 30px; height: 30px; }

.icon-badge {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--teal-tint);
  color: var(--teal-dark);
  margin-bottom: 1.1rem;
  transition: background-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.icon-badge svg { width: 30px; height: 30px; }

/* --------------------------------------------------------------------------
   8. Top bar
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--teal-deep);
  color: #e3f3f5;
  font-size: .88rem;
  font-family: var(--font-alt);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 40px;
  flex-wrap: wrap;
}
.topbar__list {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.topbar__list li { display: flex; align-items: center; gap: .45em; margin: 0; }
.topbar a { color: #fff; 
  display: flex;
  align-items: center;
}
.topbar a i{
  margin-right: 10px;
}
.cta-band, .quote__avatar{
  display: none!important;
}
.topbar a:hover { color: #7fd6dd; }
.topbar__emergency {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  background: var(--coral);
  color: #fff;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.topbar__emergency:hover { background: var(--coral-dark); color: #fff; }

/* --------------------------------------------------------------------------
   9. Header & navigation
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .25s var(--ease), background-color .25s var(--ease);
  backdrop-filter: saturate(140%) blur(6px);
}
.header.is-stuck { box-shadow: 0 6px 22px rgba(24, 44, 52, .1); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}

.logo { display: flex; align-items: center; gap: 12px; flex: none; }
.logo img { width: 232px; max-width: 52vw; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__list > li { position: relative; margin: 0; }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: .35em;
  padding: 12px 14px;
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: .93rem;
  color: var(--ink);
  border-radius: var(--radius);
  white-space: nowrap;
}
.nav__link:hover,
.nav__link:focus-visible { color: var(--teal-dark); background: var(--teal-tint); }
.nav__link[aria-current="page"] { color: var(--teal-dark); }
.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 3px;
  border-radius: 2px;
  background: var(--teal);
}
.nav__caret { transition: transform .2s var(--ease); }
.nav__item.is-open .nav__caret { transform: rotate(180deg); }

.nav__panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 290px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.nav__item.is-open > .nav__panel { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__panel li { margin: 0; }
.nav__panel a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
}
.nav__panel a:hover { background: var(--teal-tint); color: var(--teal-deep); }
.nav__panel a svg { color: var(--teal); width: 20px; height: 20px; }

.header__cta { display: flex; align-items: center; gap: 14px; flex: none; margin-left: auto; }
.header__phone {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-family: var(--font-alt);
}
.header__phone span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
}
.header__phone strong {
  font-size: 1.18rem;
  color: var(--ink-strong);
  font-weight: 700;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  transition: background-color .2s var(--ease);
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease), top .2s var(--ease);
}
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }
.burger.is-active span { background: transparent; }
.burger.is-active span::before { top: 0; transform: rotate(45deg); }
.burger.is-active span::after { top: 0; transform: rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(400px, 88vw);
  background: #fff;
  z-index: 120;
  transform: translateX(100%);
  transition: transform .34s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, .18);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.drawer__head img { width: 180px; }
.drawer__close {
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--ink);
}
.drawer__nav { padding: 12px 14px 22px; }
.drawer__nav ul { list-style: none; margin: 0; padding: 0; }
.drawer__nav > ul > li { border-bottom: 1px solid var(--line-soft); }
.drawer__nav a {
  display: block;
  padding: 14px 10px;
  font-family: var(--font-alt);
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
}
.drawer__nav a:hover { color: var(--teal-dark); }
.drawer__sub { padding-left: 14px; display: none; }
.drawer__sub.is-open { display: block; }
.drawer__sub a { font-weight: 400; font-size: .95rem; color: var(--body); padding: 10px; }
.drawer__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: 0;
  padding: 14px 10px;
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
}
.drawer__toggle svg { transition: transform .2s var(--ease); }
.drawer__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.drawer__foot { margin-top: auto; padding: 20px; border-top: 1px solid var(--line); display: grid; gap: 10px; }

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 27, 33, .5);
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.backdrop.is-open { opacity: 1; visibility: visible; }

/* --------------------------------------------------------------------------
   10. Hero / slider
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(520px, 74vh, 720px);
  display: grid;
  isolation: isolate;
  overflow: hidden;
  background: var(--bg-darker);
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s var(--ease);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 7s linear;
}
.hero__slide.is-active img { transform: scale(1); }
.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 34, 42, .88) 0%, rgba(10, 34, 42, .68) 45%, rgba(10, 34, 42, .3) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-block: 96px 132px;
  width: 100%;
}
.hero__content { max-width: 660px; color: #fff; }
.hero__content h1 { color: #fff; margin-bottom: .35em; }
.hero__lead {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: #dde9ec;
  margin-bottom: 1.6rem;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-alt);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero__tag i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(55, 176, 186, .8);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(55, 176, 186, .8); }
  70%  { box-shadow: 0 0 0 12px rgba(55, 176, 186, 0); }
  100% { box-shadow: 0 0 0 0 rgba(55, 176, 186, 0); }
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, .2);
}
.hero__meta div { color: #fff; }
.hero__meta b {
  display: block;
  font-family: var(--font-head);
  font-size: 1.7rem;
  line-height: 1;
  color: #fff;
}
.hero__meta > div > span { font-size: .84rem; color: #c2d6db; letter-spacing: .06em; text-transform: uppercase; }
.hero__meta b span,
.stat b span { font: inherit; color: inherit; letter-spacing: inherit; text-transform: none; }

.hero__dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero__dots button {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 3px;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  padding: 0;
  transition: background-color .25s var(--ease), width .25s var(--ease);
}
.hero__dots button[aria-selected="true"] { background: var(--teal); width: 52px; }

.hero__arrows {
  position: absolute;
  z-index: 3;
  bottom: 26px;
  right: 26px;
  display: flex;
  gap: 10px;
}
.hero__arrows button {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.hero__arrows button:hover { background: var(--teal-dark); border-color: var(--teal-dark); }

/* Page banner (inner pages) */
.banner {
  position: relative;
  isolation: isolate;
  background: var(--bg-darker);
  color: #fff;
  padding-block: clamp(58px, 8vw, 96px);
  overflow: hidden;
}
.banner img.banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(8, 30, 38, .9), rgba(8, 30, 38, .62));
}
.banner h1 { color: #fff; margin-bottom: .3em; max-width: 22ch; }
.banner--wide h1 { max-width: 30ch; }
.banner p { color: #d8e6ea; max-width: 62ch; margin-bottom: 0; font-size: 1.06rem; }

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .5em;
  padding: 0;
  margin: 0 0 1.1rem;
  font-size: .88rem;
  font-family: var(--font-alt);
}
.breadcrumb li { margin: 0; display: flex; align-items: center; gap: .5em; color: rgba(255, 255, 255, .82); }
.breadcrumb li + li::before { content: "/"; color: rgba(255, 255, 255, .55); }
.breadcrumb a { color: #fff; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb [aria-current] { color: #7fd6dd; }

/* --------------------------------------------------------------------------
   11. Cards
   -------------------------------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--teal-tint-2);
}
.card:hover .icon-badge { background: var(--teal-dark); color: #fff; transform: rotate(-6deg); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .98rem; }
.card .link-arrow { margin-top: auto; padding-top: .6rem; }

.card--flat { border-radius: var(--radius); box-shadow: none; }
.card--flat:hover { transform: none; box-shadow: var(--shadow-sm); }

/* Service card with photo */
.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-soft); }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc:hover .svc__media img { transform: scale(1.07); }
.svc__tag {
  position: absolute;
  left: 16px; top: 16px;
  background: rgba(255, 255, 255, .94);
  color: var(--teal-deep);
  font-family: var(--font-alt);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: var(--radius-pill);
}
.svc__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.svc__body h3 { margin-bottom: .45rem; font-size: 1.35rem; }
.svc__body p { color: var(--muted); font-size: .97rem; }
.svc__list { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.svc__list li {
  position: relative;
  padding-left: 26px;
  font-size: .94rem;
  margin-bottom: .35em;
}
.svc__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .48em;
  width: 14px; height: 8px;
  border-left: 2.5px solid var(--teal);
  border-bottom: 2.5px solid var(--teal);
  transform: rotate(-45deg);
}
.svc__body .link-arrow { margin-top: auto; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.stat {
  text-align: center;
  padding: 30px 18px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
}
.section--dark .stat { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .12); }
.stat b {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--teal-dark);
}
.section--dark .stat b { color: #5ecad3; }
.stat > span {
  display: block;
  margin-top: .5rem;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.section--dark .stat > span { color: #bac6ce; }

/* Feature row (image + text) */
.feature {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.feature__media { position: relative; }
.feature__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.feature--rev .feature__media { order: 2; }

.badge-float {
  position: absolute;
  right: -14px;
  bottom: -22px;
  background: var(--teal-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 190px;
}
.badge-float b { display: block; font-family: var(--font-head); font-size: 1.9rem; line-height: 1; color: #fff; }
.badge-float span { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }

/* Check list */
.checks { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: .7rem; }
.checks li { position: relative; padding-left: 34px; margin: 0; }
.checks li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--teal-tint);
}
.checks li::after {
  content: "";
  position: absolute;
  left: 6px; top: 9px;
  width: 10px; height: 5px;
  border-left: 2.5px solid var(--teal-dark);
  border-bottom: 2.5px solid var(--teal-dark);
  transform: rotate(-45deg);
}
.section--dark .checks li::before { background: rgba(55, 176, 186, .22); }
.section--dark .checks li::after { border-color: var(--teal); }
.checks--2 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* --------------------------------------------------------------------------
   12. Process steps
   -------------------------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.step { position: relative; padding-top: 16px; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-head);
  font-size: 3rem;
  line-height: 1;
  color: var(--teal-tint-2);
  display: block;
  margin-bottom: .3rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.step p { font-size: .95rem; color: var(--muted); margin-bottom: 0; }
.section--dark .step p { color: #bac6ce; }
.section--dark .step::before { color: rgba(55, 176, 186, .45); }
.section--dark .step h3 { color: #fff; }

/* --------------------------------------------------------------------------
   13. Tabs
   -------------------------------------------------------------------------- */
.tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 2px solid var(--line);
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}
.tabs__list li { margin: 0; }
.tabs__btn {
  border: 0;
  background: none;
  padding: 13px 22px;
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: .95rem;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.tabs__btn:hover { color: var(--teal-dark); }
.tabs__btn[aria-selected="true"] { color: var(--teal-deep); border-bottom-color: var(--teal); }
.tabs__panel[hidden] { display: none; }
.tabs__panel { animation: fadeUp .45s var(--ease) both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   14. Accordion
   -------------------------------------------------------------------------- */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: 0;
  padding: 22px 4px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--ink-strong);
  transition: color .2s var(--ease);
}
.acc__btn:hover { color: var(--teal-dark); }
.acc__sign {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  position: relative;
  transition: background-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.acc__sign::before,
.acc__sign::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.acc__sign::before { width: 13px; height: 2px; }
.acc__sign::after { width: 2px; height: 13px; }
.acc__btn[aria-expanded="true"] .acc__sign { background: var(--teal-dark); color: #fff; }
.acc__btn[aria-expanded="true"] .acc__sign::after { transform: scaleY(0); opacity: 0; }
.acc__panel {
  overflow: hidden;
  height: 0;
  transition: height .32s var(--ease);
}
.acc__panel > div { padding: 0 46px 24px 4px; color: var(--muted); }
.acc__panel p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   15. Testimonials
   -------------------------------------------------------------------------- */
.quotes { position: relative; }
.quotes__viewport { overflow: hidden; }
.quotes__track { display: flex; transition: transform .55s var(--ease); }
.quote {
  flex: 0 0 100%;
  padding: 8px;
}
.quote__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 34px;
  box-shadow: var(--shadow-sm);
}
.quote__stars { display: flex; gap: 3px; color: var(--amber); margin-bottom: 1rem; }
.quote__stars svg { filter: none; }
.quote__stars svg { width: 20px; height: 20px; fill: currentColor; stroke: none; }
.quote__text { font-size: 1.1rem; color: var(--ink); line-height: 1.65; }
.quote__who { display: flex; align-items: center; gap: 14px; margin-top: 1.4rem; }
.quote__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--teal-dark);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
}
.quote__who b { display: block; color: var(--ink-strong); font-family: var(--font-alt); }
.quote__who > div > span { font-size: .88rem; color: var(--muted); }

.quotes__nav { display: flex; gap: 10px; justify-content: center; margin-top: 26px; }
.quotes__nav button {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.quotes__nav button:hover { background: var(--teal-dark); color: #fff; border-color: var(--teal-dark); }

@media (min-width: 760px) { .quote { flex-basis: 50%; } }
@media (min-width: 1080px) { .quote { flex-basis: 33.3333%; } }

/* --------------------------------------------------------------------------
   16. Gallery + lightbox
   -------------------------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 34px; }
.filters button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: .88rem;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.filters button:hover { border-color: var(--teal); color: var(--teal-dark); }
.filters button[aria-pressed="true"] { background: var(--teal-dark); border-color: var(--teal-dark); color: #fff; }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 18px; }
.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  border: 0;
  padding: 0;
  background: var(--bg-soft);
  display: block;
  width: 100%;
  animation: fadeUp .4s var(--ease) both;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 18px 16px;
  background: linear-gradient(transparent, rgba(8, 30, 38, .88));
  color: #fff;
  text-align: left;
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: .95rem;
}
.gallery__item figcaption small { display: block; font-weight: 400; font-size: .8rem; color: #cfe4e8; letter-spacing: .06em; text-transform: uppercase; }
.gallery__item[hidden] { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 20, 25, .94);
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s var(--ease), visibility .28s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: min(1100px, 92vw);
  max-height: 78vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox__cap { color: #e4eef0; text-align: center; margin-top: 16px; font-size: .95rem; }
.lightbox button {
  position: absolute;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color .2s var(--ease);
}
.lightbox button:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 22px; top: 50%; transform: translateY(-50%); }

/* --------------------------------------------------------------------------
   17. Forms
   -------------------------------------------------------------------------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.field { display: flex; flex-direction: column; gap: 7px; }
.field > label {
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: .9rem;
  color: var(--ink);
}
.field .req { color: var(--coral); }

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 15px;
  width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236c7a84' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 42px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(55, 176, 186, .16);
}
.field input::placeholder,
.field textarea::placeholder { color: #9aa8b1; }

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea { border-color: var(--coral); background: #fff7f6; }
.field.is-valid input,
.field.is-valid select,
.field.is-valid textarea { border-color: #58bd8a; }

.field__error {
  display: none;
  font-size: .85rem;
  color: var(--coral-dark);
  font-weight: 600;
}
.field.is-invalid .field__error { display: block; }

.field__hint { font-size: .84rem; color: var(--muted); }

.check {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: .93rem;
  color: var(--muted);
  cursor: pointer;
}
.check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--teal); flex: none; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-block;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  font-size: .9rem;
  font-family: var(--font-alt);
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: all .2s var(--ease);
  user-select: none;
}
.chip input:checked + span { background: var(--teal-dark); border-color: var(--teal-dark); color: #fff; }
.chip input:focus-visible + span { outline: 3px solid var(--teal); outline-offset: 2px; }

.form__status {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
}
.form__status.is-error { display: block; background: #fdeceb; color: var(--coral-dark); border: 1px solid #f7c9c3; }
.form__status.is-ok { display: block; background: #e9f7ef; color: #1f7a4b; border: 1px solid #bfe7d1; }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
}

/* --------------------------------------------------------------------------
   18. CTA strip
   -------------------------------------------------------------------------- */
.cta {
  background: linear-gradient(120deg, var(--teal-deep), var(--teal-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 54px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  right: -90px; top: -160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
}
.cta h2 { color: #fff; margin-bottom: .3em; }
.cta p { color: #eaf6f7; margin-bottom: 0; max-width: 54ch; }
.cta > * { position: relative; }

.cta-band {
  background: var(--coral);
  color: #fff;
  text-align: center;
  padding: 16px 20px;
  font-family: var(--font-alt);
  font-weight: 700;
}
.cta-band a { color: #fff; text-decoration: underline; }

/* --------------------------------------------------------------------------
   19. Coupon / offer
   -------------------------------------------------------------------------- */
.offer {
  border: 2px dashed var(--teal);
  border-radius: var(--radius-lg);
  background: var(--teal-tint);
  padding: clamp(26px, 4vw, 40px);
  text-align: center;
}
.offer__price {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 4rem);
  color: var(--teal-deep);
  line-height: 1;
}
.offer__price small { font-size: .3em; color: var(--muted); letter-spacing: .08em; }
.offer h3 { margin-bottom: .4rem; }
.offer p { color: var(--teal-ink); max-width: 52ch; margin-inline: auto; }

/* --------------------------------------------------------------------------
   20. Estimator widget
   -------------------------------------------------------------------------- */
.estimator {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow);
}
.estimator__out {
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--teal-tint);
  text-align: center;
}
.estimator__range {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: var(--teal-deep);
  line-height: 1.1;
}
.estimator__note { font-size: .87rem; color: var(--muted); margin: .6rem 0 0; }

input[type="range"] {
  width: 100%;
  accent-color: var(--teal);
  height: 28px;
}

/* --------------------------------------------------------------------------
   21. Article layout
   -------------------------------------------------------------------------- */
.readbar {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  background: var(--teal);
  width: 0;
  z-index: 100;
  transition: width .1s linear;
}

.article-layout {
  display: grid;
  gap: clamp(30px, 4vw, 56px);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 1000px) {
  .article-layout { grid-template-columns: minmax(0, 1fr) 300px; }
}

.prose { font-size: 1.06rem; }
.prose h2 { margin-top: 2.3em; scroll-margin-top: 110px; }
.prose h3 { margin-top: 1.8em; scroll-margin-top: 110px; }
.prose h2:first-child { margin-top: 0; }
.prose img { border-radius: var(--radius-lg); margin: 2rem 0; }
.prose figure { margin: 2rem 0; }
.prose figcaption { font-size: .88rem; color: var(--muted); text-align: center; margin-top: .7rem; }
.prose ul li::marker { color: var(--teal); }
.prose ol li::marker { color: var(--teal-dark); font-weight: 700; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.8rem 0; font-size: .96rem; }
.prose thead th {
  background: var(--teal-deep);
  color: #fff;
  text-align: left;
  font-family: var(--font-alt);
  padding: 12px 14px;
}
.prose td, .prose th { border: 1px solid var(--line); padding: 11px 14px; vertical-align: top; }
.prose tbody tr:nth-child(even) { background: var(--bg-soft); }

.table-scroll { overflow-x: auto; }

.callout {
  border: 1px solid var(--teal-tint-2);
  background: var(--teal-tint);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  margin: 2rem 0;
}
.callout h3 { color: var(--teal-deep); margin-bottom: .5rem; margin-top: 0; display: flex; align-items: center; gap: .5em; font-size: 1.15rem; }
.callout p:last-child { margin-bottom: 0; }
.callout--warn { background: #fff6ef; border-color: #ffddc2; }
.callout--warn h3 { color: #9a4d0c; }

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: .9rem;
  color: rgba(255, 255, 255, .8);
  margin-top: 1rem;
}
.article-meta span { display: inline-flex; align-items: center; gap: .45em; }

.toc {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  background: var(--bg-soft);
}
.toc h2 { font-family: var(--font-alt); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: .9rem; }
.toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.toc li { margin-bottom: .3rem; }
.toc a {
  display: block;
  padding: 7px 10px 7px 14px;
  border-left: 2px solid var(--line);
  color: var(--body);
  font-size: .93rem;
  transition: all .2s var(--ease);
}
.toc a:hover { color: var(--teal-dark); border-left-color: var(--teal-tint-2); }
.toc a.is-current { color: var(--teal-deep); border-left-color: var(--teal); background: #fff; font-weight: 600; }

.share { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.share span { font-family: var(--font-alt); font-weight: 700; font-size: .88rem; }
.share a, .share button {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.share a:hover, .share button:hover { background: var(--teal-dark); color: #fff; border-color: var(--teal-dark); }

/* Post cards */
.post {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post__media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-soft); }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.post:hover .post__media img { transform: scale(1.06); }
.post__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post__cat {
  font-family: var(--font-alt);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: .6rem;
}
.post__body h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.post__body h3 a { color: inherit; }
.post__body h3 a:hover { color: var(--teal-dark); }
.post__body p { color: var(--muted); font-size: .96rem; }
.post__foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  font-size: .84rem;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   22. Contact & map
   -------------------------------------------------------------------------- */
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.info-list li { display: flex; gap: 16px; margin: 0; }
.info-list .icon-badge { width: 48px; height: 48px; border-radius: 12px; margin: 0; flex: none; }
.info-list .icon-badge svg { width: 22px; height: 22px; }
.info-list b { display: block; font-family: var(--font-alt); color: var(--ink-strong); font-size: .95rem; }
.info-list a { color: var(--body); }
.info-list a:hover { color: var(--teal-dark); }

.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: .97rem; }
.hours tr:last-child td { border-bottom: 0; }
.hours td:last-child { text-align: right; font-weight: 600; color: var(--ink); }
.hours tr.is-today td { color: var(--teal-deep); }
.hours tr.is-today td:last-child { color: var(--teal-dark); }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 26px;
}
.map-embed__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(55, 176, 186, .13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 176, 186, .13) 1px, transparent 1px);
  background-size: 42px 42px;
}
.map-embed__pin { position: relative; z-index: 1; }
.map-embed__pin svg { width: 44px; height: 44px; color: var(--coral); margin-inline: auto; }
.map-embed__pin b { display: block; font-family: var(--font-head); font-size: 1.2rem; color: var(--ink-strong); margin-top: .5rem; }
.map-embed__pin span { color: var(--muted); font-size: .94rem; }

/* --------------------------------------------------------------------------
   23. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--bg-darker);
  color: #b4c2cb;
  padding-top: clamp(48px, 6vw, 76px);
  font-size: .97rem;
}
.footer__grid {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding-bottom: 44px;
}
.footer h2 {
  color: #fff;
  font-family: var(--font-alt);
  font-size: .85rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: .6em; }
.footer a { color: #b4c2cb; }
.footer a:hover { color: #7fd6dd; }
.footer__logo { width: 220px; filter: brightness(0) invert(1); opacity: .95; margin-bottom: 1.2rem; }
.footer__brand p { font-size: .95rem; color: #a9b8c2; }

.footer__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.2rem; }
.footer__badge {
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  padding: 7px 13px;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #dbe3e8;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-block: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  align-items: center;
  justify-content: space-between;
  font-size: .87rem;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 8px 20px; list-style: none; margin: 0; padding: 0; }
.footer__legal li { margin: 0; }

.social { display: flex; gap: 10px; }
.social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  display: grid;
  place-items: center;
  color: #dbe3e8;
  transition: all .2s var(--ease);
}
.social a:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: #fff; }

/* --------------------------------------------------------------------------
   24. Back to top & cookie bar
   -------------------------------------------------------------------------- */
.totop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 0;
  background: var(--teal-dark);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all .3s var(--ease);
  z-index: 80;
}
.totop.is-visible { opacity: 1; visibility: visible; transform: none; }
.totop:hover { background: var(--teal-deep); }

.cookiebar {
  position: fixed;
  left: 22px;
  bottom: 22px;
  max-width: 430px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px 24px;
  z-index: 95;
  transform: translateY(140%);
  transition: transform .4s var(--ease);
}
.cookiebar.is-open { transform: none; }
.cookiebar p { font-size: .92rem; color: var(--muted); }
.cookiebar .btn-row { margin-top: 4px; }

/* --------------------------------------------------------------------------
   25. Scroll reveal
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="zoom"]  { transform: scale(.94); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   26. Misc
   -------------------------------------------------------------------------- */
.pill {
  display: inline-block;
  background: var(--teal-tint);
  color: var(--teal-deep);
  font-family: var(--font-alt);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}
.pill--coral { background: #fdeae7; color: var(--coral-dark); }

.notice-404 { text-align: center; padding-block: clamp(60px, 10vw, 120px); }
.notice-404 .code {
  font-family: var(--font-head);
  font-size: clamp(5rem, 18vw, 10rem);
  line-height: 1;
  color: var(--teal-tint-2);
}

.sitemap-cols { columns: 3 240px; column-gap: 40px; }
.sitemap-cols section { break-inside: avoid; margin-bottom: 2rem; }

/* --------------------------------------------------------------------------
   27. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .nav, .header__phone { display: none; }
  .burger { display: grid; }
  .logo img { width: 200px; }
}

@media (max-width: 680px) {
  .header__cta .btn { display: none; }
  .logo img { width: 178px; max-width: 46vw; }
  .header__inner { gap: 10px; }
}

@media (max-width: 760px) {
  :root { --header-h: 70px; }
  body { font-size: 16px; }
  .topbar__list { gap: 14px; font-size: .8rem; }
  .topbar__inner { justify-content: center; padding-block: 6px; }
  .hero { min-height: 74vh; }
  .hero__arrows { display: none; }
  .hero__meta { gap: 18px; }
  .feature--rev .feature__media { order: 0; }
  .badge-float { position: static; margin-top: 18px; max-width: none; }
  .cta { text-align: center; justify-content: center; }
  .cta .btn-row { justify-content: center; width: 100%; }
  .sitemap-cols { columns: 1; }
  .lightbox__prev { left: 10px; }
  .lightbox__next { right: 10px; }
  .cookiebar { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .totop { right: 14px; bottom: 78px; }
}

@media (max-width: 460px) {
  .btn { padding: 13px 22px; font-size: .9rem; }
  .topbar__list li.hide-xs { display: none; }
}

/* --------------------------------------------------------------------------
   28. Motion & print
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .topbar, .header, .drawer, .backdrop, .totop, .cookiebar,
  .hero__dots, .hero__arrows, .cta, .footer__grid, .share { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .85em; color: #555; }
  .section { padding-block: 14pt; }
}
