*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --ink:    #1a1e2a;
      --mid:    #4a5068;
      --faint:  #8a90a6;
      --rule:   #d8dae4;
      --accent: #1f4b8e;
      --bg:     #fafaf8;
    }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--ink);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      -webkit-font-smoothing: antialiased;
    }
    header {
      padding: 1.75rem 3rem;
      display: flex;
      align-items: center;
      gap: 1.25rem;
      border-bottom: 1px solid var(--rule);
      position: sticky;
      top: 0;
      background: var(--bg);
      z-index: 100;
    }
    .wordmark {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.45rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      color: var(--ink);
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
      transition: color 0.15s;
    }
    .wordmark:hover { color: var(--accent); }
    .pipe { color: var(--rule); font-weight: 300; flex-shrink: 0; }
    .tagline-head {
      font-size: 0.73rem;
      font-weight: 400;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      color: var(--faint);
    }
    .header-nav {
      margin-left: auto;
      display: flex;
      gap: 1.75rem;
      align-items: center;
    }
    .header-nav a {
      font-size: 0.73rem;
      font-weight: 500;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--mid);
      text-decoration: none;
      transition: color 0.15s;
    }
    .header-nav a:hover { color: var(--accent); }
    .header-nav a.active { color: var(--accent); }

    main {
      flex: 1;
      padding: 5rem 3rem 4rem;
      max-width: 660px;
    }
    .page-label {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.25rem;
      opacity: 0.8;
    }
    h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4.5vw, 3.2rem);
      font-weight: 600;
      line-height: 1.1;
      color: var(--ink);
      margin-bottom: 0.85rem;
      letter-spacing: -0.01em;
    }
    .intro {
      font-size: 0.93rem;
      font-weight: 300;
      line-height: 1.75;
      color: var(--mid);
      margin-bottom: 2.75rem;
    }

    /* FORM */
    .form-group { margin-bottom: 1.5rem; }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
    }
    label {
      display: block;
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--faint);
      margin-bottom: 0.45rem;
    }
    input, select, textarea {
      width: 100%;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.93rem;
      font-weight: 300;
      color: var(--ink);
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--rule);
      padding: 0.55rem 0;
      outline: none;
      transition: border-color 0.2s;
      appearance: none;
      border-radius: 0;
    }
    input:focus, select:focus, textarea:focus { border-bottom-color: var(--accent); }
    select {
      cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%238a90a6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0.25rem center;
      padding-right: 1.5rem;
    }
    textarea { resize: vertical; min-height: 110px; }

    /* DATA WARNING */
    .data-notice {
      font-size: 0.75rem;
      font-weight: 300;
      color: var(--faint);
      line-height: 1.6;
      margin-bottom: 1.75rem;
      padding: 0.75rem 1rem;
      border: 1px solid var(--rule);
      border-radius: 2px;
    }

    /* CONSENT BLOCKS */
    .consent-section {
      margin: 2rem 0;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .consent-block {
      display: flex;
      align-items: flex-start;
      gap: 0.85rem;
      padding: 1rem 1.1rem;
      border: 1px solid var(--rule);
      border-radius: 2px;
      background: #f7f7f5;
    }
    .consent-block input[type="checkbox"] {
      width: 16px;
      height: 16px;
      min-width: 16px;
      margin-top: 0.15rem;
      flex-shrink: 0;
      accent-color: var(--accent);
      cursor: pointer;
      appearance: auto;
      -webkit-appearance: checkbox;
      border: revert;
      border-bottom: revert;
      background: revert;
      padding: 0;
    }
    .consent-text {
      font-size: 0.78rem;
      font-weight: 300;
      line-height: 1.65;
      color: var(--mid);
    }
    .consent-text strong {
      font-weight: 500;
      color: var(--ink);
      display: block;
      margin-bottom: 0.25rem;
      font-size: 0.8rem;
    }
    .consent-text a {
      color: var(--accent);
      text-decoration: none;
    }
    .consent-text a:hover { text-decoration: underline; }
    .sms-details {
      display: block;
      margin-top: 0.5rem;
      font-size: 0.73rem;
      color: var(--mid);
      line-height: 1.6;
    }

    button[type="submit"] {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--bg);
      background: var(--accent);
      border: none;
      padding: 0.9rem 2.2rem;
      cursor: pointer;
      border-radius: 2px;
      transition: opacity 0.2s;
      display: inline-block;
    }
    button[type="submit"]:hover { opacity: 0.85; }

    .success-msg {
      display: none;
      font-size: 0.95rem;
      font-weight: 300;
      color: var(--mid);
      line-height: 1.8;
      padding: 2rem 0;
      border-top: 1px solid var(--rule);
      margin-top: 1rem;
    }
    .success-msg strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--ink);
      display: block;
      margin-bottom: 0.5rem;
    }

    footer {
      padding: 1.5rem 3rem;
      border-top: 1px solid var(--rule);
      margin-top: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .footer-copy {
      font-size: 0.7rem;
      color: var(--faint);
      font-weight: 300;
    }
    .footer-links {
      display: flex;
      gap: 1.25rem;
      flex-wrap: wrap;
    }
    .footer-links a {
      font-size: 0.7rem;
      color: var(--faint);
      text-decoration: none;
      font-weight: 300;
      transition: color 0.15s;
    }
    .footer-links a:hover { color: var(--accent); }

    @media (max-width: 768px) {
      header { padding: 1.25rem 1.5rem; flex-wrap: wrap; }
      .tagline-head { display: none; }
      .header-nav { gap: 1rem; margin-left: auto; }
      main { padding: 3.5rem 1.5rem 3rem; }
      .form-row { grid-template-columns: 1fr; gap: 0; }
      footer { padding: 1.25rem 1.5rem; flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 480px) {
      .header-nav a { font-size: 0.68rem; }
      .header-nav { gap: 0.75rem; }
    }

.is-hidden { display: none !important; }
.success-msg.is-visible { display: block; }
