/* =====================================================
   ДЕНТАЛНА КЛИНИКА — ГЛАВНА СТИЛОВА ТАБЛИЦА
   ===================================================== */

/* ---- Custom Properties ---- */
:root {
  --blue:        #2A7FD4;
  --blue-dark:   #1A5FA0;
  --blue-light:  #EBF4FF;
  --teal:        #1AADA8;
  --teal-light:  #E6F7F7;
  --warm:        #F5A623;
  --warm-dark:   #D4891A;
  --surface:     #FFFFFF;
  --bg:          #F7FAFC;
  --navy:        #0F2A45;
  --text:        #1A2330;
  --muted:       #5A6B7A;
  --border:      #DDE4EC;
  --red:         #D93025;
  --green:       #1E8C5A;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-pill: 9999px;

  --shadow-card:  0 2px 12px rgba(0,0,0,.07);
  --shadow-hover: 0 8px 32px rgba(42,127,212,.15);
  --shadow-nav:   0 2px 16px rgba(0,0,0,.10);

  --ease: cubic-bezier(.4,0,.2,1);
  --header-h: 72px;
  --container: 1200px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select, button { font-family: inherit; font-size: 1rem; }
textarea { resize: vertical; }
address { font-style: normal; }
blockquote { quotes: none; }

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- Skip Link ---- */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--navy); color: #fff;
  padding: .5rem 1rem; border-radius: var(--radius-sm);
  font-weight: 700; font-size: .875rem; z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ---- Screen-reader only ---- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.5rem; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 1rem; line-height: 1;
  border: 2px solid transparent; text-decoration: none;
  transition: all 150ms var(--ease); white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { text-decoration: none; }

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

.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }

.btn-warm { background: var(--warm); color: var(--navy); border-color: var(--warm); font-weight: 800; }
.btn-warm:hover { background: var(--warm-dark); border-color: var(--warm-dark); }

.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { background: var(--bg); }

.btn--lg { padding: .9rem 2rem; font-size: 1.0625rem; }
.btn--sm { padding: .45rem 1rem; font-size: .875rem; }
.btn--full { width: 100%; justify-content: center; }

/* Focus ring for all interactive elements */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

/* ---- Section base ---- */
.section { padding-block: 4.5rem; }
.section--alt  { background: var(--bg); }
.section--teal { background: var(--teal-light); }
.section--blue { background: var(--blue); color: #fff; }

/* ---- Section header ---- */
.section-header {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 2.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: .5rem;
}
.section-title--left { text-align: left; }
.section-sub {
  color: var(--muted);
  font-size: 1.0625rem;
  margin-top: .5rem;
}
.section-eyebrow {
  display: inline-block;
  color: var(--teal);
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .5rem;
}

/* ---- Grids ---- */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---- Stars ---- */
.stars { color: var(--warm); font-size: 1rem; letter-spacing: .05em; }
.stars--lg { font-size: 1.25rem; }

/* ---- Photo placeholder ---- */
.photo-placeholder {
  background: linear-gradient(135deg, var(--teal-light) 0%, #dde4ec 100%);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; color: var(--muted);
  font-size: .875rem; font-weight: 600;
  position: relative; overflow: hidden;
}
.photo-real-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; border-radius: inherit;
  display: none;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy); color: #fff;
  z-index: 1000; padding: 1rem 1.5rem;
  transform: translateY(100%);
  transition: transform .4s var(--ease);
}
.cookie-banner:not([hidden]) { transform: translateY(0); }
.cookie-banner[hidden] { display: block !important; } /* keep in DOM for animation */
.cookie-banner__inner {
  max-width: var(--container); margin-inline: auto;
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 240px; font-size: .875rem; }
.cookie-banner__text a { color: #7FC4E8; }
.cookie-banner__text p + p { margin-top: .25rem; }
.cookie-banner__actions { display: flex; gap: .75rem; flex-shrink: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--surface);
  height: var(--header-h);
  transition: box-shadow .2s var(--ease), height .2s var(--ease);
}
.header--scrolled {
  box-shadow: var(--shadow-nav);
  height: 60px;
}
.header__inner {
  height: 100%;
  display: flex; align-items: center; gap: 1rem;
}

/* Logo */
.header__logo {
  display: flex; align-items: center; gap: .625rem;
  text-decoration: none; color: var(--navy);
  flex-shrink: 0;
}
.header__logo:hover { text-decoration: none; }
.header__logo-icon {
  width: 36px; height: 36px;
  color: var(--teal); flex-shrink: 0;
}
.logo-name {
  display: block;
  font-size: .9375rem; font-weight: 800; line-height: 1.2;
  white-space: nowrap;
}
.logo-sub {
  display: block;
  font-size: .6875rem; color: var(--muted);
  font-weight: 500; letter-spacing: .04em;
}

