:root {
  --bg: #fffaf7;
  --paper: #ffffff;
  --soft: #f8ebe8;
  --soft-2: #f2dfdd;
  --rose: #b8758c;
  --rose-dark: #8f5268;
  --wine: #5e3148;
  --sage: #717b5b;
  --sage-dark: #4d573f;
  --sand: #f5efe6;
  --ink: #342633;
  --muted: #766575;
  --white: #ffffff;
  --line: rgba(94, 49, 72, .12);
  --shadow: 0 28px 90px rgba(94, 49, 72, .14);
  --shadow-soft: 0 18px 52px rgba(94, 49, 72, .10);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 2%, rgba(184, 117, 140, .10), transparent 28rem),
    radial-gradient(circle at 90% 10%, rgba(113, 123, 91, .10), transparent 26rem),
    var(--bg);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 999;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--wine);
  transition: transform .25s ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 70;
  padding: 18px 0;
  transition: padding .25s ease, background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(255, 250, 247, .82);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 46px rgba(94, 49, 72, .08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 170px;
}

.brand img {
  width: 205px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 700;
}

.main-nav a:not(.nav-cta) {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.main-nav a:not(.nav-cta):hover,
.main-nav a:not(.nav-cta):focus-visible {
  color: var(--wine);
  background: rgba(248, 235, 232, .9);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-dark), var(--wine));
  box-shadow: 0 16px 34px rgba(143, 82, 104, .25);
  transition: transform .2s ease, box-shadow .2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(143, 82, 104, .32);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(248, 235, 232, .95);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 8px;
  background: var(--wine);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255,250,247,.96), rgba(248,235,232,.88)),
    radial-gradient(circle at 78% 25%, rgba(184,117,140,.16), transparent 34rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 88px 22px 24px;
  border: 1px solid rgba(94, 49, 72, .08);
  border-radius: 44px;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
  opacity: .68;
}

.orb-one {
  width: 360px;
  height: 360px;
  right: -120px;
  top: 155px;
  background: rgba(184, 117, 140, .16);
}

.orb-two {
  width: 210px;
  height: 210px;
  left: -74px;
  bottom: 120px;
  background: rgba(113, 123, 91, .14);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .86fr);
  align-items: center;
  gap: 66px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage-dark);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -.045em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.85rem, 6.7vw, 5.65rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.05rem, 4.2vw, 3.65rem);
}

h3 {
  margin-bottom: 12px;
  color: var(--wine);
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.36) 45%, transparent 75%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}

.btn:hover::before,
.btn:focus-visible::before { transform: translateX(120%); }

.btn:hover,
.btn:focus-visible { transform: translateY(-3px); }

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-dark), var(--wine));
  box-shadow: 0 18px 42px rgba(143, 82, 104, .28);
}

.btn-primary:hover,
.btn-primary:focus-visible { box-shadow: 0 24px 52px rgba(143, 82, 104, .34); }

.btn-soft {
  color: var(--wine);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(94, 49, 72, .08);
}

.btn-light {
  color: var(--wine);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(94, 49, 72, .18);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--wine);
  background: rgba(255,255,255,.62);
  border: 1px solid var(--line);
  font-size: .88rem;
  font-weight: 800;
}

.hero-notes span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}

.hero-portrait {
  position: relative;
  min-height: 620px;
}

.portrait-frame {
  position: absolute;
  inset: 24px 20px 24px 68px;
  overflow: hidden;
  border-radius: 46% 46% 36px 36px;
  box-shadow: var(--shadow);
  background: var(--soft);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.56);
  border-radius: inherit;
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
}

.care-card {
  position: absolute;
  z-index: 3;
  max-width: 260px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.68);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.care-card small {
  display: block;
  margin-bottom: 6px;
  color: var(--sage-dark);
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: .68rem;
}

.care-card strong {
  display: block;
  color: var(--wine);
  line-height: 1.35;
}

.card-top { left: 0; top: 60px; }
.card-bottom { right: 0; bottom: 62px; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 30px;
  height: 48px;
  border: 1px solid rgba(94, 49, 72, .22);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.scroll-cue span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-dark);
  animation: cue 1.6s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% { transform: translateY(0); opacity: .4; }
  50% { transform: translateY(18px); opacity: 1; }
}

.section {
  position: relative;
  padding: 104px 0;
}

.welcome-strip {
  padding: 82px 0;
  background: var(--paper);
}

.welcome-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .7fr);
  gap: 38px;
  align-items: stretch;
}

