/* =============================================
   BOUGIE BUDGET — Styles
   Color Palette:
   --pink:     #E8929A
   --red:      #CC2936
   --caramel:  #A06830
   --sand:     #C4A882
   --cream:    #FFF8F4
   --dark:     #1C1410
   ============================================= */

:root {
  --pink:    #E8929A;
  --pink-lt: #F5D6D9;
  --pink-dk: #C06470;
  --red:     #CC2936;
  --caramel: #A06830;
  --caramel-lt: #D4A96A;
  --sand:    #C4A882;
  --sand-lt: #EDE0D0;
  --cream:   #FFF8F4;
  --dark:    #1C1410;
  --mid:     #5A3E32;
  --muted:   #8A7068;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 32px rgba(28, 20, 16, 0.08);
  --shadow-lg: 0 12px 60px rgba(28, 20, 16, 0.14);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* TYPOGRAPHY HELPERS */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--dark);
}
.section-title em {
  font-style: italic;
  color: var(--red);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn--primary:hover {
  background: #A01E29;
  border-color: #A01E29;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204, 41, 54, 0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--dark);
  border-color: rgba(28, 20, 16, 0.2);
}
.btn--ghost:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--caramel);
  border-color: var(--caramel);
}
.btn--outline:hover {
  background: var(--caramel);
  color: #fff;
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 5vw;
  background: rgba(255, 248, 244, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 168, 130, 0.2);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow); }

.nav__logo { display: flex; align-items: center; gap: 0.5rem; }
.nav__logo-mark {
  width: 36px; height: 36px;
  background: var(--red);
  color: #fff;
  display: grid; place-items: center;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
}
.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.nav__logo-text em {
  font-style: italic;
  color: var(--pink-dk);
}

.nav__links {
  display: flex; align-items: center; gap: 2.5rem;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mid);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--red); }
.nav__cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
}
.nav__cta:hover { background: #A01E29 !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 8rem 5vw 5rem;
  position: relative;
  overflow: hidden;
}

.hero__bg-shape {
  position: absolute;
  top: -10%; right: -5%;
  width: 55%;
  height: 110%;
  background: linear-gradient(135deg, var(--pink-lt) 0%, var(--sand-lt) 100%);
  border-radius: 0 0 0 60% / 0 0 0 40%;
  z-index: 0;
}

.hero__content { position: relative; z-index: 1; }

.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(204, 41, 54, 0.08);
  border: 1px solid rgba(204, 41, 54, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.hero__headline em {
  font-style: italic;
  color: var(--red);
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  padding: 0 2rem 0 0;
}
.hero__stat:first-child { padding-left: 0; }
.hero__stat-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--red);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.25rem;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(196, 168, 130, 0.4);
  margin-right: 2rem;
}

/* HERO IMAGE */
.hero__image-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__image-ring {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 2px dashed rgba(160, 104, 48, 0.25);
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__image-placeholder {
  width: 380px; height: 480px;
  background: var(--sand-lt);
  border-radius: 200px 200px 160px 160px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero__badge {
  position: absolute;
  bottom: 40px; left: -20px;
  background: var(--red);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(204, 41, 54, 0.35);
}
.hero__badge-icon { color: rgba(255,255,255,0.7); font-size: 0.7rem; }

/* =============================================
   PRESS
   ============================================= */
.press {
  background: var(--dark);
  padding: 1.75rem 5vw;
  display: flex;
  align-items: center;
  gap: 3rem;
  overflow-x: auto;
}
.press__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.press__logos {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.press__logos span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 248, 244, 0.4);
  white-space: nowrap;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.press__logos span:hover { color: rgba(255, 248, 244, 0.8); }

/* =============================================
   ABOUT
   ============================================= */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6rem;
  padding: 8rem 5vw;
}

.about__visual {
  position: relative;
  min-height: 560px;
}
.about__visual-bg {
  position: absolute;
  top: 5%; left: 5%;
  right: -5%; bottom: -5%;
  background: var(--sand-lt);
  border-radius: var(--radius);
  z-index: 0;
}
.about__photo-block {
  position: relative;
  z-index: 1;
  width: 75%;
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__photo-placeholder {
  width: 100%;
  height: 100%;
  background: #EDE0D0;
}
.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about__card {
  position: absolute;
  z-index: 2;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
.about__card--quote {
  bottom: 20px; right: -10px;
  padding: 1.25rem 1.5rem;
  max-width: 220px;
  border-left: 3px solid var(--red);
}
.about__card--quote p {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--mid);
  line-height: 1.5;
}
.about__card--stat {
  top: 20px; right: -20px;
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.about__card-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--red);
}
.about__card-desc {
  font-size: 0.72rem;
  color: var(--muted);
  display: block;
  max-width: 140px;
  margin-top: 0.25rem;
}

.about__content { }
.about__body {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.8;
  margin-top: 1.25rem;
}
.about__credentials {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.about__credentials li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--mid);
}
.about__cred-icon { color: var(--red); font-size: 0.65rem; }

