/* ==========================================================================
   Beatriz + Asafh — São Miguel dos Milagres, 15.01.2027
   Identidade: Lotus Ateliê. Tokens conforme .claude/skills/identidade-ba/
   ========================================================================== */

@font-face {
  font-family: "Aboreto";
  src: url("assets/fonts/aboreto.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/jakarta.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Altesse";
  src: url("assets/fonts/altesse.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MS Claudy";
  src: url("assets/fonts/ms-claudy.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --sand: #f5f3ee;
  --white: #fffeff;
  --navy: #153d66;
  --steel: #5c7f94;
  --mist: #aab7be;
  --gold: #ddc57b;
  --blush: #e5d7cf;
  --grey-29: #aab7be;

  --serif: "Aboreto", Optima, "Palatino Linotype", serif;
  --script: "Altesse", Georgia, serif;
  --claudy: "MS Claudy", "Altesse", Georgia, serif;
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sand);
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  color: var(--steel);
}

input,
button,
textarea {
  font: inherit;
  color: inherit;
}

img {
  max-width: 100%;
}

/* As classes abaixo declaram display:grid/flex, que vence a regra padrão do
   navegador para [hidden]. Sem isto, blocos marcados como ocultos aparecem. */
[hidden] {
  display: none !important;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* --- área reservada dos noivos ------------------------------------------ */

.private-list {
  --private-ink: #153d66;
  --private-cream: #f5f3ee;
  --private-gold: #ddc57b;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(20px, 5vw, 64px);
  background:
    radial-gradient(circle at 12% 15%, rgb(221 197 123 / 0.18), transparent 28%),
    linear-gradient(135deg, #edf0ed 0%, var(--sand) 54%, #e9e6de 100%);
  overflow: hidden;
}

.private-list__panel {
  display: grid;
  grid-template-columns: minmax(235px, 0.72fr) minmax(0, 1.28fr);
  width: min(100%, 900px);
  min-height: 520px;
  background: var(--private-cream);
  box-shadow: 0 28px 80px rgb(21 61 102 / 0.14);
  overflow: hidden;
}

.private-list__aside {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 42px 38px 34px;
  background:
    linear-gradient(160deg, rgb(21 61 102 / 0.96), rgb(21 61 102 / 0.9)),
    url("assets/img/textura-areia.jpg") center / cover;
  color: var(--private-cream);
  overflow: hidden;
}

.private-list__aside::before,
.private-list__aside::after {
  position: absolute;
  content: "";
  width: 190px;
  height: 190px;
  border: 1px solid rgb(221 197 123 / 0.35);
  border-radius: 50%;
}

.private-list__aside::before {
  right: -106px;
  top: -70px;
}

.private-list__aside::after {
  right: -54px;
  top: -18px;
}

.private-list__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(42px, 7vw, 82px) clamp(30px, 7vw, 82px);
}

.private-list__content .eyebrow {
  color: var(--steel);
  font-size: 10px;
}

.private-list__logo {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: auto;
}

.private-list__logo img {
  display: block;
  width: 68px;
  height: 60px;
  object-fit: contain;
}

.private-list__date {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 22px;
}

.private-list__date strong {
  font-family: var(--serif);
  font-size: clamp(70px, 9vw, 108px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.05em;
  color: var(--private-gold);
}

.private-list__date span {
  padding-bottom: 4px;
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.private-list__aside-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.private-list__aside-copy small {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgb(245 243 238 / 0.72);
}

.private-list__shell {
  position: absolute;
  right: 24px;
  bottom: 20px;
  width: 92px;
  height: auto;
  opacity: 0.2;
  transform: rotate(-12deg);
}

.private-list__content h1 {
  max-width: 430px;
  margin: 16px 0 18px;
  font-family: var(--script);
  font-size: clamp(58px, 7vw, 88px);
  font-weight: 400;
  line-height: 0.95;
  color: var(--private-ink);
}

.private-list__lead {
  max-width: 390px;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--steel);
}

.private-list__rule {
  width: 100%;
  max-width: 420px;
  height: 1px;
  margin: 30px 0 18px;
  background: rgb(21 61 102 / 0.16);
}

.private-list__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-bottom: 28px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}

.private-list__meta span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.private-list__meta b {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7a9d77;
  box-shadow: 0 0 0 3px rgb(122 157 119 / 0.15);
}

.private-list__content .btn--gold {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 16px 22px;
  letter-spacing: 0.12em;
}

.private-list__content .btn--gold span {
  font-size: 16px;
  line-height: 1;
}

.private-list__back {
  margin-top: 22px;
  border-bottom: 1px solid rgb(21 61 102 / 0.35);
  font-size: 12px;
  line-height: 1.5;
  color: var(--private-ink);
}

.private-list__back:hover {
  border-color: var(--private-gold);
  color: var(--steel);
}

.private-list__note {
  max-width: 410px;
  margin: 34px 0 0;
  font-size: 10.5px;
  line-height: 1.7;
  color: var(--steel);
}

@media (max-width: 640px) {
  .private-list {
    place-items: start center;
    padding: 16px;
  }

  .private-list__panel {
    grid-template-columns: 1fr;
    width: min(100%, 500px);
    min-height: auto;
  }

  .private-list__aside {
    min-height: 188px;
    padding: 24px 24px 22px;
  }

  .private-list__logo {
    margin-bottom: 28px;
  }

  .private-list__logo img {
    width: 56px;
    height: 50px;
  }

  .private-list__date {
    margin-bottom: 14px;
  }

  .private-list__date strong {
    font-size: 62px;
  }

  .private-list__date span {
    font-size: 11px;
  }

  .private-list__aside-copy {
    position: absolute;
    right: 24px;
    bottom: 24px;
    justify-items: end;
    font-size: 12px;
    text-align: right;
  }

  .private-list__aside-copy small {
    font-size: 9px;
  }

  .private-list__shell {
    right: 48%;
    bottom: -42px;
    width: 72px;
    opacity: 0.16;
  }

  .private-list__content {
    padding: 34px 24px 32px;
  }

  .private-list__content h1 {
    margin-top: 12px;
    font-size: clamp(50px, 16vw, 72px);
  }

  .private-list__lead {
    font-size: 13px;
    line-height: 1.7;
  }

  .private-list__rule {
    margin: 24px 0 16px;
  }

  .private-list__meta {
    gap: 8px 14px;
    margin-bottom: 24px;
    font-size: 9px;
  }

  .private-list__content .btn--gold {
    width: 100%;
    justify-content: center;
    padding-inline: 16px;
    font-size: 10px;
  }

  .private-list__back {
    align-self: center;
  }

  .private-list__note {
    margin-top: 26px;
    font-size: 10px;
    text-align: center;
  }
}

/* --- casca ---------------------------------------------------------------- */

.shell {
  position: relative;
  max-width: 430px;
  min-height: 100vh;
  margin: 0 auto;
  padding-bottom: 76px;
  background-color: var(--sand);
  background-image:
    linear-gradient(rgb(245 243 238 / 0.72), rgb(245 243 238 / 0.72)),
    url("assets/img/textura-areia.jpg");
  background-position: center top;
  background-size: auto, 720px auto;
  overflow-x: hidden;
}

/* --- tipografia ----------------------------------------------------------- */

.eyebrow {
  margin: 0;
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
}

.display {
  margin: 0;
  font-family: var(--script);
  font-weight: 400;
  font-size: 42px;
  line-height: 1.04;
}

.title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.text {
  margin: 0;
  font-size: 14px;
  line-height: 1.78;
  letter-spacing: 0.04em;
}

.text--lead {
  font-size: 14.5px;
}

.text--soft {
  color: var(--steel);
}

/* --- header --------------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgb(245 243 238 / 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgb(170 183 190 / 0.5);
}

.header__logo {
  display: flex;
  align-items: center;
  height: 44px;
}

.header__logo img {
  display: block;
  width: auto;
  height: 30px;
}

.header__nav {
  display: none;
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 1px;
  background: var(--navy);
}

.burger span:first-child {
  width: 24px;
}

.burger span:last-child {
  width: 16px;
}

/* --- menu ----------------------------------------------------------------- */

.menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  max-width: 430px;
  margin: 0 auto;
  padding: 20px 26px 40px;
  background: var(--navy);
}

.menu[hidden] {
  display: none;
}

.menu__close-row {
  display: flex;
  justify-content: flex-end;
}

.menu__close {
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  color: var(--sand);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.menu__links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 24px;
}

.menu__links a {
  padding: 16px 0;
  border-bottom: 1px solid rgb(221 197 123 / 0.34);
  color: var(--sand);
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.menu__links a:last-child {
  border-bottom: 0;
}

.menu__mark {
  display: block;
  width: 170px;
  margin: auto auto 0;
  opacity: 0.9;
}

/* --- hero ----------------------------------------------------------------- */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 640px;
  padding: 0 24px 40px;
  overflow: hidden;
  text-align: center;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__play {
  position: absolute;
  z-index: 3;
  top: 30%;
  left: 50%;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid rgb(245 243 238 / 0.72);
  border-radius: 999px;
  background: rgb(21 61 102 / 0.78);
  color: var(--white);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.hero__play[hidden] {
  display: none;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgb(21 61 102 / 0.94) 6%,
    rgb(21 61 102 / 0.42) 52%,
    rgb(21 61 102 / 0.24) 100%
  );
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  width: 100%;
}

.hero__eyebrow {
  margin: 0;
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(245 243 238 / 0.82);
}

.hero__mark {
  display: block;
  width: 238px;
  max-width: 82%;
  animation: ba-escrita 2.2s 0.4s var(--ease) both;
}

.hero__date {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--sand);
}

.hero__date span:first-child,
.hero__date span:last-child {
  width: 26px;
  height: 1px;
  background: rgb(221 197 123 / 0.75);
}

.hero__date-value {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.22em;
}

/* --- contagem regressiva -------------------------------------------------- */

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  width: 100%;
  padding: 16px 0;
  border-top: 1px solid rgb(245 243 238 / 0.28);
  border-bottom: 1px solid rgb(245 243 238 / 0.28);
}

.countdown__cell {
  display: grid;
  gap: 5px;
  justify-items: center;
  color: var(--sand);
}

.countdown__num {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(245 243 238 / 0.72);
}

/* --- seções --------------------------------------------------------------- */

.section {
  padding: 56px 26px 48px;
}

.section--deep {
  padding: 54px 26px 58px;
  background: var(--navy);
  color: var(--sand);
}

.section--deep .eyebrow {
  color: var(--gold);
}

.section--deep .text--soft {
  color: rgb(245 243 238 / 0.74);
}

.rsvp-title {
  color: var(--gold);
}

/* --- constelação de elementos da identidade ------------------------------ */

.has-brand-accents {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.has-brand-accents > :not(.brand-accent) {
  position: relative;
  z-index: 1;
}

.brand-accent {
  position: absolute;
  z-index: 0;
  display: block;
  width: auto;
  height: auto;
  pointer-events: none;
  object-fit: contain;
}

.brand-accent--celebration-shell {
  top: 18px;
  right: -46px;
  width: 116px;
  opacity: 0.1;
  transform: rotate(8deg);
}

.brand-accent--tips-palm {
  top: 24px;
  right: -22px;
  height: 126px;
  opacity: 0.12;
}

.brand-accent--tips-birds {
  bottom: 34px;
  left: -30px;
  width: 126px;
  opacity: 0.1;
}

.brand-accent--jangaday-birds {
  top: 54px;
  right: -28px;
  width: 132px;
  opacity: 0.12;
}

.brand-accent--gifts-shell {
  top: 28px;
  right: -46px;
  width: 142px;
  opacity: 0.1;
  transform: rotate(-8deg);
}

.brand-accent--story-palm {
  bottom: -22px;
  left: -28px;
  height: 146px;
  opacity: 0.08;
}

.section__ornament {
  display: block;
  width: auto;
  height: 74px;
  margin: 34px auto 0;
  opacity: 0.72;
}

/* --- mensagem de boas-vindas --------------------------------------------- */

.welcome {
  padding-top: 52px;
  padding-bottom: 56px;
}

.welcome__frame {
  display: grid;
  gap: 16px;
  padding: 32px 24px;
  border: 1px solid var(--navy);
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: 0.06em;
  text-align: center;
}

.welcome__frame p {
  margin: 0;
}

.identity-motif {
  display: grid;
  grid-template-columns: minmax(18px, 1fr) auto auto auto minmax(18px, 1fr);
  gap: 12px;
  align-items: center;
  max-width: 340px;
  margin: 34px auto -8px;
}

.identity-motif span {
  height: 1px;
  background: rgb(21 61 102 / 0.34);
}

.identity-motif img {
  display: block;
  width: auto;
  object-fit: contain;
}

.identity-motif__palm {
  height: 42px;
}

.identity-motif__birds {
  height: 21px;
}

.identity-motif__shell {
  height: 35px;
}

/* --- onda / maré ---------------------------------------------------------- */

.tide {
  padding: 0 26px;
}

.tide svg {
  display: block;
  width: 100%;
  height: 24px;
}

/* --- formulários ---------------------------------------------------------- */

.form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.field {
  display: grid;
  gap: 9px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--mist);
}

.section--deep .field {
  border-bottom-color: rgb(245 243 238 / 0.32);
}

.field__label {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
}

.section--deep .field__label {
  color: rgb(245 243 238 / 0.72);
}

.field input,
.field textarea {
  min-height: 26px;
  padding: 9px 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.field textarea {
  line-height: 1.7;
  resize: vertical;
}

.section--deep .field input {
  color: var(--sand);
}

.choice {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice legend {
  margin-bottom: 2px;
  padding: 0;
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(245 243 238 / 0.72);
}

.choice label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  border-bottom: 1px solid rgb(245 243 238 / 0.18);
  font-size: 14.5px;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.choice input {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
}

.form__error {
  margin: 0;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--steel);
}

.section--deep .form__error {
  color: var(--gold);
}

.btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 2px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 200ms var(--ease);
}

.btn:hover {
  opacity: 0.85;
}

.btn--light {
  background: var(--sand);
  border: 1px solid var(--sand);
  color: var(--navy);
}

.btn--dark {
  background: var(--navy);
  border: 1px solid var(--navy);
  color: var(--sand);
}

.btn--gold {
  justify-self: start;
  margin-top: 6px;
  min-height: 50px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--navy);
  font-size: 9.5px;
}

