  :root {
    --cream: #F7F9F8;
    --cream-dark: #EDF2EF;
    --sage: #5B8C7A;
    --sage-light: #E3ECE8;
    --sage-dark: #3E5F52;
    --terracotta: #D9B382;
    --terracotta-light: #F5EDDE;
    --brown: #2D3A36;
    --brown-mid: #6B7B74;
    --brown-light: #9AA8A1;
    --white: #FFFFFF;
    --border: rgba(45,58,54,0.10);
  }

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

  html {
    scroll-behavior: smooth;
  }

  /* ─── BUTTERY SMOOTH SCROLL ─── */
  * { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
  .page { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--brown);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ─── NOISE TEXTURE OVERLAY ─── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
  }

  /* ─── AMBIENT PARTICLES CANVAS ─── */
  #ambient-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
  }

  /* ─── GLASSMORPHISM / LIQUID GLASS SYSTEM ─── */
  .glass {
    background: rgba(255,255,255,0.45);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 8px 32px rgba(45,58,54,0.06), inset 0 1px 0 rgba(255,255,255,0.6);
  }
  .glass-dark {
    background: rgba(45,58,54,0.06);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(45,58,54,0.08);
    box-shadow: 0 8px 32px rgba(45,58,54,0.04), inset 0 1px 0 rgba(255,255,255,0.4);
  }
  .glass-sage {
    background: rgba(91,140,122,0.12);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border: 1px solid rgba(91,140,122,0.2);
    box-shadow: 0 8px 32px rgba(91,140,122,0.08), inset 0 1px 0 rgba(255,255,255,0.5);
  }

  /* ─── SCROLL-REVEAL ANIMATIONS ─── */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
    will-change: opacity, transform;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
    will-change: opacity, transform;
  }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
    will-change: opacity, transform;
  }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }
  .reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
    will-change: opacity, transform;
  }
  .reveal-scale.visible { opacity: 1; transform: scale(1); }

  /* ─── STAGGER DELAYS ─── */
  .delay-1 { transition-delay: 0.1s !important; }
  .delay-2 { transition-delay: 0.2s !important; }
  .delay-3 { transition-delay: 0.3s !important; }
  .delay-4 { transition-delay: 0.4s !important; }
  .delay-5 { transition-delay: 0.5s !important; }

  /* ─── FLOATING BREATH ANIMATION ─── */
  @keyframes breathe {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .breathe { animation: breathe 4s ease-in-out infinite; }
  .breathe-slow { animation: breathe 6s ease-in-out infinite; }

  /* ─── GLOW PULSE ─── */
  @keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(91,140,122,0.15); }
    50% { box-shadow: 0 0 40px rgba(91,140,122,0.3); }
  }

  /* ─── GRADIENT ORB BACKGROUNDS ─── */
  .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    animation: orbFloat 12s ease-in-out infinite;
    will-change: transform;
  }
  @keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
  }

  /* ─── SMOOTH RIPPLE HOVER ─── */
  .ripple-hover {
    position: relative;
    overflow: hidden;
  }
  .ripple-hover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(91,140,122,0.12) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }
  .ripple-hover:hover::after { opacity: 1; }

  /* ─── PAGE SYSTEM ─── */
  .page { display: none; position: relative; z-index: 1; }
  .page.active { display: block; animation: pageReveal 0.6s cubic-bezier(0.16,1,0.3,1); }
  @keyframes pageReveal {
    from { opacity: 0; transform: translateY(16px); filter: blur(4px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
  }

  /* ─── NAV ─── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250,247,242,0.65);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 1px 20px rgba(45,58,54,0.04), inset 0 -1px 0 rgba(255,255,255,0.3);
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    transition: background 0.4s ease, box-shadow 0.4s ease;
  }
  nav.scrolled {
    background: rgba(250,247,242,0.85);
    box-shadow: 0 4px 30px rgba(45,58,54,0.08);
  }

  .nav-brand {
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  .nav-brand img {
    height: 40px;
    width: auto;
    display: block;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
  }
  .nav-links a {
    font-size: 14px;
    color: var(--brown-mid);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    cursor: pointer;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--brown); }
  .nav-links a.active { font-weight: 500; }

  .nav-cta {
    background: var(--sage);
    color: white !important;
    padding: 9px 20px;
    border-radius: 100px;
    font-size: 13px !important;
    font-weight: 500 !important;
    transition: background 0.2s, transform 0.15s !important;
  }
  .nav-cta:hover { background: var(--sage-dark) !important; transform: translateY(-1px); }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { width: 22px; height: 1.5px; background: var(--brown); transition: all 0.25s; display: block; }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    padding: 6vw 5vw;
    overflow: hidden;
  }

  /* Full-bleed background video */
  .hero-bg-video {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  /* Dark gradient scrim — darker on the left where the text sits,
     fading toward transparent on the right so the video shows through. */
  .hero-scrim {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(45,58,54,0.88) 0%, rgba(45,58,54,0.72) 35%, rgba(45,58,54,0.35) 65%, rgba(45,58,54,0.25) 100%),
      linear-gradient(180deg, rgba(45,58,54,0.25) 0%, transparent 30%, transparent 70%, rgba(45,58,54,0.35) 100%);
  }

  /* Text overlay sits above the video */
  .hero-text {
    position: relative;
    z-index: 2;
    max-width: 580px;
  }

  .hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 0.04em;
    border: 1px solid rgba(255,255,255,0.25);
    animation: breathe 5s ease-in-out infinite;
  }
  .hero-pill::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #A8D8B9;
    animation: glowDot 2s ease-in-out infinite;
  }
  @keyframes glowDot {
    0%, 100% { box-shadow: 0 0 4px rgba(168,216,185,0.5); }
    50% { box-shadow: 0 0 10px rgba(168,216,185,0.9); }
  }

  .hero h1 {
    font-family: 'Lora', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 500;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }
  .hero h1 em {
    font-style: italic;
    color: #D9B382; /* warm sand-gold — reads well on the dark scrim */
  }

  .hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.88);
    line-height: 1.75;
    margin-bottom: 36px;
    font-weight: 300;
    max-width: 480px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.25);
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sage);
    color: white;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    border: none;
    box-shadow: 0 4px 16px rgba(91,140,122,0.25);
    position: relative;
    overflow: hidden;
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .btn-primary:hover {
    background: var(--sage-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(91,140,122,0.35);
  }
  .btn-primary:hover::before { opacity: 1; }
  .btn-primary:active { transform: translateY(-1px) scale(0.98); }



  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #FFFFFF;
    padding: 14px 24px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    border: 1px solid rgba(255,255,255,0.35);
    text-shadow: 0 1px 8px rgba(0,0,0,0.25);
  }
  .btn-secondary:hover {
    background: rgba(255,255,255,0.32);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
    border-color: rgba(255,255,255,0.5);
  }
  .btn-secondary:active { transform: translateY(0); }

  /* ─── TRUST BAR ─── */
  .trust-bar {
    border-top: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    padding: 20px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: 0 1px 20px rgba(45,58,54,0.03);
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--brown-mid);
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  }
  .trust-item:hover {
    transform: translateY(-2px);
  }
  .trust-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(91,140,122,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .trust-item:hover .trust-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(91,140,122,0.15);
  }
  .trust-item strong { color: var(--brown); font-weight: 500; }

  /* ─── SECTIONS ─── */
  section { padding: 80px 5vw; }
  section.alt-bg {
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  section.sage-bg {
    background: rgba(91,140,122,0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Lora', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--brown);
    line-height: 1.25;
    margin-bottom: 16px;
  }
  .section-sub {
    font-size: 17px;
    color: var(--brown-mid);
    max-width: 560px;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 48px;
  }

  /* ─── SERVICES ─── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }
  .service-card {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    padding: 28px;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease, border-color 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(45,58,54,0.04), inset 0 1px 0 rgba(255,255,255,0.6);
  }
  .service-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 50px rgba(45,58,54,0.1), inset 0 1px 0 rgba(255,255,255,0.8);
    border-color: rgba(91,140,122,0.3);
  }
  .service-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--terracotta-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
  }
  .service-card h3 {
    font-family: 'Lora', serif;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--brown);
  }
  .service-card p {
    font-size: 14px;
    color: var(--brown-mid);
    line-height: 1.7;
  }

  /* ─── HOW IT WORKS ─── */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    position: relative;
  }
  .step {
    padding: 32px 28px;
    border-right: 1px solid rgba(45,58,54,0.06);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), background 0.3s ease;
    border-radius: 12px;
  }
  .step:hover {
    background: rgba(255,255,255,0.4);
    transform: translateY(-4px);
  }
  .step:last-child { border-right: none; }
  .step-num {
    font-family: 'Lora', serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--cream-dark);
    line-height: 1;
    margin-bottom: 16px;
    transition: color 0.3s ease;
  }
  .step:hover .step-num { color: var(--sage); }
  .step h3 {
    font-family: 'Lora', serif;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--brown);
  }
  .step p { font-size: 14px; color: var(--brown-mid); line-height: 1.7; }

  /* ─── SESSION INFO ─── */
  .session-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
  }
  .info-tile {
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 4px 16px rgba(45,58,54,0.03), inset 0 1px 0 rgba(255,255,255,0.6);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease;
  }
  .info-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(45,58,54,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
  }
  .info-tile .val {
    font-family: 'Lora', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--brown);
    display: block;
    margin-bottom: 4px;
  }
  .info-tile .lbl {
    font-size: 12px;
    color: var(--brown-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  /* ─── ABOUT PAGE ─── */
  .about-hero {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 6vw;
    align-items: start;
    padding: 60px 5vw 80px;
  }
  .about-photo-wrap {
    position: sticky;
    top: 84px;
  }
  .about-photo-frame {
    background: var(--sage-light);
    border-radius: 24px;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lora', serif;
    font-size: 64px;
    color: var(--sage);
    overflow: hidden;
    position: relative;
  }
  .about-photo-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(91,140,122,0.15) 0%, transparent 50%);
  }
  .about-initials {
    font-family: 'Lora', serif;
    font-size: 72px;
    font-weight: 400;
    color: var(--sage-dark);
    opacity: 0.4;
  }
  .about-badge-row {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
  }
  .about-badge {
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--brown-mid);
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
  }
  .about-badge:hover {
    background: rgba(91,140,122,0.1);
    border-color: rgba(91,140,122,0.2);
    transform: translateY(-1px);
  }

  .about-content h1 {
    font-family: 'Lora', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 6px;
  }
  .about-content .title-label {
    font-size: 14px;
    color: var(--terracotta);
    margin-bottom: 28px;
    font-weight: 400;
    letter-spacing: 0.04em;
  }
  .about-content p {
    font-size: 16px;
    color: var(--brown-mid);
    line-height: 1.85;
    margin-bottom: 20px;
  }
  .about-content p strong { color: var(--brown); font-weight: 500; }

  .about-section-heading {
    font-family: 'Lora', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--brown);
    margin: 36px 0 16px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
  }

  .competencies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .competency-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--brown-mid);
    padding: 8px 0;
  }
  .competency-item::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage);
    flex-shrink: 0;
  }

  .timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 4px;
  }
  .timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
  }
  .timeline-item:last-child { border-bottom: none; }
  .timeline-date { font-size: 12px; color: var(--brown-light); padding-top: 4px; }
  .timeline-content h4 { font-size: 15px; font-weight: 500; color: var(--brown); margin-bottom: 2px; }
  .timeline-content .org { font-size: 13px; color: var(--terracotta); margin-bottom: 6px; }
  .timeline-content p { font-size: 13px; color: var(--brown-mid); line-height: 1.65; }

  /* ─── SERVICES PAGE ─── */
  .services-page-hero {
    padding: 60px 5vw 40px;
    max-width: 680px;
  }
  .services-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 5vw 80px;
  }
  .service-full-card {
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 4px 20px rgba(45,58,54,0.04), inset 0 1px 0 rgba(255,255,255,0.6);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .service-full-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 50px rgba(45,58,54,0.1), inset 0 1px 0 rgba(255,255,255,0.8);
    border-color: rgba(91,140,122,0.3);
  }
  .service-full-card .svc-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
  }
  .svc-icon-lg {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--terracotta-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
  }
  .service-full-card h3 {
    font-family: 'Lora', serif;
    font-size: 19px;
    font-weight: 500;
    color: var(--brown);
  }
  .service-full-card .desc {
    font-size: 14px;
    color: var(--brown-mid);
    line-height: 1.75;
    margin-bottom: 20px;
  }
  .service-full-card .helps-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brown-light);
    margin-bottom: 8px;
  }
  .tag-row { display: flex; flex-wrap: wrap; gap: 6px; }
  .tag {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 100px;
    background: var(--cream-dark);
    color: var(--brown-mid);
  }

  /* ─── CONTACT PAGE ─── */
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6vw;
    padding: 60px 5vw 80px;
    align-items: start;
  }
  .contact-left h1 {
    font-family: 'Lora', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 16px;
  }
  .contact-left p {
    font-size: 16px;
    color: var(--brown-mid);
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 300;
  }

  .contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
  }
  .contact-detail:last-of-type { border-bottom: none; }
  .contact-detail .det-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--terracotta-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
  }
  .contact-detail .det-label { font-size: 11px; color: var(--brown-light); text-transform: uppercase; letter-spacing: 0.06em; }
  .contact-detail .det-val { font-size: 14px; color: var(--brown); font-weight: 500; }

  .booking-card {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 36px;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 8px 40px rgba(45,58,54,0.08), inset 0 1px 0 rgba(255,255,255,0.7);
    animation: glowPulse 4s ease-in-out infinite;
  }
  .booking-card h2 {
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 6px;
  }
  .booking-card .booking-sub {
    font-size: 14px;
    color: var(--brown-mid);
    margin-bottom: 28px;
  }

  .form-group { margin-bottom: 18px; }
  .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 7px;
    letter-spacing: 0.02em;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--brown);
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    outline: none;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 4px rgba(91,140,122,0.12), 0 4px 16px rgba(91,140,122,0.08);
    background: rgba(255,255,255,0.7);
    transform: translateY(-1px);
  }
  .form-group textarea { resize: vertical; min-height: 100px; }

  .mode-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .mode-option {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.18s;
    background: var(--cream);
  }
  .mode-option:hover { border-color: var(--sage); background: var(--sage-light); }
  .mode-option.selected { border-color: var(--sage); background: var(--sage-light); }
  .mode-option .mode-emoji { font-size: 20px; display: block; margin-bottom: 4px; }
  .mode-option .mode-name { font-size: 12px; font-weight: 500; color: var(--brown); }

  .pricing-summary {
    background: var(--cream-dark);
    border-radius: 12px;
    padding: 16px 18px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .pricing-summary .ps-item { font-size: 13px; color: var(--brown-mid); }
  .pricing-summary .ps-item span { display: block; font-size: 17px; font-weight: 500; color: var(--brown); font-family: 'Lora', serif; margin-top: 2px; }



  .booking-note {
    font-size: 12px;
    color: var(--brown-light);
    text-align: center;
    margin-top: 12px;
    line-height: 1.6;
  }

  /* ─── FAQ ─── */
  .faq-list { max-width: 700px; }
  .faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
  }
  .faq-q {
    font-size: 16px;
    font-weight: 500;
    color: var(--brown);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    gap: 16px;
  }
  .faq-q .arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.25s, background 0.2s;
    color: var(--brown-mid);
  }
  .faq-item.open .faq-q .arrow { transform: rotate(45deg); background: var(--sage-light); border-color: var(--sage); }
  .faq-a {
    font-size: 14px;
    color: var(--brown-mid);
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.2s;
  }
  .faq-item.open .faq-a { max-height: 200px; padding-top: 12px; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--brown);
    color: white;
    padding: 48px 5vw 32px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 28px;
  }
  .footer-brand span:first-child {
    font-family: 'Lora', serif;
    font-size: 17px;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
  }
  .footer-brand .f-title {
    font-size: 12px;
    opacity: 0.55;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 14px;
  }
  .footer-brand p {
    font-size: 13px;
    opacity: 0.6;
    line-height: 1.75;
    max-width: 280px;
  }
  .footer-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.45;
    margin-bottom: 16px;
  }
  .footer-col a, .footer-col p {
    display: block;
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 10px;
    cursor: pointer;
    text-decoration: none;
    color: white;
    transition: opacity 0.2s;
  }
  .footer-col a:hover { opacity: 1; }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
  }
  .footer-bottom p {
    font-size: 12px;
    opacity: 0.4;
    line-height: 1.75;
    max-width: 580px;
  }

  /* ─── CONTACT FLOATING BUTTON ─── */
  .contact-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #5B8C7A;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(91,140,122,0.45);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease;
    text-decoration: none;
    animation: breathe 3s ease-in-out infinite;
  }
  .contact-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 32px rgba(91,140,122,0.6);
    animation: none;
  }
  .contact-float svg {
    width: 28px;
    height: 28px;
    fill: white;
  }

  /* ─── MOBILE ─── */
  @media (max-width: 768px) {
    .hero { min-height: calc(90vh - 64px); padding: 24px 6vw; }
    /* On mobile the text block is taller relative to the screen, so darken
       the scrim for readability over the full-bleed video. */
    .hero-scrim {
      background:
        linear-gradient(180deg, rgba(45,58,54,0.55) 0%, rgba(45,58,54,0.75) 50%, rgba(45,58,54,0.85) 100%);
    }
    .hero-text { max-width: 100%; }
    .about-hero { grid-template-columns: 1fr; }
    .about-photo-wrap { position: static; display: flex; flex-direction: column; align-items: center; }
    .about-photo-frame { max-width: 220px; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .nav-links { display: none; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 64px;
      left: 0;
      right: 0;
      background: rgba(250,247,242,0.98);
      backdrop-filter: blur(12px);
      padding: 20px 5vw;
      border-bottom: 1px solid var(--border);
      gap: 16px;
      z-index: 99;
    }
    .hamburger { display: flex; }
    .steps-grid { grid-template-columns: 1fr; }
    .step { border-right: none; border-bottom: 1px solid var(--border); }
    .step:last-child { border-bottom: none; }
    .competencies-grid { grid-template-columns: 1fr; }
    .mode-selector { grid-template-columns: repeat(3, 1fr); }
    .timeline-item { grid-template-columns: 1fr; gap: 4px; }
  }

/* ════════════════════════════════════════════════════
   BOOKING WIZARD (integrated into Contact page)
   Drives the real backend: session-types, slots, payments
   ════════════════════════════════════════════════════ */

.wizard-progress {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  counter-reset: step;
}
.wizard-progress .wp-step {
  flex: 1;
  text-align: center;
  position: relative;
  font-size: 12px;
  color: var(--brown-light);
  padding-top: 34px;
  transition: color 0.3s;
}
.wizard-progress .wp-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--brown-light);
  font-size: 13px; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  z-index: 2;
}
.wizard-progress .wp-step::after {
  content: '';
  position: absolute;
  top: 14px; left: -50%;
  width: 100%; height: 2px;
  background: var(--cream-dark);
  z-index: 1;
}
.wizard-progress .wp-step:first-child::after { display: none; }
.wizard-progress .wp-step.done::before,
.wizard-progress .wp-step.active::before {
  background: var(--sage);
  color: white;
}
.wizard-progress .wp-step.done + .wp-step::after,
.wizard-progress .wp-step.active::after { background: var(--sage); }
.wizard-progress .wp-step.active { color: var(--brown); font-weight: 500; }
.wizard-progress .wp-step.done { color: var(--sage-dark); }