.welcome-text,
.welcome-card {
  border-radius: var(--radius-xl);
}

.welcome-text {
  padding: 46px;
  background: linear-gradient(135deg, var(--soft), rgba(245,239,230,.74));
  border: 1px solid var(--line);
}

.welcome-text h2 { margin-bottom: 0; }

.welcome-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 40px;
  color: var(--wine);
  background:
    linear-gradient(135deg, rgba(255,255,255,.84), rgba(255,250,247,.72)),
    radial-gradient(circle at 92% 12%, rgba(113,123,91,.16), transparent 16rem);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.welcome-illustration {
  display: flex;
  align-items: center;
  gap: 16px;
}

.welcome-icon-wrap {
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(182,112,134,.10), rgba(113,123,91,.16));
  border: 1px solid rgba(124, 80, 99, .12);
  box-shadow: 0 14px 32px rgba(91, 44, 67, .10);
}

.welcome-icon-wrap svg {
  width: 52px;
  height: 52px;
}

.welcome-illustration span {
  max-width: 210px;
  font-size: .96rem;
  line-height: 1.5;
  color: var(--muted);
}

.welcome-card p {
  margin: 0;
  font-size: 1.08rem;
}


.section-heading {
  max-width: 720px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.support-section {
  background:
    linear-gradient(180deg, rgba(255,250,247,0), rgba(248,235,232,.46)),
    var(--bg);
}

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

.support-card {
  position: relative;
  min-height: 290px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(94, 49, 72, .07);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.support-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -72px;
  top: -72px;
  border-radius: 50%;
  background: rgba(184,117,140,.10);
  transition: transform .25s ease;
}

.support-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 66px rgba(94, 49, 72, .12);
  border-color: rgba(143,82,104,.22);
}

.support-card:hover::after { transform: scale(1.25); }

.support-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 16px;
  color: var(--wine);
  background: var(--soft);
  font-size: 1.4rem;
}

.support-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.about-section {
  background: var(--paper);
}

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

.about-visual {
  position: relative;
}

.about-photo {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.62);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 12%;
}

.about-seal {
  position: absolute;
  right: -24px;
  bottom: 34px;
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-dark), var(--wine));
  box-shadow: 0 18px 42px rgba(94,49,72,.24);
  transform: rotate(-6deg);
}

.about-seal span,
.about-seal strong { display: block; }
.about-seal span { font-size: .78rem; font-weight: 900; letter-spacing: .16em; }
.about-seal strong { font-size: 1.1rem; }

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

.mission-box {
  position: relative;
  margin-top: 28px;
  padding: 24px 26px 24px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(248,235,232,.84), rgba(245,239,230,.74));
  border: 1px solid var(--line);
}

.mission-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 5px;
  border-radius: 999px;
  background: var(--rose-dark);
}

.mission-box span {
  display: block;
  margin-bottom: 7px;
  color: var(--wine);
  font-weight: 900;
}

.mission-box p { margin: 0; }

.journey-section {
  background:
    radial-gradient(circle at 3% 22%, rgba(113,123,91,.10), transparent 25rem),
    radial-gradient(circle at 98% 78%, rgba(184,117,140,.12), transparent 25rem),
    var(--bg);
}

.journey-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.journey-line::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143,82,104,.26), transparent);
}

.journey-card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.journey-card span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-dark), var(--wine));
  font-weight: 900;
}

.journey-card p { margin-bottom: 0; color: var(--muted); }

.tcc-section {
  padding-top: 70px;
  background: var(--bg);
}

.tcc-panel {
  display: grid;
  grid-template-columns: 170px minmax(0, .9fr) minmax(280px, .86fr);
  gap: 34px;
  align-items: center;
  padding: 38px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 84% 8%, rgba(255,255,255,.16), transparent 19rem),
    linear-gradient(135deg, var(--wine), var(--rose-dark));
  box-shadow: var(--shadow);
}

.tcc-panel h2,
.tcc-panel .eyebrow,
.tcc-panel p { color: var(--white); }
.tcc-panel h2 { margin-bottom: 0; font-size: clamp(1.8rem, 3.6vw, 3rem); }
.tcc-panel p { margin-bottom: 0; opacity: .9; }

.tcc-logo {
  display: grid;
  place-items: center;
  min-height: 140px;
  padding: 20px;
  border-radius: 28px;
  background: rgba(255,255,255,.88);
}