/* botão-link com moldura */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--navy);
  border-radius: 2px;
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* link sublinhado */
.link-rule {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 44px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--navy);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section--deep .link-rule {
  color: var(--sand);
  border-bottom-color: rgb(245 243 238 / 0.6);
}

/* --- confirmação ---------------------------------------------------------- */

.receipt {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 34px 24px;
  border: 1px solid rgb(221 197 123 / 0.6);
  text-align: center;
}

.receipt--light {
  gap: 12px;
  padding: 30px 22px;
  border-color: var(--gold);
}

.receipt img {
  width: auto;
  height: 52px;
}

.receipt--light img {
  height: 30px;
}

.receipt__title {
  margin: 0;
  font-family: var(--script);
  font-size: 34px;
  line-height: 1.1;
}

.receipt__title--rsvp {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.receipt__thanks {
  font-family: var(--script);
  font-size: 34px;
  line-height: 1;
}

.receipt__name {
  max-width: 100%;
  font-family: var(--serif);
  font-size: clamp(18px, 5vw, 23px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.12em;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.receipt__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: rgb(245 243 238 / 0.74);
}

.receipt--light .receipt__text {
  line-height: 1.7;
  color: var(--steel);
}

/* --- cards de detalhe ----------------------------------------------------- */

.stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--mist);
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
}

