:root {
  --charcoal: #292929;
  --charcoal-soft: #3a3939;
  --blush: #e69698;
  --blush-deep: #dd8588;
  --rose-pale: #efe9e8;
  --gold: #9e7a26;
  --ink: #171717;
  --muted: #625e5c;
  --white: #ffffff;
  --line: #d8d0ce;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  padding: 1rem 2.25rem;
  color: #fff;
}
.brand { font-size: 1.25rem; text-decoration: none; font-weight: 300; }
.site-nav { display: flex; align-items: center; gap: 1.7rem; }
.site-nav a {
  position: relative;
  padding: .25rem 0 .75rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: none;
}
.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: transparent;
}
.site-nav a:hover::after,
.site-nav a.active::after { background: var(--blush); }
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: block; }
.nav-submenu {
  position: absolute;
  top: calc(100% + .1rem);
  left: 50%;
  z-index: 30;
  display: none;
  width: 245px;
  transform: translateX(-50%);
  border-top: 4px solid var(--blush);
  background: rgba(38, 38, 38, .98);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
  padding: .45rem;
}
.nav-submenu a { display: block; padding: .75rem .8rem; font-size: .93rem; }
.nav-submenu a::after { display: none; }
.nav-submenu a:hover { background: rgba(255, 255, 255, .08); }
.nav-submenu a.active { color: var(--blush); }
.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu { display: block; }
.menu-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 4px;
  background: transparent;
  color: #fff;
  padding: .55rem .75rem;
  font: inherit;
}

