/* ==========================================================================
   Inspired by Catlin: stylesheet
   Palette + type system per brand guidelines (2026-08-13)
   ========================================================================== */

:root {
  /* Brand colors, extracted from Logo_multi_pink.png */
  --testimony-pink: #EE398A;
  --sunrise-gold: #F9A11B;
  --comeback-orange: #F47D31;
  --purpose-plum: #7C1B4A;
  --grace-orchid: #AB3E97;
  --waterfall-blue: #1D8BCB;

  /* Neutrals */
  --deep-testimony: #1B1420;
  --warm-canvas: #FAF6F2;
  --warm-canvas-dim: #F1E9E2;
  --line: rgba(27, 20, 32, 0.12);
  --white: #FFFFFF;

  /* Gradients */
  --sunrise-gradient: linear-gradient(90deg, var(--sunrise-gold) 0%, var(--comeback-orange) 28%, var(--testimony-pink) 58%, var(--grace-orchid) 80%, var(--waterfall-blue) 100%);
  --sunrise-gradient-soft: linear-gradient(120deg, rgba(249,161,27,0.16), rgba(244,125,49,0.14) 30%, rgba(238,57,138,0.14) 60%, rgba(29,139,203,0.12));

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-md: 14px;
  --radius-lg: 26px;
  --shadow-soft: 0 20px 45px -25px rgba(27, 20, 32, 0.45);
  --container: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--deep-testimony);
  background: var(--warm-canvas);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: var(--testimony-pink); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--deep-testimony);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purpose-plum);
  margin-bottom: 0.9em;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 4px;
  background: var(--sunrise-gradient);
  display: inline-block;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 760px; }

section { padding: 72px 0; }
section.tight { padding: 48px 0; }

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

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--deep-testimony);
  color: var(--white);
  padding: 12px 18px;
  z-index: 1000;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease;
  text-decoration: none !important;
}

.btn-primary {
  background: var(--testimony-pink);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--purpose-plum); }

.btn-gradient {
  background-image: var(--sunrise-gradient);
  background-repeat: no-repeat;
  background-origin: border-box;
  background-clip: border-box;
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-gradient:hover { transform: translateY(-2px); filter: brightness(1.05); }

.btn-outline {
  background: transparent;
  border-color: var(--deep-testimony);
  color: var(--deep-testimony);
}
.btn-outline:hover { background: var(--deep-testimony); color: var(--white); }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--deep-testimony); }

.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none !important; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Site header ---------- */
.site-header {
  background: var(--deep-testimony);
  background-image: linear-gradient(180deg, #201526 0%, var(--deep-testimony) 100%);
  border-bottom: 3px solid transparent;
  border-image: var(--sunrise-gradient) 1;
  position: sticky;
  top: 0;
  z-index: 500;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img { height: 56px; width: auto; }

@media (max-width: 860px) {
  .brand img { height: 44px; }
}

.brand-text {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
}
.brand-text span { color: var(--testimony-pink); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: rgba(255,255,255,0.86);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
}
.main-nav a:hover { color: var(--white); }
.main-nav a[aria-current="page"] {
  color: var(--white);
  position: relative;
}
.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--sunrise-gradient);
  border-radius: 2px;
}

.main-nav .btn { padding: 10px 20px; font-size: 0.9rem; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; flex-direction: column; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--deep-testimony);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    display: none;
    border-bottom: 3px solid var(--testimony-pink);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .main-nav .btn { margin-top: 14px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--deep-testimony);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--sunrise-gradient);
  opacity: 0.16;
  mix-blend-mode: screen;
}
.hero__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 88px 24px 96px;
  display: grid;
  gap: 48px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}
.hero--simple .hero__inner { grid-template-columns: 1fr; max-width: 780px; text-align: center; padding: 76px 24px; }

@media (max-width: 860px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 56px 24px 64px;
  }
  .hero__media { max-width: 420px; margin: 0 auto; }
}

.hero h1 { color: var(--white); }
.hero .eyebrow { color: var(--sunrise-gold); }
.hero .eyebrow::before { background: var(--white); }
.hero p.lede {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.86);
  max-width: 46ch;
}
.hero--simple p.lede { margin-left: auto; margin-right: auto; }

.hero__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }

.quote-block {
  border-left: 3px solid var(--testimony-pink);
  padding-left: 20px;
  margin: 28px 0;
}
.quote-block p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--white);
}
.quote-block cite {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

/* On-light quote variant */
.quote-block--light p { color: var(--purpose-plum); }
.quote-block--light cite { color: rgba(27,20,32,0.55); }

/* ---------- Section on plum/dark ---------- */
.section-dark {
  background: var(--purpose-plum);
  color: var(--white);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .eyebrow { color: var(--sunrise-gold); }
.section-dark .eyebrow::before { background: var(--white); }

/* ---------- Cards ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) {
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background-image: var(--sunrise-gradient);
  margin-bottom: 6px;
}
.card h3 { margin-bottom: 0.2em; color: var(--deep-testimony); }
.card p { color: rgba(27,20,32,0.72); margin-bottom: 0.4em; }
.card .btn { margin-top: auto; align-self: flex-start; }

.card--plum {
  background: linear-gradient(160deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 20px 45px -20px rgba(0,0,0,0.55);
}
.card--plum p { color: rgba(255,255,255,0.82); }
.card--plum h3 { color: var(--white); }

/* Path cards on work-with-me */
.path-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  border-top: 6px solid transparent;
  border-image: var(--sunrise-gradient) 1;
}
.path-card h3 { font-size: 1.5rem; color: var(--deep-testimony); }
.path-card ul { padding-left: 1.1em; color: rgba(27,20,32,0.78); }
.path-card ul li { margin-bottom: 0.4em; }

/* ---------- Testimony / feature split ---------- */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse .split__media { order: 2; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split__media { order: 0; }
}
.split__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
@media (max-width: 860px) {
  .split__media img { aspect-ratio: 4 / 3; }
}

/* ---------- Lists with check marks ---------- */
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.check-list li::before {
  content: "";
  flex: none;
  width: 22px; height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background-image: var(--sunrise-gradient);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2l-3.5-3.6L4 14.1l5 5 11-11-1.4-1.5z'/%3E%3C/svg%3E") center/60% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2l-3.5-3.6L4 14.1l5 5 11-11-1.4-1.5z'/%3E%3C/svg%3E") center/60% no-repeat;
  background-color: var(--testimony-pink);
  -webkit-mask-repeat: no-repeat;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background-image: var(--sunrise-gradient);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.92); max-width: 56ch; margin-left: auto; margin-right: auto; }
.cta-banner .btn-row { justify-content: center; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  color: var(--deep-testimony);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  color: var(--deep-testimony);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.field input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--warm-canvas);
}
.field input:focus {
  outline: none;
  border-color: var(--testimony-pink);
  box-shadow: 0 0 0 3px rgba(238,57,138,0.15);
}
.field-hint { font-size: 0.82rem; color: rgba(27,20,32,0.55); margin-top: 6px; }

.honeypot-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.form-status {
  margin-top: 14px;
  font-size: 0.92rem;
  border-radius: 10px;
  padding: 12px 14px;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-error { background: rgba(238,57,138,0.1); color: var(--purpose-plum); }
.form-status.is-loading { background: var(--warm-canvas-dim); color: var(--deep-testimony); }

/* ---------- Disclaimer ---------- */
.disclaimer {
  background: var(--warm-canvas-dim);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  font-size: 0.88rem;
  color: rgba(27,20,32,0.75);
  border-left: 4px solid var(--waterfall-blue);
}
.disclaimer strong { color: var(--deep-testimony); }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item h3 { margin-bottom: 0.4em; font-size: 1.1rem; }
.faq-item p { color: rgba(27,20,32,0.75); margin-bottom: 0; }

/* ---------- Parts (Inner Reset) ---------- */
.part-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.part-card h3 { color: var(--deep-testimony); }
.part-card p { color: rgba(27,20,32,0.72); margin-bottom: 0; }
.part-card .part-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background-image: var(--sunrise-gradient);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ---------- Pricing block ---------- */
.price-tag {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--testimony-pink);
}
.price-tag sup { font-size: 1.2rem; top: -1.4em; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--deep-testimony);
  color: rgba(255,255,255,0.72);
  padding: 64px 0 28px;
  margin-top: 0;
}
.site-footer a { color: rgba(255,255,255,0.82); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer-brand img { height: 44px; margin-bottom: 14px; }
.footer-brand p { max-width: 34ch; color: rgba(255,255,255,0.6); font-size: 0.92rem; }
.footer-heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links a { text-decoration: none; font-size: 0.94rem; }
.footer-links a:hover { text-decoration: underline; }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-disclaimer {
  margin-top: 32px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
}
.footer-disclaimer strong { color: rgba(255,255,255,0.8); }

/* ---------- 404 ---------- */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.stack { display: grid; gap: 18px; }
.max-prose { max-width: 68ch; }
.mx-auto { margin-left: auto; margin-right: auto; }