/* Wizard steps */
.wstep { display: none; animation: pageReveal 0.4s cubic-bezier(0.16,1,0.3,1); }
.wstep.active { display: block; }
.wstep-label { font-size: 12px; color: var(--sage-dark); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.wstep h3 { font-family: 'Lora', serif; font-size: 20px; font-weight: 500; margin-bottom: 16px; color: var(--brown); }

/* Session-type cards */
.type-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.type-card {
  background: rgba(255,255,255,0.6);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 18px 16px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  text-align: left;
}
.type-card:hover { border-color: rgba(91,140,122,0.4); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,58,54,0.06); }
.type-card.selected { border-color: var(--sage); background: var(--sage-light); box-shadow: 0 4px 20px rgba(91,140,122,0.18); }
.type-card.selected::after { content: '✓'; position: absolute; top: 12px; right: 14px; color: var(--sage-dark); font-weight: 600; font-size: 16px; }
.type-icon { font-size: 22px; margin-bottom: 6px; }
.type-name { font-weight: 500; font-size: 15px; color: var(--brown); margin-bottom: 2px; }
.type-dur { font-size: 12px; color: var(--brown-light); margin-bottom: 8px; }
.type-price { font-family: 'Lora', serif; font-size: 19px; color: var(--terracotta); font-weight: 500; }
.type-desc { font-size: 12px; color: var(--brown-mid); margin-top: 6px; line-height: 1.5; }
.type-tag { display: inline-block; font-size: 10px; background: var(--terracotta-light); color: var(--terracotta); padding: 2px 8px; border-radius: 100px; margin-top: 6px; letter-spacing: 0.04em; }

