/* Doce Encanto Confeitaria - premium mobile landing */

:root {
  --white: #ffffff;
  --rose: #f8d7e6;
  --nude: #f2e6dd;
  --gold: #d4b06a;
  --gold-deep: #b8924f;
  --chocolate: #4a2e24;
  --chocolate-soft: rgba(74, 46, 36, 0.72);
  --border-gold: rgba(212, 176, 106, 0.45);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Nunito", system-ui, sans-serif;
  --radius: 22px;
  --radius-pill: 999px;
  --shadow-soft: 0 20px 50px rgba(74, 46, 36, 0.12), 0 0 0 1px rgba(212, 176, 106, 0.12);
  --shadow-hover: 0 28px 60px rgba(74, 46, 36, 0.16), 0 0 0 1px rgba(212, 176, 106, 0.22);
  --ease: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  --tap: 52px;
  --tap-hero: 60px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

  .card {
    content-visibility: visible;
  }

  .hero__eyebrow {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--chocolate);
  background: linear-gradient(180deg, var(--nude) 0%, var(--white) 28%, #fefcfd 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  decoding: async;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 1rem 1.25rem;
  background: var(--chocolate);
  color: var(--white);
  font-weight: 700;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: max(clamp(1.35rem, 5vw, 2.5rem), env(safe-area-inset-top))
    max(clamp(1.15rem, 4vw, 2rem), env(safe-area-inset-right))
    max(clamp(2rem, 7vw, 3.75rem), env(safe-area-inset-bottom))
    max(clamp(1.15rem, 4vw, 2rem), env(safe-area-inset-left));
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.03);
  animation: heroZoom 12s ease-out both;
}

@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg img {
    animation: none;
    transform: none;
  }
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      185deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(248, 215, 230, 0.28) 32%,
      rgba(242, 230, 221, 0.72) 72%,
      rgba(255, 252, 250, 0.88) 100%
    ),
    radial-gradient(ellipse 100% 58% at 50% 100%, rgba(248, 215, 230, 0.55) 0%, transparent 58%);
  pointer-events: none;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 100px rgba(74, 46, 36, 0.06), inset 0 -40px 90px rgba(242, 230, 221, 0.35);
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 26rem;
  margin: 0 auto;
  text-align: center;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #2a1814;
  margin: 0 0 1.1rem;
  max-width: 96%;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 253, 251, 0.94);
  border: 1px solid rgba(212, 176, 106, 0.55);
  box-shadow: 0 6px 28px rgba(74, 46, 36, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.85) inset,
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
  animation: fadeUp 0.9s var(--ease) both;
}

.hero__logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(1.1rem, 3.5vw, 1.85rem);
  animation: fadeUp 0.9s 0.06s var(--ease) both;
}

.hero__logo {
  position: relative;
  width: clamp(88px, 22vw, 112px);
  height: clamp(88px, 22vw, 112px);
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(145deg, #f5e6c8 0%, var(--gold) 45%, var(--gold-deep) 100%);
  box-shadow: 0 12px 36px rgba(74, 46, 36, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.hero__logo-ring {
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  border: 1px solid rgba(212, 176, 106, 0.5);
  pointer-events: none;
}

.hero__logo-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(165deg, #fffefb 0%, var(--rose) 120%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(248, 215, 230, 0.8);
}

.hero__monogram {
  width: 72%;
  height: auto;
  color: var(--chocolate);
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.35rem, 9vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--chocolate);
  margin: 0 0 0.55rem;
  text-shadow: 0 1px 20px rgba(255, 255, 255, 0.55), 0 2px 12px rgba(242, 230, 221, 0.8);
  animation: fadeUp 0.9s 0.12s var(--ease) both;
}

.hero__sub {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 3.8vw, 1.45rem);
  font-weight: 500;
  font-style: italic;
  color: var(--chocolate-soft);
  margin: 0 0 0.9rem;
  line-height: 1.35;
  animation: fadeUp 0.9s 0.18s var(--ease) both;
}

.hero__tag {
  font-size: clamp(0.92rem, 2.8vw, 1.05rem);
  font-weight: 400;
  color: rgba(74, 46, 36, 0.78);
  max-width: 22rem;
  margin: 0 auto 1.85rem;
  line-height: 1.6;
  animation: fadeUp 0.9s 0.24s var(--ease) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap);
  padding: 0.95rem 1.65rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), filter var(--ease);
}

.btn--hero:not(.btn--final) {
  min-height: var(--tap-hero);
  padding: 1.1rem 1.9rem;
  font-size: 0.79rem;
  letter-spacing: 0.19em;
}