.testimonials-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(184,117,140,.13), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(113,123,91,.13), transparent 22rem),
    linear-gradient(180deg, rgba(255,250,247,1), rgba(248,235,232,.52));
}

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 42px auto auto 50%;
  width: min(620px, 86vw);
  height: min(620px, 86vw);
  border-radius: 48% 52% 44% 56%;
  background: rgba(255,255,255,.36);
  border: 1px solid rgba(94,49,72,.07);
  transform: translateX(-50%) rotate(-8deg);
  pointer-events: none;
}

.testimonials-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.testimonial-card {
  --rotate: -1.5deg;
  --hover-rotate: 1deg;
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 34px 30px 28px;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,250,247,.78)),
    radial-gradient(circle at 84% 10%, rgba(184,117,140,.16), transparent 14rem);
  border: 1px solid rgba(94,49,72,.10);
  box-shadow: 0 22px 54px rgba(94,49,72,.09);
  overflow: hidden;
  transform: rotate(var(--rotate));
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease, border-color .28s ease;
}

.testimonial-card:nth-child(2) {
  --rotate: 1.2deg;
  --hover-rotate: -1deg;
  margin-top: 24px;
}

.testimonial-card:nth-child(3) {
  --rotate: -0.8deg;
  --hover-rotate: 1.3deg;
  margin-top: 8px;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  right: 22px;
  top: 4px;
  color: rgba(143,82,104,.12);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 8.5rem;
  line-height: 1;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  inset: -30% auto auto -45%;
  width: 70%;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  transform: rotate(18deg) translateX(-120%);
  transition: transform .62s ease;
}

.testimonial-card:hover,
.testimonial-card:focus-within {
  transform: translateY(-12px) rotate(var(--hover-rotate));
  box-shadow: 0 34px 76px rgba(94,49,72,.15);
  border-color: rgba(143,82,104,.24);
}

.testimonial-card:hover::after,
.testimonial-card:focus-within::after {
  transform: rotate(18deg) translateX(260%);
}

.testimonial-sticker {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--wine);
  background: var(--soft);
  border: 1px solid rgba(94,49,72,.08);
  box-shadow: 0 12px 28px rgba(94,49,72,.08);
  font-size: 1.35rem;
  transition: transform .28s ease;
}

.testimonial-card:hover .testimonial-sticker {
  transform: rotate(-8deg) scale(1.06);
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--wine);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  line-height: 1.45;
  letter-spacing: -.035em;
}

.testimonial-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px dashed rgba(94,49,72,.18);
}

.testimonial-footer strong {
  color: var(--sage-dark);
  font-size: .95rem;
}

.testimonial-footer span {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(248,235,232,.72);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.testimonial-note {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 42px auto 0;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px 30px;
  border-radius: 28px;
  background: rgba(255,255,255,.70);
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(94,49,72,.07);
}

.testimonial-note span {
  color: var(--rose-dark);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 3.4rem;
  line-height: .8;
}

.testimonial-note p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(290px, .72fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-intro p:not(.eyebrow) { color: var(--muted); }
.faq-intro .btn { margin-top: 12px; }

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

.faq-item {
  border-radius: 22px;
  background: rgba(255,250,247,.94);
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(94, 49, 72, .06);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 22px 62px 22px 24px;
  color: var(--wine);
  font-weight: 900;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--wine);
  font-size: 1.25rem;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.final-cta {
  padding: 92px 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(255,255,255,.14), transparent 18rem),
    linear-gradient(135deg, var(--rose-dark), var(--wine));
}

.final-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
}

.final-card h2,
.final-card .eyebrow,
.final-card p { color: var(--white); }
.final-card h2 { margin-bottom: 12px; }
.final-card p { max-width: 660px; margin-bottom: 0; opacity: .9; }
.final-card .btn { flex: 0 0 auto; }

.site-footer {
  padding: 34px 0;
  background: #2d2130;
  color: rgba(255,255,255,.82);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-footer strong { color: var(--white); }
.site-footer p { margin: 4px 0; }
.site-footer small { color: rgba(255,255,255,.62); }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-bubble {
  max-width: 270px;
  padding: 12px 15px;
  border-radius: 18px 18px 4px 18px;
  color: var(--wine);
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  font-size: .9rem;
  font-weight: 800;
  opacity: 1;
  transform: translateX(0);
  transition: opacity .22s ease, transform .22s ease;
}

.whatsapp-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 18px 42px rgba(37,211,102,.34);
  transition: transform .22s ease, box-shadow .22s ease;
}

.whatsapp-icon svg {
  width: 31px;
  height: 31px;
  fill: var(--white);
}

