/* ============================================================
   Macey Purcell — Student Dental Hygienist
   Palette sampled from the SIU Dental Hygiene Clinic flyer.
   ============================================================ */

:root {
  --pink-900: #6e3346;
  --pink-800: #8d4560;
  --pink-700: #b76279;
  --pink-600: #db6f9c;
  --pink-500: #e77aa4;
  --pink-400: #f291b7;
  --pink-300: #fc93bc;
  --pink-200: #fbd3e0;
  --pink-100: #ffe9f0;
  --pink-050: #fdf3f6;

  --cream-300: #ffe1b8;
  --cream-200: #ffebcc;
  --cream-100: #fff6e6;
  --cream-050: #fffbf2;

  --ink: #402a33;
  --ink-soft: #6c5560;
  --ink-mute: #93808a;

  --white: #fff;
  --line: #f4dfe6;
  --line-strong: #ecc9d6;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 8px rgba(146, 74, 100, .07);
  --shadow: 0 10px 30px rgba(146, 74, 100, .09);
  --shadow-lg: 0 24px 60px rgba(146, 74, 100, .14);

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-script: "Parisienne", "Snell Roundhand", cursive;

  --wrap: 1140px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream-050);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--pink-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--pink-800); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.18; margin: 0; color: var(--pink-900); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.wrap-narrow { max-width: 720px; }
.script { font-family: var(--font-script); font-weight: 400; }
.muted { color: var(--ink-mute); font-weight: 400; }
.quoted::before { content: "\201C"; }
.quoted::after { content: "\201D"; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--pink-600); color: #fff; padding: 10px 18px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); text-decoration: none;
  transition: top .18s ease;
}
.skip-link:focus { top: 0; color: #fff; }

:focus-visible {
  outline: 3px solid var(--pink-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-body); font-weight: 700; font-size: 16px; line-height: 1;
  padding: 15px 26px; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, color .16s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: #fff; box-shadow: 0 8px 20px rgba(219, 111, 156, .32);
}
.btn-primary:hover { color: #fff; box-shadow: 0 12px 28px rgba(219, 111, 156, .42); transform: translateY(-2px); }

.btn-ghost {
  background: var(--white); color: var(--pink-800);
  border-color: var(--line-strong); box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { color: var(--pink-900); border-color: var(--pink-400); transform: translateY(-2px); }

.btn-sm { padding: 11px 20px; font-size: 15px; }
.btn-lg { padding: 18px 32px; font-size: 17px; }
.btn-block { width: 100%; }
.ico { width: 18px; height: 18px; fill: currentColor; flex: none; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 251, 242, .88);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 20px; min-height: 74px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand-mark {
  display: grid; place-items: center; width: 42px; height: 42px; flex: none;
  border-radius: 50%; background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: .02em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--pink-900); }
.brand-role { font-size: 12px; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }

.site-nav { display: flex; gap: 26px; }
.site-nav a {
  text-decoration: none; color: var(--ink-soft); font-weight: 600; font-size: 15px;
  padding: 6px 0; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s;
}
.site-nav a:hover { color: var(--pink-700); border-bottom-color: var(--pink-400); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px; background: none;
  border: 1px solid var(--line-strong); border-radius: 12px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--pink-800); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; }
[hidden] { display: none !important; }
.mobile-nav a {
  text-decoration: none; color: var(--ink); font-weight: 600; padding: 13px 4px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .mobile-cta {
  margin-top: 12px; text-align: center; border: 0; border-radius: 999px; color: #fff;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600)); padding: 15px;
}

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(48px, 7vw, 92px) 0 clamp(56px, 8vw, 104px);
  background:
    radial-gradient(1100px 620px at 82% 6%, var(--cream-200) 0%, rgba(255,235,204,0) 62%),
    radial-gradient(900px 640px at 6% 88%, var(--pink-100) 0%, rgba(255,233,240,0) 66%),
    linear-gradient(180deg, var(--pink-050), var(--cream-050));
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}

.eyebrow {
  font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--pink-700); margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.45rem, 5.6vw, 4rem);
  letter-spacing: -.015em; margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--pink-600); font-weight: 400; }

