@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap");

:root {
  --oak-ink: #1a1c1a;
  --oak-ink-soft: rgba(26, 28, 26, 0.78);
  --oak-panel: rgba(255, 255, 255, 0.9);
  --oak-panel-strong: rgba(255, 255, 255, 0.98);
  --oak-panel-dark: rgba(30, 32, 34, 0.9);
  --oak-line: rgba(116, 120, 120, 0.2);
  --oak-line-strong: rgba(116, 120, 120, 0.32);
  --oak-muted: rgba(68, 71, 72, 0.72);
  --oak-sand: #e3e2e0;
  --oak-ivory: #faf9f6;
  --oak-bronze: #d4af37;
  --oak-bronze-deep: #735c00;
  --oak-bronze-soft: rgba(212, 175, 55, 0.14);
  --oak-accent: #d4af37;
  --oak-accent-soft: rgba(212, 175, 55, 0.12);
  --oak-water: #5fc7d8;
  --oak-water-deep: #062331;
  --oak-water-soft: rgba(95, 199, 216, 0.14);
  --oak-glacier: #eaf7f9;
  --oak-ice: #f4fbfc;
  --oak-sea: #10252f;
  --oak-mist: #e8f3f5;
  --oak-white: #ffffff;
  --oak-danger: #ba1a1a;
  --oak-shadow: 0 24px 60px rgba(5, 5, 5, 0.08);
  --oak-shadow-soft: 0 16px 40px rgba(5, 5, 5, 0.05);
  --oak-radius-xl: 32px;
  --oak-radius-lg: 24px;
  --oak-radius-md: 18px;
  --oak-radius-sm: 14px;
  --font-heading: "Playfair Display", serif;
  --font-body: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(65% 42% at 82% 8%, rgba(95, 199, 216, 0.18), transparent 64%),
    linear-gradient(180deg, #f4fbfc 0%, #eef7f8 44%, #faf9f6 100%);
  color: var(--oak-ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  border-radius: 999px;
  background: var(--oak-white);
  color: var(--oak-ink);
  box-shadow: var(--oak-shadow-soft);
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--oak-bronze);
  outline-offset: 3px;
}

@keyframes heroContentRise {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroVideoSettle {
  from {
    transform: scale(1.035);
  }
  to {
    transform: scale(1);
  }
}

@keyframes heroWaterDrift {
  0% {
    background-position: 0% 62%, 0 0, 48px 28px;
    transform: translate3d(-1.2%, 0, 0) skewX(-3deg);
  }
  50% {
    background-position: 42% 74%, 90px 44px, -36px 68px;
    transform: translate3d(1.1%, 0.4%, 0) skewX(2deg);
  }
  100% {
    background-position: 100% 66%, 170px 86px, -92px 116px;
    transform: translate3d(-0.4%, -0.3%, 0) skewX(-2deg);
  }
}

@keyframes heroWaterPulse {
  0%,
  100% {
    opacity: 0.24;
  }
  50% {
    opacity: 0.38;
  }
}

@keyframes modalBackdropIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalPanelIn {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

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

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

button,
.btn {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(95, 199, 216, 0.2);
  background: rgba(4, 18, 26, 0.8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 138px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.nav-links,
.nav-actions {
  display: none;
}

.mobile-menu-button {
  display: inline-flex;
  min-width: 46px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--oak-white);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-menu {
  position: fixed;
  inset: 78px 0 auto;
  z-index: 45;
  display: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu a {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.25rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  border-color: #050505;
  background: #050505;
  color: #fffefb;
  box-shadow: 0 16px 34px rgba(5, 5, 5, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  border-color: var(--oak-bronze);
  background: var(--oak-sea);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
  color: var(--oak-white);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.nav-phone {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: min(860px, calc(100svh - 18px));
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-slider,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  filter: saturate(1.14) contrast(1.04) brightness(0.94) hue-rotate(5deg);
  transform-origin: center;
  animation: heroVideoSettle 1400ms ease both;
}

.hero-bg {
  z-index: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.88;
}

.hero-slider .hero-bg {
  opacity: 0;
}

.hero-slide {
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 6200ms ease;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  opacity: 0.88;
  transform: scale(1);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(112deg, rgba(1, 18, 28, 0.66), rgba(5, 54, 72, 0.34) 46%, rgba(95, 199, 216, 0.1)),
    linear-gradient(to top, rgba(1, 15, 24, 0.58), rgba(9, 57, 74, 0.16) 40%, transparent 74%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 8% -8% -10%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(70% 24% at 18% 76%, rgba(255, 255, 255, 0.18), transparent 64%),
    radial-gradient(44% 18% at 64% 68%, rgba(95, 199, 216, 0.18), transparent 62%),
    repeating-radial-gradient(ellipse at 26% 78%, transparent 0 18px, rgba(185, 238, 245, 0.16) 19px 21px, transparent 23px 58px);
  background-size: 150% 100%, 125% 95%, 620px 260px;
  filter: blur(0.55px);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.48) 46%, transparent 88%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.48) 46%, transparent 88%);
  mix-blend-mode: screen;
  opacity: 0.32;
  transform-origin: center;
  animation:
    heroWaterDrift 14s ease-in-out infinite alternate,
    heroWaterPulse 8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: none;
  display: grid;
  gap: 1.4rem;
  align-items: center;
  padding: clamp(4.8rem, 11svh, 7rem) 0 clamp(3.8rem, 9svh, 5.6rem);
  animation: heroContentRise 720ms cubic-bezier(0.2, 0.8, 0.2, 1) 120ms both;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
  color: var(--oak-bronze);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  color: var(--oak-white);
  font-size: clamp(2.45rem, 7vw, 5.8rem);
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
  text-wrap: balance;
}

.hero p {
  max-width: 590px;
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.8;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  text-wrap: pretty;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  max-width: 680px;
  margin-top: 1.2rem;
}

.hero-proof-row span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(185, 238, 245, 0.28);
  border-radius: 999px;
  background: rgba(185, 238, 245, 0.1);
  color: rgba(237, 253, 255, 0.9);
  padding: 0 0.85rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-advisory-card {
  display: none;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(185, 238, 245, 0.28);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(185, 238, 245, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(1, 24, 36, 0.42);
  box-shadow: 0 28px 70px rgba(1, 20, 30, 0.28);
  padding: 1.3rem;
  color: var(--oak-white);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-advisory-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(115deg, rgba(95, 199, 216, 0.18), transparent 44%);
  pointer-events: none;
}

.hero-advisory-card span,
.overview-note strong {
  display: block;
  color: var(--oak-water);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-advisory-card strong {
  position: relative;
  display: block;
  margin-top: 1.2rem;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.hero-advisory-card p {
  position: relative;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.72;
}

.hero-advisory-card a {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 1.2rem;
  color: #b9eef5;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.motion-ready [data-animate] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 640ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 220ms ease,
    border-color 220ms ease;
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready [data-animate].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-reduced [data-animate] {
  opacity: 1;
  transform: none;
}

.hero-fact-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-fact {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem 1.1rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-fact span,
.highlight-card span,
.detail-card span,
.payment-card span,
.amenity-index {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-fact strong {
  display: block;
  margin-top: 0.55rem;
  color: var(--oak-white);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  line-height: 1.05;
}

.details {
  position: relative;
  z-index: 3;
  margin-top: -2.4rem;
}

.details-shell {
  border-radius: var(--oak-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 251, 245, 0.9);
  box-shadow: var(--oak-shadow);
  padding: 1rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.details-grid,
.highlight-grid,
.insight-grid,
.payment-grid,
.amenity-grid,
.trust-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
}

.detail-card,
.highlight-card,
.insight-card,
.payment-card,
.amenity-card,
.trust-card,
.faq-card,
.about-panel,
.location-panel,
.form-panel,
.form-intro,
.thank-you-panel,
.footer-panel,
.gallery {
  border: 1px solid var(--oak-line);
  background: var(--oak-panel);
  box-shadow: var(--oak-shadow-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.detail-card,
.highlight-card,
.insight-card,
.payment-card,
.amenity-card,
.trust-card,
.faq-card {
  border-radius: var(--oak-radius-lg);
  padding: 1.25rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.highlight-card:hover,
.insight-card:hover,
.sara-card:hover,
.thank-you-summary-card:hover,
.thank-you-step:hover {
  transform: translate3d(0, -3px, 0);
  border-color: rgba(192, 161, 95, 0.32);
  box-shadow: var(--oak-shadow-soft);
}

.detail-card span,
.highlight-card span,
.amenity-index {
  color: var(--oak-muted);
}

.detail-card p,
.insight-card p,
.payment-card p,
.amenity-card p,
.trust-card p,
.faq-card p,
.section-copy,
.footer-panel p,
.thank-you-panel p {
  margin: 0.8rem 0 0;
  color: var(--oak-muted);
  line-height: 1.8;
}

.detail-card p,
.payment-card strong,
.amenity-card strong,
.insight-card strong,
.trust-card strong,
.faq-card strong {
  color: var(--oak-ink);
}

.section {
  padding: 3.5rem 0;
}

.section-kicker {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.section-title {
  max-width: 760px;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
}

.section-copy {
  max-width: 720px;
  font-size: 1rem;
}

.quick-highlights,
.amenities-section,
.trust-section {
  background:
    radial-gradient(60% 42% at 88% 8%, rgba(95, 199, 216, 0.14), transparent 62%),
    rgba(244, 251, 252, 0.74);
}

.quick-highlights {
  position: relative;
  overflow: hidden;
}

.quick-highlights::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(95, 199, 216, 0.44), transparent);
}

.overview-layout {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.overview-copy {
  min-width: 0;
}

.overview-copy .section-kicker {
  margin-bottom: 1.2rem;
}

.overview-note {
  border: 1px solid rgba(95, 199, 216, 0.26);
  border-radius: var(--oak-radius-lg);
  background:
    linear-gradient(145deg, rgba(95, 199, 216, 0.12), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.86);
  box-shadow: var(--oak-shadow-soft);
  padding: 1rem;
  margin-top: 1rem;
}

.overview-note p {
  margin: 0.55rem 0 0;
  color: var(--oak-muted);
  line-height: 1.75;
}

.overview-visual {
  min-width: 0;
}

.payment-section,
.gallery-section {
  background: linear-gradient(180deg, rgba(95, 199, 216, 0.1), rgba(255, 255, 255, 0.08));
}

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

.highlight-card {
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(145deg, rgba(95, 199, 216, 0.12), rgba(250, 249, 246, 0.72)),
    rgba(255, 255, 255, 0.95);
}

.highlight-card strong {
  display: block;
  margin-top: 1rem;
  color: var(--oak-ink);
  font-family: var(--font-heading);
  font-size: clamp(1.42rem, 3vw, 2.1rem);
  line-height: 1.04;
  white-space: pre-line;
}

.about-panel {
  border-radius: var(--oak-radius-xl);
  padding: 1.5rem;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.86);
}

.about-copy .section-copy {
  margin-bottom: 0;
}

.insight-card {
  background: rgba(255, 255, 255, 0.9);
}

.sara-section {
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.075), rgba(255, 255, 255, 0.18)),
    rgba(239, 238, 235, 0.5);
}

.sara-panel {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.sara-copy {
  align-self: center;
}

.sara-list {
  display: grid;
  gap: 0.72rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.sara-list li {
  position: relative;
  border: 1px solid rgba(26, 28, 26, 0.08);
  border-radius: var(--oak-radius-md);
  background: rgba(255, 255, 255, 0.72);
  color: var(--oak-ink-soft);
  padding: 0.78rem 0.95rem 0.78rem 2.25rem;
  font-size: 0.9rem;
  line-height: 1.55;
}

.sara-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.34rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--oak-accent);
}

.sara-card {
  border: 1px solid var(--oak-line);
  border-radius: var(--oak-radius-xl);
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.12), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--oak-shadow-soft);
  padding: 1.25rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.sara-avatar {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #050505, var(--oak-sea));
  color: var(--oak-white);
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
}

.sara-card strong {
  display: block;
  color: var(--oak-ink);
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
}

.sara-card p,
.sara-card span {
  display: block;
  margin: 0.65rem 0 0;
  color: var(--oak-muted);
  line-height: 1.7;
}

.sara-card .btn {
  width: 100%;
  margin-top: 1rem;
}

.insight-card strong,
.trust-card strong,
.faq-card strong,
.amenity-card strong,
.payment-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  line-height: 1.14;
}

.payment-grid {
  align-items: stretch;
}

.payment-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(239, 238, 235, 0.86)),
    rgba(255, 255, 255, 0.9);
}

.payment-card::after {
  content: "";
  position: absolute;
  inset: auto 1.25rem 0.95rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.42), transparent);
}

.payment-value {
  color: var(--oak-bronze-deep);
}

.payment-card strong {
  margin-top: 0.8rem;
}

.amenity-card {
  background:
    linear-gradient(145deg, var(--oak-accent-soft), transparent),
    rgba(255, 255, 255, 0.9);
}

.amenity-index {
  color: var(--oak-bronze-deep);
}

.glass-card {
  overflow: hidden;
  border-radius: var(--oak-radius-xl);
}

.gallery {
  overflow: hidden;
  border-radius: var(--oak-radius-xl);
  touch-action: pan-y;
  border: 1px solid rgba(185, 238, 245, 0.62);
  background: linear-gradient(180deg, rgba(244, 251, 252, 0.9), rgba(255, 255, 255, 0.94));
  box-shadow: 0 28px 76px rgba(6, 35, 49, 0.15);
}

.compact-gallery {
  margin-top: 1.2rem;
}

.gallery-track {
  display: flex;
  width: 100%;
  transition: transform 480ms ease;
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.gallery-image {
  position: relative;
  overflow: hidden;
  min-height: clamp(300px, 58vw, 520px);
  aspect-ratio: 16 / 9;
  transform: scale(1.001);
  transition: transform 900ms ease;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.gallery:hover .gallery-image {
  transform: scale(1.025);
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-dots,
.gallery-arrows {
  display: flex;
  gap: 0.6rem;
}

.gallery-dot,
.gallery-arrow {
  border: 1px solid rgba(95, 199, 216, 0.32);
  background: rgba(244, 251, 252, 0.84);
  color: var(--oak-water-deep);
  box-shadow: 0 10px 24px rgba(6, 35, 49, 0.08);
}

.gallery-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  padding: 0;
}

.gallery-dot.is-active {
  background: var(--oak-water);
}

.gallery-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.gallery-arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(95, 199, 216, 0.58);
  background: var(--oak-white);
}

.location-panel {
  border-radius: var(--oak-radius-xl);
  padding: 1.45rem;
  display: grid;
  gap: 1.2rem;
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.06), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.82);
}

.location-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.location-list li {
  position: relative;
  border: 1px solid rgba(26, 28, 26, 0.08);
  border-radius: var(--oak-radius-md);
  background: rgba(255, 255, 255, 0.7);
  color: var(--oak-ink-soft);
  padding: 0.9rem 1rem 0.9rem 2.2rem;
}

.location-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.45rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--oak-accent);
}

.contact-layout {
  display: grid;
  gap: 1rem;
}

.form-intro,
.form-panel,
.thank-you-panel {
  border-radius: var(--oak-radius-xl);
  padding: 1.25rem;
}

.form-intro {
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.13), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.88);
}

.intro-points {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.intro-points span {
  border: 1px solid rgba(26, 28, 26, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  padding: 0.72rem 0.95rem;
  color: var(--oak-ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.field-grid {
  display: grid;
  gap: 0.85rem;
}

.field {
  margin-bottom: 0.75rem;
}

.field-full {
  grid-column: 1 / -1;
}

#nameField,
#phoneField,
#emailField,
#propertyTypeField,
#messageField {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(26, 28, 26, 0.62);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(26, 28, 26, 0.14);
  border-radius: var(--oak-radius-sm);
  background: rgba(255, 255, 255, 0.82);
  color: rgba(26, 28, 26, 0.9);
  padding: 0.85rem 0.95rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(26, 28, 26, 0.42);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(192, 161, 95, 0.68);
  box-shadow: 0 0 0 3px rgba(192, 161, 95, 0.16);
  background: var(--oak-panel-strong);
}

.phone-input-row {
  display: grid;
  gap: 0.65rem;
  align-items: start;
  grid-template-columns: minmax(170px, 0.62fr) minmax(0, 1fr);
}

.country-picker {
  position: relative;
}

.country-picker-trigger {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(26, 28, 26, 0.14);
  border-radius: var(--oak-radius-sm);
  background: rgba(255, 255, 255, 0.82);
  color: rgba(26, 28, 26, 0.9);
  padding: 0.85rem 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.country-picker-current {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.42rem;
}

.country-picker-flag,
.country-picker-code,
.country-picker-chevron {
  flex: 0 0 auto;
}

.country-picker-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-picker-code,
.country-picker-chevron {
  color: rgba(26, 28, 26, 0.54);
}

.country-picker.is-open .country-picker-trigger,
.country-picker-trigger:focus-visible {
  border-color: rgba(192, 161, 95, 0.68);
  box-shadow: 0 0 0 3px rgba(192, 161, 95, 0.16);
  outline: none;
}

.country-picker-panel {
  position: absolute;
  top: calc(100% + 0.42rem);
  left: 0;
  z-index: 20;
  width: min(380px, 92vw);
  border: 1px solid rgba(26, 28, 26, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 48px rgba(26, 28, 26, 0.14);
  padding: 0.75rem;
}

.country-picker-search {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(26, 28, 26, 0.12);
  border-radius: 14px;
  background: rgba(239, 238, 235, 0.86);
  color: rgba(26, 28, 26, 0.92);
  padding: 0.78rem 0.9rem;
  margin-bottom: 0.65rem;
}

.country-picker-search::placeholder {
  color: rgba(26, 28, 26, 0.45);
}

.country-picker-search:focus {
  border-color: rgba(192, 161, 95, 0.68);
  box-shadow: 0 0 0 3px rgba(192, 161, 95, 0.16);
  outline: none;
}

.country-picker-list {
  display: grid;
  gap: 0.28rem;
  max-height: 260px;
  overflow: auto;
}

.country-picker-option {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: rgba(26, 28, 26, 0.88);
  padding: 0.7rem 0.75rem;
  display: grid;
  align-items: center;
  gap: 0.5rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  text-align: left;
}

.country-picker-option:hover,
.country-picker-option:focus-visible,
.country-picker-option.is-selected {
  border-color: rgba(212, 175, 55, 0.24);
  background: var(--oak-accent-soft);
  outline: none;
}

.country-picker-option-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-picker-option-code,
.country-picker-empty {
  color: rgba(26, 28, 26, 0.58);
}

.country-picker-empty {
  margin: 0.55rem 0 0;
  font-size: 0.9rem;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea,
.field.has-error .country-picker-trigger {
  border-color: rgba(198, 95, 95, 0.76);
  box-shadow: 0 0 0 3px rgba(198, 95, 95, 0.12);
}

.field-error {
  display: none;
  margin-top: 0.45rem;
  color: var(--oak-danger);
  font-size: 0.82rem;
}

.field.has-error .field-error {
  display: block;
}

.disclaimer {
  margin: 0.7rem 0 0;
  color: rgba(26, 28, 26, 0.56);
  font-size: 0.78rem;
  line-height: 1.7;
}

.form-panel .btn {
  width: 100%;
  margin-top: 0.95rem;
}

.form-error,
.form-success {
  display: none;
  margin-top: 1rem;
  border-radius: var(--oak-radius-md);
  padding: 1rem;
}

.form-error {
  border: 1px solid rgba(198, 95, 95, 0.22);
  background: rgba(198, 95, 95, 0.08);
  color: #8e4242;
}

.form-error.is-visible {
  display: block;
}

.form-success {
  border: 1px solid rgba(212, 175, 55, 0.24);
  background: var(--oak-accent-soft);
}

.form-success.is-visible {
  display: block;
}

.form-success h3 {
  font-size: 2rem;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal {
  position: fixed;
  right: clamp(0.85rem, 2vw, 1.5rem);
  bottom: clamp(0.85rem, 2vw, 1.5rem);
  z-index: 90;
  width: min(560px, calc(100vw - 1.7rem));
  pointer-events: none;
}

.lead-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: min(86svh, 820px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--oak-radius-xl);
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.1), rgba(250, 249, 246, 0.9)),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 32px 90px rgba(5, 5, 5, 0.28);
  padding: 1.15rem;
  pointer-events: auto;
  animation: modalPanelIn 240ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.lead-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(26, 28, 26, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--oak-ink);
  font-size: 1.35rem;
  line-height: 1;
}

.lead-modal-panel .eyebrow {
  margin-right: 3rem;
  color: var(--oak-bronze-deep);
}

.lead-modal-panel h2 {
  max-width: 430px;
  color: var(--oak-ink);
  font-size: clamp(2.3rem, 7vw, 4.2rem);
}

.lead-modal-panel > p {
  max-width: 460px;
  margin: 0.75rem 0 1rem;
  color: var(--oak-muted);
  line-height: 1.7;
}

.popup-lead-form {
  display: grid;
  gap: 0.75rem;
}

.popup-lead-form .field {
  margin-bottom: 0;
}

.popup-phone-row {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: minmax(92px, 0.35fr) minmax(0, 1fr);
}

.popup-lead-form textarea {
  min-height: 96px;
}

.trust-card,
.faq-card {
  background: rgba(255, 255, 255, 0.9);
}

.permit-note {
  margin: 1rem 0 0;
  color: rgba(26, 28, 26, 0.52);
  font-size: 0.8rem;
  line-height: 1.6;
}

.footer {
  padding: 0 0 5rem;
}

.footer-panel {
  border-radius: var(--oak-radius-xl);
  padding: 1.4rem;
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
}

.footer-grid strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.65rem;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.footer-links a {
  color: var(--oak-ink-soft);
}

.footer-note {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--oak-line);
}

.mobile-contact-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 44;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 0.9rem 1rem calc(0.9rem + env(safe-area-inset-bottom, 0px));
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-contact-bar a {
  min-height: 50px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-contact-bar a:first-child {
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--oak-white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-whatsapp {
  border: 1px solid var(--oak-bronze);
  background: #050505;
  color: #fffefb;
}

.qr-badge {
  position: fixed;
  left: max(16px, env(safe-area-inset-left, 0px));
  bottom: max(16px, env(safe-area-inset-bottom, 0px));
  z-index: 43;
  width: clamp(54px, 5vw, 72px);
  aspect-ratio: 1;
  padding: 6px;
  border: 1px solid rgba(95, 199, 216, 0.34);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(5, 5, 5, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: none;
  user-select: none;
}

.qr-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  background: var(--oak-white);
}

.thank-you-shell {
  padding-top: 2rem;
}

.thank-you-panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.9);
}

.thank-you-panel .eyebrow {
  justify-content: center;
}

.thank-you-panel h1 {
  color: var(--oak-ink);
  font-size: clamp(2.6rem, 8vw, 5.6rem);
}

.thank-you-summary {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
}

.thank-you-summary-card {
  border: 1px solid rgba(26, 28, 26, 0.08);
  border-radius: var(--oak-radius-md);
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.82);
  padding: 0.95rem 1rem;
  text-align: left;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.thank-you-summary-card span {
  display: block;
  color: rgba(26, 28, 26, 0.52);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.thank-you-summary-card strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--oak-ink);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  line-height: 1.04;
}

.thank-you-steps {
  display: grid;
  gap: 0.85rem;
  margin: 1.8rem 0 0;
  text-align: left;
}

.thank-you-step {
  border: 1px solid rgba(26, 28, 26, 0.08);
  border-radius: var(--oak-radius-lg);
  background: rgba(255, 255, 255, 0.68);
  padding: 1rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.thank-you-step span {
  display: block;
  color: var(--oak-sea);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.thank-you-step strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--oak-ink);
  font-family: var(--font-heading);
  font-size: 1.38rem;
  line-height: 1.1;
}

.thank-you-step p {
  margin: 0.55rem 0 0;
  color: var(--oak-muted);
  line-height: 1.65;
}

.thank-you-reassurance {
  margin-top: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: var(--oak-radius-lg);
  background: rgba(239, 238, 235, 0.78);
  padding: 1rem;
  text-align: left;
}

.thank-you-reassurance strong {
  display: block;
  color: var(--oak-ink);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  line-height: 1.1;
}

.thank-you-reassurance p {
  margin: 0.55rem 0 0;
  color: var(--oak-muted);
  line-height: 1.7;
}

.thank-you-panel .cta-row {
  margin-top: 1.35rem;
  align-items: center;
}

.thank-you-panel .btn-ghost {
  border-color: rgba(26, 28, 26, 0.16);
  background: rgba(255, 255, 255, 0.7);
  color: var(--oak-ink);
}

.thank-you-note {
  margin-top: 1.1rem;
  color: var(--oak-muted);
  font-size: 0.78rem;
}

@media (max-width: 699px) {
  .qr-badge {
    left: max(10px, env(safe-area-inset-left, 0px));
    bottom: calc(86px + env(safe-area-inset-bottom, 0px));
    width: 54px;
    padding: 4px;
  }

  .hero {
    min-height: calc(100svh - 78px);
  }

  .hero-video {
    object-position: 34% center;
  }

  .hero-content {
    padding: 3.6rem 0 5.4rem;
    transform: translateY(-1rem);
  }

  .hero .eyebrow {
    gap: 0.55rem;
    font-size: 0.56rem;
    letter-spacing: 0.18em;
  }

  .hero .eyebrow::before {
    width: 2rem;
  }

  .hero h1 {
    max-width: 11.5ch;
    font-size: clamp(2rem, 8.4vw, 2.45rem);
    line-height: 1.02;
  }

  .hero p {
    max-width: 34ch;
    font-size: 0.93rem;
    line-height: 1.68;
  }

  .hero-proof-row {
    gap: 0.42rem;
    margin-top: 1rem;
  }

  .hero-proof-row span {
    min-height: 32px;
    padding: 0 0.7rem;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .hero .cta-row {
    margin-top: 1.35rem;
  }

  .hero .btn {
    width: 100%;
    max-width: 360px;
    padding: 0 1rem;
    letter-spacing: 0.12em;
  }
}

@media (min-width: 700px) {
  .hero-fact-grid,
  .details-grid,
  .payment-grid,
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .insight-grid,
  .amenity-grid,
  .trust-grid,
  .faq-grid,
  .thank-you-summary,
  .thank-you-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .sara-panel {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  }

  .contact-layout {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

@media (min-width: 1024px) {
  .shell {
    width: min(1220px, calc(100% - 48px));
  }

  .topbar {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }

  .nav-links a {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color 180ms ease;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    color: var(--oak-white);
    outline: none;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .mobile-menu-button,
  .mobile-menu,
  .mobile-contact-bar {
    display: none;
  }

  .hero-content {
    grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.42fr);
    padding: clamp(5.8rem, 12svh, 8rem) 0 clamp(4.8rem, 9svh, 6.2rem);
  }

  .hero-advisory-card {
    display: block;
    justify-self: end;
    max-width: 360px;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
  }

  .hero-fact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .details {
    margin-top: -4rem;
  }

  .details-shell {
    padding: 1.25rem;
  }

  .highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .overview-layout {
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
    gap: 2rem;
  }

  .overview-copy .highlight-grid {
    grid-template-columns: 1fr;
  }

  .highlight-card {
    min-height: 146px;
  }

  .about-panel {
    padding: 2rem;
  }

  .insight-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .payment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .amenity-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .thank-you-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .thank-you-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-image {
    min-height: 560px;
  }

  .location-panel {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
    padding: 1.8rem;
  }

  .form-intro,
  .form-panel,
  .thank-you-panel,
  .footer-panel {
    padding: 1.7rem;
  }
}

@media (min-width: 1280px) {
  .section {
    padding: 4.5rem 0;
  }

  .hero p {
    font-size: 1.06rem;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 0.9fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
}

.is-rtl .hero-content,
.is-rtl .section-title,
.is-rtl .section-copy,
.is-rtl .form-intro,
.is-rtl .form-panel {
  text-align: right;
}

/* Local design preview based on the supplied navy/gold waterfront direction. */
:root {
  --oak-ink: #1b1b1d;
  --oak-ink-soft: rgba(27, 27, 29, 0.76);
  --oak-panel: rgba(255, 255, 255, 0.72);
  --oak-panel-strong: #ffffff;
  --oak-line: rgba(153, 178, 182, 0.2);
  --oak-line-strong: rgba(153, 178, 182, 0.34);
  --oak-muted: rgba(68, 71, 77, 0.76);
  --oak-ivory: #f7f4eb;
  --oak-bronze: #c5a059;
  --oak-bronze-deep: #5d4201;
  --oak-bronze-soft: rgba(197, 160, 89, 0.14);
  --oak-accent: #c5a059;
  --oak-accent-soft: rgba(197, 160, 89, 0.12);
  --oak-water: #99b2b6;
  --oak-water-deep: #0b1b32;
  --oak-water-soft: rgba(153, 178, 182, 0.16);
  --oak-glacier: #d9e8ec;
  --oak-ice: #fbf9fb;
  --oak-sea: #0b1b32;
  --oak-mist: #e4e2e4;
  --oak-shadow: 0 18px 48px rgba(11, 27, 50, 0.1);
  --oak-shadow-soft: 0 12px 28px rgba(11, 27, 50, 0.07);
  --oak-radius-xl: 8px;
  --oak-radius-lg: 8px;
  --oak-radius-md: 8px;
  --oak-radius-sm: 8px;
  --font-body: "Montserrat", sans-serif;
}

body {
  background: var(--oak-ice);
}

.topbar {
  border-bottom: 1px solid rgba(247, 244, 235, 0.1);
  background: var(--oak-sea);
  box-shadow: 0 8px 24px rgba(11, 27, 50, 0.12);
}

.nav {
  min-height: 64px;
}

.brand img {
  width: 132px;
  max-height: 42px;
}

.mobile-menu-button {
  min-height: 42px;
  border-color: transparent;
  background: var(--oak-bronze);
  color: var(--oak-sea);
}

.btn {
  min-height: 48px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.btn-primary {
  border-color: var(--oak-bronze);
  background: var(--oak-bronze);
  color: var(--oak-sea);
  box-shadow: 0 14px 32px rgba(197, 160, 89, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  border-color: var(--oak-bronze);
  background: #d6b875;
  color: var(--oak-sea);
}

.btn-ghost {
  border-color: rgba(247, 244, 235, 0.34);
  background: rgba(247, 244, 235, 0.08);
  color: var(--oak-ivory);
}

.hero {
  min-height: min(760px, 85svh);
  justify-content: center;
}

.hero-video {
  filter: saturate(1.05) contrast(1.02) brightness(0.98);
}

.hero-shade {
  background:
    linear-gradient(to bottom, rgba(11, 27, 50, 0.4), rgba(11, 27, 50, 0.82)),
    linear-gradient(90deg, rgba(11, 27, 50, 0.22), rgba(11, 27, 50, 0.06));
}

.hero::after {
  opacity: 0.16;
  mix-blend-mode: screen;
}

.hero-content {
  display: block;
  width: min(100%, calc(100vw - 32px));
  padding: 5.8rem 0 5.2rem;
  text-align: center;
}

.hero-copy {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.eyebrow {
  display: block;
  margin-bottom: 1rem;
  color: var(--oak-bronze);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  display: none;
}

h1,
h2,
h3 {
  font-weight: 700;
}

h1 {
  max-width: 760px;
  margin: 0 auto;
  font-size: 3rem;
  line-height: 1.08;
  color: var(--oak-ivory);
}

.hero p {
  max-width: 680px;
  margin: 1.2rem auto 0;
  color: rgba(217, 232, 236, 0.92);
  font-size: 1.04rem;
  line-height: 1.72;
}

.hero-proof-row {
  justify-content: center;
  width: 100%;
  margin: 2rem auto 0;
}

.hero-proof-row span {
  border-color: rgba(197, 160, 89, 0.32);
  background: rgba(11, 27, 50, 0.5);
  color: rgba(247, 244, 235, 0.92);
}

.hero .cta-row {
  justify-content: center;
  margin-top: 2.1rem;
}

.hero-advisory-card {
  display: none !important;
}

.section {
  padding: 4rem 0;
}

.visual-mosaic-section {
  background: var(--oak-ice);
  overflow: hidden;
}

.visual-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.mosaic-item {
  position: relative;
  min-height: 180px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--oak-mist);
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.mosaic-item:hover img {
  transform: scale(1.06);
}

.mosaic-item-1 {
  grid-column: span 2;
  min-height: 280px;
}

.quick-highlights {
  background: var(--oak-ivory);
}

.quick-highlights::before {
  display: none;
}

.overview-layout {
  display: block;
}

.overview-copy {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.section-kicker {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-title {
  max-width: 780px;
  margin: 0 auto;
  color: var(--oak-sea);
  font-size: 2rem;
  line-height: 1.25;
}

.section-copy {
  max-width: 680px;
  margin: 1rem auto 0;
  color: var(--oak-muted);
}

.highlight-grid {
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 2rem;
  border: 1px solid rgba(153, 178, 182, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.highlight-card {
  min-height: 0;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(153, 178, 182, 0.14);
  background: transparent;
  box-shadow: none;
  padding: 1.4rem;
  text-align: left;
}

.highlight-card:last-child {
  border-bottom: 0;
}

.highlight-card:hover {
  transform: none;
  box-shadow: none;
}

.highlight-card span {
  color: var(--oak-water);
  font-size: 0.62rem;
}

.highlight-card strong {
  color: var(--oak-sea);
  font-size: 1.35rem;
  white-space: pre-line;
}

.overview-note {
  max-width: 740px;
  margin: 1.8rem auto 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.overview-note strong {
  color: var(--oak-bronze-deep);
}

.sara-section {
  background: var(--oak-mist);
}

.sara-panel {
  display: block;
  max-width: 800px;
  text-align: center;
}

.sara-copy {
  max-width: 720px;
  margin: 0 auto;
}

.sara-card {
  margin-top: 2rem;
  border-color: rgba(153, 178, 182, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(11, 27, 50, 0.08);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  text-align: left;
}

.sara-card:hover {
  transform: none;
  box-shadow: 0 14px 34px rgba(11, 27, 50, 0.08);
}

.sara-profile {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.sara-avatar {
  width: 80px;
  height: 80px;
  margin: 0;
  border: 2px solid rgba(197, 160, 89, 0.24);
  background: var(--oak-sea);
  color: var(--oak-bronze);
}

.sara-card strong {
  color: var(--oak-sea);
  font-size: 1.5rem;
}

.sara-list {
  gap: 1rem;
  margin: 0;
}

.sara-list li {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0 0 0 2rem;
  color: var(--oak-ink);
}

.sara-list li::before {
  top: 0.45rem;
  width: 0.62rem;
  height: 0.62rem;
  background: var(--oak-bronze);
}

.sara-card .btn {
  margin-top: 0;
}

.sara-card > span {
  margin-top: 0;
}

.motion-ready .sara-card .sara-list li {
  opacity: 1;
  transform: none;
  transition: none;
}

.contact-section {
  background: var(--oak-ice);
}

.contact-layout {
  align-items: start;
  gap: 3rem;
}

.form-intro {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.form-intro .section-kicker,
.form-intro .section-title,
.form-intro .section-copy {
  margin-left: 0;
  text-align: left;
}

.intro-points {
  gap: 1.25rem;
  margin-top: 2.2rem;
}

.intro-points span {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--oak-muted);
  padding: 0 0 0 3rem;
  position: relative;
}

.intro-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.2rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(197, 160, 89, 0.34);
  border-radius: 999px;
}

.intro-points span::after {
  content: "";
  position: absolute;
  left: 0.72rem;
  top: 0.48rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--oak-bronze);
}

.form-panel {
  border-color: rgba(153, 178, 182, 0.12);
  border-radius: 8px;
  background: var(--oak-ivory);
  box-shadow: none;
  padding: 1.5rem;
}

.field label {
  color: var(--oak-water);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.field input,
.field select,
.field textarea,
.country-picker-trigger {
  min-height: 54px;
  border-color: rgba(153, 178, 182, 0.24);
  border-radius: 8px;
  background: #ffffff;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.country-picker-trigger:focus-visible {
  border-color: var(--oak-bronze);
  box-shadow: 0 0 0 1px var(--oak-bronze);
}

.footer {
  background: var(--oak-sea);
  color: var(--oak-ivory);
  padding: 4rem 0 calc(5rem + env(safe-area-inset-bottom, 0px));
}

.footer-panel {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.footer-grid strong {
  color: var(--oak-bronze);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.footer-panel p,
.footer-links a {
  color: rgba(247, 244, 235, 0.78);
}

.mobile-contact-bar {
  left: 0;
  right: 0;
  width: auto;
  max-width: 100%;
  display: flex;
  gap: 0;
  padding: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(11, 27, 50, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.mobile-contact-bar a {
  flex: 0 0 50%;
  width: 50%;
  max-width: 100%;
  min-height: 64px;
  border-radius: 0;
  color: var(--oak-sea);
}

.mobile-contact-bar a:first-child {
  border: 0;
  border-right: 1px solid rgba(153, 178, 182, 0.16);
  background: transparent;
  color: var(--oak-sea);
}

.btn-whatsapp {
  border: 0;
  background: transparent;
  color: #25d366;
}

@media (max-width: 699px) {
  .hero {
    min-height: calc(85svh - 64px);
  }

  .hero-content {
    padding: 3.9rem 0 4.2rem;
    transform: none;
  }

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

  .hero .eyebrow {
    max-width: 27ch;
    margin-inline: auto;
    line-height: 1.45;
  }

  .hero h1 {
    max-width: 11.8ch;
    font-size: clamp(1.95rem, 8.2vw, 2.18rem);
    line-height: 1.12;
  }

  .hero p {
    max-width: min(30ch, 100%);
    font-size: 0.92rem;
    line-height: 1.66;
  }

  .hero-proof-row {
    display: grid;
    grid-template-columns: 1fr;
    width: min(286px, 100%);
    gap: 0.48rem;
    margin-top: 1.55rem;
  }

  .hero-proof-row span {
    width: 100%;
    min-height: 34px;
    justify-content: center;
    padding: 0.58rem 0.75rem;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
  }

  .hero .cta-row {
    align-items: center;
    justify-content: center;
    width: min(100%, calc(100vw - 40px));
    margin-top: 1.7rem;
    margin-inline: auto;
  }

  .hero .btn {
    width: 100%;
    min-width: 0;
    max-width: 300px;
    margin-inline: auto;
    padding-inline: 0.75rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  .section {
    padding: 4rem 0;
  }

  .visual-mosaic-grid {
    grid-auto-rows: 160px;
  }

  .mosaic-item {
    min-height: 0;
  }

  .mosaic-item-1,
  .mosaic-item-4 {
    grid-column: span 2;
  }

  .contact-layout {
    gap: 2rem;
  }

  .highlight-card {
    text-align: center;
  }

  .mobile-contact-bar a {
    min-width: 0;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    overflow: hidden;
  }

  .mobile-contact-bar .btn-whatsapp {
    font-size: 0;
  }

  .mobile-contact-bar .btn-whatsapp::after {
    content: "CHAT";
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
  }
}

@media (min-width: 700px) {
  h1 {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .visual-mosaic-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(3, 180px);
  }

  .mosaic-item {
    min-height: 0;
  }

  .mosaic-item-1 {
    grid-column: span 2;
    grid-row: span 2;
  }

  .mosaic-item-4 {
    grid-column: span 2;
  }

  .highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .overview-copy .highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .highlight-card {
    border-bottom: 0;
    border-right: 1px solid rgba(153, 178, 182, 0.14);
  }

  .highlight-card:last-child {
    border-right: 0;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.35rem;
  }

  .nav {
    min-height: 72px;
  }

  .hero-content {
    padding: 6.4rem 0 6rem;
  }

  .visual-mosaic-grid {
    grid-template-rows: repeat(3, 200px);
  }

  .contact-layout {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  }

  .form-intro {
    position: sticky;
    top: 96px;
  }

  .form-panel {
    padding: 2.5rem;
  }
}

/* Cold glass preview layer. */
:root {
  --oak-ink: #102033;
  --oak-ink-soft: rgba(16, 32, 51, 0.78);
  --oak-panel: rgba(255, 255, 255, 0.46);
  --oak-panel-strong: rgba(255, 255, 255, 0.68);
  --oak-line: rgba(148, 190, 204, 0.3);
  --oak-line-strong: rgba(120, 170, 188, 0.42);
  --oak-muted: rgba(55, 76, 96, 0.72);
  --oak-ivory: #f8fcff;
  --oak-water: #8fc7d7;
  --oak-water-soft: rgba(143, 199, 215, 0.2);
  --oak-glacier: #e7f4f8;
  --oak-ice: #f4fbfd;
  --oak-mist: #edf6f9;
  --oak-shadow: 0 22px 58px rgba(10, 42, 68, 0.12);
  --oak-shadow-soft: 0 16px 42px rgba(10, 42, 68, 0.08);
}

body {
  background:
    radial-gradient(62% 48% at 14% 14%, rgba(143, 199, 215, 0.24), transparent 62%),
    radial-gradient(52% 42% at 86% 18%, rgba(197, 160, 89, 0.08), transparent 66%),
    linear-gradient(180deg, #f7fcff 0%, #eaf6fa 42%, #f6fbfd 100%);
}

.hero-video {
  filter: saturate(1.16) contrast(1.02) brightness(1.14) hue-rotate(3deg);
}

.hero-shade {
  background:
    radial-gradient(70% 54% at 50% 24%, rgba(180, 224, 236, 0.24), transparent 62%),
    linear-gradient(to bottom, rgba(10, 40, 62, 0.28), rgba(12, 51, 74, 0.48) 52%, rgba(8, 31, 52, 0.66)),
    linear-gradient(90deg, rgba(7, 28, 46, 0.2), rgba(143, 199, 215, 0.08));
}

.hero::after {
  opacity: 0.28;
}

h1 {
  text-shadow: 0 14px 38px rgba(4, 22, 38, 0.34);
}

.hero p {
  color: rgba(244, 251, 253, 0.94);
  text-shadow: 0 10px 28px rgba(4, 22, 38, 0.24);
}

.hero-proof-row span {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  color: rgba(248, 252, 255, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
}

.visual-mosaic-section,
.quick-highlights,
.sara-section,
.contact-section {
  position: relative;
  background:
    radial-gradient(58% 44% at 12% 4%, rgba(143, 199, 215, 0.18), transparent 62%),
    linear-gradient(180deg, rgba(248, 252, 255, 0.8), rgba(231, 244, 248, 0.72));
}

.quick-highlights {
  background:
    radial-gradient(54% 50% at 82% 2%, rgba(143, 199, 215, 0.2), transparent 66%),
    linear-gradient(180deg, rgba(231, 244, 248, 0.86), rgba(246, 251, 253, 0.78));
}

.sara-section {
  background:
    radial-gradient(58% 48% at 50% 0%, rgba(143, 199, 215, 0.18), transparent 64%),
    linear-gradient(180deg, rgba(235, 246, 250, 0.88), rgba(226, 241, 247, 0.78));
}

.contact-section {
  background:
    radial-gradient(62% 48% at 92% 8%, rgba(143, 199, 215, 0.18), transparent 66%),
    linear-gradient(180deg, rgba(246, 251, 253, 0.9), rgba(230, 243, 248, 0.82));
}

.visual-mosaic-grid,
.highlight-grid,
.sara-card,
.form-panel {
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(235, 247, 251, 0.34));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 22px 60px rgba(10, 42, 68, 0.08);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.visual-mosaic-grid {
  border-radius: 12px;
  padding: 0.75rem;
}

.mosaic-item {
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: 0 12px 28px rgba(10, 42, 68, 0.08);
}

.highlight-grid {
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(232, 247, 251, 0.42));
}

.highlight-card {
  background: rgba(255, 255, 255, 0.2);
}

.overview-note {
  max-width: 780px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.34);
  padding: 1rem 1.25rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.sara-card,
.form-panel {
  border-radius: 12px;
}

.sara-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(235, 247, 251, 0.5));
}

.form-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(238, 249, 252, 0.56));
}

.field input,
.field select,
.field textarea,
.country-picker-trigger {
  border-color: rgba(120, 170, 188, 0.28);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.mobile-contact-bar {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.qr-badge {
  border-color: rgba(120, 170, 188, 0.34);
  background: rgba(255, 255, 255, 0.82);
}

@media (max-width: 767px) {
  .hero-video {
    object-position: 28% center;
  }
}

/* Premium motion layer. */
@keyframes oaklynGlassSweep {
  0% {
    opacity: 0;
    transform: translate3d(-38%, 0, 0) skewX(-16deg);
  }
  28% {
    opacity: 0.44;
  }
  100% {
    opacity: 0;
    transform: translate3d(138%, 0, 0) skewX(-16deg);
  }
}

@keyframes oaklynSoftFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes oaklynBottomBarIn {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.motion-ready [data-animate] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  filter: blur(4px);
  transition:
    opacity 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
  transition-delay: var(--motion-delay, 0ms);
}

.motion-ready [data-animate="scale"] {
  transform: translate3d(0, 18px, 0) scale(0.97);
}

.motion-ready [data-animate="fade"] {
  transform: translate3d(0, 12px, 0);
  filter: none;
}

.motion-ready [data-animate].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.visual-mosaic-grid,
.highlight-grid,
.sara-card,
.form-panel,
.overview-note {
  position: relative;
  overflow: hidden;
}

.visual-mosaic-grid::before,
.highlight-grid::before,
.sara-card::before,
.form-panel::before {
  content: "";
  position: absolute;
  inset: -30% auto -30% -34%;
  z-index: 1;
  width: 34%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.44), transparent);
  opacity: 0;
}

.motion-ready .visual-mosaic-grid.is-visible::before,
.motion-ready .highlight-grid.is-visible::before,
.motion-ready .sara-card.is-visible::before,
.motion-ready .form-panel.is-visible::before {
  animation: oaklynGlassSweep 980ms ease 180ms both;
}

.mosaic-item,
.highlight-card,
.sara-card,
.form-panel,
.overview-note,
.intro-points span,
.qr-badge {
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease,
    filter 260ms ease;
}

.mosaic-item img {
  transform: scale(1.01);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 320ms ease;
}

.btn {
  transition:
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.hero .btn-primary {
  animation: oaklynSoftFloat 5.8s ease-in-out 1.1s infinite;
}

.mobile-contact-bar {
  animation: oaklynBottomBarIn 620ms cubic-bezier(0.2, 0.8, 0.2, 1) 380ms both;
}

@media (hover: hover) {
  .mosaic-item:hover {
    transform: translate3d(0, -5px, 0);
    border-color: rgba(255, 255, 255, 0.76);
    box-shadow: 0 18px 42px rgba(10, 42, 68, 0.13);
  }

  .mosaic-item:hover img {
    transform: scale(1.075);
    filter: saturate(1.06) contrast(1.02);
  }

  .highlight-card:hover,
  .overview-note:hover,
  .sara-card:hover,
  .form-panel:hover {
    transform: translate3d(0, -4px, 0);
    border-color: rgba(120, 170, 188, 0.46);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.78),
      0 24px 58px rgba(10, 42, 68, 0.11);
  }

  .intro-points span:hover {
    transform: translate3d(4px, 0, 0);
    color: var(--oak-ink);
  }

  .btn:hover,
  .btn:focus-visible {
    transform: translate3d(0, -2px, 0);
  }

  .qr-badge:hover {
    transform: translate3d(0, -3px, 0);
  }
}

.motion-reduced [data-animate],
.motion-reduced [data-animate].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.motion-ready .sara-card .sara-list li[data-animate] {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity 640ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--motion-delay, 0ms);
}

.motion-ready .sara-card .sara-list li[data-animate].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Form and mobile QR deployment fixes. */
.form-panel {
  overflow: visible;
}

.country-picker.is-open {
  grid-column: 1 / -1;
}

.country-picker.is-open + input {
  grid-column: 1 / -1;
}

.country-picker.is-open .country-picker-panel {
  position: static;
  width: 100%;
  max-width: none;
  margin-top: 0.55rem;
}

.country-picker.is-open .country-picker-list {
  max-height: min(34vh, 260px);
}

@media (max-width: 699px) {
  .qr-badge {
    display: block;
    left: max(10px, env(safe-area-inset-left, 0px));
    bottom: max(12px, env(safe-area-inset-bottom, 0px));
    z-index: 120;
    width: 50px;
    padding: 4px;
    box-shadow: 0 8px 22px rgba(10, 42, 68, 0.14);
  }

  .mobile-contact-bar {
    display: none !important;
  }

  .mobile-contact-bar a {
    flex: 1 1 0;
    width: auto;
  }
}
