/* ==========================================================================
   Agazat Masr | Honeymoon landing page
   Mobile first, RTL. No framework, no external requests.
   Palette is derived from the Agazat Masr logo (sun yellow, mango, leaf green)
   plus a deep sea ink for text and dark sections.
   ========================================================================== */

/* ---------------------------------------------------------------- fonts */
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/cairo-arabic.woff2') format('woff2');
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1,
    U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF,
    U+FE70-FE74, U+FE76-FEFC;
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/cairo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2122, U+2212, U+FEFF, U+FFFD;
}

/* ---------------------------------------------------------------- tokens */
:root {
  --ink: #0E2E3D;
  --ink-2: #3B5A68;
  /* --ink-3 is the lightest text tone we allow: 4.9:1 on white, 4.7:1 on the
     cream sections, so it still clears WCAG AA at small sizes. */
  --ink-3: #5A727C;
  --line: #E3E9EA;
  --line-2: #EDF1F1;

  --cream: #FFF8EE;
  --cream-2: #FDF1E2;
  --paper: #FFFFFF;

  --sun: #FBC01E;
  --mango: #F5871F;
  --leaf: #7CBE4B;
  --sea: #0E92AC;

  --accent: var(--sea);
  --accent-soft: #E4F6F9;

  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 24px;
  --radius-xl: 32px;

  --shadow-s: 0 1px 2px rgba(14, 46, 61, .06), 0 4px 12px rgba(14, 46, 61, .05);
  --shadow-m: 0 2px 6px rgba(14, 46, 61, .07), 0 14px 34px rgba(14, 46, 61, .09);
  --shadow-cta: 0 6px 18px rgba(245, 135, 31, .32);

  --wrap: 1160px;
  --pad: 16px;

  --ease: cubic-bezier(.22, .68, .36, 1);
  --sticky-h: 0px;
}

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

html {
  scroll-behavior: smooth;
  /* header height + a little breathing room for anchored sections */
  scroll-padding-top: 76px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Cairo', 'Segoe UI', Tahoma, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { line-height: 1.3; margin: 0; font-weight: 800; letter-spacing: -.01em; }
p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }

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

:focus-visible {
  outline: 3px solid var(--sea);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  inset-inline-start: -9999px;
  top: 8px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-s);
}
.skip-link:focus { inset-inline-start: 12px; }

/* ---------------------------------------------------------------- layout */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.wrap-narrow { max-width: 780px; }

.section { padding-block: 56px; }
.section-head { max-width: 660px; margin-bottom: 28px; }

.section-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.5rem, 5.6vw, 2.35rem); }
.section-sub {
  margin-top: 12px;
  color: var(--ink-2);
  font-size: 1.02rem;
}

.disclaimer {
  margin-top: 28px;
  padding: 14px 18px;
  background: var(--cream);
  border: 1px solid var(--cream-2);
  border-radius: var(--radius-m);
  color: var(--ink-2);
  font-size: .9rem;
  line-height: 1.7;
}

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  font-size: .98rem;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background-color .18s var(--ease), color .18s var(--ease);
  min-height: 48px;
}
.btn-sm { padding: 10px 18px; min-height: 44px; font-size: .9rem; }
.btn-lg { padding: 15px 30px; min-height: 54px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--sun) 0%, var(--mango) 100%);
  color: var(--ink);
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(245, 135, 31, .38); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255, 255, 255, .16);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .6);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .28); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid currentColor;
}
.btn-outline:hover { background: var(--accent-soft); transform: translateY(-2px); }

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-2);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
}
.brand { flex: 0 0 auto; }
.brand img { width: 118px; height: auto; }

.header-nav { display: none; }

.header-cta { margin-inline-start: auto; white-space: nowrap; }

/* ---------------------------------------------------------------- hero */
.hero {
  position: relative;
  isolation: isolate;
  background: #0C3140;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding-block: 40px 36px;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(6, 30, 41, .92) 0%, rgba(6, 30, 41, .74) 34%, rgba(6, 30, 41, .28) 62%, rgba(6, 30, 41, .34) 100%);
}
.hero-inner { color: #fff; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 700;
  color: #FFF0D0;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .26);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sun);
  flex: 0 0 auto;
}