.whatsapp-float:hover .whatsapp-icon,
.whatsapp-float:focus-visible .whatsapp-icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 24px 52px rgba(37,211,102,.42);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .faq-grid,
  .welcome-grid,
  .tcc-panel {
    grid-template-columns: 1fr;
  }

  .hero-portrait {
    min-height: 610px;
    max-width: 560px;
    width: 100%;
    margin-inline: auto;
  }

  .portrait-frame { inset: 24px 38px; }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-line { grid-template-columns: 1fr; }
  .journey-line::before { display: none; }
  .tcc-panel { text-align: left; }
  .tcc-logo { width: min(230px, 100%); }
  .faq-intro { position: static; }
}

@media (max-width: 840px) {
  .site-header { padding: 12px 0; }
  .brand img { width: 176px; }
  .menu-toggle { display: flex; }

  .main-nav {
    position: fixed;
    inset: 78px 18px auto 18px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 26px;
    background: rgba(255,250,247,.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a,
  .nav-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero {
    padding: 124px 0 76px;
    min-height: auto;
  }

  .hero::before { display: none; }
  .section { padding: 76px 0; }
  h1 { font-size: clamp(2.55rem, 12vw, 4.5rem); }

  .hero-portrait { min-height: 560px; }
  .card-top { left: 6px; top: 24px; }
  .card-bottom { right: 4px; bottom: 30px; }

  .welcome-text,
  .welcome-card,
  .final-card,
  .tcc-panel {
    padding: 28px;
  }

  .welcome-illustration {
    align-items: flex-start;
  }

  .welcome-illustration span {
    max-width: none;
  }

  .final-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .hero-actions { align-items: stretch; }
  .welcome-illustration { flex-direction: column; }
  .welcome-icon-wrap { width: 72px; height: 72px; flex-basis: 72px; }
  .btn { width: 100%; }
  .hero-notes span { flex: 1 1 calc(50% - 10px); justify-content: center; }
  .hero-portrait { min-height: 510px; }
  .portrait-frame { inset: 26px 14px; border-radius: 42% 42% 28px 28px; }
  .care-card { max-width: 218px; padding: 14px 15px; font-size: .88rem; }
  .support-grid { grid-template-columns: 1fr; }
  .support-card { min-height: auto; }
  .about-grid { gap: 44px; }
  .about-seal { right: 8px; bottom: -30px; width: 112px; height: 112px; }
  .about-copy { padding-top: 16px; }
  .faq-item summary { padding-right: 56px; }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
  }

  .whatsapp-bubble {
    display: none;
  }

  .whatsapp-icon {
    width: 56px;
    height: 56px;
  }
}

/* Ajustes solicitados: banner sem foto, menu mais estável e visual mais acolhedor */
.site-header {
  padding: 12px 0;
}

.site-header.is-scrolled {
  padding: 9px 0;
}

.nav-wrapper {
  min-height: 74px;
  padding: 10px 14px 10px 18px;
  border-radius: 999px;
  background: rgba(255, 250, 247, .84);
  border: 1px solid rgba(94, 49, 72, .08);
  box-shadow: 0 18px 58px rgba(94, 49, 72, .08);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 152px;
  flex: 0 0 auto;
  overflow: visible;
}

.brand img {
  width: 174px;
  max-height: 54px;
  object-fit: contain;
}

.main-nav {
  flex-wrap: nowrap;
  white-space: nowrap;
}

.main-nav a:not(.nav-cta) {
  padding-inline: 12px;
}

.hero {
  padding: 168px 0 102px;
  background:
    radial-gradient(circle at 15% 18%, rgba(184,117,140,.13), transparent 28rem),
    radial-gradient(circle at 88% 20%, rgba(113,123,91,.16), transparent 24rem),
    linear-gradient(135deg, #fffaf7 0%, #f8ebe8 54%, #f5efe6 100%);
}

.hero::before {
  display: none;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .82fr);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy::before {
  content: "";
  position: absolute;
  width: 84px;
  height: 84px;
  left: -38px;
  top: -34px;
  border-radius: 32px 32px 32px 8px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(94,49,72,.08);
  z-index: -1;
  transform: rotate(-10deg);
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(2.75rem, 6.25vw, 5.4rem);
}

.hero-text {
  max-width: 690px;
}

.hero-care-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.care-orbit {
  position: absolute;
  inset: 24px 4px 10px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255,255,255,.92), transparent 10rem),
    radial-gradient(circle at 78% 80%, rgba(184,117,140,.16), transparent 14rem),
    rgba(255,255,255,.30);
  border: 1px solid rgba(94,49,72,.09);
  box-shadow: 0 28px 80px rgba(94,49,72,.10);
  overflow: hidden;
}