.lede { font-size: clamp(1.02rem, 1.5vw, 1.16rem); color: var(--ink-soft); max-width: 34em; margin-bottom: 30px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.hero-chips li {
  background: rgba(255, 255, 255, .78); border: 1px solid var(--line-strong);
  border-radius: 999px; padding: 9px 17px; font-size: 14.5px; color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.hero-chips strong { color: var(--pink-700); font-weight: 800; }

.hero-media { position: relative; display: flex; flex-direction: column; align-items: center; }
.photo-frame {
  position: relative; z-index: 2; width: min(420px, 78vw); aspect-ratio: 1;
  border-radius: 50%; overflow: hidden;
  border: 10px solid rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-lg);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-caption { position: relative; z-index: 2; margin: 18px 0 0; font-size: clamp(1.9rem, 3.4vw, 2.5rem); color: var(--pink-600); line-height: 1; }

.blob { position: absolute; border-radius: 50%; filter: blur(4px); z-index: 1; }
.blob-a { width: 150px; height: 150px; background: var(--cream-300); opacity: .55; top: -14px; right: 2%; }
.blob-b { width: 190px; height: 190px; background: var(--pink-200); opacity: .5; bottom: 4%; left: -4%; }

/* ---------- sections ---------- */
.section { padding: clamp(58px, 8vw, 104px) 0; }
.section-tint {
  background: linear-gradient(180deg, var(--pink-050), var(--white) 42%, var(--pink-050));
  border-block: 1px solid var(--line);
}

.section-head { max-width: 640px; margin: 0 auto clamp(38px, 5vw, 58px); text-align: center; }
.eyebrow-script { font-size: clamp(1.75rem, 3.4vw, 2.25rem); color: var(--pink-500); margin: 0 0 6px; line-height: 1.1; }
.section-head h2 { font-size: clamp(1.85rem, 3.7vw, 2.6rem); letter-spacing: -.01em; margin-bottom: 16px; }
.section-sub { color: var(--ink-soft); font-size: 1.02rem; }

.sub-head { font-size: 1.2rem; margin: 32px 0 12px; }

/* ---------- pricing ---------- */
.price-list {
  list-style: none; margin: 0 auto 40px; padding: clamp(22px, 3.4vw, 38px);
  max-width: 760px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.price-item {
  display: flex; align-items: baseline; gap: 12px;
  padding: 15px 4px; border-bottom: 1px dashed var(--line-strong);
}
.price-item:last-child { border-bottom: 0; }
.price-name { font-family: var(--font-display); font-size: 1.14rem; font-weight: 500; color: var(--pink-900); }
.price-dots { flex: 1 1 auto; min-width: 18px; border-bottom: 2px dotted var(--pink-200); transform: translateY(-4px); }
.price-amt {
  font-family: var(--font-display); font-size: 1.42rem; font-weight: 700;
  color: var(--pink-600); flex: none;
}

.cap-banner {
  display: flex; align-items: center; gap: clamp(18px, 3vw, 34px);
  max-width: 860px; margin: 0 auto 44px; padding: clamp(24px, 3.4vw, 36px);
  background: linear-gradient(120deg, var(--cream-100), var(--pink-100));
  border: 1px solid var(--cream-300); border-radius: var(--radius-lg);
}
.cap-amount {
  font-family: var(--font-display); font-weight: 700; margin: 0; flex: none;
  font-size: clamp(2.8rem, 7vw, 4.4rem); line-height: 1; color: var(--pink-600);
}
.cap-title { font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; color: var(--pink-900); margin-bottom: 8px; }
.cap-body { color: var(--ink-soft); font-size: .98rem; margin: 0; }

.note-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px;
  max-width: 860px; margin-inline: auto;
}
.note-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm);
}
.note-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.note-card p { font-size: .95rem; color: var(--ink-soft); margin: 0; }

