500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #eef3f7;
  --ink: #17212d;
  --muted: #667383;
  --line: rgba(26, 49, 73, 0.14);
  --blue: #27496d;
  --blue-deep: #172f4a;
  --blue-soft: #dfeaf3;
  --violet: #66558d;
  --accent: #a792c7;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(24, 48, 73, 0.12);
  --shadow-soft: 0 12px 36px rgba(24, 48, 73, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 15%, rgba(167, 146, 199, 0.12), transparent 26rem),
    radial-gradient(circle at 80% 30%, rgba(39, 73, 109, 0.09), transparent 30rem),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-small {
  padding: 28px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
}

.eyebrow-light {
  color: #d9cdf0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.6vw, 6.5rem);
  line-height: 0.96;
  max-width: 830px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 4.4vw, 4.2rem);
  line-height: 1;
}

h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(246, 248, 251, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.93);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(24, 48, 73, 0.08);
}

.header-shell {
  width: min(1240px, calc(100% - 36px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  padding: 9px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--blue), var(--violet));
  box-shadow: 0 8px 20px rgba(39, 73, 109, 0.18);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--white);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  font-size: 0.86rem;
  font-weight: 700;
  color: #44515e;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-call {
  padding: 12px 19px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease;
}

.header-call:hover {
  transform: translateY(-2px);
  background: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 13px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  display: block;
  margin: 4px auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding-top: 78px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lead {
  margin-bottom: 20px;
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--blue);
}

.hero-highlight {
  width: fit-content;
  margin-bottom: 24px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(102, 85, 141, 0.08);
  border: 1px solid rgba(102, 85, 141, 0.14);
}

.hero-highlight span,
.hero-highlight strong {
  display: block;
}

.hero-highlight span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-highlight strong {
  margin-top: 2px;
  font-size: 1.18rem;
  color: var(--violet);
}

.hero-services {
  max-width: 700px;
  margin-bottom: 28px;
  color: var(--muted);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.btn {
  min-height: 52px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue), var(--violet));
  color: var(--white);
  box-shadow: 0 15px 35px rgba(39, 73, 109, 0.24);
}

.btn-secondary {
  background: rgba(255,255,255,0.75);
  border-color: var(--line);
  color: var(--ink);
}

.btn-light {
  background: var(--white);
  color: var(--blue-deep);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 700px;
}

.hero-meta div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.hero-meta span,
.hero-meta strong {
  display: block;
}

.hero-meta span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.hero-meta strong {
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
}

.visual-card {
  width: 100%;
  min-height: 530px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.15), transparent 14rem),
    linear-gradient(145deg, #17314b 0%, #315777 48%, #69578c 100%);
  box-shadow: var(--shadow);
}

.visual-card::before {
  content: "";
  width: 330px;
  height: 330px;
  position: absolute;
  right: -110px;
  bottom: -100px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
}

.visual-topline {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.75), transparent);
}

.smile-graphic {
  width: min(320px, 84%);
  margin: 0 auto;
  opacity: 0.96;
}

.smile-graphic svg {
  width: 100%;
}

.tooth-outline,
.smile-line {
  fill: none;
  stroke: rgba(255,255,255,0.9);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tooth-outline {
  stroke-width: 3.2;
}

.smile-line {
  stroke-width: 5;
}

.visual-content span,
.visual-content strong,
.visual-content p {
  display: block;
}

.visual-content span {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ddd5ed;
  font-weight: 800;
}

.visual-content strong {
  margin-top: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
}

.visual-content p {
  margin: 9px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: 0.9rem;
}

.visual-chip {
  align-self: flex-start;
  margin-top: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-orb-one {
  width: 220px;
  height: 220px;
  left: -90px;
  top: 20%;
  background: rgba(167,146,199,0.15);
}

.hero-orb-two {
  width: 150px;
  height: 150px;
  right: 34%;
  bottom: 2%;
  background: rgba(39,73,109,0.09);
}

.quick-info {
  position: relative;
  z-index: 4;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.quick-card {
  min-height: 112px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(26,49,73,0.08);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.86);
  box-shadow: var(--shadow-soft);
}

.quick-icon {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--surface-soft);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
}

.quick-card small,
.quick-card strong {
  display: block;
}

.quick-card small {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.quick-card strong {
  margin-top: 4px;
  font-size: 0.96rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-heading p {
  max-width: 620px;
  color: var(--muted);
}

.services {
  background: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(26,49,73,0.06);
  border-bottom: 1px solid rgba(26,49,73,0.06);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 250px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.82);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(39,73,109,0.28);
  box-shadow: var(--shadow-soft);
}

.service-number {
  color: #98a4af;
  font-size: 0.75rem;
  font-weight: 800;
}

.service-icon {
  width: 72px;
  height: 72px;
  margin: 16px 0 22px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--surface-soft);
  color: var(--blue);
}

.service-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linejoin: round;
}