/* Date & slot picker */
.field-label { font-size: 13px; font-weight: 500; color: var(--brown); margin-bottom: 8px; display: block; }
.date-input {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  border: 1.5px solid var(--border); background: rgba(255,255,255,0.7);
  font-family: inherit; font-size: 14px; color: var(--brown);
  margin-bottom: 18px; transition: border-color 0.2s;
}
.date-input:focus { outline: none; border-color: var(--sage); }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px,1fr)); gap: 10px; margin-top: 4px; }
.slot {
  padding: 11px 8px; border-radius: 10px;
  border: 1.5px solid var(--border); background: rgba(255,255,255,0.6);
  font-size: 13px; color: var(--brown-mid); text-align: center; cursor: pointer;
  transition: all 0.2s; line-height: 1.4;
}
.slot:hover:not(.disabled) { border-color: var(--sage); color: var(--brown); }
.slot.selected { background: var(--sage); color: white; border-color: var(--sage); }
.slot.disabled { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }
.slot-label-sm { font-size: 10px; opacity: 0.7; display: block; }
.slot-loading, .slot-empty { grid-column: 1/-1; text-align: center; padding: 24px; color: var(--brown-light); font-size: 13px; }

/* Form fields */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-field { margin-bottom: 12px; }
.form-field.full { grid-column: 1/-1; }
.form-field label { font-size: 12px; color: var(--brown-mid); margin-bottom: 4px; display: block; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 11px 14px; border-radius: 11px;
  border: 1.5px solid var(--border); background: rgba(255,255,255,0.7);
  font-family: inherit; font-size: 14px; color: var(--brown); transition: border-color 0.2s;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--sage); }