.care-orbit::before,
.care-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(143,82,104,.14);
}

.care-orbit::before {
  width: 340px;
  height: 340px;
  right: -92px;
  top: -74px;
}

.care-orbit::after {
  width: 260px;
  height: 260px;
  left: -84px;
  bottom: -88px;
}

.care-orbit span {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(94,49,72,.08);
}

.care-orbit span:nth-child(1) {
  width: 82px;
  height: 82px;
  top: 56px;
  left: 54px;
}

.care-orbit span:nth-child(2) {
  width: 26px;
  height: 26px;
  right: 64px;
  top: 190px;
  background: rgba(113,123,91,.17);
}

.care-orbit span:nth-child(3) {
  width: 46px;
  height: 46px;
  left: 92px;
  bottom: 82px;
  background: rgba(184,117,140,.13);
}

.care-window {
  position: relative;
  z-index: 2;
  width: min(430px, 100% - 42px);
  border-radius: 34px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.care-window-top {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 18px 20px;
  background: rgba(248,235,232,.70);
  border-bottom: 1px solid rgba(94,49,72,.08);
}

.care-window-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(143,82,104,.42);
}

.care-window-top span:nth-child(2) { background: rgba(113,123,91,.38); }
.care-window-top span:nth-child(3) { background: rgba(94,49,72,.22); }

.care-window-body {
  padding: 34px 34px 36px;
}

.care-window-logo {
  width: min(260px, 92%);
  margin-bottom: 28px;
}

.care-phrase {
  margin-bottom: 26px;
  color: var(--wine);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.35;
  letter-spacing: -.035em;
}

.care-tags {
  display: grid;
  gap: 10px;
}

.care-tags span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--muted);
  background: rgba(255,250,247,.82);
  border: 1px solid rgba(94,49,72,.08);
  font-weight: 750;
}

.care-tags span::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--sage);
}