/* ---------- stats ---------- */
.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 780px; margin: 0 auto clamp(38px, 5vw, 56px);
}
.stat {
  text-align: center; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 12px; box-shadow: var(--shadow-sm);
}
.stat-num {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--pink-600); line-height: 1; margin: 0 0 8px;
}
.stat-num span { display: block; font-family: var(--font-body); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--pink-400); margin-top: 6px; }
.stat-label { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* ---------- cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px); box-shadow: var(--shadow-sm);
}
.card h3 { font-size: 1.32rem; margin-bottom: 12px; }
.card p { color: var(--ink-soft); font-size: .98rem; }
.card strong { color: var(--pink-800); }
.card-icon {
  display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 18px;
  border-radius: 14px; background: linear-gradient(135deg, var(--pink-100), var(--cream-200));
}
.card-icon svg {
  width: 25px; height: 25px;
  fill: none; stroke: var(--pink-600); stroke-width: 1.85;
  stroke-linecap: round; stroke-linejoin: round;
}
.card-alert { border-color: var(--cream-300); background: linear-gradient(180deg, var(--cream-050), var(--white)); }
.card-alert .card-icon { background: linear-gradient(135deg, var(--cream-200), var(--cream-300)); }
.card-alert .card-icon svg { stroke: #c98625; }

.closing-note {
  max-width: 720px; margin: clamp(34px, 4vw, 48px) auto 0; text-align: center;
  color: var(--ink-soft); font-size: 1rem; font-style: italic;
}

/* ---------- before you come ---------- */
.qa-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 24px; }
.qa {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 36px); box-shadow: var(--shadow-sm);
}
.qa-num {
  font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; line-height: 1;
  color: var(--pink-200); margin: 0 0 10px;
}
.qa h3 { font-size: 1.28rem; margin-bottom: 22px; }

.branch { border-left: 3px solid var(--line-strong); padding: 4px 0 4px 18px; margin-bottom: 20px; }
.branch:last-child { margin-bottom: 0; }
.branch p { font-size: .96rem; color: var(--ink-soft); }
.branch-label {
  display: inline-block; font-family: var(--font-body); font-weight: 800; font-size: .74rem;
  letter-spacing: .12em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px;
  margin-bottom: 10px !important;
}
.branch-no { border-left-color: var(--pink-200); }
.branch-no .branch-label { background: var(--pink-100); color: var(--pink-700); }
.branch-yes { border-left-color: var(--cream-300); }
.branch-yes .branch-label { background: var(--cream-200); color: #a2701f; }

.branch-list { margin: 0; padding-left: 20px; }
.branch-list li { font-size: .95rem; color: var(--ink-soft); margin-bottom: 12px; }
.branch-list li:last-child { margin-bottom: 0; }
.branch-list strong, .branch strong { color: var(--pink-800); }

.download-card {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  margin-top: 28px; padding: clamp(24px, 3vw, 32px);
  background: linear-gradient(120deg, var(--pink-100), var(--cream-100));
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
}
.download-icon {
  display: grid; place-items: center; width: 54px; height: 54px; flex: none;
  border-radius: 16px; background: var(--white); box-shadow: var(--shadow-sm);
}
.download-icon svg {
  width: 27px; height: 27px;
  fill: none; stroke: var(--pink-600); stroke-width: 1.85;
  stroke-linecap: round; stroke-linejoin: round;
}
.download-body { flex: 1 1 300px; }
.download-body h3 { font-size: 1.18rem; margin-bottom: 6px; }
.download-body p { font-size: .95rem; color: var(--ink-soft); margin: 0; }

/* ---------- directions ---------- */
.directions-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(26px, 4vw, 52px); align-items: start; }
.directions-main p { color: var(--ink-soft); }
.directions-main strong { color: var(--pink-800); }