/* =============================================
   SERVICES
   ============================================= */
.services {
  background: var(--dark);
  padding: 8rem 5vw;
  color: var(--cream);
}
.services__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.services__header .section-title { color: var(--cream); }
.services__sub {
  color: rgba(255, 248, 244, 0.6);
  margin-top: 1rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.service-card {
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); }

.service-card--light {
  background: rgba(255, 248, 244, 0.06);
  border: 1px solid rgba(196, 168, 130, 0.15);
}
.service-card--featured {
  background: var(--caramel);
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
  padding: 3.5rem 2rem;
  box-shadow: 0 20px 60px rgba(160, 104, 48, 0.4);
  border-top: 4px solid var(--red);
}

.service-card__popular {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

.service-card__icon {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(255, 248, 244, 0.2);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.service-card--featured .service-card__icon { color: rgba(255, 248, 244, 0.3); }

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.service-card__price {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--red);
  margin-bottom: 1rem;
}
.service-card--featured .service-card__price { color: rgba(255, 248, 244, 0.8); }

.service-card__desc {
  font-size: 0.9rem;
  color: rgba(255, 248, 244, 0.65);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.service-card__list li {
  font-size: 0.875rem;
  color: rgba(255, 248, 244, 0.75);
  padding-left: 1rem;
  position: relative;
}
.service-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--caramel-lt);
}
.service-card--featured .service-card__list li::before { color: var(--pink-lt); }

.service-card--featured .btn--outline {
  color: var(--cream);
  border-color: rgba(255,248,244,0.5);
}
.service-card--featured .btn--primary {
  background: var(--dark);
  border-color: var(--dark);
}

/* =============================================
   PROCESS
   ============================================= */
.process {
  padding: 8rem 5vw;
  text-align: center;
  background: var(--cream);
}
.process__header { margin-bottom: 4rem; }
.process__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}
.process__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}
.process__step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(204, 41, 54, 0.08);
  color: var(--red);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  border: 2px solid var(--red);
}
.process__step-content h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.process__step-content p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}
.process__connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, var(--caramel) 100%);
  margin-top: 28px;
  opacity: 0.5;
}

/* =============================================
   TESTIMONIALS / RESULTS
   ============================================= */
.results {
  background: var(--sand-lt);
  padding: 8rem 5vw;
}
.results__header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.testimonial {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.testimonial:hover { transform: translateY(-4px); }

.testimonial--featured {
  background: var(--dark);
  margin-top: -1rem;
}

.testimonial__stars {
  color: var(--red);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial__quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial--featured .testimonial__quote { color: rgba(255, 248, 244, 0.85); }

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}
.testimonial__avatar--1 { background: linear-gradient(135deg, var(--pink) 0%, var(--caramel) 100%); }
.testimonial__avatar--2 { background: linear-gradient(135deg, var(--caramel) 0%, var(--sand) 100%); }
.testimonial__avatar--3 { background: linear-gradient(135deg, var(--red) 0%, var(--pink) 100%); }

.testimonial__author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}
.testimonial--featured .testimonial__author strong { color: var(--cream); }
.testimonial__author span {
  font-size: 0.78rem;
  color: var(--muted);
}
.testimonial--featured .testimonial__author span { color: rgba(255, 248, 244, 0.5); }

/* =============================================
   FREEBIE
   ============================================= */
.freebie {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6rem;
  padding: 8rem 5vw;
  background: var(--cream);
}

.freebie__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.freebie__title em {
  font-style: italic;
  color: var(--red);
}
.freebie__desc {
  font-size: 1rem;
  color: var(--mid);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.freebie__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.freebie__list li {
  font-size: 0.9rem;
  color: var(--mid);
}
.freebie__form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.freebie__input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 2px solid rgba(196, 168, 130, 0.4);
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  background: #fff;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}
.freebie__input:focus { border-color: var(--caramel); }
.freebie__disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
}

