:root {
  --terracotta: #B85C38;
  --terracotta-dark: #7A2E24;
  --terracotta-soft: #C98973;
  --green: #263D2A;
  --olive: #85836A;
  --cream: #FFF8F1;
  --paper: #FFFCF7;
  --sand: #E8D3C3;
  --text: #2D211D;
  --muted: #8A6F63;
  --shadow: 0 28px 80px rgba(73, 38, 25, .18);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

/* =========================================================
   INTRO — VÍDEO DE ABERTURA DO ENVELOPE
========================================================= */

.intro-video {
  position: fixed;
  inset: 0;
  z-index: 999;
  min-height: 100svh;
  width: 100%;
  display: grid;
  place-items: center;
  background: #2b150e;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition:
    opacity .85s var(--ease),
    visibility .85s var(--ease);
}

.intro-video.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-video__phone {
  position: relative;
  width: min(100vw, 430px);
  height: 100svh;
  overflow: hidden;
  background: #c66b43;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .25);
}

.intro-video__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #c66b43;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* ÁREA CLICÁVEL — ECRÃ TODO */

.open-video-touch {
  position: absolute;
  inset: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  display: block;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* TEXTO EM BAIXO */

.open-video-touch span {
  position: absolute;
  left: 50%;
  right: auto;
  top: auto;
  bottom: max(44px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 52px);
  margin: 0;
  padding: 0;
  display: block;
  text-align: center;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 236, 222, .92);
  text-shadow: 0 8px 18px rgba(73, 38, 25, .28);
  animation: tapPulse 1.8s ease-in-out infinite;
  pointer-events: none;
}

.intro-video.is-playing .open-video-touch {
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

/* FADE PARA ENTRAR NO SITE */

.intro-video__fade {
  position: absolute;
  inset: 0;
  z-index: 30;
  background: #fff8f1;
  opacity: 0;
  pointer-events: none;
  transition: opacity .72s var(--ease);
}

.intro-video.is-ending .intro-video__fade {
  opacity: 1;
}

/* ANIMAÇÃO DO TEXTO */

@keyframes tapPulse {
  0%, 100% {
    opacity: .55;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
  }
}

/* DESKTOP PREVIEW */

@media (min-width: 760px) {
  .intro-video {
    background: #2b150e;
  }

  .intro-video__phone {
    width: min(430px, 100%);
  }
}

/* TELEMÓVEIS BAIXOS */

@media (max-height: 760px) {
  .open-video-touch span {
    bottom: max(30px, env(safe-area-inset-bottom));
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: .20em;
    max-width: calc(100% - 44px);
  }
}

/* TELEMÓVEIS MUITO PEQUENOS */

@media (max-width: 340px) {
  .open-video-touch span {
    bottom: max(26px, env(safe-area-inset-bottom));
    font-size: 9px;
    letter-spacing: .18em;
  }
}
/* =========================================================
   CONVITE
========================================================= */

.site {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  min-height: 100svh;
  background: var(--cream);
}

.site.is-visible {
  opacity: 1;
  transform: none;
}

.screen {
  min-height: 100svh;
  width: 100%;
  padding: clamp(56px, 10vw, 92px) 24px;
  display: grid;
  place-items: center;
  position: relative;
}

.section-inner {
  width: min(100%, 440px);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
}

h1,
h2 {
  margin: 0;
  font-weight: 400;
}

h2 {
  color: var(--green);
  font-size: clamp(42px, 12vw, 64px);
  line-height: .96;
}

.soft-text {
  margin: 26px auto 0;
  max-width: 330px;
  font-size: 23px;
  line-height: 1.35;
  color: var(--muted);
}

/* MUSIC */

.music-toggle {
  position: fixed;
  right: 18px;
  top: max(18px, env(safe-area-inset-top));
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(184, 92, 56, .22);
  background: rgba(255, 248, 241, .78);
  backdrop-filter: blur(16px);
  color: var(--terracotta);
  z-index: 30;
  box-shadow: 0 10px 26px rgba(73,38,25,.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}

.music-toggle.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.music-toggle.is-playing {
  background: var(--terracotta);
  color: #fff;
}

/* =========================================================
   HERO COVER — MAIS RESPIRADO
========================================================= */

.hero-cover {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
  background: #2b150e;
  padding:
    max(28px, env(safe-area-inset-top))
    18px
    max(28px, env(safe-area-inset-bottom));
}

.hero-cover__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-cover__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  filter: blur(1.5px) saturate(1.03) contrast(1.03);
}

.hero-cover__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      180deg,
      rgba(20, 9, 6, .10) 0%,
      rgba(39, 16, 10, .18) 20%,
      rgba(42, 18, 10, .34) 52%,
      rgba(22, 9, 5, .72) 100%
    );
}

.hero-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 14%, rgba(255,255,255,.05), transparent 26%),
    linear-gradient(90deg, rgba(0,0,0,.10), transparent 18%, transparent 82%, rgba(0,0,0,.10));
}

.hero-cover__content {
  width: min(100%, 430px);
  min-height: calc(100svh - 56px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  color: #fff8f1;
  padding: 10px 8px 4px;
}

.hero-cover__top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

.hero-cover__bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.hero-cover__logo-wrap {
  width: clamp(112px, 28vw, 148px);
  margin: 0 auto 34px;
  display: flex;
  justify-content: center;
}

.hero-cover__logo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
}

.hero-cover__eyebrow {
  margin: 0 0 20px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(10px, 2.4vw, 13px);
  line-height: 1;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 248, 241, .95);
  text-shadow: 0 4px 14px rgba(0,0,0,.28);
}

.hero-cover__title {
  margin: 0;
  width: 100%;
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  line-height: .84;
  color: #fffaf3;
  text-shadow: 0 8px 24px rgba(0,0,0,.24);
}

.hero-cover__title-line {
  display: block;
}

.hero-cover__title-line--top {
  font-size: clamp(74px, 18vw, 98px);
  transform: translateX(-2px);
}

.hero-cover__title-line--bottom {
  margin-top: 10px;
  font-size: clamp(82px, 19vw, 104px);
  transform: translateX(2px);
}

.hero-cover__title em {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: normal;
  font-size: .46em;
  color: #f2c18c;
  vertical-align: 10%;
  margin-left: 4px;
}

.hero-cover__text {
  margin: 0 auto;
  max-width: 320px;
  font-size: clamp(19px, 5vw, 28px);
  line-height: 1.42;
  color: rgba(255, 248, 241, .96);
  text-shadow: 0 6px 20px rgba(0,0,0,.32);
}

.hero-cover__scroll {
  margin-top: 34px;
  display: inline-grid;
  justify-items: center;
  gap: 16px;
  color: #f2bd87;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.hero-cover__scroll i {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, rgba(242, 189, 135, .95), rgba(255, 248, 241, .45));
  animation: heroScrollLine 1.7s ease-in-out infinite;
}

@keyframes heroScrollLine {
  0%, 100% {
    transform: scaleY(.75);
    opacity: .55;
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
    transform-origin: top;
  }
}

/* botão da música */
.music-toggle {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(224, 187, 140, .75);
  background: rgba(255, 248, 241, .94);
  color: #a6492e;
  box-shadow: 0 12px 28px rgba(32, 12, 6, .22);
  backdrop-filter: blur(10px);
}

.music-toggle span {
  font-size: 24px;
  line-height: 1;
}

