:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --purple-deep: #4a2080;
  --purple-dark: #3a1868;
  --periwinkle: #6c63ff;
  --navy: #1e2a5e;
  --pink-accent: #e8a4c8;
  --gold-accent: #d4a97a;
  --bg-light: #f9f7fc;
  --bg-white: #ffffff;
  --text-primary: #1e1e2f;
  --text-secondary: #555;
  --text-muted: #888;
  --border: #e0dce8;
  --error: #d32f2f;
  --success: #2e7d32;
  --header-h: 64px;
  --sticky-h: 72px;
  --section-pad: 64px 20px;
  --container-max: 1120px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(30, 16, 48, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans), -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--sticky-h);
}

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

a {
  color: var(--periwinkle);
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0 0 28px;
}

.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: -48px;
  z-index: 200;
  background: var(--pink-accent);
  color: var(--purple-dark);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn--primary {
  background: var(--pink-accent);
  color: var(--purple-dark);
  box-shadow: 0 10px 28px rgba(232, 164, 200, 0.28);
}

.btn--primary:hover,
.btn--primary:focus {
  color: var(--purple-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn--ghost:hover,
.btn--ghost:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

/* ====== HEADER ====== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: var(--header-h);
  padding: 10px 16px;
  color: #fff;
  background: linear-gradient(180deg, rgba(26, 16, 48, 0.62) 0%, transparent 100%);
  transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.header.header--solid {
  background: rgba(58, 24, 104, 0.88);
  color: #fff;
  border-bottom: 1px solid rgba(232, 164, 200, 0.22);
  box-shadow: 0 10px 32px rgba(30, 16, 48, 0.22);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

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

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  min-width: 0;
}

.header__logo-mark {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.header__logo-mark img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.header__logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.header__logo span {
  font-family: var(--font-display), Georgia, serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

.header--solid .header__logo {
  color: #fff;
}

.header__nav {
  display: none;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__wa,
.header__cta {
  display: none;
}

.header__menu-btn {
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.header--solid .header__menu-btn {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.header__burger,
.header__burger::before,
.header__burger::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  position: relative;
  transition: transform 0.2s, top 0.2s;
}

.header__burger::before,
.header__burger::after {
  content: '';
  position: absolute;
  left: 0;
}

.header__burger::before {
  top: -6px;
}

.header__burger::after {
  top: 6px;
}

.header__burger.is-open {
  background: transparent;
}

.header__burger.is-open::before {
  top: 0;
  transform: rotate(45deg);
}

.header__burger.is-open::after {
  top: 0;
  transform: rotate(-45deg);
}

.header__drawer {
  padding: 20px 8px 28px;
  background: var(--bg-white);
  color: var(--text-primary);
  border-radius: 0 0 20px 20px;
}

.header__drawer[hidden] {
  display: none;
}

.header__drawer a {
  display: block;
  color: inherit;
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.7rem;
  padding: 12px 8px;
}

.header__drawer .btn {
  width: 100%;
  margin-top: 16px;
}

/* ====== HERO ====== */
.hero {
  position: relative;
  background: linear-gradient(165deg, var(--purple-deep) 0%, var(--navy) 100%);
  color: #fff;
  padding: calc(var(--header-h) + 28px) 20px 36px;
}

.hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 28px;
}

.hero__portrait {
  position: relative;
  flex: 0 0 auto;
}

.hero__portrait::before {
  content: '';
  position: absolute;
  inset: 10px -10px -10px 10px;
  border: 1px solid rgba(212, 169, 122, 0.45);
  border-radius: 22px;
}

.hero__media {
  position: relative;
  width: min(220px, 58vw);
  aspect-ratio: 2 / 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  background: #d8d4d0;
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.eyebrow--on-light {
  color: var(--purple-deep);
}

.hero__content {
  width: 100%;
}

.hero h1 {
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(1.85rem, 6.5vw, 2.9rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero h1 em {
  display: block;
  margin-top: 8px;
  font-style: italic;
  color: var(--pink-accent);
  font-weight: 500;
}

.hero__lead {
  margin: 14px 0 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  max-width: 34rem;
}

.hero__actions {
  display: grid;
  gap: 10px;
}

.hero__actions .btn {
  width: 100%;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.hero__trust li {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 169, 122, 0.35);
  color: rgba(255, 255, 255, 0.9);
}

/* ====== SECTIONS ====== */
.section {
  padding: var(--section-pad);
}

.section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.section__title {
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 600;
  color: var(--purple-deep);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section__subtitle {
  color: var(--text-secondary);
  max-width: 38rem;
  margin-bottom: 36px;
  font-size: 1.02rem;
}

.form-section .section__title,
.form-section .eyebrow,
.section:not(.contact) .section__title,
.section:not(.contact) .eyebrow--on-light,
.audiences .section__title {
  text-align: left;
}

.contact .section__title {
  color: #fff;
}

.contact .section__subtitle {
  color: rgba(255, 255, 255, 0.78);
}

/* ====== FORM ====== */
.form-section {
  background: var(--bg-white);
}

.form-shell {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px 28px;
}

.form-section__notice {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold-accent);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 24px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.form-section__notice strong {
  color: var(--purple-deep);
}

.quote-form {
  max-width: 720px;
}

.form-legend {
  font-family: var(--font-display), Georgia, serif;
  font-weight: 600;
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: var(--purple-deep);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.form-group label .required {
  color: var(--error);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--periwinkle);
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 88px;
}

.form-group__error {
  color: var(--error);
  font-size: 0.8rem;
  margin-top: 4px;
}

.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
}

.form-group--checkbox input[type='checkbox'] {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 2px;
}

.form-group--checkbox label {
  font-weight: 400;
  font-size: 0.84rem;
  color: var(--text-secondary);
}

.form-row {
  display: grid;
  gap: 12px;
}

.form__submit {
  margin-top: 8px;
}

.form__submit button {
  width: 100%;
  min-height: 52px;
  background: linear-gradient(135deg, var(--purple-deep), var(--periwinkle));
  color: #fff;
  border: none;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
}

.form__submit button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form__success {
  text-align: center;
  padding: 36px 16px;
  background: #e8f5e9;
  border-radius: var(--radius);
}

.form__success h3 {
  color: var(--success);
  margin-bottom: 8px;
}

.form__error-banner {
  background: #fdeaea;
  border: 1px solid #f5c6c6;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 20px;
  color: var(--error);
  font-size: 0.9rem;
  text-align: center;
}

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

/* ====== SERVICES / AUDIENCES / PROCESS ====== */
.services__grid,
.audiences__grid,
.process__steps {
  display: grid;
  gap: 14px;
}

.service-card,
.audience-card,
.step {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 22px 20px;
  border: 1px solid var(--border);
}

.service-card__icon,
.audience-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--purple-deep);
  background: rgba(74, 32, 128, 0.07);
}

.service-card__icon svg,
.audience-card__icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3,
.audience-card h3,
.step h3 {
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.25rem;
  color: var(--purple-deep);
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-card p,
.audience-card p,
.step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.audiences {
  background: var(--bg-white);
}

.step {
  position: relative;
}

.step__number {
  display: block;
  font-family: var(--font-display), Georgia, serif;
  font-size: 1.4rem;
  color: var(--gold-accent);
  font-weight: 600;
  margin-bottom: 8px;
}

/* ====== CONTACT ====== */
.contact {
  background: linear-gradient(165deg, var(--navy) 0%, var(--purple-deep) 100%);
  color: #fff;
}

.contact__methods {
  display: grid;
  gap: 12px;
}

.contact-method {
  display: block;
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

.contact-method svg {
  width: 24px;
  height: 24px;
  color: var(--gold-accent);
  margin-bottom: 10px;
}

.contact-method h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-method span {
  color: var(--pink-accent);
  font-weight: 600;
  font-size: 0.95rem;
  word-break: break-word;
}

.contact-method--featured {
  background: rgba(232, 164, 200, 0.12);
  border-color: rgba(232, 164, 200, 0.35);
}

/* ====== ABOUT ====== */
.about {
  padding: var(--section-pad);
  background: var(--bg-white);
}

.about__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.about__portrait {
  width: min(280px, 70%);
  margin: 0 auto;
}

.about__portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 16%;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.about__text h2 {
  font-family: var(--font-display), Georgia, serif;
  font-size: 2.4rem;
  color: var(--purple-deep);
  line-height: 1.1;
}

.about__role {
  color: var(--gold-accent);
  font-weight: 600;
  margin: 6px 0 16px;
}

.about__quote {
  font-family: var(--font-display), Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.4;
}

.about__text p {
  color: var(--text-secondary);
  margin-bottom: 22px;
}

/* ====== FOOTER ====== */
.footer {
  background: #1a1030;
  color: rgba(255, 255, 255, 0.62);
  padding: 28px 20px 24px;
  text-align: center;
  font-size: 0.82rem;
}

.footer p + p {
  margin-top: 4px;
}

/* ====== STICKY CTA ====== */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.sticky-cta a {
  min-height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}

.sticky-cta svg {
  width: 16px;
  height: 16px;
}

.sticky-cta__primary {
  background: linear-gradient(135deg, var(--purple-deep), var(--periwinkle));
  color: #fff;
}

.sticky-cta__wa {
  background: var(--navy);
  color: #fff;
}

.sticky-cta__primary:hover,
.sticky-cta__wa:hover,
.sticky-cta__primary:focus,
.sticky-cta__wa:focus {
  color: #fff;
}

/* ====== TABLET+ ====== */
@media (min-width: 720px) {
  :root {
    --section-pad: 88px 32px;
  }

  body {
    padding-bottom: 0;
  }

  .header:not(.header--solid) {
    padding: 12px 28px;
    background: transparent;
  }

  .header.header--solid {
    padding: 12px 28px;
  }

  .header__nav {
    display: block;
  }

  .header__nav ul {
    display: flex;
    gap: 22px;
  }

  .header__nav a {
    color: inherit;
    font-size: 0.88rem;
    font-weight: 500;
    opacity: 0.86;
  }

  .header--solid .header__nav a,
  .header--solid .header__wa {
    color: #fff;
    opacity: 0.92;
  }

  .header--solid .header__nav a:hover,
  .header--solid .header__nav a:focus,
  .header--solid .header__wa:hover,
  .header--solid .header__wa:focus {
    color: var(--pink-accent);
    opacity: 1;
  }

  .header__wa,
  .header__cta {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: inherit;
  }

  .header__cta {
    background: var(--pink-accent);
    color: var(--purple-dark);
  }

  .header--solid .header__cta {
    background: var(--pink-accent);
    color: var(--purple-dark);
  }

  .header__menu-btn,
  .header__drawer,
  .sticky-cta {
    display: none;
  }

  .hero {
    padding: calc(var(--header-h) + 36px) 40px 48px;
  }

  .hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: center;
    gap: 48px;
  }

  .hero__media {
    width: 300px;
  }

  .hero__content {
    padding: 0;
  }

  .hero__actions {
    display: flex;
    flex-wrap: wrap;
    max-width: 34rem;
  }

  .hero__actions .btn {
    width: auto;
  }

  .form-shell {
    padding: 36px 40px 40px;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form__submit button {
    width: auto;
    min-width: 280px;
  }

  .form__submit {
    text-align: center;
  }

  .services__grid,
  .audiences__grid,
  .process__steps,
  .contact__methods {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .about__inner {
    grid-template-columns: 320px 1fr;
    align-items: center;
    gap: 56px;
  }

  .about__portrait {
    width: 100%;
    margin: 0;
  }
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 64px;
  }

  .hero__media {
    width: 340px;
  }

  .hero h1 {
    font-size: 2.85rem;
  }

  .service-card,
  .audience-card,
  .step {
    padding: 28px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .header__burger,
  .header__burger::before,
  .header__burger::after {
    transition: none;
  }
}
