:root {
  --cream: #fff4e8;
  --cream-soft: rgba(255, 244, 232, 0.78);
  --cream-faint: rgba(255, 244, 232, 0.16);
  --gold: #c59a50;
  --gold-2: #d9b36f;
  --dark: #18130e;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--cream);
  background: #15100b;
  font-family: "Noto Serif Hebrew", "Times New Roman", serif;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

img,
svg {
  display: block;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background: #15100b;
}

.hero-media::before,
.hero-media::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  content: "";
}

.hero-media::before {
  background:
    linear-gradient(
      90deg,
      rgba(18, 14, 10, 0.03) 0%,
      rgba(18, 14, 10, 0.18) 38%,
      rgba(18, 14, 10, 0.62) 61%,
      rgba(18, 14, 10, 0.88) 78%,
      rgba(18, 14, 10, 0.96) 100%
    ),
    radial-gradient(circle at 92% 55%, rgba(255, 244, 232, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 244, 232, 0.08), transparent 38%, rgba(10, 7, 5, 0.16));
  backdrop-filter: blur(0.2px);
}

.hero-media::after {
  opacity: 0.7;
  background:
    radial-gradient(circle at 82% 13%, rgba(255, 238, 207, 0.3), transparent 24%),
    radial-gradient(circle at 90% 92%, rgba(255, 255, 255, 0.18), transparent 23%),
    linear-gradient(115deg, rgba(255, 244, 232, 0.04) 0 1px, transparent 1px 180px);
  mix-blend-mode: screen;
}

.hero-slide {
  margin: 0;
  opacity: 0;
  animation: hero-fade 28s ease-in-out infinite;
}

.hero-slide:first-child {
  opacity: 1;
  animation-name: hero-fade-first;
}

.hero-slide:nth-child(2) {
  animation-delay: 7s;
}

.hero-slide:nth-child(3) {
  animation-delay: 14s;
}

.hero-slide:nth-child(4) {
  animation-delay: 21s;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.02) brightness(0.82);
  transform: scale(1.035);
  animation: hero-drift 28s ease-in-out infinite;
}

.hero-slide:first-child img {
  object-position: 58% center;
  filter: saturate(0.9) contrast(1.02) brightness(0.78);
}

.hero-slide:nth-child(2) img {
  object-position: 58% 42%;
  filter: saturate(0.82) contrast(1.04) brightness(0.78);
}

.hero-slide:nth-child(3) img {
  object-position: 62% center;
  filter: saturate(0.86) contrast(1) brightness(0.86);
}

.hero-slide:nth-child(4) img {
  object-position: 62% 43%;
  filter: saturate(0.76) contrast(1.02) brightness(0.74);
}

.top-nav {
  position: absolute;
  top: 52px;
  right: 78px;
  left: 78px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  direction: rtl;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 70px;
  direction: rtl;
}

.nav-links a {
  position: relative;
  color: rgba(255, 244, 232, 0.88);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  transition:
    color 280ms ease,
    transform 280ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff7ec;
  transform: translateY(-2px);
}

.nav-links a.active::after {
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 45px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--cream), transparent);
  content: "";
  transform: translateX(-50%);
}

.couple-login-link {
  color: rgba(217, 179, 111, 0.88) !important;
}

.socials {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 244, 232, 0.92);
  direction: ltr;
}

.socials a {
  display: inline-grid;
  width: 28px;
  aspect-ratio: 1;
  place-items: center;
}

.socials svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition:
    color 280ms ease,
    transform 280ms ease;
}

.socials a:hover svg,
.socials a:focus-visible svg {
  color: var(--gold-2);
  transform: translateY(-2px);
}

.hero-content {
  position: absolute;
  top: 27.6vh;
  right: 0;
  left: 0;
  z-index: 5;
  width: min(560px, 43vw);
  margin-inline: auto;
  text-align: center;
  direction: ltr;
  animation: reveal-up 820ms cubic-bezier(0.2, 0.75, 0.12, 1) both;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  color: rgba(255, 244, 232, 0.94);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(100px, 8.4vw, 166px);
  font-weight: 300;
  line-height: 0.82;
  letter-spacing: 0.035em;
  text-shadow: 0 24px 72px rgba(0, 0, 0, 0.34);
  text-transform: uppercase;
  white-space: nowrap;
}

.brand i {
  display: inline-block;
  margin: 0 0.08em;
  color: var(--cream);
  font-size: 0.24em;
  font-style: normal;
  opacity: 0.95;
  transform: translateY(-0.34em);
}

.subbrand {
  margin: 31px 0 0;
  color: rgba(255, 244, 232, 0.84);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  text-transform: uppercase;
  white-space: nowrap;
}

