/*
Theme Name: Cool Health
Theme URI: https://coolhealth.example
Author: Cool Health
Description: Warm Hamptons-inspired theme for the Cool Health family GP clinic landing page. All content is editable via the "Cool Health" ACF options page.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: cool-health
*/

:root {
  /* Warm Hamptons palette — soft whites, warm greys, greige & charcoal accents */
  --primary:        #505761;  /* Charcoal Navy */
  --primary-dark:   #3D3A39;  /* Deep Timber */
  --primary-light:  #6B7079;
  --primary-tint:   #E6E3DE;  /* Warm Dove Grey */
  --accent:         #97928B;  /* warm greige accent */
  --accent-dark:    #76726C;
  --cream:          #F4F3F0;  /* Soft Hamptons White */
  --sand:           #E6E3DE;  /* Warm Dove Grey */
  --sand-dark:      #CFCBC4;  /* Weathered Timber Grey */
  --text:           #3D3A39;  /* Deep Timber */
  --muted:          #76726C;
  --border:         #DAD6CF;
  --white:          #FFFFFF;
  --success:        #4F6B57;
  --error:          #B0524A;
  --shadow-sm:      0 1px 2px rgba(61, 58, 57, 0.06), 0 1px 3px rgba(61, 58, 57, 0.04);
  --shadow:         0 4px 14px rgba(61, 58, 57, 0.08);
  --shadow-lg:      0 14px 36px rgba(61, 58, 57, 0.12);
  --radius:         12px;
  --radius-lg:      20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { color: var(--muted); }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; display: block; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ---------- HEADER ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(224, 217, 204, 0.6);
}
header.site.is-static { position: static; }
.logo-img { height: 50px; width: auto; display: block; }
.nav {
  display: flex; align-items: center; justify-content: center;
  padding: 18px 24px; max-width: 1120px; margin: 0 auto;
}
.logo {
  font-family: 'Lora', serif; font-weight: 600; font-size: 1.35rem;
  color: var(--primary-dark); letter-spacing: 0.01em;
  display: flex; align-items: center; gap: 12px;
}
.logo-text { line-height: 1.05; }
.logo-text small {
  display: block; font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-top: 3px;
}
.logo-mark {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--primary-dark); flex-shrink: 0;
}
.logo-mark svg { width: 46px; height: 46px; }
/* ---------- HERO ---------- */
.hero {
  background:
    radial-gradient(80% 60% at 20% 0%, rgba(80, 87, 97, 0.10) 0%, transparent 60%),
    radial-gradient(60% 50% at 90% 30%, rgba(184, 179, 172, 0.20) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
  padding: 80px 0 100px;
  position: relative; overflow: hidden;
}
.hero-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 999px;
  font-size: 0.82rem; color: var(--primary-dark); font-weight: 500;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
.hero h1 { margin-bottom: 18px; }
.hero h1 em { font-style: italic; color: var(--primary); font-weight: 500; }
.hero p.lede {
  font-size: 1.1rem; color: var(--muted); margin-bottom: 32px; max-width: 540px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: 0.98rem; cursor: pointer;
  border: 0; transition: all 0.2s ease;
  font-family: inherit; text-decoration: none;
}
input.gform_button {
  display: inline-flex !important; align-items: center !important; gap: 10px !important;
  padding: 14px 26px !important; border-radius: 999px !important;
  font-weight: 600 !important; font-size: 0.98rem !important; cursor: pointer !important;
  border: 0 !important; transition: all 0.2s ease !important;
  font-family: inherit !important; text-decoration: none !important;
}
.btn-primary{ background: var(--primary); color: var(--white); }
input.gform_button.button { background: var(--primary)!important; color: var(--white)!important; }
input.gform_button:hover { background: var(--primary-dark)!important;  color: var(--white)!important;  transform: translateY(-1px)!important;  box-shadow: var(--shadow)!important;  }
.btn-primary:hover{ background: var(--primary-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary { background: var(--white); color: var(--primary-dark); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-accent { background: var(--white); color: var(--primary-dark); }
.btn-accent:hover { background: var(--sand); color: var(--primary-dark); transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; }

.hero-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transform: rotate(0.5deg);
}
.hero-card h3 {
  font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--primary); margin-bottom: 16px;
}
.hero-card .stat {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.hero-card .stat-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary-tint); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-card .stat-icon svg { width: 20px; height: 20px; }
.hero-card .stat-text { font-size: 0.95rem; color: var(--text); }
.hero-card .stat-text strong { display: block; font-weight: 600; }
.hero-card .stat-text span { color: var(--muted); font-size: 0.86rem; }

/* ---------- SECTIONS ---------- */
section { padding: 80px 0; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-head .eyebrow {
  display: inline-block; font-size: 0.82rem; font-weight: 600;
  color: var(--primary); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.section-head h2 { margin-bottom: 14px; }
.section-head p { font-size: 1.05rem; color: var(--muted); }

/* ---------- VISION ---------- */
.vision {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.vision-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
}
.vision-text h2 { margin-bottom: 18px; }
.vision-text p { font-size: 1.05rem; margin-bottom: 14px; color: var(--text); }
.vision-text p.muted { color: var(--muted); font-size: 0.98rem; }
.vision-note {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--sand); padding: 16px 18px; border-radius: var(--radius);
  margin-top: 24px;
}
.vision-note svg { flex-shrink: 0; color: var(--primary); margin-top: 2px; }
.vision-note span { font-size: 0.94rem; color: var(--text); }
.vision-visual {
  background: linear-gradient(135deg, var(--primary-tint) 0%, var(--sand) 100%);
  border-radius: var(--radius-lg); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  border: 1px solid var(--border);
}
.vision-visual img { width: 100%; height: 100%; object-fit: cover; }
.vision-visual .placeholder-text {
  font-family: 'Lora', serif; font-style: italic; color: var(--muted);
  text-align: center; padding: 24px;
}

/* ---------- CARE PILLARS ---------- */
.pillars { background: var(--cream); }
.pillars-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 900px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pillars-grid { grid-template-columns: 1fr; } }
.pillar {
  background: var(--white); padding: 28px 24px; border-radius: var(--radius);
  border: 1px solid var(--border); transition: all 0.25s ease;
}
.pillar:hover {
  transform: translateY(-3px); box-shadow: var(--shadow);
  border-color: var(--primary-light);
}
.pillar-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-tint); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.pillar-icon svg { width: 24px; height: 24px; }
.pillar h3 { margin-bottom: 8px; font-size: 1.1rem; font-family: 'Inter', sans-serif; }
.pillar p { font-size: 0.94rem; color: var(--muted); }

/* ---------- VOICE / CTA STRIP ---------- */
.voice {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.voice::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.voice-inner { text-align: center; position: relative; }
.voice h2 { color: var(--white); margin-bottom: 16px; }
.voice p { color: rgba(255, 255, 255, 0.85); font-size: 1.05rem; max-width: 600px; margin: 0 auto 28px; }
.voice .btn-accent { box-shadow: var(--shadow); }

/* ---------- FORMS ---------- */
.form-section { background: var(--white); }
.form-section + .form-section { background: var(--sand); }
.form-grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px;
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  align-items: start;
}
.form-intro h2 { margin-bottom: 14px; }
.form-intro p { font-size: 1rem; margin-bottom: 14px; }
.form-intro ul {
  list-style: none; margin: 24px 0 0; padding: 0;
}
.form-intro li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--text); font-size: 0.96rem; margin-bottom: 12px;
}
.form-intro li svg {
  width: 20px; height: 20px; flex-shrink: 0; color: var(--primary); margin-top: 2px;
}
.form-card {
  background: var(--white); padding: 36px 20px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.form-section + .form-section .form-card { background: var(--white); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
label {
  display: block; font-size: 0.88rem; font-weight: 500;
  color: var(--text); margin-bottom: 6px;
}
label .req { color: var(--accent); margin-left: 2px; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
input[type="date"], select, textarea {
  width: 100%; padding: 11px 14px; font-size: 0.96rem;
  border: 1px solid var(--border); border-radius: 8px;
  background: var(--white); color: var(--text);
  font-family: inherit; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(80, 87, 97, 0.14);
}
textarea { resize: vertical; min-height: 90px; }
.checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; margin-top: 6px; }
@media (max-width: 600px) { .checkbox-group { grid-template-columns: 1fr; } }
.check {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.94rem; color: var(--text); cursor: pointer;
  padding: 4px 0;
}
.check input { margin-top: 3px; accent-color: var(--primary); }
.check.consent { margin-top: 8px; padding: 12px; background: var(--sand); border-radius: 8px; }
.check.consent span { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form-success {
  display: none; padding: 20px; background: rgba(47, 133, 90, 0.08);
  border: 1px solid rgba(47, 133, 90, 0.3); color: var(--success);
  border-radius: 8px; margin-bottom: 18px; font-size: 0.94rem;
}
.form-success.show { display: block; }

/* ---------- GRAVITY FORMS overrides ---------- */
/* The EOI sections now host Gravity Forms output inside .ch-gf-host. We
   reset GF's default chrome and reapply the existing form design so the
   page looks identical to the legacy HTML build. CSS class hooks come
   from gravity-forms.php (form cssClass = "ch-gf ch-gf-patient" / "ch-gf-hcp",
   field cssClass = "ch-half" / "ch-checkbox-grid" / "ch-consent"). */
.ch-gf-host .gform_wrapper { margin: 0; padding: 0; }
.ch-gf-host .gform_heading,
.ch-gf-host .gform_required_legend { display: none; }
.ch-gf-host .gform_fields {
  list-style: none; margin: 0; padding: 0; display: grid;
  grid-template-columns: 1fr 1fr; gap: 14px 14px;
}
@media (max-width: 600px) { .ch-gf-host .gform_fields { grid-template-columns: 1fr; } }
.ch-gf-host .gfield {
  margin: 0 0 4px; padding: 0; grid-column: 1 / -1; /* full width by default */
}
.ch-gf-host .gfield.ch-half { grid-column: span 1; }
@media (max-width: 600px) { .ch-gf-host .gfield.ch-half { grid-column: 1 / -1; } }
.ch-gf-host .gfield_label {
  display: block; font-size: 0.88rem; font-weight: 500;
  color: var(--text); margin-bottom: 6px;
}
.ch-gf-host .gfield_required {
  color: var(--accent); margin-left: 2px;
}
.ch-gf-host .ginput_container input[type="text"],
.ch-gf-host .ginput_container input[type="email"],
.ch-gf-host .ginput_container input[type="tel"],
.ch-gf-host .ginput_container input[type="number"],
.ch-gf-host .ginput_container select,
.ch-gf-host .ginput_container textarea {
  width: 100%;  font-size: 0.96rem;
  border: 1px solid var(--border); border-radius: 8px;
  background: var(--white); color: var(--text);
  font-family: inherit; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.ch-gf-host .ginput_container input:focus,
.ch-gf-host .ginput_container select:focus,
.ch-gf-host .ginput_container textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(80, 87, 97, 0.14);
}
.ch-gf-host .ginput_container textarea { resize: vertical; min-height: 90px; }
/* Checkbox / consent groups */
.ch-gf-host .gfield.ch-checkbox-grid .gfield_checkbox {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; margin-top: 6px;
}
@media (max-width: 600px) {
  .ch-gf-host .gfield.ch-checkbox-grid .gfield_checkbox { grid-template-columns: 1fr; }
}
.ch-gf-host .gfield_checkbox li,
.ch-gf-host .gfield_radio li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.94rem; color: var(--text); padding: 4px 0;
}
.ch-gf-host .gfield_checkbox input,
.ch-gf-host .gfield_radio input {
  margin-top: 3px; accent-color: var(--primary);
}
.ch-gf-host .gfield_checkbox label,
.ch-gf-host .gfield_radio label {
  font-size: 0.94rem; color: var(--text);
  font-weight: 400; cursor: pointer;
}
.gform-theme--framework select:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):where(:not([multiple])):hover {
    background-image: none !important;
}
.gform-theme--framework select:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):where(:not([multiple])):focus{
    background-image: none !important;
}
.gform-theme--foundation .gform_fields {
    row-gap: 25px !important;
}
/* Consent field — single-checkbox in a tinted box */
.ch-gf-host .gfield.ch-consent {
  background: var(--sand); padding: 12px;
  border-radius: 8px; margin-top: 8px;
}
.ch-gf-host .gfield.ch-consent .gfield_label { display: none; }
.ch-gf-host .gfield.ch-consent .ginput_container_consent {
  display: flex; gap: 10px; align-items: flex-start;
}
.ch-gf-host .gfield.ch-consent .ginput_container_consent label {
  font-size: 0.88rem; color: var(--muted); line-height: 1.5;
}
/* Submit button */
.ch-gf-host .gform_footer {
  padding: 0; margin: 14px 0 0; display: flex;
}
.ch-gf-host .gform_button {
  flex: 1; display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px; border-radius: 999px; border: 0;
  background: var(--primary); color: var(--white);
  font-weight: 600; font-size: 0.98rem; cursor: pointer;
  font-family: inherit; transition: all 0.2s ease;
}
.ch-gf-host .gform_button:hover {
  background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow);
}
/* Validation messages */
.ch-gf-host .gfield_description.validation_message,
.ch-gf-host .gfield_validation_message {
  color: var(--error); font-size: 0.86rem; margin-top: 6px;
}
.ch-gf-host .gform_validation_errors {
  background: rgba(176, 82, 74, 0.08);
  border: 1px solid rgba(176, 82, 74, 0.3);
  color: var(--error);
  border-radius: 8px; padding: 14px 16px; margin-bottom: 18px;
  font-size: 0.94rem;
}
.ch-gf-host .gform_validation_errors h2 {
  font-size: 0.98rem; font-family: 'Inter', sans-serif;
  font-weight: 600; color: var(--error); margin: 0 0 6px;
}
.ch-gf-host .gfield_error input,
.ch-gf-host .gfield_error select,
.ch-gf-host .gfield_error textarea {
  border-color: var(--error) !important;
}
/* AJAX spinner */
.ch-gf-host .gform_ajax_spinner {
  width: 20px; height: 20px; margin-left: 10px;
}
/* Confirmation message (reuses .form-success styling we already had) */
.ch-gf-host .gform_confirmation_wrapper { padding: 0; margin: 0; }

