:root {
  /* Core color theme */
  --green: #124536;
  --green-dark: #0b3025;
  --green-soft: #1f6650;
  --gold: #b68234;
  --gold-light: #dfc084;
  --black: #111512;
  --white: #ffffff;
  --cream: #f7f5ef;
  --text: var(--black);
  --muted: #62736c;

  /* Shared shape */
  --radius: 12px;

  /* h1: main page title */
  --h1-main-title-size: clamp(42px, 5.3vw, 76px);
  --h1-main-title-weight: 700;
  --h1-main-title-color: var(--green-dark);

  /* h2: secondary / section title */
  --h2-section-title-size: clamp(30px, 3.4vw, 46px);
  --h2-section-title-weight: 700;
  --h2-section-title-color: var(--green);

  /* p and all regular text */
  --body-text-size: 14px;
  --body-text-weight: 400;
  --body-text-color: var(--black);

  /* All buttons and tag labels */
  --button-text-size: 13px;
  --tag-text-size: 12px;

  /* Clinic section: labels and supporting text */
  --clinic-copy-size: 14px;
  --clinic-copy-weight: 400;

  /* Clinic section: location and clinic names */
  --clinic-title-size: 24px;
  --clinic-title-weight: 600;
}

body {
  background: var(--cream);
  font-family: "Google Sans", "Google Sans Text", Arial, sans-serif;
  font-size: var(--body-text-size);
  font-weight: var(--body-text-weight);
  color: var(--body-text-color);
  line-height: 1.5;
}

.container {
  width: 80%;
  max-width: 1440px;
}

h1,
h2,
h3,
.brand h2,
.title h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

.top-strip,
.top-bar {
  background: #103e31;
  border-bottom: 1px solid rgba(223, 192, 132, 0.24);
}

.top-inner {
  min-height: 40px;
}

.top-social a,
.social a {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.top-social a:hover,
.social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.header {
  box-shadow:
    0 1px 0 rgba(18, 69, 54, 0.09),
    0 8px 26px rgba(18, 69, 54, 0.06);
}

.nav-wrap {
  height: 82px;
}

.brand {
  gap: 10px;
}
.brand img {
  width: 62px;
}
.brand h2 {
  color: var(--green);
  font-size: 28px;
  font-weight: 700;
  line-height: 0.75;
}
.brand p {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.1px;
  margin-top: 5px;
}
.brand span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  margin-top: 1px;
}

.nav {
  gap: 25px;
  font-size: 12px;
  letter-spacing: 0.35px;
}
.nav a {
  font-size: 12px;
  transition: color 0.2s ease;
}
.nav .book-btn {
  font-size: var(--button-text-size);
}
.nav a:hover {
  color: var(--green-soft);
}
.book-btn,
.btn.primary {
  background: var(--green);
  box-shadow: 0 8px 18px rgba(18, 69, 54, 0.18);
}
.book-btn {
  border-radius: 4px;
  padding: 13px 18px;
}
.btn {
  border-radius: 4px;
  letter-spacing: 0.3px;
}
.btn.primary:hover,
.book-btn:hover {
  background: var(--gold);
}

.hero {
  min-height: 620px;
  border-bottom: 5px solid var(--gold);
  background:
    linear-gradient(
      90deg,
      rgba(8, 44, 33, 0.96) 0%,
      rgba(10, 54, 40, 0.83) 46%,
      rgba(10, 54, 40, 0.18) 72%
    ),
    url("../image/background.png") center / cover no-repeat;
}
.hero-content {
  min-height: 620px;
  padding: 68px 0;
}
.hero-text {
  max-width: 630px;
}
.hero h1 {
  color: #fff !important;
  font-size: var(--h1-main-title-size);
  font-weight: var(--h1-main-title-weight);
  line-height: 0.92;
  margin: 18px 0 13px;
  text-transform: none;
}
.hero h3 {
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 17px;
  letter-spacing: 0.2px;
}
.hero p {
  color: rgba(255, 255, 255, 0.84);
  max-width: 550px;
  font-size: 16px;
}
.hero h3,
.hero p {
  font-family: "Google Sans", Arial, sans-serif;
}
.hero .tag {
  color: #fff7e6;
  background: rgba(182, 130, 52, 0.25);
  border: 1px solid rgba(223, 192, 132, 0.45);
  border-left: 3px solid var(--gold-light);
}
.hero .btn.outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
}
.hero .btn.outline:hover {
  color: var(--green);
  background: #fff;
}
.hero-features {
  margin-top: 37px;
  max-width: 620px;
  background: transparent;
  border-color: rgba(223, 192, 132, 0.35);
}
.hero-features div {
  padding: 14px 10px;
  border-color: rgba(223, 192, 132, 0.35);
}
.hero-features span {
  color: rgba(255, 255, 255, 0.82);
}

.about-hero,
.treatment-hero,
.contact-hero,
.blog-hero {
  border-bottom: 5px solid var(--gold);
}
.hero h1,
.about-hero h1,
.treatment-hero h1,
.contact-hero h1,
.blog-hero h1 {
  color: var(--green-dark);
  font-weight: 700;
  text-transform: none;
}
.tag,
.mini-title {
  background: #f0e4c7;
  color: #77521e;
  border-left: 3px solid var(--gold);
  border-radius: 2px;
  letter-spacing: 0.4px;
}