.hero {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-bottom: 9px solid var(--blush);
  background: var(--charcoal);
  color: #fff;
}
.hero-inner {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 3rem));
  min-height: 340px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 5.5rem 0 2.5rem;
}
.page-hero .hero-inner { align-content: center; }
.page-hero h1 {
  margin: 0;
  color: #fff;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3rem, 7vw, 5.25rem);
  font-weight: 200;
  line-height: 1.05;
  text-align: center;
}
.storm-shape { position: absolute; opacity: .8; transform: rotate(24deg); }
.storm-shape-one {
  width: 66%; height: 175%; left: -18%; top: -72%;
  border-radius: 50%; background: #4a4949;
}
.storm-shape-two {
  width: 70%; height: 58%; right: -15%; top: 22%;
  background: #202020; transform: rotate(24deg) skewX(-16deg);
}
.script-logo {
  margin: 0;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(4rem, 9vw, 7.25rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-shadow: 0 2px 1px rgba(0,0,0,.2);
}
.script-logo small { font-family: Georgia, serif; font-size: .2em; }

.tagline-band { background: var(--rose-pale); padding: 1.5rem; }
.tagline-band h1 {
  width: min(var(--max), 100%);
  margin: 0 auto;
  background: #fff;
  padding: .5rem 1rem;
  color: var(--gold);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 200;
  line-height: 1.2;
  text-align: center;
}
.section { width: min(var(--max), calc(100% - 3rem)); margin: 0 auto; padding: 3.25rem 0; }
.intro-wrap,
.soft-band { background: var(--rose-pale); }
.intro-grid { display: grid; grid-template-columns: minmax(280px, .8fr) 1.25fr; gap: 2rem; align-items: start; }
.logo-card { margin: 0; background: #fff; text-align: center; }
.logo-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; }
.logo-card figcaption { padding: 1rem 1.25rem 1.4rem; font-style: italic; font-weight: 700; }
.intro-copy { display: grid; gap: 0; }
.white-panel { background: #fff; padding: 1.6rem 1.5rem; }
.white-panel h2 { margin: 0 0 .85rem; font-size: 1.1rem; }
.white-panel p { margin: 0 0 1rem; }
.white-panel p:last-child { margin-bottom: 0; }
.button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: var(--blush);
  padding: .55rem 1rem;
  text-align: center;
  text-decoration: none;
  transition: background .18s ease, transform .18s ease;
}
.button:hover { background: var(--blush-deep); transform: translateY(-1px); }

.section-title {
  width: 100%;
  padding: 2.3rem 1rem;
  text-align: center;
}
.section-title h2 { margin: 0; font-size: 1.2rem; text-transform: uppercase; }
.blush-title { background: var(--blush); }
.dark-title { background: var(--charcoal); color: #fff; }
.card-grid { display: grid; gap: 1.85rem; }
.three-up { grid-template-columns: repeat(3, 1fr); }
.two-up { grid-template-columns: repeat(2, 1fr); }
.audience-grid article { display: flex; flex-direction: column; text-align: center; }
.audience-grid h3 { margin: 0 0 .8rem; text-transform: uppercase; }
.audience-grid p { flex: 1; margin: 0 0 2.3rem; }
.centered { text-align: center; }
.italic { font-style: italic; }
.lead { font-size: 1.02rem; }
.sentence-title { margin-top: 0; font-size: 1.08rem; font-style: italic; }
.support-section { padding-top: 1rem; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin: 4.5rem 0 4rem; }
.steps-grid h3 { margin: 0 0 1rem; font-size: .96rem; text-transform: uppercase; }
.steps-grid p { margin: 0; }
.full-button { width: 100%; }
.profile-grid { display: grid; grid-template-columns: 1.5fr .75fr; gap: 2.5rem; align-items: center; }
.profile-copy h2,
.final-cta h2 { text-transform: uppercase; }
.profile-copy h2 { font-size: 1.08rem; }
.profile-copy h3 { font-size: 1rem; }
.profile-photo { width: 100%; max-height: 500px; object-fit: cover; object-position: center top; }
.final-cta { padding-top: 3.8rem; padding-bottom: 3.8rem; }
.final-cta h2 { font-size: 1.06rem; }

.page-intro { background: var(--rose-pale); }
.page-intro .white-panel { padding: 2rem 2.6rem; text-align: center; }
.page-intro .white-panel > :first-child { margin-top: 0; }
.page-intro .white-panel > :last-child { margin-bottom: 0; }
.eyebrow { font-size: .95rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.large-copy { font-size: clamp(1.15rem, 2vw, 1.45rem); }
.page-heading { margin: 0 0 1rem; font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 400; }
.section-heading { margin: 0 0 1rem; font-size: 1.12rem; text-transform: uppercase; }
.subheading { margin: 0 0 .8rem; font-size: 1rem; text-transform: uppercase; }
.copy-narrow { max-width: 950px; margin-inline: auto; }
.image-grid img { width: 100%; height: 300px; object-fit: cover; }
.image-grid article > img { margin-bottom: 1rem; }
.image-grid ul { padding-left: 1.45rem; text-align: left; }
.image-grid li { margin: .45rem 0; }
.split-section { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.75rem; align-items: start; }
.split-section img { width: 100%; max-height: 470px; object-fit: cover; }
.list-clean { margin: 0; padding: 0; list-style: none; }
.list-clean li { margin: .65rem 0; }
.list-columns { columns: 2; column-gap: 2rem; }
.action-strip { margin-top: 2.2rem; }
.quiet-note { color: var(--muted); font-size: .94rem; }
.quote-block { padding: 2.6rem 1.5rem; text-align: center; font-family: Georgia, serif; font-size: 1.4rem; font-style: italic; }

.audience-links { padding-top: 2rem; padding-bottom: 2rem; }
.audience-links a {
  display: flex;
  min-height: 170px;
  align-items: center;
  justify-content: center;
  border-bottom: 7px solid var(--blush);
  background: #fff;
  padding: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 4px 22px rgba(0, 0, 0, .07);
}
.audience-links a:hover { background: #fff9f9; }

.service-intro { padding-bottom: 1rem; }
.service-group { padding-top: 4rem; padding-bottom: 4rem; }
.service-group + .service-group { border-top: 1px solid var(--line); }
.service-group-header { max-width: 940px; margin: 0 auto 2.2rem; text-align: center; }
.service-group-header h2 { margin: 0 0 1rem; text-transform: uppercase; }
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e3dddd;
  background: #fff;
}
.service-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.service-card-body { display: flex; flex: 1; flex-direction: column; padding: 1.35rem; }
.service-card h3 { margin: 0 0 .75rem; font-size: 1rem; text-transform: uppercase; }
.service-card ul { padding-left: 1.2rem; }
.service-card .button { margin-top: auto; }
.disclaimer { background: var(--rose-pale); padding: 1.8rem; text-align: center; }
.framework-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
.framework-grid article { border-top: 6px solid var(--blush); background: #fff; padding: 1.3rem; }
.framework-grid h3 { font-size: .95rem; text-transform: uppercase; }

.credentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.credentials-grid article { background: #fff; padding: 1.5rem; }
.credentials-grid h3 { margin-top: 0; font-size: 1rem; text-transform: uppercase; }
.credentials-grid ul { padding-left: 1.2rem; }
.about-photo { width: 100%; max-height: 430px; object-fit: cover; }
.about-hero-image { width: 100%; max-height: 460px; object-fit: cover; }

.resource-card { display: flex; flex-direction: column; background: #fff; }
.resource-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.resource-card-body { display: flex; flex: 1; flex-direction: column; padding: 1.4rem; }
.resource-card-body .button { margin-top: auto; }

.contact-frame { width: 100%; min-height: 770px; border: 1px solid var(--line); background: #fff; }
.privacy-note { border-left: 7px solid var(--blush); background: var(--rose-pale); padding: 1.6rem 1.8rem; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.process-grid article { border-top: 6px solid var(--blush); background: #fff; padding: 1.4rem; }
.process-grid h3 { margin-top: 0; font-size: 1rem; text-transform: uppercase; }
.pricing-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.price-card { background: #fff; border: 1px solid var(--line); padding: 1.6rem; }
.price-card h3 { margin-top: 0; text-transform: uppercase; }
.price-card h4 { margin-bottom: .25rem; font-size: .98rem; text-transform: uppercase; }
.price-card p { margin-top: .25rem; }
.price-list { padding: 0; list-style: none; }
.price-list li { margin: .65rem 0; }

.purpose-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.purpose-grid article { border-top: 6px solid var(--blush); padding: 1rem; text-align: center; }
.purpose-grid h3 { font-size: .95rem; }
.legal-copy h2 { margin-top: 2.5rem; font-size: 1rem; text-transform: uppercase; }

@media (max-width: 1040px) {
  .site-header { position: fixed; background: rgba(36,36,36,.97); padding: .85rem 1rem; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%; right: 0; left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #252525;
    padding: .5rem 1rem 1rem;
    max-height: calc(100vh - 62px);
    overflow-y: auto;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .75rem .5rem; }
  .site-nav a::after { height: 3px; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown > a { width: 100%; }
  .nav-submenu {
    position: static;
    display: block;
    width: auto;
    transform: none;
    border-top: 0;
    box-shadow: none;
    padding: 0 0 0 1rem;
  }
  .nav-submenu a { color: #efc3c4; padding: .5rem; font-size: .9rem; }
  .hero, .hero-inner { min-height: 270px; }
  .hero-inner { padding-top: 5.5rem; }
  .intro-grid { grid-template-columns: 1fr; }
  .three-up,
  .service-cards,
  .credentials-grid { grid-template-columns: 1fr; }
  .two-up,
  .split-section,
  .pricing-columns { grid-template-columns: 1fr; }
  .steps-grid,
  .framework-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-photo { max-width: 460px; margin: 0 auto; }
  .purpose-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .brand { font-size: 1rem; }
  .section { width: min(100% - 2rem, var(--max)); padding: 2.25rem 0; }
  .tagline-band { padding: 1rem; }
  .tagline-band h1 { font-size: 1.85rem; }
  .script-logo { font-size: 3.7rem; }
  .steps-grid,
  .framework-grid,
  .purpose-grid { grid-template-columns: 1fr; }
  .page-intro .white-panel { padding: 1.5rem; }
  .image-grid img { height: 240px; }
  .list-columns { columns: 1; }
  .contact-frame { min-height: 900px; }
}