.form-field textarea { resize: vertical; min-height: 80px; }
.form-field .req { color: var(--terracotta); }
.field-error { font-size: 11px; color: var(--terracotta); margin-top: 3px; display: none; }
.form-field.invalid input, .form-field.invalid textarea { border-color: var(--terracotta); }
.form-field.invalid .field-error { display: block; }

/* Summary box */
.summary-box {
  background: var(--cream-dark); border-radius: 14px; padding: 18px 20px; margin-bottom: 16px;
}
.summary-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 14px; color: var(--brown-mid); border-bottom: 1px dashed rgba(45,58,54,0.1); }
.summary-row:last-child { border-bottom: none; }
.summary-row.total { font-size: 17px; color: var(--brown); font-weight: 500; padding-top: 12px; }
.summary-row.total .amt { font-family: 'Lora', serif; color: var(--terracotta); font-size: 19px; }
.summary-row .amt { font-weight: 500; color: var(--brown); }

/* Wizard nav buttons */
.wiz-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 24px; }
.btn-back {
  background: transparent; border: 1.5px solid var(--border); color: var(--brown-mid);
  padding: 12px 22px; border-radius: 100px; font-size: 14px; cursor: pointer; font-family: inherit;
  transition: all 0.2s;
}
.btn-back:hover { border-color: var(--brown-light); color: var(--brown); }
  .btn-next {
    background: var(--sage); color: white; border: none;
    padding: 12px 28px; border-radius: 100px; font-size: 14px; font-weight: 500; cursor: pointer; font-family: inherit;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1); margin-left: auto;
    box-shadow: 0 4px 16px rgba(91,140,122,0.25);
  }
  .btn-next:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(91,140,122,0.35); }
  .btn-next:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* Success screen */