/* Name field — render First + Last side by side inside the field column.
   GF wraps each sub-input in .name_first / .name_last / .name_middle etc.;
   we flex them so they render like the Jotform two-up layout. */
.ch-gf-host .ginput_complex.ginput_container_name {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
@media (max-width: 600px) {
  .ch-gf-host .ginput_complex.ginput_container_name { grid-template-columns: 1fr; }
}
.ch-gf-host .ginput_complex.ginput_container_name > span {
  display: block; min-width: 0;
}
.ch-gf-host .ginput_complex.ginput_container_name > span > input { width: 100%; }
.ch-gf-host .ginput_complex.ginput_container_name .gform-field-label--type-sub {
  display: block; font-size: 0.78rem; color: var(--muted);
  font-weight: 400; margin-top: 4px;
}

/* Phone field — GF wraps the masked phone input in .ginput_container_phone;
   make sure it stretches to fill the column. */
.ch-gf-host .ginput_container_phone input { width: 100%; }

/* hCaptcha widget — center within the field column, keep some breathing room. */
.ch-gf-host .gfield.ch-captcha .ginput_container_captcha,
.ch-gf-host .gfield.ch-captcha .gfield_captcha_container,
.ch-gf-host .gfield.ch-captcha .h-captcha {
  display: flex; justify-content: flex-start; margin-top: 4px;
}
.ch-gf-host .gfield.ch-captcha iframe { max-width: 100%; }

/* ---------- FAQ ---------- */
.faq { background: var(--cream); }
.faq-list { max-width: 760px; margin: 0 auto; }
details.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0; margin-bottom: 12px;
  transition: box-shadow 0.2s ease;
}
details.faq-item[open] { box-shadow: var(--shadow-sm); }
details.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 22px;
  font-weight: 600; color: var(--text); font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+'; font-size: 1.4rem; color: var(--primary); font-weight: 300;
  transition: transform 0.2s ease;
}
details.faq-item[open] summary::after { content: '−'; }
details.faq-item p {
  padding: 0 22px 20px; color: var(--muted); font-size: 0.96rem;
}

/* ---------- FOOTER ---------- */
footer.site {
  background: var(--primary-dark); color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 32px;
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
footer.site .logo { color: var(--white); margin-bottom: 18px; }
footer.site .footer-logo-img { height: auto; width: auto; max-width: 220px; max-height: 130px; }
footer.site .logo-text small { color: rgba(255, 255, 255, 0.6); }
footer.site .logo-mark { color: var(--white); }
footer.site p {
  color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; max-width: 460px;
}
.footer-bottom {
  margin-top: 30px; padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.84rem; color: rgba(255, 255, 255, 0.55);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-card { transform: none; max-width: 480px; }
  .vision-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; gap: 32px; }
  section { padding: 60px 0; }
  .hero { padding: 56px 0 72px; }
  .form-card { padding: 24px; }
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
