/* ============================================================
   SLEEP & SAFETY CO — shared styles
   Palette drawn from her real brand: soft pink, sage, blush, cream.
   Motion follows Emil principles: transform/opacity only, custom easing.
   ============================================================ */

:root {
  /* her brand palette */
  --cream: #f8f3eb;
  --cream-2: #f1e8db;
  --paper: #fffdf9;
  --ink: #3a322e;
  --ink-soft: #6e635a;
  --ink-faint: #a99e92;
  --pink: #e7a8c9; /* logo pink */
  --pink-deep: #c96f9e; /* accessible pink for text/links */
  --pink-soft: #f6e3ee;
  --sage: #a1bb8c; /* registry green */
  --sage-deep: #6f8a5a;
  --sage-soft: #e3ead9;
  --blush: #e8cfc6;
  --blush-soft: #f4e7e1;
  --line: #e9decf;

  /* easing — strong custom curves */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --maxw: 1200px;
  --radius: 24px;
  --shadow-sm: 0 10px 24px -16px rgba(58, 50, 46, 0.35);
  --shadow-md: 0 26px 50px -28px rgba(58, 50, 46, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.62;
  overflow-x: hidden;
  width: 100%;
}
main {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
::selection {
  background: var(--pink);
  color: #fff;
}

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 430;
  line-height: 1.06;
  letter-spacing: -0.015em;
}
.script {
  font-family: "Caveat", cursive;
  font-weight: 600;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
.section {
  padding: clamp(80px, 11vw, 140px) 0;
  position: relative;
}

.eyebrow {
  font-family: "Outfit";
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--pink);
}

/* buttons ---------------------------------------------------- */
.btn {
  --b: var(--ink);
  --t: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-weight: 500;
  font-size: 0.97rem;
  padding: 0.92em 1.65em;
  border-radius: 999px;
  background: var(--b);
  color: var(--t);
  border: 1px solid var(--b);
  cursor: pointer;
  transition: transform 0.16s var(--ease-out), background 0.25s ease,
    color 0.25s ease, box-shadow 0.3s var(--ease-out);
  will-change: transform;
}
.btn:active {
  transform: scale(0.97);
}
.btn:hover {
  box-shadow: var(--shadow-sm);
}
.btn--pink {
  --b: var(--pink-deep);
  --t: #fff;
}
.btn--pink:hover {
  --b: #b35f8e;
}
.btn--sage {
  --b: var(--sage-deep);
  --t: #fff;
}
.btn--sage:hover {
  --b: #5f7a4c;
}
.btn--ghost {
  --b: transparent;
  --t: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  background: var(--paper);
}
.btn .arrow {
  transition: transform 0.25s var(--ease-out);
}
.btn:hover .arrow {
  transform: translateX(4px);
}

/* ============================================================
   NAV
   ============================================================ */
.nav-shell {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 16px 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 253, 249, 0.78);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(233, 222, 207, 0.9);
  border-radius: 999px;
  padding: 9px 9px 9px 20px;
  box-shadow: 0 12px 34px -24px rgba(58, 50, 46, 0.5);
  transition: box-shadow 0.4s var(--ease-out), background 0.4s ease;
}
.nav.scrolled {
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 16px 40px -22px rgba(58, 50, 46, 0.5);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.brand img {
  height: 54px;
  width: auto;
}
.brand .bname {
  font-family: "Fraunces";
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand .btag {
  display: block;
  font-family: "Outfit";
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding: 0.5em 0.8em;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: var(--cream-2);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
@media (max-width: 1040px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 12px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  }
  .nav-links.open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 0.7em 1em;
    font-size: 1rem;
  }
  .nav-toggle {
    display: block;
  }
  .nav-cta .btn--ghost {
    display: none;
  }
}

/* ============================================================
   DECOR — organic blobs + botanical leaves
   ============================================================ */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
.leaf {
  position: absolute;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 178px 0 90px;
  overflow: hidden;
}
.hero .wrap {
  position: relative;
  z-index: 5;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 54px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.7rem, 5.6vw, 4.9rem);
  max-width: 15ch;
  margin: 22px 0 0;
}
.hero h1 em {
  font-style: italic;
  color: var(--pink-deep);
}
.hero .lead {
  max-width: 48ch;
  margin-top: 24px;
  font-size: clamp(1.04rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  font-weight: 300;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 40px;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  color: var(--ink-faint);
  font-size: 0.84rem;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.hero-trust span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
}
.hero-media {
  position: relative;
}
.hero-media .frame {
  position: relative;
  z-index: 2;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--paper);
}
.hero-media .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media .badge {
  position: absolute;
  z-index: 3;
  bottom: -18px;
  left: -18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-media .badge .num {
  font-family: "Fraunces";
  font-size: 1.7rem;
  color: var(--sage-deep);
  line-height: 1;
}
.hero-media .badge small {
  font-size: 0.78rem;
  color: var(--ink-soft);
  max-width: 14ch;
  line-height: 1.25;
}
@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hero h1 {
    max-width: 18ch;
  }
  .hero-media {
    max-width: 420px;
  }
}

