:root {
    --sage: #7a9e87;
    --sage-light: #c5d9cc;
    --sage-dark: #4a7057;
    --forest: #3d5c48;
    --forest-deep: #2f4a3a;
    --cream: #f8f4ee;
    --cream-dark: #ede7dc;
    --warm-white: #fdfaf6;
    --terracotta: #b5714a;
    --terracotta-light: #e8c4a8;
    --charcoal: #3a3835;
    --mid: #454540;
    --light-text: #5c5c54;
    --gold: #c4924e;
    --heading: var(--forest);
    --black: #000000;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 1.0625rem;
    color: var(--charcoal);
    background: var(--warm-white);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(253,250,246,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--cream-dark);
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    transition: box-shadow 0.3s;
  }

  nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }

  .nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .nav-logo .wordmark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--heading);
    text-decoration: none;
  }

  .nav-logo .submark {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage-dark);
    font-weight: 500;
  }

  .nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: none;
    color: var(--mid);
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 100%;
    height: 1px;
    background: var(--terracotta);
    transition: right 0.3s;
  }

  .nav-links a:hover { color: var(--charcoal); }
  .nav-links a:hover::after { right: 0; }

  .nav-cta {
    background: var(--sage-dark);
    color: white !important;
    padding: 0.65rem 1.4rem;
    border-radius: 2px;
    font-size: 0.95rem !important;
    letter-spacing: 0.06em !important;
    text-transform: none !important;
    transition: background 0.2s !important;
    white-space: nowrap;
  }

  .nav-cta:hover { background: var(--terracotta) !important; color: white !important; }
  .nav-cta::after { display: none !important; }

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

  .nav-phone {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--sage-dark);
    white-space: nowrap;
    padding: 0.35rem 0.5rem;
    border-radius: 2px;
    transition: color 0.2s;
  }

  .nav-phone:hover { color: var(--terracotta); }

  .nav-contact {
    width: 44px;
    height: 44px;
    border: 1px solid var(--cream-dark);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sage-dark);
    background: var(--warm-white);
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  }

  .nav-contact:hover {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
    color: white;
    transform: translateY(-1px);
  }

  .nav-contact svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 72px;
  }

  .hero-left {
    display: flex;
    align-items: center;
    padding: 5rem 4rem 5rem 5rem;
    background: var(--cream);
  }

  .hero-content { max-width: 520px; }

  .hero-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--sage-dark);
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.35rem, 5.2vw, 4.8rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--heading);
    margin-bottom: 1.8rem;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--terracotta);
  }

  .hero-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--mid);
    margin-bottom: 2.5rem;
    max-width: 440px;
  }

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

  .btn-primary {
    background: var(--sage-dark);
    color: white;
    padding: 1rem 2.2rem;
    border-radius: 2px;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: none;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--terracotta); transform: translateY(-1px); }

  .btn-secondary {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: none;
    font-weight: 600;
    border-bottom: 1px solid var(--charcoal);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }

  .btn-secondary:hover { color: var(--terracotta); border-color: var(--terracotta); }

  .hero-right {
    background: var(--sage-light);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-right-inner {
    width: 100%;
    height: 100%;
    background:
      radial-gradient(ellipse at 30% 60%, rgba(122,158,135,0.4) 0%, transparent 60%),
      radial-gradient(ellipse at 70% 30%, rgba(181,113,74,0.15) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    padding: 4rem;
  }

  .hero-stat-card {
    background: rgba(253,250,246,0.85);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius:6px;
    padding: 2rem 2.5rem;
    text-align: center;
    width: 100%;
    max-width: 300px;
  }

  .hero-stat-card .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 600;
    color: var(--terracotta);
    line-height: 1;
  }

  .hero-stat-card .label {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: 0.4rem;
    font-weight: 500;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    justify-content: center;
    width: 100%;
    max-width: 340px;
  }

  .badge {
    background: rgba(74,112,87,0.12);
    color: #000000;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.55rem 0.75rem;
    border-radius: 1px;
    border: 1px solid rgba(74,112,87,0.25);
    font-weight: 500;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  /* ─── SECTIONS ─── */
  section { padding: 6rem 5rem; }

  .section-label {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--terracotta);
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--heading);
    margin-bottom: 1.2rem;
  }

  .section-intro {
    font-size: 1.125rem;
    color: var(--mid);
    line-height: 1.8;
    max-width: 580px;
  }

  /* ─── WHAT WE TREAT ─── */
  .treat-section {
    background: var(--forest-deep);
    padding: 6rem 5rem;
  }

  .treat-section .section-label { color: var(--terracotta-light); }
  .treat-section .section-label::before { background: var(--terracotta-light); }
  .treat-section .section-title { color: var(--cream); }
  .treat-section .section-intro { color: var(--sage-light); }

  .treat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 3.5rem;
    background: rgba(255,255,255,0.08);
  }

  .treat-item {
    background: var(--forest-deep);
    padding: 2rem;
    border-left: 2px solid transparent;
    transition: border-color 0.3s, background 0.3s;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    min-height: 230px;
    text-decoration: none;
  }

  .treat-item:hover {
    border-left-color: var(--terracotta);
    background: rgba(181,113,74,0.06);
  }

  .treat-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(197,217,204,0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage-light);
    flex-shrink: 0;
  }

  .treat-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .treat-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--cream);
    line-height: 1.25;
  }

  .treat-item span {
    font-size: 1.0625rem;
    color: rgba(248,244,238,0.85);
    line-height: 1.6;
    font-weight: 400;
  }

  .treat-item .learn-more {
    margin-top: auto;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    text-transform: none;
    color: var(--terracotta-light);
    font-weight: 500;
  }

  .condition-detail-section {
    background: var(--warm-white);
    padding: 5rem;
  }

  .condition-detail-header {
    max-width: 760px;
    margin-bottom: 3rem;
  }

  .condition-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .condition-detail-card {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: 4px;
    padding: 2rem;
  }

  .condition-detail-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    color: var(--heading);
    margin-bottom: 0.8rem;
  }

  .condition-detail-card p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--mid);
    margin-bottom: 1rem;
  }

  .condition-detail-card ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
  }

  .condition-detail-card li {
    font-size: 1rem;
    color: var(--mid);
    line-height: 1.5;
    display: flex;
    gap: 0.6rem;
  }

  .condition-detail-card li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--terracotta);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.55rem;
  }

  /* ─── ABOUT ─── */
  /* About page translucent cave background */
  .about-section {
      position: relative;
      overflow: hidden;
  }

  .about-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("IMG_0118.HEIC") center center / cover no-repeat;
      opacity: 0.18;          /* Adjust 0.1–0.3 to your liking */
      z-index: 0;
      pointer-events: none;
  }

  .about-section > * {
    position: relative;
    z-index: 1;
}
  .about-section {
    background: var(--warm-white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
  }

  .about-image {
    background: var(--sage-light);
    min-height: 580px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-image-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(122,158,135,0.3) 0%, rgba(74,112,87,0.5) 100%);
    gap: 1.5rem;
    padding: 3rem;
  }

  .portrait-placeholder {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(253,250,246,0.3);
    border: 2px solid rgba(253,250,246,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
  }

  .portrait-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.6;
  }

  .portrait-label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(253,250,246,0.7);
    text-align: center;
    font-weight: 500;
  }

  .credentials-card {
    background: rgba(253,250,246,0.9);
    border-radius: 4px;
    padding: 1.5rem 2rem;
    width: 100%;
    max-width: 300px;
  }

  .credentials-card .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
  }

  .credentials-card .title {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sage-dark);
    font-weight: 500;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--cream-dark);
  }

  .credentials-card .cred-item {
    font-size: 1rem;
    color: var(--mid);
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .credentials-card .cred-item::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .about-content {
    padding: 5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .about-content p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--mid);
    margin-bottom: 1.4rem;
  }

  .about-content p:last-child { margin-bottom: 0; }

  /* ─── SERVICES ─── */
  .services-section {
    background: var(--cream);
    padding: 6rem 5rem;
  }

  .services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: end;
  }

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

  .service-card {
    background: var(--warm-white);
    border: 1px solid var(--cream-dark);
    border-radius: 3px;
    padding: 2.2rem 2rem;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  }

  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
    border-color: var(--sage-light);
  }

  .service-num {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--sage-light);
    color: var(--sage-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
  }

  .service-num svg {
    width: 23px;
    height: 23px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 0.8rem;
    line-height: 1.3;
  }

  .service-card p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--mid);
  }

  /* ─── FAQ ─── */
  .faq-section {
    background: var(--warm-white);
    padding: 6rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 6rem;
    align-items: start;
  }

  .faq-left { position: sticky; top: 100px; }

  .faq-item {
    border-top: 1px solid var(--cream-dark);
    padding: 1.5rem 0;
  }

  .faq-item:last-child { border-bottom: 1px solid var(--cream-dark); }

  .faq-question {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    list-style: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.5;
  }

  .faq-question::-webkit-details-marker { display: none; }

  .faq-toggle {
    width: 32px;
    height: 32px;
    border: 1px solid var(--cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--sage-dark);
    line-height: 1;
    transition: background 0.2s, border-color 0.2s;
  }

  details[open] .faq-toggle {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
    color: white;
  }

  details[open] .faq-toggle::after { content: '−'; }
  .faq-toggle::after { content: '+'; }

  .faq-answer {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--mid);
    padding-top: 1rem;
  }

  /* ─── TESTIMONIALS CAROUSEL ─── */
  .testimonials-section {
    background: var(--sage-dark);
    padding: 4rem 5rem;
  }

  .testimonials-section .section-label { color: var(--terracotta-light); }
  .testimonials-section .section-label::before { background: var(--terracotta-light); }
  .testimonials-section .section-title { color: var(--cream); }

  .testimonials-header {
    margin-bottom: 2rem;
  }

  .testimonial-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .carousel-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(248,244,238,0.35);
    border-radius: 50%;
    background: rgba(248,244,238,0.12);
    color: var(--cream);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
  }

  .carousel-btn:hover {
    background: rgba(248,244,238,0.22);
    border-color: var(--terracotta-light);
  }

  .testimonial-track-wrap {
    flex: 1;
    overflow: hidden;
    min-width: 0;
  }

  .testimonial-track {
    display: flex;
    transition: transform 0.45s ease;
  }

  .testimonial-track .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    box-sizing: border-box;
  }

  .testimonial-card {
    background: rgba(248,244,238,0.1);
    border: 1px solid rgba(248,244,238,0.15);
    border-radius: 3px;
    padding: 2rem 2.2rem;
    min-height: 220px;
  }

  .testimonial-card .quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--terracotta-light);
    line-height: 0.8;
    margin-bottom: 0.75rem;
    opacity: 0.7;
  }

  .testimonial-card p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(248,244,238,0.9);
    font-style: italic;
    margin-bottom: 1.25rem;
    font-family: 'Cormorant Garamond', serif;
  }

  .testimonial-author {
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    text-transform: none;
    color: var(--sage-light);
    font-weight: 500;
  }

  .stars {
    color: var(--gold);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
  }

  .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(248,244,238,0.45);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
  }

  .carousel-dot.active,
  .carousel-dot:hover {
    background: var(--terracotta-light);
    border-color: var(--terracotta-light);
  }

  .carousel-dot.active {
    transform: scale(1.15);
  }

  /* legacy grid — unused but kept for reference */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
  }

  /* ─── CONTACT / FOOTER ─── */
  .contact-section {
    background: var(--cream);
    padding: 6rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  .contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.55rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 0.5rem;
    line-height: 1.25;
  }

  .contact-info .tagline {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage-dark);
    font-weight: 500;
    margin-bottom: 2.5rem;
  }

  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 0;
    border-top: 1px solid var(--cream-dark);
  }

  .contact-detail:last-of-type { border-bottom: 1px solid var(--cream-dark); }

  .contact-icon {
    width: 36px;
    height: 36px;
    background: var(--sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--sage-dark);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .contact-detail-text .label {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--light-text);
    font-weight: 500;
    margin-bottom: 0.2rem;
  }

  .contact-detail-text .value {
    font-size: 1.0625rem;
    color: var(--charcoal);
    line-height: 1.6;
  }

  .contact-detail-text a {
    color: var(--terracotta);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
  }

  .contact-detail-text a:hover { border-color: var(--terracotta); }

  .map-area {
    background: var(--sage-light);
    border-radius: 4px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid var(--cream-dark);
  }

  .map-placeholder-text {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage-dark);
    font-weight: 500;
    text-align: center;
  }

  .hours-card {
    background: var(--warm-white);
    border: 1px solid var(--cream-dark);
    border-radius: 4px;
    padding: 1.8rem 2rem;
    margin-top: 1.5rem;
  }

  .hours-card h4 {
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sage-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--cream-dark);
  }

  .hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 1.0625rem;
    color: var(--mid);
    gap: 1rem;
  }

  .hours-row .day { font-weight: 700; color: var(--charcoal); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--forest-deep);
    padding: 3rem 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .footer-brand .wordmark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.3rem;
  }

  .footer-brand .submark {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage);
    font-weight: 500;
  }

  .footer-copy {
    font-size: 0.78rem;
    color: rgba(248,244,238,0.35);
    text-align: center;
  }

  .footer-contact {
    font-size: 0.82rem;
    color: rgba(248,244,238,0.6);
    text-align: right;
    line-height: 1.7;
  }

  .footer-contact a {
    color: var(--terracotta-light);
    text-decoration: none;
  }

  /* ─── CTA STRIP ─── */
  .cta-strip {
    background: var(--terracotta);
    padding: 3.5rem 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .cta-strip h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: white;
    line-height: 1.2;
  }

  .cta-strip p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.9);
    margin-top: 0.4rem;
  }

  .btn-white {
    background: white;
    color: var(--terracotta);
    padding: 1rem 2.2rem;
    border-radius: 2px;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: none;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .btn-white:hover { background: var(--cream); transform: translateY(-1px); }

  /* ─── SCROLL ANIMATIONS ─── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { min-height: 420px; }
    .about-section { grid-template-columns: 1fr; }
    .treat-grid { grid-template-columns: repeat(2, 1fr); }
    .condition-detail-grid { grid-template-columns: 1fr; }
    .condition-detail-section { padding: 4rem 2.5rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-section { padding: 3.5rem 1.5rem; }
    .carousel-btn { width: 44px; height: 44px; font-size: 1.2rem; }
    .testimonial-card { min-height: 200px; padding: 1.5rem; }
    .contact-section { grid-template-columns: 1fr; }
    .faq-section { grid-template-columns: 1fr; gap: 3rem; }
    .faq-left { position: static; }
    .services-header { grid-template-columns: 1fr; }
    section { padding: 4rem 2.5rem; }
    .treat-section, .services-section, .testimonials-section, .contact-section { padding: 4rem 2.5rem; }
    nav { padding: 0 1.5rem; }
    .nav-links { gap: 1.2rem; }
    .cta-strip { padding: 3rem 2.5rem; flex-direction: column; text-align: center; }
    footer { padding: 2.5rem; flex-direction: column; text-align: center; }
    .footer-contact { text-align: center; }
  }

  @media (max-width: 900px) {
    nav {
      height: auto;
      min-height: 72px;
      padding: 0.9rem 1.1rem;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .nav-logo {
      flex: 1 1 100%;
      max-width: 100%;
      padding-right: 0;
    }

    .nav-logo .wordmark {
      font-size: 1.35rem;
      line-height: 1.1;
    }

    .nav-logo .submark {
      font-size: 0.54rem;
      letter-spacing: 0.12em;
    }

    .nav-links {
      order: 3;
      width: 100%;
      gap: 0.9rem;
      overflow-x: auto;
      padding-bottom: 0.15rem;
    }

    .nav-links a { font-size: 0.9rem; white-space: nowrap; }
    .nav-actions { order: 2; gap: 0.5rem; }
    .nav-contact { width: 44px; height: 44px; }
    .nav-phone { font-size: 0.95rem; }
    .nav-cta { padding: 0.55rem 0.9rem; font-size: 0.9rem !important; }

    .hero { padding-top: 162px; }
    .hero-left { padding: 4rem 1.5rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-right-inner { padding: 2.5rem 1.5rem; }
    .treat-grid, .services-grid { grid-template-columns: 1fr; }
    .treat-section, .services-section, .testimonials-section, .contact-section, .condition-detail-section { padding: 3.5rem 1.5rem; }
    .about-content { padding: 3.5rem 1.5rem; }
    .faq-section { padding: 3.5rem 1.5rem; }
    .condition-detail-card { padding: 1.5rem; }
  }

/* Multi-page: offset fixed nav on pages without hero */
.page-main {
  padding-top: 72px;
}

@media (max-width: 900px) {
  .page-main { padding-top: 162px; }
}

/* ─── CONTACT FORM ─── */
.contact-form-card {
  margin-top: 1.5rem;
  padding: 1.8rem 2rem;
  background: var(--warm-white);
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
}

.contact-form-intro {
  font-size: 1.0625rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.contact-form-phone-prompt {
  font-size: 1.0625rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  padding: 1rem 1.2rem;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
}

.contact-form-phone-prompt a {
  color: var(--terracotta);
  font-weight: 600;
  font-size: 1.15rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.contact-form-phone-prompt a:hover { border-color: var(--terracotta); }

.contact-form-fields {
  display: grid;
  gap: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 1.0625rem;
  background: var(--cream);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  min-height: 48px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--sage-dark);
  box-shadow: 0 0 0 3px rgba(74, 112, 87, 0.15);
}

.contact-form button {
  background: var(--terracotta);
  color: white;
  border: none;
  padding: 1rem 1.75rem;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  min-height: 48px;
}

.contact-form button:hover { background: var(--sage-dark); }

.contact-note {
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.5;
}

/* ─── MOBILE CALL BAR ─── */
.call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--sage-dark);
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 1.0625rem;
  font-weight: 600;
  padding: 1rem 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
}

.call-bar:hover { background: var(--terracotta); color: white; }

@media (max-width: 900px) {
  .call-bar {
    display: block;
  }

  .nav-phone {
    display: none;
  }

  body {
    padding-bottom: 56px;
  }
}

/* ─── ACCESSIBILITY ─── */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .testimonial-track {
    transition: none;
  }

  .btn-primary:hover,
  .btn-secondary:hover,
  .btn-white:hover,
  .nav-contact:hover {
    transform: none;
  }
}
