:root{
    --bg:#f3faf7;
    --bg-raised:#e6f3ee;
    --panel:#ffffff;
    --ink:#0c221c;
    --line: rgba(12,40,32,0.12);
    --line-strong: rgba(12,40,32,0.22);
    --text:#0c221c;
    --text-dim:#4f6b62;
    --text-on-dark:#c5d9d1;
    --accent:#ff3d71;
    --accent-hover:#ff6b94;
    --ok:#0d9f6e;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--bg);
    color:var(--text);
    font-family:'Space Grotesk', sans-serif;
    font-size:16px;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  .display{ font-family:'Big Shoulders Display', sans-serif; font-weight:800; text-transform:uppercase; letter-spacing:0.01em; line-height:0.92; }
  .wrap{ max-width:1120px; margin:0 auto; padding:0 32px; }
  a{ color:inherit; }

  nav{
    position:sticky; top:0; z-index:50;
    background:var(--ink);
    border-bottom:1px solid rgba(255,255,255,0.08);
  }
  nav .wrap{ display:flex; align-items:center; justify-content:space-between; height:76px; }
  .logo{ font-family:'Big Shoulders Display', sans-serif; font-weight:800; font-size:26px; letter-spacing:0.02em; text-transform:uppercase; text-decoration:none; color:#fff; }
  .nav-links{ display:flex; align-items:center; gap:32px; }
  .nav-links a{ text-decoration:none; color:var(--text-on-dark); font-size:14px; transition:color .15s; }
  .nav-links a:hover{ color:#fff; }
  .nav-cta{ display:flex; align-items:center; gap:10px; }
  .btn{
    display:inline-flex; align-items:center; gap:8px;
    padding:13px 24px;
    border-radius:5px;
    font-family:'Space Grotesk', sans-serif;
    font-weight:600; font-size:14px;
    text-decoration:none;
    cursor:pointer; border:none;
    transition: transform .15s ease, background .15s ease, border-color .15s;
  }
  .btn-primary{ background:var(--accent); color:#fff; }
  .btn-primary:hover{ transform:translateY(-1px); background:var(--accent-hover); }
  .btn-ghost{ border:1px solid var(--line-strong); color:var(--text); background:var(--panel); }
  .btn-ghost:hover{ border-color:var(--accent); color:var(--accent); }
  .hero .btn-ghost{ background:rgba(255,255,255,0.72); }
  nav .btn-ghost{
    background:transparent;
    border-color:rgba(255,255,255,0.28);
    color:#fff;
  }
  nav .btn-ghost:hover{
    border-color:#fff;
    color:#fff;
    background:rgba(255,255,255,0.08);
  }
  .form-error{
    color:#b42318;
    font-size:13px;
    margin:-4px 0 12px;
  }
  .modal-back{
    position:fixed; inset:0;
    background:rgba(12,34,28,0.5);
    z-index:100;
    display:none;
    align-items:center;
    justify-content:center;
    padding:24px;
  }
  .modal-back.open{ display:flex; }
  .modal{
    background:#fff;
    border-radius:12px;
    width:100%;
    max-width:440px;
    padding:28px;
    border:1px solid var(--line);
  }
  .modal h2{
    font-family:'Big Shoulders Display', sans-serif;
    font-weight:800;
    text-transform:uppercase;
    font-size:28px;
    margin-bottom:8px;
  }
  .modal .sub{ color:var(--text-dim); margin-bottom:22px; font-size:15px; line-height:1.5; }
  .modal-actions{ display:flex; justify-content:flex-end; }

  .hero{
    position:relative;
    padding:100px 0 96px;
    overflow:hidden;
    border-bottom:1px solid var(--line);
    background-color: var(--bg);
    background-image:
      radial-gradient(ellipse 55% 50% at 70% 0%, rgba(255,61,113,0.14), transparent 65%),
      radial-gradient(ellipse 40% 45% at 10% 80%, rgba(13,159,110,0.12), transparent 60%),
      url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230c221c' fill-opacity='0.045'%3E%3Cpath d='M14 0l2 12h12l-10 6 4 12-8-8-8 8 4-12L0 12h12z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: auto, auto, 28px 28px;
  }
  .hero .wrap{
    display:grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap:56px;
    align-items:start;
    position:relative;
    z-index:1;
  }
  .hero-copy{ padding-top:8px; }
  .hero h1{
    font-family:'Big Shoulders Display', sans-serif;
    font-weight:800;
    font-size:clamp(40px, 5.4vw, 68px);
    line-height:0.95;
    letter-spacing:0.01em;
    text-transform:uppercase;
    max-width:520px;
    color:var(--ink);
  }
  .hero-sub{ max-width:440px; margin-top:24px; font-size:16.5px; color:var(--text-dim); }
  .hero-cta{ display:flex; gap:16px; margin-top:32px; flex-wrap:wrap; }

  .hero-form{
    position:relative; z-index:1;
    background:var(--panel);
    border:1px solid var(--line);
    border-radius:10px;
    padding:32px;
    margin-top:4px;
  }
  .hero-form h3{ font-family:'Big Shoulders Display', sans-serif; font-weight:700; font-size:24px; text-transform:uppercase; }
  .hero-form .sub{ color:var(--text-dim); font-size:13.5px; margin-top:6px; }
  .field{ margin-top:18px; }
  .field label{
    display:block; font-family:'IBM Plex Mono', monospace; font-size:11.5px;
    text-transform:uppercase; letter-spacing:0.08em; color:var(--text-dim); margin-bottom:7px;
  }
  .field input, .field textarea{
    width:100%; background:var(--bg);
    border:1px solid var(--line-strong);
    border-radius:6px;
    padding:11px 13px;
    font-family:'Space Grotesk', sans-serif; font-size:14.5px; color:var(--text);
    outline:none;
  }
  .field input:focus, .field textarea:focus{ border-color:var(--accent); }
  .field textarea{ resize:vertical; min-height:72px; }
  .hero-form button{ width:100%; margin-top:22px; justify-content:center; }
  .hero-form .fine{ margin-top:12px; font-size:11.5px; color:var(--text-dim); text-align:center; }

  .section-head{ max-width:640px; margin-bottom:56px; }
  .section-head .tag{ font-family:'IBM Plex Mono', monospace; font-size:12.5px; color:var(--accent); text-transform:uppercase; letter-spacing:0.12em; margin-bottom:14px; display:block; }
  .section-head h2{ font-size:clamp(32px,4vw,48px); color:var(--ink); }
  .section-head p{ margin-top:16px; color:var(--text-dim); font-size:16.5px; max-width:520px; }

  .venues{ padding:96px 0; border-bottom:1px solid var(--line); }
  .venue-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
  .venue{
    display:block;
    text-decoration:none;
    background:var(--panel);
    border:1px solid var(--line);
    border-radius:10px;
    padding:12px;
  }
  .venue .photo{
    aspect-ratio:3/4;
    border-radius:8px;
    overflow:hidden;
    background:var(--ink);
  }
  .venue .photo img{
    width:100%; height:100%;
    object-fit:cover;
    display:block;
    transition: transform .4s ease;
  }
  .venue:hover .photo img{ transform:scale(1.04); }
  .venue .label{
    margin-top:14px;
    margin-bottom:4px;
    font-family:'IBM Plex Mono', monospace;
    font-size:12.5px;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:var(--text);
  }

  .why{ padding:96px 0; border-bottom:1px solid var(--line); background:var(--bg-raised); }
  .why-points{
    display:grid; grid-template-columns:repeat(4,1fr); gap:14px;
    margin-top:8px;
  }
  .why-point{
    background:var(--panel);
    border:1px solid var(--line);
    border-radius:10px;
    padding:28px 24px;
  }
  .why-point h3{ font-size:17px; font-weight:600; }
  .why-point p{ color:var(--text-dim); font-size:14px; margin-top:8px; max-width:none; }

  .how{ padding:96px 0; border-bottom:1px solid var(--line); }
  .steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
  .step{
    background:var(--panel);
    border:1px solid var(--line);
    border-radius:10px;
    padding:40px 32px;
  }
  .step .idx{ font-family:'IBM Plex Mono', monospace; font-size:13px; color:var(--accent); }
  .step h3{ font-family:'Big Shoulders Display', sans-serif; font-weight:700; font-size:28px; text-transform:uppercase; margin-top:14px; }
  .how-note{
    margin-top:28px;
    font-family:'IBM Plex Mono', monospace;
    font-size:13px;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:var(--text-dim);
  }

  .cta-band{
    background:var(--ink);
    color:#fff;
    padding:80px 0;
    text-align:center;
  }
  .cta-band h2{ font-size:clamp(34px,5vw,58px); }
  .cta-band p{ margin-top:16px; font-size:17px; color:var(--text-on-dark); max-width:440px; margin-left:auto; margin-right:auto; }
  .cta-band .hero-cta{ justify-content:center; margin-top:32px; }
  .cta-band .btn-primary{ background:var(--accent); color:#fff; }
  .cta-band .btn-primary:hover{ background:var(--accent-hover); }

  footer{
    padding:48px 0 40px;
    background:var(--ink);
    border-top:1px solid rgba(255,255,255,0.08);
  }
  footer .wrap{ display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
  footer .footer-right{ display:flex; align-items:center; gap:24px; flex-wrap:wrap; }
  footer .fl{ font-size:13px; color:var(--text-on-dark); }
  footer .footer-social{ display:flex; align-items:center; gap:10px; }
  footer .social-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:36px;
    height:36px;
    border-radius:8px;
    color:var(--text-on-dark);
    text-decoration:none;
    transition: color .15s ease, background .15s ease;
  }
  footer .social-icon svg{ width:18px; height:18px; fill:currentColor; }
  footer .social-icon:hover{ color:#fff; background:rgba(255,255,255,0.08); }
  footer .footer-links{ display:flex; gap:28px; flex-wrap:wrap; }
  footer .footer-links a{ text-decoration:none; font-size:13px; color:var(--text-on-dark); }
  footer .footer-links a:hover{ color:#fff; }

  @media (max-width: 860px){
    .nav-links{ display:none; }
    .hero .wrap{ grid-template-columns:1fr; }
    .venue-grid{ grid-template-columns:repeat(2,1fr); }
    .why-points{ grid-template-columns:1fr; }
    .steps{ grid-template-columns:1fr; }
    footer .wrap{ flex-direction:column; align-items:flex-start; gap:20px; }
    footer .footer-right{ flex-direction:column; align-items:flex-start; gap:16px; }
  }
