
  * { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --emerald:       #1B6B4A;
    --emerald-deep:  #0C3D2A;
    --emerald-mid:   #267A56;
    --emerald-light: #3A9E6F;
    --ocean:         #1A5C7A;
    --ocean-light:   #C8DFE8;
    --sand:          #F5F0E8;
    --sand-mid:      #E8E0D0;
    --sand-dark:     #D4C9B5;
    --gold:          #C9943E;
    --gold-light:    #E8C97A;
    --gold-pale:     #F5E9C8;
    --charcoal:      #1A1A1A;
    --slate:         #5A6470;
    --warm-white:    #FDFBF7;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
    max-width: 900px;
    margin: 0 auto;
    -webkit-font-smoothing: antialiased;
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    height: 480px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hero-photo {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom,
        rgba(8,30,20,0.08) 0%,
        rgba(8,30,20,0.38) 55%,
        rgba(8,30,20,0.72) 100%),
      url('/assets/img/hero.jpg') center/cover no-repeat;
    transform: scale(1.02);
    transition: transform 8s ease;
  }

  .hero:hover .hero-photo { transform: scale(1.0); }

  .hero-content {
    position: relative;
    padding: 0 56px 52px;
    animation: fadeUp 1s ease both;
  }

  .hero-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--gold);
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -1px;
    color: white;
    margin-bottom: 20px;
  }

  .hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.88);
    line-height: 1.4;
    max-width: 540px;
    border-left: 2px solid var(--gold);
    padding-left: 18px;
  }

  .hero-sub strong {
    font-weight: 600;
    font-style: normal;
    color: white;
  }

  /* ── URGENCY STRIP ── */
  .urgency {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--emerald-deep);
  }

  .urgency-panel {
    padding: 32px 30px;
    border-right: 1px solid rgba(255,255,255,0.08);
    position: relative;
  }
  .urgency-panel:last-child { border-right: none; }

  .urgency-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }

  .urgency-text {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
  }

  .urgency-text strong {
    color: white;
    font-weight: 600;
  }

  /* ── GEOGRAPHY ── */
  .geography {
    padding: 64px 56px 52px;
    background: var(--warm-white);
  }

  .geo-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .geo-eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--emerald);
  }

  .geo-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--emerald-deep);
    max-width: 600px;
    margin-bottom: 44px;
  }
  .geo-headline em {
    color: var(--emerald);
    font-style: normal;
    font-weight: 600;
  }

  .corridor {
    position: relative;
    margin-bottom: 36px;
  }

  /* Fixed height container: 60px top labels + 20px line zone + 60px bottom labels */
  .corridor-track {
    position: relative;
    height: 140px;
    margin: 0 20px;
  }

  /* The horizontal line sits exactly in the middle */
  .corridor-track::before {
    content: '';
    position: absolute;
    left: 0; right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background: linear-gradient(90deg, var(--emerald-mid), var(--gold), var(--emerald-mid));
  }

  .corridor-node {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
  }

  /* Positions along the line */
  .corridor-node:nth-child(1) { left: 0%; }
  .corridor-node:nth-child(2) { left: 25%; }
  .corridor-node:nth-child(3) { left: 50%; }
  .corridor-node:nth-child(4) { left: 75%; }
  .corridor-node:nth-child(5) { left: 100%; }

  .node-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--emerald-mid);
    border: 3px solid var(--warm-white);
    box-shadow: 0 0 0 2px var(--emerald-mid);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }

  .node-dot.key {
    width: 18px;
    height: 18px;
    background: var(--gold);
    box-shadow: 0 0 0 2px var(--gold);
  }

  /* Labels above the line */
  .node-info-above {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
  }

  /* Labels below the line */
  .node-info-below {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
  }

  .node-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--emerald-deep);
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
  }

  .node-sub {
    font-size: 9.5px;
    color: var(--slate);
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    margin-top: 2px;
  }

  .geo-kicker {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-style: italic;
    font-weight: 400;
    color: var(--slate);
    text-align: right;
    border-top: 1px solid var(--sand-mid);
    padding-top: 24px;
    margin-top: 8px;
  }

  .geo-kicker em {
    color: var(--emerald);
    font-style: normal;
    font-weight: 600;
  }

  /* ── PROTECTION ── */
  .protection {
    background: var(--sand);
    padding: 56px 56px 60px;
    border-top: 1px solid var(--sand-mid);
  }

  .protection-header {
    margin-bottom: 44px;
  }

  .protection-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--emerald-deep);
    line-height: 1.1;
    margin-bottom: 10px;
  }

  .protection-sub {
    font-size: 14px;
    color: var(--slate);
    font-weight: 400;
    letter-spacing: 0.5px;
  }

  .protection-sub span {
    color: var(--gold);
    font-weight: 600;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
  }

  .layers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--sand-dark);
    border: 1px solid var(--sand-dark);
    border-radius: 4px;
    overflow: hidden;
  }

  .layer {
    background: var(--warm-white);
    padding: 28px 22px 32px;
    position: relative;
  }

  .layer::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
  }

  .layer:nth-child(1)::after { background: var(--emerald); }
  .layer:nth-child(2)::after { background: var(--ocean); }
  .layer:nth-child(3)::after { background: #6B5B8A; }
  .layer:nth-child(4)::after { background: var(--gold); }
  .layer:nth-child(5)::after { background: var(--emerald-light); }

  .layer-benefit {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .layer:nth-child(1) .layer-benefit { color: var(--emerald); }
  .layer:nth-child(2) .layer-benefit { color: var(--ocean); }
  .layer:nth-child(3) .layer-benefit { color: #6B5B8A; }
  .layer:nth-child(4) .layer-benefit { color: var(--gold); }
  .layer:nth-child(5) .layer-benefit { color: var(--emerald-light); }

  .layer-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .layer-desc {
    font-size: 12.5px;
    line-height: 1.65;
    color: var(--slate);
    font-weight: 400;
  }

  /* ── CTA ── */
  .cta {
    background: var(--emerald-deep);
    padding: 64px 56px 60px;
    position: relative;
    overflow: hidden;
  }

  .cta::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,148,62,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1.05;
    margin-bottom: 40px;
    position: relative;
  }

  .cta-headline em {
    color: var(--gold-light);
    font-style: italic;
  }

  .signup-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
  }

  .signup-form input {
    flex: 1;
    min-width: 140px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.11);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 3px;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
  }

  .signup-form input::placeholder {
    color: rgba(255,255,255,0.45);
    font-weight: 300;
  }

  .signup-form input:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.12);
  }

  .signup-btn {
    padding: 14px 30px;
    background: var(--gold);
    color: var(--emerald-deep);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
  }

  .signup-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
  }

  .signup-btn:active { transform: translateY(0); }

  /* ── FOOTER ── */
  .footer {
    background: var(--charcoal);
    padding: 20px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
  }

  .footer-url {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    font-weight: 400;
    letter-spacing: 1px;
  }

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

  /* ── EXPANDED FORM ── */
  .signup-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
  }

  .form-row {
    display: grid;
    gap: 14px;
  }

  .form-row-2 { grid-template-columns: 1fr 1fr; }

  .form-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .form-field-full { width: 100%; }

  .form-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
  }

  .required {
    color: var(--gold);
    font-weight: 700;
  }

  .form-label-optional {
    font-weight: 300;
    letter-spacing: 0;
    text-transform: none;
    font-size: 10px;
    color: rgba(255,255,255,0.3);
  }

  .signup-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.11);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 3px;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    outline: none;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.2s, background 0.2s;
  }

  .signup-form textarea::placeholder { color: rgba(255,255,255,0.4); }
  .signup-form textarea:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.12);
  }

  /* Intent checkboxes */
  .intent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .intent-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 3px;
    transition: border-color 0.2s, background 0.2s;
  }

  .intent-option:hover {
    border-color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.05);
  }

  .intent-option input[type="checkbox"] { display: none; }

  .intent-check {
    width: 16px;
    height: 16px;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 2px;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s, background 0.2s;
  }

  .intent-option input:checked ~ .intent-check {
    background: var(--gold);
    border-color: var(--gold);
  }

  .intent-option input:checked ~ .intent-check::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: 2px solid var(--emerald-deep);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
  }

  .intent-option input:checked ~ .intent-text {
    color: white;
  }

  .intent-option:has(input:checked) {
    border-color: var(--gold);
    background: rgba(201,148,62,0.1);
  }

  .intent-text {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    transition: color 0.2s;
    line-height: 1.3;
  }

  /* Org field — hidden by default */
  .org-field {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
    margin-top: -8px;
  }

  .org-field.visible {
    max-height: 100px;
    opacity: 1;
    margin-top: 0;
  }

  .testimonial-field {
    margin-top: 4px;
  }

  /* Honeypot — completely hidden */
  .hp-field {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
  }

  /* Success / error */
  .form-success, .form-error { display: none; }

  .form-success {
    text-align: center;
    padding: 32px 0 8px;
    animation: fadeUp 0.6s ease both;
  }

  .success-mark {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 16px;
    animation: spinIn 0.5s ease both;
  }

  .success-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    color: white;
    margin-bottom: 8px;
  }

  .success-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
  }

  .form-error {
    font-size: 13px;
    color: #ff9b7a;
    padding: 10px 14px;
    background: rgba(255,100,60,0.12);
    border: 1px solid rgba(255,100,60,0.25);
    border-radius: 3px;
    text-align: center;
  }

  .signup-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
  }

  @keyframes spinIn {
    from { transform: rotate(-90deg) scale(0.5); opacity: 0; }
    to   { transform: rotate(0deg) scale(1); opacity: 1; }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 600px) {
    .form-row-2 { grid-template-columns: 1fr; }
    .intent-grid { grid-template-columns: 1fr; }
    .layers { grid-template-columns: 1fr 1fr; }
  }


  /* ── BAYFRONT INLINE PANEL ── */
  .bayfront-inline {
    padding: 20px 40px 0;
  }
  .bayfront-trigger {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--slate);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0;
    transition: color 0.2s ease;
  }
  .bayfront-trigger:hover {
    color: var(--emerald-deep);
  }
  .bayfront-trigger-action {
    text-decoration: underline;
  }
  .bayfront-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--sand);
    margin: 12px -40px 0;
    padding: 0 40px;
  }
  .bayfront-intro {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--charcoal);
    padding: 28px 0 28px;
    max-width: 740px;
    margin: 0;
  }
  .bayfront-table {
    width: 100%;
    margin: 0 0 28px;
    border-collapse: collapse;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
  }
  .bayfront-table thead tr {
    background: var(--emerald-deep);
    color: var(--warm-white);
  }
  .bayfront-table th {
    padding: 10px 16px;
    font-weight: 600;
    text-align: left;
    letter-spacing: 0.3px;
  }
  .bayfront-table td {
    padding: 10px 16px;
    border-bottom: 1px solid #ddd8ce;
    vertical-align: top;
  }
  .bayfront-category {
    font-weight: 600;
    color: var(--charcoal);
    width: 22%;
  }
  .bayfront-mhp {
    color: var(--emerald);
    width: 39%;
  }
  .bayfront-other {
    color: var(--slate);
    width: 39%;
  }
  .bayfront-pullquote {
    margin: 0 0 36px;
    padding: 20px 24px;
    border-left: 3px solid var(--emerald);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(17px, 2vw, 21px);
    font-style: italic;
    font-weight: 400;
    color: var(--emerald-deep);
    line-height: 1.5;
  }

  @media (max-width: 600px) {
    .bayfront-inline { padding-left: 20px; padding-right: 20px; }
    .bayfront-panel { margin-left: -20px; margin-right: -20px; padding-left: 20px; padding-right: 20px; }
    .bayfront-table th:last-child,
    .bayfront-table td:last-child { display: none; }
  }

  @media print {
    body { max-width: 100%; }
    .hero { height: 420px; }
    .hero-photo { transform: scale(1) !important; }
    .signup-form input, .signup-btn { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  }