.detail {
  display: grid;
  gap: 12px;
  padding: 28px 22px;
  background: var(--white);
}

.detail__tag {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.detail__title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.celebration-heading {
  display: grid;
  gap: 8px;
  max-width: 360px;
  margin: 0 auto 34px;
  padding: 24px 20px;
  border: 1px solid var(--navy);
  font-family: var(--serif);
  text-align: center;
}

.celebration-heading p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0.12em;
}

.celebration-heading p:first-child {
  font-size: 18px;
  text-transform: uppercase;
}

.celebration-heading p:last-child {
  color: var(--steel);
  font-size: 17px;
}

/* --- carrossel ------------------------------------------------------------ */

.gallery {
  margin-top: 34px;
}

.gallery__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery__track::-webkit-scrollbar {
  display: none;
}

.gallery__track img {
  display: block;
  flex: 0 0 100%;
  width: 100%;
  height: 300px;
  object-fit: cover;
  scroll-snap-align: center;
  animation: ba-zoom 26s ease-in-out infinite alternate;
}

.gallery__track img:nth-child(2) {
  object-position: 50% 64%;
  animation-duration: 30s;
}

.gallery__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 26px 0;
}

.gallery__dot {
  display: flex;
  align-items: center;
  width: 34px;
  min-height: 44px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.gallery__dot span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--navy);
  opacity: 0.28;
  transition: opacity 260ms var(--ease);
}

