:root {
    --olive: #6B7F5B;
    --dark-green: #3D4F31;
    --pastel-green: #B8D4A8;
    --light-green: #E8F5E3;
    --white: #FFFFFF;
    --cream: #FDFDF8;
    --text-dark: #2C3E1F;
    --text-muted: #6B7563;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: clip;
  }
  
  body {
    background: var(--cream);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    line-height: 1.7;
  }

  img { max-width: 100%; }

  /* ── BOOKING FORM ENHANCEMENTS ── */
  .booking-steps {
    display: flex; align-items: center; margin-bottom: 2rem;
  }
  .booking-step {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--light-green); color: var(--text-muted);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: 500; transition: all 0.3s;
    flex-shrink: 0;
  }
  .booking-step.active {
    background: var(--olive); color: var(--white);
  }
  .booking-step.done {
    background: var(--dark-green); color: var(--white);
  }
  .booking-step-line {
    flex: 1; height: 2px; background: var(--pastel-green);
  }
  .step-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; color: var(--dark-green);
    margin-bottom: 1.4rem; font-weight: 400;
  }
  .radio-group {
    display: flex; gap: 1.5rem; flex-wrap: wrap;
    padding: 0.6rem 0;
  }
  .radio-option {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.9rem; color: var(--text-muted); cursor: pointer;
  }
  .radio-option input { accent-color: var(--olive); }
  .booking-summary {
    background: var(--light-green);
    border-radius: 8px; padding: 1.2rem 1.5rem;
    margin-bottom: 1.5rem;
  }
  .booking-summary .s-row {
    display: flex; justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--pastel-green);
    font-size: 0.88rem;
  }
  .booking-summary .s-row:last-child { border-bottom: none; }
  .booking-summary .s-label { color: var(--text-muted); }
  .booking-summary .s-val { color: var(--dark-green); font-weight: 500; }

  /* ── PARTNERS & ASSOCIATIONS ── */
  .partners {
    background: var(--cream);
    padding: clamp(5rem, 8vw, 8rem) 4rem;
    border-bottom: 1px solid var(--pastel-green);
  }
  .partners-inner { max-width: 1200px; margin: 0 auto; }
  .partners-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    gap: clamp(2rem, 8vw, 7rem);
    align-items: end;
    margin-bottom: clamp(3rem, 6vw, 5rem);
  }
  .partners-intro .section-title { margin-bottom: 0; }
  .partners-copy {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.9;
    max-width: 430px;
    padding-bottom: 0.45rem;
  }
  .partner-ledger {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--olive);
    border-bottom: 1px solid var(--pastel-green);
  }
  .partner-group {
    min-width: 0;
    padding: 2rem clamp(1.5rem, 3vw, 2.5rem) 2.4rem;
  }
  .partner-group + .partner-group { border-left: 1px solid var(--pastel-green); }
  .partner-group-heading {
    display: flex;
    align-items: baseline;
    gap: 0.85rem;
    min-height: 3.5rem;
    margin-bottom: 1.25rem;
  }
  .partner-group-heading span {
    color: var(--olive);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
  }
  .partner-group-heading h3 {
    color: var(--dark-green);
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 400;
    line-height: 1.3;
  }
  .partner-list { list-style: none; }
  .partner-list li {
    display: grid;
    grid-template-columns: minmax(78px, 112px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1rem);
    min-height: 86px;
    padding: 0.85rem 0;
    border-top: 1px solid color-mix(in srgb, var(--pastel-green) 65%, transparent);
  }
  .partner-mark {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 46px;
    overflow: hidden;
  }
  .partner-mark img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 38px;
    object-fit: contain;
    object-position: left center;
    mix-blend-mode: multiply;
  }
  .partner-mark--tall img { max-height: 46px; }
  .partner-meta { display: grid; gap: 0.15rem; min-width: 0; }
  .partner-list strong {
    color: var(--dark-green);
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.45;
  }
  .partner-list span {
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
  }
  .partner-trademark-note {
    color: color-mix(in srgb, var(--text-muted) 78%, transparent);
    font-size: 0.65rem;
    letter-spacing: 0.03em;
    margin-top: 1rem;
    text-align: right;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 4rem;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--pastel-green);
    box-shadow: 0 2px 12px rgba(107,127,91,0.08);
    transition: padding 0.25s ease, box-shadow 0.25s ease;
  }
  nav.is-scrolled {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    box-shadow: 0 4px 16px rgba(107,127,91,0.12);
  }
  .nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  .nav-logo-img {
    height: 68px;
    width: auto;
    display: block;
  }
  
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--olive); }
  
  .nav-cta {
    background: var(--olive);
    border: none;
    color: var(--white);
    padding: 0.7rem 1.8rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    border-radius: 4px;
  }
  .nav-cta:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107,127,91,0.25);
  }
  
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: transparent; border: 0; padding: 0; }
  .hamburger span { width: 24px; height: 2px; background: var(--olive); display: block; transition: all 0.3s; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 84px;
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--pastel-green);
    padding: 1.5rem 1.5rem 2rem;
    z-index: 99;
    flex-direction: column;
    gap: 1.2rem;
    box-shadow: 0 8px 24px rgba(107,127,91,0.12);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 400;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-green);
    transition: color 0.3s;
  }
  .mobile-menu a:hover { color: var(--olive); }
  .mobile-menu .mobile-cta {
    background: var(--olive);
    color: var(--white);
    padding: 0.9rem 1.5rem;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    border-radius: 4px;
    border-bottom: none;
    margin-top: 0.5rem;
  }
  .mobile-menu .mobile-cta:hover { background: var(--dark-green); color: var(--white); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
    position: relative;
  }
  
  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 8rem 6rem;
    max-width: 800px;
    position: relative;
  }
  
  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--olive);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 500;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
  }
  .hero-tag em { font-style: italic; font-weight: 300; }
  
  .hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--dark-green);
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
  }
  .hero-h1 em {
    font-style: italic;
    color: var(--olive);
  }
  
  .hero-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
  }
  
  .hero-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
  }
  
  .btn-primary {
    background: var(--olive);
    color: var(--white);
    padding: 1.1rem 2.8rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border-radius: 4px;
  }
  .btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(107,127,91,0.3);
  }
  
  .btn-ghost {
    color: var(--olive);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
    transition: gap 0.3s;
  }
  .btn-ghost:hover { gap: 1rem; }
  .btn-ghost::after { content: '→'; }

  .hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .hero-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: fadeIn 1.2s 0.4s forwards;
  }
  
  .hero-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--cream) 0%, transparent 30%);
    z-index: 1;
  }
  
  .hero-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: top center;
  }
  
  .hero-float-card {
    position: absolute;
    bottom: 3rem;
    left: -3rem;
    z-index: 3;
    background: var(--white);
    border: 2px solid var(--pastel-green);
    padding: 1.8rem 2.2rem;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(107,127,91,0.15);
    opacity: 0;
    animation: fadeUp 0.8s 1.2s forwards;
  }
  
  .hero-float-card .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--olive);
  }
  
  .hero-float-card .label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.3rem;
  }

  /* ── MARQUEE ── */
  .marquee-wrap {
    overflow: hidden;
    border-top: 1px solid var(--pastel-green);
    border-bottom: 1px solid var(--pastel-green);
    padding: 1.2rem 0;
    background: var(--white);
  }
  
  .marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marquee 25s linear infinite;
  }
  
  .marquee-item {
    white-space: nowrap;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-weight: 400;
  }
  .marquee-item::after { content: '●'; color: var(--pastel-green); font-size: 0.5rem; }
  
  @keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

  /* ── SECTION COMMONS ── */
  section { padding: 6rem 4rem; }
  section.hero { padding: 0; }
  
  .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    color: var(--dark-green);
  }
  .section-title em { font-style: italic; color: var(--olive); }

  /* ── ABOUT ── */
  .about { background: var(--white); }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-img-col { position: relative; }
  
  .about-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(107,127,91,0.15);
  }
  
  .about-img-frame {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: -1.5rem;
    bottom: -1.5rem;
    border: 2px solid var(--pastel-green);
    z-index: -1;
    border-radius: 8px;
  }
  
  .about-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--olive);
    color: var(--white);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 8px 24px rgba(107,127,91,0.25);
  }
  
  .about-badge .big {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1;
  }
  
  .about-badge .small {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.95;
  }
  
  .about-text p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.2rem;
    font-size: 0.98rem;
  }
  
  .credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .cred-pill {
    border: 1.5px solid var(--pastel-green);
    background: var(--light-green);
    padding: 0.5rem 1.3rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark-green);
    border-radius: 20px;
    transition: all 0.3s;
    font-weight: 500;
  }
  .cred-pill:hover {
    background: var(--pastel-green);
    border-color: var(--olive);
  }

  /* ── SERVICES ── */
  .services { background: var(--light-green); }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .service-card {
    background: var(--white);
    padding: 2.8rem 2.2rem;
    border-radius: 8px;
    border: 1px solid var(--pastel-green);
    transition: all 0.4s;
    position: relative;
    cursor: default;
  }
  
  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--olive);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }
  
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(107,127,91,0.2);
    border-color: var(--olive);
  }
  .service-card:hover::before { transform: scaleX(1); }
  
  .service-icon {
    align-items: center;
    background: var(--light-green);
    border: 1px solid var(--pastel-green);
    border-radius: 50%;
    color: var(--olive);
    display: inline-flex;
    font-size: 1.55rem;
    height: 3.25rem;
    justify-content: center;
    margin-bottom: 1.2rem;
    width: 3.25rem;
  }
  
  .service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--dark-green);
  }
  
  .service-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
  }

  /* ── STATS ── */
  .stats {
    background: var(--olive);
    padding: 4rem;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }

  .stats-grid > * { min-width: 0; }
  
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    white-space: nowrap;
  }
  
  .stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-top: 0.5rem;
  }

  /* ── TEAM ── */
  .team { background: var(--white); }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
  }
  
  .team-featured { grid-column: span 2; }
  
  .team-card {
    background: var(--cream);
    border: 1px solid var(--pastel-green);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s;
    position: relative;
  }
  
  .team-card:hover {
    border-color: var(--olive);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(107,127,91,0.2);
  }
  
  .team-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
  }
  
  .team-featured .team-img-wrap { aspect-ratio: 16/9; }
  
  .team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(10%);
    transition: transform 0.5s, filter 0.4s;
  }
  
  .team-card:hover .team-img {
    transform: scale(1.05);
    filter: grayscale(0%);
  }
  
  .team-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61,79,49,0.75) 0%, transparent 50%);
  }
  
  .team-role-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--olive);
    color: var(--white);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    font-weight: 600;
    z-index: 2;
    border-radius: 4px;
  }
  
  .team-info {
    padding: 1.4rem 1.6rem 1.6rem;
    position: relative;
    border-top: 1px solid var(--pastel-green);
  }
  
  .team-info h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--dark-green);
    margin-bottom: 0.3rem;
  }
  
  .team-featured .team-info h3 { font-size: 1.7rem; }
  
  .team-info span {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--olive);
    font-weight: 500;
  }

  /* ── REVIEWS ── */
  .reviews { background: var(--light-green); }
  
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .review-card {
    background: var(--white);
    padding: 2.2rem;
    border: 1px solid var(--pastel-green);
    border-radius: 8px;
    transition: all 0.3s;
  }
  
  .review-card:hover {
    border-color: var(--olive);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(107,127,91,0.15);
  }
  
  .review-stars {
    color: var(--olive);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
  }
  
  .review-text {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
  }
  
  .review-author {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--olive);
    font-weight: 500;
  }

  /* ── GALLERY ── */
  .gallery { background: var(--white); }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .gallery-item {
    background: var(--cream);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 8px;
    border: 1px solid var(--pastel-green);
  }
  
  .gallery-item:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }
  
  .gallery-item:hover img { transform: scale(1.05); }
  
  .gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(61,79,49,0.9), transparent);
    padding: 1.2rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.3s;
  }
  
  .gallery-item:hover .gallery-label { transform: translateY(0); }

  /* ── CONTACT ── */
  .contact { background: var(--light-green); }
  
  .contact-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    max-width: 760px;
    margin: 0 auto;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .form-group label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: var(--white);
    border: 1.5px solid var(--pastel-green);
    color: var(--text-dark);
    padding: 0.95rem 1.1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
    border-radius: 4px;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--olive);
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .form-group select option {
    background: var(--white);
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-detail {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
  }
  
  .contact-icon {
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--pastel-green);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--olive);
    font-size: 1.1rem;
    flex-shrink: 0;
    border-radius: 4px;
  }
  
  .contact-detail-text strong {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 0.4rem;
    font-weight: 600;
  }
  
  .contact-detail-text span {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
  }
  
  .contact-detail-text a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-detail-text a:hover { color: var(--olive); }
  
  .hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  
  .hours-row {
    font-size: 0.85rem;
    color: var(--text-muted);
  }
  
  .hours-row span { color: var(--olive); font-weight: 500; }

  /* ── FOOTER ── */
  footer {
    background: var(--white);
    padding: 3rem 4rem 2rem;
    border-top: 1px solid var(--pastel-green);
  }
  
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
  }
  
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-green);
    display: flex;
    align-items: center;
  }
  
  .footer-logo span {
    color: var(--olive);
    font-style: italic;
    margin-left: 0.3rem;
  }
  
  .footer-tagline {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.3rem;
  }
  
  .footer-tagline em {
    color: var(--olive);
    font-style: italic;
  }
  
  .footer-links {
    display: flex;
    gap: 2rem;
  }
  
  .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
    font-weight: 400;
  }
  .footer-links a:hover { color: var(--olive); }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--pastel-green);
  }
  
  .footer-copy {
    font-size: 0.78rem;
    color: var(--text-muted);
  }
  
  .whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s;
  }
  .whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s, transform 0.8s;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── MOBILE ── */
  @media (max-width: 1100px) {
    :root { --mobile-nav-height: 78px; }
    nav {
      min-height: calc(var(--mobile-nav-height) + env(safe-area-inset-top));
      padding: max(0.6rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) 0.6rem max(1rem, env(safe-area-inset-left));
      gap: 0.5rem;
    }
    nav.is-scrolled {
      padding-top: max(0.45rem, env(safe-area-inset-top));
      padding-bottom: 0.45rem;
    }
    .nav-logo {
      flex: 1 1 auto;
      min-width: 0;
      max-width: 270px;
    }
    .nav-logo-img {
      width: 100%;
      height: auto;
      max-height: 58px;
      object-fit: contain;
      object-position: left center;
    }
    .nav-links, .nav-cta { display: none; }
    .hamburger {
      display: flex;
      width: 44px;
      height: 44px;
      flex: 0 0 44px;
      align-items: center;
      justify-content: center;
    }
    .mobile-menu {
      top: calc(var(--mobile-nav-height) + env(safe-area-inset-top));
      max-height: calc(100dvh - var(--mobile-nav-height) - env(safe-area-inset-top));
      overflow-y: auto;
      overscroll-behavior: contain;
    }
    .mobile-menu a { min-height: 44px; }
  }

  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left {
      width: 100%;
      max-width: none;
      padding: calc(var(--mobile-nav-height) + 2.75rem) clamp(1.1rem, 5vw, 2rem) 3.5rem;
    }
    .hero-h1 { font-size: clamp(2.55rem, 11vw, 3.5rem); }
    .hero-sub { margin-bottom: 2.25rem; }
    .hero-actions { flex-wrap: wrap; }
    .hero-right { display: none; }
    .about-grid, .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-img-col { margin-right: 0.5rem; }
    .about-img-frame { right: -0.5rem; bottom: -0.75rem; }
    .about-badge {
      width: 104px;
      height: 104px;
      right: -0.25rem;
      bottom: -1.25rem;
    }
    .about-badge .big { font-size: 1.8rem; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 2.2rem 1.5rem; }
    .reviews-grid { grid-template-columns: 1fr; }
    .stats { padding: 3.5rem clamp(0.9rem, 4vw, 1.5rem); }
    .stats-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 2.75rem 0.75rem;
    }
    .stat-num { font-size: clamp(2.5rem, 13vw, 3.6rem); }
    .stat-label {
      max-width: 10rem;
      margin-left: auto;
      margin-right: auto;
      font-size: 0.68rem;
      letter-spacing: 0.11em;
      line-height: 1.5;
      overflow-wrap: anywhere;
    }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item:first-child { grid-row: auto; grid-column: span 2; }
    section { padding: clamp(3.5rem, 10vw, 4.5rem) clamp(1.1rem, 5vw, 2rem); }
    section.hero { padding: 0; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; gap: 1.5rem; }
    .footer-links { flex-wrap: wrap; }
    footer {
      padding: 3rem max(1.1rem, env(safe-area-inset-right)) max(2rem, env(safe-area-inset-bottom)) max(1.1rem, env(safe-area-inset-left));
    }
    .footer-logo img {
      width: min(100%, 320px) !important;
      height: auto !important;
    }
    .footer-bottom {
      align-items: flex-start;
      flex-direction: column;
      gap: 0.75rem;
    }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .team-featured { grid-column: span 2; }
    .partners {
      padding: clamp(4rem, 10vw, 5.5rem) clamp(1.1rem, 5vw, 2rem);
    }
    .partners-intro {
      grid-template-columns: 1fr;
      gap: 1.25rem;
      margin-bottom: 2.75rem;
    }
    .partners-copy { max-width: 600px; padding-bottom: 0; }
    .partner-ledger { grid-template-columns: 1fr; }
    .partner-group { padding: 1.75rem 0 2rem; }
    .partner-group + .partner-group {
      border-top: 1px solid var(--pastel-green);
      border-left: 0;
    }
    .partner-group-heading { min-height: 0; margin-bottom: 0.75rem; }
    .partner-list li { grid-template-columns: 104px minmax(0, 1fr); }
    .partner-trademark-note { text-align: left; }
    .whatsapp-btn {
      width: 54px;
      height: 54px;
      right: max(1rem, env(safe-area-inset-right));
      bottom: max(1rem, env(safe-area-inset-bottom));
    }
  }
  @media (max-width: 500px) {
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost { justify-content: center; text-align: center; width: 100%; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:first-child { grid-column: span 1; }
    .team-grid { grid-template-columns: 1fr; }
    .team-featured { grid-column: span 1; }
    .hours-grid { grid-template-columns: 1fr; }
    .booking-summary .s-row { flex-direction: column; gap: 0.15rem; }
    .booking-summary .s-val { overflow-wrap: anywhere; }
    .contact-form .btn-primary { min-height: 48px; width: 100%; }
    .partner-list li { grid-template-columns: 88px minmax(0, 1fr); }
  }

  @media (hover: none) {
    .gallery-label { transform: translateY(0); }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      scroll-behavior: auto !important;
      transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
  }

  /* ── TREATMENT GALLERY ── */
  .treatment-gallery { background: var(--cream); }

  .tg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .tg-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--pastel-green);
    background: var(--white);
    transition: all 0.4s;
    cursor: pointer;
  }

  .tg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(107,127,91,0.2);
    border-color: var(--olive);
  }

  .tg-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
  }

  .tg-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s;
  }

  .tg-card:hover .tg-img-wrap img { transform: scale(1.06); }

  .tg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61,79,49,0.92) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
  }

  .tg-card:hover .tg-overlay { opacity: 1; }

  .tg-overlay-content { color: var(--white); }

  .tg-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
  }

  .tg-desc {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    opacity: 0.85;
    line-height: 1.5;
  }

  .tg-info {
    padding: 1.2rem 1.4rem;
    border-top: 1px solid var(--pastel-green);
  }

  .tg-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--dark-green);
    margin-bottom: 0.3rem;
    font-weight: 500;
  }

  .tg-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
  }

  /* Lightbox */
  .tg-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }
  .tg-lightbox.open { display: flex; }

  .tg-lightbox-img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  }

  .tg-lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--olive);
    color: var(--white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 1001;
  }
  .tg-lightbox-close:hover { background: var(--dark-green); }

  @media (max-width: 900px) {
    .tg-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 580px) {
    .tg-grid { grid-template-columns: 1fr; }
  }

  /* ── CRAWLABLE INNER PAGES ── */
  .service-card { color: inherit; text-decoration: none; }
  .taras-page-main { padding-top: 96px; }
  .taras-page-hero {
    background: linear-gradient(135deg, var(--light-green), var(--cream) 72%);
    border-bottom: 1px solid var(--pastel-green);
    padding: clamp(3.5rem, 8vw, 7rem) clamp(1.25rem, 7vw, 6rem);
  }
  .taras-breadcrumbs {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: clamp(2.5rem, 6vw, 5rem);
    position: static;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    justify-content: flex-start;
  }
  .taras-breadcrumbs a,
  .taras-breadcrumbs span {
    color: var(--text-muted);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
  }
  .taras-breadcrumbs a:hover { color: var(--dark-green); }
  .taras-page-hero-grid {
    align-items: end;
    display: grid;
    gap: clamp(2rem, 8vw, 7rem);
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    margin: 0 auto;
    max-width: 1200px;
  }
  .taras-page-hero h1 {
    color: var(--dark-green);
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.75rem, 6vw, 5.75rem);
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.02;
    text-wrap: balance;
  }
  .taras-page-hero-grid > p {
    color: var(--text-muted);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.9;
    max-width: 600px;
  }
  .taras-page-service-icon {
    color: var(--olive);
    display: block;
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }
  .taras-highlight-band {
    background: var(--dark-green);
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    padding: 0;
  }
  .taras-highlight-band span {
    color: var(--cream);
    flex: 1 1 220px;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.11em;
    padding: 1.35rem clamp(1rem, 3vw, 2.5rem);
    text-align: center;
    text-transform: uppercase;
    overflow-wrap: anywhere;
  }
  .taras-highlight-band span + span { border-left: 1px solid rgba(232,245,227,0.2); }
  .taras-page-content { margin: 0 auto; max-width: 1200px; padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 3.5rem); }
  .taras-page-section {
    align-items: start;
    border-top: 1px solid var(--pastel-green);
    display: grid;
    gap: clamp(1.5rem, 6vw, 5rem);
    grid-template-columns: 56px minmax(0, 1fr);
    padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  }
  .taras-section-number { color: var(--olive); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; }
  .taras-page-section h2,
  .taras-related h2,
  .taras-page-cta h2 {
    color: var(--dark-green);
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 400;
    line-height: 1.16;
    margin-bottom: 1rem;
  }
  .taras-page-section p { color: var(--text-muted); font-size: 1rem; line-height: 1.9; max-width: 780px; }
  .taras-directory {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: clamp(4rem, 8vw, 7rem);
    background: var(--pastel-green);
    border: 1px solid var(--pastel-green);
  }
  .taras-directory-card { background: var(--cream); color: inherit; min-width: 0; padding: clamp(2rem, 5vw, 3.5rem); text-decoration: none; }
  .taras-directory-card > .bi { color: var(--olive); display: block; font-size: 1.8rem; margin-bottom: 1.25rem; }
  .taras-directory-card > span { color: var(--olive); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; }
  .taras-directory-card h2 { color: var(--dark-green); font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2.5vw, 2.25rem); font-weight: 400; line-height: 1.2; margin: 0.8rem 0 1rem; }
  .taras-directory-card p { color: var(--text-muted); display: -webkit-box; font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.5rem; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
  .taras-directory-card strong { color: var(--dark-green); display: flex; font-size: 0.75rem; font-weight: 600; justify-content: space-between; letter-spacing: 0.08em; text-transform: uppercase; }
  .taras-directory-card:hover { background: var(--light-green); }
  .taras-faq { display: block; }
  .taras-faq > div:last-child { border-bottom: 1px solid var(--pastel-green); margin-top: 2rem; }
  .taras-faq details { border-top: 1px solid var(--pastel-green); padding: 1.25rem 0; }
  .taras-faq summary { color: var(--dark-green); cursor: pointer; font-weight: 500; list-style-position: outside; margin-left: 1rem; padding-left: 0.5rem; }
  .taras-faq details p { padding: 1rem 0 0 1.5rem; }
  .taras-related {
    background: var(--light-green);
    display: grid;
    gap: clamp(2rem, 7vw, 6rem);
    grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
    padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 7vw, 6rem);
  }
  .taras-related > div:last-child { border-top: 1px solid var(--olive); }
  .taras-related a { align-items: center; border-bottom: 1px solid var(--pastel-green); color: var(--dark-green); display: flex; font-size: 0.95rem; font-weight: 500; justify-content: space-between; padding: 1.2rem 0; text-decoration: none; text-transform: capitalize; }
  .taras-related a:hover { color: var(--olive); }
  .taras-page-cta { align-items: center; background: var(--cream); display: grid; gap: 3rem; grid-template-columns: minmax(0, 1fr) auto; padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 7vw, 6rem); }
  .taras-page-cta p { color: var(--text-muted); max-width: 660px; }
  .taras-page-cta > div:last-child { align-items: flex-start; display: flex; flex-direction: column; gap: 1rem; }
  .taras-page-gallery { display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 4rem; }
  .taras-page-gallery figure:first-child { grid-column: 1 / -1; }
  .taras-page-gallery img { aspect-ratio: 16 / 10; display: block; object-fit: cover; width: 100%; }
  .taras-page-gallery figcaption { color: var(--text-muted); font-size: 0.75rem; padding: 0.65rem 0; }
  .taras-review-grid { display: grid; gap: 1px; grid-template-columns: repeat(2, minmax(0, 1fr)); background: var(--pastel-green); border: 1px solid var(--pastel-green); margin-bottom: 1.25rem; }
  .taras-review-grid figure { background: var(--cream); padding: clamp(2rem, 5vw, 3.5rem); }
  .taras-review-grid blockquote { color: var(--dark-green); font-family: 'Playfair Display', serif; font-size: clamp(1.25rem, 2.5vw, 1.8rem); line-height: 1.45; }
  .taras-review-grid figcaption { color: var(--olive); font-size: 0.7rem; letter-spacing: 0.1em; margin-top: 1.5rem; text-transform: uppercase; }
  .taras-review-note { color: var(--text-muted); font-size: 0.75rem; margin-bottom: 4rem; }
  .taras-doctor-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: clamp(4rem, 8vw, 7rem); }
  .taras-doctor-card { background: var(--cream); border: 1px solid var(--pastel-green); min-width: 0; overflow: hidden; }
  .taras-doctor-card--featured { grid-column: span 2; }
  .taras-doctor-card img { aspect-ratio: 4 / 4.6; display: block; object-fit: cover; object-position: center top; width: 100%; }
  .taras-doctor-card--featured img { aspect-ratio: 8 / 4.6; }
  .taras-doctor-card figcaption { display: grid; gap: 0.45rem; padding: 1.25rem; }
  .taras-doctor-card strong { color: var(--dark-green); font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 2.4vw, 1.85rem); font-weight: 400; }
  .taras-doctor-card span { color: var(--olive); font-size: 0.7rem; letter-spacing: 0.1em; line-height: 1.55; text-transform: uppercase; }
  .taras-contact-actions { background: var(--pastel-green); border: 1px solid var(--pastel-green); display: grid; gap: 1px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: clamp(4rem, 8vw, 7rem); }
  .taras-contact-actions a { background: var(--cream); color: inherit; display: grid; gap: 0.6rem; min-width: 0; padding: clamp(1.5rem, 5vw, 3rem); text-decoration: none; }
  .taras-contact-actions a:hover { background: var(--light-green); }
  .taras-contact-actions span { color: var(--olive); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; }
  .taras-contact-actions strong { color: var(--dark-green); font-family: 'Playfair Display', serif; font-size: clamp(1.1rem, 2.3vw, 1.65rem); font-weight: 400; overflow-wrap: anywhere; }
  .taras-page-main + footer .footer-logo img { display: block; height: 72px; width: auto; }
  .taras-page-main ~ .whatsapp-btn span { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.04em; }

  /* ── GLOO CONNECTED CONTENT ── */
  .taras-connected { background: var(--cream); }
  .taras-connected:nth-of-type(even) { background: var(--light-green); }
  .taras-connected-inner { margin: 0 auto; max-width: 1200px; }
  .taras-connected-review-grid { display: grid; gap: 1px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 2.5rem; overflow: hidden; background: var(--pastel-green); border: 1px solid var(--pastel-green); border-radius: 8px; }
  .taras-connected-review { background: var(--white); display: flex; flex-direction: column; min-width: 0; padding: clamp(1.6rem, 4vw, 2.5rem); }
  .taras-connected-stars { color: #b88b32; font-size: 0.78rem; letter-spacing: 0.15em; }
  .taras-connected-review blockquote { color: var(--text-dark); flex: 1; font-family: 'Playfair Display', serif; font-size: clamp(1.05rem, 2vw, 1.35rem); line-height: 1.65; margin-top: 1.25rem; }
  .taras-connected-review figcaption { align-items: center; color: var(--olive); display: flex; gap: 0.8rem; margin-top: 1.5rem; }
  .taras-review-avatar { background: var(--light-green); border: 1px solid var(--pastel-green); border-radius: 50%; display: block; flex: 0 0 44px; height: 44px; overflow: hidden; }
  .taras-review-avatar img { display: block; height: 100%; object-fit: cover; width: 100%; }
  .taras-review-author { display: grid; gap: 0.28rem; min-width: 0; }
  .taras-review-author strong { color: var(--dark-green); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.045em; line-height: 1.35; overflow-wrap: anywhere; text-transform: none; }
  .taras-review-author small { align-items: center; color: var(--olive); display: inline-flex; font-size: 0.62rem; gap: 0.38rem; letter-spacing: 0.1em; text-transform: uppercase; }
  .taras-review-author .bi-google { font-size: 0.72rem; }
  .taras-connected-link { align-items: center; color: var(--dark-green); display: inline-flex; font-size: 0.74rem; font-weight: 600; gap: 0.75rem; letter-spacing: 0.09em; margin-top: 1.5rem; text-decoration: none; text-transform: uppercase; }
  .taras-instagram-grid { display: grid; gap: 0.8rem; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 2.5rem; }
  .taras-instagram-card { background: var(--white); border: 1px solid rgba(107,127,91,0.18); color: inherit; display: flex; flex-direction: column; min-width: 0; overflow: hidden; position: relative; text-decoration: none; }
  .taras-instagram-head { align-items: center; display: flex; justify-content: space-between; min-height: 52px; padding: 0.72rem 0.9rem; }
  .taras-instagram-head > span { align-items: center; display: inline-flex; gap: 0.55rem; min-width: 0; }
  .taras-instagram-head .bi-instagram { color: #a13d75; font-size: 1.05rem; }
  .taras-instagram-head strong { color: var(--dark-green); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.035em; }
  .taras-instagram-head > .bi-arrow-up-right { color: var(--olive); font-size: 0.85rem; }
  .taras-instagram-media { align-items: center; aspect-ratio: 4 / 5; background: #f2f0ea; display: flex; justify-content: center; overflow: hidden; position: relative; }
  .taras-instagram-card img { display: block; height: 100%; object-fit: contain; transition: transform 0.4s ease; width: 100%; }
  .taras-instagram-card:hover img { transform: scale(1.025); }
  .taras-instagram-kind { align-items: center; background: rgba(31,43,27,0.86); border-radius: 999px; color: var(--white); display: inline-flex; font-size: 0.64rem; font-weight: 600; gap: 0.25rem; letter-spacing: 0.08em; padding: 0.38rem 0.62rem; position: absolute; right: 0.7rem; text-transform: uppercase; top: 0.7rem; }
  .taras-instagram-caption { background: var(--white); display: -webkit-box; font-size: 0.78rem; line-height: 1.55; min-height: 3.3rem; overflow: hidden; padding: 0.85rem 1rem 1rem; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .taras-location-grid { align-items: center; display: grid; gap: clamp(2rem, 7vw, 6rem); grid-template-columns: minmax(260px, .7fr) minmax(360px, 1.3fr); margin-top: 2.5rem; }
  .taras-location-copy { align-items: flex-start; display: flex; flex-direction: column; gap: 0.9rem; }
  .taras-location-copy h3 { color: var(--dark-green); font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400; }
  .taras-location-copy p, .taras-location-copy > a:not(.btn-primary) { color: var(--text-muted); line-height: 1.7; text-decoration: none; }
  .taras-map-frame, .taras-map-fallback { background: var(--white); border: 1px solid var(--pastel-green); border-radius: 8px; min-height: 380px; width: 100%; }
  .taras-map-frame { border: 0; }
  .taras-map-fallback { align-items: center; color: var(--olive); display: flex; flex-direction: column; gap: 1rem; justify-content: center; text-align: center; }
  .taras-map-fallback .bi { font-size: 2rem; }

  @media (max-width: 760px) {
    .taras-page-main { padding-top: 84px; }
    .taras-page-hero-grid,
    .taras-related,
    .taras-page-cta { grid-template-columns: 1fr; }
    .taras-page-hero h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
    .taras-highlight-band { display: grid; grid-template-columns: 1fr 1fr; }
    .taras-highlight-band span { min-width: 0; }
    .taras-highlight-band span + span { border-left: 0; }
    .taras-highlight-band span:nth-child(even) { border-left: 1px solid rgba(232,245,227,0.2); }
    .taras-directory,
    .taras-review-grid { grid-template-columns: 1fr; }
    .taras-page-section { grid-template-columns: 36px minmax(0, 1fr); }
    .taras-page-gallery { grid-template-columns: 1fr; }
    .taras-page-gallery figure:first-child { grid-column: auto; }
    .taras-doctor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .taras-doctor-card--featured { grid-column: span 2; }
    .taras-contact-actions { grid-template-columns: 1fr; }
    .taras-connected-review-grid { grid-template-columns: 1fr; }
    .taras-instagram-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .taras-instagram-media { aspect-ratio: 1 / 1; }
    .taras-location-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 500px) {
    .taras-doctor-grid { grid-template-columns: 1fr; }
    .taras-doctor-card--featured { grid-column: auto; }
    .taras-doctor-card--featured img { aspect-ratio: 4 / 4.6; }
    .taras-instagram-grid { grid-template-columns: 1fr; }
    .taras-instagram-media { aspect-ratio: 4 / 5; }
    .taras-map-frame, .taras-map-fallback { min-height: 300px; }
  }


/* --- universal contact experience --- */
.gw-contact-layout { display:grid; grid-template-columns:minmax(0,.85fr) minmax(320px,1.15fr); gap:clamp(2rem,6vw,5rem); align-items:start; }
.gw-contact-intro { position:sticky; top:110px; }
.gw-contact-intro h2 { margin:.35rem 0 1rem; }
.gw-contact-response { margin-top:1.4rem; }
.gw-contact-safety { margin-top:1rem; padding:.9rem 1rem; border-radius:12px; background:#fff7ed; color:#7c2d12; border:1px solid #fed7aa; }
.gw-contact-fallback { margin-top:1.25rem; }
.gw-contact-form { padding:clamp(1.25rem,4vw,2rem); border:1px solid var(--gw-line,#d6d3d1); border-radius:18px; background:var(--gw-surface-raised,#fff); box-shadow:0 20px 50px rgba(28,25,23,.08); }
.gw-form-field { display:grid; gap:.45rem; margin-bottom:1rem; }
.gw-form-pair { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.gw-form-field label { font-weight:700; font-size:.92rem; }
.gw-form-field input,.gw-form-field select,.gw-form-field textarea { width:100%; min-height:46px; border:1px solid var(--gw-line,#d6d3d1); border-radius:10px; padding:.72rem .82rem; background:var(--gw-surface,#fff); color:var(--gw-ink,#1c1917); font:inherit; }
.gw-form-field textarea { min-height:130px; resize:vertical; }
.gw-form-field input:focus,.gw-form-field select:focus,.gw-form-field textarea:focus { outline:3px solid color-mix(in srgb,var(--gw-brand,#2563eb) 22%,transparent); border-color:var(--gw-brand,#2563eb); }
.gw-form-help,.gw-form-privacy { margin:-.45rem 0 1rem; color:var(--gw-muted,#57534e); font-size:.82rem; line-height:1.55; }
.gw-honeypot { position:absolute!important; width:1px!important; height:1px!important; overflow:hidden!important; clip:rect(0 0 0 0)!important; white-space:nowrap!important; }
.gw-contact-form .cf-turnstile { margin:1rem 0; min-height:65px; }
.gw-form-status { min-height:1.5rem; margin-top:.8rem; font-size:.9rem; font-weight:600; }
.gw-form-status[data-state="success"] { color:#166534; }
.gw-form-status[data-state="error"] { color:#b91c1c; }
.gw-contact-form[aria-busy="true"] button[type="submit"] { opacity:.65; cursor:wait; }
.gw-privacy p { max-width:70ch; }
@media (max-width:760px) { .gw-contact-layout { grid-template-columns:1fr; } .gw-contact-intro { position:static; } .gw-form-pair { grid-template-columns:1fr; gap:0; } .gw-contact-form { border-radius:14px; } }
@media (prefers-reduced-motion:reduce) { .gw-contact-form * { scroll-behavior:auto!important; } }
