/*
Theme Name: Ziggy Starlight
Theme URI: https://ziggystarlight.com
Author: Mental Beauty
Author URI: https://mentalbeauty.com
Description: Custom brand theme for Ziggy Starlight — healer, hooper, cosmic traveler. Pastel-cosmic aesthetic with Vimeo hero video, Formspree booking, and gallery.
Version: 1.0.3
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: All rights reserved
Text Domain: ziggy-starlight
Tags: one-page, portfolio, custom
*/

:root {
    --ink:        #0b0a1f;
    --ink-2:      #161334;
    --paper:      #fdf6e3;
    --blonde:     #ffe066;
    --blonde-hot: #ffd23f;
    --pink:       #ffb3c6;
    --peach:      #ffcaa0;
    --mint:       #b8f2d8;
    --sky:        #a8d8ff;
    --lilac:      #d4b8ff;
    --hot:        #ff7eb6;
    --hot-deep:   #d94e87;   /* darker pink for outlines / shadows */
    --line:       rgba(253, 246, 227, 0.18);
  }

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

  body {
    font-family: 'Fraunces', Georgia, serif;
    background: var(--ink);
    color: var(--paper);
    line-height: 1.5;
    overflow-x: hidden;
  }

  /* ============ COSMIC BACKGROUND ============ */
  .cosmos {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
      radial-gradient(ellipse 80% 60% at 20% 10%, rgba(212,184,255,0.18), transparent 60%),
      radial-gradient(ellipse 70% 50% at 90% 80%, rgba(255,179,198,0.15), transparent 60%),
      radial-gradient(ellipse 60% 40% at 60% 50%, rgba(168,216,255,0.12), transparent 60%),
      linear-gradient(180deg, #0b0a1f 0%, #1a1340 50%, #0b0a1f 100%);
  }
  .stars {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
      radial-gradient(1px 1px at 23% 12%, white, transparent),
      radial-gradient(1px 1px at 67% 8%, white, transparent),
      radial-gradient(1.5px 1.5px at 12% 38%, white, transparent),
      radial-gradient(1px 1px at 88% 27%, white, transparent),
      radial-gradient(1px 1px at 45% 62%, white, transparent),
      radial-gradient(1.5px 1.5px at 78% 71%, white, transparent),
      radial-gradient(1px 1px at 33% 89%, white, transparent),
      radial-gradient(1px 1px at 92% 54%, white, transparent),
      radial-gradient(1px 1px at 8% 73%, white, transparent),
      radial-gradient(1.5px 1.5px at 55% 22%, var(--blonde), transparent),
      radial-gradient(1px 1px at 18% 95%, var(--pink), transparent),
      radial-gradient(1px 1px at 72% 44%, var(--sky), transparent);
    animation: twinkle 4s ease-in-out infinite alternate;
  }
  @keyframes twinkle { from { opacity: 0.55; } to { opacity: 1; } }

  .grain {
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
    opacity: 0.08;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='2'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='1'/></svg>");
  }

  /* ============ NAV ============ */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 1.4rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
    border-bottom: 1px solid transparent;
  }
  /* Once user scrolls past hero, nav gets a soft background for legibility */
  nav.scrolled {
    background: rgba(11, 10, 31, 0.65);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }
  .logo {
    font-family: 'Monoton', cursive;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    color: var(--blonde);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .logo .bolt-icon { width: 18px; height: 24px; color: var(--blonde-hot); }
  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  .nav-links a {
    color: var(--paper);
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a:hover { color: var(--blonde); }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 1px;
    background: var(--blonde);
    transition: width 0.3s;
  }
  .nav-links a:hover::after { width: 100%; }
  @media (max-width: 820px) { .nav-links { display: none; } }

  /* ============ HERO ============ */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 6rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
  }
  /* Mobile: tighten hero so title + subtitle + social all show on first screen */
  @media (max-width: 640px) {
    .hero { padding: 5rem 1rem 1.8rem; }
    .hero h1 { font-size: clamp(1.9rem, 8vw, 2.6rem) !important; }
    .hero h1 .divider { height: 20px !important; margin: 0.3rem 0 0.15rem !important; gap: 0.7rem !important; }
    .hero h1 .divider .rule { flex: 0 1 45px !important; }
    .hero h1 .divider .hero-bolt { width: 18px !important; height: 22px !important; }
    .hero-tag { font-size: 0.95rem; margin-top: 1rem; max-width: 90%; }
    .hero-social { margin-top: 1rem; gap: 0.5rem; }
    .social-btn { min-width: 40px; height: 40px; padding: 0 0.7rem; }
    .social-btn svg { width: 18px; height: 18px; }
    .social-btn .social-text { font-size: 0.72rem; }
  }
  /* Hero video background — YouTube iframe scaled to cover the hero */
  .hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .hero-video {
    position: absolute;
    top: 50%; left: 50%;
    /* Scale iframe up so 16:9 video fills wide/tall hero (whichever is bigger) */
    width: 100vw;
    height: 56.25vw; /* 16:9 based on width */
    min-width: 177.78vh; /* 16:9 based on height */
    min-height: 100vh;
    transform: translate(-50%, -50%) scale(1.35); /* extra zoom to hide YouTube UI + fill */
    opacity: 1;
    border: 0;
  }
  /* Dark vignette over video — bottom-heavy so text is legible without darkening the subject */
  .hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg,
        rgba(11,10,31,0.35) 0%,
        rgba(11,10,31,0.05) 20%,
        transparent 40%,
        transparent 55%,
        rgba(11,10,31,0.55) 80%,
        rgba(11,10,31,0.92) 100%);
    pointer-events: none;
  }
  /* Hero background before iframe loads — matches cosmic theme */
  .hero {
    background: radial-gradient(ellipse at center, #1a1340 0%, #0b0a1f 100%);
  }
  /* Make sure all hero content sits above the video */
  .hero > *:not(.hero-video-wrap):not(.hero-video-overlay):not(.hero-poster) {
    position: relative;
    z-index: 2;
  }
  .pre-title {
    font-family: 'Space Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fade-up 1s 0.2s forwards;
  }

  /* HERO TITLE — restored Monoton wordmark with bolt ornament */
  .hero h1 {
    font-family: 'Monoton', cursive;
    font-size: clamp(2.2rem, 7vw, 5.5rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: var(--blonde);
    text-shadow:
      2px 2px 0 var(--hot-deep),
      4px 4px 0 var(--sky),
      6px 6px 20px rgba(217,78,135,0.35);
    opacity: 0;
    animation: fade-up 1.1s 0.4s forwards;
    margin-bottom: 0.4rem;
    position: relative;
  }
  .hero h1 .line { display: block; }
  .hero h1 .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    margin: 0.6rem 0 0.2rem;
    height: 26px;
  }
  .hero h1 .divider .rule {
    flex: 0 1 70px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--blonde), transparent);
  }
  .hero h1 .divider .hero-bolt {
    width: 22px;
    height: 28px;
    color: var(--blonde-hot);
    filter: drop-shadow(0 0 10px rgba(255, 210, 63, 0.9));
    animation: zap 3s ease-in-out infinite;
  }
  @keyframes zap {
    0%, 100% { transform: scale(1) rotate(-4deg); filter: drop-shadow(0 0 8px rgba(255,210,63,0.6)); }
    50%      { transform: scale(1.15) rotate(4deg); filter: drop-shadow(0 0 22px rgba(255,210,63,1)); }
  }

  .hero-tag {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--paper);
    max-width: 620px;
    margin-top: 1.5rem;
    line-height: 1.5;
    opacity: 0;
    animation: fade-up 1s 0.8s forwards;
  }
  .hero-tag em { color: var(--pink); font-style: italic; }

  /* Hero social icons */
  .hero-social {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 1.5rem;
    opacity: 0;
    animation: fade-up 1s 1.1s forwards;
  }
  .social-btn {
    min-width: 44px;
    height: 44px;
    padding: 0 0.9rem;
    border-radius: 100px;
    border: 1.5px solid rgba(253,246,227,0.45);
    color: var(--paper);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.35s ease;
    background: rgba(11,10,31,0.35);
    backdrop-filter: blur(4px);
  }
  .social-btn svg {
    width: 20px;
    height: 20px;
    display: block;
  }
  .social-btn .social-text {
    font-family: 'Space Mono', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
  }
  .social-btn:hover {
    background: var(--blonde);
    color: var(--ink);
    border-color: var(--blonde);
    transform: translateY(-3px);
    box-shadow: 3px 3px 0 var(--hot-deep);
  }
  .social-btn:nth-child(2):hover { box-shadow: 3px 3px 0 var(--sky); }
  .social-btn:nth-child(3):hover { box-shadow: 3px 3px 0 var(--lilac); }
  .social-btn:nth-child(4):hover { box-shadow: 3px 3px 0 var(--mint); }

  @keyframes fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* floating decorative bolts */
  .floating-bolt {
    position: absolute;
    pointer-events: none;
    opacity: 0.5;
    animation: float 8s ease-in-out infinite;
  }
  .bolt-1 { top: 18%; left: 10%; width: 50px; animation-delay: 0s; }
  .bolt-2 { top: 25%; right: 12%; width: 70px; animation-delay: -2s; }
  .bolt-3 { bottom: 22%; left: 15%; width: 40px; animation-delay: -4s; }
  .bolt-4 { bottom: 30%; right: 8%;  width: 60px; animation-delay: -6s; }
  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50%      { transform: translateY(-20px) rotate(5deg); }
  }

  /* ============ SECTIONS ============ */
  section.block {
    padding: 7rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
  }
  .eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--blonde);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--blonde);
  }
  .section-title {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
  }
  .section-title em {
    font-style: italic;
    color: var(--pink);
    font-weight: 500;
  }

  /* ============ ABOUT ============ */
  /* ============ ABOUT ============ */
  .about-grid {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 4rem;
    align-items: center;
  }
  @media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  }
  .about-photo {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow:
      0 30px 60px rgba(0,0,0,0.4),
      0 0 0 1px rgba(253,246,227,0.08);
    transform: rotate(-1.5deg);
    transition: transform 0.5s ease;
  }
  .about-photo:hover { transform: rotate(0deg) scale(1.01); }
  .about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    display: block;
  }

  .who-text {
    max-width: 620px;
  }
  .who-text p {
    font-size: 1.2rem;
    line-height: 1.75;
    color: rgba(253,246,227,0.88);
    margin-bottom: 1.4rem;
  }
  .who-text p:first-of-type::first-letter {
    font-family: 'Monoton', cursive;
    font-size: 4rem;
    float: left;
    line-height: 0.85;
    margin: 0.1rem 0.6rem -0.2rem 0;
    color: var(--blonde);
  }
  .who-text p em { color: var(--pink); font-style: italic; }

  /* ============ SKILLS ============ */
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
  @media (max-width: 880px) { .skills-grid { grid-template-columns: 1fr; } }

  .skill-card {
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    color: var(--ink);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
  }
  .skill-card:hover { transform: translateY(-8px) rotate(-1deg); }
  .skill-card .skill-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    position: relative;
  }
  .skill-card .skill-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
  .skill-card:hover .skill-photo img { transform: scale(1.04); }
  .skill-card .skill-body {
    padding: 2rem 1.8rem 2.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .skill-card .skill-eye {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(11,10,31,0.6);
    margin-bottom: 0.6rem;
  }
  .skill-card h3 {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 0.8rem;
  }
  .skill-card .skill-desc {
    font-family: 'Fraunces', serif;
    font-size: 0.98rem;
    line-height: 1.5;
    color: rgba(11,10,31,0.78);
    margin-bottom: 1.2rem;
  }
  .skill-card ul { list-style: none; margin-top: auto; }
  .skill-card li {
    font-family: 'Space Mono', monospace;
    font-size: 0.82rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(11,10,31,0.15);
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .skill-card li:last-child { border-bottom: none; }
  .skill-card li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--ink);
  }
  .skill-1 { background: linear-gradient(135deg, var(--blonde) 0%, var(--peach) 100%); }
  .skill-2 { background: linear-gradient(135deg, var(--pink) 0%, var(--lilac) 100%); }
  .skill-3 { background: linear-gradient(135deg, var(--mint) 0%, var(--sky) 100%); }

  /* ============ GALLERY COLLAGE ============ */
  .gallery-wrap {
    margin-top: 3rem;
    position: relative;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 30px 0;
  }
  .photo {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, #2d1f6b, #1a1340);
    box-shadow:
      0 8px 24px rgba(0,0,0,0.4),
      0 0 0 1px rgba(253,246,227,0.08);
    transition: transform 0.4s ease;
  }
  .photo:hover { transform: scale(1.02) rotate(0deg) translateY(0) !important; z-index: 5; }
  .photo svg.placeholder,
  .photo img { width: 100%; height: 100%; display: block; object-fit: cover; }

  .photo .caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 0.8rem 1rem;
    background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
    font-family: 'Caveat', cursive;
    font-size: 1.15rem;
    color: var(--paper);
  }

  /* Polaroid-style rotations & vertical stagger */
  .p1 { transform: rotate(-1.8deg); }
  .p2 { transform: rotate(1.2deg) translateY(30px); }
  .p3 { transform: rotate(-0.6deg); }
  .p4 { transform: rotate(1.5deg) translateY(20px); }
  .p5 { transform: rotate(-1deg); }
  .p6 { transform: rotate(0.8deg) translateY(35px); }

  @media (max-width: 760px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .p1 { transform: rotate(-1.5deg); }
    .p2 { transform: rotate(1deg) translateY(20px); }
    .p3 { transform: rotate(-0.5deg); }
    .p4 { transform: rotate(1.5deg) translateY(20px); }
    .p5 { transform: rotate(-1deg); }
    .p6 { transform: rotate(0.8deg) translateY(20px); }
  }
  @media (max-width: 440px) {
    .gallery-grid { grid-template-columns: 1fr; gap: 22px; padding: 15px 0; }
    .p1, .p2, .p3, .p4, .p5, .p6 { transform: rotate(-0.5deg); }
    .p2, .p4, .p6 { transform: rotate(0.5deg); }
  }


  /* ============ SERVICES + BOOKING ============ */
  .services-section {
    padding: 7rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
  }
  .services-hero {
    text-align: center;
    margin-bottom: 4rem;
  }
  .services-hero h2 {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-style: italic;
    font-size: clamp(2.4rem, 6.5vw, 5rem);
    line-height: 1;
    margin-bottom: 1rem;
  }
  .services-hero h2 em {
    color: var(--blonde);
    font-style: italic;
    font-weight: 500;
  }
  .services-hero p {
    max-width: 580px;
    margin: 0 auto;
    color: rgba(253,246,227,0.75);
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .services-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
  @media (max-width: 980px) { .services-layout { grid-template-columns: 1fr; } }
  /* Mobile: tighten padding + reset sticky so form centers properly */
  @media (max-width: 640px) {
    .services-section { padding: 4rem 1rem; }
    .services-hero { margin-bottom: 2rem; }
    .booking-card {
      position: static !important;
      top: auto !important;
      padding: 1.5rem 1.2rem;
      margin: 0 auto;
      max-width: 100%;
    }
    .booking-card h3 { font-size: 1.4rem; }
  }

  .service {
    padding: 1.8rem 0;
    border-bottom: 1px dashed var(--line);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: start;
    cursor: pointer;
    transition: padding 0.3s;
  }
  .service:hover { padding-left: 1rem; }
  .service:last-child { border-bottom: none; }
  .service h4 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
    color: var(--paper);
  }
  .service .duration {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint);
  }
  .service p {
    font-size: 0.95rem;
    color: rgba(253,246,227,0.7);
    margin-top: 0.5rem;
    max-width: 460px;
    line-height: 1.5;
  }
  .service .service-price {
    font-family: 'Monoton', cursive;
    font-size: 1.6rem;
    color: var(--blonde);
    line-height: 1;
    text-align: right;
    white-space: nowrap;
  }

  .booking-card {
    background: linear-gradient(145deg, rgba(255,179,198,0.08), rgba(168,216,255,0.06));
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 2.2rem;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 100px;
  }
  .booking-card h3 {
    font-family: 'Monoton', cursive;
    font-size: 1.6rem;
    color: var(--blonde);
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
  }
  .booking-card .sub {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: rgba(253,246,227,0.7);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
  }
  .field label {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 0.4rem;
  }
  .field input, .field select, .field textarea {
    background: rgba(253,246,227,0.05);
    border: 1px solid var(--line);
    color: var(--paper);
    padding: 0.8rem 1rem;
    border-radius: 6px;
    font-family: 'Fraunces', serif;
    font-size: 0.95rem;
    transition: all 0.3s;
  }
  .field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--blonde);
    background: rgba(253,246,227,0.08);
  }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  @media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
  .field textarea { min-height: 80px; resize: vertical; font-family: 'Fraunces', serif; }

  .btn-book {
    width: 100%;
    background: var(--blonde);
    color: var(--ink);
    border: 2px solid var(--ink);
    padding: 1rem;
    font-family: 'Monoton', cursive;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: all 0.3s;
    box-shadow: 4px 4px 0 var(--pink);
  }
  .btn-book:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--pink);
  }
  .btn-book:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--pink); }
  .btn-book:disabled { opacity: 0.5; cursor: wait; }

  /* Success state — replaces form after successful submit */
  .form-success {
    display: none;
    text-align: center;
    padding: 1rem 0.5rem;
  }
  .booking-card.submitted .form-content { display: none; }
  .booking-card.submitted .form-success { display: block; }
  .success-bolt {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--blonde);
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 4px 4px 0 var(--pink);
    animation: pop-in 0.5s ease-out;
  }
  .success-bolt svg {
    width: 24px;
    height: 32px;
    color: var(--ink);
  }
  @keyframes pop-in {
    0%   { transform: scale(0) rotate(-45deg); opacity: 0; }
    60%  { transform: scale(1.15) rotate(10deg); opacity: 1; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
  }
  .form-success h3 {
    font-family: 'Monoton', cursive;
    font-size: 1.6rem;
    color: var(--blonde);
    letter-spacing: 0.04em;
    margin-bottom: 0.8rem;
  }
  .form-success p {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--paper);
    line-height: 1.5;
    margin-bottom: 0.6rem;
  }
  .form-success .success-sub {
    font-size: 0.85rem;
    color: rgba(253,246,227,0.6);
    margin-top: 0.8rem;
  }

  /* Error state */
  .form-error {
    display: none;
    margin-top: 0.8rem;
    padding: 0.7rem 1rem;
    background: rgba(255, 126, 182, 0.15);
    border: 1px solid var(--hot);
    border-radius: 6px;
    color: var(--paper);
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 0.88rem;
    text-align: center;
  }
  .form-error a { color: var(--blonde); }
  .booking-card.error .form-error { display: block; }

  .location-note {
    text-align: center;
    margin-top: 3rem;
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    color: var(--mint);
  }
  .location-note strong {
    color: var(--blonde);
    font-family: 'Monoton', cursive;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-left: 0.4rem;
  }

  /* ============ FOOTER ============ */
  footer {
    border-top: 1px solid var(--line);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
  }
  .footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  @media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }

  .footer-brand {
    font-family: 'Monoton', cursive;
    font-size: 2.5rem;
    color: var(--blonde);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .footer-brand .footer-bolt {
    width: 22px;
    height: 28px;
    color: var(--blonde-hot);
  }
  .footer-tag {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: rgba(253,246,227,0.6);
    max-width: 320px;
  }
  .footer-col h5 {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blonde);
    margin-bottom: 1rem;
  }
  .footer-col ul { list-style: none; }
  .footer-col li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: rgba(253,246,227,0.75);
  }
  .footer-col li a { color: inherit; text-decoration: none; transition: color 0.3s; }
  .footer-col li a:hover { color: var(--pink); }
  .footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px dashed var(--line);
    display: flex;
    justify-content: space-between;
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(253,246,227,0.4);
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-bottom a {
    color: var(--blonde);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-bottom a:hover { color: var(--pink); }