/* ============================================================
   Aphros Estates — styles
   Mobile-first. Palette: deep navy + white, calm luxury.
   ============================================================ */

:root {
  --navy: #16324F;          /* brand navy (logo) */
  --navy-deep: #0B1F35;     /* darkest */
  --navy-soft: #274A6E;
  --ink: #14273B;           /* headings on white */
  --body: #3D4F63;          /* body text */
  --muted: #6B7C8F;
  --paper: #FFFFFF;
  --foam: #F5F8FA;          /* section alt background */
  --line: #E2E8EF;
  --white: #FFFFFF;
  --focus: #2E6DA4;

  --font-display: 'Inter Tight', -apple-system, 'Helvetica Neue', sans-serif;
  --font-body: 'Manrope', -apple-system, 'Helvetica Neue', sans-serif;

  --container: 1200px;
  --pad: 20px;
  --radius: 6px;
  --shadow-soft: 0 8px 40px rgba(11, 31, 53, 0.10);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

[hidden] { display: none !important; }

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.015em;
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 16px;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.01em;
  padding: 14px 28px; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-deep); box-shadow: 0 6px 24px rgba(11,31,53,0.25); }

.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { box-shadow: 0 4px 18px rgba(11,31,53,0.22); }

.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease),
              backdrop-filter 0.35s;
  background: transparent;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; height: 68px;
}
.brand-logo { height: 34px; width: auto; transition: filter 0.35s; }

/* over hero: white logo & links */
.site-header:not(.scrolled) .brand-logo { filter: brightness(0) invert(1); }
.site-header:not(.scrolled) .nav-link,
.site-header:not(.scrolled) .lang-btn,
.site-header:not(.scrolled) .lang-sep { color: rgba(255,255,255,0.92); }