.gallery__dot[aria-current="true"] span {
  opacity: 1;
}

.gallery__caption {
  margin-left: auto;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}

/* --- dicas dos noivos ----------------------------------------------------- */

.tips {
  display: grid;
  gap: 34px;
  margin-top: 48px;
  padding: 52px 26px 58px;
  background: var(--grey-29);
  color: var(--navy);
}

.tips__display {
  margin: 0;
  font-family: var(--claudy);
  font-weight: 400;
  font-size: clamp(56px, 15vw, 64px);
  line-height: 1.08;
  color: var(--navy);
}

.tips__grid {
  display: grid;
  border-top: 1px solid rgb(21 61 102 / 0.3);
}

.tips__item {
  display: grid;
  gap: 14px;
  padding: 26px 0;
  border-bottom: 1px solid rgb(21 61 102 / 0.3);
}

.tips__item h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tips__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: rgb(21 61 102 / 0.9);
}

.tips__item > a {
  display: inline-flex;
  justify-self: start;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid rgb(255 254 255 / 0.62);
  color: var(--white);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tips .agency-list {
  border-color: rgb(21 61 102 / 0.3);
}

.tips .agency {
  border-color: rgb(21 61 102 / 0.3);
  color: var(--navy);
}

.tips .agency__action {
  color: var(--steel);
}

.tips .beauty-list .agency__name,
.tips .beauty-list .agency__phone {
  color: var(--navy);
}

.tips a:hover {
  color: var(--navy);
  opacity: 0.78;
}

.tips__item--disclosure {
  display: block;
  min-height: 0;
  padding: 0;
}

.tips-disclosure summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  cursor: pointer;
  list-style: none;
  color: var(--navy);
}

