/* ============================================================
   zendent — Zahnarztpraxis Ammar Al Hamwi, Karlsruhe
   Quelle: Claude Design "Zendent Website.dc.html" (1:1 portiert)
   + Text-/Logo-Revision laut "Zendent Website.pdf" (2026-07-12)
   ============================================================ */

/* ---------- Fonts (aus dem Design-Bundle, selbst gehostet) ---------- */
@font-face {
  font-family: "Albert Sans";
  src: url("../fonts/albert-sans-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-3-var.woff2") format("woff2");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

/* ---------------------------- Tokens ---------------------------- */
:root {
  --ink: #14324a;
  --body: #4a6475;
  --nav: #3e5a6c;
  --teal: #1e88a0;
  --teal-hover: #17758f;
  --link-hover: #14536b;
  --cyan: #7fd4db;
  --gold: #f0a741;

  --bg-soft: #f7fbfc;
  --line: #e3eef1;
  --badge-border: #bfe0e6;
  --badge-text: #17758f;
  --ph-bg: rgba(0, 0, 0, 0.04);
  --ph-line: rgba(0, 0, 0, 0.25);
  --ph-text: rgba(0, 0, 0, 0.55);

  --font-display: "Albert Sans", system-ui, sans-serif;
  --font-logo: "Montserrat", sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;

  --pad-x: clamp(20px, 3.9vw, 56px);
  --header-h: 73px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: #fff;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0;
}

p {
  margin: 0;
}

ul[role="list"],
dl {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover);
}

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

.container {
  padding-inline: var(--pad-x);
}

.section {
  padding-block: clamp(56px, 5.9vw, 84px);
}

.section-soft {
  background: var(--bg-soft);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 12px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 0 0 8px 8px;
  font-family: var(--font-display);
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

/* --------------------------- Buttons --------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.btn-lg {
  padding: 15px 28px;
  border-radius: 12px;
  font-size: 16.5px;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}

.btn-primary:hover {
  background: var(--teal-hover);
  color: #fff;
}

.btn-primary.btn-lg {
  box-shadow: 0 10px 24px rgba(30, 136, 160, 0.25);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  border: 1.5px solid rgba(20, 50, 74, 0.25);
}

.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.btn-light:hover {
  background: #e9f5f7;
  color: var(--ink);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  color: #fff;
  border-color: #fff;
}

/* --------------------------- Header --------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 6px 24px -14px rgba(20, 50, 74, 0.25);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding-block: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}

.brand-mark {
  height: 40px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-logo);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.32em;
  color: var(--ink);
  line-height: 1.2;
}

.brand-zen {
  color: #22a7be;
}

.brand-dent {
  color: #1d6991;
}

.brand-sub {
  font-family: var(--font-logo);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--teal);
  margin-top: 2px;
}

.main-nav {
  justify-self: center;
}

.main-nav ul {
  display: flex;
  gap: clamp(18px, 2.2vw, 32px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 15.5px;
  color: var(--nav);
  padding-block: 6px;
}

.main-nav a:hover {
  color: var(--teal);
}

.nav-mobile-extra {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: end;
}

.nav-phone {
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
}

.nav-phone:hover {
  color: var(--teal);
}

/* Hamburger (nur mobil sichtbar) */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-toggle-box {
  position: relative;
  width: 24px;
  height: 18px;
  display: block;
}

.nav-toggle-line,
.nav-toggle-box::before,
.nav-toggle-box::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.5px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.22s ease, opacity 0.18s ease, top 0.22s ease;
}

.nav-toggle-box::before {
  top: 0;
}

.nav-toggle-line {
  top: 7.75px;
}

