/* ============================================================
   My Website Listing — shared stylesheet
   Palette: deep teal / warm off-white / warm gray / amber accent
   ============================================================ */

:root {
  --teal-900: #0a3838;
  --teal-800: #0f4c4c;
  --teal-700: #175f5f;
  --teal-600: #217272;
  --teal-100: #dcebea;
  --teal-50:  #eef6f5;
  --cream:    #faf7f2;
  --cream-2:  #f4efe7;
  --ink:      #33302b;
  --ink-soft: #57524a;
  --ink-mute: #7a746b;
  --amber:    #d99a4e;
  --amber-dark: #b97f39;
  --white:    #ffffff;
  --line:     #e5ded2;
  --radius:   14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(51, 48, 43, .06), 0 2px 8px rgba(51, 48, 43, .05);
  --shadow-md: 0 4px 14px rgba(15, 76, 76, .09), 0 12px 34px rgba(15, 76, 76, .07);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --maxw: 1120px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
ul, ol { padding-left: 1.25rem; }
a { color: var(--teal-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--teal-900); }

/* ---------- Accessibility helpers ---------- */
.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: 1rem; top: -4rem; z-index: 200;
  background: var(--teal-800); color: var(--white);
  padding: .65rem 1.1rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none; font-weight: 600;
  transition: top .18s ease;
}
.skip-link:focus { top: 0; color: var(--white); }
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.section { padding-block: clamp(3.25rem, 7vw, 5.5rem); }
.section-tint { background: var(--cream-2); }
.section-teal {
  background: var(--teal-800);
  color: #eaf3f2;
}
.section-teal h2, .section-teal h3 { color: var(--white); }
.section-teal p { color: #cfe2e0; }

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: .75rem;
}
.section-teal .eyebrow { color: var(--amber); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--teal-900);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: .9rem; }
h3 { font-size: 1.3rem; margin-bottom: .5rem; }
h4 { font-size: 1.05rem; }
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 44rem;
}
p + p { margin-top: 1rem; }
strong { color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease,
              border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--teal-800);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--teal-900); color: var(--white); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--teal-800);
  border-color: var(--teal-800);
}
.btn-outline:hover { background: var(--teal-800); color: var(--white); }
.btn-amber {
  background: var(--amber);
  color: var(--teal-900);
}
.btn-amber:hover { background: var(--amber-dark); color: var(--white); }
.btn-light {
  background: var(--white);
  color: var(--teal-800);
}
.btn-light:hover { background: var(--teal-100); color: var(--teal-900); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: var(--teal-900);
}
.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.brand-text em {
  font-style: normal;
  color: var(--amber-dark);
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
}
.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px; height: 2px;
  background: var(--teal-800);
  border-radius: 2px;
  position: relative;
  transition: transform .2s ease, opacity .2s ease;
  content: "";
}
.nav-toggle-lines::before { position: absolute; top: -6px; }
.nav-toggle-lines::after  { position: absolute; top:  6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after  { transform: translateY(-6px) rotate(-45deg); }

.primary-nav {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 1rem 1.25rem 1.4rem;
}
.primary-nav.is-open { display: block; }
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.nav-list a {
  display: block;
  padding: .6rem .75rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
}
.nav-list a:hover { background: var(--teal-50); color: var(--teal-900); }
.nav-list a[aria-current="page"] {
  color: var(--teal-900);
  background: var(--teal-100);
  font-weight: 600;
}
.nav-cta { width: 100%; }

@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .primary-nav {
    display: flex;
    position: static;
    align-items: center;
    gap: 1.5rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: .1rem;
    margin: 0;
  }
  .nav-list a { padding: .45rem .7rem; background: transparent; }
  .nav-list a[aria-current="page"] {
    background: transparent;
    box-shadow: inset 0 -2px 0 var(--amber);
    border-radius: 0;
  }
  .nav-cta { width: auto; padding: .6rem 1.25rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
  background:
    radial-gradient(42rem 26rem at 108% -12%, rgba(15, 76, 76, .10), transparent 62%),
    radial-gradient(30rem 22rem at -14% 108%, rgba(217, 154, 78, .12), transparent 60%),
    var(--cream);
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.hero-shapes::before {
  content: "";
  position: absolute;
  width: 24rem; height: 24rem;
  right: -7rem; top: -6rem;
  border: 1.5px dashed rgba(15, 76, 76, .28);
  border-radius: 50%;
}
.hero-shapes::after {
  content: "";
  position: absolute;
  width: 15rem; height: 15rem;
  right: 4rem; bottom: -6rem;
  background: radial-gradient(circle, rgba(23, 95, 95, .14), transparent 68%);
  border-radius: 50%;
}
.hero-dot {
  position: absolute;
  width: 9rem; height: 9rem;
  left: -3.5rem; top: 38%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 154, 78, .22), transparent 70%);
}
.hero-inner { position: relative; max-width: 47rem; }
.hero h1 { margin-bottom: 1.1rem; }
.hero .lead { margin-bottom: 1.9rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-note {
  margin-top: 1.4rem;
  font-size: .9rem;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero-note svg { flex: none; }

/* ---------- Trust bar ---------- */
.trust-bar {
  border-block: 1px solid var(--line);
  background: var(--white);
}
.trust-grid {
  display: grid;
  gap: 1.25rem;
  padding-block: 1.75rem;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}
.trust-item .icon-wrap { flex: none; }
.trust-item h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; margin-bottom: .15rem; }
.trust-item p { font-size: .92rem; color: var(--ink-soft); }
@media (min-width: 720px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Icons ---------- */
.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  color: var(--teal-700);
}
.icon-wrap svg { width: 24px; height: 24px; }
.icon-wrap.amber { background: #faf1e4; border-color: #efdec6; color: var(--amber-dark); }
.section-teal .icon-wrap {
  background: rgba(250, 247, 242, .08);
  border-color: rgba(250, 247, 242, .2);
  color: var(--amber);
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid.cols-2.wide { grid-template-columns: repeat(2, 1fr); }
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card h3 { margin: 0; }
.card p { color: var(--ink-soft); font-size: .96rem; }
.card-link {
  margin-top: auto;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.card-link svg { width: 16px; height: 16px; transition: transform .18s ease; }
.card-link:hover svg { transform: translateX(3px); }
.card ul.clean { margin-top: .25rem; }

ul.clean {
  list-style: none;
  padding: 0;
  display: grid;
  gap: .5rem;
}
ul.clean li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink-soft);
  font-size: .95rem;
}
ul.clean li::before {
  content: "";
  position: absolute;
  left: 0; top: .42em;
  width: .95rem; height: .95rem;
  background: var(--teal-700);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat,
    linear-gradient(#000, #000);
  -webkit-mask-composite: destination-out;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat,
    linear-gradient(#000, #000);
  mask-composite: exclude;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal-800);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.step p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- Note / callout ---------- */
.note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #faf1e4;
  border: 1px solid #efdec6;
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
}
.note .icon-wrap { background: var(--white); }
.note h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.note p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  gap: 1.4rem;
  align-items: stretch;
}
@media (min-width: 920px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.7rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
}
.price-card.featured {
  border: 2px solid var(--teal-700);
  box-shadow: var(--shadow-md);
}
.price-badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--teal-900);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--teal-900); }
.price-amount { display: flex; align-items: baseline; gap: .35rem; }
.price-amount .amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--teal-900);
  line-height: 1;
}
.price-amount .per { color: var(--ink-mute); font-size: .95rem; }
.price-desc { color: var(--ink-soft); font-size: .95rem; }
.price-card ul.clean { flex: 1; }
.price-footnote {
  max-width: 52rem;
  margin: 2.25rem auto 0;
  font-size: .9rem;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.35rem;
}
.price-footnote p + p { margin-top: .6rem; }