.section {
  padding: 64px 0;
}
.title {
  margin-bottom: 38px;
}
.title h2 {
  color: var(--h2-section-title-color);
  font-size: var(--h2-section-title-size);
  font-weight: var(--h2-section-title-weight);
  text-transform: none;
}
.title span {
  background: var(--gold);
}
.title span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  top: -3px;
}
.treatment-heading {
  max-width: 680px;
  margin: 0 auto 34px;
  text-align: center;
}
.treatment-heading p {
  color: var(--gold);
  font-size: var(--tag-text-size);
  font-weight: 600;
  letter-spacing: .4px;
  margin: 0 0 4px;
  text-transform: uppercase;
}
.treatment-heading h2 {
  color: var(--h2-section-title-color);
  font-size: var(--h2-section-title-size);
  font-weight: var(--h2-section-title-weight);
  line-height: 1.08;
  margin: 0;
  text-transform: none;
}
.treatment-heading span {
  display: block;
  color: var(--muted);
  font-size: var(--clinic-copy-size);
  font-weight: var(--clinic-copy-weight);
  line-height: 1.6;
  margin-top: 9px;
}

.treat-card,
.service-grid a,
.review-card,
.blog-card,
.treatment-card {
  border: 1px solid #e6e6dc;
  background: #fff;
  box-shadow: 0 8px 22px rgba(18, 69, 54, 0.07);
}
.treat-card {
  min-height: 318px;
  padding: 24px 18px 22px;
  border-radius: var(--radius) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.treat-card:hover,
.service-grid a:hover,
.blog-card:hover,
.treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: none;
}
.circle-img {
  width: 128px;
  height: 128px;
  outline: 2px solid var(--green);
  box-shadow: none;
}
.circle-icon {
  background: var(--green);
  border-color: #f5e3b5;
}
.treat-card h3,
.service-grid h3 {
  color: var(--green);
  letter-spacing: 0.25px;
}
.treat-card h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 9px;
  text-transform: none;
}
.treat-card p {
  max-width: 240px;
  color: var(--body-text-color);
  font-size: 14px;
  font-weight: var(--body-text-weight);
  line-height: 1.55;
  margin: 0 auto;
}
.treatment-carousel {
  position: relative;
}
.treat-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 0 2px 4px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.treat-grid::-webkit-scrollbar { display: none; }
.treat-grid .treat-card {
  flex: 0 0 calc((100% - 60px) / 4);
  scroll-snap-align: start;
}
.treatment-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid var(--green);
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  cursor: pointer;
  transform: translateY(-50%);
}
.treatment-arrow:hover {
  background: var(--green);
  color: var(--white);
}
.treatment-prev { left: -54px; }
.treatment-next { right: -54px; }
.treatment-dots { display: none; }
@media (min-width: 701px) {
  .treatment-arrow { display: none; }
}

.promise-grid {
  border-radius: 6px;
  background: #103e31;
  box-shadow: 0 12px 26px rgba(18, 69, 54, 0.16);
}
.promise-grid h3 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0.35px;
}
.about-img img {
  border-radius: 6px;
}
.badge {
  background: var(--gold);
  border: 4px solid #fff;
  box-shadow: 0 8px 18px rgba(18, 69, 54, 0.16);
}
.stats {
  background: #edf2ed;
  border-top: 1px solid #d9e2db;
  border-bottom: 1px solid #d9e2db;
}
.service-grid a {
  display: block;
  overflow: hidden;
  border: 1px solid #e6e6dc;
  border-radius: var(--radius) !important;
  background: var(--white);
  box-shadow: none;
  text-align: center;
}
.service-grid {
  gap: 20px;
}
.service-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 2;
  object-fit: cover;
  overflow: hidden;
  border-radius: 0 !important;
}
.service-grid h3 {
  color: var(--green);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  padding: 15px 12px 17px;
  text-transform: none;
}
.service-heading {
  max-width: 680px;
  margin: 0 auto 34px;
  text-align: center;
}
.service-heading p {
  color: var(--gold);
  font-size: var(--tag-text-size);
  font-weight: 600;
  letter-spacing: .4px;
  margin: 0 0 4px;
  text-transform: uppercase;
}
.service-heading h2 {
  color: var(--h2-section-title-color);
  font-size: var(--h2-section-title-size);
  font-weight: var(--h2-section-title-weight);
  line-height: 1.05;
  margin: 0;
  text-transform: none;
}
.service-heading span {
  display: block;
  color: var(--muted);
  font-size: var(--clinic-copy-size);
  font-weight: var(--clinic-copy-weight);
  line-height: 1.6;
  margin-top: 9px;
}
.service-dots { display: none; }
.service-grid img {
  filter: saturate(0.84);
  transition:
    filter 0.25s ease,
    transform 0.25s ease;
}
.service-grid a:hover img {
  filter: saturate(1);
  transform: scale(1.03);
}
.review-card {
  border-radius: 6px;
}