/* page hero (interior) */
.phero {
  position: relative;
  padding: 172px 0 60px;
  overflow: hidden;
}
.phero .wrap {
  position: relative;
  z-index: 5;
}
.phero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  max-width: 16ch;
  margin-top: 18px;
}
.phero h1 em {
  font-style: italic;
  color: var(--pink-deep);
}
.phero p {
  max-width: 54ch;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  font-weight: 300;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: slide 36s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-track span {
  font-family: "Fraunces";
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 46px;
  white-space: nowrap;
  padding-right: 46px;
}
.marquee-track span::after {
  content: "✿";
  font-style: normal;
  color: var(--pink);
  font-size: 0.85rem;
}
@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head {
  max-width: 680px;
  margin-bottom: 54px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  margin-top: 16px;
}
.section-head p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 1.06rem;
  font-weight: 300;
}

/* ============================================================
   SERVICES BENTO (home)
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  grid-auto-flow: dense;
  gap: 16px;
}
.scard {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  will-change: transform;
}
.scard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.scard-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  z-index: 3;
}
.scard-body {
  margin-top: auto;
  position: relative;
  z-index: 3;
}
.scard .tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink-deep);
  white-space: nowrap;
}
.scard .price {
  font-family: "Caveat";
  font-size: 1.45rem;
  line-height: 1;
  white-space: nowrap;
}
.scard h3 {
  font-size: 1.5rem;
  margin-bottom: 7px;
}
.scard p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 300;
  max-width: 40ch;
}
.scard .go {
  margin-top: 14px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.scard .go .arrow {
  transition: transform 0.25s var(--ease-out);
}
.scard:hover .go .arrow {
  transform: translateX(4px);
}
.scard .deco {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.feat {
  grid-column: span 2;
  grid-row: span 2;
  color: #fff;
  border: none;
  background: linear-gradient(155deg, var(--sage) 0%, var(--sage-deep) 100%);
}
.feat .tag {
  color: rgba(255, 255, 255, 0.85);
}
.feat p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
  max-width: 32ch;
}
.feat .price {
  color: #fff;
}
.feat .go {
  color: #fff;
}
.span2 {
  grid-column: span 2;
}
.span1 {
  grid-column: span 1;
}
.pinkcard {
  background: linear-gradient(155deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: #fff;
  border: none;
}
.pinkcard .tag,
.pinkcard .price,
.pinkcard .go {
  color: #fff;
}
.pinkcard p {
  color: rgba(255, 255, 255, 0.92);
}
.blushcard {
  background: var(--blush-soft);
}
@media (max-width: 860px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
  }
  .feat {
    grid-column: span 2;
  }
  .span2 {
    grid-column: span 2;
  }
  .span1 {
    grid-column: span 1;
  }
}

/* ============================================================
   PRICING / PACKAGE CARDS (service pages)
   ============================================================ */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.pkg {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out),
    border-color 0.3s;
}
.pkg:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blush);
}
.pkg.highlight {
  border-color: var(--sage);
  background: linear-gradient(180deg, var(--sage-soft), var(--paper));
}
.pkg .pk-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 10px;
}
.pkg h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.pkg .pk-price {
  font-family: "Fraunces";
  font-size: 2rem;
  color: var(--sage-deep);
  margin: 10px 0 4px;
}
.pkg .pk-price small {
  font-family: "Outfit";
  font-size: 0.85rem;
  color: var(--ink-faint);
  font-weight: 400;
}
.pkg .pk-body {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 300;
  margin-top: 8px;
}
.pkg ul {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pkg li {
  position: relative;
  padding-left: 26px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.pkg li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sage-soft);
  border: 2px solid var(--sage);
}
.pkg .btn {
  margin-top: 22px;
  align-self: flex-start;
}