.nav-toggle-box::after {
  top: 15.5px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-box::before {
  top: 7.75px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-box::after {
  top: 7.75px;
  transform: rotate(-45deg);
}

/* ---------------------------- Hero ---------------------------- */
.hero {
  background: url("../assets/poly-light.svg") center / cover no-repeat, #f3fafb;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 48px;
  padding-block: clamp(48px, 5.6vw, 80px) clamp(44px, 5vw, 72px);
}

.hero-badge {
  display: inline-block;
  padding: 7px 15px;
  border: 1px solid var(--badge-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--badge-text);
}

.hero h1 {
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.5px;
  margin: 24px 0 18px;
  text-wrap: balance;
}

.hero-lead {
  max-width: 540px;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--body);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 34px;
  font-size: 14.5px;
  color: var(--body);
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-trust .star {
  color: var(--gold);
}

.hero-trust .check {
  color: var(--teal);
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 460px;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 4%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
}

.hero-tooth {
  position: relative;
  height: clamp(280px, 28.5vw, 410px);
  width: auto;
  transform-origin: 50% 50%;
  animation: tooth-float 7s ease-in-out 1.15s infinite,
             tooth-glow 5.5s ease-in-out 1.15s infinite;
}

/* Ausgangszustand: jede Facette unsichtbar, leicht verkleinert um ihre eigene Mitte */
.hero-tooth .facet {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  animation: facet-in 0.62s cubic-bezier(0.22, 0.9, 0.28, 1.35) forwards;
  animation-delay: calc(0.05s + var(--i, 0) * 0.045s);
}

.hero-tooth .wire {
  stroke-width: 1;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
  animation: wire-draw 0.9s ease-out forwards;
  animation-delay: 1.25s;
}

@keyframes facet-in {
  0% {
    opacity: 0;
    transform: scale(0.4) translateY(6px);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes wire-draw {
  0% {
    opacity: 0;
    stroke-dashoffset: 1;
  }
  15% {
    opacity: 0.9;
  }
  100% {
    opacity: 0.75;
    stroke-dashoffset: 0;
  }
}

@keyframes tooth-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(-1.2deg);
  }
}

@keyframes tooth-glow {
  0%,
  100% {
    filter: drop-shadow(0 22px 40px rgba(20, 110, 134, 0.24));
  }
  50% {
    filter: drop-shadow(0 30px 56px rgba(20, 110, 134, 0.42));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-tooth {
    animation: none;
    filter: drop-shadow(0 26px 48px rgba(20, 110, 134, 0.3));
  }
  .hero-tooth .facet {
    opacity: 1;
    animation: none;
  }
  .hero-tooth .wire {
    opacity: 0.75;
    stroke-dashoffset: 0;
    animation: none;
  }
}

/* ------------------------- Sections: Kopf ------------------------- */
.kicker {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}

.kicker-light {
  color: var(--cyan);
}

h2 {
  font-size: clamp(30px, 2.7vw, 38px);
  font-weight: 700;
  line-height: 1.15;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 12px;
  margin-bottom: 42px;
}

.section-note {
  max-width: 440px;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--body);
  padding-bottom: 4px;
}

/* -------------------------- Leistungen -------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.15s, transform 0.15s;
}

.card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
}

.diamond {
  display: block;
  width: 15px;
  height: 15px;
  margin: 2px 0 16px;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  transform: rotate(45deg);
}

.card h3 {
  font-size: 20px;
  font-weight: 600;
}

.card p {
  margin-top: 10px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--body);
}

/* -------------------------- Willkommen -------------------------- */
.welcome-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.welcome-copy h2 {
  margin: 12px 0 18px;
}

.welcome-copy p {
  margin-bottom: 14px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
}

.welcome-copy p:last-of-type {
  margin-bottom: 0;
}

.welcome-copy strong {
  color: var(--ink);
  font-weight: 600;
}

.checklist {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.checklist li {
  position: relative;
  padding-left: 24px;
  font-size: 15.5px;
  color: var(--ink);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
}

.welcome-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.photo-ph {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 210px;
  background: var(--ph-bg);
  border: 1.5px dashed var(--ph-line);
  border-radius: 18px;
  color: var(--ph-text);
}

.photo-ph-wide {
  grid-column: 1 / -1;
  height: 300px;
}

.photo-ph figcaption {
  font-size: 14px;
  font-weight: 600;
}

/* Bild-Icon der Platzhalter */
.ph-icon {
  width: 26px;
  height: 22px;
  border: 1.8px solid currentColor;
  border-radius: 4px;
  position: relative;
  opacity: 0.55;
}

.ph-icon::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4.5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: 1.6px solid currentColor;
}

.ph-icon::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 1px;
  width: 9px;
  height: 9px;
  border-top: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(4px);
}

/* -------------------------- Bewertungen -------------------------- */
.reviews {
  text-align: center;
}

.reviews-head h2 {
  margin: 12px 0 10px;
}

.rating-line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 17px;
  color: var(--body);
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 40px;
  text-align: left;
}

.review-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
}

.review-card blockquote {
  margin: 0;
}

.review-card blockquote p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
}

.review-source {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
}

