/* =========================================================
   Reset + Base
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 92px;
}

:focus-visible {
  outline: 3px solid rgba(197, 164, 96, 0.9);
  outline-offset: 3px;
}

body {
  margin: 0;
  font-family:
    'Inter',
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  line-height: 1.6;
  font-size: var(--step-0);
  color: var(--ink);
  background: var(--bg);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* =========================================================
   Design tokens
   ========================================================= */
:root {
  --max: 1120px;
  --pad: clamp(16px, 3vw, 28px);

  --bg: #fbfbf8;
  --surface: #ffffff;
  --surface-soft: #f2f6f6;
  --surface-alt: #f7f3ea;

  --ink: #0b1b1f;
  --muted: #405156;

  --primary: #0b3a44;
  --accent: #2f6f5f;
  --gold: #c5a460;
  --card-tint: rgba(197, 164, 96, 0.06);

  --step-0: clamp(1rem, 0.96rem + 0.25vw, 1.125rem);
  --step-1: clamp(1.25rem, 1.1rem + 0.8vw, 1.8rem);
  --step-2: clamp(1.6rem, 1.25rem + 1.6vw, 2.6rem);

  --space-2: clamp(1.1rem, 0.95rem + 0.8vw, 1.8rem);
  --space-3: clamp(1.6rem, 1.2rem + 1.5vw, 3rem);
  --space-4: clamp(2.2rem, 1.6rem + 2vw, 4rem);

  --radius: 16px;
  --shadow: 0 10px 24px rgba(11, 27, 31, 0.08);
  --border: 1px solid rgba(11, 27, 31, 0.1);
}

/* =========================================================
   Utilities
   ========================================================= */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.muted {
  color: var(--muted);
}
.lead {
  margin-top: 10px;
  max-width: 70ch;
  color: var(--muted);
}
.section {
  padding: var(--space-4) 0;
  background: var(--bg);
}
.section--soft {
  background: var(--surface-soft);
}
.section--alt {
  background: var(--surface-alt);
}
.section--cta {
  background: var(--primary);
  color: #fff;
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: var(--space-2);
}

/* Temporary holiday preview control */
.holiday-preview-menu {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 999;
  display: grid;
  gap: 6px;
  padding: 10px;
  border: var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.holiday-preview-menu label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1;
}

.holiday-preview-menu select {
  min-width: 180px;
  border: var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  padding: 8px 10px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: var(--pad);
  top: var(--pad);
  width: auto;
  height: auto;
  padding: 10px 12px;
  background: var(--surface);
  border-radius: 10px;
  box-shadow: var(--shadow);
  border: var(--border);
  z-index: 999;
}

/* =========================================================
   Typography
   ========================================================= */
h1,
h2,
h3 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  letter-spacing: -0.015em;
}
h1 {
  font-size: var(--step-2);
  line-height: 1.12;
}
h2 {
  font-size: var(--step-1);
  line-height: 1.2;
}
h3 {
  font-size: clamp(1.1rem, 1.02rem + 0.35vw, 1.35rem);
  line-height: 1.25;
}

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 251, 248, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 27, 31, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
}
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.logo-img {
  height: 56px;
  width: auto;
  max-width: min(300px, 56vw);
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-book {
  margin-left: auto;
}
.nav a {
  padding: 8px 10px;
  border-radius: 10px;
}
.nav a:hover {
  text-decoration: none;
  background: rgba(11, 58, 68, 0.06);
}

.nav-toggle {
  display: none;
  border: var(--border);
  background: var(--surface);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 2px 10px rgba(11, 27, 31, 0.06);
}
.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--primary);
  margin: 4px 0;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(11, 58, 68, 0.18);
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow);
  text-decoration: none;
}
.btn:hover {
  text-decoration: none;
  filter: brightness(1.02);
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
  box-shadow: none;
}
.btn--small {
  padding: 10px 12px;
  border-radius: 12px;
}

