:root {
  --plum: #381f2d;
  --ink: #211d1f;
  --muted: #6c6264;
  --ivory: #fbf8f1;
  --shell: #f3e8df;
  --sage: #52634f;
  --gold: #b88a44;
  --gold-soft: #f4c980;
  --white: #ffffff;
  --line: rgba(33, 29, 31, 0.14);
  --shadow: 0 24px 80px rgba(56, 31, 45, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open,
.site-header.solid-header {
  color: var(--ink);
  background: rgba(251, 248, 241, 0.94);
  box-shadow: 0 10px 32px rgba(33, 29, 31, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(264px, 28vw);
  min-width: 214px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(33, 29, 31, 0.1));
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  opacity: 0.84;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta {
  color: var(--plum);
  background: var(--white);
}

.site-header.is-scrolled .header-cta,
.site-header.is-open .header-cta,
.site-header.solid-header .header-cta {
  color: var(--white);
  background: var(--plum);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  padding: 140px clamp(18px, 6vw, 76px) 92px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("assets/hero-styling.jpg");
  background-position: center 34%;
  background-size: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(35, 20, 30, 0.9) 0%, rgba(35, 20, 30, 0.7) 42%, rgba(35, 20, 30, 0.18) 100%),
    linear-gradient(0deg, rgba(33, 29, 31, 0.42), rgba(33, 29, 31, 0.1));
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold-soft);
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  max-width: 820px;
  font-size: clamp(56px, 7.8vw, 104px);
}

h2 {
  font-size: clamp(36px, 5vw, 68px);
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.1;
}

.hero-lede {
  max-width: 680px;
  margin: 28px 0 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-value-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 34px;
}

.hero-value-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(246, 223, 173, 0.42);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-assurance {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 750;
}

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

.button-row.center {
  justify-content: center;
}

.button-primary {
  color: var(--white);
  background: var(--plum);
  border-color: var(--plum);
  box-shadow: 0 18px 44px rgba(56, 31, 45, 0.22);
}

.hero .button-primary,
.final-cta .button-primary {
  color: var(--plum);
  background: var(--white);
  border-color: var(--white);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary.dark {
  color: var(--plum);
  border-color: rgba(56, 31, 45, 0.28);
  background: transparent;
}

.button-secondary:hover {
  border-color: currentColor;
}

.credibility {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.credibility div {
  min-height: 132px;
  padding: 30px clamp(20px, 4vw, 46px);
  border-right: 1px solid var(--line);
}

.credibility div:last-child {
  border-right: 0;
}

.credibility strong,
.credibility span {
  display: block;
}

.credibility strong {
  color: var(--plum);
  font-size: 18px;
  line-height: 1.25;
}

.credibility span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(76px, 10vw, 132px) clamp(18px, 5vw, 56px);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}

.copy-stack {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 20px;
}

.promise {
  background: var(--ivory);
}

.vision-mission {
  color: var(--white);
  background: var(--plum);
}

.vision-mission .eyebrow {
  color: var(--gold-soft);
}

.vision-mission-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.vision-mission .section-heading {
  margin-bottom: 0;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.vision-mission-grid article {
  min-height: 320px;
  padding: 30px;
  border: 1px solid rgba(246, 223, 173, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.vision-mission-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.vision-mission-grid h3 {
  color: var(--white);
}

.vision-mission-grid p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.inclusions {
  background: var(--white);
}

.compact-heading {
  max-width: 880px;
}

.inclusion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 10px;
  background: var(--line);
  border: 1px solid var(--line);
}

.inclusion-grid article {
  min-height: 260px;
  padding: 28px;
  background: var(--ivory);
}

.inclusion-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.inclusion-grid h3 {
  color: var(--plum);
}

.inclusion-grid p {
  margin-top: 16px;
  color: var(--muted);
}

.audience {
  color: var(--white);
  background: var(--sage);
}

.audience .eyebrow {
  color: var(--gold-soft);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 44px;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.audience-grid article {
  min-height: 280px;
  padding: 30px;
  background: var(--sage);
}

.audience-grid span,
.service-kicker,
.transformation-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.audience-grid h3 {
  color: var(--white);
}

.audience-grid p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.services,
.faq {
  background: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading p:last-child {
  margin-top: 18px;
  color: var(--muted);
  font-size: 19px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 430px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card.featured {
  color: var(--white);
  background: var(--plum);
  box-shadow: var(--shadow);
}

.service-card:hover,
.premium-package:hover,
.transformation-grid article:hover,
.result-showcase article:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 138, 68, 0.34);
  box-shadow: 0 18px 58px rgba(33, 29, 31, 0.12);
}

.service-card p {
  margin: 22px 0 26px;
  color: var(--muted);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card strong {
  align-self: end;
  margin-top: auto;
  color: var(--plum);
  font-size: 15px;
}

.service-card.featured strong {
  color: var(--gold-soft);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.process {
  background: var(--shell);
}

.text-link {
  display: inline-block;
  margin-top: 26px;
  color: var(--plum);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.process-list {
  display: grid;
  gap: 18px;
}

.process-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(56, 31, 45, 0.18);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
  background: var(--plum);
  font-weight: 800;
}

.process-list p {
  margin-top: 8px;
  color: var(--muted);
}

.transformations {
  background: var(--ivory);
}

.transformation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.transformation-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.transformation-grid img {
  height: 320px;
  object-fit: cover;
}

.transformation-grid div {
  padding: 26px;
}

.transformation-grid span {
  margin-bottom: 14px;
}

.transformation-grid p {
  margin-top: 14px;
  color: var(--muted);
}

.testimonials {
  color: var(--white);
  background: var(--plum);
}

.testimonials .eyebrow {
  color: var(--gold-soft);
}

.testimonials .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.testimonial-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 26px;
  align-items: end;
  width: 100%;
  max-width: none;
  margin-bottom: 18px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(246, 223, 173, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.testimonial-feature blockquote {
  max-width: 990px;
  font-size: clamp(25px, 2.65vw, 36px);
}

.testimonial-feature figcaption {
  justify-self: end;
  margin-top: 0;
  padding-top: 0;
  text-align: right;
  white-space: nowrap;
}

.testimonial-grid figure,
.testimonial-feature {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.testimonial-grid figure {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.testimonial-grid figure:hover,
.testimonial-feature:hover {
  transform: translateY(-3px);
  border-color: rgba(246, 223, 173, 0.38);
  background: rgba(255, 255, 255, 0.09);
}

blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.25;
}

figcaption {
  margin-top: auto;
  padding-top: 24px;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 800;
}

.about {
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(38px, 7vw, 86px);
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #f8f4ef, #efe0d8);
}

.about-image::after {
  content: "Founder & Stylist";
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.about-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.about-copy {
  display: grid;
  gap: 20px;
}

.about-copy p {
  color: var(--muted);
  font-size: 18px;
}

.about-copy .eyebrow {
  margin-bottom: -6px;
}

.about-copy h2 {
  color: var(--plum);
}

.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.founder-credentials span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(56, 31, 45, 0.18);
  border-radius: 999px;
  color: var(--plum);
  background: var(--ivory);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.about-copy .button {
  justify-self: start;
  margin-top: 10px;
}

.journey {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(33, 29, 31, 0.22), transparent 38%),
    var(--plum);
}

.journey .eyebrow {
  color: var(--gold-soft);
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(38px, 6vw, 84px);
  align-items: center;
}

.journey-copy {
  display: grid;
  align-content: center;
  gap: 22px;
}

.journey-copy h2 {
  max-width: 600px;
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 1;
}

.journey-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.journey-proof {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.journey-proof span {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid rgba(246, 223, 173, 0.32);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.journey-proof strong {
  color: var(--gold-soft);
}

.journey-gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(14px, 2vw, 22px);
  align-items: end;
}

.journey-gallery figure {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease;
}

.journey-gallery figure:first-child {
  transform: translateY(28px);
}

.journey-gallery figure:hover {
  border-color: rgba(246, 223, 173, 0.38);
}

.journey-gallery figure:first-child:hover {
  transform: translateY(24px);
}

.journey-gallery figure:nth-child(2):hover {
  transform: translateY(-4px);
}

.journey-gallery img {
  height: clamp(420px, 44vw, 560px);
  object-fit: cover;
  object-position: center;
}

.journey-gallery figure:first-child img {
  object-position: center 42%;
}

.journey-gallery figure:nth-child(2) img {
  object-position: center 38%;
}

.journey-gallery figcaption {
  margin: 0;
  padding: 14px 16px;
  color: var(--gold-soft);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--plum);
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  font-size: 22px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 24px 22px;
  color: var(--muted);
}

.final-cta {
  padding: clamp(82px, 11vw, 144px) clamp(18px, 5vw, 56px);
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(56, 31, 45, 0.88), rgba(56, 31, 45, 0.9)),
    url("assets/consultation.jpg") center / cover;
}

.final-cta .eyebrow {
  color: var(--gold-soft);
}

.final-cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px auto 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.site-footer {
  padding: 54px clamp(18px, 5vw, 56px) 28px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-brand {
  color: var(--white);
  width: min(264px, 100%);
}

.site-footer p {
  max-width: 390px;
  margin-top: 18px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.site-footer a:not(.brand) {
  display: block;
  width: fit-content;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover {
  color: var(--white);
}

.copyright {
  width: min(var(--max), 100%);
  margin: 42px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.legal-page {
  background: var(--ivory);
}

.legal-main {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 130px 0 80px;
}

.legal-main h1 {
  color: var(--plum);
  font-size: clamp(44px, 7vw, 78px);
}

.legal-main h2 {
  margin-top: 34px;
  color: var(--plum);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.3;
}

.legal-main p,
.legal-main li {
  color: var(--muted);
}

.legal-main p {
  margin-top: 16px;
}

.legal-main ul {
  padding-left: 20px;
}

.packages-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.78fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
  min-height: 92vh;
  padding: 138px clamp(18px, 5vw, 56px) 72px;
  background:
    linear-gradient(135deg, rgba(243, 232, 223, 0.98), rgba(251, 248, 241, 0.98) 56%, rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 20% 20%, rgba(184, 138, 68, 0.14), transparent 36%);
}

.packages-hero-copy {
  max-width: 820px;
}

.packages-hero h1 {
  max-width: 820px;
  color: var(--plum);
  font-size: clamp(56px, 8vw, 106px);
}

.packages-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
}

.packages-hero-panel {
  overflow: hidden;
  border: 1px solid rgba(56, 31, 45, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.packages-hero-panel img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.packages-hero-panel div {
  padding: 26px;
}

.packages-hero-panel strong,
.packages-hero-panel span {
  display: block;
}

.packages-hero-panel strong {
  color: var(--plum);
  font-size: 20px;
  line-height: 1.25;
}

.packages-hero-panel span {
  margin-top: 10px;
  color: var(--muted);
}

.packages-intro {
  background: var(--plum);
  color: var(--white);
}

.packages-intro .eyebrow,
.work-flow .eyebrow,
.bespoke .eyebrow {
  color: var(--gold-soft);
}

.packages-intro .copy-stack {
  color: rgba(255, 255, 255, 0.78);
}

.work-flow {
  background: var(--sage);
  color: var(--white);
}

.work-flow .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.workflow-grid article {
  min-height: 245px;
  padding: 28px;
  background: var(--sage);
}

.workflow-grid span,
.package-topline span,
.bespoke-list span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.workflow-grid h3,
.bespoke-list h3 {
  color: var(--white);
}

.workflow-grid p,
.bespoke-list p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
}

.package-edits {
  background: var(--ivory);
}

.premium-package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.premium-package {
  display: grid;
  min-height: 610px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.premium-package.signature {
  color: var(--white);
  background: var(--plum);
  box-shadow: var(--shadow);
}

.package-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.package-topline span {
  margin-bottom: 0;
  color: var(--gold);
}

.package-topline strong {
  color: var(--sage);
  font-size: 12px;
  text-transform: uppercase;
}

.premium-package.signature .package-topline strong {
  color: var(--gold-soft);
}

.premium-package p {
  margin-top: 18px;
  color: var(--muted);
}

.premium-package.signature p {
  color: rgba(255, 255, 255, 0.78);
}

.premium-package ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.premium-package li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.premium-package.signature li {
  color: rgba(255, 255, 255, 0.82);
}

.premium-package li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.premium-package .button {
  align-self: end;
  width: 100%;
  margin-top: auto;
}

.add-ons {
  background: var(--white);
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.addon-grid article {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background 180ms ease;
}

.addon-grid article:hover {
  background: var(--ivory);
}

.addon-grid h3 {
  color: var(--plum);
}

.addon-grid p {
  margin-top: 14px;
  color: var(--muted);
}

.bespoke {
  color: var(--white);
  background: var(--ink);
}

.bespoke-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 7vw, 80px);
}

.bespoke-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.bespoke-list article {
  padding: 28px;
  background: var(--ink);
}

.package-results {
  background: var(--shell);
}

.result-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 20px;
}

.result-showcase article {
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 46px rgba(33, 29, 31, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.result-showcase img {
  height: 360px;
  object-fit: cover;
}

.result-showcase article:first-child img {
  height: 460px;
}

.result-showcase div {
  padding: 26px;
}

.result-showcase span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-header .brand {
    width: 214px;
    max-width: calc(100vw - 116px);
  }

  .nav-toggle {
    justify-self: end;
    align-content: center;
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 12px;
    color: inherit;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    inset: 78px 18px auto;
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    padding: 24px;
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: grid;
    gap: 16px;
  }

  .header-cta {
    display: none;
  }

  .credibility,
  .inclusion-grid,
  .vision-mission-layout,
  .vision-mission-grid,
  .audience-grid,
  .service-grid,
  .transformation-grid,
  .testimonial-grid,
  .footer-grid,
  .packages-hero,
  .workflow-grid,
  .premium-package-grid,
  .addon-grid,
  .bespoke-layout,
  .result-showcase {
    grid-template-columns: 1fr;
  }

  .packages-hero {
    min-height: auto;
    padding-top: 120px;
    gap: 36px;
  }

  .premium-package {
    min-height: auto;
  }

  .addon-grid {
    border-top: 1px solid var(--line);
  }

  .credibility div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .split,
  .about-layout,
  .journey-layout {
    grid-template-columns: 1fr;
  }

  .journey-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-feature {
    grid-template-columns: 1fr;
  }

  .testimonial-feature figcaption {
    justify-self: start;
    padding-top: 20px;
    text-align: left;
    white-space: normal;
  }

  .audience-grid article,
  .inclusion-grid article,
  .vision-mission-grid article,
  .service-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header .brand,
  .brand {
    width: 188px;
    min-width: 0;
  }

  .brand-logo {
    filter: drop-shadow(0 8px 16px rgba(33, 29, 31, 0.08));
  }

  .hero {
    min-height: 88vh;
    padding-top: 126px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(35, 20, 30, 0.93), rgba(35, 20, 30, 0.68)),
      linear-gradient(0deg, rgba(33, 29, 31, 0.42), rgba(33, 29, 31, 0.1));
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(44px, 13vw, 54px);
    line-height: 1.02;
  }

  .packages-hero h1 {
    max-width: 9ch;
    font-size: clamp(44px, 13vw, 56px);
  }

  .packages-hero-copy > p:not(.eyebrow) {
    max-width: 34ch;
    font-size: 18px;
  }

  h2 {
    font-size: clamp(34px, 12vw, 46px);
  }

  .button-row,
  .button {
    width: 100%;
  }

  .hero-value-strip {
    gap: 8px;
  }

  .hero-value-strip span {
    min-height: 32px;
    font-size: 11px;
  }

  .button {
    min-height: 50px;
  }

  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .copy-stack,
  .section-heading p:last-child,
  .final-cta p:not(.eyebrow) {
    font-size: 17px;
  }

  .audience-grid article,
  .inclusion-grid article,
  .vision-mission-grid article,
  .service-card,
  .transformation-grid div,
  .testimonial-grid figure,
  .testimonial-feature {
    padding: 24px;
  }

  .transformation-grid img {
    height: 260px;
  }

  .journey-gallery {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .journey-gallery figure:first-child {
    transform: none;
  }

  .journey-gallery img {
    height: auto;
  }
}
