/* AquaFromAir — contact page styles */

  :root {
    --abyss:      #1A2B2C;
    --teal:       #3D7A80;
    --teal-deep:  #2C5F64;
    --teal-mid:   #4E8F95;
    --aqua:       #86CCE0;
    --aqua-pale:  #C8E9F2;
    --linen:      #F2EBE1;
    --linen-mid:  #EAE0D4;
    --linen-dark: #DDD0C0;
    --gold:       #C8A96E;
    --mist:       #F2F5F2;
    --mist-pale:  #E6F3F4;
    --white:      #FFFFFF;
    --slate:      #7A9496;
    --text:       #2C3B3C;
    --text-light: #6B7C7D;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Nunito Sans', sans-serif; background: var(--linen); color: var(--text);}

  /* ─── TICKER ─── */
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ─── NAV — handled by global.css ─── */
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  

  /* ─── PAGE HEADER ─── */
  .page-header {
    margin-top: 0; margin-bottom: 0;
    background: linear-gradient(135deg, var(--abyss) 0%, var(--teal-deep) 100%);
    padding: 164px max(56px, calc((100% - 1100px) / 2)) 60px;
    position: relative;
    overflow: hidden;
  }
  .page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 75% 50%, rgba(134,204,224,0.07) 0%, transparent 60%);
    pointer-events: none;
  }
  .ph-left { position: relative; z-index: 1; max-width: 900px; }
  .ph-kicker { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--aqua); margin-bottom: 16px; opacity: 0; animation: fadeUp 0.6s ease 0.1s forwards; }
  .ph-headline { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(28px, 3.2vw, 42px); line-height: 1.08; color: var(--white); margin-bottom: 10px; opacity: 0; animation: fadeUp 0.7s ease 0.2s forwards; }
  .ph-headline em { font-style: italic; color: var(--aqua); }
  .ph-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.70); max-width: 750px; line-height: 1.7; opacity: 0; animation: fadeUp 0.7s ease 0.35s forwards; }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

  /* ─── CONTACT MAIN ─── */
  .contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 0;
    border-bottom: 1px solid var(--linen-dark);
  }

  /* ─── FORM SIDE ─── */
  .contact-form-wrap {
    padding: 72px 72px 72px max(56px, calc(100% - 550px));
    background: var(--white);
    border-right: 1px solid var(--linen-dark);
  }
  .section-label {
    font-size: 11px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-label::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--teal); }
  .form-headline {
    font-family: 'Fraunces', serif; font-weight: 300; font-style: italic;
    font-size: clamp(20px, 2.2vw, 32px); line-height: 1.2;
    color: var(--abyss); margin-bottom: 10px; white-space: nowrap;
  }
  .form-headline em { color: var(--teal-deep); }
  .form-sub { font-size: 14px; font-weight: 300; color: var(--text-light); line-height: 1.75; margin-bottom: 40px; max-width: 400px; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
  .form-row-full { margin-bottom: 12px; }

  .field-wrap { display: flex; flex-direction: column; gap: 6px; }
  .field-label { font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); }

  .cf-input,
  .cf-select,
  .cf-textarea {
    width: 100%;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text);
    background: var(--linen);
    border: 1.5px solid var(--linen-dark);
    border-radius: 2px;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
  }
  .cf-input::placeholder, .cf-textarea::placeholder { color: var(--slate); }
  .cf-input:focus, .cf-select:focus, .cf-textarea:focus {
    border-color: var(--teal);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(61,122,128,0.08);
  }
  .cf-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237A9496' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
  }
  .cf-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

  .form-submit {
    margin-top: 28px;
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  }
  .submit-btn {
    background: var(--teal-deep);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: flex; align-items: center; gap: 10px;
  }
  .submit-btn:hover { background: var(--abyss); transform: translateY(-1px); }
  .submit-note { font-size: 12px; font-weight: 300; color: var(--text-light); line-height: 1.5; }

  /* ─── INFO SIDE ─── */
  .contact-info-wrap {
    padding: 72px max(56px, calc(100% - 550px)) 72px 64px;
    background: var(--linen);
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .info-block { margin-bottom: 28px; }
  .info-block:last-child { margin-bottom: 0; }

  .info-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 12px;
    display: flex; align-items: center; gap: 8px;
  }
  .info-label::after { content: ''; flex: 1; height: 1px; background: var(--linen-dark); }

  .info-value {
    font-family: 'Fraunces', serif; font-size: 18px; font-weight: 300;
    color: var(--abyss); line-height: 1.5; margin-bottom: 6px;
  }
  .info-sub { font-size: 13px; font-weight: 300; color: var(--text-light); line-height: 1.6; }

  .info-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Fraunces', serif; font-size: 18px; font-weight: 300;
    color: var(--teal-deep); text-decoration: none; line-height: 1.5;
    transition: color 0.2s;
  }
  .info-link:hover { color: var(--teal); }
  .info-link svg { opacity: 0.5; flex-shrink: 0; }

  .response-card {
    background: var(--abyss);
    border-radius: 2px;
    padding: 24px 28px;
    margin-top: 0;
  }
  .response-card-kicker {
    font-family: 'Jost', sans-serif; font-size: 9px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
  }
  .response-card-text {
    font-family: 'Fraunces', serif; font-size: 16px; font-weight: 300;
    font-style: italic; color: rgba(255,255,255,0.75); line-height: 1.55;
    margin-bottom: 16px;
  }
  .response-card-items { display: flex; flex-direction: column; gap: 8px; }
  .response-item {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.5;
  }
  .response-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--teal-mid); flex-shrink: 0; margin-top: 5px; }

  /* ─── CTA STRIP ─── */
  .cta-strip {
    background: var(--teal-deep);
    padding: 72px max(56px, calc((100% - 1100px) / 2));
    display: flex; align-items: center; justify-content: space-between; gap: 48px;
    position: relative; overflow: hidden;
  }
  .cta-strip > * { position: relative; z-index: 1; }
  .cta-strip-kicker { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
  .cta-strip-headline { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(20px, 2vw, 34px); line-height: 1.15; color: var(--white); white-space: nowrap; }
  .cta-strip-headline em { font-style: italic; color: var(--aqua); }
  .cta-strip-sub { font-family: 'Nunito Sans', sans-serif; font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.85); margin-top: 12px; max-width: 480px; line-height: 1.6; }
  .cta-strip-right { flex-shrink: 0; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
  .cta-strip-btn { padding: 15px 36px; font-size: 14px; font-weight: 500; letter-spacing: 0.04em; background: var(--white); color: var(--teal-deep); border-radius: 2px; text-decoration: none; transition: background 0.2s, transform 0.15s; display: flex; align-items: center; gap: 10px; }
  .cta-strip-btn:hover { background: var(--linen); transform: translateY(-1px); }
  .cta-strip-secondary { font-size: 12px; color: rgba(255,255,255,0.4); text-align: right; }
  .ghost-wrap { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
  .ghost-word { position: absolute; font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-style: normal; text-transform: uppercase; white-space: nowrap; pointer-events: none; user-select: none; line-height: 0.82; }
  .ghost-word.dark { color: rgba(255,255,255,0.04); }
  .ghost-word.light { color: rgba(26,43,44,0.04); }

  /* ─── SOCIAL ICONS ROW ─── */
  .social-icons-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
  .social-icon-link {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    background: var(--white); border: 1px solid var(--linen-dark);
    color: var(--slate); transition: background 0.2s, border-color 0.2s, color 0.2s;
  }
  .social-icon-link svg { width: 15px; height: 15px; fill: currentColor; }
  .social-icon-link:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }

  /* ─── REVEAL ─── */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ─── SUCCESS STATE ─── */
  .form-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
  }
  .form-success.visible { display: block; }
  .success-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--mist-pale); border: 1.5px solid var(--aqua-pale);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
  }
  .success-title { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 300; font-style: italic; color: var(--abyss); margin-bottom: 10px; }
  .success-body { font-size: 14px; font-weight: 300; color: var(--text-light); line-height: 1.7; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .contact-form-wrap { padding: 56px 40px; }
    .contact-info-wrap { padding: 56px 40px; }
    .cta-strip { padding: 56px 40px; }
    .page-header { padding: 56px 40px 52px; }
  }
  @media (max-width: 900px) {
    body {  }
    nav { padding: 0 20px; }
    .nav-links, .nav-right { display: none; }
    
    
    .page-header { padding: 160px 24px 40px; }
    .contact-section { grid-template-columns: 1fr; }
    .contact-form-wrap { border-right: none; border-bottom: 1px solid var(--linen-dark); padding: 48px 24px; }
    .contact-info-wrap { padding: 48px 24px; }
    .cta-strip { flex-direction: column; align-items: flex-start; gap: 28px; padding: 48px 24px; }
    .cta-strip-headline { white-space: normal; }
    .cta-strip-right { align-items: flex-start; }
  }
  @media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .ph-headline { font-size: 28px; }
  
  /* Lede standard additions */
  .info-sub,
  .response-item {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
  }

  /* Title standard */
  .cta-strip-headline {
    font-size: 30px !important;
    white-space: normal;
  }
}