/* One-time package banner */
.onetime {
  display: grid;
  gap: 1.5rem;
  background: var(--teal-800);
  color: #dcebea;
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-md);
}
.onetime h3 { color: var(--white); font-size: 1.45rem; }
.onetime p { color: #cfe2e0; font-size: .96rem; }
.onetime .onetime-price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--amber);
  white-space: nowrap;
}
.onetime ul.clean li { color: #cfe2e0; }
.onetime ul.clean li::before { background: var(--amber); }
@media (min-width: 860px) {
  .onetime { grid-template-columns: 1.4fr 1fr; align-items: center; }
}

/* ---------- FAQ accordion ---------- */
.faq-list { display: grid; gap: .8rem; max-width: 50rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 600;
  color: var(--teal-900);
  text-align: left;
  cursor: pointer;
}
.faq-question:hover { background: var(--teal-50); }
.faq-chevron {
  flex: none;
  width: 20px; height: 20px;
  color: var(--amber-dark);
  transition: transform .2s ease;
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 1.3rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease, padding .28s ease;
}
.faq-answer-inner {
  padding-bottom: 1.2rem;
  color: var(--ink-soft);
  font-size: .96rem;
}
.faq-answer-inner p + p { margin-top: .7rem; }
/* When JS is off, keep answers visible */
html:not(.js) .faq-answer { max-height: none; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.2rem);
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .form-grid .half { grid-column: span 1; } .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.field label {
  display: block;
  font-weight: 600;
  font-size: .92rem;
  color: var(--teal-900);
  margin-bottom: .35rem;
}
.field .req { color: var(--amber-dark); }
.field input,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .7rem .9rem;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal-700);
  box-shadow: 0 0 0 3px rgba(23, 95, 95, .18);
}
.field textarea { min-height: 140px; resize: vertical; }
.field .error-msg {
  display: none;
  margin-top: .35rem;
  font-size: .85rem;
  color: #a33d2a;
  font-weight: 500;
}
.field.has-error input,
.field.has-error textarea { border-color: #b84a34; }
.field.has-error .error-msg { display: block; }
.form-status {
  margin-top: 1rem;
  font-size: .92rem;
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.ok { background: var(--teal-50); border: 1px solid var(--teal-100); color: var(--teal-900); }
.form-status.err { background: #fbeeea; border: 1px solid #eccfc6; color: #8c3524; }

/* ---------- Sign-up form: consent checkboxes ---------- */
.checkbox-field { margin-top: .25rem; }
.checkbox-label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .65rem;
  align-items: start;
  padding: .9rem 1rem;
  border: 1px solid var(--line, #e3dcd2);
  border-radius: 12px;
  background: var(--white, #fff);
  font-size: .88rem;
  line-height: 1.55;
  color: var(--ink-soft);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--teal, #0f4c4c);
  cursor: pointer;
}
.checkbox-label a { color: var(--teal-700, #14635f); text-decoration: underline; text-underline-offset: 2px; }
.checkbox-field .error-msg { display: none; margin: .4rem 0 0; font-size: .82rem; color: #b84a34; }
.checkbox-field.has-error .checkbox-label { border-color: #b84a34; }
.checkbox-field.has-error .error-msg { display: block; }
/* Honeypot: hidden from humans, visible to bots */
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 1px; width: 1px; overflow: hidden; }
/* Disclosure text separated below the marketing opt-in checkbox */
.consent-disclosure {
  font-size: .82rem;
  line-height: 1.6;
  color: var(--ink-mute);
  padding-left: calc(18px + .65rem);
  margin-top: -.4rem;
}
.consent-disclosure p + p { margin-top: .55rem; }

/* ---------- Contact layout ---------- */
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 920px) { .contact-grid { grid-template-columns: 1.5fr 1fr; align-items: start; } }
.side-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: .8rem;
}
.side-card + .side-card { margin-top: 1.4rem; }
.side-card a.mail {
  font-weight: 600;
  word-break: break-all;
}
.mini-steps { list-style: none; padding: 0; display: grid; gap: 1rem; counter-reset: mini; }
.mini-steps li { display: flex; gap: .8rem; align-items: flex-start; }
.mini-steps .mini-num {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-800);
  font-weight: 700;
  font-size: .85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: .1rem;
}
.mini-steps p { font-size: .93rem; color: var(--ink-soft); }
.mini-steps strong { display: block; color: var(--ink); }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  padding-block: clamp(3rem, 7vw, 5rem);
}
.cta-band h2 { margin-bottom: .8rem; }
.cta-band p { max-width: 38rem; margin-inline: auto; margin-bottom: 1.8rem; }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-900);
  color: #b9d2d0;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  padding-block: 3rem 2rem;
}
@media (min-width: 820px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .brand { color: var(--white); margin-bottom: .9rem; }
.footer-brand .brand-text em { color: var(--amber); }
.footer-brand p { font-size: .92rem; color: #a9c4c2; max-width: 24rem; }
.footer-brand a { color: var(--amber); }
.footer-brand a:hover { color: #eabf8a; }
.footer-heading {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7fa5a3;
  margin-bottom: .9rem;
}
.footer-nav { list-style: none; padding: 0; display: grid; gap: .5rem; }
.footer-nav a {
  color: #cfe2e0;
  text-decoration: none;
  font-size: .95rem;
}
.footer-nav a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(250, 247, 242, .14);
  padding-block: 1.4rem;
  display: grid;
  gap: .5rem;
  font-size: .85rem;
  color: #8fb0ae;
}
@media (min-width: 720px) {
  .footer-bottom { grid-template-columns: 1fr auto; align-items: center; }
}
.footer-disclaimer { max-width: 34rem; }
.footer-legal { color: #cfe2e0; font-weight: 600; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
  background:
    radial-gradient(34rem 20rem at 105% -20%, rgba(15, 76, 76, .09), transparent 60%),
    var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 2.9rem); margin-bottom: .9rem; }
.page-hero .lead { margin-bottom: 0; }

/* ---------- Prose (legal pages) ---------- */
.prose { max-width: 46rem; }
.prose h2 { font-size: 1.45rem; margin-top: 2.2rem; margin-bottom: .7rem; }
.prose h3 { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: .4rem; }
.prose p, .prose li { color: var(--ink-soft); font-size: .97rem; }
.prose ul, .prose ol { display: grid; gap: .4rem; margin-top: .6rem; }
.prose .updated {
  font-size: .88rem;
  color: var(--ink-mute);
  margin-bottom: 1.5rem;
}

/* ---------- Two-col generic ---------- */
.split { display: grid; gap: 2.2rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }

/* Visual panel made of pure CSS */
.visual-panel {
  position: relative;
  border-radius: var(--radius);
  background:
    radial-gradient(16rem 12rem at 85% 15%, rgba(217, 154, 78, .25), transparent 65%),
    linear-gradient(150deg, var(--teal-700), var(--teal-900));
  min-height: 300px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-panel::before {
  content: "";
  position: absolute;
  width: 20rem; height: 20rem;
  border: 1.5px dashed rgba(250, 247, 242, .3);
  border-radius: 50%;
  left: -6rem; bottom: -8rem;
}
.visual-panel svg { width: 44%; max-width: 190px; color: var(--cream); position: relative; }

/* ---------- Reveal animations ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
html.js .reveal.is-visible { opacity: 1; transform: none; }
html.js .reveal.d1 { transition-delay: .08s; }
html.js .reveal.d2 { transition-delay: .16s; }
html.js .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Utility ---------- */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.center { text-align: center; }
body { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }
