:root {
  --ink: #13201c;
  --muted: #63716c;
  --line: #dde7e2;
  --cream: #fbf7ef;
  --sage: #e7f1eb;
  --sage-dark: #527164;
  --gold: #c7954a;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(30, 45, 40, 0.12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --page-max: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

input,
select {
  color-scheme: light;
}

.site-header {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(199, 149, 74, 0.2), transparent 34rem),
    linear-gradient(135deg, #fdfaf4 0%, #edf6f0 100%);
}

.page-header {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(199, 149, 74, 0.16), transparent 28rem),
    linear-gradient(135deg, #fdfaf4 0%, #edf6f0 100%);
}

.site-header::after {
  position: absolute;
  right: -9rem;
  bottom: -12rem;
  width: 28rem;
  height: 28rem;
  content: "";
  border: 1px solid rgba(82, 113, 100, 0.18);
  border-radius: 999px;
}

.section {
  width: min(100%, var(--page-max));
  max-width: var(--page-max);
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  width: min(100%, var(--page-max));
  max-width: var(--page-max);
  margin-right: auto;
  margin-left: auto;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.32rem;
  width: 2.75rem;
  height: 2.75rem;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(30, 45, 40, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 2.75rem;
  min-width: 0;
  margin-left: -0.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand>span {
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  line-height: 1.25;
  white-space: nowrap;
}

.brand-mark {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.8vw, 1.35rem);
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a.active {
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.nav-cta {
  padding: 0.75rem 1.1rem;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(30, 45, 40, 0.08);
  font-size: 0.9rem;
  white-space: nowrap;
}

.button {
  padding: 0.9rem 1.35rem;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(19, 32, 28, 0.18);
}

.button-primary:hover {
  background: #20342e;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--sage-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.28em;
}

.full-width {
  width: 100%;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 2.5rem;
  align-items: start;
  padding-top: 5.5rem;
  padding-bottom: 6rem;
}

.hero-content,
.hero-aside {
  min-width: 0;
}

.hero-aside {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.hero-visual {
  grid-column: 1 / -1;
  overflow: hidden;
  border: 1px solid rgba(221, 231, 226, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-visual img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(221, 231, 226, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  min-height: min(420px, 55vh);
  background: linear-gradient(160deg,
      rgba(255, 255, 255, 0.55),
      rgba(221, 231, 226, 0.75));
}

.hero-media img {
  display: block;
  width: 100%;
  max-height: min(560px, 70vh);
  object-fit: cover;
}

.hero-aside .hero-media img {
  max-height: min(280px, 40vh);
}

.hero-media:has(img) {
  min-height: 0;
  background: none;
}

.page-hero {
  padding-top: 5rem;
  padding-bottom: 5.5rem;
}

.page-hero h1 {
  max-width: none;
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.page-hero p:not(.eyebrow) {
  max-width: min(100%, 920px);
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

h1 {
  max-width: none;
  margin-bottom: 1.4rem;
  font-size: clamp(3.2rem, 8vw, 6.75rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.hero-copy {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.hero-actions {
  margin-top: 2rem;
}

.trust-row {
  margin-top: 1.6rem;
  color: var(--sage-dark);
  font-size: 0.95rem;
  font-weight: 800;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.trust-row span::before {
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  border-radius: 50%;
  background: var(--gold);
}

.service-card,
.product-grid article,
.testimonial-grid figure,
.contact-panel,
.why-card {
  border: 1px solid rgba(221, 231, 226, 0.9);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.service-card p,
.product-grid p,
.testimonial-grid blockquote,
.contact-panel p,
.split-copy {
  color: var(--muted);
}

.card-topline {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--sage);
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
  box-shadow: 0 18px 50px rgba(30, 45, 40, 0.09);
}

.stats div {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
  padding: 1.35rem;
  background: var(--white);
}

.stats strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.85rem, 3vw, 2.25rem);
  line-height: 1;
  white-space: nowrap;
}

.stats span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 4rem;
  padding-top: 7rem;
  padding-bottom: 4.5rem;
}

.split-copy {
  font-size: 1.05rem;
}

.narrative-copy {
  max-width: min(100%, 980px);
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: min(100%, 1080px);
  margin-bottom: 2rem;
}

.page-section {
  padding-top: 5rem;
}

.compact-section {
  padding-top: 2.5rem;
}

.compact-section .why-card {
  margin-top: 0;
}

.service-grid,
.product-grid,
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.problem-grid,
.journey-grid {
  display: grid;
  gap: 1rem;
}

.problem-grid {
  grid-template-columns: repeat(4, 1fr);
}

.problem-grid article,
.journey-grid article {
  border: 1px solid rgba(221, 231, 226, 0.9);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 38px rgba(30, 45, 40, 0.07);
}

.problem-grid article {
  min-height: 220px;
  padding: 1.35rem;
  border-radius: var(--radius-md);
}

.problem-grid p,
.journey-grid p,
.impact-copy,
.home-cta p {
  color: var(--muted);
}

.impact-card,
.home-cta {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 2rem;
  margin-top: 0;
  padding: 2rem;
  border: 1px solid rgba(221, 231, 226, 0.9);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(199, 149, 74, 0.16), transparent 22rem),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.impact-card h2,
.home-cta h2 {
  margin-bottom: 0;
}

.impact-copy {
  font-size: 1.05rem;
}

.journey-grid {
  grid-template-columns: repeat(4, 1fr);
}

.journey-grid article {
  padding: 1.35rem;
  border-radius: var(--radius-md);
}

.journey-grid span {
  display: inline-flex;
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.home-cta {
  align-items: center;
}

.home-cta h2 {
  max-width: none;
}

/* Body copy under the headline ("Why choose Nandi") */
.home-cta>div:first-child>h2+p {
  margin-top: 1.25rem;
  padding-top: 0.5rem;
}

.home-benefits {
  margin-top: 0;
}

.home-cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-start;
}

.home-cta-side {
  display: grid;
  gap: 1.2rem;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  padding: 1.35rem;
  border-radius: var(--radius-md);
  box-shadow: none;
}

.service-card .icon {
  display: inline-flex;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.hearing-aids {
  padding-top: 6rem;
  padding-bottom: 0;
}

.product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-grid article {
  display: grid;
  overflow: hidden;
  min-height: auto;
  padding: 0;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
}

.product-image {
  display: grid;
  min-height: 220px;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(199, 149, 74, 0.16), transparent 12rem),
    linear-gradient(180deg, var(--sage), rgba(255, 255, 255, 0.95));
}

.product-image img {
  width: 100%;
  max-height: 190px;
  object-fit: contain;
}

.product-copy {
  padding: 1.35rem 1.5rem 1.5rem;
}

.product-grid p {
  color: var(--muted);
}

.brands-section {
  padding-top: 5rem;
}

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: 2.4rem;
  border: 1px solid rgba(221, 231, 226, 0.9);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.brand-strip img {
  width: auto;
  max-width: 230px;
  max-height: 86px;
  object-fit: contain;
  filter: grayscale(0.15);
  opacity: 0.92;
}

.auto-carousel {
  overflow: hidden;
  border: 1px solid rgba(221, 231, 226, 0.9);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.auto-carousel-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  padding: 1rem;
  animation: carousel-scroll 42s linear infinite;
}

.auto-carousel:hover .auto-carousel-track {
  animation-play-state: paused;
}

.auto-carousel img {
  width: min(72vw, 420px);
  height: 280px;
  flex: 0 0 auto;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.product-carousel .auto-carousel-track {
  animation-duration: 56s;
}

.product-carousel img {
  padding: 1rem;
  background:
    radial-gradient(circle at top right, rgba(199, 149, 74, 0.12), transparent 12rem),
    linear-gradient(180deg, var(--sage), rgba(255, 255, 255, 0.95));
  object-fit: contain;
}

@keyframes carousel-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .auto-carousel-track {
    animation: none;
  }
}

.feature-image {
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid rgba(221, 231, 226, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.feature-image img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

.contact-photo {
  overflow: hidden;
  margin-top: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.contact-photo img {
  display: block;
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  background: var(--white);
}

.why-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 6rem 0 0;
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.why-list span {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--sage);
  color: var(--sage-dark);
  font-weight: 800;
}

#testimonials {
  padding-top: 6rem;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-grid figure {
  margin: 0;
  padding: 1.35rem;
  border-radius: var(--radius-md);
  box-shadow: none;
}

.testimonial-grid blockquote {
  margin: 0 0 1.2rem;
}

.testimonial-grid figcaption {
  color: var(--ink);
  font-weight: 800;
}

.contact {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: start;
  column-gap: 2rem;
  row-gap: 1.15rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(199, 149, 74, 0.17), transparent 20rem),
    rgba(255, 255, 255, 0.82);
}

.contact-panel__lead {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  min-width: 0;
}

.contact-panel > .clinic-info {
  grid-column: 2;
  grid-row: 1;
  margin-top: 0;
}

.contact-panel__cta-stack {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.contact-panel > .contact-photo {
  grid-column: 2;
  grid-row: 2;
  margin-top: 0;
}

.contact-panel__cta-stack .contact-call-cta {
  justify-items: stretch;
  text-align: left;
}

.contact-panel__cta-stack .contact-call-cta__hint {
  max-width: none;
}

.contact-panel__cta-stack .contact-call-cta__btn {
  max-width: none;
}

.contact-panel__cta-stack .contact-details {
  margin-top: 0;
}

.contact-panel__cta-stack .icon-links {
  justify-content: center;
}

.contact-details {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-weight: 700;
}

.contact-details a:hover {
  color: var(--ink);
}

.icon-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.icon-links a {
  display: inline-grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--sage-dark);
  box-shadow: 0 10px 28px rgba(30, 45, 40, 0.08);
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.icon-links a:hover {
  border-color: rgba(82, 113, 100, 0.35);
  color: var(--ink);
  transform: translateY(-2px);
}

.icon-links svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.clinic-info {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.clinic-info div {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.68);
}

.clinic-info span {
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clinic-info strong {
  color: var(--ink);
}

.contact-call-cta {
  display: grid;
  gap: 1rem;
  justify-items: center;
  width: 100%;
  margin-top: 0;
  padding: 1.75rem 1.35rem;
  border-radius: var(--radius-md);
  text-align: center;
  background: var(--white);
}

.contact-call-cta__hint {
  margin: 0;
  max-width: 22rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.contact-call-cta__btn {
  width: 100%;
  max-width: 20rem;
  min-height: 3.25rem;
  border-radius: 999px;
}

.photo-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.photo-card {
  display: grid;
  gap: 0.7rem;
  margin: 0;
}

.photo-card.large {
  grid-row: span 2;
}

.photo-img {
  display: block;
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  border: 1px solid rgba(221, 231, 226, 0.9);
  border-radius: var(--radius-lg);
}

.photo-card.large .photo-img {
  min-height: 548px;
}

.photo-gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.photo-placeholder,
.team-photo {
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 1px solid rgba(221, 231, 226, 0.9);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(19, 32, 28, 0.68), rgba(82, 113, 100, 0.46)),
    radial-gradient(circle at top right, rgba(199, 149, 74, 0.42), transparent 13rem);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  text-align: center;
}

.photo-card.large .photo-placeholder {
  min-height: 548px;
}

.photo-card figcaption {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.photo-link {
  color: var(--sage-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.audiologist-profile {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  padding: 1.5rem;
  border: 1px solid rgba(221, 231, 226, 0.9);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.audiologist-profile-media {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.audiologist-profile-media img {
  display: block;
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.audiologist-profile-copy h2 {
  margin-bottom: 0.35rem;
}

.audiologist-title {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 800;
}

.audiologist-profile-copy>p:not(.eyebrow):not(.audiologist-title) {
  color: var(--muted);
}

.audiologist-highlights {
  display: grid;
  gap: 0.55rem;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.audiologist-highlights li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink);
  font-weight: 600;
}

.audiologist-highlights li::before {
  position: absolute;
  left: 0;
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}

.audiologist-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 1.35rem 0 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
}

.audiologist-stats div {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
  padding: 1rem;
  background: var(--white);
}

.audiologist-stats strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1;
  white-space: nowrap;
}

.audiologist-stats span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.audiologist-meta {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.audiologist-meta div {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--sage);
}

.audiologist-meta span {
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audiologist-meta strong {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

.audiologist-meta a {
  color: var(--ink);
}

.audiologist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

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

.team-card {
  display: grid;
  gap: 1.2rem;
  padding: 1.2rem;
  border: 1px solid rgba(221, 231, 226, 0.9);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.team-photo {
  min-height: 230px;
  border-radius: var(--radius-md);
}

.team-card p {
  color: var(--muted);
}

.team-card .role {
  margin-bottom: 0.4rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(221, 231, 226, 0.9);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, var(--page-max));
  max-width: var(--page-max);
  margin-right: auto;
  margin-left: auto;
  padding: 2rem var(--gutter);
  border-top: 0;
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav {
    align-items: center;
    flex-wrap: wrap;
  }

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

  .nav-links {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 0.8rem 0.95rem;
    border-radius: var(--radius-sm);
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: var(--sage);
  }

  .hero,
  .split,
  .why-card,
  .contact-panel,
  .photo-gallery,
  .impact-card,
  .home-cta,
  .audiologist-profile {
    grid-template-columns: 1fr;
  }

  .contact-panel__lead,
  .contact-panel > .clinic-info,
  .contact-panel__cta-stack,
  .contact-panel > .contact-photo {
    grid-column: 1;
    grid-row: auto;
  }

  .hero {
    gap: 2rem;
    padding-top: 4rem;
  }

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

  .service-grid,
  .product-grid,
  .testimonial-grid,
  .problem-grid,
  .journey-grid,
  .team-grid,
  .audiologist-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-card.large .photo-placeholder,
  .photo-card.large .photo-img {
    min-height: 320px;
  }

  .photo-gallery-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 3.2rem;
    padding-bottom: 5rem;
  }

  .page-hero {
    padding-top: 3.2rem;
    padding-bottom: 4rem;
  }

  h1 {
    font-size: clamp(2.8rem, 17vw, 4.2rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .stats,
  .service-grid,
  .product-grid,
  .testimonial-grid,
  .problem-grid,
  .journey-grid,
  .why-list,
  .team-grid,
  .audiologist-stats {
    grid-template-columns: 1fr;
  }

  .split,
  .hearing-aids,
  #testimonials,
  .contact {
    padding-top: 4rem;
  }

  .stats {
    margin-top: 1rem;
  }

  .why-card,
  .contact-panel,
  .impact-card,
  .home-cta,
  .cta-band {
    padding: 1.25rem;
    border-radius: 24px;
  }

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

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}