.site-header.scrolled {
  background: #FFFFFF;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.header-nav { display: none; gap: 28px; }
.nav-link {
  font-family: var(--font-display); font-size: 0.92rem; font-weight: 500;
  color: var(--ink); opacity: 0.85; transition: opacity 0.2s;
}
.nav-link:hover { opacity: 1; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang-switch { display: flex; align-items: center; gap: 6px; }
.lang-btn {
  background: none; border: none; cursor: pointer; padding: 10px 6px;
  font-family: var(--font-display); font-size: 0.88rem; font-weight: 600;
  color: var(--muted); transition: color 0.2s;
}
.lang-btn[aria-pressed="true"] { color: var(--navy); text-decoration: underline; text-underline-offset: 4px; }
.site-header:not(.scrolled) .lang-btn[aria-pressed="true"] { color: #fff; }
.lang-sep { color: var(--muted); font-size: 0.8rem; }

.btn-header { padding: 10px 20px; font-size: 0.88rem; display: none; }
.site-header:not(.scrolled) .btn-header { background: #fff; color: var(--navy); }

@media (min-width: 900px) {
  .header-nav { display: flex; }
  .btn-header { display: inline-flex; }
  .header-inner { height: 76px; }
  .brand-logo { height: 38px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: clamp(560px, 92svh, 100svh);
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-media { position: absolute; inset: 0; }
.hero-img, .hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}
.hero-img, .hero-video { filter: saturate(0.72) contrast(1.04); }
.hero-video { opacity: 0; transition: opacity 1.4s ease; }
.hero-video.playing { opacity: 1; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(11,31,53,0.82) 0%,
    rgba(11,31,53,0.52) 16%,
    rgba(11,31,53,0.42) 45%,
    rgba(11,31,53,0.68) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: 110px; padding-bottom: 96px;
}
.hero-eyebrow {
  font-family: var(--font-display);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-title {
  color: #fff;
  font-size: clamp(2.5rem, 9vw, 4.6rem);
  font-weight: 500; letter-spacing: -0.025em;
  max-width: 14ch;
  margin-bottom: 22px;
}
.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1.02rem, 2.6vw, 1.2rem);
  line-height: 1.6;
  max-width: 54ch;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-scroll-hint {
  position: absolute; bottom: 20px; left: 50%;
  width: 26px; height: 26px; margin-left: -13px;
  color: rgba(255,255,255,0.7); z-index: 2;
  animation: hintBob 2.6s ease-in-out infinite;
}
.hero-scroll-hint svg { width: 100%; height: 100%; }
@keyframes hintBob {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(7px); opacity: 1; }
}

/* ---------- Trust bar ---------- */
.trust {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 44px 0;
  position: relative;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px 16px;
}
.stat { text-align: left; }
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 6vw, 2.7rem);
  font-weight: 650; color: #fff;
  letter-spacing: -0.02em; line-height: 1.05;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  display: block; margin-top: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem; line-height: 1.45;
  max-width: 22ch;
}
.stat-rule { display: block; width: 44px; height: 2px; background: #A8C6E0; margin-bottom: 12px; }
.stat-accent { grid-column: 1 / -1; }
.stat-accent .stat-value { font-size: clamp(2.4rem, 8vw, 3.3rem); }
.stat-accent .stat-label { max-width: none; }

@media (min-width: 900px) {
  .trust { padding: 56px 0; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .stat-accent { grid-column: auto; }
  .trust-grid .stat { border-left: 1px solid rgba(255,255,255,0.10); padding-left: 24px; }
  .trust-grid .stat:first-child { border-left: none; padding-left: 0; }
  .stat-accent { margin-top: -14px; }
}

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
@media (min-width: 900px) { .section { padding: 110px 0; } }

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-eyebrow {
  font-family: var(--font-display);
  color: var(--navy-soft);
  font-size: 0.8rem; font-weight: 650;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 5.4vw, 2.7rem);
  font-weight: 500; letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.section-intro { font-size: 1.02rem; color: var(--body); max-width: 58ch; }

/* ---------- Why Cyprus cards ---------- */
.why-cyprus { background: var(--paper); }
.cards-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
.card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px;
  background: #fff;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.card:hover { box-shadow: 0 2px 18px rgba(11,31,53,0.08); }
.card-title { text-wrap: balance; }
@media (min-width: 1100px) { .card-title { min-height: 2.5em; } }
.card-icon {
  width: 42px; height: 42px; color: var(--navy);
  margin-bottom: 18px;
}
.card-icon svg { width: 100%; height: 100%; }
.card-title { font-size: 1.12rem; margin-bottom: 8px; }
.card-text { font-size: 0.95rem; color: var(--body); }

@media (min-width: 640px) { .cards-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .cards-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

/* ---------- Why Aphros ---------- */
.why-aphros { background: var(--foam); }
.aphros-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.aphros-points { list-style: none; counter-reset: pts; display: grid; gap: 26px; }
.aphros-points li {
  counter-increment: pts;
  padding-left: 52px; position: relative;
}
.aphros-points li::before {
  content: counter(pts, decimal-leading-zero);
  position: absolute; left: 0; top: 2px;
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 650;
  color: var(--navy-soft);
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
}
.aphros-points h3 { font-size: 1.08rem; margin-bottom: 6px; }
.aphros-points p { font-size: 0.95rem; }

.aphros-media { border-radius: var(--radius); overflow: hidden; }
.aphros-img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }

@media (min-width: 960px) {
  .aphros-grid { grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: stretch; }
  .aphros-media { order: 2; }
}

/* ---------- Regions ---------- */
.regions { background: var(--paper); padding-bottom: 84px; }
.regions .section-head { margin-bottom: 36px; }

.regions-strip {
  display: flex; gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px var(--pad) 28px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.regions-strip::-webkit-scrollbar { display: none; }

.region-card {
  position: relative; flex: 0 0 78%;
  max-width: 340px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius); overflow: hidden;
  scroll-snap-align: center;
  background: var(--navy-deep);
}
.region-card { cursor: pointer; }
.region-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.6) contrast(1.05);
  transition: transform 0.8s var(--ease);
}
.region-card:hover img, .region-card:focus-visible img { transform: scale(1.04); }
.region-card::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: rgba(22,50,79,0.22);
}
.region-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11,31,53,0) 30%, rgba(11,31,53,0.82) 100%);
}
.region-meta {
  position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 2;
}
.region-meta h3 { color: #fff; font-size: 1.25rem; letter-spacing: -0.015em; }
.region-meta p { color: rgba(255,255,255,0.88); font-size: 0.86rem; margin-top: 2px; }

@media (min-width: 960px) {
  .regions-strip {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; overflow: visible; padding: 0 var(--pad);
    max-width: var(--container); margin: 0 auto;
  }
  .region-card { max-width: none; aspect-ratio: 4 / 3.4; }
}

/* ---------- How it works ---------- */
.how { background: var(--navy-deep); }
.how-cta { margin-top: 36px; }
@media (max-width: 899px) { .how-cta { display: none; } }
.how .section-eyebrow { color: #A8C6E0; }
.how .section-title { color: #fff; }
.steps-grid { list-style: none; display: grid; gap: 36px; grid-template-columns: 1fr; }
.step { position: relative; padding-top: 18px; }
.step::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 44px; height: 2px; background: #A8C6E0;
}
.step-num {
  font-family: var(--font-display);
  color: #A8C6E0; font-weight: 650; font-size: 0.9rem;
  letter-spacing: 0.14em;
}
.step h3 { color: #fff; font-size: 1.15rem; margin: 8px 0 8px; }
.step p { color: rgba(255,255,255,0.72); font-size: 0.95rem; }

@media (min-width: 900px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .how.section { padding: 80px 0; }
}

/* ---------- Enquiry ---------- */
.enquiry { background: var(--foam); }
.enquiry-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.enquiry-side { display: none; }
.form-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 22px;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 1020px) {
  .enquiry-grid { grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
  .enquiry-side {
    display: block; position: sticky; top: 100px;
    border-radius: var(--radius); overflow: hidden;
  }
  .enquiry-img { width: 100%; height: 560px; object-fit: cover; }
  .form-card { padding: 40px 40px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep); color: rgba(255,255,255,0.75);
  padding: 56px 0 40px;
}
@media (max-width: 899px) { .site-footer { padding-bottom: 104px; } }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
.footer-logo { height: 34px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-tag { margin-top: 14px; font-size: 0.9rem; color: rgba(255,255,255,0.6); letter-spacing: 0.02em; }
.footer-contact p { font-size: 0.95rem; margin-bottom: 8px; }
.footer-contact a { color: #fff; }
.footer-contact .lang-switch { margin-top: 12px; }
.site-footer .lang-btn { color: rgba(255,255,255,0.6); }
.site-footer .lang-btn[aria-pressed="true"] { color: #fff; }
.footer-links a { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.footer-disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 12px; max-width: 60ch; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 12px; }

@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.2fr 0.8fr 1.4fr; gap: 48px; }
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -1px 0 var(--line);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
}
.sticky-cta.visible { transform: translateY(0); }
@media (min-width: 900px) { .sticky-cta { display: none; } }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
@media (max-width: 899px) {
  .reveal { transition-duration: 0.6s; transform: translateY(18px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-img, .hero-video { transform: none; }
  .hero-scroll-hint span { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* Focus visibility */
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

/* ============================================================
   Form
   ============================================================ */
section[id] { scroll-margin-top: 76px; }
#formCard { scroll-margin-top: 88px; }

.form-progress { margin-bottom: 28px; }
.fp-count {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 650;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy-soft);
}
.fp-track {
  height: 3px; background: var(--line); border-radius: 2px;
  margin: 12px 0 10px; overflow: hidden;
}
.fp-fill {
  display: block; height: 100%; width: 33%;
  background: var(--navy);
  transition: width 0.5s var(--ease);
}
.fp-labels { display: flex; justify-content: space-between; }
.fp-labels span {
  font-size: 0.78rem; font-weight: 600; color: var(--muted);
  transition: color 0.3s;
}
.fp-labels span.active { color: var(--navy); }

.fstep { display: grid; gap: 26px; animation: stepIn 0.45s var(--ease); min-width: 0; }
.fstep[hidden] { display: none; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(14px); }
  to { opacity: 1; transform: none; }
}

.fgroup { border: none; min-width: 0; }
.enquiry-grid, .enquiry-main, .form-card { min-width: 0; }
.flabel {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem; font-weight: 600; color: var(--ink);
  margin-bottom: 10px;
}
.fnote, .fhint { font-size: 0.83rem; color: var(--muted); margin: -6px 0 10px; }

.choices { display: grid; gap: 10px; }
.choices-radio { grid-template-columns: 1fr 1fr; }
.choices-chips { display: flex; flex-wrap: wrap; }

.choice { position: relative; display: block; }
.choice input {
  position: absolute; opacity: 0; pointer-events: none;
}
.choice span {
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  min-height: 46px; padding: 10px 14px;
  border: 1px solid var(--line); border-radius: var(--radius);
  font-size: 0.9rem; color: var(--body);
  background: #fff; cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s, box-shadow 0.2s;
  user-select: none;
  width: 100%;
}
.choices-chips .choice span { min-height: 46px; padding: 10px 18px; }
.choices-chips .choice input:checked + span::before {
  content: ""; width: 14px; height: 14px; margin-right: 8px; flex: 0 0 14px;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316324F' stroke-width='3'%3E%3Cpath d='M4.5 12.5l5 5 10-11'/%3E%3C/svg%3E") center/contain no-repeat;
}
.choice:hover span { border-color: var(--navy-soft); }
.choice input:checked + span {
  background: rgba(168,198,224,0.16);
  border-color: var(--navy);
  box-shadow: inset 0 0 0 1px var(--navy);
  color: var(--navy); font-weight: 600;
}
.choice input:focus-visible + span {
  outline: 2px solid var(--focus); outline-offset: 2px;
}

.ffield { display: block; }
.finput {
  width: 100%;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 14px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.finput::placeholder { color: #A6B2BF; }
.finput:focus {
  outline: none; border-color: var(--navy-soft);
  box-shadow: 0 0 0 3px rgba(39, 74, 110, 0.12);
}
.fselect {
  max-width: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%236B7C8F' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px;
}
.ftextarea { resize: vertical; min-height: 86px; }

.phone-row { display: flex; gap: 10px; }
.phone-cc { flex: 0 0 128px; }
.phone-row input { flex: 1; min-width: 0; }

.invalid .finput { border-color: #C4453C; }
.fgroup.invalid .flabel { color: #B3362D; }
.ferror {
  color: #B3362D; font-size: 0.83rem; margin-top: 8px;
}
.fsubmit-error { text-align: center; }

.consent { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.consent input {
  appearance: none; -webkit-appearance: none;
  width: 20px; height: 20px; flex: 0 0 20px; margin-top: 2px;
  border: 1px solid var(--line); border-radius: 4px; background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}
.consent input:checked {
  border-color: var(--navy);
  background: var(--navy) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3'%3E%3Cpath d='M4.5 12.5l5 5 10-11'/%3E%3C/svg%3E") center/12px no-repeat;
}
.consent:hover input { border-color: var(--navy-soft); }
.consent span { font-size: 0.85rem; color: var(--body); }

.fnav { display: flex; gap: 12px; margin-top: 30px; }
.fnav .btn { flex: 1; }
.fsubmit-wrap { flex: 1; display: flex; cursor: not-allowed; }
.fsubmit-wrap .btn { flex: 1; }
.btn-outline {
  background: #fff; color: var(--navy); border-color: var(--line);
}
.btn-outline:hover { border-color: var(--navy-soft); }
#fBack { flex: 0 0 auto; padding-left: 22px; padding-right: 22px; }
#fSubmit:disabled {
  opacity: 1; background: #DCE6EF; border-color: #DCE6EF; color: var(--navy-soft);
  box-shadow: none; cursor: not-allowed; pointer-events: none;
}

.hp-wrap {
  position: absolute !important; left: -9999px !important; top: -9999px !important;
  height: 1px; width: 1px; overflow: hidden;
}

/* ---------- Success overlay ---------- */
.success-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.5s var(--ease);
  padding: 24px;
}
.success-overlay.show { opacity: 1; }
.success-inner { max-width: 520px; text-align: center; color: #fff; }
.success-wave {
  width: 120px; color: #A8C6E0; margin: 0 auto 6px;
  opacity: 0.9;
}
.success-check {
  width: 64px; height: 64px; margin: 0 auto 26px;
  border: 1.5px solid rgba(255,255,255,0.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.success-check svg { width: 30px; height: 30px; }
#okClose:focus:not(:focus-visible) { outline: none; }
.success-inner:focus { outline: none; }
.success-overlay :focus-visible { outline-color: #A8C6E0; }
.success-inner h2 {
  color: #fff; font-size: clamp(1.5rem, 5vw, 2rem); margin-bottom: 14px;
}
.success-inner p { color: rgba(255,255,255,0.78); margin-bottom: 30px; }

/* ---------- Wave divider (logo motif) ---------- */
.wave-divider {
  position: relative;
  height: 64px;
  background: var(--paper);
  overflow: hidden;
  margin-top: -1px; /* seal hairline gap against the navy trust bar */
}
.wave-layer {
  position: absolute; top: 0; left: 0;
  width: 200%; height: 100%;
  display: block;
}
.wave-front path { fill: var(--navy-deep); }
.wave-front { animation: waveDrift 18s linear infinite; }
.wave-divider--flip { transform: scaleY(-1); margin-top: 0; margin-bottom: -1px; background: var(--foam); }
@keyframes waveDrift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes waveDriftBack {
  from { transform: translateY(9px) translateX(0); }
  to { transform: translateY(9px) translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .wave-back, .wave-front { animation: none; }
}

.fcomplete-hint {
  margin-top: 12px; text-align: center;
  font-size: 0.83rem; color: var(--muted);
}
.fstep3-note { margin-top: 6px; }

/* Bulgarian display sizes: longer words need a slightly smaller scale */
html[lang="bg"] .hero-title { font-size: clamp(2.1rem, 7.4vw, 4.1rem); max-width: 20ch; }
html[lang="bg"] .section-title { font-size: clamp(1.6rem, 5vw, 2.5rem); }

.region-cta {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 10px;
  font-family: var(--font-display); font-size: 0.84rem; font-weight: 600;
  color: #fff; letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(255,255,255,0.45);
  padding-bottom: 2px;
}
.region-cta svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.region-card:hover .region-cta svg, .region-card:focus-visible .region-cta svg { transform: translateX(4px); }

/* pre-selected region chip in the form */
.fpreselect {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: rgba(168,198,224,0.14); border: 1px solid #C7D9E8; border-radius: var(--radius);
  padding: 10px 14px; margin-bottom: 18px;
  font-size: 0.87rem; color: var(--ink);
}
.fpreselect button {
  background: none; border: none; cursor: pointer; color: var(--muted);
  font-size: 1.1rem; line-height: 1;
  width: 32px; height: 32px; margin: -6px -8px -6px 0;
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
}
.fpreselect button:hover { background: rgba(22,50,79,0.06); color: var(--navy); }

/* step-3 reassurance */
.fstep3-note {
  text-align: center;
  font-size: 0.83rem; color: var(--muted);
}

/* ---------- Mobile menu ---------- */
.menu-btn {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  background: none; border: none; cursor: pointer;
}
.menu-btn span {
  display: block; height: 1.5px; width: 100%;
  background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.3s, background-color 0.35s;
}
.site-header:not(.scrolled):not(.menu-open) .menu-btn span { background: #fff; }
.site-header.menu-open .menu-btn span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.site-header.menu-open .menu-btn span:nth-child(2) { opacity: 0; }
.site-header.menu-open .menu-btn span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 900px) { .menu-btn { display: none; } }

.mobile-menu {
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 10px 20px 20px;
  display: grid; gap: 4px;
  box-shadow: 0 16px 32px rgba(11,31,53,0.10);
}
.site-header.menu-open { background: #fff; box-shadow: 0 1px 0 var(--line); }
.site-header.menu-open .brand-logo { filter: none; }
.site-header.menu-open .lang-btn { color: var(--muted); }
.site-header.menu-open .lang-btn[aria-pressed="true"] { color: var(--navy); }
.mobile-link {
  font-family: var(--font-display); font-weight: 500; font-size: 1.02rem;
  color: var(--ink); padding: 12px 0;
  border-bottom: 1px solid var(--foam);
}
.mobile-menu .btn { margin-top: 12px; }

/* ---------- Interstitial band ---------- */
.interstitial {
  position: relative; overflow: hidden;
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.interstitial-img {
  position: absolute; inset: -12% 0; width: 100%; height: 124%;
  object-fit: cover;
}
.interstitial-scrim { position: absolute; inset: 0; background: rgba(11,31,53,0.38); }
.interstitial-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  padding: 84px 20px;
}
.interstitial-wave {
  width: 46px; height: 20px; color: rgba(255,255,255,0.85);
}
.interstitial-text {
  font-family: var(--font-display);
  color: #fff; text-align: center;
  font-size: clamp(1.3rem, 4vw, 2.1rem);
  font-weight: 500; letter-spacing: 0.005em;
  line-height: 1.35;
  text-shadow: 0 1px 24px rgba(11,31,53,0.55);
  max-width: 24ch;
}
@media (min-width: 900px) {
  .interstitial { min-height: 400px; }
  .interstitial-text { white-space: nowrap; max-width: none; }
}

/* ---------- Amenities ---------- */
.amenities { background: var(--foam); }
.amen-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.amen-tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--navy-deep);
}
.amen-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05);
  transition: transform 0.8s var(--ease);
}
.amen-tile:hover img { transform: scale(1.04); }
.amen-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,53,0.06) 40%, rgba(11,31,53,0.72) 100%);
}
.amen-tile figcaption {
  position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 2;
  font-family: var(--font-display);
  color: #fff; font-size: 0.92rem; font-weight: 600; letter-spacing: 0.01em;
  line-height: 1.3;
}
@media (min-width: 900px) {
  .amen-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .amen-tile figcaption { font-size: 1.02rem; left: 18px; bottom: 16px; }
}

/* ---------- How-it-works background image ---------- */
.how { position: relative; overflow: hidden; }
.how-bg { position: absolute; inset: 0; }
.how-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.6) contrast(1.02);
  opacity: 0.28;
}
.how-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,53,0.92) 0%, rgba(11,31,53,0.78) 50%, rgba(11,31,53,0.94) 100%);
}
.how-content { position: relative; z-index: 2; }