.btn--hero {
  position: relative;
  width: 100%;
  max-width: 24.15rem;
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: linear-gradient(168deg, var(--gold) 0%, var(--gold-deep) 55%, #8f6b38 100%);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 36px rgba(212, 176, 106, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation: fadeUp 0.9s 0.3s var(--ease) both;
}

.btn--hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 45%,
    rgba(255, 255, 255, 0.1) 52%,
    transparent 100%
  );
  transform: translateX(-120%) skewX(-12deg);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 0;
}

.btn--hero:hover::before {
  transform: translateX(120%) skewX(-12deg);
}

.btn--hero span {
  position: relative;
  z-index: 1;
}

.btn--hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(212, 176, 106, 0.48);
  filter: brightness(1.03);
}

.btn--card {
  min-height: 48px;
  padding: 0.78rem 1.55rem;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 252, 250, 0.98) 100%);
  color: #2a1814;
  border-color: rgba(212, 176, 106, 0.65);
  box-shadow: 0 8px 26px rgba(74, 46, 36, 0.14), 0 0 0 1px rgba(255, 255, 255, 0.9) inset,
    0 2px 0 rgba(212, 176, 106, 0.25);
  position: relative;
  overflow: hidden;
}

.btn--card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 40%,
    rgba(212, 176, 106, 0.2) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.65s ease;
  pointer-events: none;
}

.btn--card:hover::after {
  transform: translateX(100%);
}

.btn--card:hover {
  border-color: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(74, 46, 36, 0.18), 0 0 0 1px rgba(255, 255, 255, 1) inset,
    0 2px 0 rgba(212, 176, 106, 0.4);
}

.btn.btn--hero.btn--final {
  background: linear-gradient(168deg, var(--chocolate) 0%, #3d261e 100%);
  color: var(--white);
  border-color: rgba(212, 176, 106, 0.45);
  box-shadow: 0 12px 40px rgba(74, 46, 36, 0.25);
  padding: 1.05rem 1.85rem;
  max-width: 22rem;
}

.btn.btn--hero.btn--final:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(74, 46, 36, 0.32);
  filter: brightness(1.05);
}

/* --- Main --- */
.main {
  flex: 1;
  padding: max(clamp(2rem, 6vw, 3.5rem), env(safe-area-inset-top))
    max(clamp(1.15rem, 4vw, 1.75rem), env(safe-area-inset-right))
    max(clamp(2.5rem, 7vw, 4.5rem), env(safe-area-inset-bottom))
    max(clamp(1.15rem, 4vw, 1.75rem), env(safe-area-inset-left));
  position: relative;
}

.main__intro {
  text-align: center;
  max-width: 26rem;
  margin: 0 auto 2.25rem;
}

.section-label {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 0.75rem;
}

.section-lead {
  font-size: clamp(0.95rem, 2.6vw, 1.05rem);
  font-weight: 400;
  color: rgba(74, 46, 36, 0.65);
  margin: 0;
  line-height: 1.65;
}

/* --- Trust --- */
.trust {
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.trust__grid {
  list-style: none;
  margin: 0;
  padding: clamp(1.15rem, 3.5vw, 1.55rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 0.85rem;
  background: var(--white);
  border: 1px solid rgba(248, 215, 230, 0.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.trust__item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.5rem 0.25rem;
}

.trust__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background: var(--gold);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.trust__icon--plus {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M11 5h2v6h6v2h-6v6h-2v-6H5v-2h6z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M11 5h2v6h6v2h-6v6h-2v-6H5v-2h6z'/%3E%3C/svg%3E");
}

.trust__icon--star {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
}

.trust__icon--cake {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4 19h16v2H4v-2zm2-3h12v2H6v-2zm2-3h8v2H8v-2zm1-8h6l1 4H7l1-4zm2 0h2l-.5 2h-1l-.5-2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4 19h16v2H4v-2zm2-3h12v2H6v-2zm2-3h8v2H8v-2zm1-8h6l1 4H7l1-4zm2 0h2l-.5 2h-1l-.5-2z'/%3E%3C/svg%3E");
}

.trust__icon--pin {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1112 6a2.5 2.5 0 010 5.5z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1112 6a2.5 2.5 0 010 5.5z'/%3E%3C/svg%3E");
}

.trust__copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.trust__headline {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--chocolate);
  line-height: 1.2;
}

.trust__text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(74, 46, 36, 0.5);
}

/* Reveal */
.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease), box-shadow var(--ease),
    border-color var(--ease);
}

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