.line {
  width: 130px;
  height: 1px;
  margin: 27px auto 42px;
  background: linear-gradient(90deg, transparent, rgba(255, 244, 232, 0.72), transparent);
}

h1 {
  margin: 0;
  color: rgba(255, 244, 232, 0.86);
  direction: rtl;
  font-family: "Noto Serif Hebrew", "Times New Roman", serif;
  font-size: clamp(30px, 2.45vw, 48px);
  font-weight: 300;
  line-height: 1.32;
  letter-spacing: 0.16em;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.services-dock {
  position: relative;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: min(88vw, 820px);
  margin: 33px auto 0;
  padding: 11px 15px;
  border: 1px solid rgba(197, 154, 80, 0.42);
  border-radius: 999px;
  color: rgba(255, 244, 232, 0.86);
  background:
    linear-gradient(135deg, rgba(255, 244, 232, 0.08), rgba(255, 244, 232, 0.025)),
    rgba(12, 8, 5, 0.28);
  box-shadow:
    0 18px 58px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 244, 232, 0.12);
  backdrop-filter: blur(16px);
  direction: rtl;
  gap: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
  transform: translateX(-50%);
}

.services-dock::-webkit-scrollbar {
  display: none;
}

.services-dock li {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 18px;
  white-space: nowrap;
  transition:
    color 260ms ease,
    text-shadow 260ms ease,
    transform 260ms ease;
}

.services-dock li + li::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 18px;
  background: linear-gradient(180deg, transparent, rgba(197, 154, 80, 0.48), transparent);
  content: "";
  transform: translateY(-50%);
}

.services-dock span {
  color: rgba(217, 179, 111, 0.82);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.services-dock strong {
  font-family: "Noto Serif Hebrew", "Times New Roman", serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.services-dock li:hover {
  color: #fff7ec;
  text-shadow: 0 0 22px rgba(217, 179, 111, 0.26);
  transform: translateY(-2px);
}

.couple-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 24px auto 0;
  padding: 10px 18px;
  border: 1px solid rgba(217, 179, 111, 0.42);
  border-radius: 999px;
  color: rgba(255, 244, 232, 0.84);
  background: rgba(12, 8, 5, 0.22);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 244, 232, 0.1);
  backdrop-filter: blur(14px);
  cursor: pointer;
  direction: rtl;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  transition:
    border-color 260ms ease,
    color 260ms ease,
    background 260ms ease,
    transform 260ms ease;
}

.couple-cta:hover,
.couple-cta:focus-visible {
  border-color: rgba(217, 179, 111, 0.78);
  color: #fff7ec;
  background: rgba(255, 244, 232, 0.08);
  transform: translateY(-2px);
}

.login-sheet,
.couple-area {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  padding: max(18px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right))
    max(18px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
  opacity: 0;
  pointer-events: none;
  place-items: center;
  transition:
    opacity 260ms ease,
    visibility 260ms ease;
  visibility: hidden;
}

.login-sheet.is-open,
.couple-area.is-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.couple-area {
  height: 100dvh;
  min-height: 100svh;
  padding: 0;
  overflow-y: auto;
  place-items: stretch;
  background:
    radial-gradient(circle at 50% 14%, rgba(217, 179, 111, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(18, 14, 10, 0.96), rgba(11, 7, 5, 0.98));
}

.sheet-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 24%, rgba(217, 179, 111, 0.16), transparent 32%),
    rgba(6, 4, 3, 0.58);
  backdrop-filter: blur(14px);
}

.login-panel,
.couple-panel {
  position: relative;
  z-index: 1;
  width: min(94vw, 460px);
  max-height: min(760px, calc(100svh - 36px));
  padding: 28px;
  overflow: auto;
  border: 1px solid rgba(197, 154, 80, 0.36);
  border-radius: 26px;
  color: rgba(255, 244, 232, 0.88);
  background:
    linear-gradient(135deg, rgba(255, 244, 232, 0.11), rgba(255, 244, 232, 0.035)),
    rgba(16, 11, 7, 0.82);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 244, 232, 0.13);
  backdrop-filter: blur(20px);
  direction: rtl;
}

.couple-panel {
  display: grid;
  align-content: start;
  width: 100%;
  min-height: 100svh;
  max-height: none;
  padding: calc(46px + env(safe-area-inset-top)) max(22px, env(safe-area-inset-right))
    calc(34px + env(safe-area-inset-bottom)) max(22px, env(safe-area-inset-left));
  overflow: visible;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 244, 232, 0.075), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(217, 179, 111, 0.13), transparent 28%),
    rgba(16, 11, 7, 0.9);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.couple-panel > * {
  width: min(100%, 760px);
  margin-right: auto;
  margin-left: auto;
}

.couple-panel .sheet-close {
  top: calc(18px + env(safe-area-inset-top));
  left: max(18px, env(safe-area-inset-left));
  width: 42px;
  position: fixed;
  z-index: 2;
}

