/* ---------- SECTION SHARED ---------- */
  section {
    padding:96px 0;
  }
  .section-head {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:end;
    margin-bottom:56px;
  }
  .section-head h2 {
    font-size:clamp(1.9rem, 3.4vw, 2.7rem);
  }
  .section-head p {max-width:44ch;
    color:#3f4d49;
    margin-top:6px;
  }

  /* ---------- INTRO ---------- */
  .intro {
    background:var(--paper);
    border-bottom:1px solid var(--line);
  }
  .intro .wrap {
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:64px;
    align-items:center;
  }
  .intro-quote {
    font-family:'Instrument Serif', serif;
    font-style:italic;
    font-size:clamp(1.5rem, 2.6vw, 2.1rem);
    color:var(--deep);
    line-height:1.35;
  }
  .intro-body p {
    color:#414f4a;
    max-width:48ch;
  }
  .intro-stats {
    display:flex;
    gap:36px;
    margin-top:32px;
    font-family:'JetBrains Mono', monospace;
  }
  .intro-stats div strong {
    display:block;
    font-family:'Instrument Serif',
    serif; font-size:2rem; color:var(--accent-gold);
  }
  .intro-stats div span {
    font-size:0.7rem;
    letter-spacing:0.06em;
    text-transform:uppercase;
    color:#6c7a75;
  }

  /* ---------- TREATMENTS ---------- */
  .treatments-grid {
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
    background:transparent;
    border:none;
  }
  .t-card {
    position:relative;
    isolation:isolate;
    overflow:hidden;
    background: var(--paper);
    border:1px solid var(--line);
    border-radius:4px;
    padding:24px 24px 28px;
    box-shadow:0 2px 4px rgba(31, 46, 43, 0.04);
    transition:border-color .7s var(--ease-soft), transform .85s var(--ease-luxury), box-shadow .85s var(--ease-luxury);
  }
  .t-card::after {
    content:"";
    position:absolute;
    z-index:0;
    inset:0 0 auto;
    height:4px;
    background:linear-gradient(90deg, var(--accent-gold), #e7b98e 55%, transparent);
    opacity:0.65;
    transform:scaleX(0.16);
    transform-origin:left;
    transition:transform .9s var(--ease-luxury), opacity .65s var(--ease-soft);
  }
  .t-card > * {
    position:relative;
    z-index:1;
  }
  .t-card.fade-in-up {
    transform:translateY(26px) scale(0.985);
    transition:opacity 1.05s var(--ease-soft), transform 1.15s var(--ease-luxury), border-color .7s var(--ease-soft), box-shadow .85s var(--ease-luxury);
  }
  .t-card.fade-in-up.is-visible {
    transform:translateY(0) scale(1);
  }

  /* Specific override for homepage grid (already in place) */
  .home .treatments-grid {
    grid-template-columns:repeat(3, 1fr);
  }
  @media (min-width:641px) and (max-width:960px) {
    .home .treatments-grid .t-card:last-child { display:none; }
  }
  .t-card:hover {
    border-color:rgba(192,160,98,0.5);
    transform:translateY(-6px) scale(1.006);
    box-shadow:0 22px 38px -20px rgba(28,52,56,0.46);
  }
  .t-card:hover::after {
    opacity:1;
    transform:scaleX(1);
  }
  .t-card h3 {
    transition:transform 0.3s ease;
  }
  .t-card:hover h3 {
    transform:translateY(-2px); /* Subtle text lift */
  }
  .t-icon {
    width:34px;
    height:34px;
    margin-bottom:22px;
  }
  .t-photo-wrap {
    position:relative;
    overflow: hidden;
    margin:-24px -24px 24px;
    aspect-ratio:4 / 3;
    background:var(--deep);
  }
  .t-photo-wrap::after {
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, transparent 45%, rgba(28,52,56,0.28));
    transition:opacity 0.45s ease;
  }
  .t-photo{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:saturate(0.82) contrast(1.04);
    transition:transform 1.2s var(--ease-luxury), filter .75s var(--ease-soft);
  }
  .t-card:hover .t-photo {
    transform:scale(1.055);
    filter:saturate(1) contrast(1.05);
  }
  .t-card:hover .t-photo-wrap::after {
    opacity:0.55;
  }
  .t-icon svg {
    width:100%;
    height:100%;
  }
  .t-card h3 {
    font-size:1.4rem;
    margin-bottom:12px;
  }
  .t-meta {
    font-family:'JetBrains Mono', monospace;
    font-size:0.72rem; color:var(--accent-gold);
    letter-spacing:0.05em;
    margin-bottom:12px;
    display:block;
  }
  .t-best-for {
    font-family:'JetBrains Mono', monospace;
    font-size:0.7rem;
    line-height:1.55;
    letter-spacing:0.02em;
    color:#5c6b66;
    margin:0 0 14px;
  }
  .t-best-for strong {
    color:var(--ink);
    font-weight:500;
    text-transform:uppercase;
  }
  .t-description {
    font-size:0.9rem;
    color:#4c5955;
    margin:0 0 20px;
  }
  .t-card a {
    font-family:'JetBrains Mono', monospace;
    font-size:0.72rem;
    text-transform:uppercase;
    letter-spacing:0.05em;
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 2px;
    color:var(--deep);
    opacity:0.8;
    transition:color 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
  }
  .t-card a::before {
    content:"";
    position:absolute;
    inset:0;
  }
  .t-card-actions {
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:auto;
  }
  .t-card-actions a {
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:34px;
    padding:7px 10px 5px;
  }
  .t-card-actions a::before {
    display:none;
  }
  .t-card-actions .t-card-book {
    margin-left:auto;
    border:1px solid var(--deep);
    background:var(--deep);
    color:var(--paper);
    opacity:1;
    padding:7px 14px;
  }
  .t-card-actions .t-card-book:hover,
  .t-card-actions .t-card-book:focus-visible {
    border-color:var(--accent-gold);
    background:var(--accent-gold);
    color:var(--paper);
  }
  .t-card-actions a:not(.t-card-book):hover,
  .t-card-actions a:not(.t-card-book):focus-visible {
    color:var(--accent-gold);
    opacity:1;
    border-color:var(--ink);
  }
  .t-card:focus-within {
    border-color:var(--accent-gold);
    box-shadow:0 0 0 3px rgba(192,160,98,0.24), 0 22px 38px -20px rgba(28,52,56,0.46);
  }

  /* ---------- WHY / FEATURES ---------- */
  .why {
    background:var(--deep);
    color:var(--paper);
  }
  .why .section-head p {
    color:#c3cec9;
  }
  .why .eyebrow {
    color:#b7cdb6;
  }
  .why-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:36px;
  }
  .why-item {
    border-top:1px solid rgba(247,244,236,0.2);
    padding-top:20px;
  }
  .why-item .num {
    font-family:'JetBrains Mono', monospace;
    font-size:0.72rem; color:var(--accent-gold);
    display:block; margin-bottom:14px;
  }
  .why-item h3 {
    font-size:1.2rem;
    color:var(--paper);
    margin-bottom:8px;
  }
  .why-item p {
    font-size:0.88rem;
    color:#b9c5c0;
    margin:0;
  }

  /* ---------- SERVICES MENU ---------- */
  .services {
    background:var(--stone);
  }
  .service-category {
    margin-bottom: 4.5rem;
  }
  .service-category:last-child {
    margin-bottom: 0;
  }
  .service-category-title {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    border-bottom: 1px solid var(--line);
    padding-bottom: 1rem;
    margin-bottom: 2.5rem;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  .service-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
  }
  .service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }
  .service-card .svc-desc {
    font-size: 0.85rem;
    color: #5c6b66;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  .price-list {
    border-top: 1px solid var(--line);
    margin-top: auto; /* Pushes price list to the bottom */
    padding-top: 8px;
  }
  .price-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    font-size: 0.9rem;
  }
  .price-item span:first-child {
    color: #3f4d49;
  }
  .price-item span:last-child {
    font-family: 'JetBrains Mono', monospace;
    color: var(--accent-gold);
  }
  .price-item.is-placeholder {
    visibility: hidden;
    pointer-events: none;
  }
  .service-book-badge {
    align-self:flex-end;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:34px;
    margin-left:auto;
    margin-top:18px;
    padding:7px 14px;
    border:1px solid var(--deep);
    background:var(--deep);
    color:var(--paper);
    font-family:'JetBrains Mono', monospace;
    font-size:.72rem;
    font-weight:500;
    letter-spacing:.05em;
    line-height:1;
    text-decoration:none;
    text-transform:uppercase;
    transition:background-color .35s var(--ease-soft), color .35s var(--ease-soft), transform .35s var(--ease-luxury);
  }
  .service-book-badge:hover,
  .service-book-badge:focus-visible {
    border-color:var(--accent-gold);
    background:var(--accent-gold);
    color:var(--paper);
    transform:none;
  }
  .svc-name {
    font-weight:500;
  }
  .svc-desc {
    display:block;
    font-size:0.82rem;
    color:#5c6b66;
    margin-top:2px;
    font-weight:400;
  }
  .svc-price {
    font-family:'JetBrains Mono', monospace;
    color:var(--accent-gold);
    white-space:nowrap;
    padding-left:20px;
  }

  /* ---------- ABOUT / THERAPISTS ---------- */
  .therapist-grid {
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:1px;
    background:var(--line);
    border:1px solid var(--line);
  }
  .therapist-card {
    background:var(--paper);
    padding:40px 36px;
  }
  .therapist-photo {
    width:56px;
    height:56px;
    border-radius:50%;
    background:var(--deep);
    color:var(--paper);
    display:flex;
    align-items:center;
    justify-content:center;
    font-family:'Instrument Serif', serif;
    font-size:1.3rem;
    margin-bottom:22px;
  }
  .therapist-card h3 {
    font-size:1.5rem;
    margin-bottom:4px;
  }
  .therapist-card .t-meta {
    margin-bottom:16px;
  }
  .therapist-card p {
    font-size:0.92rem;
    color:#4c5955;
    margin:0;
  }

  @media (max-width: 900px) {
    .therapist-grid {
      grid-template-columns:1fr;
    }
  }
  .therapist-solo {
    display:grid;
    grid-template-columns:auto 1fr;
    gap:32px;
    align-items:flex-start;
    background:var(--paper);
    border:1px solid var(--line);
    padding:44px 44px;
  }
  .therapist-solo .therapist-photo {
    width:76px;
    height:76px;
    font-size:1.7rem;
    margin-bottom:0;
  }
  .therapist-solo h3 {
    font-size:1.7rem;
    margin-bottom:4px;
  }
  .therapist-solo .t-meta {
    margin-bottom:16px;
  }
  .therapist-solo p {
    font-size:0.95rem;
    color:#4c5955;
    margin:0;
    max-width:56ch;
  }
  @media (max-width: 600px) {
    .therapist-solo {
      grid-template-columns:1fr;
      text-align:left;
    }
  }