.trust__item.reveal-item.is-visible:nth-child(1) {
  transition-delay: 0.03s;
}
.trust__item.reveal-item.is-visible:nth-child(2) {
  transition-delay: 0.08s;
}
.trust__item.reveal-item.is-visible:nth-child(3) {
  transition-delay: 0.13s;
}
.trust__item.reveal-item.is-visible:nth-child(4) {
  transition-delay: 0.18s;
}

.card.reveal-item.is-visible:nth-child(1) {
  transition-delay: 0.04s;
}
.card.reveal-item.is-visible:nth-child(2) {
  transition-delay: 0.1s;
}
.card.reveal-item.is-visible:nth-child(3) {
  transition-delay: 0.16s;
}
.card.reveal-item.is-visible:nth-child(4) {
  transition-delay: 0.22s;
}
.card.reveal-item.is-visible:nth-child(5) {
  transition-delay: 0.28s;
}

.final-cta.reveal-item.is-visible {
  transition-delay: 0.06s;
}

.cards {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3.5vw, 1.75rem);
}

.card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: clamp(210px, 46vw, 270px);
  border: 1px solid rgba(248, 215, 230, 0.9);
  box-shadow: var(--shadow-soft);
  background: var(--white);
  content-visibility: auto;
  contain-intrinsic-size: auto 240px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.45s ease;
}

.card__frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(212, 176, 106, 0.2), inset 0 0 40px rgba(255, 255, 255, 0.15);
  transition: box-shadow 0.5s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 64px rgba(74, 46, 36, 0.14), 0 0 0 1px rgba(212, 176, 106, 0.35),
      0 0 48px rgba(212, 176, 106, 0.12);
    border-color: rgba(212, 176, 106, 0.75);
  }

  .card:hover .card__frame {
    box-shadow: inset 0 0 0 1.5px rgba(212, 176, 106, 0.45), inset 0 0 56px rgba(212, 176, 106, 0.08),
      inset 0 -20px 40px rgba(74, 46, 36, 0.12);
  }

  .card:hover .card__accent {
    width: 56px;
    box-shadow: 0 0 12px rgba(212, 176, 106, 0.35);
  }

  .card:hover .card__title {
    text-shadow: 0 3px 28px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.35), 0 0 32px rgba(212, 176, 106, 0.12);
  }
}

@media (hover: none) {
  .card:active {
    transform: scale(0.992);
    transition-duration: 0.12s;
  }
}

.card__media {
  position: absolute;
  inset: 0;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.95s var(--ease);
}

.card:hover .card__media img {
  transform: scale(1.052);
}

.card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    115deg,
    rgba(74, 46, 36, 0.62) 0%,
    rgba(74, 46, 36, 0.38) 45%,
    rgba(74, 46, 36, 0.22) 100%
  );
  transition: background 0.5s ease;
}

.card:hover .card__overlay {
  background: linear-gradient(
    115deg,
    rgba(74, 46, 36, 0.72) 0%,
    rgba(74, 46, 36, 0.44) 52%,
    rgba(74, 46, 36, 0.28) 100%
  );
}

.card__body {
  position: relative;
  z-index: 2;
  isolation: isolate;
  min-height: inherit;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.35rem, 4vw, 2rem);
  gap: 0.55rem;
}

.card__body::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(75%, 15.5rem);
  min-height: 9.5rem;
  background: linear-gradient(
    180deg,
    rgba(35, 22, 18, 0) 0%,
    rgba(35, 22, 18, 0.42) 35%,
    rgba(28, 17, 14, 0.78) 72%,
    rgba(22, 13, 11, 0.88) 100%
  );
  pointer-events: none;
  z-index: 0;
  border-radius: 0 0 calc(var(--radius) - 1px) calc(var(--radius) - 1px);
}

.card__body > * {
  position: relative;
  z-index: 1;
}

.card__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.68rem, 5.2vw, 2.2rem);
  line-height: 1.1;
  margin: 0;
  color: #fffefb;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45), 0 1px 3px rgba(0, 0, 0, 0.35);
  transition: text-shadow 0.45s var(--ease);
}

.card__text {
  margin: 0;
  font-size: clamp(0.96rem, 2.65vw, 1.08rem);
  font-weight: 500;
  color: rgba(255, 254, 252, 0.97);
  max-width: 26rem;
  line-height: 1.58;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.25);
}