.sheet-close {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 244, 232, 0.2);
  border-radius: 999px;
  color: rgba(255, 244, 232, 0.82);
  background: rgba(255, 244, 232, 0.04);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  place-items: center;
}

.panel-eyebrow {
  margin: 0 0 10px;
  color: rgba(217, 179, 111, 0.84);
  direction: rtl;
  font-family: "Noto Serif Hebrew", "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.login-panel .panel-eyebrow {
  direction: ltr;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.login-panel h2,
.couple-panel h2 {
  margin: 0;
  color: #fff7ec;
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 300;
  line-height: 1.25;
}

.login-panel p,
.event-meta {
  margin: 12px 0 0;
  color: rgba(255, 244, 232, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.login-panel label {
  display: block;
  margin-top: 22px;
  color: rgba(255, 244, 232, 0.82);
  font-size: 13px;
}

.login-panel input {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border: 1px solid rgba(197, 154, 80, 0.36);
  border-radius: 16px;
  color: #fff7ec;
  background: rgba(255, 244, 232, 0.065);
  direction: ltr;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  outline: none;
}

.login-panel input:focus {
  border-color: rgba(217, 179, 111, 0.78);
  box-shadow: 0 0 0 3px rgba(217, 179, 111, 0.12);
}

.login-hint {
  font-size: 12px !important;
}

.login-error {
  min-height: 20px;
  color: #f2b3a0 !important;
  font-size: 12px !important;
}

.login-submit,
.primary-action,
.secondary-action,
.logout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    border-color 240ms ease,
    color 240ms ease,
    background 240ms ease,
    transform 240ms ease;
}

.login-submit,
.primary-action {
  width: 100%;
  border: 1px solid rgba(217, 179, 111, 0.64);
  color: #fff7ec;
  background: rgba(197, 154, 80, 0.22);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.login-submit:active,
.primary-action:active,
.secondary-action:active,
.logout-button:active,
.sheet-close:active {
  transform: scale(0.97);
}

.package-card {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(197, 154, 80, 0.34);
  border-radius: 20px;
  background: rgba(255, 244, 232, 0.06);
}

.package-card span {
  display: block;
  color: rgba(217, 179, 111, 0.78);
  font-size: 12px;
}

.package-card strong {
  display: block;
  margin-top: 7px;
  color: #fff7ec;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.45;
}

.rsvp-summary {
  margin-top: 18px;
}

.rsvp-summary > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(217, 179, 111, 0.78);
  font-size: 12px;
}

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

.status-card {
  min-width: 0;
  padding: 18px 12px;
  border: 1px solid rgba(255, 244, 232, 0.12);
  border-radius: 20px;
  background: rgba(255, 244, 232, 0.045);
}

.status-card span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 244, 232, 0.58);
  font-size: 12px;
}

.status-card strong {
  display: block;
  color: rgba(255, 244, 232, 0.9);
  direction: ltr;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 8vw, 58px);
  font-weight: 400;
  line-height: 0.95;
}

.couple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.secondary-action,
.logout-button {
  border: 1px solid rgba(255, 244, 232, 0.22);
  color: rgba(255, 244, 232, 0.78);
  background: rgba(255, 244, 232, 0.04);
}

.logout-button {
  width: min(100%, 760px);
  margin-top: 12px;
}

.scroll-cue {
  position: absolute;
  bottom: 7.4vh;
  left: 12.8vw;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 17px;
  color: rgba(255, 244, 232, 0.86);
  direction: rtl;
  font-size: 16px;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
}

.mouse {
  position: relative;
  width: 38px;
  height: 64px;
  border: 1.2px solid rgba(255, 244, 232, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.mouse::before {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 244, 232, 0.9);
  content: "";
  transform: translateX(-50%);
  animation: wheel 1.8s ease-in-out infinite;
}

.slider-mark {
  position: absolute;
  right: 8.2vw;
  bottom: 8.4vh;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 244, 232, 0.86);
  direction: ltr;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  letter-spacing: 0.1em;
}

.slider-mark span {
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0.92;
}

.slider-mark span::after {
  display: block;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 244, 232, 0.85), rgba(255, 244, 232, 0.08));
  content: "";
}

.slider-mark i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 244, 232, 0.76);
  opacity: 0.75;
}

.whatsapp-float {
  position: absolute;
  left: 5.5vw;
  bottom: 6.4vh;
  z-index: 12;
  display: grid;
  width: 52px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 244, 232, 0.42);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(255, 244, 232, 0.06);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  place-items: center;
  transition:
    border-color 280ms ease,
    color 280ms ease,
    background 280ms ease,
    transform 280ms ease;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  border-color: rgba(217, 179, 111, 0.78);
  color: var(--gold-2);
  background: rgba(255, 244, 232, 0.1);
  transform: translateY(-3px);
}