.music-toggle.is-playing {
  background: rgba(255, 248, 241, .94);
  color: #a6492e;
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (min-width: 760px) {
  .hero-cover {
    width: min(430px, 100%);
    margin: 0 auto;
  }

  .hero-cover__content {
    width: min(100%, 395px);
  }

  .hero-cover__title-line--top {
    font-size: 92px;
  }

  .hero-cover__title-line--bottom {
    font-size: 98px;
  }
}

@media (max-height: 760px) {
  .hero-cover__top {
    margin-top: 14px;
  }

  .hero-cover__logo-wrap {
    width: 104px;
    margin-bottom: 20px;
  }

  .hero-cover__eyebrow {
    margin-bottom: 14px;
  }

  .hero-cover__title-line--top {
    font-size: clamp(66px, 17vw, 84px);
  }

  .hero-cover__title-line--bottom {
    font-size: clamp(72px, 18vw, 90px);
    margin-top: 6px;
  }

  .hero-cover__text {
    max-width: 300px;
    font-size: clamp(17px, 4.7vw, 23px);
    line-height: 1.34;
  }

  .hero-cover__scroll {
    margin-top: 24px;
    gap: 12px;
  }

  .hero-cover__scroll i {
    height: 38px;
  }
}

@media (max-width: 390px) {
  .hero-cover {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-cover__content {
    width: 100%;
    max-width: 350px;
  }

  .hero-cover__logo-wrap {
    width: clamp(96px, 28vw, 122px);
    margin-bottom: 24px;
  }

  .hero-cover__eyebrow {
    margin-bottom: 16px;
    font-size: 10px;
    letter-spacing: .28em;
  }

  .hero-cover__title-line--top {
    font-size: clamp(60px, 17vw, 82px);
  }

  .hero-cover__title-line--bottom {
    font-size: clamp(68px, 18vw, 88px);
  }

  .hero-cover__text {
    max-width: 290px;
    font-size: clamp(17px, 4.9vw, 22px);
  }
}

@media (max-width: 340px) {
  .hero-cover__logo-wrap {
    width: 88px;
    margin-bottom: 18px;
  }

  .hero-cover__eyebrow {
    font-size: 9px;
    letter-spacing: .23em;
  }

  .hero-cover__title-line--top {
    font-size: 56px;
  }

  .hero-cover__title-line--bottom {
    font-size: 62px;
  }

  .hero-cover__text {
    max-width: 270px;
    font-size: 16px;
    line-height: 1.3;
  }

  .hero-cover__scroll {
    font-size: 10px;
  }

  .hero-cover__scroll i {
    height: 34px;
  }
}

/* DATE */

.date-screen {
  background:
    radial-gradient(circle at 50% 46%, rgba(184, 92, 56, .10), transparent 32%),
    var(--paper);
}

.date-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin: 14px auto 0;
}

.date-card__side {
  display: grid;
  gap: 18px;
  color: var(--text);
  font-size: 22px;
}

.date-card__side::before,
.date-card__side::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--terracotta);
}

.date-card__center {
  display: grid;
  justify-items: center;
}

.date-card__center strong {
  font-size: 104px;
  line-height: .85;
  font-weight: 500;
  color: var(--terracotta);
}

.date-card__center span {
  margin-top: 15px;
  font-size: 34px;
  color: var(--green);
}

/* =========================================================
   LOCATION — POLISHED / FINAL
========================================================= */

.location-polished {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: max(56px, env(safe-area-inset-top)) 18px max(48px, env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 50% 14%, rgba(255,255,255,.78), transparent 34%),
    radial-gradient(circle at 12% 18%, rgba(184, 92, 56, .07), transparent 26%),
    radial-gradient(circle at 86% 80%, rgba(122, 46, 36, .06), transparent 30%),
    linear-gradient(180deg, #fff8f1 0%, #fff2eb 52%, #fff8f1 100%);
}

.location-polished::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.44), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.22));
}

.location-polished__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 380px);
  min-height: calc(100svh - 104px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* =========================================================
   TEXTOS
========================================================= */

.location-polished__eyebrow {
  margin: 0 0 28px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(11px, 2.6vw, 14px);
  line-height: 1;
  letter-spacing: .44em;
  text-transform: uppercase;
  color: #b85c38;
  font-weight: 600;
}

.location-polished__topline {
  margin: 0 auto 44px;
  max-width: 330px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(10px, 2.5vw, 13px);
  line-height: 1.75;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: #873b38;
  font-weight: 500;
}

/* =========================================================
   LOGO
========================================================= */

.location-polished__logo-wrap {
  width: clamp(132px, 37vw, 180px);
  margin: 0 auto 34px;
}

.location-polished__logo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter:
    drop-shadow(0 10px 20px rgba(122, 46, 36, .08))
    saturate(.98);
}

/* =========================================================
   TÍTULO
========================================================= */

.location-polished__title {
  margin: 0 auto;
  max-width: 340px;
  font-family: "Great Vibes", cursive;
  font-size: clamp(76px, 20vw, 118px);
  line-height: .85;
  color: #8f2f2b;
  font-weight: 400;
  text-shadow: 0 8px 22px rgba(122, 46, 36, .06);
}

.location-polished__subtitle {
  margin: 26px auto 0;
  max-width: 320px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 7.4vw, 42px);
  line-height: 1.12;
  color: #9a746b;
  font-weight: 400;
}

.location-polished__address {
  margin: 16px auto 0;
  max-width: 310px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(9px, 2.4vw, 11px);
  line-height: 1.65;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(122, 46, 42, .72);
  font-weight: 500;
}

/* =========================================================
   LINHA
========================================================= */

.location-polished__line {
  width: min(150px, 46%);
  height: 1px;
  margin: 30px auto 28px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(184, 92, 56, .22),
    rgba(184, 92, 56, .85),
    rgba(184, 92, 56, .22),
    transparent
  );
}

/* =========================================================
   BOTÃO
========================================================= */

.location-polished__map {
  position: relative;
  width: min(100%, 246px);
  min-height: 56px;
  padding: 15px 28px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 92, 56, .72);
  border-radius: 999px;
  background:
    linear-gradient(180deg, #c76a43 0%, #b85c38 100%);
  color: #fffaf6;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(11px, 2.8vw, 13px);
  line-height: 1;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow:
    0 16px 34px rgba(184, 92, 56, .22),
    inset 0 1px 0 rgba(255,255,255,.18),
    inset 0 -1px 0 rgba(122, 46, 36, .16);
  transition:
    transform .35s var(--ease),
    box-shadow .35s var(--ease),
    background .35s var(--ease);
}

.location-polished__map::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 999px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0));
  opacity: .95;
}

.location-polished__map:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, #cf734d 0%, #af502e 100%);
  box-shadow:
    0 20px 38px rgba(184, 92, 56, .26),
    inset 0 1px 0 rgba(255,255,255,.18),
    inset 0 -1px 0 rgba(122, 46, 36, .16);
}

/* =========================================================
   DESKTOP PREVIEW
========================================================= */

@media (min-width: 760px) {
  .location-polished {
    width: min(430px, 100%);
    margin: 0 auto;
  }

  .location-polished__inner {
    width: min(100%, 380px);
  }
}

/* =========================================================
   MOBILE BAIXO
========================================================= */

