:root {
  --pink: #e83e8c;
  --pink-soft: #fce4ef;
  --pink-deep: #d81b60;
  --navy: #0b1f3a;
  --navy-soft: #1a3358;
  --text: #4a5568;
  --muted: #7a8699;
  --line: #e8ecf1;
  --white: #ffffff;
  --bg: #fafbfd;
  --shadow: 0 18px 50px rgba(11, 31, 58, 0.08);
  --radius: 14px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.15;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.45rem;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(11, 31, 58, 0.2);
}

.btn-primary:hover {
  background: var(--navy-soft);
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.text-link {
  color: var(--pink);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.text-link:hover {
  color: var(--pink-deep);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(11, 31, 58, 0.06);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

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

.brand-name {
  color: var(--pink);
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-doctor {
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 0.2rem 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width 0.25s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--pink);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin-inline: auto;
  transition: 0.25s ease;
}

/* Hero */
.hero {
  position: relative;
  padding: 3.5rem 0 5.5rem;
  background:
    radial-gradient(ellipse 55% 70% at 12% 40%, rgba(232, 62, 140, 0.08), transparent 60%),
    linear-gradient(180deg, #fff8fb 0%, #ffffff 55%, #ffffff 100%);
  overflow: hidden;
}

.hero-leaf {
  position: absolute;
  left: -80px;
  top: 20%;
  width: 420px;
  height: 420px;
  background: url("../images/logo.png") center / contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
  animation: floatLeaf 8s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  margin-bottom: 1.1rem;
}

.hero-lead {
  max-width: 34rem;
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
}

.call-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.call-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(232, 62, 140, 0.35);
}

.call-link small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.call-link strong {
  color: var(--navy);
  font-size: 1rem;
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  border-radius: 28px 28px 28px 80px;
  overflow: visible;
}

.hero-image {
  width: 100%;
  height: min(560px, 70vh);
  object-fit: cover;
  border-radius: 28px 28px 28px 80px;
  box-shadow: var(--shadow);
  animation: fadeUp 0.9s ease both;
}

.patients-card {
  position: absolute;
  left: -28px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--white);
  padding: 1rem 1.2rem;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(11, 31, 58, 0.12);
  max-width: 250px;
  animation: fadeUp 1.1s ease 0.2s both;
}

.patients-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--pink-soft);
  color: var(--pink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.patients-card strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.2;
}

.patients-card p {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* Appointment */
.appointment {
  margin-top: -3rem;
  position: relative;
  z-index: 2;
  padding-bottom: 1rem;
}

.appointment-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.8rem 1.8rem 1.5rem;
  border: 1px solid rgba(232, 62, 140, 0.08);
}

.appointment-card h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-bottom: 1.25rem;
}

.appointment-card h2 span {
  color: var(--pink);
}

.appointment-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0.85rem;
  align-items: stretch;
}

.field {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #f7f8fb;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 0.95rem;
  min-height: 52px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field:focus-within {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232, 62, 140, 0.12);
}

.field i {
  color: var(--pink);
  font-size: 0.95rem;
}

.field input,
.field select {
  width: 100%;
  border: 0;
  background: transparent;
  outline: none;
  font: inherit;
  color: var(--navy);
  padding: 0.85rem 0;
}

.field select {
  cursor: pointer;
}

.appointment-form .btn {
  white-space: nowrap;
  min-height: 52px;
}

/* About */
.about {
  padding: 6rem 0 4rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
}

.about-photos .photo {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(11, 31, 58, 0.1);
  transition: transform 0.4s ease;
}

.about-photos .photo:hover {
  transform: translateY(-6px) scale(1.02);
}

.photo-1 {
  transform: rotate(-3deg);
  border-radius: 18px 40px 18px 18px;
}

.photo-2 {
  transform: rotate(3deg);
  margin-top: 1.5rem;
  border-radius: 40px 18px 18px 18px;
}

.photo-3 {
  transform: rotate(2deg);
  margin-top: -0.5rem;
  border-radius: 18px 18px 40px 18px;
}

.photo-4 {
  transform: rotate(-2deg);
  border-radius: 18px 18px 18px 40px;
}

.about-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.about-content > p {
  margin-bottom: 1.6rem;
  max-width: 34rem;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* Services */
.services {
  padding: 3rem 0 6rem;
  background:
    linear-gradient(180deg, transparent, rgba(252, 228, 239, 0.35) 40%, transparent);
}

.services-header {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.services-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.7rem);
}

.services-intro p {
  margin-bottom: 0.8rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.8rem 1.4rem 1.4rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(232, 62, 140, 0.25);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}

.service-card p {
  font-size: 0.9rem;
  flex: 1;
}

.service-arrow {
  width: 36px;
  height: 36px;
  margin: 1.2rem auto 0;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink);
  display: grid;
  place-items: center;
  transition: background 0.25s ease, color 0.25s ease;
}

.service-card:hover .service-arrow {
  background: var(--pink);
  color: var(--white);
}