.callout { padding: 18px 22px; border-radius: var(--radius); margin-bottom: 24px; }
.callout p { margin: 0; font-size: .98rem; }
.callout-warn { background: var(--cream-100); border: 1px solid var(--cream-300); color: var(--ink); }
.callout-warn strong { color: #a2701f; }

.tick-list { list-style: none; margin: 0; padding: 0; }
.tick-list li {
  position: relative; padding-left: 34px; margin-bottom: 14px;
  color: var(--ink-soft); font-size: .98rem;
}
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 20px; height: 20px;
  border-radius: 50%; background: var(--pink-300);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='11' fill='black'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='11' fill='black'/></svg>") center/contain no-repeat;
}
.tick-list li::after {
  content: ""; position: absolute; left: 5px; top: .74em; width: 10px; height: 5px;
  border-left: 2.5px solid #fff; border-bottom: 2.5px solid #fff; transform: rotate(-45deg);
}

.info-card {
  position: sticky; top: 96px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 30px); box-shadow: var(--shadow);
}
.info-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.info-card address { font-style: normal; color: var(--ink-soft); margin-bottom: 18px; }
.info-card hr { border: 0; border-top: 1px solid var(--line); margin: 22px 0; }

.info-list { margin: 22px 0 0; }
.info-list dt {
  font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--pink-400); margin-bottom: 4px;
}
.info-list dd { margin: 0 0 16px; color: var(--ink-soft); }
.info-list dd:last-child { margin-bottom: 0; }

/* ---------- form ---------- */
.contact-form {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 42px); box-shadow: var(--shadow);
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 22px; }
.field-row .field { margin-bottom: 22px; }

.field > label, .fieldset legend {
  display: block; font-weight: 700; font-size: .95rem; color: var(--pink-900);
  margin-bottom: 8px; padding: 0;
}
.req { color: var(--pink-500); }
.optional { font-weight: 400; color: var(--ink-mute); font-size: .88rem; }

.fieldset { border: 0; margin-inline: 0; padding: 0; }