h1 { display: block; }
.h1-kicker {
  display: block;
  font-size: clamp(.95rem, 4vw, 1.15rem);
  font-weight: 700;
  color: var(--sun);
  margin-bottom: 6px;
}
.h1-main {
  display: block;
  font-size: clamp(1.85rem, 8.2vw, 3.4rem);
  line-height: 1.22;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .3);
}

.hero-sub {
  margin-top: 14px;
  max-width: 560px;
  color: rgba(255, 255, 255, .92);
  font-size: 1rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .35);
}

.hero-price {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius-m);
  backdrop-filter: blur(8px);
  max-width: 100%;
}
.hp-label { display: block; font-size: .82rem; color: rgba(255, 255, 255, .82); }
.hp-value { display: block; font-size: 1.05rem; color: #fff; line-height: 1.4; }
.hp-value strong { font-size: 1.75rem; font-weight: 800; color: var(--sun); }
.hp-unit { font-size: .95rem; color: rgba(255, 255, 255, .9); }
.hp-note { display: block; margin-top: 4px; font-size: .78rem; color: rgba(255, 255, 255, .78); line-height: 1.6; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero-actions .btn { flex: 1 1 220px; }

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.hero-chips a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 6px 16px;
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  transition: background-color .18s var(--ease);
}
.hero-chips a:hover { background: rgba(255, 255, 255, .26); }

/* ---------------------------------------------------------------- value strip */
.value-strip { background: var(--cream); padding-block: 26px; }
.value-list { display: grid; gap: 14px; }
.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.value-list svg {
  width: 26px; height: 26px;
  flex: 0 0 auto;
  fill: var(--mango);
  margin-top: 2px;
}
.value-list strong { display: block; font-size: .98rem; line-height: 1.5; }
.value-list span { display: block; font-size: .85rem; color: var(--ink-2); line-height: 1.6; }

/* ---------------------------------------------------------------- style selector */
.section-style { background: var(--paper); }

.style-options {
  display: grid;
  gap: 10px;
}
.style-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: start;
  padding: 14px 16px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-m);
  cursor: pointer;
  transition: border-color .18s var(--ease), background-color .18s var(--ease),
              transform .18s var(--ease), box-shadow .18s var(--ease);
}
.style-opt:hover { border-color: var(--sea); transform: translateY(-2px); box-shadow: var(--shadow-s); }
.style-opt .so-icon {
  width: 42px; height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--cream-2);
  transition: background-color .18s var(--ease);
}
.style-opt .so-icon svg { width: 22px; height: 22px; fill: var(--mango); }
.style-opt .so-text { font-weight: 600; font-size: .98rem; line-height: 1.5; }

.style-opt.is-active {
  border-color: var(--mango);
  background: var(--cream);
  box-shadow: 0 0 0 3px rgba(251, 192, 30, .28);
}
.style-opt.is-active .so-icon { background: var(--sun); }

/* shared result panel for style + budget pickers */
.picker-result {
  margin-top: 18px;
  padding: 20px;
  border-radius: var(--radius-l);
  background: linear-gradient(140deg, var(--accent-soft) 0%, #fff 78%);
  border: 1.5px solid var(--accent);
  animation: pop .34s var(--ease) both;
}
.picker-result[hidden] { display: none; }
@keyframes pop {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.pr-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.pr-title { font-size: 1.28rem; margin-bottom: 8px; }
.pr-text { color: var(--ink-2); font-size: .97rem; }
.pr-price { margin-top: 12px; font-size: 1rem; font-weight: 700; color: var(--accent); }
.pr-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.pr-actions .btn { flex: 1 1 200px; }
.pr-note { margin-top: 14px; font-size: .82rem; color: var(--ink-3); line-height: 1.65; }

.pr-list { display: grid; gap: 8px; margin-top: 14px; }
.pr-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding: 11px 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  font-weight: 600;
  font-size: .95rem;
  transition: border-color .18s var(--ease), transform .18s var(--ease);
}
.pr-list a:hover { border-color: var(--accent); transform: translateX(-3px); }
.pr-list .pl-price { font-size: .86rem; font-weight: 700; color: var(--accent); white-space: nowrap; }

/* ---------------------------------------------------------------- destination cards */
.section-destinations { background: var(--cream); }

.dest-grid { display: grid; gap: 20px; }

.dest-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  border-top: 4px solid var(--accent);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.dest-card.is-highlight {
  box-shadow: 0 0 0 3px var(--accent), var(--shadow-m);
  transform: translateY(-4px);
}

.dc-media { display: block; overflow: hidden; background: var(--line-2); }
.dc-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.dest-card:hover .dc-media img { transform: scale(1.04); }

.dc-body { padding: 18px; display: flex; flex-direction: column; flex: 1 1 auto; }
.dc-fit {
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  align-self: flex-start;
  padding: 3px 12px;
  border-radius: 999px;
}
.dc-name { font-size: 1.5rem; margin-top: 10px; }
.dc-line { margin-top: 6px; color: var(--ink-2); font-size: .95rem; }
.dc-meta { margin-top: 12px; }

.pill-duration {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--line-2);
  padding: 4px 12px;
  border-radius: 999px;
}