/* Footer: a single readable grid shared by every page. */
.footer {
  background: #063f2f;
  color: #fff;
  padding-top: 44px;
}
.footer-grid {
  display: grid;
  grid-template-columns:
    minmax(230px, 1.55fr) minmax(110px, 0.8fr) minmax(145px, 1fr)
    minmax(165px, 1.18fr) minmax(235px, 1.35fr);
  align-items: start;
  gap: 42px;
  padding-bottom: 46px;
}
.footer .footer-logo {
  display: flex !important;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  padding: 0;
}
.footer .footer-logo > div:first-child,
.footer .footer-logo .logo-icon {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  min-width: 94px;
  overflow: hidden;
  border: 1px solid rgba(223, 192, 132, 0.55);
  border-radius: 50%;
  background: transparent;
}
.footer .footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer .footer-logo h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: 0.5px;
  margin: 0 0 7px;
}
.footer .footer-logo p {
  color: #fff;
  font-family: "Google Sans", "Google Sans Text", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.3px;
  margin: 0;
}
.footer .footer-logo span {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 4px;
}
.footer-grid > div:first-child > p {
  max-width: 310px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.75;
}

/* Clinic section: location details and map without search controls or floating surfaces. */
.location-section {
  background: #f7f5ee;
  border-top: 1px solid #e6dfcf;
  border-bottom: 1px solid #e6dfcf;
}
.location-section .location-heading {
  max-width: 560px;
  margin: 0 auto 34px;
  text-align: center;
}
.location-heading p {
  color: var(--gold);
  font-size: var(--tag-text-size);
  font-weight: var(--clinic-copy-weight);
  letter-spacing: 0.45px;
  margin: 0 0 4px;
  text-transform: uppercase;
}
.location-heading h2 {
  color: var(--h2-section-title-color);
  font-size: var(--h2-section-title-size);
  font-weight: var(--h2-section-title-weight);
  line-height: 1.05;
  margin: 0;
}
.location-heading span {
  display: block;
  color: var(--muted);
  font-size: var(--clinic-copy-size);
  font-weight: var(--clinic-copy-weight);
  line-height: 1.6;
  margin-top: 9px;
}

/* CTA band follows the Find Our Clinic visual system. */
.whatsapp {
  background: var(--green);
  color: var(--white);
  border-top: 0;
  border-bottom: 0;
  padding: 58px 0;
  border-radius: 0 !important;
}
.whatsapp .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.whatsapp .container > div { max-width: 700px; }
.whatsapp .cta-eyebrow {
  color: var(--gold-light);
  font-size: var(--tag-text-size);
  font-weight: 600;
  letter-spacing: .4px;
  margin: 0 0 6px;
  text-transform: uppercase;
}
.whatsapp h2 {
  color: var(--white) !important;
  font-size: var(--h2-section-title-size);
  font-weight: var(--h2-section-title-weight);
  line-height: 1.08;
  text-transform: none;
  margin: 0 0 10px;
}
.whatsapp p:not(.cta-eyebrow) {
  color: rgba(255,255,255,.82);
  font-size: var(--body-text-size);
  font-weight: var(--body-text-weight);
  line-height: 1.6;
  margin: 0;
}
.whatsapp .cta-button {
  flex: 0 0 auto;
  background: var(--white);
  border: 1px solid var(--white);
  color: var(--green);
  font-size: var(--button-text-size);
}
.whatsapp .cta-button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark);
}

/* Full-width article section. */
.blog-section { background: var(--cream); }
.blog-content { width: 80%; max-width: 1440px; }
.blog-heading {
  max-width: 620px;
  margin: 0 auto 34px;
  text-align: center;
}
.blog-heading p {
  color: var(--gold);
  font-size: var(--tag-text-size);
  font-weight: 600;
  letter-spacing: .4px;
  margin: 0 0 4px;
  text-transform: uppercase;
}
.blog-heading h2 {
  color: var(--h2-section-title-color);
  font-size: var(--h2-section-title-size);
  font-weight: var(--h2-section-title-weight);
  line-height: 1.05;
  margin: 0;
  text-transform: none;
}
.blog-heading span {
  display: block;
  color: var(--muted);
  font-size: var(--clinic-copy-size);
  font-weight: var(--clinic-copy-weight);
  line-height: 1.6;
  margin-top: 9px;
}
.blog-head { margin-bottom: 24px; }
.blog-head h2 {
  color: var(--h2-section-title-color);
  font-size: var(--h2-section-title-size);
  font-weight: var(--h2-section-title-weight);
  text-transform: none;
}
.blog-head a {
  border-radius: var(--radius);
  font-size: var(--button-text-size);
  padding: 9px 14px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.blog-card {
  min-width: 0;
  overflow: hidden;
  box-shadow: none;
  transition: transform .25s ease, border-color .25s ease;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: none; }
.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0 !important;
}
.blog-card h3 {
  color: var(--green);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  padding: 16px 16px 19px;
  margin: 0;
}
.blog-read-more {
  display: table;
  margin: 28px auto 0;
  background: var(--green);
  color: var(--white);
}
.blog-read-more:hover { background: var(--gold); color: var(--green-dark); }
.blog-dots { display: none; }