@media (max-height: 760px) {
  .location-polished {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .location-polished__inner {
    min-height: calc(100svh - 76px);
  }

  .location-polished__eyebrow {
    margin-bottom: 20px;
    font-size: 10px;
  }

  .location-polished__topline {
    margin-bottom: 30px;
    font-size: 9px;
    line-height: 1.6;
    letter-spacing: .28em;
  }

  .location-polished__logo-wrap {
    width: clamp(112px, 30vw, 150px);
    margin-bottom: 24px;
  }

  .location-polished__title {
    font-size: clamp(62px, 16.5vw, 90px);
    max-width: 290px;
  }

  .location-polished__subtitle {
    margin-top: 20px;
    font-size: clamp(24px, 6vw, 33px);
  }

  .location-polished__address {
    margin-top: 12px;
    font-size: 8.5px;
    letter-spacing: .15em;
  }

  .location-polished__line {
    margin-top: 24px;
    margin-bottom: 22px;
  }

  .location-polished__map {
    width: 220px;
    min-height: 50px;
    font-size: 10px;
  }
}

/* =========================================================
   MOBILE ESTREITO
========================================================= */

@media (max-width: 390px) {
  .location-polished {
    padding-left: 16px;
    padding-right: 16px;
  }

  .location-polished__inner {
    width: min(100%, 340px);
  }

  .location-polished__eyebrow {
    font-size: 10px;
    letter-spacing: .36em;
  }

  .location-polished__topline {
    max-width: 300px;
    font-size: 9.5px;
    letter-spacing: .28em;
    margin-bottom: 34px;
  }

  .location-polished__logo-wrap {
    width: clamp(118px, 35vw, 158px);
    margin-bottom: 26px;
  }

  .location-polished__title {
    max-width: 300px;
    font-size: clamp(66px, 18vw, 96px);
  }

  .location-polished__subtitle {
    max-width: 280px;
    font-size: clamp(26px, 7vw, 36px);
  }

  .location-polished__address {
    max-width: 270px;
    font-size: 8.5px;
  }

  .location-polished__map {
    width: 224px;
    min-height: 50px;
    font-size: 10.5px;
  }
}

/* =========================================================
   MOBILE MUITO PEQUENO
========================================================= */

@media (max-width: 340px) {
  .location-polished {
    padding-left: 12px;
    padding-right: 12px;
  }

  .location-polished__inner {
    width: min(100%, 308px);
  }

  .location-polished__eyebrow {
    font-size: 9px;
    letter-spacing: .30em;
    margin-bottom: 18px;
  }

  .location-polished__topline {
    margin-bottom: 28px;
    font-size: 8px;
    letter-spacing: .22em;
  }

  .location-polished__logo-wrap {
    width: 108px;
    margin-bottom: 22px;
  }

  .location-polished__title {
    font-size: 58px;
    max-width: 260px;
  }

  .location-polished__subtitle {
    margin-top: 18px;
    font-size: 23px;
  }

  .location-polished__address {
    font-size: 8px;
    letter-spacing: .13em;
  }

  .location-polished__line {
    margin-top: 22px;
    margin-bottom: 20px;
  }

  .location-polished__map {
    width: 196px;
    min-height: 46px;
    font-size: 9.5px;
  }
}

/* =========================================================
   COUNTDOWN — TERRACOTA / GREAT VIBES
========================================================= */

.countdown-screen {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: max(62px, env(safe-area-inset-top)) 20px max(56px, env(safe-area-inset-bottom));
  color: #fffaf6;
  isolation: isolate;
}

/* imagem de fundo */
.countdown-screen .section-bg,
.countdown-screen .countdown-bg,
.countdown-screen .bg-image,
.countdown-screen picture,
.countdown-screen picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.countdown-screen picture img,
.countdown-screen .section-bg img,
.countdown-screen .countdown-bg img,
.countdown-screen .bg-image img,
.countdown-screen > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(.92) brightness(.58);
}

/* overlay terracota em vez de verde */
.countdown-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(72, 22, 16, .22) 0%, rgba(92, 30, 22, .34) 28%, rgba(96, 40, 26, .46) 100%),
    radial-gradient(circle at 50% 20%, rgba(201, 117, 74, .18), transparent 34%),
    radial-gradient(circle at 50% 72%, rgba(122, 46, 36, .26), transparent 44%);
}

.countdown-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(28, 10, 8, .18);
}

.countdown-screen .section-inner {
  position: relative;
  z-index: 3;
  width: min(100%, 390px);
  min-height: calc(100svh - 118px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* pequeno texto de cima */
.countdown-screen .eyebrow {
  margin: 0 0 26px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(11px, 2.6vw, 14px);
  line-height: 1;
  letter-spacing: .44em;
  text-transform: uppercase;
  color: rgba(255, 247, 241, .96);
  font-weight: 500;
}

/* título principal */
.countdown-screen h2 {
  margin: 0 auto;
  max-width: 330px;
  font-family: "Great Vibes", cursive;
  font-size: clamp(74px, 18vw, 108px);
  line-height: .88;
  font-weight: 400;
  color: #fffaf6;
  text-shadow:
    0 6px 18px rgba(46, 16, 12, .22),
    0 1px 0 rgba(255,255,255,.12);
}

/* caso uses span/quebra de linha dentro do título */
.countdown-screen h2 span {
  display: block;
}

/* grid dos números */
.countdown {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 42px auto 0;
}

.countdown div {
  position: relative;
  min-height: 152px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.24);
  background:
    linear-gradient(180deg, rgba(196, 120, 82, .20), rgba(113, 52, 36, .18)),
    rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 20px 40px rgba(25, 10, 8, .16),
    inset 0 0 0 1px rgba(255,255,255,.06);
  display: grid;
  place-items: center;
  align-content: center;
  overflow: hidden;
}

.countdown div::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255,255,255,.08) 50%, transparent 100%);
  opacity: .45;
  pointer-events: none;
}

.countdown strong {
  position: relative;
  z-index: 2;
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(60px, 14vw, 88px);
  line-height: .88;
  font-weight: 500;
  letter-spacing: -.03em;
  color: #fffaf6;
  text-shadow: 0 4px 16px rgba(32, 10, 8, .12);
}

.countdown span {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(10px, 2.3vw, 12px);
  line-height: 1;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 245, 238, .95);
  font-weight: 500;
}

/* preview desktop narrow */
@media (min-width: 760px) {
  .countdown-screen {
    width: min(430px, 100%);
    margin: 0 auto;
  }

  .countdown-screen .section-inner {
    width: min(100%, 390px);
  }
}