.dc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.dc-tags li {
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-2);
  border: 1px solid var(--line);
  padding: 3px 11px;
  border-radius: 999px;
}

.dc-price {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
}
.p-from { font-size: .82rem; color: var(--ink-3); font-weight: 600; }
.p-num { font-size: 1.7rem; font-weight: 800; color: var(--ink); line-height: 1.1; }
.p-cur { font-size: .95rem; font-weight: 700; }
.p-per { font-size: .86rem; color: var(--ink-2); font-weight: 600; }

.dc-body .btn { margin-top: 14px; }

/* ---------------------------------------------------------------- destination details */
.dest-detail { padding-block: 52px; background: var(--paper); overflow: hidden; }
.dest-detail.dd-alt { background: linear-gradient(180deg, var(--accent-soft) 0%, #fff 62%); }

.dd-grid { display: grid; gap: 26px; }

.dd-media { display: grid; gap: 10px; }
.dd-large {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
}
.dd-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dd-tiles img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
}

.dd-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.dd-body h2 { font-size: clamp(1.45rem, 6vw, 2.1rem); }
.dd-story { margin-top: 14px; color: var(--ink-2); font-size: 1.02rem; }

.dd-price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 20px;
  padding: 14px 18px;
  background: var(--cream);
  border: 1px solid var(--cream-2);
  border-radius: var(--radius-m);
}
.dd-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 5px; }

.dd-h3 {
  font-size: 1.02rem;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.tag-optional {
  font-size: .72rem;
  font-weight: 700;
  color: #8A5A12;
  background: #FDEFD2;
  border: 1px solid #F7DFAC;
  padding: 2px 10px;
  border-radius: 999px;
}

.dd-list { margin-top: 10px; display: grid; gap: 8px; }
.dd-list li {
  position: relative;
  padding-inline-start: 26px;
  font-size: .95rem;
  color: var(--ink-2);
  line-height: 1.65;
}
.dd-list li::before {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  font-weight: 800;
  line-height: 1.65;
}
.dd-list-check li::before { content: '✓'; color: var(--leaf); }
.dd-list-plus li::before { content: '+'; color: var(--mango); font-size: 1.1rem; }
.dd-list-fit li::before {
  content: '';
  top: 11px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.dd-cols { display: grid; gap: 4px; }
.dd-mini { margin-top: 12px; font-size: .85rem; color: var(--ink-3); line-height: 1.65; }

.dd-note {
  margin-top: 20px;
  padding: 12px 16px;
  background: #F7FAFA;
  border-inline-start: 3px solid var(--line);
  border-radius: var(--radius-s);
  font-size: .87rem;
  color: var(--ink-2);
  line-height: 1.7;
}

.dd-body > .btn { margin-top: 22px; }

/* ---------------------------------------------------------------- comparison */
.section-compare { background: var(--cream); }

.cmp-scroll {
  margin-inline: calc(var(--pad) * -1);
  padding-inline: var(--pad);
  padding-block: 4px 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.cmp-grid { display: flex; gap: 14px; }

.cmp-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(260px, 78vw, 320px);
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: var(--radius-l);
  padding: 18px;
  box-shadow: var(--shadow-s);
  border-top: 4px solid var(--accent);
}
.cmp-head { padding-bottom: 14px; border-bottom: 1px solid var(--line-2); }
.cmp-head h3 { font-size: 1.3rem; }
.cmp-price { margin-top: 6px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 5px; }
.cmp-price .p-num { font-size: 1.3rem; color: var(--accent); }

.cmp-rows { margin-top: 6px; }
.cmp-rows > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-block: 9px;
  border-bottom: 1px dashed var(--line-2);
}
.cmp-rows dt { font-size: .87rem; color: var(--ink-2); font-weight: 600; }
.cmp-rows dd {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.meter { display: inline-flex; gap: 3px; }
.meter i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--line);
}
.cmp-rows dd[data-level="1"] .meter i:nth-child(-n+1),
.cmp-rows dd[data-level="2"] .meter i:nth-child(-n+2),
.cmp-rows dd[data-level="3"] .meter i:nth-child(-n+3),
.cmp-rows dd[data-level="4"] .meter i:nth-child(-n+4) { background: var(--accent); }