/* ---------------------------- Kontakt ---------------------------- */
.contact {
  color: #fff;
  background: url("../assets/poly-dark.svg") center / cover no-repeat, #123e50;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.contact h2 {
  color: #fff;
  margin: 12px 0 16px;
}

.contact-lead {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 32px;
  margin-bottom: 32px;
}

.contact-grid dt {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}

.contact-grid dd {
  margin: 6px 0 0;
  font-size: 17.5px;
  line-height: 1.5;
  color: #fff;
}

.contact-grid dd a {
  color: #fff;
}

.contact-grid dd a:hover {
  color: var(--cyan);
}

.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.map-frame {
  position: relative;
  display: block;
  height: 400px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.map-embed {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 15px;
  background: var(--bg-soft);
}

/* Google-Maps-Einwilligung (Zwei-Klick-Lösung, DSGVO) */
.map-consent {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px;
  text-align: center;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  color: #eaf6f8;
}

.map-consent-icon {
  color: var(--teal-on-dark);
  margin-bottom: 2px;
}

.map-consent-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}

.map-consent-text {
  max-width: 380px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.map-consent-btn {
  margin-top: 8px;
}

.map-consent-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: #eaf6f8;
}

.map-consent-link:hover {
  color: #fff;
}

.map-open-link {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 14px rgba(10, 40, 55, 0.25);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.map-open-link:hover {
  background: #fff;
  color: var(--teal);
}

/* ---------------------------- Footer ---------------------------- */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-block: 26px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--body);
}

.footer-brand img {
  height: 22px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--body);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--teal);
}

/* ----------------------- Reveal-Animationen ----------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .card {
    transition: none;
  }
}

/* --------------------------- Anker-Offset --------------------------- */
section[id],
[id="team"] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* ------------------------ Rechtliche Seiten ------------------------ */
.legal {
  padding-block: clamp(48px, 6vw, 80px);
}

.legal .container {
  max-width: 820px;
  margin-inline: auto;
}

.legal h1 {
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 700;
  margin-bottom: 28px;
}

.legal h2 {
  font-size: 22px;
  margin: 36px 0 12px;
}

.legal p,
.legal address {
  margin-bottom: 14px;
  font-style: normal;
  color: var(--body);
}

.legal .todo {
  display: block;
  margin: 20px 0;
  padding: 14px 18px;
  background: #fdf6e8;
  border: 1px solid #f0dcae;
  border-radius: 10px;
  font-size: 15.5px;
  color: #7a5c1e;
}

/* ========================== Responsive ========================== */
@media (max-width: 1080px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .header-actions .nav-phone {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -24px rgba(20, 50, 74, 0.3);
    padding: 22px var(--pad-x) 26px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav {
    max-height: calc(100vh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    overflow: auto;
    overscroll-behavior: contain;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 4px;
  }

  .main-nav a {
    display: block;
    padding: 10px 0;
    font-size: 18px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-mobile-extra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-art {
    order: 2;
    min-height: 0;
    margin-top: 4px;
  }

  .hero-tooth {
    height: clamp(230px, 46vw, 340px);
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 34px;
  }

  .card-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .welcome-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .map-frame {
    height: 300px;
  }
}

@media (max-width: 620px) {
  .header-inner {
    gap: 14px;
  }

  .header-actions {
    gap: 8px;
  }

  .btn-header {
    padding: 9px 13px;
    font-size: 13.5px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    height: 34px;
  }

  .brand-name {
    font-size: 14px;
    letter-spacing: 0.28em;
  }

  .brand-sub {
    font-size: 7.5px;
    letter-spacing: 0.32em;
  }

  .hero h1 {
    font-size: clamp(33px, 9.2vw, 36px);
  }

  .hero-lead {
    font-size: 16.5px;
  }

  .hero-cta {
    margin-top: 28px;
  }

  .hero-cta .btn {
    flex: 1 1 100%;
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 28px;
  }

  h2 {
    font-size: 28px;
  }

  .section-note {
    font-size: 16px;
  }

  .card-grid,
  .review-grid,
  .welcome-media {
    grid-template-columns: 1fr;
  }

  .card,
  .review-card {
    padding: 24px;
  }

  .photo-ph-wide {
    height: 230px;
  }

  .photo-ph {
    height: 190px;
  }

  .contact-grid {
    gap: 18px 20px;
  }

  .contact-cta .btn {
    flex: 1 1 100%;
  }

  .map-frame {
    height: 260px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 380px) {
  .brand-text {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}