:root {
  --wine: #780013;
  --wine-deep: #52000e;
  --wine-soft: #f7e9eb;
  --ink: #101827;
  --muted: #667085;
  --cream: #fbf8f3;
  --white: #ffffff;
  --gold: #f0a228;
  --gold-soft: #fff4dc;
  --line: #e7e1da;
  --shadow: 0 24px 70px rgba(43, 15, 19, 0.14);
  --radius: 24px;
  --font-heading: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 11vw, 5.3rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 8vw, 3.6rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.container {
  width: min(100% - 36px, 1180px);
  margin-inline: auto;
}

.section {
  padding: 78px 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  width: 100%;
  padding: 16px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  width: 140px;
  height: 60px;
  align-items: center;
  overflow: hidden;
}

.brand img,
.footer-brand img {
  width: 100%;
  mix-blend-mode: multiply;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.country-card:focus-visible,
.multi-select-button:focus-visible,
input:focus-visible,
select:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(240, 162, 40, 0.52);
  outline-offset: 3px;
}

.button-primary {
  color: white;
  background: var(--wine);
  box-shadow: 0 15px 32px rgba(120, 0, 19, 0.22);
}

.button-primary:hover {
  background: var(--wine-deep);
  box-shadow: 0 18px 38px rgba(120, 0, 19, 0.3);
}

.button-outline {
  min-height: 46px;
  color: var(--wine);
  border-color: rgba(120, 0, 19, 0.22);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
}

.button-small {
  padding: 11px 16px;
  font-size: 0.88rem;
}

.button-dark {
  color: white;
  background: var(--ink);
  box-shadow: 0 15px 30px rgba(16, 24, 39, 0.17);
}

.button-light {
  color: var(--wine);
  background: white;
  box-shadow: 0 15px 38px rgba(32, 3, 8, 0.18);
}

.text-link {
  color: var(--wine);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(120, 0, 19, 0.24);
  text-underline-offset: 5px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.eyebrow-light {
  color: #f9d7dc;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding-top: 122px;
  padding-bottom: 58px;
  background: var(--cream);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(120, 0, 19, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-glow-one {
  top: 90px;
  right: -140px;
  width: 330px;
  height: 330px;
  background: rgba(240, 162, 40, 0.18);
}

.hero-glow-two {
  bottom: 60px;
  left: -170px;
  width: 300px;
  height: 300px;
  background: rgba(120, 0, 19, 0.07);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 44px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

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

.hero-lead {
  max-width: 640px;
  margin-bottom: 28px;
  color: #4f5663;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-actions .button {
  flex: 1 1 auto;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 38px;
}

.trust-item {
  min-width: 0;
  padding-right: 8px;
  border-right: 1px solid #ddd5ca;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--wine);
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 5vw, 1.75rem);
  letter-spacing: -0.04em;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  width: calc(100% + 18px);
  height: 500px;
  margin-left: -9px;
  overflow: visible;
  border-radius: 190px 190px 28px 28px;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  position: absolute;
  z-index: 0;
  top: -14px;
  right: -14px;
  bottom: 16px;
  left: 18px;
  border: 1px solid rgba(120, 0, 19, 0.25);
  border-radius: inherit;
  content: "";
}

.hero-visual > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center 39%;
}

.hero-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(33, 19, 14, 0.16);
  backdrop-filter: blur(12px);
}

.hero-float strong,
.hero-float small {
  display: block;
  white-space: nowrap;
}

.hero-float strong {
  font-size: 0.76rem;
}

.hero-float small {
  color: var(--muted);
  font-size: 0.64rem;
}

.hero-float-top {
  top: 42px;
  left: -8px;
}

.hero-float-bottom {
  right: -8px;
  bottom: 24px;
}

.float-icon,
.float-avatar {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--wine);
  font-weight: 700;
}

.float-avatar {
  color: var(--wine);
  background: var(--gold-soft);
}

.proof-strip {
  color: white;
  background: var(--wine);
}

.proof-grid {
  display: grid;
}

.proof-grid > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-weight: 600;
}

.proof-grid > div:last-child {
  border-bottom: 0;
}