.tips-disclosure summary::-webkit-details-marker {
  display: none;
}

.tips-disclosure summary::after {
  flex: 0 0 auto;
  content: "+";
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
}

.tips-disclosure[open] summary::after {
  content: "−";
}

.tips-disclosure__title {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tips-disclosure__content {
  display: grid;
  gap: 14px;
  padding: 0 0 26px;
}

/* --- bloco antigo de dica ------------------------------------------------- */

.tip {
  display: grid;
  gap: 16px;
  margin-top: 48px;
  padding: 44px 26px;
  background: var(--blush);
}

.tip__display {
  margin: 0;
  font-family: var(--script);
  font-size: 34px;
  line-height: 1;
}

.tip__title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* --- acordeão ------------------------------------------------------------- */

.accordion {
  border-top: 1px solid var(--mist);
}

.accordion__item {
  border-bottom: 1px solid var(--mist);
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 60px;
  padding: 18px 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.accordion__label {
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.accordion__sign {
  font-size: 18px;
  line-height: 1;
  color: var(--gold);
}

.accordion__panel {
  display: grid;
  gap: 16px;
  padding: 0 0 26px;
}

.accordion__panel[hidden] {
  display: none;
}

.agency-list {
  display: grid;
  border-top: 1px solid rgb(92 127 148 / 0.45);
}

.agency {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 14px;
  align-items: center;
  min-height: 78px;
  padding: 14px 0;
  border-bottom: 1px solid rgb(92 127 148 / 0.45);
}

.agency__name {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.agency__phone {
  grid-row: span 2;
  font-size: 12px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.agency__action {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
}

/* --- jangaday ------------------------------------------------------------- */

.jangaday {
  padding: 54px 0 58px;
  background: rgb(170 183 190 / 0.22);
}

.jangaday__pad {
  padding: 0 26px;
}

.jangaday__photo {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.jangaday__head {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 18px;
}

.jangaday__head img {
  width: auto;
  height: 70px;
}

.jangaday__head h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.event-display {
  margin: 0 0 26px;
  font-family: var(--claudy);
  font-size: 58px;
  font-weight: 400;
  line-height: 0.98;
}

.facts {
  margin: 0;
  border-top: 1px solid var(--mist);
}

.facts__row {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--mist);
}

.facts dt {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}

.facts dd {
  margin: 0;
  font-size: 13.5px;
  letter-spacing: 0.04em;
}

.event-contact {
  display: grid;
  gap: 12px;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--mist);
}

.event-contact h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.event-contact p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--steel);
}

.event-contact a {
  display: inline-flex;
  justify-self: start;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid var(--navy);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/* --- dress code ----------------------------------------------------------- */

.dresscode {
  padding: 56px 26px 54px;
  text-align: center;
}

.dresscode img {
  display: block;
  width: auto;
  height: 76px;
  margin: 0 auto 24px;
}

.dresscode .text {
  max-width: 300px;
  margin-inline: auto;
}

.flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.flourish span:first-child,
.flourish span:last-child {
  width: 52px;
  height: 1px;
  background: var(--gold);
}

.flourish__dot {
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

/* --- faixa da jangada ----------------------------------------------------- */

.sail {
  position: relative;
  height: 66px;
  margin-top: 48px;
  overflow: hidden;
  background: rgb(221 197 123 / 0.1);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.sail img {
  position: absolute;
  top: 9px;
  left: 0;
  width: auto;
  height: 48px;
  animation: ba-navega 38s linear infinite;
}

/* --- presentes ------------------------------------------------------------ */

.section-script {
  margin: 0 0 18px;
  font-family: var(--claudy);
  font-size: 48px;
  line-height: 0.98;
}

#presentes > .section-script {
  font-size: 64px;
  line-height: 1.02;
}

#historia > .section-script {
  font-size: 64px;
  line-height: 1.02;
}

.section-script--navy {
  margin-bottom: 30px;
  color: var(--navy);
  font-weight: 400;
}

.section-aboreto {
  max-width: 620px;
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gifts {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgb(245 243 238 / 0.26);
}

.gift {
  display: grid;
  gap: 10px;
  padding: 26px 0;
  background: var(--navy);
}

.gift__num {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.gift__title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.gift__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.72;
  letter-spacing: 0.04em;
  color: rgb(245 243 238 / 0.7);
}

.gift__pix-key {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gold);
  word-break: break-all;
}

/* --- save the date -------------------------------------------------------- */

.std {
  margin: 34px 0 0;
  background: var(--navy);
}

.std video {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--navy);
}

.std figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  color: var(--sand);
}

.std figcaption span {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.std figcaption small {
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(245 243 238 / 0.72);
}

/* --- rodapé --------------------------------------------------------------- */

.footer {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 46px 26px 40px;
  background: var(--navy);
  color: var(--sand);
  text-align: center;
}

.footer img {
  width: auto;
  height: 56px;
}

.footer p {
  margin: 0;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(245 243 238 / 0.74);
}

.footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* --- barra fixa ----------------------------------------------------------- */

.dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 430px;
  margin: 0 auto;
  padding: 12px 20px 14px;
  background: rgb(245 243 238 / 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--mist);
}

.dock__meta {
  display: grid;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.dock__count {
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}

.dock__date {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.dock__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  background: var(--navy);
  border-radius: 2px;
  color: var(--sand);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.dock__cta:hover {
  color: var(--sand);
  opacity: 0.9;
}

/* --- revelação ao rolar --------------------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* --- animações ------------------------------------------------------------ */

@keyframes ba-escrita {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes ba-navega {
  from {
    transform: translateX(-80px);
  }
  to {
    transform: translateX(460px);
  }
}

@keyframes ba-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}

/* --- computador ---------------------------------------------------------- */

@media (min-width: 900px) {
  .shell {
    max-width: none;
    padding-bottom: 0;
  }

  .header {
    min-height: 76px;
    padding: 15px max(48px, calc((100vw - 1240px) / 2));
  }

  .header__logo img {
    height: 36px;
  }

  .header__nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.2vw, 34px);
  }

  .header__nav a {
    position: relative;
    padding: 14px 0;
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .header__nav a::after {
    position: absolute;
    right: 0;
    bottom: 8px;
    left: 0;
    height: 1px;
    background: var(--gold);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 240ms var(--ease);
  }

  .header__nav a:hover::after,
  .header__nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .burger {
    display: none;
  }

  .menu {
    max-width: none;
  }

  .hero {
    min-height: calc(100vh - 76px);
    max-height: 920px;
    padding: 72px 48px;
    justify-content: center;
  }

  .hero__inner {
    gap: 30px;
    max-width: 760px;
  }

  .hero__mark {
    width: 360px;
  }

  .hero__date-value {
    font-size: 18px;
  }

  .hero__date span:first-child,
  .hero__date span:last-child {
    width: 54px;
  }

  .countdown {
    gap: 22px;
    padding: 22px 36px;
  }

  .countdown__num {
    font-size: 36px;
  }

  .countdown__label,
  .hero__eyebrow {
    font-size: 9.5px;
  }

  .section {
    padding: 96px max(64px, calc((100vw - 1120px) / 2));
  }

  .section--deep {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .brand-accent--celebration-shell {
    top: 54px;
    right: max(24px, calc((100vw - 1320px) / 2));
    width: 210px;
    opacity: 0.085;
  }

  .brand-accent--tips-palm {
    top: -18px;
    right: max(30px, calc((100vw - 1240px) / 2));
    height: 238px;
    opacity: 0.1;
  }

  .brand-accent--tips-birds {
    bottom: 34px;
    left: 46%;
    width: 210px;
    opacity: 0.08;
  }

  .brand-accent--jangaday-birds {
    top: auto;
    right: auto;
    bottom: 78px;
    left: 5.5%;
    width: 178px;
    opacity: 0.1;
  }

  .brand-accent--gifts-shell {
    top: 42px;
    right: max(36px, calc((100vw - 1280px) / 2));
    width: 248px;
    opacity: 0.085;
  }

  .brand-accent--story-palm {
    bottom: -38px;
    left: max(26px, calc((100vw - 1240px) / 2));
    height: 280px;
    opacity: 0.065;
  }

  .text {
    font-size: 15px;
  }

  .text--lead {
    font-size: 16px;
  }

  .hero + .section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    column-gap: clamp(64px, 8vw, 120px);
    align-items: start;
  }

  .hero + .section.welcome {
    display: block;
  }

  .welcome__frame {
    max-width: 960px;
    margin: 0 auto;
    padding: 52px clamp(48px, 8vw, 112px);
    font-size: 15px;
  }

  .identity-motif {
    max-width: 520px;
    gap: 22px;
    margin-top: 48px;
  }

  .identity-motif__palm {
    height: 54px;
  }

  .identity-motif__birds {
    height: 26px;
  }

  .identity-motif__shell {
    height: 44px;
  }

  .hero + .section > .eyebrow,
  .hero + .section > .display {
    grid-column: 1;
  }

  .hero + .section > .display {
    grid-row: 2 / span 3;
    max-width: 580px;
    font-size: clamp(56px, 5vw, 74px) !important;
  }

  .hero + .section > .text {
    grid-column: 2;
  }

  .hero + .section > .section__ornament {
    grid-column: 2;
    height: 92px;
    margin: 36px 0 0;
  }

  .tide {
    padding: 0 max(64px, calc((100vw - 1240px) / 2));
  }

  .tide svg {
    height: 36px;
  }

  #presenca {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
    column-gap: clamp(64px, 9vw, 132px);
    align-items: start;
  }

  #presenca > .eyebrow,
  #presenca > .title,
  #presenca > .text {
    grid-column: 1;
  }

  #presenca > .form,
  #presenca > .receipt {
    grid-column: 2;
    grid-row: 1 / span 4;
    width: 100%;
    max-width: 560px;
    justify-self: end;
  }

  #presenca > .receipt {
    padding: 54px 40px;
  }

  #celebracao > .display {
    max-width: 720px;
    font-size: clamp(58px, 5vw, 76px) !important;
  }

  .stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail {
    min-height: 270px;
    padding: 38px;
    align-content: start;
  }

  .celebration-heading {
    max-width: 620px;
    margin-bottom: 52px;
    padding: 34px 44px;
  }

  .celebration-heading p {
    font-size: 18px;
  }

  .celebration-heading p:first-child {
    font-size: 22px;
  }

  .gallery {
    max-width: 1320px;
    margin: 72px auto 0;
    padding: 0 40px;
  }

  .gallery__track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 380px;
    gap: 12px;
    overflow: hidden;
  }

  .gallery__track img {
    width: 100%;
    height: 100%;
    min-width: 0;
  }

  .gallery__nav {
    padding: 18px 0 0;
  }

  .gallery__dot {
    display: none;
  }

  .tip {
    grid-template-columns: 0.7fr 0.9fr minmax(300px, 1.5fr) auto;
    gap: 40px;
    align-items: center;
    margin-top: 96px;
    padding: 64px max(64px, calc((100vw - 1120px) / 2));
  }

  .tip__display {
    font-size: 44px;
  }

  .tip .btn-outline {
    white-space: nowrap;
  }

  .tips {
    gap: 50px;
    margin-top: 96px;
    padding: 86px max(64px, calc((100vw - 1120px) / 2));
  }

  .tips__display {
    font-size: 88px;
  }

  .tips__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 64px;
  }

  .tips__item {
    min-height: 240px;
    align-content: start;
  }

  #guia {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(480px, 1.25fr);
    column-gap: clamp(64px, 9vw, 132px);
    align-items: start;
  }

  #guia > .eyebrow,
  #guia > .display,
  #guia > .text {
    grid-column: 1;
  }

  #guia > .display {
    font-size: clamp(54px, 4.5vw, 68px) !important;
  }

  #guia > .accordion {
    grid-column: 2;
    grid-row: 1 / span 4;
  }

  .agency {
    padding: 18px 0;
  }

  .jangaday {
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(340px, 1.2fr) minmax(300px, 1fr);
    min-height: 650px;
    padding: 0;
    align-items: stretch;
  }

  .jangaday > .jangaday__pad:first-of-type,
  .jangaday > .jangaday__pad:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px clamp(36px, 4vw, 70px) !important;
  }

  .jangaday .display {
    font-size: clamp(48px, 4vw, 64px) !important;
  }

  .event-display {
    font-size: clamp(62px, 5vw, 78px);
  }

  .jangaday__photo {
    height: 100%;
    min-height: 650px;
  }

  .dresscode {
    padding: 104px 40px 92px;
  }

  .dresscode img {
    height: 104px;
  }

  .dresscode .text {
    max-width: 640px;
  }

  .sail {
    height: 84px;
    margin-top: 72px;
  }

  .sail img {
    top: 10px;
    height: 62px;
  }

  #presentes > .display {
    max-width: 760px;
    font-size: clamp(56px, 5vw, 72px) !important;
  }

  .section-script {
    font-size: clamp(64px, 6vw, 84px);
  }

  #presentes > .section-script {
    font-size: clamp(72px, 6.5vw, 92px);
  }

  #historia > .section-script {
    font-size: clamp(72px, 6.5vw, 92px);
  }

  .section-aboreto {
    font-size: clamp(24px, 2.2vw, 32px);
  }

  #presentes > .text {
    max-width: 680px;
  }

  .gifts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
  }

  .gift {
    min-height: 310px;
    padding: 34px 30px;
    align-content: start;
  }

  #historia {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    column-gap: clamp(64px, 9vw, 132px);
    align-items: start;
  }

  #historia > .eyebrow,
  #historia > .display,
  #historia > .section-script {
    grid-column: 1;
  }

  #historia > .display {
    font-size: clamp(54px, 4.5vw, 70px) !important;
  }

  #historia > .text {
    grid-column: 2;
  }

  .std {
    max-width: 1120px;
    margin: 72px auto 0;
  }

  .std video {
    aspect-ratio: 16 / 9;
  }

  .std figcaption {
    padding: 20px 28px;
  }

  .std + .section {
    max-width: 760px;
    margin: 0 auto;
    padding: 90px 0 104px !important;
  }

  .receipt--light {
    padding: 50px 40px;
  }

  .footer {
    padding: 72px 40px 64px;
  }

  .dock {
    right: 28px;
    bottom: 28px;
    left: auto;
    width: auto;
    max-width: none;
    padding: 12px 14px 12px 18px;
    border: 1px solid rgb(170 183 190 / 0.78);
    border-radius: 3px;
    box-shadow: 0 16px 44px rgb(21 61 102 / 0.16);
  }
}