/* ecrãs baixos */
@media (max-height: 760px) {
  .countdown-screen {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .countdown-screen .section-inner {
    min-height: calc(100svh - 84px);
  }

  .countdown-screen .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .countdown-screen h2 {
    font-size: clamp(60px, 15vw, 86px);
  }

  .countdown {
    gap: 14px;
    margin-top: 30px;
  }

  .countdown div {
    min-height: 126px;
    border-radius: 24px;
  }

  .countdown strong {
    font-size: clamp(48px, 11vw, 68px);
  }

  .countdown span {
    margin-top: 10px;
    font-size: 9px;
    letter-spacing: .22em;
  }
}

/* mobile estreito */
@media (max-width: 390px) {
  .countdown-screen {
    padding-left: 16px;
    padding-right: 16px;
  }

  .countdown-screen .section-inner {
    width: min(100%, 340px);
  }

  .countdown-screen h2 {
    max-width: 290px;
    font-size: clamp(64px, 17vw, 94px);
  }

  .countdown {
    gap: 14px;
  }

  .countdown div {
    min-height: 122px;
  }

  .countdown strong {
    font-size: clamp(48px, 12vw, 72px);
  }
}

/* mobile muito pequeno */
@media (max-width: 340px) {
  .countdown-screen {
    padding-left: 12px;
    padding-right: 12px;
  }

  .countdown-screen .eyebrow {
    font-size: 9px;
    letter-spacing: .32em;
  }

  .countdown-screen h2 {
    font-size: 56px;
  }

  .countdown {
    gap: 10px;
    margin-top: 26px;
  }

  .countdown div {
    min-height: 106px;
    border-radius: 22px;
  }

  .countdown strong {
    font-size: 42px;
  }

  .countdown span {
    font-size: 8px;
    letter-spacing: .18em;
  }
}
/* =========================================================
   GALLERY — NÓS OS DOIS
========================================================= */

.gallery-screen {
  position: relative;
  padding: 88px 20px 96px;
  background:
    radial-gradient(circle at 50% 10%, rgba(255,255,255,.78), transparent 32%),
    radial-gradient(circle at 12% 18%, rgba(184, 92, 56, .08), transparent 30%),
    radial-gradient(circle at 86% 86%, rgba(122, 46, 36, .07), transparent 32%),
    linear-gradient(180deg, #fff8f1 0%, #fff2eb 52%, #fff8f1 100%);
  overflow: hidden;
}

.gallery-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.42), transparent 42%);
}

.gallery-screen__text {
  position: relative;
  z-index: 2;
  width: min(100%, 390px);
  margin: 0 auto 42px;
  text-align: center;
}

.gallery-screen__text .eyebrow {
  margin: 0 0 20px;
  font-family: "Great Vibes", cursive;
  font-size: clamp(54px, 15vw, 86px);
  line-height: .9;
  letter-spacing: 0;
  text-transform: none;
  color: #8f2f2b;
  font-weight: 400;
  text-shadow: 0 8px 22px rgba(122, 46, 36, .06);
}

.gallery-screen__text h2 {
  margin: 0 auto;
  max-width: 330px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 8vw, 46px);
  line-height: 1.05;
  font-weight: 400;
  color: #b85c38;
}

.gallery {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
}

.gallery figure {
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow:
    0 24px 58px rgba(73, 38, 25, .14),
    inset 0 0 0 1px rgba(255,255,255,.35);
}

.gallery img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  filter: saturate(1.02) contrast(.98);
}

/* MOBILE BAIXO */
@media (max-height: 760px) {
  .gallery-screen {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .gallery-screen__text {
    margin-bottom: 32px;
  }

  .gallery-screen__text .eyebrow {
    font-size: clamp(46px, 13vw, 68px);
  }

  .gallery-screen__text h2 {
    font-size: clamp(26px, 7vw, 36px);
  }

  .gallery {
    gap: 14px;
  }

  .gallery figure {
    border-radius: 24px;
  }
}

/* MOBILE ESTREITO */
@media (max-width: 390px) {
  .gallery-screen {
    padding-left: 16px;
    padding-right: 16px;
  }

  .gallery-screen__text {
    width: min(100%, 340px);
  }

  .gallery-screen__text .eyebrow {
    font-size: clamp(48px, 15vw, 72px);
  }

  .gallery-screen__text h2 {
    max-width: 300px;
    font-size: clamp(27px, 7.4vw, 38px);
  }
}

/* MOBILE MUITO PEQUENO */
@media (max-width: 340px) {
  .gallery-screen {
    padding-left: 12px;
    padding-right: 12px;
  }

  .gallery-screen__text .eyebrow {
    font-size: 44px;
  }

  .gallery-screen__text h2 {
    font-size: 25px;
  }

  .gallery {
    gap: 12px;
  }
}

/* =========================================================
   RSVP — CONFIRMAÇÃO WHATSAPP
========================================================= */

.rsvp-screen {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: max(62px, env(safe-area-inset-top)) 20px max(58px, env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 50% 14%, rgba(255,255,255,.78), transparent 34%),
    radial-gradient(circle at 14% 22%, rgba(184, 92, 56, .08), transparent 28%),
    radial-gradient(circle at 86% 82%, rgba(122, 46, 36, .07), transparent 32%),
    linear-gradient(180deg, #fff8f1 0%, #fff2eb 52%, #fff8f1 100%);
}

.rsvp-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 44%, rgba(255,255,255,.46), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.22));
}

.rsvp-screen .section-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 380px);
}

.rsvp-screen__eyebrow {
  margin: 0 0 20px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(10px, 2.6vw, 13px);
  line-height: 1;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: #b85c38;
  font-weight: 600;
}

.rsvp-screen__title {
  margin: 0 auto;
  max-width: 340px;
  font-family: "Great Vibes", cursive;
  font-size: clamp(72px, 19vw, 112px);
  line-height: .84;
  color: #8f2f2b;
  font-weight: 400;
  text-shadow: 0 8px 22px rgba(122, 46, 36, .06);
}

.rsvp-screen__date {
  margin: 22px auto 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(10px, 2.5vw, 12px);
  line-height: 1.6;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(122, 46, 42, .72);
  font-weight: 500;
}

.rsvp-screen__heart {
  margin: 28px auto 26px;
  color: #d39d54;
  font-size: 24px;
  line-height: 1;
}

/* FORM */

.rsvp-form {
  width: 100%;
  display: grid;
  gap: 18px;
  text-align: left;
}

.rsvp-field {
  display: grid;
  gap: 9px;
}

.rsvp-field > span,
.rsvp-choice legend {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #9d5b52;
  font-weight: 600;
}

.rsvp-field input,
.rsvp-field textarea {
  width: 100%;
  border: 1px solid rgba(184, 92, 56, .24);
  border-radius: 22px;
  padding: 15px 17px;
  background: rgba(255, 252, 248, .72);
  box-shadow:
    0 12px 30px rgba(73, 38, 25, .045),
    inset 0 0 0 1px rgba(255,255,255,.45);
  color: #7a2e2a;
  outline: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 23px;
  line-height: 1.2;
}

.rsvp-field textarea {
  resize: vertical;
  min-height: 96px;
}

.rsvp-field input::placeholder,
.rsvp-field textarea::placeholder {
  color: rgba(122, 46, 42, .42);
}

.rsvp-field input:focus,
.rsvp-field textarea:focus {
  border-color: rgba(184, 92, 56, .62);
  background: rgba(255, 252, 248, .92);
}

/* OPÇÕES VOU / NÃO VOU */

.rsvp-choice {
  border: 0;
  padding: 0;
  margin: 0;
}

.rsvp-choice legend {
  margin: 0 0 10px;
}

.rsvp-choice__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rsvp-option {
  position: relative;
  cursor: pointer;
}

.rsvp-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rsvp-option span {
  min-height: 86px;
  padding: 16px 12px 14px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 24px;
  border: 1px solid rgba(184, 92, 56, .24);
  background: rgba(255, 252, 248, .70);
  box-shadow:
    0 12px 30px rgba(73, 38, 25, .05),
    inset 0 0 0 1px rgba(255,255,255,.45);
  transition:
    transform .28s var(--ease),
    background .28s var(--ease),
    border-color .28s var(--ease),
    box-shadow .28s var(--ease);
}