.success-screen { text-align: center; padding: 24px 12px; }
.success-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--sage-light); color: var(--sage-dark); display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 18px; animation: breathe 4s ease-in-out infinite; }
.success-screen h3 { font-family: 'Lora', serif; font-size: 22px; margin-bottom: 8px; }
.success-screen p { color: var(--brown-mid); font-size: 14px; line-height: 1.7; max-width: 380px; margin: 0 auto 18px; }
.booking-id-box { display: inline-block; background: var(--cream-dark); padding: 10px 20px; border-radius: 10px; margin: 4px 0 20px; }
.booking-id-box .label { font-size: 11px; color: var(--brown-light); text-transform: uppercase; letter-spacing: 0.08em; display: block; }
.booking-id-box .id { font-family: 'Lora', serif; font-size: 16px; color: var(--brown); font-weight: 500; }

/* Inline loading / error */
.wiz-loading { text-align: center; padding: 40px 20px; color: var(--brown-light); font-size: 14px; }
.wiz-error { background: var(--terracotta-light); color: var(--terracotta); padding: 12px 16px; border-radius: 12px; font-size: 13px; margin-top: 14px; display: none; }
.wiz-error.show { display: block; }

/* Legal pages */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 60px 5vw 80px; position: relative; z-index: 1; }
.legal-wrap h1 { font-family: 'Lora', serif; font-size: 32px; font-weight: 500; margin-bottom: 6px; color: var(--brown); }
.legal-wrap .legal-meta { font-size: 13px; color: var(--brown-light); margin-bottom: 36px; }
.legal-wrap h2 { font-family: 'Lora', serif; font-size: 20px; font-weight: 500; margin: 32px 0 12px; color: var(--brown); }
.legal-wrap p, .legal-wrap li { color: var(--brown-mid); line-height: 1.8; font-size: 15px; margin-bottom: 12px; }
.legal-wrap ul { padding-left: 20px; }
.legal-wrap a { color: var(--sage-dark); }