@media (min-width: 1400px) {
  .gallery__track {
    grid-template-rows: 420px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__mark,
  .sail img,
  .gallery__track img {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Boas-vindas mais compactas na versão mobile. */
@media (max-width: 899px) {
  .section.welcome {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .welcome__frame {
    gap: 12px;
    padding: 24px 18px;
    font-size: 12px;
    line-height: 1.65;
    letter-spacing: 0.04em;
  }

  .welcome .identity-motif {
    margin-top: 26px;
  }
}

/* Restaurantes pesquisados para as dicas dos noivos. */
.restaurant-list { display: grid; gap: 22px; }
.restaurant { padding-top: 22px; border-top: 1px solid rgb(21 61 102 / 0.2); }
.restaurant h4 { margin: 7px 0 12px; font-family: var(--serif); font-weight: 400; font-size: 17px; line-height: 1.5; color: var(--navy); }
.tips__item .restaurant__kind { color: var(--navy); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.tips__item .restaurant__address { margin-top: 12px; font-size: 11px; line-height: 1.7; color: var(--navy); }
.restaurant__links { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 7px; }
.restaurant__links a { display: inline-flex; align-items: center; min-height: 44px; font-size: 10px; letter-spacing: .04em; color: var(--navy); border-bottom: 1px solid rgb(21 61 102 / .4); }
.restaurant__links a:hover { color: var(--navy); opacity: .7; }
@media (min-width: 900px) {
  .tips__grid > .tips__item { grid-column: 1; }
  .tips__grid > .tips__item--restaurants { grid-column: 2; grid-row: 1 / span 3; }
}