input[type="text"], input[type="tel"], input[type="email"], input[type="date"], select, textarea {
  width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--ink);
  background: var(--cream-050); border: 1.5px solid var(--line-strong);
  border-radius: 12px; padding: 13px 15px; line-height: 1.4;
  transition: border-color .15s, box-shadow .15s, background-color .15s;
}
textarea { resize: vertical; min-height: 96px; }
input:hover, select:hover, textarea:hover { border-color: var(--pink-300); }
input:focus, select:focus, textarea:focus {
  outline: none; background: var(--white); border-color: var(--pink-500);
  box-shadow: 0 0 0 4px rgba(231, 122, 164, .18);
}
input::placeholder, textarea::placeholder { color: var(--ink-mute); opacity: .8; }
input[aria-invalid="true"], select[aria-invalid="true"] { border-color: #d9526f; background: #fff6f7; }

.select-row { display: grid; grid-template-columns: 1.2fr 1fr; gap: 14px; }
.select-wrap { position: relative; }
select {
  appearance: none; -webkit-appearance: none; padding-right: 42px; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23b76279'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 20px;
}

.hint { font-size: .86rem; color: var(--ink-mute); margin: 7px 0 0; }
.fieldset .hint { margin-top: 0; margin-bottom: 10px; }
.err { font-size: .86rem; color: #c33f5c; font-weight: 600; margin: 7px 0 0; }

.check-row { display: flex; flex-wrap: wrap; gap: 12px; }
.check {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px 12px 16px; border: 1.5px solid var(--line-strong); border-radius: 999px;
  background: var(--cream-050); cursor: pointer; font-size: .96rem; font-weight: 600;
  color: var(--ink-soft); transition: all .15s ease; user-select: none;
}
.check:hover { border-color: var(--pink-300); background: var(--white); }
/* visually hidden but still exposed to assistive tech and keyboard focus */
.check input {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.check-box {
  display: grid; place-items: center; width: 21px; height: 21px; flex: none;
  border: 2px solid var(--line-strong); border-radius: 7px; background: var(--white);
  transition: all .15s ease;
}
.check-box::after {
  content: ""; width: 10px; height: 5px; border-left: 2.5px solid #fff; border-bottom: 2.5px solid #fff;
  transform: rotate(-45deg) scale(.4); opacity: 0; transition: all .15s ease; margin-top: -2px;
}
.check input:checked ~ .check-box { background: var(--pink-500); border-color: var(--pink-500); }
.check input:checked ~ .check-box::after { opacity: 1; transform: rotate(-45deg) scale(1); }
.check:has(input:checked) { border-color: var(--pink-400); background: var(--pink-050); color: var(--pink-900); }
.check input:focus-visible ~ .check-box { outline: 3px solid var(--pink-500); outline-offset: 2px; }

.privacy-note {
  font-size: .86rem; color: var(--ink-mute); background: var(--cream-100);
  border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 22px;
}

.form-status { margin: 14px 0 0; font-size: .93rem; font-weight: 600; text-align: center; min-height: 1.2em; }
.form-status.is-error { color: #c33f5c; }
.form-status.is-busy { color: var(--ink-mute); }

.form-success {
  background: var(--white); border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 52px); box-shadow: var(--shadow); text-align: center;
}
.success-mark {
  display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 20px;
  border-radius: 50%; background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
}
.success-mark svg { width: 32px; height: 32px; fill: #fff; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 12px; }
.form-success p { color: var(--ink-soft); margin-bottom: 24px; }

.alt-contact { text-align: center; margin-top: 24px; color: var(--ink-soft); font-size: .95rem; }

/* ---------- footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--pink-050), var(--pink-100));
  border-top: 1px solid var(--line-strong); padding-top: clamp(46px, 6vw, 68px);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: clamp(26px, 4vw, 48px);
  padding-bottom: 40px;
}
.footer-name { font-size: 2.3rem; color: var(--pink-600); margin: 0; line-height: 1; }
.footer-role {
  font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--pink-400); margin: 8px 0 16px;
}
.footer-note { color: var(--ink-soft); font-size: .93rem; max-width: 42em; }
.footer-col h4 {
  font-family: var(--font-body); font-size: .74rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--pink-400); margin-bottom: 14px;
}
.footer-col p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 8px; }

.footer-base { border-top: 1px solid var(--line-strong); padding-block: 22px; }
.footer-base p { font-size: .84rem; color: var(--ink-mute); margin: 0; text-align: center; }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .site-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav:not([hidden]) {
    display: flex; flex-direction: column; gap: 2px;
    padding: 10px 22px 20px; border-top: 1px solid var(--line); background: var(--cream-050);
  }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-media { order: 1; margin-bottom: 12px; }
  .lede { margin-inline: auto; }
  .hero-actions, .hero-chips { justify-content: center; }
  .directions-grid { grid-template-columns: 1fr; }
  .info-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  .card-grid, .qa-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .field-row, .select-row { grid-template-columns: 1fr; gap: 0; }
  .select-row { gap: 14px; }
  .stat-row { grid-template-columns: 1fr; }
  .note-grid { grid-template-columns: minmax(0, 1fr); }
  .cap-banner { flex-direction: column; text-align: center; }
  .price-item { flex-wrap: wrap; gap: 4px 12px; }
  .price-dots { min-width: 30px; }
  .download-card { flex-direction: column; align-items: flex-start; }
  .download-card .btn { width: 100%; }
  .check { flex: 1 1 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- print ---------- */
@media print {
  .site-header, .nav-toggle, .mobile-nav, .hero-actions, .contact-form,
  .form-success, .alt-contact, .blob, .skip-link { display: none !important; }
  body { background: #fff; font-size: 12pt; }
  .section, .hero { padding: 18pt 0; }
  .card, .qa, .price-list, .info-card, .note-card { break-inside: avoid; box-shadow: none; }
}