.cmp-card .btn { margin-top: 16px; }

.cmp-hint {
  margin-top: 10px;
  font-size: .82rem;
  color: var(--ink-3);
  text-align: center;
}

/* ---------------------------------------------------------------- budget */
.section-budget { background: var(--paper); }

.budget-options { display: grid; gap: 10px; }
.budget-opt {
  padding: 15px 18px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-m);
  font-weight: 700;
  font-size: .98rem;
  text-align: center;
  cursor: pointer;
  min-height: 52px;
  transition: border-color .18s var(--ease), background-color .18s var(--ease),
              transform .18s var(--ease), box-shadow .18s var(--ease);
}
.budget-opt:hover { border-color: var(--sea); transform: translateY(-2px); box-shadow: var(--shadow-s); }
.budget-opt.is-active {
  border-color: var(--mango);
  background: var(--cream);
  box-shadow: 0 0 0 3px rgba(251, 192, 30, .28);
}

/* ---------------------------------------------------------------- why */
.section-why { background: var(--cream); }
.why-grid { display: grid; gap: 14px; }
.why-grid li {
  padding: 20px;
  background: var(--paper);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  border-inline-start: 4px solid var(--sun);
}
.why-grid h3 { font-size: 1.05rem; }
.why-grid p { margin-top: 6px; color: var(--ink-2); font-size: .93rem; }

/* ---------------------------------------------------------------- lead form */
.section-form { background: var(--paper); }