/* Toast */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--brown); color: white; padding: 13px 24px; border-radius: 100px;
  font-size: 14px; z-index: 1000; opacity: 0; transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 8px 30px rgba(45,58,54,0.25);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Client portal / admin — shared table styles */
.tp-card { background: rgba(255,255,255,0.65); backdrop-filter: blur(16px); border: 1px solid var(--border); border-radius: 18px; padding: 28px; margin-bottom: 20px; transition: all 0.3s; }
.tp-card:hover { box-shadow: 0 8px 30px rgba(45,58,54,0.06); }
.tp-empty { text-align: center; padding: 48px 20px; color: var(--brown-light); }
.booking-row { display: grid; grid-template-columns: 2fr 1fr 1fr auto; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--border); }
.booking-row:last-child { border-bottom: none; }
.booking-row .br-name { font-weight: 500; color: var(--brown); }
.booking-row .br-sub { font-size: 12px; color: var(--brown-light); margin-top: 2px; }
.booking-row .br-date { font-size: 14px; color: var(--brown-mid); }
.booking-row .br-session { font-size: 13px; color: var(--brown-mid); }
.status-badge { font-size: 11px; padding: 4px 10px; border-radius: 100px; font-weight: 500; letter-spacing: 0.03em; white-space: nowrap; }
.status-PENDING { background: var(--cream-dark); color: var(--brown-mid); }
.status-HALF_PAID { background: var(--terracotta-light); color: var(--terracotta); }
.status-CONFIRMED { background: var(--sage-light); color: var(--sage-dark); }
.status-COMPLETED { background: rgba(91,140,122,0.2); color: var(--sage-dark); }
.status-FULLY_PAID { background: var(--sage); color: white; }
.status-CANCELLED { background: rgba(45,58,54,0.08); color: var(--brown-light); text-decoration: line-through; }
.status-REFUNDED { background: rgba(45,58,54,0.06); color: var(--brown-light); }