.rsvp-option strong {
  display: block;
  font-family: "Great Vibes", cursive;
  font-size: clamp(40px, 10vw, 54px);
  line-height: .88;
  font-weight: 400;
  color: #8f2f2b;
}

.rsvp-option small {
  margin-top: 8px;
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 8px;
  line-height: 1.4;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(122, 46, 42, .62);
}

.rsvp-option input:checked + span {
  border-color: rgba(184, 92, 56, .78);
  background:
    linear-gradient(180deg, rgba(255, 248, 241, .96), rgba(255, 239, 226, .92));
  box-shadow:
    0 16px 34px rgba(184, 92, 56, .13),
    inset 0 0 0 1px rgba(255,255,255,.55);
  transform: translateY(-2px);
}

.rsvp-option input:checked + span::before {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 12px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #b85c38;
  color: #fff8f1;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
}

/* BOTÃO IGUAL AO MAPA */

.rsvp-submit {
  position: relative;
  width: min(100%, 260px);
  min-height: 56px;
  margin: 8px auto 0;
  padding: 15px 28px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 92, 56, .72);
  border-radius: 999px;
  background:
    linear-gradient(180deg, #c76a43 0%, #b85c38 100%);
  color: #fffaf6;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(10px, 2.7vw, 12px);
  line-height: 1;
  letter-spacing: .20em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  box-shadow:
    0 16px 34px rgba(184, 92, 56, .22),
    inset 0 1px 0 rgba(255,255,255,.18),
    inset 0 -1px 0 rgba(122, 46, 36, .16);
  transition:
    transform .35s var(--ease),
    box-shadow .35s var(--ease),
    background .35s var(--ease);
}

.rsvp-submit::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 999px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0));
}

.rsvp-submit:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, #cf734d 0%, #af502e 100%);
  box-shadow:
    0 20px 38px rgba(184, 92, 56, .26),
    inset 0 1px 0 rgba(255,255,255,.18),
    inset 0 -1px 0 rgba(122, 46, 36, .16);
}

/* RESPONSIVO */

@media (min-width: 760px) {
  .rsvp-screen {
    width: min(430px, 100%);
    margin: 0 auto;
  }
}

@media (max-height: 760px) {
  .rsvp-screen {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .rsvp-screen__title {
    font-size: clamp(58px, 15vw, 84px);
  }

  .rsvp-screen__date {
    margin-top: 16px;
    font-size: 9px;
  }

  .rsvp-screen__heart {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .rsvp-form {
    gap: 14px;
  }

  .rsvp-field input,
  .rsvp-field textarea {
    font-size: 20px;
    padding: 13px 15px;
  }

  .rsvp-field textarea {
    min-height: 78px;
  }

  .rsvp-option span {
    min-height: 74px;
    border-radius: 20px;
  }

  .rsvp-option strong {
    font-size: 38px;
  }

  .rsvp-option small {
    font-size: 7px;
  }

  .rsvp-submit {
    min-height: 50px;
    width: 232px;
    font-size: 10px;
  }
}

@media (max-width: 390px) {
  .rsvp-screen {
    padding-left: 16px;
    padding-right: 16px;
  }

  .rsvp-screen .section-inner {
    width: min(100%, 340px);
  }

  .rsvp-screen__title {
    font-size: clamp(62px, 18vw, 92px);
  }

  .rsvp-choice__grid {
    gap: 10px;
  }

  .rsvp-option strong {
    font-size: clamp(36px, 10vw, 48px);
  }

  .rsvp-submit {
    width: min(100%, 238px);
  }
}

@media (max-width: 340px) {
  .rsvp-screen {
    padding-left: 12px;
    padding-right: 12px;
  }

  .rsvp-screen__title {
    font-size: 56px;
  }

  .rsvp-screen__eyebrow {
    font-size: 9px;
    letter-spacing: .32em;
  }

  .rsvp-screen__date {
    font-size: 8px;
    letter-spacing: .20em;
  }

  .rsvp-choice__grid {
    grid-template-columns: 1fr;
  }

  .rsvp-option span {
    min-height: 68px;
  }

  .rsvp-field input,
  .rsvp-field textarea {
    font-size: 18px;
  }

  .rsvp-submit {
    width: 210px;
    font-size: 9px;
  }
}

/* CONTACTOS DOS NOIVOS */

.rsvp-contacts {
  width: 100%;
  margin: 0 auto 28px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid rgba(184, 92, 56, .24);
  border-bottom: 1px solid rgba(184, 92, 56, .24);
}

.rsvp-contact {
  display: grid;
  gap: 5px;
  text-align: center;
}

.rsvp-contact small {
  font-family: "Great Vibes", cursive;
  font-size: clamp(32px, 8vw, 44px);
  line-height: .9;
  color: #8f2f2b;
  font-weight: 400;
}

.rsvp-contact strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(10px, 2.7vw, 12px);
  line-height: 1;
  letter-spacing: .18em;
  color: #9d5b52;
  font-weight: 600;
}

.rsvp-contacts__divider {
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(184, 92, 56, .55),
    transparent
  );
}

/* =========================================================
   FINAL — MONOGRAMA
========================================================= */

.final-screen {
  position: relative;
  min-height: 100svh;
  padding: max(70px, env(safe-area-inset-top)) 24px max(70px, env(safe-area-inset-bottom));
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(255, 248, 241, .78),
      rgba(255, 242, 235, .84)
    ),
    url("assets/images/foto-1.jpg") center / cover;
}

.final-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 36%, rgba(255,255,255,.58), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,248,241,.38));
}

.final-screen__content {
  position: relative;
  z-index: 2;
  width: min(100%, 370px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-screen__logo {
  width: clamp(118px, 36vw, 172px);
  height: auto;
  object-fit: contain;
  margin: 0 auto 34px;
  filter:
    drop-shadow(0 14px 28px rgba(73, 38, 25, .12))
    saturate(1.02);
}

.final-screen__eyebrow {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 7vw, 40px);
  line-height: 1.1;
  color: #8a6f63;
  font-weight: 400;
}

.final-screen h2 {
  margin: 0 auto;
  max-width: 340px;
  font-family: "Great Vibes", cursive;
  font-size: clamp(78px, 21vw, 122px);
  line-height: .82;
  color: #8f2f2b;
  font-weight: 400;
  text-shadow: 0 8px 22px rgba(122, 46, 36, .08);
}

.final-screen h2 span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: .48em;
  color: #c76a43;
  vertical-align: 12%;
  margin: 0 2px;
}

.final-screen .mini-date {
  margin: 34px auto 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(10px, 2.6vw, 12px);
  line-height: 1;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: #b85c38;
  font-weight: 500;
}

/* DESKTOP PREVIEW */
@media (min-width: 760px) {
  .final-screen {
    width: min(430px, 100%);
    margin: 0 auto;
  }
}