.service-symbol {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.service-card-featured {
  color: var(--white);
  border-color: transparent;
  background:
    radial-gradient(circle at 82% 12%, rgba(255,255,255,0.14), transparent 10rem),
    linear-gradient(145deg, var(--blue-deep), var(--violet));
  box-shadow: 0 20px 50px rgba(50, 52, 91, 0.2);
}

.service-card-featured .service-icon {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.service-card-featured .service-number {
  color: rgba(255,255,255,0.62);
}

.featured-label {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.smile-feature {
  overflow: hidden;
}

.smile-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 66px;
  align-items: center;
}

.smile-large {
  max-width: 520px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.05rem;
}

.smile-contact {
  margin-bottom: 24px;
  padding-left: 18px;
  border-left: 3px solid var(--violet);
}

.smile-contact small,
.smile-contact a {
  display: block;
}

.smile-contact small {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.smile-contact a {
  margin-top: 3px;
  color: var(--blue-deep);
  font-size: 1.35rem;
  font-weight: 800;
}

.image-frame {
  padding: 10px;
  position: relative;
  border: 1px solid rgba(102,85,141,0.25);
  border-radius: 30px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 25px 60px rgba(24,48,73,0.13);
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(39,73,109,0.2), rgba(167,146,199,0.28));
  filter: blur(18px);
  opacity: 0.45;
}

.image-frame img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  object-fit: contain;
}

.service-strip {
  background: var(--blue-deep);
  color: var(--white);
}

.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.strip-inner span {
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  font-size: 0.78rem;
  font-weight: 700;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.schedule-grid .section-heading {
  margin-bottom: 0;
}

.schedule-card {
  min-height: 210px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.schedule-icon {
  min-width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--blue), var(--violet));
  color: var(--white);
}

.schedule-icon svg {
  width: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.schedule-card span,
.schedule-card strong {
  display: block;
}

.schedule-card span {
  margin-bottom: 7px;
  color: var(--muted);
  font-weight: 800;
}

.schedule-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.location {
  padding-top: 40px;
}

.location-card {
  min-height: 260px;
  padding: 46px;
  display: flex;
  align-items: center;
  gap: 32px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 20%, rgba(167,146,199,0.18), transparent 18rem),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.location-mark {
  min-width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: var(--surface-soft);
  color: var(--violet);
}

.location-mark svg {
  width: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location-card h2 {
  margin-bottom: 8px;
}

.location-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 700;
}

.contact {
  overflow: hidden;
  background: linear-gradient(145deg, #152c43 0%, #244c6b 54%, #65558a 100%);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.contact-copy p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.73);
}

.contact-panel {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

.contact-row {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.contact-row span {
  color: rgba(255,255,255,0.64);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.contact-row strong {
  font-size: 0.94rem;
}

.contact-panel .btn {
  width: 100%;
  margin-top: 22px;
}

.contact-glow {
  width: 420px;
  height: 420px;
  position: absolute;
  right: -130px;
  top: -100px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 0 90px rgba(255,255,255,0.07);
}

.site-footer {
  padding: 38px 0;
  background: #10253a;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 34px;
}

.footer-grid strong {
  color: var(--white);
}

.footer-grid p {
  margin: 7px 0 0;
  max-width: 500px;
  font-size: 0.83rem;
}

.footer-grid div:nth-child(2),
.footer-grid div:nth-child(3) {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
}

.footer-grid a {
  color: var(--white);
  font-weight: 800;
}

.mobile-call {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.12s;
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .header-shell {
    grid-template-columns: 1fr auto;
  }

  .header-call {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    left: 18px;
    padding: 16px;
    display: grid;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px 10px;
    border-radius: 10px;
  }

  .site-nav a:hover {
    background: var(--surface-soft);
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero-grid,
  .smile-grid,
  .schedule-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 55px;
  }

  .hero-grid {
    gap: 46px;
  }

  .visual-card {
    min-height: 460px;
  }

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

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

  .smile-grid {
    gap: 40px;
  }

  .schedule-grid,
  .contact-grid {
    gap: 34px;
  }

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

  .footer-grid div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 76px;
  }

  .container {
    width: min(100% - 26px, 1180px);
  }

  .section {
    padding: 74px 0;
  }

  .section-small {
    padding: 20px 0;
  }

  .header-shell {
    width: calc(100% - 24px);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 0.91rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.4rem);
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .visual-card {
    min-height: 390px;
    padding: 20px;
    border-radius: 28px;
  }

  .visual-content strong {
    font-size: 1.95rem;
  }

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

  .service-card {
    min-height: 210px;
  }

  .image-frame {
    padding: 7px;
    border-radius: 23px;
  }

  .image-frame img {
    border-radius: 17px;
  }

  .schedule-card {
    padding: 22px;
    align-items: flex-start;
    flex-direction: column;
    border-radius: 26px;
  }

  .schedule-icon {
    min-width: 68px;
    width: 68px;
    height: 68px;
    border-radius: 20px;
  }

  .schedule-icon svg {
    width: 34px;
  }

  .location-card {
    padding: 30px 22px;
    align-items: flex-start;
    flex-direction: column;
  }

  .location-mark {
    min-width: 70px;
    width: 70px;
    height: 70px;
    border-radius: 20px;
  }

  .contact-panel {
    padding: 20px;
    border-radius: 26px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

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

  .footer-grid div:first-child {
    grid-column: auto;
  }

  .mobile-call {
    height: 58px;
    position: fixed;
    right: 12px;
    bottom: 10px;
    left: 12px;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 18px;
    background: linear-gradient(135deg, var(--blue-deep), var(--violet));
    color: var(--white);
    box-shadow: 0 18px 45px rgba(20, 36, 56, 0.3);
  }
}