/* Admin stat cards */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 16px; margin-bottom: 28px; }
.stat-card { background: rgba(255,255,255,0.65); backdrop-filter: blur(16px); border: 1px solid var(--border); border-radius: 16px; padding: 20px; }
.stat-card .stat-label { font-size: 12px; color: var(--brown-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.stat-card .stat-val { font-family: 'Lora', serif; font-size: 28px; color: var(--brown); font-weight: 500; }
.stat-card .stat-sub { font-size: 12px; color: var(--brown-light); margin-top: 2px; }

.filter-bar { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; align-items: center; }
.filter-bar select, .filter-bar input {
  padding: 9px 14px; border-radius: 10px; border: 1.5px solid var(--border); background: rgba(255,255,255,0.7);
  font-family: inherit; font-size: 13px; color: var(--brown);
}

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--brown-light); padding: 10px 12px; border-bottom: 1px solid var(--border); font-weight: 500; }
.admin-table td { padding: 14px 12px; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--brown-mid); vertical-align: top; }
.admin-table tr:hover { background: rgba(255,255,255,0.4); }
.admin-table .act-select { font-size: 12px; padding: 5px 10px; border-radius: 8px; border: 1px solid var(--border); background: white; font-family: inherit; }

@media (max-width: 720px) {
  .type-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-row { grid-template-columns: 1fr; gap: 6px; }
  .admin-table { font-size: 12px; }
  .admin-table th, .admin-table td { padding: 8px 6px; }
}