/* MOBILE BAIXO */
@media (max-height: 760px) {
  .final-screen {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .final-screen__logo {
    width: clamp(102px, 30vw, 142px);
    margin-bottom: 24px;
  }

  .final-screen__eyebrow {
    font-size: clamp(24px, 6vw, 32px);
    margin-bottom: 14px;
  }

  .final-screen h2 {
    font-size: clamp(62px, 17vw, 92px);
  }

  .final-screen .mini-date {
    margin-top: 26px;
  }
}

/* MOBILE ESTREITO */
@media (max-width: 390px) {
  .final-screen {
    padding-left: 18px;
    padding-right: 18px;
  }

  .final-screen__content {
    width: min(100%, 340px);
  }

  .final-screen__logo {
    width: clamp(108px, 35vw, 150px);
  }

  .final-screen h2 {
    font-size: clamp(66px, 19vw, 98px);
  }
}

/* MOBILE MUITO PEQUENO */
@media (max-width: 340px) {
  .final-screen__logo {
    width: 102px;
    margin-bottom: 22px;
  }

  .final-screen__eyebrow {
    font-size: 23px;
  }

  .final-screen h2 {
    font-size: 58px;
  }

  .final-screen .mini-date {
    font-size: 9px;
    letter-spacing: .24em;
  }
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* DESKTOP PREVIEW */
@media (min-width: 760px) {
  body {
    background: #22120d;
  }

  .intro-phone,
  .site {
    width: min(430px, 100%);
    margin: 0 auto;
    box-shadow: 0 0 0 1px rgba(255,255,255,.05), 0 24px 70px rgba(0,0,0,.35);
  }

  .site {
    background: var(--cream);
  }

  .music-toggle {
    right: calc(50% - 195px);
  }
}

@media (max-height: 690px) {
  .env-seal {
    width: min(34vw, 132px);
  }

  .open-touch {
    width: min(38vw, 148px);
    height: min(38vw, 148px);
  }
}

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

/* =========================================================
   DATE — SCRATCH TO REVEAL AUTUMN
========================================================= */

.date-screen--scratch.date-autumn {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  padding: clamp(42px, 7svh, 68px) 14px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 12% 10%, rgba(184, 92, 56, .10), transparent 34%),
    radial-gradient(circle at 90% 86%, rgba(122, 46, 36, .10), transparent 34%),
    linear-gradient(180deg, #fff8f1 0%, #fff2eb 48%, #fff8f1 100%);
}

.date-screen--scratch.date-autumn::before,
.date-screen--scratch.date-autumn::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(2px);
}

.date-screen--scratch.date-autumn::before {
  width: 250px;
  height: 250px;
  left: -110px;
  top: 2%;
  background: radial-gradient(circle, rgba(184, 92, 56, .12), transparent 70%);
}

.date-screen--scratch.date-autumn::after {
  width: 240px;
  height: 240px;
  right: -110px;
  bottom: 3%;
  background: radial-gradient(circle, rgba(122, 46, 36, .09), transparent 70%);
}

/* CARD */

.date-autumn__frame {
  position: relative;
  z-index: 1;
  width: min(100%, 392px);
  min-height: min(770px, calc(100svh - 82px));
  margin: 0 auto;
  padding: 118px 18px 122px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .985), rgba(255, 249, 242, .965));
  border: 1px solid rgba(213, 164, 101, .54);
  box-shadow:
    0 28px 70px rgba(73, 38, 25, .13),
    inset 0 0 0 8px rgba(255, 255, 255, .30);
  text-align: center;
  overflow: visible;
}

.date-autumn__frame::before {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: 1;
  border-radius: 28px;
  border: 1px solid rgba(213, 164, 101, .48);
  pointer-events: none;
}

.date-autumn__frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.72), transparent 38%),
    radial-gradient(circle at 50% 92%, rgba(184, 92, 56, .045), transparent 42%);
  pointer-events: none;
}

.date-autumn__frame > *:not(.date-autumn__flowers) {
  position: relative;
  z-index: 4;
}

/* FLORES */

.date-autumn__flowers {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  user-select: none;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(72, 38, 25, .08));
}

.date-autumn__flowers--top {
  width: clamp(270px, 76vw, 355px);
  left: -52px;
  top: -46px;
}

.date-autumn__flowers--bottom {
  width: clamp(265px, 74vw, 345px);
  right: -50px;
  bottom: -42px;
}

/* ORNAMENTOS */

.date-autumn__ornament {
  width: min(180px, 58%);
  height: 16px;
  margin-inline: auto;
  position: relative;
}

.date-autumn__ornament--top {
  margin-bottom: 20px;
}

.date-autumn__ornament--bottom {
  margin-top: 24px;
}

.date-autumn__ornament::before,
.date-autumn__ornament::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(211, 157, 84, .72));
}

.date-autumn__ornament::before {
  left: 0;
}

.date-autumn__ornament::after {
  right: 0;
  transform: scaleX(-1);
}

.date-autumn__ornament span::before {
  content: "◆";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -54%);
  color: #d39d54;
  font-size: 11px;
}

/* TEXTO */

.scratch-date__tiny {
  margin: 0 auto 12px;
  max-width: 320px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(9px, 2.4vw, 11px);
  line-height: 1.45;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #9d5b52;
  font-weight: 500;
}

.date-autumn__reveal {
  margin: 0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(64px, 17vw, 92px);
  line-height: .82;
  color: #7a2e2a;
  text-shadow: 0 5px 18px rgba(122, 46, 42, .08);
}

.date-autumn__heart-line {
  width: min(178px, 58%);
  height: 22px;
  margin: 10px auto 6px;
  position: relative;
}

.date-autumn__heart-line::before,
.date-autumn__heart-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(211, 157, 84, .9));
}

.date-autumn__heart-line::before {
  left: 0;
}

.date-autumn__heart-line::after {
  right: 0;
  transform: scaleX(-1);
}

.date-autumn__heart-line span::before {
  content: "♡";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -58%);
  color: #d39d54;
  font-size: 24px;
  line-height: 1;
}

.scratch-date__title {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(11px, 2.8vw, 14px);
  line-height: 1;
  letter-spacing: .40em;
  text-transform: uppercase;
  color: #873b38;
  font-weight: 500;
}

/* CÍRCULOS */

.scratch-date__row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 3vw, 14px);
  align-items: center;
  justify-items: center;
  margin: 34px auto 0;
}

.scratch-token {
  position: relative;
  width: clamp(82px, 25vw, 108px);
  max-width: 108px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, #fffaf2 0 54%, transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(211, 157, 84, .26), transparent 72%);
  box-shadow:
    0 15px 30px rgba(105, 62, 27, .16),
    inset 0 0 0 5px rgba(255, 255, 255, .9);
}

.scratch-token::before {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  border-radius: 50%;
  background:
    conic-gradient(
      from 20deg,
      rgba(255,255,255,.4),
      rgba(213,164,101,.92),
      rgba(255,255,255,.7),
      rgba(176,111,35,.78),
      rgba(255,255,255,.42)
    );
}

.scratch-token::after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 5;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.65);
  box-shadow:
    inset 0 0 0 1px rgba(185, 123, 54, .28),
    inset 0 0 16px rgba(255,255,255,.34);
  pointer-events: none;
}

.scratch-token__value {
  display: grid;
  justify-items: center;
  align-content: center;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, #fffaf2, #fff0de 80%);
  color: #7a2e2a;
  opacity: .38;
  transform: scale(.86);
  transition: opacity .48s var(--ease), transform .48s var(--ease);
}

.scratch-token__value strong {
  display: block;
  font-size: clamp(24px, 6.8vw, 36px);
  line-height: .9;
  font-weight: 500;
  color: #7a2e2a;
}

.scratch-token:nth-child(3) .scratch-token__value strong {
  font-size: clamp(19px, 5.6vw, 30px);
}

.scratch-token__value span {
  margin-top: 7px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(122, 46, 42, .68);
}