/* Testimonials use the same title-card hierarchy and mobile carousel behavior. */
.testimonials {
  background: var(--green);
  color: var(--white);
  padding: 64px 0 58px;
}
.testimonial-heading {
  max-width: 620px;
  margin: 0 auto 34px;
  text-align: center;
}
.testimonial-heading p {
  color: var(--gold-light);
  font-size: var(--tag-text-size);
  font-weight: 600;
  letter-spacing: .4px;
  margin: 0 0 4px;
  text-transform: uppercase;
}
.testimonial-heading h2 {
  color: var(--white) !important;
  font-size: var(--h2-section-title-size);
  font-weight: var(--h2-section-title-weight);
  line-height: 1.05;
  margin: 0;
  text-transform: none;
}
.testimonial-heading span {
  display: block;
  color: rgba(255,255,255,.78);
  font-size: var(--clinic-copy-size);
  font-weight: var(--clinic-copy-weight);
  line-height: 1.6;
  margin-top: 9px;
}
.testimonial-track {
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-track .review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
}
.testimonial-arrow {
  position: absolute;
  top: 55%;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}
.testimonial-arrow:hover { background: var(--white); color: var(--green); }
.testimonial-prev { left: 22px; }
.testimonial-next { right: 22px; }
.review-card {
  height: 270px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 0;
  border-radius: var(--radius) !important;
  background: var(--white);
  color: var(--black);
  box-shadow: none;
}
.review-card .stars {
  color: var(--gold);
  font-size: 19px;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 16px;
}
.review-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
}
.review-card strong {
  display: block;
  margin-top: auto;
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
}
.review-card span { color: var(--gold); font-size: 13px; font-weight: 400; }
.testimonial-dots { display: none; }
.slide-btn { display: none !important; }
.location-layout {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.45fr);
  gap: 28px;
  align-items: stretch;
}
.location-carousel { min-width: 0; }
.location-dots { display: none; }

@media (min-width: 701px) {
  .location-carousel {
    display: flex;
    height: 100%;
  }
  .location-carousel .location-list {
    flex: 1;
    height: auto;
  }
}
.location-list {
  height: 500px;
  max-height: none;
  overflow-y: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
}
.location-card {
  border-radius: var(--radius) !important;
}
.location-card {
  border: 1px solid #d7dfd9;
  border-left: 3px solid transparent;
  border-radius: 4px;
  box-shadow: none;
  padding: 22px;
  margin-bottom: 0;
  transform: none;
}
.location-card:hover,
.location-card.active {
  border-color: #b98b3d;
  border-left-color: var(--gold);
  box-shadow: none;
  transform: none;
}
.location-tag {
  border-radius: 3px;
  font-size: var(--tag-text-size);
  font-weight: var(--clinic-copy-weight);
  padding: 5px 8px;
}
.location-card h3,
.map-header h3 {
  font-size: var(--clinic-title-size) !important;
  font-weight: var(--clinic-title-weight) !important;
  line-height: 1.15;
  margin-bottom: 13px;
}
.location-card p {
  font-size: var(--clinic-copy-size);
  font-weight: var(--clinic-copy-weight);
  line-height: 1.6;
  margin-bottom: 9px;
}
.location-actions {
  margin-top: 18px;
}
.location-actions a {
  border-radius: 3px;
  font-size: var(--button-text-size);
  font-weight: var(--clinic-copy-weight);
  padding: 11px 8px;
}
.location-map-box {
  border: 1px solid #d7dfd9;
  border-radius: 4px;
  box-shadow: none;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}