/* Footer */
.site-footer {
  background: #fff5f9;
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1.15fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand .brand {
  margin-bottom: 1rem;
}

.footer-brand > p {
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
  max-width: 16rem;
}

.socials {
  display: flex;
  gap: 0.6rem;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(232, 62, 140, 0.35);
  color: var(--pink);
  display: grid;
  place-items: center;
  transition: 0.25s ease;
}

.socials a:hover {
  background: var(--pink);
  color: var(--white);
}

.footer-col h4 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.footer-col ul li {
  margin-bottom: 0.65rem;
}

.footer-col a {
  font-size: 0.92rem;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.footer-col a i {
  color: var(--pink);
  font-size: 0.7rem;
  margin-top: 0.35rem;
}

.footer-col a:hover {
  color: var(--pink);
}

.contact-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
}

.contact-list i {
  color: var(--pink);
  margin-top: 0.25rem;
}

.hours {
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
}

.footer-col .btn {
  margin-top: 1rem;
  padding: 0.75rem 1.1rem;
  font-size: 0.86rem;
}

.footer-bottom {
  border-top: 1px solid rgba(232, 62, 140, 0.15);
  padding: 1.1rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: var(--muted);
}

.footer-bottom a:hover {
  color: var(--pink);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatLeaf {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(4deg);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-layout,
  .services-header {
    grid-template-columns: 1fr;
  }

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

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

  .appointment-form {
    grid-template-columns: 1fr 1fr;
  }

  .patients-card {
    left: 16px;
  }

  .hero-image {
    height: 420px;
  }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: 84px 0 auto 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.4rem;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1180px, calc(100% - 1.5rem));
  }

  .hero {
    padding: 2rem 0 4.5rem;
  }

  .appointment-form,
  .services-grid,
  .footer-grid,
  .about-photos {
    grid-template-columns: 1fr;
  }

  .about-photos .photo {
    height: 180px;
    transform: none !important;
    margin: 0 !important;
  }

  .patients-card {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 1rem;
    max-width: none;
  }

  .hero-image {
    height: 320px;
    border-radius: 20px;
  }

  .hero-image-wrap {
    border-radius: 20px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .contact-grid,
  .doctor-card,
  .page-cta-inner,
  .about-page-grid {
    grid-template-columns: 1fr;
  }

  .treatments-grid,
  .feature-grid,
  .contact-info-cards,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .appointment-form.stacked {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }
}

/* Inner pages */
.page-hero {
  padding: 4rem 0 3rem;
  background:
    radial-gradient(ellipse 50% 80% at 85% 20%, rgba(232, 62, 140, 0.1), transparent 55%),
    linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 0.85rem;
}

.page-lead {
  max-width: 40rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.page-section {
  padding: 4rem 0;
}

.page-section-alt {
  background: linear-gradient(180deg, rgba(252, 228, 239, 0.35), transparent);
}

.section-intro {
  margin-bottom: 2rem;
}

.section-intro.center {
  text-align: center;
}

.section-intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.6rem;
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.content-block h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.content-block p {
  margin-bottom: 1rem;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.stat-item {
  min-width: 110px;
}

.stat-item strong {
  display: block;
  color: var(--pink);
  font-size: 1.6rem;
  font-family: var(--font-display);
  line-height: 1.1;
}

.stat-item span {
  font-size: 0.85rem;
  color: var(--muted);
}

.doctor-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.doctor-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.doctor-info {
  padding: 2rem 2rem 2rem 0.5rem;
}

.doctor-role {
  color: var(--pink);
  font-weight: 600;
  margin: 0.35rem 0 1rem;
}

.check-list {
  margin: 1.2rem 0 1.5rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  color: var(--navy);
}

.check-list i {
  color: var(--pink);
  margin-top: 0.25rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin: 0.9rem 0 0.55rem;
}

.services-detail-list {
  display: grid;
  gap: 1.25rem;
}

.service-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.6rem;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-detail:hover {
  box-shadow: var(--shadow);
  border-color: rgba(232, 62, 140, 0.25);
}

.service-detail-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

.service-detail h2 {
  font-size: 1.55rem;
  margin-bottom: 0.55rem;
}

.service-detail p {
  margin-bottom: 0.85rem;
}

.service-detail .text-link {
  margin-top: 0.4rem;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.treatment-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.treatment-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.treatment-body {
  padding: 1.25rem;
}

.treatment-body h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.mini-list {
  margin-top: 0.85rem;
}

.mini-list li {
  position: relative;
  padding-left: 0.9rem;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
}

.process-grid {
  display: grid;
  gap: 2rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-step {
  background: var(--white);
  border-radius: 14px;
  padding: 1.4rem 1.1rem;
  border: 1px solid var(--line);
}

.process-step span {
  display: inline-block;
  color: var(--pink);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-step h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.page-cta {
  padding: 1rem 0 4.5rem;
}

.page-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  padding: 2rem 2.2rem;
}

.page-cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 0.4rem;
}

.page-cta-inner .eyebrow {
  color: #ff9ec8;
}

.page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-cta .btn-primary {
  background: var(--pink);
  box-shadow: none;
}

.page-cta .btn-primary:hover {
  background: var(--pink-deep);
}

.page-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: transparent;
}

.page-cta .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.3rem;
}

.info-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin: 0.85rem 0 0.4rem;
}

.info-card a:hover {
  color: var(--pink);
}

.contact-form-card {
  padding: 1.8rem;
}

.form-note {
  text-align: center;
  color: var(--muted);
  margin: -0.5rem 0 1.1rem;
  font-size: 0.92rem;
}

.appointment-form.stacked {
  grid-template-columns: 1fr 1fr;
}

.appointment-form.stacked .field-full,
.appointment-form.stacked .btn {
  grid-column: 1 / -1;
}

.field textarea {
  width: 100%;
  border: 0;
  background: transparent;
  outline: none;
  font: inherit;
  color: var(--navy);
  resize: vertical;
  padding: 0.85rem 0;
}

.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  min-height: 360px;
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin: 1.6rem 0 0.55rem;
}

.legal-content p {
  margin-bottom: 0.75rem;
}

@media (max-width: 1024px) {
  .feature-grid,
  .treatments-grid,
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .about-page-grid,
  .doctor-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .doctor-info {
    padding: 0 1.4rem 1.6rem;
  }

  .doctor-card img {
    min-height: 260px;
  }

  .page-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
