/* ================================================================
   THE VILLAGE VET+ — PRODUCTION HOMEPAGE STYLESHEET
   thevillagevet.com

   Fresh production reset: shared brand tokens, page-by-page nav,
   homepage/about sections, shared footer, and responsive behavior.
================================================================ */

/* ----------------------------------------------------------------
   0. FONT FACES
   Editorial New: headlines.
   Inter: sub-headlines, labels, body copy.
---------------------------------------------------------------- */
@font-face {
  font-family: 'PPEditorialNew';
  src:
    url('../fonts/editorial-new/PPEditorialNew-Regular.woff2') format('woff2'),
    url('../fonts/editorial-new/PPEditorialNew-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-VariableFont_opsz,wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ----------------------------------------------------------------
   1. CSS VARIABLES
   Single source of truth for all design tokens.
   Change a value here and it updates everywhere.
---------------------------------------------------------------- */
:root {
  /* Brand Colours */
  --tvv-blue:       #294362;
  --tvv-blue-dark:  #1d3250;
  --tvv-blue-soft:  #eef6ff;
  --white:          #FFFFFF;
  --electric:       #2680FF;
  --sky:            #D5E7FF;
  --red:            #CF4F3E;
  --green:          #139D66;
  --pink:           #FFB0DF;
  --pale-green:     #D5E8D6;
  --black:          #000000;
  --puddle:         #BFC7D0;
  --puddle-dark:    #8a96a3;
  --ink-muted:      #5a6a7a;
  --cream:          #fbfaf7;

  /* Typography
     Editorial New    → var(--font-headline)
     Inter            → var(--font-body), replacing Neue Haas Unica
  */
  --font-headline:  'PPEditorialNew', Georgia, serif;
  --font-body:      'Inter', Helvetica, Arial, sans-serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   6rem;
  --space-2xl:  9rem;

  /* Layout */
  --container-max:  1200px;
  --container-pad:  2rem;
  --nav-height:     72px;
  --radius:         4px;
  --radius-lg:      10px;
  --radius-pill:    999px;

  /* Transitions */
  --ease:  200ms ease;
  --ease-slow: 500ms ease;
}

/* ----------------------------------------------------------------
   2. RESET & BASE
---------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--tvv-blue);
  background-color: var(--white);
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

:focus-visible {
  outline: 3px solid var(--electric);
  outline-offset: 4px;
}

::selection {
  background-color: var(--sky);
  color: var(--tvv-blue);
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

blockquote {
  quotes: none;
}

/* ----------------------------------------------------------------
   3. TYPOGRAPHY

   Headline:      Editorial New Regular
   Sub-headline:  Inter Bold
   Body:          Inter Regular
---------------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--font-headline);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

/* ----------------------------------------------------------------
   4. LAYOUT UTILITIES
---------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--space-xl) 0;
}

/* ----------------------------------------------------------------
   5. NAVIGATION
   Fixed shell. Links are added only as pages exist in production.
---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(41, 67, 98, 0.08);
  backdrop-filter: blur(16px);
  transition: box-shadow var(--ease), background-color var(--ease), border-color var(--ease);
}

.nav--scrolled {
  box-shadow: 0 10px 32px rgba(41, 67, 98, 0.1);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: var(--space-md);
}

.nav__logo {
  flex-shrink: 0;
}

.nav__logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(23%) sepia(19%) saturate(1266%) hue-rotate(173deg) brightness(91%) contrast(88%);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-left: auto;
}

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--tvv-blue);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
}

.nav__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.65rem;
  left: 0;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--ease);
}

.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav__actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-pill);
  background-color: var(--green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color var(--ease), transform var(--ease);
}

.nav__cta:hover,
.nav__cta[aria-current="page"] {
  background-color: #0f8758;
}

.nav__cta:hover {
  transform: translateY(-1px);
}

/* ----------------------------------------------------------------
   6. ANIMATIONS
---------------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

/* ----------------------------------------------------------------
   7. HOME PAGE
   Scoped to the root homepage only.
---------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-page {
  background-color: var(--white);
}

.home-page #main-content {
  padding-top: var(--nav-height);
}

.home-container {
  width: min(100% - 7rem, 1240px);
  margin: 0 auto;
}

.home-page .nav {
  background-color: var(--white);
  box-shadow: none;
}

.home-page .nav--scrolled {
  box-shadow: 0 2px 20px rgba(41, 67, 98, 0.12);
}

.home-page .nav__logo-img {
  filter: brightness(0) saturate(100%) invert(23%) sepia(19%) saturate(1266%) hue-rotate(173deg) brightness(91%) contrast(88%);
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.85rem 1.35rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: background-color var(--ease), color var(--ease), transform var(--ease);
}

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

.home-btn--dark {
  color: var(--white);
  background-color: var(--tvv-blue);
  border-color: var(--tvv-blue);
}

.home-btn--dark:hover {
  background-color: var(--tvv-blue-dark);
  border-color: var(--tvv-blue-dark);
}

.home-btn--light {
  color: var(--tvv-blue);
  background-color: var(--white);
  border-color: rgba(41, 67, 98, 0.18);
}

.home-btn--light:hover {
  background-color: var(--sky);
}

.home-btn--large {
  min-height: 64px;
  padding: 1.25rem 2.6rem;
  font-size: 1rem;
}

.home-section-heading {
  text-align: center;
  margin: 0 auto 4.5rem;
}

.home-section-heading h2 {
  color: var(--tvv-blue);
  font-size: clamp(2.9rem, 5vw, 4.55rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.home-section-heading p {
  margin-top: 0.9rem;
  color: var(--tvv-blue);
  font-size: 1rem;
  line-height: 1.4;
}

.home-hero {
  --home-hero-height: clamp(560px, 56vw, 690px);
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: var(--home-hero-height);
  background-color: #e9f4fb;
  isolation: isolate;
}

.home-hero::after {
  content: none;
}

.home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
}

.home-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 108%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  align-items: stretch;
  justify-content: center;
  text-align: left;
}

.home-hero__copy {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: var(--home-hero-height);
  margin: 0 auto;
  padding: 0;
}

.home-hero__title {
  position: absolute;
  top: 36%;
  left: 50%;
  display: grid;
  grid-template-columns: max-content clamp(8.75rem, 12vw, 11.25rem) max-content;
  justify-content: center;
  gap: 0;
  align-items: center;
  width: min(calc(100% - 4rem), 1100px);
  margin: 0;
  color: var(--tvv-blue);
  font-size: clamp(2.65rem, 4vw, 4.35rem);
  line-height: 1;
  letter-spacing: 0;
  transform: translate(-50%, -50%);
}

.home-hero__title-part {
  display: block;
  white-space: nowrap;
}

.home-hero__title-part--left {
  grid-column: 1;
  justify-self: start;
}

.home-hero__title-part--right {
  grid-column: 3;
  justify-self: end;
}

.home-hero__copy > p {
  position: absolute;
  bottom: 23%;
  left: clamp(1.5rem, 4.5vw, 4rem);
  max-width: 270px;
  margin: 0;
  color: var(--tvv-blue);
  font-size: clamp(0.95rem, 1.15vw, 1.12rem);
  font-weight: 500;
  line-height: 1.12;
}

.home-hero__actions {
  position: absolute;
  bottom: 13%;
  left: clamp(1.5rem, 4.5vw, 4rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.85rem;
  margin-top: 0;
}

.home-belief {
  background-color: #eaf4ec;
  padding: 9.5rem 0;
}

.home-belief__inner {
  text-align: center;
}

.home-belief__headline {
  max-width: 720px;
  margin: 0 auto 2rem;
  color: var(--tvv-blue);
  font-family: var(--font-body);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.home-belief__copy {
  color: var(--tvv-blue);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 2.2rem;
}

.home-doctors {
  background-color: var(--white);
  padding: 8.5rem 0 9.25rem;
}

.home-doctor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  gap: 1.25rem;
  justify-content: center;
}

.home-doctor-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: var(--sky);
  border: 1px solid rgba(41, 67, 98, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(41, 67, 98, 0.08);
}

.home-doctor-card__media {
  position: relative;
  overflow: hidden;
  background-color: #eaf4ec;
}

.home-doctor-card__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.home-doctor-card__badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  max-width: calc(100% - 2rem);
  padding: 0.52rem 0.75rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.94);
  color: var(--tvv-blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.home-doctor-card__badge--open {
  background-color: var(--green);
  color: var(--white);
}

.home-doctor-card__body {
  display: flex;
  min-height: 205px;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem 1.2rem 1.35rem;
  background-color: var(--sky);
  color: var(--tvv-blue);
}

.home-doctor-card__body h3 {
  margin-bottom: 0.5rem;
  color: var(--tvv-blue);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-doctor-card__body p {
  font-size: 0.86rem;
  line-height: 1.42;
}

.home-services {
  background-color: #f5f8fc;
  padding: 8rem 0 8.75rem;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 200px));
  justify-content: center;
  gap: 12px;
}

.home-service-card-item {
  min-width: 0;
}

.home-service-card {
  display: flex;
  min-height: 200px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: #d5e4fb;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  color: var(--tvv-blue);
  padding: 1.25rem 0.75rem;
  text-align: center;
  text-decoration: none;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.home-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(41, 67, 98, 0.12);
}

.home-service-card__icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  margin-bottom: 1.15rem;
  color: #28459b;
}

.home-service-card__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-service-card h3 {
  margin: 0;
  color: var(--tvv-blue);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.home-testimonials {
  background-color: var(--white);
  padding: 8rem 0 8.75rem;
}

.home-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4rem;
}

.home-testimonial-card {
  min-height: 320px;
  padding: 2.1rem 2rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 35px rgba(41, 67, 98, 0.08);
}

.home-testimonial-card__clinic {
  color: var(--tvv-blue);
  font-size: 0.9rem;
  font-weight: 700;
}

.home-testimonial-card__stars {
  margin-bottom: 1.35rem;
  color: #f4a11a;
  font-size: 1rem;
  letter-spacing: 0;
}

.home-testimonial-card p {
  color: var(--black);
  font-size: 1.02rem;
  line-height: 1.38;
}

.home-testimonial-card footer {
  display: grid;
  gap: 0.4rem;
  margin-top: 2.25rem;
  color: var(--black);
}

.home-testimonial-card strong {
  font-size: 1.35rem;
  line-height: 1.1;
}

.home-testimonial-card span {
  font-size: 1rem;
}

.home-final-cta {
  overflow: hidden;
  background-color: #f5fbff;
  text-align: center;
}

.home-final-cta__copy {
  padding: 8.5rem 2rem 4.25rem;
}

.home-final-cta__copy h2 {
  margin-bottom: 3rem;
  color: var(--tvv-blue);
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.home-final-cta__image {
  width: 100%;
  max-height: none;
  height: auto;
  object-fit: cover;
  object-position: center top;
}

/* ----------------------------------------------------------------
   8. ABOUT PAGE
   Promoted from staging with the clean production shell.
---------------------------------------------------------------- */
.about-page {
  background-color: var(--white);
}

.about-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 44vw, 650px);
  background-color: #f7f6f2;
  isolation: isolate;
}