.map-header {
  background: #103e31;
  padding: 16px 20px;
  position: relative;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
.map-header > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.map-header span { margin-bottom: 4px; }
.map-header h3 { margin: 0 !important; }
.map-header span,
.map-header a {
  font-size: var(--button-text-size);
  font-weight: var(--clinic-copy-weight);
}
.map-header a {
  border-radius: 3px;
  position: static;
  transform: none;
}

/* Shared command and tag scale. */
button,
.btn,
.book-btn,
.learn-btn,
.map-btn,
.gold-btn,
.dark-btn,
.outline-btn,
.appointment-btn,
.location-actions a,
.map-header a,
.newsletter button {
  font-size: var(--button-text-size) !important;
}
.tag,
.mini-title,
.hero-tag,
.location-tag,
.location-heading p {
  font-size: var(--tag-text-size) !important;
}
.location-map-box iframe {
  height: auto;
  min-height: 0;
  flex: 1;
}
.footer h3 {
  color: #f7e8c4;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin: 7px 0 18px;
  text-transform: uppercase;
}
.footer a,
.footer p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.55;
}
.footer-grid > div:not(:first-child) > a {
  display: block;
  width: fit-content;
  margin: 0 0 10px;
  padding: 0;
}
.footer-grid > div:not(:first-child) > a:hover {
  color: var(--gold-light);
  padding-left: 0;
}
.footer-grid > div:last-child > p {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  margin: 0 0 9px;
  overflow-wrap: anywhere;
}
.footer-grid > div:last-child i {
  color: var(--gold-light);
  line-height: 1.55;
}
.footer-social {
  gap: 11px;
  margin-top: 21px;
}
.footer-social a {
  width: 34px !important;
  height: 34px !important;
  padding: 0 !important;
  border-color: rgba(255, 255, 255, 0.4);
}
.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  width: 100%;
  max-width: 310px;
  height: 48px;
  margin-top: 20px;
}
.newsletter input {
  min-width: 0;
  padding: 0 14px;
  border: 0;
  border-radius: 4px 0 0 4px !important;
  color: var(--text);
  font-size: 13px;
}
.newsletter button {
  border: 0;
  border-left: 1px solid #e8e1d0;
  border-radius: 0 4px 4px 0;
  background: #fff;
  color: var(--green);
  cursor: pointer;
}
.newsletter button:hover {
  background: var(--gold-light);
  color: var(--green-dark);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 58px;
  margin: 0;
  padding: 16px max(10%, calc((100% - 1440px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.footer-bottom p,
.footer-bottom a {
  font-size: 12px;
  line-height: 1.5;
}
.footer-bottom a {
  display: inline;
  margin: 0;
  padding: 0;
}

@media (max-width: 1050px) {
  .footer-grid {
    grid-template-columns: 1.45fr 1fr 1.1fr;
    row-gap: 38px;
  }
}

@media (max-width: 700px) {
  .footer {
    padding-top: 42px;
  }
  .whatsapp { padding: 44px 0; }
  .whatsapp .container { align-items: flex-start; flex-direction: column; gap: 22px; }
  .whatsapp .cta-button { width: 100%; }
  .blog-content { width: 90%; }
  .service-heading { width: 90%; margin-bottom: 26px; }
  .service-heading h2 { font-size: 34px; }
  .service-grid {
    display: flex;
    width: 100vw;
    margin-left: calc((100% - 100vw) / 2);
    gap: 16px;
    overflow-x: auto;
    padding: 0 5vw 4px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 5vw;
    scrollbar-width: none;
    touch-action: pan-x;
  }
  .service-grid::-webkit-scrollbar { display: none; }
  .service-grid a {
    flex: 0 0 78vw;
    scroll-snap-align: start;
  }
  .service-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 17px;
  }
  .service-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #c6d1cb;
  }
  .service-dot.active { width: 26px; border-radius: 8px; background: var(--gold); }
  .testimonials { padding: 48px 0 42px; }
  .testimonial-heading { width: 90%; margin-bottom: 26px; }
  .testimonial-heading h2 { font-size: 34px; }
  .testimonial-track {
    display: flex;
    width: 100vw;
    margin-left: calc((100% - 100vw) / 2);
    gap: 16px;
    overflow-x: auto;
    padding: 0 5vw 4px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 5vw;
    scrollbar-width: none;
  }
  .testimonial-track::-webkit-scrollbar { display: none; }
  .testimonial-track .review-card {
    flex: 0 0 78vw;
    height: 270px;
    scroll-snap-align: start;
  }
  .testimonial-arrow { display: none; }
  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 17px;
  }
  .testimonial-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
  }
  .testimonial-dot.active { width: 26px; border-radius: 8px; background: var(--gold-light); }
  .blog-heading { margin-bottom: 26px; }
  .blog-heading h2 { font-size: 34px; }
  .blog-head { align-items: flex-start; flex-direction: column; gap: 14px; }
  .blog-head h2 { font-size: 34px; }
  .blog-head a { align-self: flex-start; }
  .blog-grid {
    display: flex;
    width: 100vw;
    margin-left: calc((100% - 100vw) / 2);
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 5vw 4px;
    scroll-padding-inline: 5vw;
  }
  .blog-grid::-webkit-scrollbar { display: none; }
  .blog-card {
    flex: 0 0 78vw;
    scroll-snap-align: start;
  }
  .blog-card img { height: 185px; }
  .blog-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 17px;
  }
  .blog-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #c6d1cb;
  }
  .blog-dot.active { width: 26px; border-radius: 8px; background: var(--gold); }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 26px;
    padding-bottom: 38px;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
  .newsletter {
    max-width: 360px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 15px 6%;
  }
  .location-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .location-carousel { display: block; height: auto; }
  .location-list {
    height: auto;
    overflow: hidden;
    border-radius: var(--radius);
    touch-action: pan-y;
  }
  .location-card {
    display: none;
    margin: 0;
  }
  .location-card.active {
    display: block;
  }
  .location-card.active.slide-in-right {
    animation: location-card-slide-right .36s ease-out both;
  }
  .location-card.active.slide-in-left {
    animation: location-card-slide-left .36s ease-out both;
  }
  .location-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 14px;
  }
  .location-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #c6d1cb;
    cursor: pointer;
  }
  .location-dot.active {
    width: 26px;
    border-radius: 8px;
    background: var(--gold);
  }
  .location-map-box {
    min-height: 0;
  }
  .location-map-box iframe {
    height: 340px;
    flex: none;
  }
  .map-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .map-header a {
    width: 100%;
    text-align: center;
    position: static;
    transform: none;
  }
}

@keyframes location-card-slide-right {
  from { transform: translateX(105%); }
  to { transform: translateX(0); }
}

@keyframes location-card-slide-left {
  from { transform: translateX(-105%); }
  to { transform: translateX(0); }
}

@media (max-width: 460px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
  .footer .footer-logo > div:first-child,
  .footer .footer-logo .logo-icon {
    width: 82px;
    height: 82px;
    min-width: 82px;
  }
  .location-heading h2 {
    font-size: 34px;
  }
  .map-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .map-header a {
    width: 100%;
    text-align: center;
  }
}

/* Content surfaces share one editable radius. Circular UI remains intentionally circular. */
main img,
.treat-card,
.service-grid a,
.review-card,
.blog-card,
.treatment-card,
.promise-grid,
.about-img,
.location-card,
.location-map-box,
.map-header,
.blog-cta,
.contact-card {
  border-radius: var(--radius) !important;
}
.service-grid img {
  border-radius: 0 !important;
}