@keyframes hero-fade-first {
  0%,
  22% {
    opacity: 1;
  }

  30%,
  92% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes hero-fade {
  0% {
    opacity: 0;
  }

  8%,
  22% {
    opacity: 1;
  }

  30%,
  100% {
    opacity: 0;
  }
}

@keyframes hero-drift {
  0%,
  100% {
    transform: scale(1.035) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.07) translate3d(-0.55rem, 0.34rem, 0);
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(1.2rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wheel {
  0%,
  100% {
    opacity: 0.32;
    transform: translate(-50%, 0);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, 10px);
  }
}

@media (max-width: 1000px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  body {
    overflow: auto;
  }

  .hero {
    min-height: 860px;
  }

  .hero-slide img {
    object-position: 62% center;
  }

  .hero-media::before {
    background:
      linear-gradient(180deg, rgba(18, 14, 10, 0.86) 0%, rgba(18, 14, 10, 0.44) 42%, rgba(18, 14, 10, 0.86) 100%),
      linear-gradient(90deg, rgba(18, 14, 10, 0.72), rgba(18, 14, 10, 0.05));
  }

  .top-nav {
    top: 28px;
    right: 24px;
    left: 24px;
  }

  .nav-links {
    gap: 26px;
  }

  .nav-links a {
    font-size: 14px;
    letter-spacing: 0.08em;
    text-indent: 0.08em;
  }

  .socials {
    display: none;
  }

  .hero-content {
    top: 25vh;
    width: 86vw;
  }

  .brand {
    font-size: clamp(74px, 20vw, 118px);
  }

  .subbrand {
    font-size: 17px;
    letter-spacing: 0.28em;
    text-indent: 0.28em;
  }

  h1 {
    font-size: clamp(32px, 8vw, 48px);
    letter-spacing: 0.08em;
    white-space: normal;
  }

  .services-dock {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    width: min(86vw, 520px);
    max-width: 86vw;
    margin-top: 26px;
    padding: 10px 12px;
    border-radius: 26px;
    overflow: visible;
  }

  .services-dock li {
    justify-content: center;
    min-width: 0;
    padding: 8px 10px;
  }

  .services-dock li + li::before {
    display: none;
  }

  .services-dock strong {
    overflow: hidden;
    letter-spacing: 0;
    text-overflow: ellipsis;
  }

  .couple-cta {
    margin-top: 20px;
  }

  .scroll-cue {
    bottom: 36px;
    left: 28px;
  }

  .slider-mark {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    height: 100svh;
    min-height: 720px;
  }

  .hero-slide img {
    object-position: 56% center;
  }

  .hero-media::before {
    background:
      linear-gradient(180deg, rgba(18, 14, 10, 0.78) 0%, rgba(18, 14, 10, 0.34) 42%, rgba(18, 14, 10, 0.86) 100%),
      radial-gradient(circle at 50% 30%, rgba(255, 244, 232, 0.08), transparent 34%);
  }

  .top-nav {
    display: none;
  }

  .hero-content {
    top: clamp(112px, 18svh, 154px);
    width: 90vw;
  }

  .brand {
    font-size: clamp(68px, 20vw, 88px);
  }

  .subbrand {
    margin-top: 14px;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
  }

  .line {
    width: 86px;
    margin: 15px auto 20px;
  }

  h1 {
    font-size: clamp(23px, 6.6vw, 30px);
  }

  .services-dock {
    width: 90vw;
    max-width: 90vw;
    margin-top: 18px;
    padding: 8px;
  }

  .services-dock li {
    gap: 5px;
    padding: 7px 6px;
  }

  .services-dock span {
    font-size: 10px;
  }

  .services-dock strong {
    font-size: 11px;
  }

  .couple-cta {
    min-height: 42px;
    margin-top: 17px;
    padding-inline: 16px;
    font-size: 13px;
  }

  .whatsapp-float {
    left: max(18px, env(safe-area-inset-left));
    bottom: max(22px, env(safe-area-inset-bottom));
    width: 46px;
  }

  .whatsapp-float svg {
    width: 21px;
    height: 21px;
  }

  .login-panel {
    width: min(100%, 430px);
    padding: 24px 20px;
    border-radius: 24px;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) and (max-height: 740px) {
  .hero-content {
    top: clamp(84px, 13svh, 108px);
  }

  .brand {
    font-size: clamp(62px, 18vw, 78px);
  }

  .subbrand {
    margin-top: 11px;
  }

  .line {
    margin: 12px auto 16px;
  }

  .services-dock {
    margin-top: 14px;
  }

  .couple-cta {
    margin-top: 13px;
  }
}

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