*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --white: #f8faf9;
      --blue: #2a6ea6;
      --blue-light: #e8f1f9;
      --blue-mid: #b8d4ec;
      --green: #3a8c6e;
      --green-light: #e5f3ed;
      --green-mid: #a8d5c2;
      --ink: #1a2520;
      --ink-soft: #4a5e57;
      --ink-muted: #8a9e97;
      --border: #d5e5de;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--white);
      color: var(--ink);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.5rem 4rem;
      background: rgba(248,250,249,0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 300;
      letter-spacing: 0.05em; color: var(--ink); text-decoration: none;
    }
    .nav-logo span { color: var(--green); }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a {
      font-size: 0.82rem; font-weight: 400; letter-spacing: 0.1em;
      text-transform: uppercase; text-decoration: none;
      color: var(--ink-soft); transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--green); }
    .nav-links a.active { color: var(--green); }
    .nav-cta {
      background: var(--green) !important; color: white !important;
      padding: 0.6rem 1.4rem; border-radius: 100px;
    }

    /* ── PAGE HEADER ── */
    .page-header {
      padding: 9rem 4rem 5rem;
      background: var(--ink);
      position: relative; overflow: hidden;
    }
    .page-header::before {
      content: ''; position: absolute;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(58,140,110,0.13) 0%, transparent 70%);
      top: 50%; left: 15%; transform: translate(-50%, -50%);
    }
    .page-header::after {
      content: ''; position: absolute;
      width: 350px; height: 350px; border-radius: 50%;
      background: radial-gradient(circle, rgba(42,110,166,0.1) 0%, transparent 70%);
      top: 20%; right: 8%;
    }
    .header-inner {
      max-width: 1100px; margin: 0 auto;
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr auto;
      gap: 4rem; align-items: center;
    }
    .header-tag {
      font-size: 0.72rem; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--green-mid);
      font-weight: 500; margin-bottom: 1rem; display: block;
    }
    .header-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 4.5vw, 4rem);
      font-weight: 300; color: white; line-height: 1.1;
      margin-bottom: 1rem;
    }
    .header-title em { font-style: italic; color: var(--green-mid); }
    .header-sub {
      font-size: 0.92rem; color: rgba(255,255,255,0.45);
      font-weight: 300; line-height: 1.7;
    }
    .header-stat-block {
      display: flex; flex-direction: column;
      align-items: center; gap: 0.3rem;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 1.2rem; padding: 2rem 2.5rem;
      text-align: center; flex-shrink: 0;
    }
    .header-stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem; font-weight: 300;
      color: var(--green-mid); line-height: 1;
    }
    .header-stat-stars { display: flex; gap: 0.2rem; justify-content: center; margin: 0.3rem 0; }
    .star { color: #f5a623; font-size: 1rem; }
    .header-stat-label {
      font-size: 0.75rem; color: rgba(255,255,255,0.35);
      text-transform: uppercase; letter-spacing: 0.1em;
    }

    /* ── SUBMIT REVIEW FORM ── */
    .submit-section {
      max-width: 1100px; margin: 0 auto;
      padding: 5rem 2rem 0;
    }
    .submit-card {
      background: white;
      border: 1.5px solid var(--border);
      border-radius: 1.5rem;
      padding: 2.5rem 3rem;
      margin-bottom: 4rem;
    }
    .submit-card-header {
      display: flex; align-items: flex-start;
      justify-content: space-between;
      gap: 2rem; margin-bottom: 2rem;
      flex-wrap: wrap;
    }
    .submit-card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem; font-weight: 300;
      margin-bottom: 0.3rem;
    }
    .submit-card-sub {
      font-size: 0.85rem; color: var(--ink-muted);
      font-weight: 300; line-height: 1.6;
    }
    .google-review-link {
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-size: 0.8rem; color: var(--ink-muted);
      text-decoration: none; border: 1px solid var(--border);
      padding: 0.5rem 1rem; border-radius: 100px;
      transition: border-color 0.2s, color 0.2s;
      white-space: nowrap; flex-shrink: 0;
    }
    .google-review-link:hover { border-color: var(--green); color: var(--green); }

    /* Star picker */
    .star-picker { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
    .star-picker-label {
      font-size: 0.75rem; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--ink-soft);
    }
    .star-row { display: flex; gap: 0.3rem; }
    .star-btn {
      background: none; border: none; cursor: pointer;
      font-size: 1.6rem; color: var(--border);
      transition: color 0.15s, transform 0.1s;
      padding: 0; line-height: 1;
    }
    .star-btn:hover { transform: scale(1.15); }
    .star-btn.lit { color: #f5a623; }

    .form-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
    }
    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
    .form-group.full { grid-column: 1 / -1; }
    label {
      font-size: 0.75rem; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--ink-soft);
    }
    input, select, textarea {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.92rem; font-weight: 300;
      color: var(--ink); background: var(--white);
      border: 1px solid var(--border);
      border-radius: 0.75rem; padding: 0.85rem 1.1rem;
      width: 100%; outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      appearance: none;
    }
    input:focus, select:focus, textarea:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(58,140,110,0.1);
    }
    textarea { resize: none; min-height: 110px; }

    .session-type-toggle {
      display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem;
    }
    .stype-opt { position: relative; }
    .stype-opt input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
    .stype-opt label {
      display: flex; align-items: center; gap: 0.6rem;
      padding: 0.75rem 1rem;
      border: 1.5px solid var(--border); border-radius: 0.75rem;
      cursor: pointer; text-transform: none;
      letter-spacing: 0; font-size: 0.88rem;
      font-weight: 400; color: var(--ink-soft);
      transition: all 0.2s;
    }
    .stype-opt input:checked + label {
      border-color: var(--green); background: var(--green-light); color: var(--green);
    }

    .submit-btn {
      display: flex; align-items: center; justify-content: center;
      gap: 0.6rem; background: var(--green); color: white;
      padding: 1rem 2.5rem; border-radius: 100px;
      font-size: 0.92rem; font-weight: 500; border: none;
      cursor: pointer; transition: background 0.2s, transform 0.15s;
      font-family: 'DM Sans', sans-serif; margin-top: 1.5rem;
    }
    .submit-btn:hover { background: var(--blue); transform: translateY(-1px); }

    .pending-notice {
      display: flex; align-items: flex-start; gap: 0.8rem;
      background: var(--blue-light); border: 1px solid var(--blue-mid);
      border-radius: 0.75rem; padding: 1rem 1.2rem;
      font-size: 0.82rem; color: var(--blue);
      font-weight: 300; line-height: 1.6; margin-top: 1.2rem;
    }
    .pending-notice strong { font-weight: 500; }

    /* Success state */
    .submit-success {
      display: none;
      text-align: center; padding: 3rem 2rem;
    }
    .submit-success.visible { display: block; }
    .success-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
    .success-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem; font-weight: 300; margin-bottom: 0.6rem;
    }
    .success-body {
      font-size: 0.88rem; color: var(--ink-soft);
      font-weight: 300; line-height: 1.7;
    }

    /* ── REVIEWS GRID ── */
    .reviews-section {
      max-width: 1100px; margin: 0 auto;
      padding: 0 2rem 6rem;
    }
    .reviews-header {
      display: flex; align-items: center;
      justify-content: space-between;
      margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
    }
    .reviews-header-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 300;
    }
    .reviews-header-title em { font-style: italic; color: var(--green); }
    .reviews-count {
      font-size: 0.78rem; color: var(--ink-muted);
      font-weight: 300;
    }

    /* Filter bar */
    .filter-bar {
      display: flex; gap: 0.5rem; margin-bottom: 2rem;
      flex-wrap: wrap;
    }
    .filter-btn {
      padding: 0.45rem 1.1rem; border-radius: 100px;
      border: 1px solid var(--border); background: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.78rem; color: var(--ink-soft);
      cursor: pointer; transition: all 0.2s;
    }
    .filter-btn:hover { border-color: var(--green); color: var(--green); }
    .filter-btn.active { background: var(--green); border-color: var(--green); color: white; }

    .reviews-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
    }

    .review-card {
      background: white; border: 1px solid var(--border);
      border-radius: 1.2rem; padding: 1.8rem;
      display: flex; flex-direction: column; gap: 1rem;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .review-card:hover {
      box-shadow: 0 8px 30px rgba(58,140,110,0.08);
      transform: translateY(-2px);
    }
    .review-card.placeholder-card {
      border-style: dashed; opacity: 0.5;
      pointer-events: none;
    }
    .review-card-top {
      display: flex; align-items: center; gap: 0.8rem;
    }
    .review-avatar {
      width: 2.6rem; height: 2.6rem; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem; font-weight: 400; color: white; flex-shrink: 0;
    }
    .av-green { background: var(--green); }
    .av-blue { background: var(--blue); }
    .av-grad { background: linear-gradient(135deg, var(--green), var(--blue)); }
    .av-teal { background: #2a9d8f; }
    .av-muted { background: var(--ink-muted); }

    .review-name { font-size: 0.9rem; font-weight: 500; color: var(--ink); }
    .review-date { font-size: 0.72rem; color: var(--ink-muted); margin-top: 0.1rem; }
    .review-google-badge {
      display: flex; align-items: center; gap: 0.3rem;
      margin-left: auto; font-size: 0.7rem; color: var(--ink-muted); flex-shrink: 0;
    }
    .review-stars { display: flex; gap: 0.15rem; }
    .review-stars .star { font-size: 0.85rem; }
    .review-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; font-style: italic;
      font-weight: 300; line-height: 1.65; color: var(--ink); flex: 1;
    }
    .review-tag {
      display: inline-flex; align-items: center; gap: 0.4rem;
      font-size: 0.7rem; text-transform: uppercase;
      letter-spacing: 0.1em; font-weight: 500;
      color: var(--green); background: var(--green-light);
      padding: 0.25rem 0.7rem; border-radius: 100px;
      width: fit-content;
    }
    .review-tag.blue {
      color: var(--blue); background: var(--blue-light);
    }
    .placeholder-label {
      font-size: 0.72rem; color: var(--ink-muted);
      text-align: center; padding: 1rem 0;
      font-style: italic;
    }

    /* ── GOOGLE CTA ── */
    .google-cta-section {
      background: var(--ink); padding: 5rem 2rem;
    }
    .google-cta-inner {
      max-width: 680px; margin: 0 auto; text-align: center;
    }
    .google-cta-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 300; color: white; line-height: 1.2;
      margin-bottom: 0.8rem;
    }
    .google-cta-title em { font-style: italic; color: var(--green-mid); }
    .google-cta-sub {
      font-size: 0.9rem; color: rgba(255,255,255,0.4);
      font-weight: 300; margin-bottom: 2rem; line-height: 1.6;
    }
    .google-cta-btn {
      display: inline-flex; align-items: center; gap: 0.8rem;
      background: white; color: var(--ink);
      padding: 1rem 2.2rem; border-radius: 100px;
      font-size: 0.92rem; font-weight: 500;
      text-decoration: none; transition: background 0.2s;
    }
    .google-cta-btn:hover { background: var(--green-light); }

    /* ── MOBILE NAV ── */
    .mobile-nav {
      display: none; position: fixed;
      bottom: 1.5rem; left: 50%; transform: translateX(-50%);
      z-index: 200; background: rgba(26,37,32,0.92);
      backdrop-filter: blur(16px); border-radius: 100px;
      padding: 0.75rem 1.5rem; align-items: center; gap: 1.5rem;
      box-shadow: 0 8px 32px rgba(0,0,0,0.25); white-space: nowrap;
    }
    .mobile-nav-logo {
      font-family: 'Cormorant Garamond', serif; font-size: 1rem;
      font-weight: 300; color: white; text-decoration: none; letter-spacing: 0.05em;
    }
    .mobile-nav-logo span { color: var(--green-mid); }
    .mobile-nav-divider { width: 1px; height: 1.2rem; background: rgba(255,255,255,0.15); }
    .mobile-menu-btn {
      display: flex; align-items: center; gap: 0.5rem;
      background: none; border: none; color: rgba(255,255,255,0.8);
      font-family: 'DM Sans', sans-serif; font-size: 0.78rem;
      font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
      cursor: pointer; padding: 0;
    }
    .mobile-menu-icon { display: flex; flex-direction: column; gap: 3px; }
    .mobile-menu-icon span {
      display: block; width: 16px; height: 1.5px;
      background: rgba(255,255,255,0.8); border-radius: 2px; transition: all 0.25s;
    }
    .mobile-menu-btn.open .mobile-menu-icon span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
    .mobile-menu-btn.open .mobile-menu-icon span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.open .mobile-menu-icon span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }
    .mobile-menu-drawer {
      position: fixed; bottom: 5rem; left: 50%; transform: translateX(-50%);
      z-index: 199; background: rgba(26,37,32,0.97);
      backdrop-filter: blur(20px); border-radius: 1.2rem;
      padding: 1.2rem; min-width: 220px;
      display: none; flex-direction: column; gap: 0.3rem;
      box-shadow: 0 8px 40px rgba(0,0,0,0.3); animation: drawerUp 0.25s ease;
    }
    .mobile-menu-drawer.open { display: flex; }
    @keyframes drawerUp {
      from { opacity: 0; transform: translateX(-50%) translateY(10px); }
      to   { opacity: 1; transform: translateX(-50%) translateY(0); }
    }
    .drawer-link {
      display: flex; align-items: center; gap: 0.8rem;
      padding: 0.75rem 1rem; border-radius: 0.75rem;
      text-decoration: none; font-size: 0.9rem;
      color: rgba(255,255,255,0.75); font-weight: 300;
      transition: background 0.15s, color 0.15s;
    }
    .drawer-link:hover, .drawer-link.active { background: rgba(58,140,110,0.2); color: white; }
    .drawer-link-icon { font-size: 1rem; width: 1.5rem; text-align: center; }
    .drawer-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 0.3rem 0; }
    .drawer-book-btn {
      display: flex; align-items: center; justify-content: center;
      padding: 0.85rem; border-radius: 100px;
      background: var(--green); color: white;
      text-decoration: none; font-size: 0.88rem; font-weight: 500;
      margin-top: 0.3rem; transition: background 0.2s;
    }
    .drawer-book-btn:hover { background: var(--blue); }

    /* ── REVEAL ── */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 1.2rem 1.5rem; }
      .nav-links { display: none; }
      .mobile-nav { display: flex; }
      .page-header { padding: 7rem 1.5rem 3rem; }
      .header-inner { grid-template-columns: 1fr; gap: 2rem; }
      .header-stat-block { flex-direction: row; justify-content: center; padding: 1.2rem 2rem; }
      .submit-section { padding: 3rem 1.5rem 0; }
      .submit-card { padding: 1.5rem; }
      .form-grid { grid-template-columns: 1fr; }
      .session-type-toggle { grid-template-columns: 1fr; }
      .reviews-section { padding: 0 1.5rem 4rem; }
      .reviews-grid { grid-template-columns: 1fr; }
      .google-cta-section { padding: 4rem 1.5rem; }
    }