.about-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

@media (min-width: 1680px) {
  .about-hero__image {
    right: auto;
    left: 50%;
    width: 1680px;
    transform: translateX(-50%);
  }
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  align-items: flex-start;
  justify-content: center;
  padding-top: clamp(4.75rem, 7vw, 6rem);
  text-align: center;
}

.about-hero h1 {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  color: var(--tvv-blue);
  font-size: clamp(3.1rem, 5vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.about-hero__title-line {
  display: block;
  white-space: nowrap;
}

.about-hero__title-line--mobile {
  display: none;
}

.about-hero__mobile-break {
  display: none;
}

.about-founding {
  background-color: var(--white);
}

.about-founding__heading {
  margin-bottom: 3.25rem;
  text-align: center;
}

.about-founding__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7.5rem);
}

.about-founding__media {
  overflow: hidden;
  background-color: #eaf4ec;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(41, 67, 98, 0.08);
}

.about-founding__media img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.about-founding__copy {
  max-width: 680px;
  color: var(--tvv-blue);
}

.about-founding__copy p {
  font-size: clamp(0.96rem, 1.15vw, 1.1rem);
  font-weight: 500;
  line-height: 1.55;
}

.about-founding__copy p + p {
  margin-top: 1.25rem;
}

.about-owners {
  background-color: #eff7fc;
}