.location-map-box {
  overflow: hidden;
}
.map-header {
  border-radius: var(--radius) var(--radius) 0 0 !important;
}
.location-map-box iframe {
  border-radius: 0 0 var(--radius) var(--radius);
}
.circle-img,
.circle-icon,
.badge,
.top-social a,
.social a,
.footer-social a,
.footer .footer-logo > div:first-child,
.footer .footer-logo .logo-icon {
  border-radius: 50% !important;
}

/* About section: let the image follow the text column on desktop. */
.about-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(28px, 4vw, 56px);
}
.about-img {
  display: flex;
  min-height: 0;
}
.about-img img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  box-shadow: none;
}
.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text > .btn {
  align-self: flex-start;
  width: auto;
}
.about-text > span {
  color: var(--gold);
  font-family: "Google Sans", Arial, sans-serif;
  font-size: var(--tag-text-size);
  font-weight: 600;
  letter-spacing: .35px;
}
.about-text h2 {
  color: var(--h2-section-title-color);
  font-family: "Playfair Display", Georgia, serif;
  font-size: var(--h2-section-title-size);
  font-weight: var(--h2-section-title-weight);
  line-height: 1.12;
  margin: 8px 0 16px;
  text-transform: none;
}
.about-text > p {
  color: var(--body-text-color);
  font-family: "Google Sans", Arial, sans-serif;
  font-size: var(--body-text-size);
  font-weight: var(--body-text-weight);
  line-height: 1.65;
  margin: 0;
}
.about-icons {
  gap: 18px;
  margin: 26px 0 24px;
  text-align: left;
}
.about-icons > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.about-icons i {
  flex: 0 0 27px;
  color: var(--green);
  font-size: 27px;
  line-height: 1.1;
}
.about-icons p {
  color: var(--text);
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  margin: 0;
}
.stats {
  padding: 18px 0;
}
.stats-grid {
  align-items: stretch;
}
.stats-grid div {
  min-height: 62px;
}
.stats-grid i {
  color: var(--green);
}
.stats-grid strong {
  color: var(--green);
  line-height: 1;
}
.stats-grid span {
  color: var(--text);
  font-family: "Google Sans", Arial, sans-serif;
  font-weight: 500;
}

/* Location cards use the same full-bleed horizontal mobile carousel as blog cards. */
@media (max-width: 700px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-img {
    order: 1;
  }
  .about-img img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .about-text {
    order: 2;
  }
  .about-text > .btn {
    align-self: center;
  }
  .treatment-heading {
    width: 90%;
    margin-bottom: 26px;
  }
  .treatment-heading h2 {
    font-size: 34px;
  }
  .treatment-carousel {
    width: 100vw;
    margin-left: calc((100% - 100vw) / 2);
  }
  .treat-grid {
    gap: 16px;
    padding: 0 5vw 4px;
    scroll-padding-inline: 5vw;
    touch-action: pan-x;
  }
  .treat-grid .treat-card {
    flex: 0 0 78vw;
  }
  .treatment-arrow {
    display: none;
  }
  .treatment-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 17px;
  }
  .treatment-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #c6d1cb;
  }
  .treatment-dot.active {
    width: 26px;
    border-radius: 8px;
    background: var(--gold);
  }
  .about-text h2 {
    font-size: 34px;
  }
  .about-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 14px;
    margin: 24px 0;
  }
  .about-icons p {
    font-size: 13px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
    row-gap: 0;
  }
  .stats-grid div {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    min-height: 94px;
    padding: 18px 10px;
    gap: 10px;
    justify-content: flex-start;
    border-right: 1px solid #cbd8cf;
    border-bottom: 1px solid #cbd8cf;
  }
  .stats-grid div:nth-child(2n) {
    border-right: 0;
  }
  .stats-grid div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .stats-grid i {
    grid-row: 1 / span 2;
    font-size: 27px;
  }
  .stats-grid strong {
    font-size: 25px;
  }
  .stats-grid span {
    font-size: 12px;
    line-height: 1.4;
  }

  .location-list {
    display: flex;
    flex-direction: row;
    width: 100vw;
    height: auto;
    margin-left: calc((100% - 100vw) / 2);
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 5vw 4px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 5vw;
    scrollbar-width: none;
    touch-action: pan-x;
  }
  .location-list::-webkit-scrollbar { display: none; }
  .location-card,
  .location-card.active {
    display: block !important;
    flex: 0 0 78vw;
    margin: 0;
    scroll-snap-align: start;
    animation: none !important;
  }
}

input,
textarea,
select {
  font-family: inherit;
  border-radius: 4px !important;
}

/* Prevent older page styles from reintroducing their original font pair. */
body,
button,
input,
textarea,
select {
  font-family: "Google Sans", "Google Sans Text", Arial, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
.brand h2,
.title h2,
.footer h3 {
  font-family: "Playfair Display", Georgia, serif !important;
}
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(182, 130, 52, 0.2);
  border-color: var(--gold) !important;
}

/* Typography enforcement for legacy page styles. Font Awesome icons are excluded. */
body *:not(i):not(.fa):not([class^="fa-"]):not([class*=" fa-"]) {
  font-family: "Google Sans", "Google Sans Text", Arial, sans-serif !important;
}