/* Nav */
.header__nav { margin-inline: auto; }
.header__nav ul {
  display: flex; gap: .25rem; list-style: none;
}
.header__nav a {
  display: block; padding: .45rem .75rem;
  color: var(--text); font-size: .9375rem; font-weight: 600;
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
  text-decoration: none;
}
.header__nav a:hover, .header__nav a[aria-current="page"] {
  color: var(--blue); background: var(--blue-light);
}

/* Actions */
.header__actions {
  display: flex; align-items: center; gap: .75rem; flex-shrink: 0;
}
.header__phone {
  display: flex; align-items: center; gap: .375rem;
  color: var(--muted); font-size: .875rem; font-weight: 600;
  text-decoration: none; white-space: nowrap;
}
.header__phone svg { width: 16px; height: 16px; }
.header__phone:hover { color: var(--blue); text-decoration: none; }
.header__cta { font-size: .9375rem; }

/* Hamburger */
.header__hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; padding: .5rem;
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  cursor: pointer; color: var(--text);
}
.header__hamburger span {
  display: block; height: 2px; background: currentColor;
  border-radius: 2px; transition: all .25s var(--ease);
}
.header__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 1023px) {
  .header__phone { display: none; }
  .header__hamburger { display: flex; }
  .header__nav {
    position: fixed; inset: 0; top: var(--header-h);
    background: var(--surface); padding: 1.5rem 1.25rem;
    transform: translateX(100%);
    transition: transform .3s var(--ease);
    z-index: 99; overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0,0,0,.1);
  }
  /* Keep nav top in sync with scrolled header */
  .header--scrolled .header__nav { top: 60px; }
  .header__nav.nav-open { transform: translateX(0); }
  .header__nav ul { flex-direction: column; gap: .25rem; }
  .header__nav a { font-size: 1.0625rem; padding: .875rem 1rem; border-radius: var(--radius-md); }
  /* Divider line between nav links and CTA */
  .header__nav ul::after {
    content: ''; display: block; height: 1px;
    background: var(--border); margin: .75rem 0;
  }
}
@media (max-width: 479px) {
  .header__cta { display: none; }
  /* Hero badge: don't go negative on small screens */
  .hero__badge { left: 1rem; bottom: .5rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--bg) 0%, var(--teal-light) 100%);
  display: flex; align-items: center;
  padding-block: 3.5rem;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr 1fr; }
}

.hero__eyebrow {
  font-size: .875rem; font-weight: 700;
  color: var(--teal); text-transform: uppercase; letter-spacing: .07em;
  margin-bottom: .75rem;
}
.hero__headline {
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.025em; color: var(--navy);
  margin-bottom: 1.25rem;
}
.hero__subtext {
  font-size: 1.0625rem; color: var(--muted);
  max-width: 500px; line-height: 1.7;
  margin-bottom: 2rem;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: .875rem;
  margin-bottom: 2rem;
}
.hero__trust {
  display: flex; align-items: center; gap: .625rem;
  font-size: .9375rem; color: var(--muted);
}
.hero__trust strong { color: var(--text); }

.hero__visual { position: relative; }
.hero__photo {
  aspect-ratio: 4/3;
  min-height: 300px;
  max-height: 460px;
  width: 100%;
}
.hero__badge {
  position: absolute; bottom: -1rem; left: -1rem;
  background: var(--blue); color: #fff;
  border-radius: var(--radius-md);
  padding: .875rem 1.25rem;
  box-shadow: 0 8px 24px rgba(42,127,212,.35);
  display: flex; flex-direction: column;
  align-items: center; line-height: 1.2;
}
.hero__badge-num { font-size: 1.625rem; font-weight: 800; }
.hero__badge-txt { font-size: .75rem; font-weight: 600; opacity: .85; }

