/* ============================================================
   Confident Team — static rebuild, styled to match the original.
   Palette taken from the live site:
     teal        #00b8da   (brand / topbar / header / footer)
     teal hover  #044cd0
     active blue #0345bf
     deep teal   #006274
     ink text    #353535
   Header & top bar use translucent teal  rgba(0,184,218,.9)
   and float over the hero / page banner, like the original.
   ============================================================ */

:root {
  --teal: #00b8da;
  --teal-hover: #044cd0;
  --blue: #0345bf;
  --teal-deep: #006274;
  --header-bg: rgba(0, 184, 218, 0.9);
  --overlay: rgba(0, 184, 218, 0.7);
  --ink: #353535;
  --muted: #666;
  --bg: #ffffff;
  --bg-soft: #f4fafc;
  --line: #e7eef2;
  --radius: 5px;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
  --shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.06);
  --maxw: 1140px;
  --font: "Work Sans", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font), sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color .25s, opacity .25s; }
a:hover { color: var(--teal-hover); }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.2; font-weight: 700; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section--soft { background: var(--bg-soft); }
.text-center { text-align: center; }

/* ---------- Buttons (match original sppb buttons) ---------- */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .25s ease;
}
.btn--primary { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn--primary:hover { background: var(--teal-deep); border-color: var(--teal-deep); color: #fff; box-shadow: 0 0 6px 0 var(--teal); }
.btn--ghost { background: transparent; color: #fff; border: 2px solid #fff; }
.btn--ghost:hover { background: #fff; color: var(--teal); }
.btn--outline { background: transparent; color: var(--teal); border: 1px solid var(--teal); }
.btn--outline:hover { background: var(--teal); color: #fff; box-shadow: 0 0 6px 0 var(--teal); }

/* ============================================================
   Floating top area: top bar + header (translucent teal)
   ============================================================ */
.site-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
}
.site-top .container { padding: 0 20px; }

/* Top bar */
.topbar { color: #fff; font-size: 14px; }
.topbar__inner {
  background: var(--header-bg);
  padding: 12px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: #fff; }
.topbar a:hover { color: #fff; opacity: .75; }
.topbar__info { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.topbar__info span, .topbar__info a { display: inline-flex; align-items: center; gap: 8px; }
.lang-switch { display: flex; gap: 4px; align-items: center; }
.lang-switch a {
  padding: 2px 9px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  border: 1px solid transparent;
}
.lang-switch a:hover { opacity: .8; }
.lang-switch a.is-active { background: #fff; color: var(--teal); }

/* Header */
.header__inner {
  background: var(--header-bg);
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: 68px; width: auto; display: block; }

/* Menu — white text, animated white underline on hover (like original) */
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .3px;
  padding: 0 12px;
  line-height: 78px;
  display: inline-block;
}
.nav a::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 26px;
  width: 0;
  height: 1.5px;
  background: #fff;
  transition: width .4s ease;
}
.nav a:hover { color: #fff; opacity: .7; }
.nav a:hover::before,
.nav a.active::before { width: 30px; }

/* ============================================================
   Hero (carousel) — header floats over this
   ============================================================ */
.hero {
  position: relative;
  color: #fff;
}
.hero__viewport {
  position: relative;
  overflow: hidden;
}
.hero__track {
  display: flex;
  width: 100%;
  transition: transform .7s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.hero__slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 60, 75, .38), rgba(0, 60, 75, .38));
}
.hero__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 190px 20px 150px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* per-slide text alignment, echoing the original */
.hero__slide--center .hero__inner { align-items: center; text-align: center; }
.hero__slide--left   .hero__inner { align-items: flex-start; text-align: left; }
.hero__slide--right  .hero__inner { align-items: flex-end; text-align: right; }
.hero__inner > * { max-width: 680px; }
.hero__sub {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 12px;
}
.hero__title { font-size: 46px; font-weight: 800; margin: 0 0 26px; text-transform: uppercase; line-height: 1.15; }

/* prev / next arrows */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px; height: 46px;
  border: 0; border-radius: 50%;
  background: rgba(0, 184, 218, .55);
  color: #fff;
  font-size: 30px; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s;
}
.hero__arrow:hover { background: rgba(0, 184, 218, .9); }
.hero__arrow--prev { left: 18px; }
.hero__arrow--next { right: 18px; }

/* dots */
.hero__dots {
  position: absolute;
  left: 0; right: 0; bottom: 70px;
  z-index: 3;
  display: flex; gap: 10px; justify-content: center;
}
.hero__dots button {
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid #fff; background: transparent; cursor: pointer; padding: 0;
  transition: background .25s;
}
| .hero__dots button.is-active { background: #fff; }

/* Floating CTA button (beautiful clinical orange/coral, headphone icon, slides out on mobile hover) */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff5200; /* Rich energetic complementary clinical orange */
  color: #ffffff !important;
  height: 56px;
  padding: 0 24px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(255, 82, 0, 0.4);
  transition: background .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.float-cta, .float-cta:hover, .float-cta:visited, .float-cta:active, .float-cta:focus {
  color: #ffffff !important;
  text-decoration: none !important;
}
.float-cta:hover,
.float-cta:focus {
  background: #e04100; /* Darker vibrant orange */
  box-shadow: 0 6px 20px rgba(255, 82, 0, 0.55);
}
.float-cta__icon {
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.float-cta__text {
  display: inline-block;
  margin-left: 10px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .float-cta {
    bottom: 84px; /* safe distance above the cookie bar */
    right: 20px;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    /* Pin expand origin to right, smoothly animate width and padding */
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease, background .25s ease, box-shadow .25s ease;
  }
  .float-cta__text {
    max-width: 0;
    opacity: 0;
    margin-left: 0;
    overflow: hidden;
    transition: max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, margin-left 0.35s ease;
  }
  /* On hover/focus/active on touchscreens, expand left to show full label */
  .float-cta:hover,
  .float-cta:focus,
  .float-cta:active {
    width: 216px;
    padding: 0 20px;
    border-radius: 28px;
  }
  .float-cta:hover .float-cta__text,
  .float-cta:focus .float-cta__text,
  .float-cta:active .float-cta__text {
    max-width: 150px;
    opacity: 1;
    margin-left: 10px;
  }
}

/* (removed: hero CTA moved to floating button) */

/* ============================================================
   Service highlight cards (image background + teal overlay)
   ============================================================ */
.features { padding-top: 110px; }
.features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
  cursor: default;
}
.feature::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--overlay);
  transition: background .3s;
}
.feature:hover::before { background: rgba(0, 184, 218, 0.92); }
.feature__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  transform: translateY(20px);
  transition: transform .35s ease;
}
.feature:hover .feature__content,
.feature:focus-within .feature__content { transform: translateY(0); }
.feature h3 {
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin: 0;
  transition: transform .35s ease;
}
.feature:hover h3,
.feature:focus-within h3 { transform: translateY(-4px); }
.feature p {
  font-size: 14px;
  margin: 0;
  line-height: 1.55;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: opacity .28s ease, max-height .35s ease, transform .35s ease;
}
.feature:hover p,
.feature:focus-within p {
  opacity: 1;
  max-height: 180px;
  transform: translateY(0);
}

/* ============================================================
   Services icon cards (white card + teal icon badge) — like original
   ============================================================ */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.svc-card {
  background: #fff;
  border: 1px solid #eef1f2;
  border-radius: var(--radius);
  padding: 38px 24px 30px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform .25s, box-shadow .25s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-card__icon {
  position: relative;
  width: 88px; height: 88px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 8px 18px rgba(0, 184, 218, .35);
  transition: background .25s;
}
.svc-card__icon::before {
  content: "";
  position: absolute;
  inset: 22px;
  background: center / contain no-repeat;
}
.svc-card__icon--emergency::before { background-image: url("../img/dental-icon-01.svg"); }
.svc-card__icon--general::before   { background-image: url("../img/dental-icon-02.svg"); }
.svc-card__icon--implant::before   { background-image: url("../img/dental-icon-03.svg"); }
.svc-card__icon--hygiene::before   { background-image: url("../img/dental-icon-04.svg"); }
.svc-card:hover .svc-card__icon { background: var(--teal-deep, #006274); }
.svc-card h3 {
  font-size: 16px; text-transform: uppercase; letter-spacing: .4px;
  margin: 0 0 10px; color: #222;
}
.svc-card p { font-size: 14px; line-height: 1.6; color: #555; margin: 0; }

/* ============================================================
   About intro (image + text), like the original
   ============================================================ */
.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 46px;
  align-items: center;
}
.about-intro__img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}
.about-intro__text .lead {
  font-size: 22px; color: var(--teal); font-weight: 600; margin: 0 0 18px;
}
.about-intro__text p { margin: 0 0 16px; color: #444; line-height: 1.7; }

/* ============================================================
   Big feature / quote band with bg image + doctor photo + list
   ============================================================ */
.band {
  position: relative;
  color: #fff;
  background: linear-gradient(rgba(0, 70, 86, .55), rgba(0, 70, 86, .55)),
              url("../img/dental-procedure-bg1custom.jpg") center/cover fixed no-repeat;
  padding: 90px 0;
  overflow: hidden;
}
.band__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.band__intro small { text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; opacity: .92; }
.band__intro h2 { font-size: 40px; margin: 16px 0 0; font-weight: 800; }
.band__intro .author { display: block; margin-top: 14px; font-style: italic; opacity: .9; }
.band__photo { text-align: center; }
.band__photo img { max-height: 420px; margin: 0 auto; filter: drop-shadow(0 20px 30px rgba(0,0,0,.3)); }

.band__list { margin-top: 70px; }
.band__list h2 { font-size: 38px; font-weight: 800; margin-bottom: 30px; }
.custom-list {
  list-style: none;
  margin: 0; padding: 0;
  columns: 2;
  column-gap: 40px;
}
.custom-list li {
  position: relative;
  padding: 10px 0 10px 20px;
  font-weight: 600;
  letter-spacing: .3px;
  break-inside: avoid;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.custom-list li::before {
  content: "-";
  position: absolute;
  left: 0; top: 10px;
  color: rgba(255,255,255,.95);
  font-weight: 700;
}

/* ============================================================
   Section heading
   ============================================================ */
.heading { text-align: center; margin-bottom: 50px; }
.heading h2 { font-size: 40px; color: var(--ink); }
.heading p { color: var(--muted); max-width: 620px; margin: 0 auto; font-size: 18px; font-weight: 300; }

/* Services list (subpage) cards */
.svc-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.svc-list__item {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 18px;
  font-weight: 600; font-size: 14.5px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s, box-shadow .2s;
}
.svc-list__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc-list__item .num { color: var(--teal); font-weight: 800; }

/* ============================================================
   Team
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 760px; margin: 0 auto; }
.member { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); text-align: center; }
.member__photo { aspect-ratio: 1/1; background: var(--bg-soft); overflow: hidden; }
.member__photo img { width: 100%; height: 100%; object-fit: cover; }
.member__body { padding: 22px 20px 28px; }
.member__body h3 { font-size: 18px; margin-bottom: 4px; color: var(--ink); }
.member__email { display: inline-block; font-size: 13.5px; margin-bottom: 12px; }
.member__quote { color: var(--muted); font-style: italic; margin: 0; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review { background: #fff; border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-soft); border-top: 4px solid var(--teal); }
.review__stars { color: #ffc107; margin-bottom: 12px; letter-spacing: 2px; }
.review p { font-size: 15px; }
.review__author { font-weight: 700; color: var(--teal); margin-top: 14px; }

/* Info cards */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.info-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform .2s, box-shadow .2s; }
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.info-card__img { height: 210px; background: var(--bg-soft); }
.info-card__img img { width: 100%; height: 100%; object-fit: cover; }
.info-card__body { padding: 24px; }
.info-card__body h3 { font-size: 19px; color: var(--ink); }
.info-card__body p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ============================================================
   Sub-page banner (teal, header floats over it)
   ============================================================ */
.page-banner {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 180px 0 70px;
  background: linear-gradient(rgba(0, 70, 86, .35), rgba(0, 70, 86, .35)),
              url("../img/dental-procedure-bg1custom.jpg") center/cover no-repeat;
}
.page-banner h1 { font-size: 42px; margin-bottom: 8px; }
.page-banner .crumbs { font-size: 14px; opacity: .92; }
.page-banner .crumbs a { color: #fff; }
.page-banner .crumbs a:hover { opacity: .75; }

/* Prose (about) */
.prose { max-width: 820px; margin: 0 auto; }
.prose p { margin: 0 0 18px; color: #444; }
.prose .lead { font-size: 22px; color: var(--teal); font-weight: 600; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.contact-info h2 { font-size: 28px; color: var(--ink); }
.contact-info .lead { color: var(--muted); margin-bottom: 26px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-item .ico { flex: none; width: 46px; height: 46px; border-radius: 50%; background: var(--bg-soft); color: var(--teal); display: grid; place-items: center; font-size: 18px; }
.contact-item strong { display: block; font-size: 15px; }
.contact-item span { color: var(--muted); font-size: 14.5px; }
.form { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-soft); }
.form__status { margin: 0 0 18px; padding: 14px 16px; border-radius: var(--radius); background: var(--bg-soft); border: 1px solid var(--line); }
.form__status.is-success { background: rgba(11, 163, 112, .08); border-color: rgba(11, 163, 112, .22); color: #0b6f4c; }
.form__status.is-validation,
.form__status.is-error { background: rgba(211, 47, 47, .08); border-color: rgba(211, 47, 47, .22); color: #9a2c2c; }
.form__status-message { margin: 0; font-size: 14px; font-weight: 500; line-height: 1.5; }
.form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.field input, .field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius); font-family: inherit; font-size: 14.5px; background: var(--bg-soft); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--teal); background: #fff; }
.field textarea { min-height: 130px; resize: vertical; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }
.map { margin-top: 50px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.map iframe { width: 100%; height: 320px; border: 0; display: block; }

.blog-empty { text-align: center; padding: 60px 0; color: var(--muted); font-size: 18px; }

/* ============================================================
   Footer — teal like the original
   ============================================================ */
.footer { background: var(--teal); color: #fff; padding: 64px 0 0; font-size: 14.5px; }
.footer a { color: #fff; }
.footer a:hover { color: #fff; opacity: .8; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; }
.footer h4 { color: #fff; font-size: 16px; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 38px; height: 2px; background: rgba(255,255,255,.6); }
.footer__brand .tag { font-weight: 700; color: #fff; font-size: 18px; margin-bottom: 10px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul li { margin-bottom: 9px; }
.footer__news input { width: 100%; padding: 11px 13px; margin-bottom: 10px; border: 1px solid rgba(255,255,255,.4); border-radius: var(--radius); background: rgba(255,255,255,.12); color: #fff; font-family: inherit; font-size: 14px; }
.footer__news input::placeholder { color: rgba(255,255,255,.8); }
.footer__news .btn--primary { background: #fff; color: var(--teal); border-color: #fff; }
.footer__news .btn--primary:hover { background: var(--teal-deep); color: #fff; border-color: var(--teal-deep); }
.footer__bottom { margin-top: 50px; border-top: 1px solid rgba(255,255,255,.25); padding: 20px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,.9); }

/* Cookie bar */
.cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; background: var(--ink); color: #fff; border-radius: var(--radius); box-shadow: 0 10px 40px rgba(0,0,0,.3); padding: 16px 20px; display: flex; gap: 16px; align-items: center; justify-content: center; flex-wrap: wrap; z-index: 80; font-size: 14px; }
.cookie.hidden { display: none; }

/* ============================================================
   Responsive (no hamburger — menu stays visible & wraps)
   ============================================================ */
@media (max-width: 991px) {
  .features__grid, .reviews-grid, .info-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-list { grid-template-columns: repeat(2, 1fr); }
  .svc-cards { grid-template-columns: repeat(2, 1fr); }
  .about-intro__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .band__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__title { font-size: 38px; }
  /* keep logo left / menu right, just tighten spacing */
  .header__inner { padding: 0 16px; }
  .brand img { height: 60px; }
  .nav a { padding: 0 8px; font-size: 14px; }
  .hero__cta .wrap { justify-content: center; }
}
@media (max-width: 767px) {
  .section { padding: 56px 0; }
  /* stack: logo on top, menu centered below (no hamburger) */
  .header__inner { flex-direction: column; min-height: 0; padding: 12px 14px; gap: 6px; }
  .brand img { height: 54px; }
  .nav { flex-wrap: wrap; justify-content: center; gap: 0; }
  .nav a { padding: 0 9px; font-size: 13.5px; line-height: 40px; }
  .nav a::before { bottom: 6px; }
  .hero__inner { padding-top: 230px; }
  .hero__arrow { display: none; }
  .hero__dots { bottom: 56px; }
  .page-banner { padding-top: 220px; }
  .features__grid, .reviews-grid, .info-grid, .svc-list, .svc-cards,
  .team-grid, .footer__grid, .contact-grid, .form .row { grid-template-columns: 1fr; }
  .hero__cta .wrap { flex-direction: column; }
  .custom-list { columns: 1; }
  .hero__title { font-size: 30px; }
  .band__intro h2, .heading h2, .page-banner h1, .band__list h2 { font-size: 26px; }
  .topbar__info { gap: 14px; font-size: 12.5px; }
}
@media (hover: none) and (pointer: coarse) {
  .feature__content { transform: none; }
  .feature p {
    opacity: 1;
    max-height: none;
    overflow: visible;
    transform: none;
  }
}