.form-shell {
  background: linear-gradient(160deg, #0E2E3D 0%, #12586B 100%);
  border-radius: var(--radius-xl);
  padding: 26px 20px;
  color: #fff;
}
.form-intro .section-eyebrow { background: rgba(255, 255, 255, .16); color: #FFE3AE; }
.form-intro h2 { font-size: clamp(1.4rem, 5.6vw, 2.1rem); color: #fff; }
.form-intro .section-sub { color: rgba(255, 255, 255, .84); }

.form-points { display: grid; gap: 7px; margin-top: 16px; }
.form-points li {
  position: relative;
  padding-inline-start: 24px;
  font-size: .9rem;
  color: rgba(255, 255, 255, .9);
  line-height: 1.65;
}
.form-points li::before {
  content: '✓';
  position: absolute;
  inset-inline-start: 0;
  color: var(--sun);
  font-weight: 800;
}

.lead-form {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.form-setup {
  grid-column: 1 / -1;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  background: #FFF3CD;
  border: 1.5px solid #F2C744;
  border-radius: var(--radius-m);
  color: #6B4A05;
  font-size: .88rem;
  line-height: 1.65;
}
.form-setup[hidden] { display: none; }
.form-setup code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .85em;
  background: rgba(0, 0, 0, .07);
  padding: 1px 5px;
  border-radius: 4px;
}

.field { display: grid; gap: 6px; }
.field label {
  font-size: .88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .95);
}
.field .req { color: var(--sun); }

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid transparent;
  border-radius: var(--radius-s);
  padding: 13px 14px;
  min-height: 50px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { min-height: 92px; resize: vertical; line-height: 1.65; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230E2E3D'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 12px center;
  background-size: 20px;
  padding-inline-start: 40px;
}
.field input::placeholder,
.field textarea::placeholder { color: #9AAAB1; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sun);
  box-shadow: 0 0 0 3px rgba(251, 192, 30, .35);
}
.field.has-error input,
.field.has-error select { border-color: #FF8E7A; box-shadow: 0 0 0 3px rgba(255, 142, 122, .3); }

.err {
  font-size: .82rem;
  font-weight: 600;
  color: #FFC9BD;
}
.err[hidden] { display: none; }

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

.form-submit { margin-top: 4px; }
.form-privacy {
  margin-top: 10px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.65;
  text-align: center;
}
.form-status {
  margin-top: 12px;
  padding: 11px 14px;
  border-radius: var(--radius-s);
  font-size: .89rem;
  font-weight: 600;
  background: rgba(255, 142, 122, .18);
  border: 1px solid rgba(255, 142, 122, .5);
  color: #FFD7CE;
}
.form-status[hidden] { display: none; }

.form-success {
  margin-top: 24px;
  padding: 30px 22px;
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .3);
  border-radius: var(--radius-l);
  text-align: center;
}
.form-success[hidden] { display: none; }
.form-success svg {
  width: 52px; height: 52px;
  margin: 0 auto 12px;
  fill: var(--sun);
  background: rgba(251, 192, 30, .16);
  border-radius: 50%;
  padding: 12px;
}
.form-success h3 { font-size: 1.3rem; color: #fff; }
.form-success p { margin-top: 8px; color: rgba(255, 255, 255, .88); font-size: .96rem; }

/* ---------------------------------------------------------------- faq */
.section-faq { background: var(--cream); }
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.faq-item h3 { font-size: 1rem; }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 16px 18px;
  background: none;
  border: 0;
  text-align: start;
  font-weight: 700;
  font-size: .98rem;
  line-height: 1.6;
  cursor: pointer;
  min-height: 56px;
  transition: background-color .18s var(--ease);
}
.faq-q:hover { background: var(--cream); }
.faq-icon {
  position: relative;
  width: 22px; height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cream-2);
  transition: background-color .2s var(--ease), transform .25s var(--ease);
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  background: var(--ink);
  border-radius: 2px;
}
.faq-icon::before { width: 10px; height: 2px; }
.faq-icon::after { width: 2px; height: 10px; transition: opacity .2s var(--ease); }
.faq-q[aria-expanded="true"] .faq-icon { background: var(--sun); transform: rotate(180deg); }
.faq-q[aria-expanded="true"] .faq-icon::after { opacity: 0; }

.faq-a { padding: 0 18px 18px; }
.faq-a[hidden] { display: none; }
.faq-a p { color: var(--ink-2); font-size: .94rem; }

/* ---------------------------------------------------------------- final cta */
.final-cta {
  background:
    radial-gradient(120% 130% at 80% 0%, #1A6B7F 0%, transparent 60%),
    linear-gradient(160deg, #0E2E3D 0%, #0A2331 100%);
  color: #fff;
  padding-block: 56px;
  text-align: center;
}
.final-cta h2 { font-size: clamp(1.45rem, 6vw, 2.35rem); }
.final-cta p { margin-top: 14px; color: rgba(255, 255, 255, .85); font-size: 1.02rem; }
.final-cta .btn { margin-top: 24px; }

/* ---------------------------------------------------------------- footer */
/* The extra bottom padding reserves room for the sticky mobile bar. Keeping
   it on the footer rather than on <body> means the dark footer colour runs all
   the way to the bottom instead of leaving a white strip under it. */
.site-footer {
  background: #08202C;
  color: rgba(255, 255, 255, .78);
  padding-block: 34px calc(30px + var(--sticky-h));
}
.footer-top { display: grid; gap: 22px; }
.footer-logo {
  display: inline-block;
  background: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-s);
}
.footer-logo img { width: 128px; height: auto; }
.footer-brand p { margin-top: 14px; font-size: .9rem; line-height: 1.75; max-width: 420px; }

.footer-nav { display: flex; flex-wrap: wrap; gap: 4px 18px; }
.footer-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: .92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .86);
  transition: color .18s var(--ease);
}
.footer-nav a:hover { color: var(--sun); }

.footer-note {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .82rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .62);
}
.footer-copy { margin-top: 14px; font-size: .84rem; color: rgba(255, 255, 255, .55); }

/* ---------------------------------------------------------------- sticky cta */
.sticky-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 22px rgba(14, 46, 61, .12);
  transform: translateY(110%);
  transition: transform .28s var(--ease);
}
.sticky-cta[hidden] { display: none; }
.sticky-cta.is-visible { transform: none; }
.sticky-contact { display: flex; gap: 8px; }
.sticky-contact:empty { display: none; }
.sticky-contact a {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
}
.sticky-contact svg { width: 22px; height: 22px; fill: var(--sea); }

/* ---------------------------------------------------------------- reveal */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}

/* ==========================================================================
   BREAKPOINTS
   ========================================================================== */