.card__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.card__accent {
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #fff5e6, transparent);
  border-radius: 2px;
  transition: width 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

/* Final CTA */
.final-cta {
  max-width: 680px;
  margin: 2.5rem auto 0;
  padding: clamp(1.75rem, 5vw, 2.5rem) clamp(1.25rem, 4vw, 2rem);
  text-align: center;
  background: linear-gradient(160deg, var(--rose) 0%, var(--nude) 55%, var(--white) 100%);
  border: 1px solid rgba(212, 176, 106, 0.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.final-cta__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.35rem, 4.2vw, 1.75rem);
  line-height: 1.32;
  color: var(--chocolate);
  margin: 0 auto 1.35rem;
  letter-spacing: 0.02em;
  font-style: italic;
  max-width: 22em;
}

.final-cta__title::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  margin: 1.1rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.75;
}

/* FAB */
.fab-wa {
  position: fixed;
  z-index: 9000;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1.1rem, env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 1.1rem;
  max-width: calc(100vw - 2rem);
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chocolate);
  background: linear-gradient(165deg, #fffefb 0%, var(--rose) 180%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 36px rgba(74, 46, 36, 0.14), 0 0 0 1px rgba(255, 255, 255, 0.9);
  transition: transform var(--ease), box-shadow var(--ease);
}

.fab-wa__glyph {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: var(--gold-deep);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
}

.fab-wa__text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fab-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(74, 46, 36, 0.18);
}

@media (max-width: 767px) {
  .fab-wa {
    display: inline-flex;
  }
}

/* Footer */
.footer {
  padding: 2rem 1.15rem max(2.25rem, calc(4.25rem + env(safe-area-inset-bottom)));
  text-align: center;
  background: transparent;
}

@media (min-width: 768px) {
  .footer {
    padding-bottom: 2.25rem;
  }
}

.footer__credit {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(74, 46, 36, 0.38);
  margin: 0;
}

.footer__credit a {
  color: var(--gold-deep);
  transition: color var(--ease);
}

.footer__credit a:hover {
  color: var(--chocolate);
}

@media (max-width: 767px) {
  .hero {
    padding: max(clamp(1rem, 4vw, 1.35rem), env(safe-area-inset-top))
      max(clamp(1rem, 3.5vw, 1.5rem), env(safe-area-inset-right))
      max(clamp(1.5rem, 5vw, 2.5rem), env(safe-area-inset-bottom))
      max(clamp(1rem, 3.5vw, 1.5rem), env(safe-area-inset-left));
  }

  .hero__eyebrow {
    margin-bottom: 0.85rem;
    letter-spacing: 0.18em;
    font-size: 0.88rem;
    padding: 0.48rem 0.95rem;
  }

  .hero__logo-wrap {
    margin-bottom: clamp(0.85rem, 3vw, 1.35rem);
  }

  .hero__sub {
    margin-bottom: 0.65rem;
  }

  .hero__tag {
    margin-bottom: 1.35rem;
  }

  .main {
    padding: max(clamp(1.35rem, 4vw, 2rem), env(safe-area-inset-top))
      max(clamp(1rem, 3.5vw, 1.35rem), env(safe-area-inset-right))
      max(clamp(1.75rem, 5vw, 3rem), env(safe-area-inset-bottom))
      max(clamp(1rem, 3.5vw, 1.35rem), env(safe-area-inset-left));
  }

  .main__intro {
    margin-bottom: 1.5rem;
  }

  .section-label {
    margin-bottom: 0.55rem;
  }

  .trust {
    margin-bottom: 1.65rem;
  }

  .trust__grid {
    padding: clamp(0.85rem, 2.8vw, 1.15rem);
    gap: 0.5rem 0.65rem;
  }

  .trust__item {
    padding: 0.35rem 0.15rem;
    gap: 0.5rem;
  }

  .cards {
    gap: clamp(0.95rem, 3vw, 1.25rem);
  }

  .card {
    min-height: clamp(195px, 44vw, 240px);
  }

  .card__body {
    padding: clamp(1.1rem, 3.5vw, 1.5rem);
    gap: 0.45rem;
  }

  .final-cta {
    margin-top: 1.65rem;
    padding: clamp(1.35rem, 4vw, 1.85rem) clamp(1rem, 3.5vw, 1.35rem);
  }

  .final-cta__title {
    margin-bottom: 1.1rem;
  }

  .final-cta__title::after {
    margin-top: 0.85rem;
  }

  .footer {
    padding-top: 1.5rem;
  }
}

@media (min-width: 768px) {
  .hero__content {
    max-width: 32rem;
  }

  .trust__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.45rem 1rem;
  }

  .trust__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .trust__icon {
    margin-top: 0;
  }

  .cards {
    max-width: 640px;
  }

  .card {
    min-height: 248px;
  }

  .final-cta {
    max-width: 640px;
  }
}