.scratch-token__canvas {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  cursor: grab;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
  transition: opacity .48s var(--ease), transform .48s var(--ease);
}

.scratch-token__canvas:active {
  cursor: grabbing;
}

.scratch-token.is-revealed .scratch-token__canvas {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

.scratch-token.is-revealed .scratch-token__value {
  opacity: 1;
  transform: scale(1);
}

/* HINT */

.scratch-date__hint {
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(9px, 2.2vw, 11px);
  line-height: 1.5;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #9d5b52;
  font-weight: 500;
  animation: scratchHint 1.8s ease-in-out infinite;
}

.scratch-date__hint span {
  display: block;
  width: 24px;
  height: 14px;
  position: relative;
  flex: 0 0 auto;
}

.scratch-date__hint span::before {
  content: "❦";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #d39d54;
  font-size: 16px;
  line-height: 1;
}

.scratch-date.is-complete .scratch-date__hint {
  opacity: 0;
  animation: none;
}

/* DATA REVELADA */

.scratch-date__complete {
  margin: 18px auto 0;
  display: grid;
  gap: 8px;
  justify-items: center;
  opacity: 0;
  transform: translateY(12px) scale(.98);
  max-height: 0;
  overflow: hidden;
  transition: opacity .55s var(--ease), transform .55s var(--ease), max-height .55s var(--ease);
}

.scratch-date.is-complete .scratch-date__complete {
  opacity: 1;
  transform: none;
  max-height: 96px;
}

.scratch-date__complete span {
  color: #7a2e2a;
  font-size: 30px;
  line-height: 1;
}

.scratch-date__complete small {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: #9d5b52;
}

/* TEXTO FINAL */

.soft-text.scratch-date__text {
  margin: 36px auto 0;
  max-width: 320px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(23px, 6vw, 34px);
  line-height: 1.34;
  color: #745f58;
}

.scratch-date.is-complete .scratch-date__text {
  color: #7a2e2a;
}

@keyframes scratchHint {
  0%, 100% {
    opacity: .64;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

/* =========================================================
   MOBILE BAIXO
========================================================= */

@media (max-height: 760px) {
  .date-screen--scratch.date-autumn {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .date-autumn__frame {
    width: min(100%, 382px);
    min-height: calc(100svh - 68px);
    padding: 108px 16px 110px;
  }

  .date-autumn__flowers--top {
    width: 290px;
    left: -50px;
    top: -42px;
  }

  .date-autumn__flowers--bottom {
    width: 282px;
    right: -46px;
    bottom: -36px;
  }

  .date-autumn__reveal {
    font-size: 58px;
  }

  .scratch-date__row {
    margin-top: 28px;
  }

  .scratch-token {
    width: 88px;
  }

  .soft-text.scratch-date__text {
    margin-top: 28px;
    font-size: clamp(21px, 5.5vw, 28px);
  }
}

/* =========================================================
   MOBILE ESTREITO
========================================================= */

@media (max-width: 390px) {
  .date-screen--scratch.date-autumn {
    padding-left: 12px;
    padding-right: 12px;
  }

  .date-autumn__frame {
    width: 100%;
    border-radius: 30px;
    padding: 104px 14px 108px;
  }

  .date-autumn__frame::before {
    border-radius: 25px;
  }

  .date-autumn__flowers--top {
    width: 270px;
    left: -46px;
    top: -38px;
  }

  .date-autumn__flowers--bottom {
    width: 262px;
    right: -40px;
    bottom: -30px;
  }

  .scratch-date__tiny {
    font-size: 8.5px;
    letter-spacing: .22em;
  }

  .date-autumn__reveal {
    font-size: 56px;
  }

  .scratch-date__title {
    font-size: 10px;
    letter-spacing: .34em;
  }

  .scratch-token {
    width: clamp(76px, 25vw, 92px);
  }

  .scratch-date__hint {
    gap: 8px;
    font-size: 8.5px;
    letter-spacing: .20em;
  }

  .soft-text.scratch-date__text {
    max-width: 290px;
    font-size: clamp(21px, 5.8vw, 27px);
  }
}

/* =========================================================
   MOBILE MUITO PEQUENO
========================================================= */

@media (max-width: 340px) {
  .date-autumn__frame {
    padding: 96px 10px 98px;
  }

  .date-autumn__flowers--top {
    width: 238px;
    left: -38px;
    top: -30px;
  }

  .date-autumn__flowers--bottom {
    width: 230px;
    right: -34px;
    bottom: -24px;
  }

  .date-autumn__reveal {
    font-size: 50px;
  }

  .scratch-date__title {
    font-size: 9px;
    letter-spacing: .28em;
  }

  .scratch-token {
    width: 70px;
  }

  .soft-text.scratch-date__text {
    font-size: 18px;
  }
}

/* =========================================================
   SCRATCH CONFETTI
========================================================= */

.date-screen--scratch {
  position: relative;
}

.scratch-confetti-layer {
  position: absolute;
  inset: 0;
  z-index: 20;
  overflow: hidden;
  pointer-events: none;
}

.scratch-confetti-piece {
  position: absolute;
  top: 30%;
  opacity: 0;
  border-radius: 2px;
  box-shadow: 0 4px 10px rgba(73, 38, 25, .10);
  animation: scratchConfettiFall ease-out forwards;
}

@keyframes scratchConfettiFall {
  0% {
    opacity: 0;
    transform:
      translate3d(0, -20px, 0)
      rotate(0deg)
      scale(.72);
  }

  12% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform:
      translate3d(var(--confetti-drift), 64svh, 0)
      rotate(var(--confetti-rotate))
      scale(1);
  }
}

/* =========================================================
   DRESS CODE — EDITORIAL / IGUAL À REFERÊNCIA
========================================================= */

.dresscode-editorial {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: max(72px, env(safe-area-inset-top)) 18px max(64px, env(safe-area-inset-bottom));
  margin-top: 42px; /* espaço entre sections */
  background:
    radial-gradient(circle at 50% 10%, rgba(255,255,255,.72), transparent 30%),
    radial-gradient(circle at 14% 22%, rgba(184, 92, 56, .05), transparent 28%),
    radial-gradient(circle at 84% 82%, rgba(122, 46, 36, .05), transparent 30%),
    linear-gradient(180deg, #fff8f1 0%, #fff3ec 54%, #fff8f1 100%);
}

.dresscode-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.40), transparent 42%);
}

.dresscode-editorial__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 390px);
  min-height: calc(100svh - 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

/* TÍTULO */

.dresscode-editorial__title {
  margin: 0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(58px, 15vw, 82px); /* mais pequeno */
  line-height: .9;
  font-weight: 400;
  color: #7a2e24;
  text-shadow: 0 8px 18px rgba(122, 46, 36, .05);
}

.dresscode-editorial__label {
  margin: 10px 0 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(10px, 2.4vw, 12px);
  line-height: 1;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-weight: 500;
  color: #a56a54;
}

/* IMAGEM */

.dresscode-editorial__illustration {
  width: min(100%, 330px);
  margin: 34px auto 0;
  position: relative;
  z-index: 3;
}

.dresscode-editorial__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(73, 38, 25, .08));
}

/* CARD PRINCIPAL */

