:root {
    --green-deep: #1A3D2B;
    --green-mid: #2E5E40;
    --green-sage: #4A7C5F;
    --gold: #C8A84B;
    --gold-light: #E2C97A;
    --cream: #F5F0E8;
    --cream-dark: #EDE5D5;
    --white: #FFFFFF;
    --charcoal: #1C1C1C;
    --gray: #6B7280;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', sans-serif;
    --radius: 2px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ─── NAVBAR ─── */
  .navbar {
    position: relative; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; height: 80px;
    background: rgba(26, 61, 43, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 168, 75, 0.25);
    transition: var(--transition);
  }
  .navbar.scrolled {
    height: 66px;
    background: rgba(18, 40, 27, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.25);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }
  .nav-logo-img {
    width: 48px; height: 48px; border-radius: 50%;
    border: 1.5px solid var(--gold);
    object-fit: cover;
    background: var(--green-mid);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .nav-logo-img svg { width: 40px; height: 40px; }
  .nav-brand { display: flex; flex-direction: column; }
  .nav-brand-name {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 600;
    color: var(--cream); letter-spacing: 0.02em;
    line-height: 1.1;
  }
  .nav-brand-sub {
    font-size: 0.65rem; font-weight: 400; color: var(--gold-light);
    letter-spacing: 0.14em; text-transform: uppercase;
  }
  .nav-links { display: flex; align-items: center; gap: 36px; }
  .nav-links a {
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; color: rgba(245,240,232,0.85);
    text-decoration: none; position: relative;
    transition: color 0.25s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -3px; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.3s ease;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-links a:hover::after { width: 100%; }
  .nav-book-btn {
    padding: 10px 24px; background: var(--gold);
    color: var(--green-deep) !important; border-radius: var(--radius);
    font-weight: 600 !important; font-size: 0.78rem !important;
    letter-spacing: 0.1em; transition: background 0.25s, transform 0.2s !important;
  }
  .nav-book-btn:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
  .nav-book-btn::after { display: none !important; }
  .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--cream); transition: var(--transition); }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh; position: relative;
    display: flex; align-items: center;
    background: var(--green-deep);
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0D2419 0%, #1A3D2B 40%, #2E5E40 75%, #1A3D2B 100%);
  }
  .hero-pattern {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: repeating-linear-gradient(
      0deg, transparent, transparent 60px,
      rgba(200,168,75,0.5) 60px, rgba(200,168,75,0.5) 61px
    ), repeating-linear-gradient(
      90deg, transparent, transparent 60px,
      rgba(200,168,75,0.5) 60px, rgba(200,168,75,0.5) 61px
    );
  }
  .hero-glow {
    position: absolute; top: -20%; right: -10%;
    width: 70vw; height: 70vw; max-width: 800px; max-height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,168,75,0.1) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-wheat-left {
    position: absolute; left: -40px; bottom: 0; height: 80vh;
    opacity: 0.12; pointer-events: none;
  }
  .hero-wheat-right {
    position: absolute; right: -20px; bottom: 0; height: 60vh;
    opacity: 0.1; pointer-events: none;
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto;
    padding: 140px 48px 100px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .hero-text {}
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 24px;
  }
  .hero-eyebrow::before, .hero-eyebrow::after {
    content: ''; display: block; width: 28px; height: 1px; background: var(--gold); opacity: 0.6;
  }
  .hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 300; line-height: 1.12;
    color: var(--cream); margin-bottom: 28px;
    letter-spacing: -0.01em;
  }
  .hero-h1 em { font-style: italic; color: var(--gold-light); }
  .hero-sub {
    font-size: 1rem; line-height: 1.75; color: rgba(245,240,232,0.72);
    max-width: 480px; margin-bottom: 48px; font-weight: 300;
  }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    padding: 15px 36px; background: var(--gold);
    color: var(--green-deep); font-weight: 600; font-size: 0.82rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    border: none; border-radius: var(--radius); cursor: pointer;
    text-decoration: none; transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(200,168,75,0.35); }
  .btn-outline {
    padding: 14px 36px; background: transparent;
    color: var(--cream); font-weight: 500; font-size: 0.82rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    border: 1px solid rgba(245,240,232,0.35); border-radius: var(--radius);
    cursor: pointer; text-decoration: none; transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
  .hero-stats {
    display: flex; gap: 40px; margin-top: 56px; padding-top: 40px;
    border-top: 1px solid rgba(200,168,75,0.2);
  }
  .hero-stat-num {
    font-family: var(--font-display); font-size: 2.4rem; font-weight: 300;
    color: var(--gold-light); line-height: 1;
  }
  .hero-stat-label { font-size: 0.75rem; color: rgba(245,240,232,0.6); margin-top: 4px; line-height: 1.4; }
  .hero-visual {
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .hero-circle-wrap {
    position: relative; width: 420px; height: 420px;
    max-width: 90vw; max-height: 90vw;
  }
  .hero-circle-ring {
    position: absolute; inset: 0; border-radius: 50%;
    border: 1px solid rgba(200,168,75,0.2);
    animation: ringPulse 4s ease-in-out infinite;
  }
  .hero-circle-ring:nth-child(2) { inset: 20px; border-color: rgba(200,168,75,0.15); animation-delay: 1s; }
  .hero-circle-ring:nth-child(3) { inset: 40px; border-color: rgba(200,168,75,0.1); animation-delay: 2s; }
  @keyframes ringPulse { 0%,100%{opacity:0.4} 50%{opacity:1} }
  .hero-logo-center {
    position: absolute; inset: 60px; border-radius: 50%;
    background: radial-gradient(circle, rgba(46,94,64,0.6) 0%, rgba(26,61,43,0.8) 100%);
    border: 2px solid rgba(200,168,75,0.4);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-logo-center img { width: 100%; height: 100%; object-fit: cover; }
  .hero-logo-svg {
    width: 75%; height: 75%;
    display: flex; align-items: center; justify-content: center;
  }

  /* ─── SECTION BASE ─── */
  section { position: relative; }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
  .section-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
  }
  .section-eyebrow span { display: block; width: 32px; height: 1px; background: var(--gold); }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300; line-height: 1.2;
    color: var(--green-deep); margin-bottom: 20px;
  }
  .section-title em { font-style: italic; color: var(--green-mid); }
  .section-title.light { color: var(--cream); }
  .section-title.light em { color: var(--gold-light); }
  .section-body {
    font-size: 1rem; line-height: 1.8; color: var(--gray);
    max-width: 600px; font-weight: 300;
  }
  .wheat-divider {
    display: flex; align-items: center; gap: 20px;
    margin: 24px 0; opacity: 0.5;
  }
  .wheat-divider::before, .wheat-divider::after {
    content: ''; flex: 1; height: 1px; background: var(--gold);
  }
  .wheat-divider svg { width: 24px; height: 24px; color: var(--gold); }

  /* ─── WHY CHOOSE ─── */
  .why-section { padding: 41px 0; background: var(--cream); }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 60px; }
  .why-image-wrap { position: relative; }
  .why-image-frame {
    aspect-ratio: 4/5; border-radius: 4px; overflow: hidden;
    position: relative;
  }
  .why-image-frame img { width: 100%; height: 100%; object-fit: cover; }
  .why-image-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(145deg, var(--green-mid) 0%, var(--green-deep) 100%);
    display: flex; align-items: center; justify-content: center;
  }
  .why-badge {
    position: absolute; bottom: -24px; right: -24px;
    width: 140px; height: 140px; border-radius: 50%;
    background: var(--gold);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    box-shadow: 0 8px 30px rgba(200,168,75,0.4);
  }
  .why-badge-num {
    font-family: var(--font-display); font-size: 2.2rem; font-weight: 300;
    color: var(--green-deep); line-height: 1;
  }
  .why-badge-text { font-size: 0.65rem; font-weight: 600; color: var(--green-deep); letter-spacing: 0.1em; text-transform: uppercase; text-align: center; padding: 0 12px; }
  .why-features { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
  .why-feature { display: flex; gap: 20px; align-items: flex-start; }
  .why-feature-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: rgba(26,61,43,0.08); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(200,168,75,0.3);
  }
  .why-feature-icon svg { width: 22px; height: 22px; color: var(--green-mid); }
  .why-feature-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--green-deep); margin-bottom: 4px; }
  .why-feature-text { font-size: 0.88rem; line-height: 1.7; color: var(--gray); font-weight: 300; }

  /* ─── SERVICES ─── */
  .services-section { padding: 110px 0; background: var(--green-deep); }
  .services-intro { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
  .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .service-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(200,168,75,0.15);
    border-radius: 4px; padding: 36px 28px;
    transition: all 0.4s; cursor: pointer; position: relative; overflow: hidden;
  }
  .service-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(200,168,75,0.08) 0%, transparent 100%);
    opacity: 0; transition: opacity 0.4s;
  }
  .service-card:hover { border-color: rgba(200,168,75,0.5); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
  .service-card:hover::before { opacity: 1; }
  .service-icon {
    width: 56px; height: 56px; margin-bottom: 24px;
    background: rgba(200,168,75,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(200,168,75,0.25);
    transition: background 0.3s;
  }
  .service-card:hover .service-icon { background: rgba(200,168,75,0.2); }
  .service-icon svg { width: 26px; height: 26px; color: var(--gold); }
  .service-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--cream); margin-bottom: 10px; }
  .service-desc { font-size: 0.83rem; line-height: 1.7; color: rgba(245,240,232,0.55); font-weight: 300; }
  .service-arrow {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.75rem; color: var(--gold); margin-top: 20px;
    font-weight: 500; letter-spacing: 0.08em;
    opacity: 0; transform: translateX(-6px);
    transition: all 0.3s;
  }
  .service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

  /* ─── ABOUT ─── */
  .about-section { padding: 110px 0; background: var(--cream-dark); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-text {}
  .about-quote {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 300;
    font-style: italic; color: var(--green-mid); line-height: 1.55;
    border-left: 3px solid var(--gold); padding-left: 24px; margin: 32px 0;
  }
  .about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
  .about-value {
    padding: 20px; background: var(--white); border-radius: 4px;
    border: 1px solid rgba(200,168,75,0.2);
    display: flex; gap: 12px; align-items: flex-start;
  }
  .about-value-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
    flex-shrink: 0; margin-top: 5px;
  }
  .about-value-text { font-size: 0.85rem; color: var(--charcoal); line-height: 1.5; font-weight: 400; }
  .about-image-stack { position: relative; }
  .about-img-main {
    aspect-ratio: 3/4; border-radius: 4px; overflow: hidden;
    border: 1px solid rgba(200,168,75,0.2);
  }
  .about-img-main img { width: 100%; height: 100%; object-fit: cover; }
  .about-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(160deg, #2E5E40 0%, #1A3D2B 100%);
    display: flex; align-items: center; justify-content: center;
  }
  .about-img-secondary {
    position: absolute; bottom: -30px; right: -30px;
    width: 55%; aspect-ratio: 1; border-radius: 4px; overflow: hidden;
    border: 4px solid var(--cream-dark);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  }
  .about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
  .about-img-secondary-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(160deg, var(--gold) 0%, #9A7B2A 100%);
    display: flex; align-items: center; justify-content: center;
  }

  /* ─── PROCESS ─── */
  .process-section { padding: 110px 0; background: var(--white); }
  .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 64px; position: relative; }
  .process-steps::before {
    content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
    opacity: 0.3; z-index: 0;
  }
  .process-step { text-align: center; position: relative; z-index: 1; }
  .process-num {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--green-deep); border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-display); font-size: 1.4rem; font-weight: 300; color: var(--gold);
    position: relative; z-index: 1;
  }
  .process-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--green-deep); margin-bottom: 10px; }
  .process-text { font-size: 0.83rem; line-height: 1.7; color: var(--gray); font-weight: 300; }

  /* ─── TESTIMONIALS ─── */
  .testimonials-section { padding: 110px 0; background: var(--green-deep); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
  .testimonial-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(200,168,75,0.15);
    border-radius: 4px; padding: 36px;
    transition: transform 0.3s, border-color 0.3s;
  }
  .testimonial-card:hover { transform: translateY(-4px); border-color: rgba(200,168,75,0.4); }
  .testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
  .testimonial-stars svg { width: 16px; height: 16px; color: var(--gold); fill: var(--gold); }
  .testimonial-text { font-family: var(--font-display); font-size: 1.05rem; font-weight: 300; font-style: italic; color: rgba(245,240,232,0.85); line-height: 1.65; margin-bottom: 24px; }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .testimonial-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--green-mid); border: 1.5px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--gold);
  }
  .testimonial-name { font-size: 0.85rem; font-weight: 500; color: var(--cream); }
  .testimonial-location { font-size: 0.75rem; color: rgba(245,240,232,0.45); }

  /* ─── CONTACT ─── */
  .contact-section { padding: 110px 0; background: var(--cream); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
  .contact-info { }
  .contact-items { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
  .contact-item { display: flex; gap: 20px; align-items: flex-start; }
  .contact-item-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: var(--green-deep); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .contact-item-icon svg { width: 20px; height: 20px; color: var(--gold); }
  .contact-item-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
  .contact-item-value { font-family: var(--font-display); font-size: 1.05rem; color: var(--green-deep); font-weight: 400; }
  .contact-item-value a { color: inherit; text-decoration: none; }
  .contact-form-wrap {
    background: var(--white); border-radius: 4px; padding: 48px;
    border: 1px solid rgba(200,168,75,0.2);
    box-shadow: 0 20px 60px rgba(26,61,43,0.08);
  }
  .contact-form-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--green-deep); margin-bottom: 8px; }
  .contact-form-sub { font-size: 0.85rem; color: var(--gray); margin-bottom: 32px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 20px; }
  .form-group label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-deep); margin-bottom: 8px; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 13px 16px;
    font-family: var(--font-body); font-size: 0.9rem; color: var(--charcoal);
    background: var(--cream); border: 1px solid rgba(26,61,43,0.2);
    border-radius: var(--radius); outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(46,94,64,0.1);
  }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-submit {
    width: 100%; padding: 16px; background: var(--green-deep);
    color: var(--cream); font-family: var(--font-body); font-size: 0.85rem;
    font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    border: none; border-radius: var(--radius); cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    display: flex; align-items: center; justify-content: center; gap: 10px;
  }
  .form-submit:hover { background: var(--green-mid); transform: translateY(-1px); }

  /* ─── FOOTER ─── */
  .footer { background: #0D2419; padding: 80px 0 40px; }
  .footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
  .footer-brand {}
  .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
  .footer-logo-circle {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--green-mid); border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
  }
  .footer-brand-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--cream); }
  .footer-brand-sub { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
  .footer-tagline { font-size: 0.88rem; line-height: 1.7; color: rgba(245,240,232,0.5); max-width: 300px; font-weight: 300; margin-bottom: 28px; }
  .footer-social { display: flex; gap: 12px; }
  .footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(200,168,75,0.3);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s;
  }
  .footer-social a:hover { background: var(--gold); border-color: var(--gold); }
  .footer-social a:hover svg { color: var(--green-deep); }
  .footer-social svg { width: 16px; height: 16px; color: rgba(245,240,232,0.5); }
  .footer-col-title { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
  .footer-links { display: flex; flex-direction: column; gap: 10px; }
  .footer-links a { font-size: 0.85rem; color: rgba(245,240,232,0.55); text-decoration: none; transition: color 0.2s; font-weight: 300; }
  .footer-links a:hover { color: var(--gold-light); }
  .footer-bottom { border-top: 1px solid rgba(200,168,75,0.1); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; }
  .footer-copy { font-size: 0.78rem; color: rgba(245,240,232,0.35); }
  .footer-legal { display: flex; gap: 24px; }
  .footer-legal a { font-size: 0.78rem; color: rgba(245,240,232,0.35); text-decoration: none; }

  /* ─── FLOATING BOOK BUTTON ─── */
  .float-book {
    position: fixed; bottom: 32px; right: 32px; z-index: 999;
    display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
  }
  .float-book-btn {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--gold); border: none; cursor: pointer;
    box-shadow: 0 8px 30px rgba(200,168,75,0.5);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; position: relative;
  }
  .float-book-btn:hover { transform: scale(1.1); background: var(--gold-light); }
  .float-book-btn svg { width: 26px; height: 26px; color: var(--green-deep); }
  .float-pulse {
    position: absolute; inset: -4px; border-radius: 50%;
    border: 2px solid var(--gold); animation: floatPulse 2s ease-out infinite;
  }
  @keyframes floatPulse { 0%{transform:scale(1);opacity:0.8} 100%{transform:scale(1.4);opacity:0} }
  .float-tooltip {
    background: var(--green-deep); color: var(--cream); font-size: 0.78rem;
    font-weight: 500; padding: 8px 14px; border-radius: 20px;
    white-space: nowrap; pointer-events: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    animation: tooltipBob 3s ease-in-out infinite;
  }
  @keyframes tooltipBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }

  /* ─── BOOKING POPUP ─── */
  .popup-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(13,36,25,0.85); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.35s;
    padding: 20px;
  }
  .popup-overlay.active { opacity: 1; pointer-events: all; }
  .popup-box {
    background: var(--white); border-radius: 4px;
    width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto;
    padding: 48px; position: relative;
    transform: translateY(20px); transition: transform 0.35s;
    box-shadow: 0 40px 100px rgba(0,0,0,0.4);
  }
  .popup-overlay.active .popup-box { transform: translateY(0); }
  .popup-close {
    position: absolute; top: 20px; right: 20px;
    width: 36px; height: 36px; background: var(--cream); border: none;
    border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  .popup-close:hover { background: var(--cream-dark); }
  .popup-close svg { width: 18px; height: 18px; }
  .popup-eyebrow { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
  .popup-title { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--green-deep); margin-bottom: 6px; }
  .popup-sub { font-size: 0.85rem; color: var(--gray); margin-bottom: 32px; }
  .popup-success {
    text-align: center; padding: 40px 0;
    display: none; flex-direction: column; align-items: center; gap: 12px;
  }
  .popup-success.show { display: flex; }
  .popup-success-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(26,61,43,0.08); border: 2px solid var(--green-mid);
    display: flex; align-items: center; justify-content: center;
  }
  .popup-success-icon svg { width: 32px; height: 32px; color: var(--green-mid); }
  .popup-success h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--green-deep); }
  .popup-success p { font-size: 0.9rem; color: var(--gray); }

  /* ─── MOBILE NAV DRAWER ─── */
  .mobile-drawer {
    position: fixed; top: 0; right: -100%; bottom: 0; width: 80%; max-width: 320px;
    background: var(--green-deep); z-index: 1100;
    padding: 100px 40px 40px; transition: right 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    display: flex; flex-direction: column; gap: 8px;
  }
  .mobile-drawer.open { right: 0; }
  .mobile-drawer a {
    display: block; padding: 14px 0;
    font-size: 0.9rem; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; color: rgba(245,240,232,0.8); text-decoration: none;
    border-bottom: 1px solid rgba(200,168,75,0.1);
    transition: color 0.2s;
  }
  .mobile-drawer a:hover { color: var(--gold-light); }
  .mobile-drawer .drawer-book-btn {
    margin-top: 24px; padding: 15px; background: var(--gold);
    color: var(--green-deep); text-align: center; font-weight: 600;
    border-radius: 2px; border: none;
  }
  .drawer-overlay {
    position: fixed; inset: 0; z-index: 1050; background: rgba(0,0,0,0.5);
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .drawer-overlay.active { opacity: 1; pointer-events: all; }

  /* ─── SCROLL REVEAL ─── */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .navbar { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .container { padding: 0 20px; }
    .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 120px 20px 80px; }
    .hero-visual { display: none; }
    .hero-stats { gap: 24px; }
    .why-grid { grid-template-columns: 1fr; }
    .why-badge { width: 110px; height: 110px; right: -10px; bottom: -10px; }
    .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img-secondary { display: none; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .services-intro { flex-direction: column; align-items: flex-start; gap: 16px; }
    .float-book { bottom: 20px; right: 20px; }
    .popup-box { padding: 32px 20px; }
  }
  @media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 16px; border-top: none; padding-top: 0; }
  }