/* --- 430px and up: small phones get a little more air ------------------- */
@media (min-width: 430px) {
  :root { --pad: 20px; }
  .value-list { grid-template-columns: 1fr 1fr; gap: 16px 18px; }
}

/* --- 640px and up: tablets start ---------------------------------------- */
@media (min-width: 640px) {
  .section { padding-block: 68px; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .budget-options { grid-template-columns: repeat(2, 1fr); }
  .style-options { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-form { grid-template-columns: 1fr 1fr; }
  .field-full { grid-column: 1 / -1; }
  .form-shell { padding: 34px 30px; }
  .hero { min-height: 600px; }
  .cmp-card { flex-basis: 300px; }
}

/* --- 720px and up: hero switches to the wide crop ----------------------- */
@media (min-width: 720px) {
  .hero { min-height: 620px; align-items: center; padding-block: 64px; }
  .hero-media img { object-position: 50% 50%; }
  .hero::after {
    background:
      linear-gradient(to left, rgba(6, 30, 41, .9) 0%, rgba(6, 30, 41, .78) 46%, rgba(6, 30, 41, .3) 82%, rgba(6, 30, 41, .2) 100%),
      linear-gradient(to top, rgba(6, 30, 41, .5) 0%, transparent 45%);
  }
  .hero-inner { max-width: 640px; }
  .hero-actions .btn { flex: 0 1 auto; }
}

/* --- 900px and up ------------------------------------------------------- */
@media (min-width: 900px) {
  html { scroll-padding-top: 84px; }
  :root { --pad: 28px; }

  .header-inner { min-height: 72px; }
  .brand img { width: 138px; }
  .header-nav {
    display: flex;
    gap: 26px;
    margin-inline-start: 26px;
  }
  .header-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--ink-2);
    transition: color .18s var(--ease);
  }
  .header-nav a:hover { color: var(--sea); }

  .section { padding-block: 84px; }
  .section-head { margin-bottom: 36px; }

  .value-strip { padding-block: 0; background: transparent; margin-top: -46px; position: relative; z-index: 5; }
  .value-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    background: var(--paper);
    border-radius: var(--radius-l);
    padding: 24px 26px;
    box-shadow: var(--shadow-m);
  }

  .style-options { grid-template-columns: repeat(5, 1fr); gap: 12px; }
  .style-opt { flex-direction: column; align-items: flex-start; padding: 18px 16px; }
  .style-opt .so-text { font-size: .92rem; }

  .budget-options { grid-template-columns: repeat(4, 1fr); }

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

  .dd-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr); align-items: center; gap: 44px; }
  .dest-detail:nth-of-type(even) .dd-media { order: 2; }
  .dd-cols { grid-template-columns: 1fr 1fr; gap: 8px 28px; align-items: start; }
  .dd-large { aspect-ratio: 4 / 3; }

  .cmp-scroll { overflow: visible; margin-inline: 0; padding-inline: 0; scroll-snap-type: none; }
  .cmp-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
  .cmp-card { flex: initial; padding: 20px 16px; }
  .cmp-card .cmp-head h3 { font-size: 1.15rem; }
  .cmp-rows > div { flex-direction: column; align-items: flex-start; gap: 4px; }
  .cmp-rows dt { font-size: .82rem; }
  .cmp-hint { display: none; }

  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }

  .form-shell {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 44px;
    padding: 46px 44px;
    align-items: start;
  }
  .form-intro { position: sticky; top: 96px; }
  .lead-form { margin-top: 0; }
  .form-success { grid-column: 1 / -1; margin-top: 0; }

  .footer-top { grid-template-columns: 1fr auto; align-items: start; }
  .footer-nav { justify-content: flex-end; gap: 10px 24px; }

  .final-cta { padding-block: 90px; }
}

/* --- 1200px and up ------------------------------------------------------ */
@media (min-width: 1200px) {
  .hero { min-height: 680px; }
  .dd-grid { gap: 56px; }
  .cmp-card { padding: 22px 18px; }
}

/* --- desktop: no sticky bar, no reserved space -------------------------- */
@media (min-width: 900px) {
  .sticky-cta { display: none !important; }
  .site-footer { padding-block: 34px 30px; }
}

/* ---------------------------------------------------------------- motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .sticky-cta { transition: none; }
}

/* ---------------------------------------------------------------- print */
@media print {
  .site-header, .sticky-cta, .hero-actions, .btn { display: none !important; }
  body { color: #000; }
}