.dresscode-editorial__card {
  width: 100%;
  margin-top: -16px; /* imagem entra no card */
  padding: 82px 24px 26px;
  background: rgba(255, 252, 248, .96);
  border-radius: 34px;
  box-shadow:
    0 22px 50px rgba(73, 38, 25, .08),
    inset 0 0 0 1px rgba(224, 200, 181, .42);
}

.dresscode-editorial__text {
  margin: 0 auto;
  max-width: 300px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(21px, 5.4vw, 28px); /* mais pequeno */
  line-height: 1.45;
  color: #8a756f;
}

/* BLOCO INTERIOR */

.dresscode-editorial__rule {
  margin-top: 24px;
  padding: 20px 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,247,240,.96), rgba(255,242,233,.92));
  border: 1px solid rgba(184, 92, 56, .12);
}

.dresscode-editorial__rule h3 {
  margin: 0 0 10px;
  font-family: "Great Vibes", cursive;
  font-size: clamp(34px, 8vw, 46px); /* menor */
  line-height: .96;
  font-weight: 400;
  color: #7a2e24;
}

.dresscode-editorial__rule p {
  margin: 0 auto;
  max-width: 285px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(19px, 5vw, 24px);
  line-height: 1.34;
  color: #8b6a5d;
}

/* DESKTOP PREVIEW */

@media (min-width: 760px) {
  .dresscode-editorial {
    width: min(430px, 100%);
    margin: 42px auto 0;
  }

  .dresscode-editorial__inner {
    width: min(100%, 390px);
  }
}

/* MOBILE BAIXO */

@media (max-height: 760px) {
  .dresscode-editorial {
    padding-top: 42px;
    padding-bottom: 40px;
    margin-top: 28px;
  }

  .dresscode-editorial__inner {
    min-height: calc(100svh - 82px);
  }

  .dresscode-editorial__title {
    font-size: clamp(50px, 13vw, 70px);
  }

  .dresscode-editorial__label {
    font-size: 9px;
    margin-top: 8px;
  }

  .dresscode-editorial__illustration {
    width: min(100%, 290px);
    margin-top: 24px;
  }

  .dresscode-editorial__card {
    margin-top: -12px;
    padding: 70px 20px 22px;
    border-radius: 28px;
  }

  .dresscode-editorial__text {
    font-size: clamp(18px, 4.8vw, 24px);
  }

  .dresscode-editorial__rule {
    margin-top: 18px;
    padding: 16px 14px;
  }

  .dresscode-editorial__rule h3 {
    font-size: clamp(30px, 7vw, 40px);
  }

  .dresscode-editorial__rule p {
    font-size: clamp(17px, 4.6vw, 22px);
  }
}

/* MOBILE ESTREITO */

@media (max-width: 390px) {
  .dresscode-editorial {
    padding-left: 14px;
    padding-right: 14px;
    margin-top: 24px;
  }

  .dresscode-editorial__inner {
    width: min(100%, 340px);
  }

  .dresscode-editorial__title {
    font-size: clamp(52px, 15vw, 74px);
  }

  .dresscode-editorial__label {
    font-size: 9px;
    letter-spacing: .28em;
  }

  .dresscode-editorial__illustration {
    width: min(100%, 300px);
  }

  .dresscode-editorial__card {
    padding: 74px 18px 22px;
  }

  .dresscode-editorial__text {
    max-width: 278px;
    font-size: clamp(19px, 5.3vw, 25px);
  }

  .dresscode-editorial__rule p {
    max-width: 270px;
    font-size: clamp(18px, 4.9vw, 22px);
  }
}

/* MOBILE MUITO PEQUENO */

@media (max-width: 340px) {
  .dresscode-editorial {
    padding-left: 12px;
    padding-right: 12px;
  }

  .dresscode-editorial__title {
    font-size: 46px;
  }

  .dresscode-editorial__label {
    font-size: 8px;
    letter-spacing: .20em;
  }

  .dresscode-editorial__illustration {
    width: min(100%, 270px);
    margin-top: 18px;
  }

  .dresscode-editorial__card {
    margin-top: -10px;
    padding: 64px 16px 20px;
    border-radius: 24px;
  }

  .dresscode-editorial__text {
    font-size: 18px;
  }

  .dresscode-editorial__rule h3 {
    font-size: 32px;
  }

  .dresscode-editorial__rule p {
    font-size: 17px;
  }
}

/* =========================================================
   FLORAL DIVIDER — ENTRE LOCAL E DRESS CODE
========================================================= */

.section-floral-divider {
  position: relative;
  width: 100%;
  padding: 18px 18px 8px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.72), transparent 34%),
    linear-gradient(180deg, #fff8f1 0%, #fff3ec 55%, #fff8f1 100%);
  overflow: hidden;
}

.section-floral-divider__inner {
  width: min(100%, 430px);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-floral-divider__image {
  width: min(100%, 360px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(73, 38, 25, .08));
  opacity: 0.98;
}

/* mobile pequeno */
@media (max-width: 390px) {
  .section-floral-divider {
    padding: 14px 14px 6px;
  }

  .section-floral-divider__image {
    width: min(100%, 320px);
  }
}

@media (max-width: 340px) {
  .section-floral-divider {
    padding: 12px 10px 4px;
  }

  .section-floral-divider__image {
    width: min(100%, 285px);
  }
}

.intro-video__media {
  pointer-events: none;
}

.intro-video__fade {
  pointer-events: none;
}

/* =========================================================
   INVITE CREDIT
========================================================= */

.invite-credit {
  width: 100%;
  padding: 18px 20px 24px;
  text-align: center;
  background: #fff8f1;
  display: grid;
  gap: 7px;
  justify-items: center;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 8px;
  line-height: 1;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #000000;
}

.invite-credit a {
  color: #000000;
  text-decoration: none;
  letter-spacing: .20em;
}

.invite-credit a:hover {
  color: rgba(184, 92, 56, .75);
}

@media (min-width: 760px) {
  .invite-credit {
    width: min(430px, 100%);
    margin: 0 auto;
  }
}

/* =========================================================
   FIX INTRO — TEXTO SEMPRE EM BAIXO E CENTRADO
========================================================= */

@media (max-height: 690px) {
  .open-touch:not(.open-video-touch) {
    width: min(38vw, 148px);
    height: min(38vw, 148px);
  }
}

.intro-video__phone .open-video-touch,
.intro-video__phone button.open-touch.open-video-touch {
  position: absolute !important;
  inset: 0 !important;
  left: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  padding: 0 !important;
  border: 0 !important;
  margin: 0 !important;
  display: block !important;
  transform: none !important;
  background: transparent !important;
  z-index: 20;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.intro-video__phone .open-video-touch span {
  position: absolute !important;
  left: 50% !important;
  top: auto !important;
  right: auto !important;
  bottom: calc(max(34px, env(safe-area-inset-bottom)) + 10px) !important;
  transform: translateX(-50%) !important;
  width: max-content;
  max-width: calc(100% - 48px);
  display: block;
  margin: 0;
  padding: 0;
  text-align: center;
  white-space: normal;
  pointer-events: none;
}

@media (max-height: 690px) {
  .intro-video__phone .open-video-touch,
  .intro-video__phone button.open-touch.open-video-touch {
    width: 100% !important;
    height: 100% !important;
  }

  .intro-video__phone .open-video-touch span {
    bottom: calc(max(24px, env(safe-area-inset-bottom)) + 8px) !important;
    font-size: 9.5px;
    letter-spacing: .18em;
    max-width: calc(100% - 42px);
  }
}