/* ============================================================
   WHY US
   ============================================================ */
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.why-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.why-card__icon {
  width: 52px; height: 52px;
  background: var(--teal-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); margin-bottom: 1.25rem;
  font-size: 1.625rem;
}
.why-card__icon svg { width: 26px; height: 26px; }
.why-card__title {
  font-size: 1.0625rem; font-weight: 700; color: var(--navy);
  margin-bottom: .625rem;
}
.why-card p { color: var(--muted); font-size: .9375rem; line-height: 1.65; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.875rem 1.75rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.service-card__icon {
  font-size: 2rem; margin-bottom: 1rem; display: block;
}
.service-card__title {
  font-size: 1.0625rem; font-weight: 700; color: var(--navy);
  margin-bottom: .625rem;
}
.service-card p { color: var(--muted); font-size: .9375rem; line-height: 1.65; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .about__inner { grid-template-columns: 420px 1fr; }
}

.about__photo { aspect-ratio: 3/4; max-height: 500px; }
.about__credentials {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-top: 1.25rem;
}
.credential-pill {
  background: var(--teal-light); color: var(--teal);
  border: 1px solid #b2e4e3;
  padding: .3rem .875rem; border-radius: var(--radius-pill);
  font-size: .8125rem; font-weight: 700;
}

.about__content { display: flex; flex-direction: column; gap: 1rem; }
.about__content p { color: var(--muted); font-size: 1rem; line-height: 1.75; }
.about__content .btn { align-self: flex-start; margin-top: .5rem; }

.about__quote {
  border-left: 4px solid var(--teal);
  padding-left: 1.25rem; margin-block: .5rem;
  color: var(--text); font-size: 1rem; line-height: 1.7;
  font-style: italic;
}
.about__quote cite {
  display: block; margin-top: .625rem;
  font-size: .875rem; font-weight: 700;
  color: var(--teal); font-style: normal;
}

/* ============================================================
   PRICING
   ============================================================ */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  margin-bottom: 1.5rem;
}
.pricing-table {
  width: 100%; border-collapse: collapse;
  background: var(--surface); min-width: 560px;
}
.pricing-table thead { background: var(--navy); }
.pricing-table thead th {
  padding: .875rem 1.25rem;
  text-align: left; color: #fff;
  font-size: .8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
}
.pricing-table tbody td {
  padding: .875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: .9375rem;
}
.pricing-table tbody td:nth-child(2),
.pricing-table tbody td:nth-child(3) {
  font-weight: 700; color: var(--blue); white-space: nowrap;
}
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover td { background: var(--bg); }
.price-free { color: var(--green) !important; }

.pricing-disclaimer {
  color: var(--muted); font-size: .875rem; line-height: 1.6;
  max-width: 680px; margin-inline: auto;
  text-align: center;
  padding: 1rem 1.25rem;
  background: var(--bg); border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews__summary {
  display: flex; align-items: center; justify-content: center;
  gap: .75rem; flex-wrap: wrap; margin-top: .75rem;
}
.reviews__score {
  font-size: 2.5rem; font-weight: 800; color: var(--navy); line-height: 1;
}
.reviews__count { color: var(--muted); font-size: .9375rem; }

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.875rem 1.75rem;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.review-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.review-card__stars { color: var(--warm); font-size: 1rem; margin-bottom: 1rem; }
.review-card__text {
  color: var(--text); font-size: .9375rem; line-height: 1.7;
  flex: 1; font-style: italic;
}
.review-card__footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1.25rem; padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.review-card__author { font-weight: 700; font-size: .9375rem; color: var(--navy); }
.review-card__date   { font-size: .8125rem; color: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq__inner .section-header { max-width: 580px; }
.faq-list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: .5rem; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.125rem 1.375rem;
  background: none; border: none;
  font-size: 1rem; font-weight: 700; color: var(--navy);
  cursor: pointer; text-align: left;
  transition: background .15s;
}
.faq-question:hover { background: var(--bg); }
.faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0; color: var(--blue);
  transition: transform .3s var(--ease);
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease), padding .35s var(--ease);
}
.faq-answer.open { max-height: 600px; }
.faq-answer__inner {
  padding: 0 1.375rem 1.25rem;
  color: var(--muted); font-size: .9375rem; line-height: 1.7;
}
.faq-answer__inner a { color: var(--blue); }
.faq-answer__inner strong { color: var(--green); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2.5rem; flex-wrap: wrap;
}
.newsletter__text { max-width: 480px; }
.newsletter__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; color: #fff; margin-bottom: .5rem;
}
.newsletter__text p { color: rgba(255,255,255,.8); font-size: 1rem; }

.newsletter__form { flex-shrink: 0; width: 100%; max-width: 420px; }
.newsletter__fields {
  display: flex; gap: .75rem; flex-wrap: wrap;
}
.newsletter__fields .form-group { flex: 1; min-width: 220px; }
.newsletter__fields input {
  width: 100%; padding: .75rem 1.125rem;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--text); font-size: 1rem;
  transition: border-color .2s;
}
.newsletter__fields input::placeholder { color: var(--muted); }
.newsletter__fields input:focus { outline: none; border-color: #fff; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact-form__wrapper { grid-template-columns: 380px 1fr; }
}

.contact-form__intro .section-title { font-size: clamp(1.5rem, 3vw, 2rem); }
.contact-form__intro p { color: var(--muted); margin-top: .5rem; }