/* h1 is the main page title. Adjust the three variables above to restyle every h1. */
body h1 {
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: var(--h1-main-title-size) !important;
  font-weight: var(--h1-main-title-weight) !important;
  color: var(--h1-main-title-color) !important;
}

/* h2 is the secondary / section title. Adjust the three variables above to restyle every h2. */
body h2 {
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: var(--h2-section-title-size) !important;
  font-weight: var(--h2-section-title-weight) !important;
  color: var(--h2-section-title-color) !important;
}

/* Brand names are logo text, not section titles. */
.brand h2 {
  color: var(--green) !important;
  font-size: 28px !important;
  font-weight: 700 !important;
}
.footer .footer-logo h2 {
  color: var(--white) !important;
  font-size: 32px !important;
  font-weight: 700 !important;
}

@media (max-width: 520px) {
  .brand h2 {
    font-size: 24px !important;
  }
  .footer .footer-logo h2 {
    font-size: 29px !important;
  }
}

@media (max-width: 700px) {
  .top-strip {
    display: none;
  }
  .header {
    box-shadow: none;
    border-bottom: 1px solid #e2e8e2;
  }
  .nav-wrap {
    min-height: 72px;
  }
  .brand {
    gap: 8px;
  }
  .brand img {
    width: 56px;
  }
  .brand h2 {
    font-size: 25px !important;
  }
  .hero h1 {
    color: #fff !important;
    font-size: clamp(42px, 12vw, 60px) !important;
  }
}

/* Contact page surfaces follow the homepage theme and title hierarchy. */
.contact-hero-section {
  min-height: auto;
  padding: 64px 0;
  border-bottom: 1px solid #d9e2db;
  background: var(--cream);
}
.contact-hero-section .hero-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}
.contact-hero-section .hero-text > span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-left: 3px solid var(--gold);
  background: var(--gold-light);
  color: var(--green-dark);
  font-size: var(--tag-text-size);
  font-weight: 600;
  letter-spacing: .35px;
  text-transform: uppercase;
}
.contact-hero-section .hero-text h1 {
  color: var(--green) !important;
  font-size: var(--h1-main-title-size);
  line-height: 1.05;
  margin: 0 0 10px;
  text-transform: none;
}
.contact-hero-section .hero-text h3 {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 12px;
}
.contact-hero-section .hero-text p {
  max-width: 560px;
  color: var(--text);
  font-size: var(--body-text-size);
  font-weight: var(--body-text-weight);
  line-height: 1.65;
  margin: 0;
}
.contact-hero-section .decor {
  width: 84px;
  height: 2px;
  margin: 0 0 16px;
  background: var(--gold);
  opacity: 1;
}
.contact-hero-section .hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius) !important;
  box-shadow: none;
}
.quick-section {
  padding: 42px 0 30px;
}
.quick-grid {
  gap: 18px;
}
.quick-card,
.white-box {
  border: 1px solid #e1e8e1;
  border-radius: var(--radius) !important;
  box-shadow: none;
}
.quick-card {
  min-height: 220px;
  padding: 26px 20px;
}
.quick-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  background: var(--green);
  color: var(--gold-light);
  font-size: 23px;
}
.quick-card h3 {
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 9px;
  text-transform: none;
}
.small-line { display: none; }
.quick-card strong {
  color: var(--text);
  font-size: var(--body-text-size);
  font-weight: 500;
  line-height: 1.5;
}
.quick-card p,
.quick-card a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}
.quick-card a {
  margin-top: 8px;
  padding: 0;
  background: transparent;
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}
.main-section,
.map-why-section {
  padding: 0 0 30px;
}
.white-box {
  padding: 28px;
  background: var(--white);
}
.section-title {
  gap: 12px;
  margin-bottom: 22px;
}
.section-title h2 {
  color: var(--green) !important;
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: var(--h2-section-title-size);
  font-weight: var(--h2-section-title-weight);
  line-height: 1.1;
  text-transform: none;
}
.section-title span {
  width: 34px;
  background: var(--gold);
}
.section-title span::before { content: ""; }
.contact-heading {
  max-width: 640px;
  margin: 0 auto 24px;
  text-align: center;
}
.contact-heading p {
  color: var(--gold);
  font-size: var(--tag-text-size);
  font-weight: 600;
  letter-spacing: .4px;
  line-height: 1.3;
  margin: 0 0 4px;
  text-transform: uppercase;
}
.contact-heading h2 {
  color: var(--h2-section-title-color) !important;
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: var(--h2-section-title-size);
  font-weight: var(--h2-section-title-weight);
  line-height: 1.08;
  margin: 0;
  text-transform: none;
}
.contact-heading span {
  display: block;
  color: var(--muted);
  font-size: var(--clinic-copy-size);
  font-weight: var(--clinic-copy-weight);
  line-height: 1.6;
  margin-top: 9px;
}
.branch-row {
  grid-template-columns: 42px 1fr 18px;
  gap: 14px;
  padding: 18px 0;
  border-bottom-color: #e1e8e1;
}
.branch-number {
  width: 36px;
  height: 36px;
  background: var(--gold);
  font-size: 13px;
}
.branch-row h3 {
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 5px;
}
.branch-row p,
.coming {
  color: var(--muted);
  font-size: var(--body-text-size);
  font-weight: var(--body-text-weight);
  line-height: 1.55;
}
.branch-row > i { color: var(--gold); }
.coming { margin-top: 16px; }
.contact-form { gap: 12px; }
.input-wrap {
  height: 48px;
  border: 1px solid #d9e2db;
  border-radius: 6px;
  padding: 0 14px;
  background: var(--cream);
}
.input-wrap i { color: var(--green); }
.input-wrap input,
.input-wrap textarea {
  color: var(--text);
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 15px;
}
.textarea-wrap { height: 112px; padding-top: 14px; }
.textarea-wrap textarea { height: 88px; }
.contact-form button,
.map-btn {
  min-height: 46px;
  border-radius: 4px;
  font-size: var(--button-text-size) !important;
  font-weight: 600;
}
.contact-form button { background: var(--green); }
.contact-form button:hover { background: var(--gold); }
.map-box {
  height: 260px;
  border: 0;
  border-radius: var(--radius);
}
.map-btn {
  width: max-content;
  padding: 0 18px;
  border: 1px solid #cfdcd2;
  color: var(--green);
  background: var(--white);
  text-transform: none;
}
.why-grid { gap: 12px; }
.why-grid > div {
  padding: 15px;
  border: 1px solid #e1e8e1;
  border-radius: var(--radius);
  background: var(--cream);
}
.why-grid i {
  width: 48px;
  height: 48px;
  background: var(--green);
  color: var(--gold-light);
  font-size: 21px;
}
.why-grid h3 {
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
}
.why-grid p { color: var(--muted); font-size: 14px; line-height: 1.5; }
.appointment-section { padding: 14px 0 52px; background: var(--cream); }
.appointment-box {
  min-height: auto;
  padding: 48px;
  border-radius: var(--radius) !important;
  background: var(--green);
  box-shadow: none;
}
.appointment-content h2 {
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: var(--h2-section-title-size);
  font-weight: var(--h2-section-title-weight);
  line-height: 1.1;
  text-transform: none;
}
.appointment-content p { color: rgba(255,255,255,.82); font-weight: 400; }
.appointment-btn { border-radius: 4px; font-size: var(--button-text-size); }
.call-btn { background: var(--gold); color: var(--green-dark); }
.whatsapp-btn { border-color: rgba(255,255,255,.7); }