.about-owners__heading {
  margin-bottom: 2.75rem;
}

.about-owners__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.about-owner-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: var(--sky);
  border: 1px solid rgba(41, 67, 98, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(41, 67, 98, 0.08);
}

.about-owner-card__media {
  overflow: hidden;
  background-color: #eaf4ec;
}

.about-owner-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.about-owner-card:last-child .about-owner-card__media img {
  object-position: center center;
}

.about-owner-card__body {
  display: flex;
  min-height: 190px;
  flex: 1;
  flex-direction: column;
  padding: 1.55rem 1.45rem 1.7rem;
  color: var(--tvv-blue);
}

.about-owner-card__body h3 {
  margin-bottom: 0.55rem;
  color: var(--tvv-blue);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.about-owner-card__body p {
  font-size: 0.86rem;
  line-height: 1.42;
}

.about-owner-card__bio {
  margin-top: auto;
  padding-top: 1.2rem;
  color: var(--tvv-blue);
  font-size: 0.84rem;
}

.about-owner-card__bio summary {
  cursor: pointer;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-owner-card__bio summary:focus-visible {
  outline: 2px solid var(--tvv-blue);
  outline-offset: 4px;
}

 .about-owner-card__bio-content {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(41, 67, 98, 0.18);
}

.about-owner-card__bio-content p + p {
  margin-top: 0.9rem;
}

/* ----------------------------------------------------------------
   9. FIND YOUR CLINIC PAGE
   Production route for clinic discovery. Cards are informational
   until location pages are rebuilt in production.
---------------------------------------------------------------- */
.find-page {
  background-color: var(--white);
}

.find-hero {
  background-color: var(--white);
  padding: 6.25rem 0 6.75rem;
}

.find-hero__header {
  max-width: 680px;
  margin: 0 auto 4.25rem;
  text-align: center;
}

.find-hero__header h1 {
  margin-bottom: 0.55rem;
  color: var(--tvv-blue);
  font-size: clamp(3.1rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.find-hero__header p {
  color: var(--tvv-blue);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

.find-clinic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  gap: 2rem;
  justify-content: center;
  min-width: 0;
}

.find-clinic-card {
  min-width: 0;
}

.find-clinic-card .home-doctor-card__body {
  min-height: 290px;
}

.find-clinic-card .home-doctor-card__body h2 {
  margin-bottom: 0.5rem;
  color: var(--tvv-blue);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: uppercase;
}

.find-clinic-card .home-doctor-card__body p {
  font-size: 1rem;
  line-height: 1.35;
}

.find-clinic-card__link {
  align-self: flex-start;
  background-color: var(--tvv-blue);
  border-radius: var(--radius-pill);
  color: var(--white);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  margin-top: auto;
  padding: 0.85rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color var(--ease), color var(--ease);
}

.find-clinic-card__link:hover {
  background-color: var(--green);
  color: var(--white);
}

.find-page .home-doctor-card__image--steven {
  object-position: center top;
}

/* ----------------------------------------------------------------
   10. PRIVACY POLICY PAGE
---------------------------------------------------------------- */
.privacy-page {
  background: var(--white);
}

.privacy-policy {
  background: linear-gradient(180deg, var(--tvv-blue-soft) 0, var(--white) 34rem);
  padding: 5.75rem 0 6.75rem;
}

.privacy-policy__header {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.privacy-policy__header h1 {
  margin-bottom: 1rem;
  color: var(--tvv-blue);
  font-size: clamp(3.1rem, 5.4vw, 5.2rem);
  line-height: 0.98;
}

.privacy-policy__organization,
.privacy-policy__updated {
  color: var(--tvv-blue);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0;
}

.privacy-policy__organization {
  font-size: 0.92rem;
  line-height: 1.45;
}

.privacy-policy__updated {
  margin-top: 0.65rem;
  font-size: 0.72rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.privacy-policy__content {
  display: grid;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
  padding: 2.25rem;
  border: 1px solid rgba(41, 67, 98, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 70px rgba(41, 67, 98, 0.08);
  color: var(--tvv-blue);
  font-size: 0.96rem;
  line-height: 1.62;
}

.privacy-policy__content h2,
.privacy-policy__content h3 {
  margin: 1rem 0 -0.35rem;
  color: var(--tvv-blue);
  font-family: var(--font-body);
  font-weight: 800;
  line-height: 1.25;
}

.privacy-policy__content h2 {
  font-size: 1.08rem;
}

.privacy-policy__content h3 {
  font-size: 0.98rem;
}

.privacy-policy__content p,
.privacy-policy__content ul,
.privacy-policy__content address {
  margin: 0;
}

.privacy-policy__content strong {
  font-weight: 800;
}

.privacy-policy__content ul {
  display: grid;
  gap: 0.58rem;
  padding-left: 1.2rem;
  list-style: disc;
}

.privacy-policy__content li {
  padding-left: 0.1rem;
}

.privacy-policy__content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.home-footer {
  position: relative;
  overflow: hidden;
  background-color: var(--tvv-blue);
  padding: 0 0 7rem;
}

.home-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 2.3fr) 1fr 1fr 1.45fr;
  gap: 4.5rem;
  padding-top: 4.5rem;
  align-items: start;
}

.home-footer .footer__logo-img {
  width: min(100%, 510px);
  height: auto;
  margin: 0;
}

.home-footer__nav,
.home-footer__contact {
  display: grid;
  gap: 0.7rem;
}

.home-footer .footer__nav-heading {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
}

.home-footer .footer__link {
  color: var(--white);
  font-size: 0.88rem;
  line-height: 1.35;
}

.home-footer__mark {
  display: flex;
  justify-content: flex-end;
  padding-top: 8rem;
}

.home-footer__mark img {
  width: 86px;
  height: auto;
}

@media (max-width: 1120px) {
  .home-container {
    width: min(100% - 3rem, 960px);
  }

  .home-hero {
    --home-hero-height: clamp(700px, 82vw, 760px);
    min-height: var(--home-hero-height);
  }

  .home-hero::after {
    content: none;
  }

  .home-hero__media {
    inset: 0;
    width: auto;
    height: auto;
    transform: none;
  }

  .home-hero__image {
    position: static;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
    transform: none;
  }

  .home-hero__inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
  }

  .home-hero__copy {
    position: static;
    width: min(100%, 390px);
    max-width: 390px;
    min-height: auto;
    margin: 0 auto;
    padding: 4.6rem 0 0;
  }

  .home-hero__title {
    position: static;
    display: block;
    max-width: 100%;
    margin: 0 auto 1.25rem;
    color: var(--tvv-blue);
    font-size: clamp(3rem, 13vw, 4.1rem);
    line-height: 0.95;
    transform: none;
  }

  .home-hero__title-part {
    display: block;
    white-space: nowrap;
  }

  .home-hero__title-part--left::after {
    content: ", ";
  }

  .home-hero__copy > p {
    position: static;
    max-width: 310px;
    margin: 0 auto 1.75rem;
    color: var(--tvv-blue);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
  }

  .home-hero__actions {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: min(100%, 250px);
    margin: 0 auto;
  }

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

  .find-clinic-grid {
    grid-template-columns: repeat(2, minmax(0, 420px));
  }

  .home-testimonial-grid {
    gap: 1.5rem;
  }

  .home-footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
  }

  .privacy-policy {
    padding: 4.75rem 0 5rem;
  }

  .privacy-policy__content {
    padding: 1.5rem;
  }

  .home-footer__contact {
    grid-column: 2 / 5;
  }
}

@media (max-width: 820px) {
  .home-page #main-content {
    padding-top: var(--nav-height);
  }

  .home-hero {
    --home-hero-height: 680px;
    min-height: 680px;
  }

  .home-hero__image {
    object-position: center top;
  }

  .home-belief,
  .home-doctors,
  .home-services,
  .home-testimonials {
    padding: 5.5rem 0;
  }

  .home-section-heading {
    margin-bottom: 2.75rem;
  }

  .home-doctor-grid,
  .home-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .home-doctor-grid {
    grid-auto-flow: row;
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .home-doctor-card__image {
    aspect-ratio: 16 / 11;
  }

  .home-doctor-card__image--steven {
    object-position: center top;
  }

  .home-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .home-service-card {
    min-height: 136px;
    padding: 0.85rem 0.5rem;
  }

  .home-service-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0.65rem;
  }

  .home-service-card h3 {
    margin-bottom: 0;
    font-size: 0.74rem;
  }

  .home-final-cta__copy {
    padding: 5.5rem 1.5rem 3rem;
  }

  .home-final-cta__image {
    min-height: 320px;
  }

  .about-hero {
    min-height: 560px;
  }

  .about-hero__inner {
    padding-top: 4.7rem;
  }

  .about-hero h1 {
    font-size: clamp(2.55rem, 10vw, 3.75rem);
  }

  .about-hero__title-line--desktop {
    display: none;
  }

  .about-hero__title-line--mobile {
    display: block;
  }

  .about-founding__inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .about-founding__media {
    max-width: 620px;
    margin: 0 auto;
  }

  .about-founding__heading {
    margin-bottom: 2.5rem;
  }

  .about-founding__copy {
    max-width: 760px;
    margin: 0 auto;
  }

  .about-owners__grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .find-hero {
    padding: 4.75rem 0 5.25rem;
  }

  .find-hero__header {
    margin-bottom: 2.75rem;
  }

  .find-clinic-grid {
    grid-template-columns: 1fr;
  }

  .find-clinic-card .home-doctor-card__body {
    min-height: 250px;
  }

  .privacy-policy {
    padding: 4.75rem 0 5rem;
  }

  .privacy-policy__content {
    padding: 1.5rem;
  }

  .home-footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .home-footer__contact {
    grid-column: auto;
  }

  .home-footer__mark {
    justify-content: flex-start;
    padding-top: 4rem;
  }
}

@media (max-width: 520px) {
  .home-container {
    width: min(100% - 2rem, 440px);
  }

  .home-section-heading h2,
  .home-final-cta__copy h2 {
    font-size: 2.65rem;
  }

  .home-belief__headline br {
    display: none;
  }

  .home-hero {
    --home-hero-height: 650px;
    min-height: 650px;
  }

  .home-hero__title {
    font-size: 3rem;
  }

  .about-hero {
    min-height: 500px;
  }

  .about-hero__inner {
    padding-top: 4rem;
  }

  .about-hero h1 {
    font-size: 2.3rem;
  }

  .about-hero__mobile-break {
    display: inline;
  }

  .find-hero__header h1,
  .find-form-panel__header h2 {
    font-size: 2.65rem;
  }

  .find-hero__header h1 {
    max-width: 10ch;
    margin-right: auto;
    margin-left: auto;
    font-size: 2.65rem;
  }

  .find-hero__header p {
    max-width: 280px;
    margin-right: auto;
    margin-left: auto;
  }

  .privacy-policy {
    padding: 3.75rem 0 4.5rem;
  }

  .privacy-policy__header {
    margin-bottom: 1.75rem;
    text-align: left;
  }

  .privacy-policy__header h1 {
    font-size: clamp(2.75rem, 16vw, 4rem);
  }

  .privacy-policy__organization {
    font-size: 0.82rem;
  }

  .privacy-policy__updated {
    font-size: 0.62rem;
  }

  .privacy-policy__content {
    gap: 0.82rem;
    padding: 1.1rem;
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .privacy-policy__content h2 {
    font-size: 0.9rem;
  }

  .privacy-policy__content h3 {
    font-size: 0.84rem;
  }

  .privacy-policy__content ul {
    gap: 0.48rem;
    padding-left: 1rem;
  }

  .home-footer .footer__logo-img {
    width: min(100%, 320px);
  }

  .home-testimonial-card {
    min-height: auto;
    padding: 1.65rem 1.5rem;
  }

  .home-testimonial-card p {
    font-size: 0.92rem;
  }

  .home-testimonial-card footer {
    margin-top: 1.75rem;
  }

  .about-hero__image {
    object-position: 44% top;
  }
}

@media (max-width: 640px) {
  .nav__inner {
    gap: 0.55rem;
    padding-right: 0.8rem;
    padding-left: 0.8rem;
  }

  .nav__logo-img {
    height: 20px;
  }

  .nav__links {
    gap: 0.7rem;
  }

  .nav__link {
    min-height: 38px;
    font-size: 0.76rem;
  }

  .nav__link::after {
    bottom: 0.45rem;
  }

  .nav__cta {
    min-height: 34px;
    padding: 0.65rem 0.72rem;
    font-size: 0.62rem;
  }
}

@media (max-width: 360px) {
  .nav__inner {
    gap: 0.45rem;
    padding-right: 0.65rem;
    padding-left: 0.65rem;
  }

  .nav__logo-img {
    height: 18px;
  }

  .nav__link {
    font-size: 0.7rem;
  }

  .nav__cta {
    padding-right: 0.58rem;
    padding-left: 0.58rem;
    font-size: 0.58rem;
  }
}