/* MOCKUP */
.freebie__visual {
  display: flex;
  justify-content: center;
}
.freebie__mockup {
  position: relative;
  width: 280px; height: 360px;
}
.freebie__mockup-page {
  position: absolute;
  width: 240px; height: 320px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.freebie__mockup-page--back {
  background: var(--sand);
  top: 30px; left: 40px;
  transform: rotate(4deg);
  opacity: 0.5;
}
.freebie__mockup-page--mid {
  background: var(--pink);
  top: 15px; left: 20px;
  transform: rotate(2deg);
  opacity: 0.6;
}
.freebie__mockup-page--front {
  background: var(--dark);
  top: 0; left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
}
.freebie__mockup-logo {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  display: grid;
  place-items: center;
}
.freebie__mockup-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  text-align: center;
  line-height: 1.4;
}
.freebie__mockup-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-top: 0.5rem;
}
.freebie__mockup-lines span {
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 248, 244, 0.15);
}
.freebie__mockup-lines span:nth-child(2) { width: 80%; }
.freebie__mockup-lines span:nth-child(3) { width: 90%; }
.freebie__mockup-lines span:nth-child(4) { width: 65%; }

/* =============================================
   CONTACT
   ============================================= */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: start;
  gap: 6rem;
  padding: 8rem 5vw;
  background: var(--sand-lt);
}
.contact__sub {
  font-size: 1rem;
  color: var(--mid);
  margin-top: 1.25rem;
  line-height: 1.7;
}
.contact__info {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--mid);
}
.contact__info-icon { color: var(--caramel); font-size: 1rem; }
.contact__social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.contact__social-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.contact__social-link:hover { color: var(--dark); }

.contact__form {
  background: #fff;
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid rgba(196, 168, 130, 0.35);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--dark);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--caramel);
}
.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--mid);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--caramel);
  padding: 0;
  border-radius: 3px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  color: var(--cream);
  padding: 5rem 5vw 2rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 248, 244, 0.08);
  margin-bottom: 2rem;
}
.footer__brand .nav__logo-text { color: var(--cream); }
.footer__brand .nav__logo-text em { color: var(--pink); }
.footer__brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 248, 244, 0.5);
  max-width: 280px;
  line-height: 1.6;
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__links div {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__links strong {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 248, 244, 0.4);
  margin-bottom: 0.25rem;
}
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 248, 244, 0.65);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--cream); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 248, 244, 0.3);
}
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  font-size: 0.8rem;
  color: rgba(255, 248, 244, 0.3);
  transition: color 0.2s;
}
.footer__legal a:hover { color: rgba(255, 248, 244, 0.7); }

/* =============================================
   TOAST
   ============================================= */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--dark);
  color: var(--cream);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 999;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.toast span { color: var(--caramel-lt); }
.toast.visible { transform: translateX(-50%) translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: 6rem; text-align: center; }
  .hero__bg-shape { width: 100%; height: 40%; top: auto; bottom: 0; right: 0; border-radius: 60% 60% 0 0; opacity: 0.5; }
  .hero__sub { margin: 0 auto 2.5rem; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__image-wrap { display: none; }

  .about { grid-template-columns: 1fr; gap: 4rem; }
  .about__visual { min-height: 400px; }

  .services__grid { grid-template-columns: 1fr; }
  .service-card--featured { margin-top: 0; margin-bottom: 0; }

  .process__steps { flex-direction: column; align-items: center; }
  .process__connector { width: 2px; height: 40px; margin: 0; }

  .testimonials { grid-template-columns: 1fr; }
  .testimonial--featured { margin-top: 0; }

  .freebie { grid-template-columns: 1fr; }
  .freebie__visual { order: -1; }

  .contact { grid-template-columns: 1fr; gap: 3rem; }

  .footer__top { grid-template-columns: 1fr; gap: 3rem; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--cream);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    gap: 1.5rem;
    align-items: flex-start;
    border-bottom: 1px solid rgba(196, 168, 130, 0.2);
  }
  .nav__hamburger { display: flex; }

  .form-row { grid-template-columns: 1fr; }
  .freebie__form { flex-direction: column; }
  .footer__links { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .contact__form { padding: 2rem 1.5rem; }

  .press { flex-direction: column; gap: 1rem; }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