/* Keep the shared utility strip and header identical across every PHP page. */
.site-header {
  position: relative;
  z-index: 1000;
}
.top-strip {
  height: 40px;
  color: var(--white) !important;
  font-family: "Google Sans", Arial, sans-serif !important;
  font-size: 12px !important;
  line-height: 1;
}
.top-strip * {
  font-family: "Google Sans", Arial, sans-serif !important;
}
.top-strip .top-inner {
  height: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-strip .top-info {
  display: flex;
  align-items: center;
  gap: 40px;
  font-weight: 600;
}
.top-strip .top-info span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.top-strip .top-info i {
  display: inline-block;
  margin: 0 8px 0 0;
  color: var(--gold-light);
  font-size: 12px;
  line-height: 1;
}
.top-strip .top-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header {
  background: var(--white);
}
.header .nav-wrap {
  height: 82px;
}

@media (max-width: 700px) {
  .contact-hero-section { padding: 44px 0 34px; }
  .contact-hero-section .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-hero-section .hero-text h1 { font-size: 48px; }
  .contact-hero-section .hero-text h3 { font-size: 20px; }
  .contact-hero-section .hero-image { order: 2; }
  .quick-section { padding: 30px 0 24px; }
  .quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .quick-card { min-height: 205px; padding: 22px 12px; }
  .quick-card strong { font-size: 14px; }
  .white-box { padding: 22px 18px; }
  .main-grid,
  .map-why-grid { grid-template-columns: 1fr; gap: 18px; }
  .contact-form { grid-template-columns: 1fr; }
  .textarea-wrap,
  .contact-form button { grid-column: auto; }
  .appointment-box { padding: 34px 22px; }
  .appointment-content h2 { font-size: 34px; }
  .appointment-buttons { flex-direction: column; align-items: stretch; }
  .appointment-btn { width: 100%; }
}

@media (max-width: 820px) {
  .top-strip { display: none; }
}

/* h3-h6 are supporting titles, using the same title family but their local size. */
body h3,
body h4,
body h5,
body h6 {
  font-family: "Playfair Display", Georgia, serif !important;
}

@media (max-width: 820px) {
  .container {
    width: 88%;
  }
  .nav-wrap {
    height: 72px;
  }
  .brand img {
    width: 54px;
  }
  .brand h2 {
    font-size: 24px;
  }
  .nav {
    top: 72px;
  }
  .section {
    padding: 48px 0;
  }
  .hero,
  .hero-content {
    min-height: auto;
  }
  .hero-content {
    padding: 68px 0 42px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .treat-grid {
    gap: 18px;
  }
  .treat-card {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .container {
    width: 90%;
  }
  .top-inner {
    align-items: center !important;
    text-align: center;
  }
  .top-info {
    align-items: center !important;
  }
  .brand p,
  .brand span {
    display: none;
  }
  .title {
    gap: 10px;
  }
  .title span {
    width: 24px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero-features {
    grid-template-columns: repeat(2, 1fr);
  }
}