/* simple table (car seat) */
.ptable {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.ptable th,
.ptable td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.ptable th {
  background: var(--cream-2);
  font-family: "Outfit";
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.ptable tr:last-child td {
  border-bottom: none;
}
.ptable .svc {
  font-family: "Fraunces";
  font-size: 1.05rem;
  color: var(--ink);
}
.ptable .cost {
  font-family: "Fraunces";
  color: var(--sage-deep);
  white-space: nowrap;
}

/* feature list (what's included) */
.incl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.incl .it {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.incl .it .dot {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pink-soft);
  display: grid;
  place-items: center;
  color: var(--pink-deep);
  font-size: 1rem;
}
.incl .it b {
  font-weight: 600;
  display: block;
}
.incl .it span {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 300;
}
@media (max-width: 680px) {
  .incl {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SPLIT (about / generic)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.media-left {
  direction: rtl;
}
.split.media-left > * {
  direction: ltr;
}
.split .media {
  position: relative;
}
.split .media .frame {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--paper);
}
.split .media .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split .copy h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  margin: 14px 0 18px;
}
.split .copy p {
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-weight: 300;
}
.split .copy p strong {
  color: var(--ink);
  font-weight: 500;
}
.sign {
  font-family: "Caveat";
  font-size: 2rem;
  color: var(--pink-deep);
  margin-top: 6px;
}
@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split.media-left {
    direction: ltr;
  }
}

/* ============================================================
   STEPS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  padding-top: 22px;
  border-top: 2px solid var(--ink);
}
.step .n {
  font-family: "Caveat";
  font-size: 1.5rem;
  color: var(--pink-deep);
}
.step h4 {
  font-family: "Outfit";
  font-weight: 600;
  font-size: 1.2rem;
  margin: 8px 0 6px;
  letter-spacing: -0.01em;
}
.step p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 300;
}
@media (max-width: 760px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   CREDENTIALS / CHIPS
   ============================================================ */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5em 1.1em;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.chip b {
  color: var(--ink);
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tl {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.tl .yr {
  font-family: "Fraunces";
  color: var(--pink-deep);
  font-size: 1rem;
}
.tl .what {
  color: var(--ink-soft);
  font-weight: 300;
}
.tl .what b {
  color: var(--ink);
  font-weight: 500;
}
@media (max-width: 600px) {
  .tl {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi {
  background: var(--ink);
  color: var(--cream);
}
.testi .section-head h2 {
  color: var(--cream);
}
.testi .eyebrow {
  color: var(--pink);
}
.testi-stage {
  position: relative;
  min-height: 280px;
}
.quote {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
}
.quote.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.quote .name {
  font-family: "Caveat";
  font-size: 2.2rem;
  color: var(--pink);
  margin-bottom: 14px;
}
.quote blockquote {
  font-family: "Fraunces";
  font-weight: 380;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.34;
  max-width: 30ch;
  letter-spacing: -0.01em;
}
.quote blockquote em {
  font-style: italic;
  color: var(--pink);
}
.quote .stars {
  margin-top: 20px;
  color: var(--pink);
  letter-spacing: 0.2em;
}
.testi-nav {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(248, 243, 235, 0.28);
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), background 0.2s;
}
.dot.active {
  background: var(--pink);
  transform: scale(1.25);
}
.dot:active {
  transform: scale(0.9);
}

/* testimonial grid (feedback page) */
.tgrid {
  columns: 2;
  column-gap: 22px;
}
.tquote {
  break-inside: avoid;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.tquote .name {
  font-family: "Caveat";
  font-size: 1.9rem;
  color: var(--pink-deep);
  margin-bottom: 6px;
}
.tquote .stars {
  color: var(--pink);
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.tquote p {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 0.98rem;
}
@media (max-width: 760px) {
  .tgrid {
    columns: 1;
  }
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta .wrap {
  position: relative;
  z-index: 2;
}
.cta h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.9rem);
  max-width: 18ch;
  margin: 0 auto 22px;
}
.cta h2 em {
  font-style: italic;
  color: var(--pink-deep);
}
.cta p {
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 auto 32px;
  font-size: 1.08rem;
  font-weight: 300;
}
.cta-actions {
  display: flex;
  gap: 13px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 64px 0 34px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 36px;
}
.foot-brand img {
  height: 64px;
  margin-bottom: 14px;
}
.foot-brand p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 300;
  max-width: 30ch;
}
.foot-col h5 {
  font-family: "Outfit";
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
  font-weight: 600;
}
.foot-col a {
  display: block;
  color: var(--ink-soft);
  font-size: 0.94rem;
  padding: 5px 0;
  transition: color 0.2s;
}
.foot-col a:hover {
  color: var(--pink-deep);
}
.foot-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--ink-faint);
  font-size: 0.84rem;
}
@media (max-width: 780px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   REVEAL + MOTION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
}
.in {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  * {
    scroll-behavior: auto;
  }
}
.form-message {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
}

.form-message.success {
  display: block;
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #86efac;
}

.form-message.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}
.reviews {
  background: var(--cream-2);
}

.google-widget {
  margin-top: 50px;
}
.brand-section {
  align-items: center;
}

.brand-media {
  display: flex;
  justify-content: center;
}

.brand-frame {
  position: relative;
  width: 420px;
  height: 420px;
  background: linear-gradient(135deg, #fff8fb, #fceef6);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(225, 170, 200, 0.35);
  overflow: hidden;
}

.brand-frame::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: #f7dceb;
  border-radius: 50%;
  top: -90px;
  right: -80px;
  opacity: 0.5;
}

.brand-frame::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: #edf5ee;
  border-radius: 50%;
  bottom: -80px;
  left: -70px;
  opacity: 0.7;
}

.brand-frame img {
  position: relative;
  z-index: 2;
  width: 72%;
  height: auto;
  object-fit: contain;
  transition: 0.35s ease;
}

.brand-frame:hover img {
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .brand-section {
    flex-direction: column-reverse;
    text-align: center;
  }

  .brand-section .eyebrow {
    justify-content: center;
  }

  .brand-frame {
    width: 320px;
    height: 320px;
    margin-bottom: 20px;
  }
}

@media (max-width: 500px) {
  .brand-frame {
    width: 260px;
    height: 260px;
    border-radius: 28px;
  }
}