.floating-note {
  position: absolute;
  z-index: 3;
  max-width: 205px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(255,255,255,.70);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.floating-note small {
  display: block;
  margin-bottom: 4px;
  color: var(--sage-dark);
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: .66rem;
}

.floating-note strong {
  display: block;
  color: var(--wine);
  line-height: 1.25;
}

.note-one {
  left: 0;
  top: 78px;
  transform: rotate(-4deg);
}

.note-two {
  right: 0;
  bottom: 86px;
  transform: rotate(4deg);
}

@media (max-width: 1120px) {
  .menu-toggle { display: flex; }

  .main-nav {
    position: fixed;
    inset: 92px 24px auto 24px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 26px;
    background: rgba(255,250,247,.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    white-space: normal;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a,
  .nav-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 1080px) {
  .hero-care-visual {
    min-height: 520px;
    max-width: 620px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 840px) {
  .nav-wrapper {
    min-height: 66px;
    padding: 8px 10px 8px 14px;
  }

  .brand img {
    width: 154px;
    max-height: 48px;
  }

  .main-nav {
    inset: 82px 18px auto 18px;
  }

  .hero {
    padding-top: 126px;
  }
}

@media (max-width: 640px) {
  .hero-care-visual {
    min-height: 500px;
  }

  .care-orbit {
    inset: 16px 0;
    border-radius: 30px;
  }

  .care-window {
    width: min(100%, 390px);
    border-radius: 28px;
  }

  .care-window-body {
    padding: 28px 24px 30px;
  }

  .care-window-logo {
    width: min(230px, 90%);
  }

  .floating-note {
    max-width: 170px;
    padding: 13px 14px;
    font-size: .88rem;
  }

  .note-one {
    left: 6px;
    top: 30px;
  }

  .note-two {
    right: 6px;
    bottom: 42px;
  }
}

/* Depoimentos: ajustes responsivos */
@media (max-width: 1080px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-inline: auto;
  }

  .testimonial-card,
  .testimonial-card:nth-child(2),
  .testimonial-card:nth-child(3) {
    margin-top: 0;
    transform: none;
  }

  .testimonial-card:hover,
  .testimonial-card:focus-within {
    transform: translateY(-8px);
  }
}

@media (max-width: 640px) {
  .testimonial-card {
    min-height: auto;
    padding: 28px 24px 24px;
    border-radius: 28px;
  }

  .testimonial-card::before {
    font-size: 6.6rem;
  }

  .testimonial-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .testimonial-note {
    padding: 22px 22px;
    border-radius: 24px;
  }
}

/* Ajustes finais para dispositivos móveis: banner, menu e cards */
@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header {
    padding: 8px 0;
  }

  .site-header.is-scrolled {
    padding: 6px 0;
  }

  .nav-wrapper {
    min-height: 60px;
    padding: 8px 10px 8px 12px;
    border-radius: 24px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 58px);
  }

  .brand img {
    width: clamp(136px, 42vw, 158px);
    max-height: 44px;
    display: block;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .main-nav {
    inset: 72px 14px auto 14px;
    max-height: calc(100svh - 90px);
    overflow-y: auto;
    padding: 14px;
    border-radius: 22px;
  }

  .main-nav a,
  .nav-cta {
    min-height: 46px;
    padding: 12px 14px;
  }

  .hero {
    min-height: auto;
    padding: 108px 0 58px;
    overflow: hidden;
    text-align: left;
  }

  .hero-grid {
    display: block;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy::before {
    width: 58px;
    height: 58px;
    left: auto;
    right: 8px;
    top: -30px;
    border-radius: 22px 22px 22px 7px;
    opacity: .62;
  }

  .hero .eyebrow {
    max-width: 92%;
    margin-bottom: 12px;
    font-size: .68rem;
    letter-spacing: .09em;
    line-height: 1.55;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 10.2vw, 2.78rem);
    line-height: 1.11;
    letter-spacing: -.038em;
  }

  .hero-text {
    max-width: 100%;
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.72;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 20px;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding: 14px 18px;
    white-space: normal;
    line-height: 1.25;
  }

  .hero-notes {
    gap: 8px;
  }

  .hero-notes span {
    flex: 1 1 100%;
    justify-content: flex-start;
    padding: 9px 12px;
    font-size: .82rem;
    line-height: 1.25;
  }

  .hero-care-visual {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 12px;
    min-height: auto;
    width: 100%;
    max-width: 100%;
    margin-top: 32px;
  }

  .care-orbit {
    display: none;
  }

  .care-window {
    flex: 1 0 100%;
    width: 100%;
    max-width: 100%;
    border-radius: 28px;
    box-shadow: 0 18px 46px rgba(94,49,72,.12);
  }

  .care-window-top {
    padding: 14px 16px;
  }

  .care-window-body {
    padding: 24px 20px 22px;
  }

  .care-window-logo {
    width: min(205px, 82%);
    margin-bottom: 18px;
  }

  .care-phrase {
    margin-bottom: 18px;
    font-size: clamp(1.13rem, 5.5vw, 1.38rem);
    line-height: 1.38;
    letter-spacing: -.025em;
  }

  .care-tags {
    gap: 8px;
  }

  .care-tags span {
    align-items: flex-start;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: .86rem;
    line-height: 1.35;
  }

  .floating-note,
  .note-one,
  .note-two {
    position: static;
    transform: none !important;
  }

  .floating-note {
    flex: 1 1 calc(50% - 6px);
    max-width: none;
    min-width: 0;
    padding: 13px 14px;
    border-radius: 18px;
    font-size: .86rem;
  }

  .floating-note small {
    font-size: .6rem;
  }

  .floating-note strong {
    font-size: .92rem;
  }

  .scroll-cue {
    display: none;
  }

  .welcome-grid,
  .about-grid,
  .faq-grid,
  .tcc-panel {
    gap: 24px;
  }

  .welcome-text,
  .welcome-card,
  .final-card,
  .tcc-panel,
  .testimonial-note {
    padding: 24px;
    border-radius: 26px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading p:not(.eyebrow) {
    font-size: .98rem;
  }
}

@media (min-width: 421px) and (max-width: 760px) {
  .hero-notes span {
    flex-basis: calc(50% - 8px);
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 26px, var(--container));
  }

  .hero {
    padding-top: 102px;
    padding-bottom: 52px;
  }

  .hero h1 {
    font-size: clamp(1.92rem, 10vw, 2.38rem);
  }

  .care-window-body {
    padding: 22px 18px 20px;
  }

  .floating-note {
    flex-basis: 100%;
  }

  .support-card,
  .testimonial-card,
  .journey-step,
  .faq-item,
  .about-card {
    border-radius: 24px;
  }
}


.site-footer a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: opacity .2s ease, border-color .2s ease;
}

.site-footer a:hover {
  opacity: .78;
  border-color: transparent;
}

.footer-grid-single {
  justify-content: center;
  text-align: center;
}