.btn--on-dark {
  background: #fff;
  color: var(--primary);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost-on-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

/* =========================================================
   Cards / Grids
   ========================================================= */
.card {
  background: linear-gradient(180deg, var(--card-tint), var(--surface));
  border: var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card--info {
  background: rgba(255, 255, 255, 0.75);
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.cards {
  margin-top: var(--space-2);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  height: 340px;
  padding: var(--space-4) 0;
  background: #0b1b1f;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 27, 31, 0.5), rgba(11, 27, 31, 0.5)),
    url('../../Img/FAimages/Fayetteville Acupunture  the path.jpg');
  background-repeat: no-repeat, no-repeat;
  background-size: cover, 120%;
  background-position:
    center,
    left center;
  transition:
    opacity 1.2s ease-in-out,
    background-position 10s ease-in-out;
  opacity: 1;
}

.hero-bg--next {
  opacity: 0;
}

.hero-bg.is-panning {
  background-position:
    center,
    right center;
}

.hero-bg--active {
  opacity: 1;
}

.hero-bg--inactive {
  opacity: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-3);
  align-items: center;
  grid-template-columns: 1fr;
}
.hero-copy {
  max-width: 720px;
}
.hero-copy h1 {
  color: #fff;
  font-size: clamp(1.35rem, 0.95rem + 2.2vw, 2.9rem);
  line-height: 1.12;
  transition:
    opacity 400ms ease,
    transform 400ms ease;
}

.hero-copy p {
  margin-top: 12px;
  max-width: 68ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.95rem, 0.82rem + 0.75vw, 1.45rem);
  line-height: 1.45;
  transition:
    opacity 400ms ease,
    transform 400ms ease;
}

.hero-copy.hero-copy--fading h1,
.hero-copy.hero-copy--fading p {
  opacity: 0;
  transform: translateY(4px);
}
.hero-cta {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-nav {
  position: absolute;
  right: var(--pad);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: var(--border);
  background: var(--surface);
  color: var(--primary);
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.hero-nav-btn:hover {
  background: var(--surface-soft);
}

.trust-badges {
  margin: 28px 0 0;
  padding-left: 0;
  color: #fff;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
.trust-badges li {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 0.86rem + 0.2vw, 1rem);
}

.trust-badges li + li::before {
  content: '·';
  color: rgba(255, 255, 255, 0.95);
  margin: 0 8px;
  display: inline-block;
  line-height: 1;
  transform: translateY(-1px);
}

/* =========================================================
   Round buttons (quick links) + hover wiggle
   ========================================================= */
.round-buttons {
  margin-top: 0;
  padding: 8px 0;
}
.round-buttons-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
}
.round-button-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.round-buttons .round-button {
  display: block;
  width: 192px;
  height: auto;
  max-width: 100%;
  border-radius: 0;
  object-fit: contain;
  transition:
    transform 220ms cubic-bezier(0.2, 0.9, 0.3, 1),
    box-shadow 220ms ease;
  cursor: pointer;
  transform-origin: 50% 50%;
}
.round-button-item .btn {
  padding: 8px 10px;
  white-space: nowrap;
}
.round-buttons .round-button:hover,
.round-buttons .round-button:focus {
  animation: wiggle 600ms ease;
}

@keyframes wiggle {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  20% {
    transform: translateY(-6px) rotate(-12deg);
  }
  50% {
    transform: translateY(-4px) rotate(8deg);
  }
  80% {
    transform: translateY(-2px) rotate(-6deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .round-buttons .round-button,
  .round-buttons .round-button:focus {
    animation: none !important;
    transition: none !important;
  }
}

/* =========================================================
   Book section
   ========================================================= */
.book-grid {
  display: grid;
  gap: 16px;
  align-items: start;
  grid-template-columns: 1fr;
}
.book-actions {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fine-print {
  margin-top: 12px;
  font-size: 0.95em;
  color: var(--muted);
}
.checklist {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.checklist li {
  margin: 8px 0;
}

/* Lists */
.bullets {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.bullets li {
  margin: 6px 0;
}

.service-card {
  display: grid;
  gap: 10px;
  align-content: start;
  background: var(--surface);
}

#services {
  position: relative;
  isolation: isolate;
  background-image:
    linear-gradient(rgba(251, 251, 248, 0.9), rgba(251, 251, 248, 0.9)),
    url('../../Img/FAimages/Fayetteville%20Acupunture%20WomensHealth.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.service-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(11, 58, 68, 0.08);
  font-size: 1.2rem;
}
.learn-more {
  margin-top: 4px;
  color: var(--primary);
  font-weight: 600;
}
.services-details {
  margin-top: var(--space-2);
}
.services-details [id] {
  scroll-margin-top: 108px;
}

.conditions-help {
  margin-top: var(--space-2);
}
.conditions-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.conditions-statement {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.45;
  max-width: 60ch;
}

.faq-conditions-card {
  align-content: start;
}

/* ABOUT */
.about-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  align-items: start;
}
.about-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}
.about-copy h3 {
  margin-top: 0;
}
.credential-row {
  display: flex;
  gap: 18px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.cred {
  min-width: 160px;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 420px 1fr;
    align-items: center;
  }
}

/* Reviews */
#reviews {
  position: relative;
  isolation: isolate;
  background-image:
    linear-gradient(rgba(251, 251, 248, 0.9), rgba(251, 251, 248, 0.9)),
    url('../../Img/FAimages/Fayetteville%20Acupunture%20chinese%20Print.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#reviews .review-slide.card {
  background: var(--surface);
}

.quote blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 1.02em;
}
.quote figcaption {
  margin-top: 10px;
  color: var(--muted);
}

/* Reviews carousel */
.reviews-carousel {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.review-track-wrap {
  overflow: hidden;
  flex: 1 1 auto;
}
.review-track {
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  transition: transform 0.6s cubic-bezier(0.22, 0.9, 0.38, 1);
}
.review-slide {
  min-width: 100%;
  box-sizing: border-box;
}
.review-inner blockquote {
  margin: 0 0 8px 0;
  font-style: normal;
}
.review-author {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 600;
}
.carousel-btn {
  background: var(--surface);
  border: var(--border);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
}
.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(11, 27, 31, 0.12);
  border: 1px solid rgba(11, 27, 31, 0.06);
  cursor: pointer;
}
.carousel-dot[aria-selected='true'] {
  background: var(--primary);
}

@media (min-width: 768px) {
  .review-slide {
    min-width: 48%;
  }
}

@media (min-width: 1024px) {
  .review-slide {
    min-width: 31%;
  }
}

/* Team */
.profile {
  display: grid;
  gap: 14px;
  grid-template-columns: 120px 1fr;
  align-items: start;
}
.profile img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 999px;
  border: var(--border);
}

/* Visit */
#location {
  position: relative;
  isolation: isolate;
  background-image:
    linear-gradient(rgba(251, 251, 248, 0.9), rgba(251, 251, 248, 0.9)),
    url('../../Img/FAimages/water%20color%20flowers.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#location .card {
  background: var(--surface);
}

.visit-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  align-items: start;
}
.contact-cards {
  margin-top: 16px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

/* Add space below the title in the contact cards (e.g., Address) */
.contact-cards .card h3 {
  margin-bottom: 8px;
}

/* Keep phone numbers anchored to the bottom of the Address card */
.address-card {
  display: flex;
  flex-direction: column;
}
.address-card .address-phones {
  margin-top: auto;
}

/* Anchor the final note to the bottom of the Chiropractic Hours card */
.hours-card {
  display: flex;
  flex-direction: column;
}
.hours-card .fine-print {
  margin-top: auto;
}

/* Anchor contact line to bottom of chiropractic hours card */
.hours-card .address-phones {
  margin-top: auto;
}

/* Anchor the final note to the bottom of the Acupuncture Hours card */
.acupuncture-card {
  display: flex;
  flex-direction: column;
}
.acupuncture-card .fine-print {
  margin-top: auto;
}

/* Anchor contact line to bottom of acupuncture card */
.acupuncture-card .address-phones {
  margin-top: auto;
}

.address-phones {
  margin-top: 12px;
}

.hours {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

/* Center the '7 Days a Week' line and keep other hours aligned */
.hours .centered-hours {
  justify-content: center;
  text-align: center;
}

/* Visual spacer inside hours list (semantic, accessible) */
.hours .hours-gap {
  display: block;
  height: var(--space-1);
  width: 100%;
}

.map {
  overflow: hidden;
}
.map img,
.map iframe {
  width: 100%;
  min-height: 320px;
  border-radius: calc(var(--radius) - 6px);
  border: var(--border);
}
.map-note {
  margin-top: 10px;
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 22px 0;
  border-top: 1px solid rgba(11, 27, 31, 0.08);
  background-image:
    linear-gradient(rgba(251, 251, 248, 0.82), rgba(251, 251, 248, 0.82)),
    url('../../Img/FAimages/Fayetteville%20Acupunture%20%20the%20path.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
}

/* =========================================================
   Major American holiday styles
   Apply to any section/card/banner via classes:
   .holiday + one modifier (e.g., .holiday--thanksgiving)
   ========================================================= */
.holiday {
  --holiday-surface: var(--surface-alt);
  --holiday-ink: var(--ink);
  --holiday-accent: var(--primary);
  --holiday-highlight: var(--gold);
  --holiday-border: rgba(11, 27, 31, 0.16);

  background: linear-gradient(
    135deg,
    var(--holiday-surface) 0%,
    var(--surface) 55%,
    var(--holiday-surface) 100%
  );
  color: var(--holiday-ink);
  border: 1px solid var(--holiday-border);
  border-left: 6px solid var(--holiday-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.holiday h2,
.holiday h3,
.holiday .holiday-title {
  color: var(--holiday-accent);
}

.holiday .holiday-date,
.holiday .holiday-meta {
  color: var(--muted);
  font-weight: 600;
}

.holiday .holiday-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--holiday-border);
  color: var(--holiday-accent);
  background: var(--surface);
  font-size: 0.84em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.holiday .holiday-cta {
  border-color: var(--holiday-accent);
  background: var(--holiday-accent);
  color: #fff;
}

.holiday .holiday-cta.btn--ghost {
  background: transparent;
  color: var(--holiday-accent);
}

/* Holiday modifiers live in individual files under assets/css */

.holiday > * {
  position: relative;
  z-index: 1;
}

/* =========================================================
   Required breakpoints: 480px, 768px, 1024px
   ========================================================= */
@media (min-width: 480px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .book-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-inner {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .nav {
    gap: 18px;
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .card {
    padding: 20px;
  }
}

/* =========================================================
   Mobile navigation (below 768px)
   ========================================================= */
@media (max-width: 767px) {
  .hero {
    height: auto;
    min-height: 340px;
  }
  .hero-grid {
    padding-right: 0;
    padding-bottom: 56px;
  }
  .hero-copy {
    max-width: 100%;
  }
  .hero-copy h1 {
    font-size: clamp(1.2rem, 1.02rem + 2.8vw, 1.9rem);
    line-height: 1.16;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    text-wrap: balance;
  }
  .hero-copy p {
    font-size: clamp(0.92rem, 0.84rem + 1.15vw, 1.12rem);
    line-height: 1.5;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
    text-wrap: pretty;
  }
  .hero-nav {
    right: 50%;
    top: auto;
    bottom: 10px;
    transform: translateX(50%);
    flex-direction: row;
  }
  .hero-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 1.15rem;
  }
  .round-buttons {
    display: none;
  }
  .logo-img {
    height: 42px;
    max-width: min(220px, 58vw);
  }
  .header-book {
    margin-left: auto;
    padding: 8px 10px;
    border-radius: 10px;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav {
    position: absolute;
    right: var(--pad);
    top: 62px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    background: var(--surface);
    border: var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    min-width: min(260px, calc(100vw - (var(--pad) * 2)));
  }
  .nav.is-open {
    display: flex;
  }
  .nav a {
    padding: 10px 12px;
  }
  .holiday-preview-menu {
    right: 10px;
    left: 10px;
    bottom: 10px;
  }
  .holiday-preview-menu select {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 380px) {
  .hero-copy h1 {
    font-size: clamp(1.05rem, 0.92rem + 2.1vw, 1.45rem);
    line-height: 1.2;
  }
  .hero-copy p {
    font-size: clamp(0.86rem, 0.8rem + 1vw, 0.98rem);
  }
}