.contact-info-list {
  margin-top: 1.5rem;
  display: flex; flex-direction: column; gap: .875rem;
}
.contact-info-list li {
  display: flex; align-items: center; gap: .75rem;
  font-size: .9375rem; font-weight: 600; color: var(--text);
}
.contact-info-list svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }
.contact-info-list a { color: var(--blue); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group { display: flex; flex-direction: column; gap: .375rem; margin-bottom: 1rem; }
.form-group label {
  font-size: .875rem; font-weight: 700; color: var(--text);
}
.form-group .required { color: var(--red); }
.form-group .optional { color: var(--muted); font-weight: 400; }
.form-group input,
.form-group textarea,
.form-group select {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 1rem; color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  background: var(--surface);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-light);
}
.form-group--error input,
.form-group--error textarea,
.form-group--error select {
  border-color: var(--red);
}
.form-group--error input:focus,
.form-group--error textarea:focus {
  box-shadow: 0 0 0 3px rgba(217,48,37,.1);
}

.form-group--checkbox {
  flex-direction: row; align-items: flex-start; gap: .75rem;
  margin-bottom: 1.25rem;
}
.form-group--checkbox input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0;
  padding: 0; margin-top: 2px;
  accent-color: var(--blue);
}
.form-group--checkbox label { font-size: .875rem; font-weight: 400; }

.field-error {
  color: var(--red); font-size: .8125rem; font-weight: 600; display: none;
}
.form-group--error .field-error { display: block; }

.form-success {
  background: #ECFDF5; border: 1px solid #6EE7B7;
  color: var(--green); border-radius: var(--radius-md);
  padding: 1rem 1.25rem; font-weight: 700;
  margin-top: 1rem; font-size: .9375rem;
}
.form-error-msg {
  background: #FEF2F2; border: 1px solid #FECACA;
  color: var(--red); border-radius: var(--radius-md);
  padding: 1rem 1.25rem; font-weight: 600;
  margin-top: 1rem; font-size: .9375rem;
}
.form-group--inline { margin-bottom: 0; }

/* ============================================================
   MAP
   ============================================================ */
.map__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .map__inner { grid-template-columns: 1fr 1.5fr; }
}

.map__info .section-title { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1.5rem; }
.contact-detail-list {
  display: flex; flex-direction: column; gap: 1.25rem;
}
.contact-detail-list li {
  display: flex; align-items: flex-start; gap: .875rem;
  font-size: 1rem; color: var(--text);
}
.contact-detail-list svg { width: 22px; height: 22px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.contact-detail-list a { color: var(--blue); font-weight: 700; }

.map__embed iframe {
  display: block; width: 100%; border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer__main { background: var(--navy); color: #fff; padding-block: 4rem; }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footer__inner { grid-template-columns: 2fr 1fr 1fr; }
}

.footer__logo {
  display: flex; align-items: center; gap: .625rem;
  font-size: 1.0625rem; font-weight: 800; margin-bottom: .875rem;
}
.footer__tagline { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.5; }
.footer__stars {
  margin-top: .875rem;
  display: flex; align-items: center; gap: .5rem;
  font-size: .875rem; color: rgba(255,255,255,.7);
}
.footer__stars span:first-child { color: var(--warm); }

.footer__nav h3, .footer__contact h3 {
  font-size: .75rem; text-transform: uppercase;
  letter-spacing: .08em; color: rgba(255,255,255,.45);
  margin-bottom: 1rem; font-weight: 700;
}
.footer__nav ul { display: flex; flex-direction: column; gap: .5rem; }
.footer__nav a {
  color: rgba(255,255,255,.7); font-size: .9375rem;
  text-decoration: none; transition: color .15s;
}
.footer__nav a:hover { color: #fff; text-decoration: none; }

.footer__contact ul {
  display: flex; flex-direction: column; gap: .5rem;
  color: rgba(255,255,255,.7); font-size: .9375rem;
}
.footer__contact a { color: rgba(255,255,255,.9); text-decoration: none; font-weight: 700; }
.footer__contact a:hover { color: #fff; }

.footer__social { display: flex; gap: .875rem; margin-top: 1.25rem; }
.footer__social a {
  color: rgba(255,255,255,.6); transition: color .15s;
  display: flex; align-items: center;
}
.footer__social a:hover { color: #fff; }

.footer__bottom {
  background: rgba(0,0,0,.25); padding-block: 1.125rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .75rem;
}
.footer__bottom p { color: rgba(255,255,255,.5); font-size: .8125rem; }
.footer__legal { display: flex; gap: 1.25rem; }
.footer__legal a {
  color: rgba(255,255,255,.5); font-size: .8125rem; text-decoration: none;
  transition: color .15s;
}
.footer__legal a:hover { color: rgba(255,255,255,.9); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal--left  { transform: translateX(-28px); }
.reveal--right { transform: translateX(28px); }
.reveal--delay { transition-delay: .15s; }
.reveal.in-view {
  opacity: 1;
  transform: none;
}
