  :root {
    --blush: #F2D7D9;
    --blush-deep: #E8C4C8;
    --champagne: #C8A882;
    --champagne-hover: #b89872;
    --champagne-light: rgba(200, 168, 130, 0.12);
    --cream: #FFF8F0;
    --cream-warm: #FDF3E8;
    --charcoal: #2D2D2D;
    --charcoal-soft: #3D3D3D;
    --deep-rose: #8B4557;
    --deep-rose-soft: rgba(139, 69, 87, 0.08);
    --white: #FFFFFF;
    --charcoal-light: #5a5a5a;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  h1, h2, h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.15;
  }

  /* ══════════════════════════════════════
     BUBBLE CANVAS
     ══════════════════════════════════════ */
  #bubble-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50;
  }


  /* ══════════════════════════════════════
     NAV
     ══════════════════════════════════════ */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 248, 240, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(200, 168, 130, 0.15);
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: box-shadow 0.4s ease, padding 0.3s ease;
  }

  nav.scrolled {
    box-shadow: 0 4px 30px rgba(45, 45, 45, 0.06);
    padding: 0.5rem 2rem;
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: opacity 0.2s;
  }

  .nav-logo:hover { opacity: 0.8; }
  .nav-logo span { color: var(--champagne); }

  .nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--charcoal-light);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
  }

  .nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--champagne);
    transition: width 0.3s ease;
  }

  .nav-links a:not(.btn):hover::after { width: 100%; }
  .nav-links a:hover { color: var(--charcoal); }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.8rem;
    background: var(--champagne);
    color: var(--white);
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
  }

  .btn:hover::before { width: 300px; height: 300px; }

  .btn:hover {
    background: var(--champagne-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 168, 130, 0.3);
  }

  .btn-outline {
    background: transparent;
    color: var(--champagne);
    border: 1.5px solid var(--champagne);
  }

  .btn-outline:hover {
    background: var(--champagne);
    color: var(--white);
  }

  .btn-large {
    padding: 1rem 2.6rem;
    font-size: 0.85rem;
  }

  /* ══════════════════════════════════════
     HERO
     ══════════════════════════════════════ */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 7rem 1.5rem 4rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 60%, var(--cream) 100%);
  }

  .hero-label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--deep-rose);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 7vw, 5rem);
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    max-width: 750px;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--deep-rose);
    display: block;
    font-weight: 500;
  }

  .hero-sub {
    font-size: 1.15rem;
    color: var(--charcoal-light);
    max-width: 460px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
  }

  .hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeUp 0.8s ease 1.4s forwards;
  }

  .hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--champagne), transparent);
    margin: 0 auto;
    animation: scrollPulse 2s ease-in-out infinite;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 48px; }
    50% { opacity: 0.8; height: 56px; }
  }

  /* ══════════════════════════════════════
     SECTION BASE
     ══════════════════════════════════════ */
  section { padding: 6rem 1.5rem; position: relative; z-index: 1; }
  .section-inner { max-width: 920px; margin: 0 auto; }

  .section-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 1.05rem;
    color: var(--charcoal-light);
    max-width: 520px;
    margin-bottom: 3.5rem;
    line-height: 1.7;
  }

  .gold-line {
    width: 40px;
    height: 1.5px;
    background: var(--champagne);
    border: none;
    margin-bottom: 2rem;
  }

  /* ══════════════════════════════════════
     SERVICES
     ══════════════════════════════════════ */
  .services { background: var(--white); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .service-card {
    background: var(--cream);
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 2.25rem 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--champagne), var(--blush-deep));
    opacity: 0;
    transition: opacity 0.3s;
  }

  .service-card:hover {
    border-color: rgba(200, 168, 130, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(45, 45, 45, 0.06);
  }

  .service-card:hover::before { opacity: 1; }

  .service-card h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }

  .service-price {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--deep-rose);
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
  }

  .service-card p:last-child {
    font-size: 0.92rem;
    color: var(--charcoal-light);
    line-height: 1.65;
  }

  /* ══════════════════════════════════════
     THE RESET
     ══════════════════════════════════════ */
  .reset {
    background: var(--charcoal);
    color: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .reset::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 168, 130, 0.06) 0%, transparent 60%);
    pointer-events: none;
  }

  .reset .section-label { color: var(--champagne); }
  .reset .section-title { color: var(--cream); font-size: clamp(1.8rem, 4vw, 2.6rem); }
  .reset .gold-line { margin: 0 auto 2.5rem; }

  .reset-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.15rem, 2.8vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    line-height: 2;
    color: rgba(242, 215, 217, 0.85);
    max-width: 580px;
    margin: 0 auto;
  }

  .reset-quote strong {
    font-weight: 600;
    font-style: normal;
    color: var(--cream);
    display: block;
    margin-top: 0.5rem;
  }

  .reset-cta {
    margin-top: 2.5rem;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
  }

  .reset-cta a {
    color: var(--champagne);
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 168, 130, 0.4);
    padding-bottom: 2px;
    transition: border-color 0.3s;
  }

  .reset-cta a:hover { border-color: var(--champagne); }

  /* ══════════════════════════════════════
     PRICING
     ══════════════════════════════════════ */
  .pricing { background: var(--cream); }

  .pricing-block {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid rgba(200, 168, 130, 0.12);
    padding: 2rem;
    margin-bottom: 1.5rem;
  }

  .pricing-block h3 {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(200, 168, 130, 0.15);
  }

  .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(200, 168, 130, 0.08);
    font-size: 0.95rem;
  }

  .price-row:last-child { border-bottom: none; }
  .price-row .label { color: var(--charcoal-light); }

  .price-row .amount {
    font-weight: 600;
    color: var(--deep-rose);
    white-space: nowrap;
  }

  .price-row .detail {
    font-size: 0.82rem;
    color: var(--charcoal-light);
    margin-left: 0.5rem;
    font-weight: 400;
  }

  .pricing-note {
    font-size: 0.85rem;
    color: var(--charcoal-light);
    line-height: 1.65;
    margin-top: 1rem;
  }

  /* ══════════════════════════════════════
     ABOUT
     ══════════════════════════════════════ */
  .about { background: var(--white); }

  .about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .about-photo {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--blush), var(--blush-deep));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--deep-rose);
    opacity: 0.6;
    border: 1px solid rgba(200, 168, 130, 0.2);
  }

  .about-content p {
    font-size: 1.05rem;
    color: var(--charcoal-light);
    margin-bottom: 1.25rem;
    line-height: 1.75;
  }

  .about-content p:first-of-type {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    color: var(--charcoal);
    font-weight: 500;
    line-height: 1.5;
  }

  .trust-badges {
    display: flex;
    gap: 1.25rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
  }

  .trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--charcoal-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    background: var(--cream);
    border-radius: 100px;
    border: 1px solid rgba(200, 168, 130, 0.15);
  }

  .trust-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--champagne);
    fill: none;
    stroke-width: 2;
  }

  /* ══════════════════════════════════════
     BOOKING
     ══════════════════════════════════════ */
  .booking {
    background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
  }

  .booking-header { text-align: center; margin-bottom: 3rem; }
  .booking-header .section-subtitle { margin: 0 auto; }

  .booking-form {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid rgba(200, 168, 130, 0.15);
    border-radius: 12px;
    padding: 2.75rem;
    box-shadow: 0 20px 60px rgba(45, 45, 45, 0.06);
  }

  .form-group { margin-bottom: 1.25rem; }

  .form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--cream);
    border: 1.5px solid rgba(200, 168, 130, 0.2);
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--champagne);
    box-shadow: 0 0 0 3px rgba(200, 168, 130, 0.1);
  }

  .form-group textarea { resize: vertical; min-height: 80px; }

  .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%23C8A882' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
  }

  .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin: 1.75rem 0;
  }

  .form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--champagne);
    flex-shrink: 0;
  }

  .form-checkbox label {
    font-size: 0.83rem;
    color: var(--charcoal-light);
    line-height: 1.5;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
  }

  .form-checkbox a {
    color: var(--deep-rose);
    text-decoration: none;
    border-bottom: 1px solid rgba(139, 69, 87, 0.3);
    transition: border-color 0.2s;
  }

  .form-checkbox a:hover { border-color: var(--deep-rose); }

  .booking-form .btn { width: 100%; padding: 1rem; font-size: 0.88rem; }

  .form-success { text-align: center; padding: 3rem 1rem; }
  .form-success h3 { font-size: 1.8rem; margin-bottom: 0.75rem; }
  .form-success p { color: var(--charcoal-light); font-size: 1rem; }

  .form-success .checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--champagne-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
  }

  .form-success .checkmark svg {
    width: 28px;
    height: 28px;
    stroke: var(--champagne);
    fill: none;
    stroke-width: 2.5;
  }

  /* ══════════════════════════════════════
     FOOTER
     ══════════════════════════════════════ */
  footer {
    background: var(--charcoal);
    color: rgba(255, 248, 240, 0.5);
    padding: 3.5rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .footer-inner { max-width: 900px; margin: 0 auto; }

  .footer-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 1.25rem;
  }

  .footer-logo span { color: var(--champagne); }

  .footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }

  .footer-links a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 248, 240, 0.4);
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-links a:hover { color: var(--champagne); }

  .footer-copy {
    font-size: 0.78rem;
    color: rgba(255, 248, 240, 0.25);
    margin-top: 0.5rem;
  }

  /* ══════════════════════════════════════
     MOBILE
     ══════════════════════════════════════ */
  .nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
  }

  .nav-hamburger svg {
    width: 22px;
    height: 22px;
    stroke: var(--charcoal);
    stroke-width: 2;
  }

  /* ══════════════════════════════════════
     NIGHT MODE
     ══════════════════════════════════════ */
  body.night {
    --blush: #1a1a2e;
    --blush-deep: #16213e;
    --champagne: #E8C170;
    --champagne-hover: #d4ad5c;
    --champagne-light: rgba(232, 193, 112, 0.15);
    --cream: #0f0f1a;
    --cream-warm: #12121f;
    --charcoal: #f0e6d6;
    --charcoal-soft: #e0d6c6;
    --deep-rose: #FF6B9D;
    --deep-rose-soft: rgba(255, 107, 157, 0.12);
    --white: #1a1a2e;
    --charcoal-light: #c0b8a8;
  }

  body.night nav {
    background: rgba(15, 15, 26, 0.92);
    border-bottom-color: rgba(232, 193, 112, 0.15);
  }

  body.night .hero {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 60%, #0f0f1a 100%);
  }

  body.night .services { background: #12121f; }
  body.night .about { background: #12121f; }

  body.night .service-card {
    background: #1a1a2e;
    border-color: rgba(232, 193, 112, 0.1);
  }

  body.night .service-card:hover {
    border-color: rgba(232, 193, 112, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  }

  body.night .reset { background: #0a0a14; }

  body.night .pricing-block {
    background: #1a1a2e;
    border-color: rgba(232, 193, 112, 0.1);
  }

  body.night .booking {
    background: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%);
  }

  body.night .booking-form {
    background: #12121f;
    border-color: rgba(232, 193, 112, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  }

  body.night .form-group input,
  body.night .form-group select,
  body.night .form-group textarea {
    background: #1a1a2e;
    border-color: rgba(232, 193, 112, 0.2);
    color: #f0e6d6;
  }

  body.night .about-photo {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
  }

  body.night .trust-badge {
    background: #1a1a2e;
    border-color: rgba(232, 193, 112, 0.15);
  }

  body.night .addon {
    background: #1a1a2e;
    border-color: rgba(232, 193, 112, 0.1);
  }

  body.night footer { background: #0a0a14; }

  body.night .btn-outline {
    color: var(--champagne);
    border-color: var(--champagne);
  }

  body.night .nav-logo { color: #f0e6d6; }
  body.night .nav-hamburger svg { stroke: #f0e6d6; }

  body.night .reset-quote { color: rgba(255, 107, 157, 0.7); }
  body.night .reset-quote strong { color: #f0e6d6; }

  /* Aquarius thread — subtle electric aqua in night mode */
  body.night .hero-label { color: #7EC8E3; }
  body.night .hero-scroll-line { background: linear-gradient(to bottom, #7EC8E3, transparent); }
  body.night .gold-line { background: linear-gradient(90deg, var(--champagne), #7EC8E3); }

  .night-toggle {
    background: none;
    border: 1.5px solid rgba(200, 168, 130, 0.3);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s, transform 0.2s;
    padding: 0;
  }

  .night-toggle:hover {
    border-color: var(--champagne);
    transform: scale(1.1);
  }

  .night-toggle svg {
    width: 16px;
    height: 16px;
    stroke: var(--champagne);
    fill: none;
    stroke-width: 2;
    transition: stroke 0.3s;
  }

  body.night .night-toggle { border-color: rgba(232, 193, 112, 0.4); }
  body.night .night-toggle svg { stroke: #E8C170; }

  /* iPhone safe areas */
  @supports (padding: env(safe-area-inset-top)) {
    nav { padding-top: max(0.65rem, env(safe-area-inset-top)); }
    footer { padding-bottom: max(3.5rem, env(safe-area-inset-bottom)); }
  }

  @media (max-width: 768px) {
    nav { padding: 0.65rem 1.25rem; }

    .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      background: rgba(255, 248, 240, 0.98);
      backdrop-filter: blur(16px);
      padding: 1.25rem 1.5rem;
      gap: 1rem;
      border-bottom: 1px solid rgba(200, 168, 130, 0.15);
    }

    body.night .nav-links { background: rgba(15, 15, 26, 0.98); }

    .nav-links.open { display: flex; }
    .nav-hamburger { display: block; }
    section { padding: 4rem 1.25rem; }
    .hero { padding: 6rem 1.25rem 3rem; min-height: 92vh; }
    .hero h1 { font-size: 2.4rem; }
    .hero-sub { font-size: 1rem; }
    .services-grid { grid-template-columns: 1fr; }
    .about-layout { grid-template-columns: 1fr; gap: 2rem; }
    .about-photo { aspect-ratio: 3/2; }
    .booking-form { padding: 2rem 1.5rem; }
    .trust-badges { flex-direction: column; gap: 0.6rem; }

    /* Tap targets — min 44px (Apple HIG + Material) */
    .btn { min-height: 48px; padding: 0.85rem 1.8rem; }
    .btn-large { min-height: 52px; padding: 1rem 2.2rem; }
    .nav-hamburger { min-width: 44px; min-height: 44px; }
    .night-toggle { width: 40px; height: 40px; }
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 16px; min-height: 48px; }
    .form-checkbox input[type="checkbox"] { width: 22px; height: 22px; }
    .footer-links { gap: 1.25rem; }
    .footer-links a { padding: 0.5rem 0; font-size: 0.82rem; }
    .price-row { padding: 0.85rem 0; min-height: 44px; }

    /* Prevent iOS zoom on input focus */
    .form-group select { font-size: 16px; }

    /* Stack hero buttons vertically on small screens */
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 280px; }

    /* Reset section breathing room */
    .reset-quote { font-size: 1.1rem; line-height: 1.9; }
  }

  /* Small phones (iPhone SE, etc) */
  @media (max-width: 375px) {
    .hero h1 { font-size: 2rem; }
    .section-title { font-size: 1.7rem; }
    .service-card { padding: 1.75rem 1.5rem; }
    .pricing-block { padding: 1.5rem; }
    .booking-form { padding: 1.5rem 1.25rem; }
    nav { padding: 0.5rem 1rem; }
    .nav-logo { font-size: 1.3rem; }
  }

  @media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition-duration: 0s !important; }
    .hero-label, .hero h1, .hero-sub, .hero-actions, .hero-scroll { opacity: 1; }
    .reveal { opacity: 1; transform: none; }
    #bubble-canvas { display: none; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .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; }

  /* ══════════════════════════════════════
     LEGAL PAGES
     ══════════════════════════════════════ */
  .legal-page {
    padding: 8rem 1.5rem 4rem;
    position: relative;
    z-index: 1;
    min-height: 80vh;
  }

  .legal-inner { max-width: 700px; margin: 0 auto; }

  .legal-updated {
    font-size: 0.82rem;
    color: var(--charcoal-light);
    margin-bottom: 2.5rem;
  }

  .legal-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
  }

  .legal-content p {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    line-height: 1.7;
    margin-bottom: 0.75rem;
  }

  .legal-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
  }

  .legal-content li {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    line-height: 1.7;
    padding: 0.3rem 0 0.3rem 1.2rem;
    position: relative;
  }

  .legal-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--champagne);
  }

  .legal-content a {
    color: var(--deep-rose);
    text-decoration: none;
    border-bottom: 1px solid rgba(139, 69, 87, 0.3);
    transition: border-color 0.2s;
  }

  .legal-content a:hover { border-color: var(--deep-rose); }

  .legal-content strong { color: var(--charcoal); }

  /* ══════════════════════════════════════
     ABOUT PHOTO IMG
     ══════════════════════════════════════ */
  .about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }

  .about-photo {
    overflow: hidden;
  }

  /* ══════════════════════════════════════
     THANK YOU / FORM SUCCESS
     ══════════════════════════════════════ */
  .form-success { text-align: center; padding: 2rem 1rem; }
  .form-success h3, .form-success h1 { font-size: 1.8rem; margin-bottom: 0.75rem; }
  .form-success p { color: var(--charcoal-light); font-size: 1rem; }

  .form-success .checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--champagne-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
  }

  .form-success .checkmark svg {
    width: 28px;
    height: 28px;
    stroke: var(--champagne);
    fill: none;
    stroke-width: 2.5;
  }

  /* ══════════════════════════════════════
     REVIEWS PLACEHOLDER
     ══════════════════════════════════════ */
  .reviews-placeholder {
    padding: 2rem 0;
  }