.proof-grid span {
  color: #f6be68;
  font-family: var(--font-heading);
  font-size: 0.76rem;
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading h2 {
  max-width: 720px;
}

.section-heading p {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.centered {
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered h2,
.centered p {
  margin-right: auto;
  margin-left: auto;
}

.destinations {
  background: white;
}

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

.country-card {
  --country-accent: var(--wine);
  --country-wash: #fff6f7;
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 156px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  background: linear-gradient(145deg, #ffffff 54%, var(--country-wash));
  box-shadow: inset 0 3px 0 var(--country-accent);
  text-align: left;
  cursor: pointer;
  transition: border 180ms ease, transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.country-card:hover {
  transform: translateY(-3px);
  border-color: rgba(120, 0, 19, 0.34);
  box-shadow: inset 0 3px 0 var(--country-accent), 0 14px 30px rgba(38, 26, 20, 0.08);
}

.country-card[aria-pressed="true"] {
  border-color: var(--wine);
  background: linear-gradient(145deg, #fff8f9 48%, var(--country-wash));
  box-shadow: inset 0 3px 0 var(--country-accent), inset 0 0 0 1px var(--wine);
}

.country-card[data-country="USA"] { --country-accent: #2857a4; --country-wash: #edf3ff; }
.country-card[data-country="UK"] { --country-accent: #c8102e; --country-wash: #fceff2; }
.country-card[data-country="Canada"] { --country-accent: #d52b1e; --country-wash: #fff0ef; }
.country-card[data-country="Australia"] { --country-accent: #21468b; --country-wash: #eef3ff; }
.country-card[data-country="New Zealand"] { --country-accent: #1c4c96; --country-wash: #edf4ff; }
.country-card[data-country="Ireland"] { --country-accent: #169b62; --country-wash: #edf9f4; }
.country-card[data-country="Germany"] { --country-accent: #e4a300; --country-wash: #fff8e4; }
.country-card[data-country="France"] { --country-accent: #2857a4; --country-wash: #f0f3ff; }
.country-card[data-country="Italy"] { --country-accent: #168b54; --country-wash: #edf9f3; }
.country-card[data-country="Sweden"] { --country-accent: #1673b1; --country-wash: #fff8dc; }
.country-card[data-country="Switzerland"] { --country-accent: #d52b1e; --country-wash: #fff0f0; }

.country-card strong,
.country-card small {
  display: block;
}

.country-card strong {
  align-self: end;
  overflow: hidden;
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: 0.96rem;
  line-height: 1.2;
  text-overflow: ellipsis;
}

.country-card small {
  overflow: hidden;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.country-card i {
  position: absolute;
  top: 16px;
  right: 15px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--wine);
  background: var(--wine-soft);
  font-style: normal;
  font-weight: 700;
}

.country-card[aria-pressed="true"] i {
  color: white;
  background: var(--wine);
}

.country-code {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  border: 1px solid rgba(16, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 7px 16px rgba(30, 24, 18, 0.1);
  overflow: hidden;
}

.country-code img {
  width: auto;
  height: auto;
  max-width: 32px;
  max-height: 24px;
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(16, 24, 39, 0.16);
}

.country-extra {
  display: none;
}

.country-grid.expanded .country-extra {
  display: grid;
}

.destination-actions {
  display: grid;
  gap: 16px;
  margin-top: 25px;
}

#country-continue {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, var(--wine-deep), var(--wine) 58%, #a70b27);
  box-shadow: 0 14px 34px rgba(120, 0, 19, 0.34), 0 0 0 0 rgba(240, 162, 40, 0.42);
  animation: university-cta-pulse 2.4s ease-in-out infinite;
}

#country-continue::before {
  position: absolute;
  inset: 0;
  width: 44%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  content: "";
  pointer-events: none;
  transform: translateX(-180%) skewX(-18deg);
  animation: university-cta-shine 3.2s ease-in-out infinite;
}

#country-continue span {
  display: inline-block;
  animation: university-cta-arrow 1.2s ease-in-out infinite;
}

#country-continue:hover {
  background: linear-gradient(135deg, #650010, #92001a 58%, #b40c2b);
}

@keyframes university-cta-pulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 14px 34px rgba(120, 0, 19, 0.34), 0 0 0 0 rgba(240, 162, 40, 0.36);
  }
  50% {
    transform: translateY(-3px) scale(1.018);
    box-shadow: 0 20px 42px rgba(120, 0, 19, 0.42), 0 0 0 7px rgba(240, 162, 40, 0.12);
  }
}

@keyframes university-cta-shine {
  0%, 48% {
    transform: translateX(-180%) skewX(-18deg);
  }
  72%, 100% {
    transform: translateX(340%) skewX(-18deg);
  }
}

@keyframes university-cta-arrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

.show-countries {
  padding: 8px;
  border: 0;
  color: var(--wine);
  background: transparent;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
  cursor: pointer;
}

.section.process {
  padding-top: 64px;
  padding-bottom: 64px;
  background: var(--cream);
}

.process .section-heading {
  margin-bottom: 28px;
}

.process .section-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 8vw, 3.2rem);
}

.process .section-heading p {
  font-size: 0.95rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-card {
  position: relative;
  min-height: 182px;
  padding: 17px 14px;
  overflow: hidden;
  border: 1px solid #e7dfd4;
  border-radius: 16px;
  background: white;
  box-shadow: 0 12px 35px rgba(39, 25, 19, 0.045);
}

.process-card::before {
  position: absolute;
  right: -30px;
  bottom: -42px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--wine-soft);
  content: "";
}

.step-number {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #c4bbb0;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
}

.step-icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 17px;
  place-items: center;
  border-radius: 11px;
  color: white;
  background: var(--wine);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(120, 0, 19, 0.21);
}

.process-card h3 {
  position: relative;
  margin-bottom: 7px;
  font-size: 0.94rem;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.process-card p {
  position: relative;
  max-width: 280px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.reviews {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--wine-deep);
}

.reviews::before {
  position: absolute;
  top: -160px;
  right: -140px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.018);
}

.reviews-grid {
  position: relative;
  display: grid;
  gap: 42px;
}

.reviews-widget-shell {
  min-width: 0;
}

#elfsight-google-reviews:not(:empty) {
  padding: 14px;
  border-radius: 22px;
  background: white;
  box-shadow: 0 30px 70px rgba(28, 0, 5, 0.3);
}

#elfsight-google-reviews:not(:empty) + .reviews-widget-fallback {
  display: none;
}

.reviews-copy p {
  max-width: 620px;
  margin-bottom: 28px;
  color: #e8cfd3;
}

.reviews-copy .button-light {
  position: relative;
  display: flex;
  width: max-content;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.78);
  color: var(--wine-deep);
  background: linear-gradient(135deg, #ffe39b, var(--gold) 70%, #e78c10);
  box-shadow: 0 16px 36px rgba(20, 0, 3, 0.3), 0 0 0 0 rgba(255, 211, 106, 0.4);
  animation: reviews-cta-glow 2.2s ease-in-out infinite;
}

.reviews-copy .button-light::before {
  position: absolute;
  inset: 0;
  width: 42%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  content: "";
  pointer-events: none;
  transform: translateX(-190%) skewX(-18deg);
  animation: reviews-cta-shine 3s ease-in-out infinite;
}

.reviews-copy .button-light span {
  display: inline-block;
  animation: reviews-cta-arrow 1.1s ease-in-out infinite;
}

.reviews-copy .button-light:hover {
  color: var(--wine-deep);
  background: linear-gradient(135deg, #ffebaf, #f5ad36 70%, #ed961d);
}

@keyframes reviews-cta-glow {
  0%, 100% {
    box-shadow: 0 16px 36px rgba(20, 0, 3, 0.3), 0 0 0 0 rgba(255, 211, 106, 0.38);
  }
  50% {
    box-shadow: 0 20px 42px rgba(20, 0, 3, 0.38), 0 0 0 7px rgba(255, 211, 106, 0.14);
  }
}

@keyframes reviews-cta-shine {
  0%, 50% { transform: translateX(-190%) skewX(-18deg); }
  75%, 100% { transform: translateX(360%) skewX(-18deg); }
}

@keyframes reviews-cta-arrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.google-card {
  display: block;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  color: var(--ink);
  background: white;
  box-shadow: 0 30px 70px rgba(28, 0, 5, 0.3);
  text-decoration: none;
  transition: transform 180ms ease;
}

.google-card:hover {
  transform: translateY(-4px) rotate(-0.4deg);
}

.google-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ece8e3;
}

.google-top strong,
.google-top small {
  display: block;
}

.google-top small {
  color: var(--muted);
}

.google-g {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: conic-gradient(from -45deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
  font-family: Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.external-arrow {
  margin-left: auto;
  color: var(--wine);
  font-size: 1.3rem;
}

.review-pulse {
  display: flex;
  gap: 7px;
  margin: 24px 0 18px;
}

.review-pulse span {
  width: 24px;
  height: 24px;
  background: var(--gold);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 94%, 50% 72%, 21% 94%, 32% 57%, 2% 35%, 39% 35%);
}

.google-card p {
  margin-bottom: 22px;
  color: #4f5663;
  font-size: 0.92rem;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.review-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--wine);
  background: var(--wine-soft);
  font-size: 0.7rem;
  font-weight: 700;
}

.location {
  background: white;
}

.location-grid {
  display: grid;
  gap: 42px;
}

.map-wrap {
  position: relative;
  height: 410px;
  overflow: hidden;
  border: 8px solid var(--cream);
  border-radius: 26px;
  box-shadow: 0 20px 55px rgba(32, 26, 20, 0.11);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-copy p {
  color: var(--muted);
}

.location-copy address {
  display: grid;
  gap: 2px;
  margin: 28px 0;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  color: #4e5561;
  font-style: normal;
}

.location-copy address strong {
  margin-bottom: 5px;
  color: var(--ink);
}

.location-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.final-cta {
  padding-top: 20px;
  background: white;
}

.final-cta-inner {
  position: relative;
  overflow: hidden;
  padding: 56px 24px;
  border-radius: 28px;
  color: white;
  background: var(--wine);
}

.final-content {
  position: relative;
  z-index: 2;
  max-width: 730px;
  margin: auto;
  text-align: center;
}

.final-content .eyebrow {
  justify-content: center;
}

.final-content p {
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
  color: #f1d9dd;
}

.final-content small {
  display: block;
  margin-top: 16px;
  color: #efccd2;
}

.final-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

.orbit-one {
  top: -120px;
  right: -100px;
  width: 320px;
  height: 320px;
  box-shadow: 0 0 0 58px rgba(255, 255, 255, 0.03);
}

.orbit-two {
  bottom: -160px;
  left: -130px;
  width: 350px;
  height: 350px;
  box-shadow: 0 0 0 75px rgba(255, 255, 255, 0.025);
}

.site-footer {
  padding: 56px 0 100px;
  background: white;
}

.footer-grid {
  display: grid;
  gap: 28px;
  padding-top: 35px;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 160px;
  margin-bottom: 12px;
}

.footer-brand p,
.copyright {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-contact {
  display: grid;
  gap: 5px;
}

.footer-contact a {
  color: var(--wine);
  font-weight: 700;
  text-decoration: none;
}

.mobile-bar {
  position: fixed;
  z-index: 50;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  padding: 6px;
  border: 1px solid rgba(120, 0, 19, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 48px rgba(29, 20, 15, 0.2);
  backdrop-filter: blur(14px);
}

.mobile-bar a,
.mobile-bar button {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 0;
  border-radius: 11px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-bar a {
  color: var(--wine);
}

.mobile-bar button {
  color: white;
  background: var(--wine);
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  align-items: end;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 10, 10, 0.69);
  backdrop-filter: blur(5px);
  animation: fade-in 220ms ease both;
}

.modal-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 94svh;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: var(--white);
  box-shadow: 0 -20px 70px rgba(20, 8, 10, 0.3);
  animation: slide-up 340ms cubic-bezier(0.2, 0.82, 0.2, 1) both;
}

.modal-scroll {
  max-height: 94svh;
  padding: 30px 20px 32px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: 13px;
  right: 13px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 1px solid #e4ddd5;
  border-radius: 50%;
  color: var(--ink);
  background: white;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.form-heading {
  margin-bottom: 24px;
  padding-right: 30px;
}

.form-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading h2 {
  margin-bottom: 6px;
  font-size: clamp(1.65rem, 7vw, 2.25rem);
}

.form-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-row {
  display: grid;
  gap: 17px;
}

.field {
  position: relative;
  margin-bottom: 17px;
}

.field label,
.country-field > label {
  display: block;
  margin-bottom: 7px;
  color: #222a36;
  font-size: 0.84rem;
  font-weight: 700;
}

.field input,
.field select,
.multi-select-button {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1px solid #ddd7d0;
  border-radius: 11px;
  color: var(--ink);
  background: white;
  transition: border 150ms ease, box-shadow 150ms ease;
}

.field input::placeholder {
  color: #9d9891;
}

.field input:focus,
.field select:focus,
.multi-select-button:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(120, 0, 19, 0.08);
  outline: none;
}

.field.has-error input,
.field.has-error select,
.field.has-error .multi-select-button {
  border-color: #c93232;
}

.field-error {
  display: block;
  min-height: 0;
  margin-top: 4px;
  color: #b42318;
  font-size: 0.72rem;
  line-height: 1.3;
}

.phone-input {
  display: flex;
  height: 52px;
  overflow: hidden;
  border: 1px solid #ddd7d0;
  border-radius: 11px;
}

.phone-input:focus-within {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(120, 0, 19, 0.08);
}

.has-error .phone-input {
  border-color: #c93232;
}

.phone-input span {
  display: grid;
  padding: 0 10px 0 13px;
  place-items: center;
  color: #5c6470;
  background: #f7f4f0;
  font-size: 0.88rem;
}

.phone-input input {
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none !important;
}

.multi-select-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}

.multi-select-button i {
  width: 8px;
  height: 8px;
  border-right: 2px solid #4c535d;
  border-bottom: 2px solid #4c535d;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.multi-select-button[aria-expanded="true"] i {
  transform: translateY(2px) rotate(225deg);
}

.country-options {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  max-height: 220px;
  margin-top: 7px;
  padding: 9px;
  overflow-y: auto;
  border: 1px solid #ded7cf;
  border-radius: 12px;
  background: white;
  box-shadow: 0 18px 42px rgba(32, 22, 17, 0.12);
}

.country-options[hidden] {
  display: none;
}

.country-options label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 10px 8px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
}

.country-options label:hover {
  background: var(--cream);
}

.country-options input,
.consent input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--wine);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 3px;
  color: #5f6671;
  font-size: 0.78rem;
  cursor: pointer;
}

.consent input {
  flex: 0 0 17px;
  margin-top: 2px;
}

.consent-error {
  margin-bottom: 12px;
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: 11px 0 0;
  color: #85817c;
  font-size: 0.7rem;
  text-align: center;
}

.form-success {
  padding: 28px 0 10px;
  text-align: center;
}

.form-success[hidden] {
  display: none;
}

.form-success > span {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--wine);
  font-size: 1.6rem;
  box-shadow: 0 14px 30px rgba(120, 0, 19, 0.22);
}

.form-success p {
  color: var(--muted);
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slide-up {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@media (min-width: 540px) {
  .container {
    width: min(100% - 56px, 1180px);
  }

  .hero-actions .button {
    flex: 0 0 auto;
  }

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

  .destination-actions {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .show-countries {
    justify-self: start;
  }

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

@media (min-width: 760px) {
  .section {
    padding: 104px 0;
  }

  .brand {
    width: 174px;
    height: 68px;
  }

  .button-small {
    padding: 12px 20px;
  }

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

  .proof-grid > div {
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 0;
  }

  .proof-grid > div:last-child {
    border-right: 0;
  }

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

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

  .reviews-grid,
  .location-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 72px;
  }

  .map-wrap {
    height: 500px;
  }

  .final-cta-inner {
    padding: 84px 60px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: end;
  }

  .footer-contact {
    justify-self: end;
    text-align: right;
  }

  .copyright {
    grid-column: 1 / -1;
  }

  .mobile-bar {
    display: none;
  }

  .site-footer {
    padding-bottom: 56px;
  }

  .modal {
    place-items: center;
    padding: 24px;
  }

  .modal-card {
    width: min(100%, 700px);
    max-height: min(90svh, 790px);
    border-radius: 26px;
    animation-name: modal-in;
  }

  .modal-scroll {
    max-height: min(90svh, 790px);
    padding: 40px 42px 36px;
  }

  .modal-close {
    top: 18px;
    right: 18px;
  }

  @keyframes modal-in {
    from { opacity: 0; transform: translateY(18px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
}

@media (min-width: 980px) {
  .hero {
    display: grid;
    min-height: 760px;
    padding-top: 130px;
    place-items: center;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.78fr);
    align-items: center;
    gap: 72px;
  }

  .hero-copy h1 {
    max-width: 690px;
  }

  .hero-visual {
    width: 100%;
    height: 580px;
    margin: 0;
  }

  .hero-float-top {
    left: -36px;
  }

  .hero-float-bottom {
    right: -28px;
  }

  .hero-trust {
    max-width: 600px;
  }

  .trust-item span {
    font-size: 0.78rem;
  }

  .destinations-heading {
    display: grid;
    grid-template-columns: 1.1fr 0.72fr;
    align-items: end;
    gap: 80px;
  }

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

  .process-card {
    min-height: 190px;
  }

  .country-card {
    min-height: 178px;
    padding: 21px;
  }

  .country-card strong {
    font-size: 1.06rem;
  }

  .country-card small {
    font-size: 0.78rem;
  }
}

@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;
  }
}
