/* =============================================================================
   أجازات مصر | برامج الحج 1448 هـ / 2027 م
   Landing page stylesheet. Vanilla CSS, no build step, no framework.
   Mobile first. RTL. Tested at 360 / 390 / 430 / 768 / 1024 / 1440.
   ============================================================================= */

/* -----------------------------------------------------------------------------
   1. Design tokens
   Palette derived from the Agazat Masr logo (leaf green + warm gold) but taken
   down to a calmer, deeper range that suits a Hajj page.
   -------------------------------------------------------------------------- */
:root {
  --ink:        #17150F;
  --ink-soft:   #3A362C;
  --muted:      #6E675B;
  --muted-2:    #8C8577;

  --deep:       #123528;   /* deep green, headers and dark sections */
  --deep-2:     #0B2318;
  --green:      #2C6B4F;   /* primary action */
  --green-dark: #1F5039;
  --green-tint: #EAF1EC;

  --gold:       #A87C34;   /* restrained brass, used sparingly */
  --gold-soft:  #D9BE86;
  --gold-tint:  #F7EFDF;

  --cream:      #FBF8F2;
  --sand:       #F4EEE3;
  --sand-2:     #EFE7D8;
  --line:       #E3D9C7;
  --line-soft:  #EFE8DC;
  --white:      #FFFFFF;

  --radius:     14px;
  --radius-lg:  22px;
  --radius-sm:  10px;

  --shadow-sm:  0 1px 2px rgba(23, 21, 15, .05), 0 2px 8px rgba(23, 21, 15, .04);
  --shadow:     0 2px 6px rgba(23, 21, 15, .06), 0 10px 28px rgba(23, 21, 15, .07);
  --shadow-lg:  0 4px 12px rgba(23, 21, 15, .08), 0 20px 50px rgba(23, 21, 15, .11);

  --wrap:       1140px;
  --gutter:     18px;

  --font: "Cairo", "Segoe UI", "Noto Naskh Arabic", "Tahoma", system-ui, -apple-system, sans-serif;
}

/* -----------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 78px;   /* sticky header height */
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  background: var(--cream);
  overflow-x: hidden;         /* belt and braces against RTL overflow */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  color: var(--deep);
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0;
}
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }

/* Visible, high contrast focus for keyboard users */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; inset-inline-start: 0; top: -60px; z-index: 200;
  background: var(--deep); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0;
  transition: top .18s;
}
.skip-link:focus { top: 0; }

/* -----------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding: 58px 0; }
.section--tight { padding: 42px 0; }
.section--sand { background: var(--sand); }
.section--cream { background: var(--cream); }
.section--deep { background: var(--deep); color: #DFE7E0; }
.section--deep h2, .section--deep h3 { color: #fff; }
/* the lead form sits on a white card inside the dark section, so it opts back out */
.section--deep .form-wrap h2,
.section--deep .form-wrap h3 { color: var(--deep); }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--gold);
  background: var(--gold-tint);
  border: 1px solid #EADFC6;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section--deep .eyebrow {
  color: var(--gold-soft);
  background: rgba(217, 190, 134, .12);
  border-color: rgba(217, 190, 134, .3);
}

.section-head { max-width: 720px; margin-bottom: 30px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.45rem, 4.6vw, 2.05rem); }
.section-head p { color: var(--muted); font-size: 1.02rem; }
.section--deep .section-head p { color: #BFCDC3; }

.lead { font-size: 1.06rem; color: var(--ink-soft); }

/* A thin gold rule used as a quiet divider */
.rule {
  width: 54px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  margin-bottom: 18px;
}
.section-head.center .rule { margin-inline: auto; }

/* -----------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px;                 /* finger friendly */
  padding: 13px 26px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  cursor: pointer;
  text-align: center;
  transition: background-color .18s, color .18s, border-color .18s, transform .12s, box-shadow .18s;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--green); color: #fff; box-shadow: 0 6px 18px rgba(44, 107, 79, .26); }
.btn-primary:hover { background: var(--green-dark); color: #fff; }

.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 6px 18px rgba(168, 124, 52, .26); }
.btn-gold:hover { background: #8E6829; color: #fff; }

.btn-ghost { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn-ghost:hover { background: rgba(255, 255, 255, .2); color: #fff; }

.btn-outline { background: transparent; color: var(--green-dark); border-color: #C9D8CE; }
.btn-outline:hover { background: var(--green-tint); border-color: var(--green); }

.btn-block { width: 100%; }
.btn-sm { min-height: 44px; padding: 9px 18px; font-size: .93rem; }

/* -----------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(251, 248, 242, .93);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-in {
  display: flex; align-items: center; gap: 14px;
  min-height: 66px;
}
.brand { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand img { width: 132px; height: 54px; object-fit: contain; }

.main-nav { margin-inline-start: auto; display: none; }
.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
  display: block; padding: 8px 13px; border-radius: 999px;
  color: var(--ink-soft); font-size: .95rem; font-weight: 600;
}
.main-nav a:hover { background: var(--sand); text-decoration: none; color: var(--deep); }

.header-cta { margin-inline-start: auto; display: flex; align-items: center; gap: 8px; }
.main-nav + .header-cta { margin-inline-start: 10px; }
.header-cta .btn { min-height: 44px; padding: 8px 18px; font-size: .92rem; }
.header-phone { display: none; }

@media (min-width: 992px) {
  .main-nav { display: block; }
  .header-phone { display: inline-flex; }
  .brand img { width: 150px; height: 61px; }
  .header-in { min-height: 76px; }
}

/* -----------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  color: #fff;
  background: var(--deep-2);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 26, 18, .78) 0%, rgba(8, 26, 18, .62) 42%, rgba(8, 26, 18, .90) 100%),
    radial-gradient(120% 90% at 78% 12%, rgba(168, 124, 52, .22) 0%, rgba(0, 0, 0, 0) 62%);
}
.hero-in { position: relative; z-index: 1; padding-block: 46px 40px; }

.hero h1 {
  color: #fff;
  font-size: clamp(1.72rem, 7.2vw, 3.1rem);
  line-height: 1.34;
  margin-bottom: 16px;
  max-width: 16ch;
  text-wrap: balance;
}
.hero h1 .soft { color: var(--gold-soft); display: block; }
.hero-sub {
  font-size: clamp(1rem, 3.6vw, 1.16rem);
  color: #DCE6DF;
  max-width: 48ch;
  margin-bottom: 26px;
}
.hero-actions { display: flex; flex-direction: column; gap: 11px; max-width: 420px; }

.hero-note {
  margin-top: 24px;
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .93rem; color: #C9D6CD;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 12px 15px;
  max-width: 520px;
}
.hero-note strong { color: #fff; font-weight: 700; }
.hero-note .ico { flex: 0 0 auto; margin-top: 3px; color: var(--gold-soft); }

/* Small facts strip under the hero */
.hero-facts {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, .13);
  background: rgba(6, 20, 14, .5);
}
.hero-facts ul { display: grid; grid-template-columns: 1fr 1fr; gap: 1px 0; }
.hero-facts li {
  padding: 14px 8px; text-align: center;
  font-size: .86rem; color: #C4D2C9; line-height: 1.5;
}
.hero-facts b { display: block; color: #fff; font-size: 1.02rem; font-weight: 800; }

@media (min-width: 768px) {
  .hero-in { padding-block: 76px 62px; }
  .hero-actions { flex-direction: row; max-width: none; }
  .hero-actions .btn { flex: 0 0 auto; }
  .hero-facts ul { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1100px) {
  .hero-in { padding-block: 104px 88px; }
}

/* -----------------------------------------------------------------------------
   7. Story sections
   -------------------------------------------------------------------------- */
.story-grid { display: grid; gap: 26px; }
.story-quote {
  font-size: clamp(1.2rem, 5vw, 1.72rem);
  font-weight: 800; color: var(--deep); line-height: 1.55;
  margin: 0 0 18px;
}
.story-quote .soft { color: var(--gold); }

.story-media { display: grid; grid-template-columns: 1fr; gap: 12px; }
.story-media figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.story-media img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 860px) {
  .story-grid { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 44px; }
  .story-media { grid-template-columns: 1.35fr 1fr; align-items: stretch; }
  .story-media figure:first-child { grid-row: span 1; }
}

/* Value pillars */
.pillars { display: grid; gap: 14px; }
.pillar {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.pillar .ico {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 13px;
  background: var(--green-tint); color: var(--green-dark);
}
.pillar h3 { font-size: 1.06rem; margin-bottom: 6px; }
.pillar p { font-size: .96rem; color: var(--muted); margin: 0; }

@media (min-width: 620px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .pillars { grid-template-columns: repeat(4, 1fr); } }

/* -----------------------------------------------------------------------------
   8. Package cards
   -------------------------------------------------------------------------- */
.packages { display: grid; gap: 20px; align-items: start; }

.pkg {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.pkg:hover { box-shadow: var(--shadow); }

.pkg--featured {
  border-color: var(--green);
  border-width: 2px;
  box-shadow: var(--shadow);
}

.pkg-top { padding: 22px 20px 18px; border-bottom: 1px dashed var(--line); }
.pkg--featured .pkg-top { background: linear-gradient(180deg, var(--green-tint), rgba(234, 241, 236, 0)); }

.pkg-tag {
  display: inline-block; font-size: .78rem; font-weight: 700;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 12px;
  background: var(--sand-2); color: var(--ink-soft);
}
.pkg--featured .pkg-tag { background: var(--green); color: #fff; }
.pkg--gold .pkg-tag { background: var(--gold-tint); color: #7E5D22; }

.pkg h3 { font-size: 1.22rem; margin-bottom: 4px; line-height: 1.45; }
.pkg-transport {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .9rem; color: var(--muted); margin-bottom: 16px;
}

.pkg-price { display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; }
.pkg-price .num {
  font-size: clamp(1.85rem, 6.4vw, 2.3rem);
  font-weight: 800; color: var(--deep); line-height: 1.1;
  white-space: nowrap;              /* price must never break awkwardly */
  font-feature-settings: "tnum";
}
.pkg-price .cur { font-size: 1rem; font-weight: 700; color: var(--ink-soft); }
/* single, unmissable line under every price: the transport ticket is extra */
.pkg-plus {
  margin-top: 10px; display: block;
  background: #FBF1E2; border: 1px solid #E7D2B0;
  border-radius: var(--radius-sm); padding: 10px 13px;
  font-size: .97rem; font-weight: 800; color: #8A5514; line-height: 1.5;
}
.pkg-price-note { margin-top: 9px; font-size: .84rem; color: var(--muted); line-height: 1.65; }

.pkg-body { padding: 18px 20px 20px; flex: 1 1 auto; }

.stay { padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.stay:first-child { padding-top: 0; }
.stay:last-of-type { border-bottom: 0; }
.stay-city {
  display: flex; align-items: center; gap: 7px;
  font-size: .8rem; font-weight: 800; color: var(--gold);
  letter-spacing: .02em; margin-bottom: 5px;
}
.stay-name { font-weight: 700; color: var(--deep); font-size: 1rem; line-height: 1.55; }
.stay-name .maybe { font-weight: 600; color: var(--muted); font-size: .9em; }
.stay-meta { font-size: .9rem; color: var(--muted); margin-top: 3px; line-height: 1.6; }
.stay-meta .dates { color: var(--ink-soft); font-weight: 600; }

.pkg-value {
  margin-top: 14px; padding: 13px 15px;
  background: var(--sand); border-radius: var(--radius-sm);
  font-size: .94rem; color: var(--ink-soft);
}
.pkg-deposit {
  margin-top: 12px; font-size: .88rem; color: var(--muted);
  display: flex; gap: 7px; align-items: flex-start;
}
.pkg-deposit b { color: var(--ink-soft); font-weight: 700; white-space: nowrap; }

.pkg-foot { padding: 0 20px 22px; }

@media (min-width: 700px) { .packages { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) {
  .packages { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  /* lift the featured card with layout, not transform: `.reveal.is-in`
     sets `transform: none` and would otherwise win on specificity */
  .pkg--featured { margin-block-start: -10px; }
}

/* -----------------------------------------------------------------------------
   9. Hotels
   -------------------------------------------------------------------------- */
.hotel-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(255px, 82%);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 16px;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  scrollbar-width: thin;
}
.hotel-scroller > * { scroll-snap-align: start; }

.hotel {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.hotel-img { position: relative; aspect-ratio: 4 / 3; background: var(--sand-2); }
.hotel-img img { width: 100%; height: 100%; object-fit: cover; }
.hotel-city {
  position: absolute; inset-block-start: 10px; inset-inline-start: 10px;
  background: rgba(11, 35, 24, .82); color: #fff;
  font-size: .76rem; font-weight: 700; padding: 4px 11px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.hotel-body { padding: 15px 16px 17px; flex: 1 1 auto; display: flex; flex-direction: column; }
.hotel-body h3 { font-size: 1.04rem; margin-bottom: 3px; }
.hotel-alt {
  display: inline-block; font-size: .8rem; font-weight: 700; color: #7E5D22;
  background: var(--gold-tint); border: 1px solid #EADFC6;
  padding: 2px 9px; border-radius: 7px; margin-bottom: 9px;
}
.hotel-body p { font-size: .92rem; color: var(--muted); margin: 0 0 10px; }
.hotel-progs {
  margin-top: auto; padding-top: 10px; border-top: 1px solid var(--line-soft);
  font-size: .84rem; color: var(--muted);
}
.hotel-progs b { color: var(--ink-soft); font-weight: 700; }

@media (min-width: 760px) {
  .hotel-scroller {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-columns: auto;
    overflow: visible;
    margin-inline: 0; padding-inline: 0;
    gap: 18px;
  }
}
@media (min-width: 1040px) { .hotel-scroller { grid-template-columns: repeat(3, 1fr); } }

.hotels-note {
  margin-top: 18px; padding: 15px 18px;
  background: var(--gold-tint); border: 1px solid #EADFC6;
  border-radius: var(--radius); font-size: .94rem; color: #6E5121;
}

/* -----------------------------------------------------------------------------
   10. Timeline
   -------------------------------------------------------------------------- */
.tl-tabs {
  display: flex; gap: 8px; overflow-x: auto; padding-bottom: 12px;
  margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
  scrollbar-width: none;
}
.tl-tabs::-webkit-scrollbar { display: none; }
.tl-tab {
  flex: 0 0 auto; min-height: 46px;
  background: rgba(255, 255, 255, .08); color: #CFDBD3;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px; padding: 9px 18px;
  font-size: .93rem; font-weight: 700; cursor: pointer;
  transition: background-color .18s, color .18s, border-color .18s;
}
.tl-tab:hover { background: rgba(255, 255, 255, .16); color: #fff; }
.tl-tab[aria-selected="true"] { background: var(--gold-soft); color: #2A1F0A; border-color: var(--gold-soft); }

.tl-panel { padding-top: 22px; }
.tl-panel[hidden] { display: none; }
.tl-list { position: relative; padding-inline-start: 26px; list-style: none; }
.tl-list::before {
  content: ""; position: absolute; inset-block: 10px 14px;
  inset-inline-start: 5px; width: 2px;
  background: linear-gradient(180deg, var(--gold-soft), rgba(217, 190, 134, .18));
}
.tl-step { position: relative; padding-bottom: 22px; }
.tl-step:last-child { padding-bottom: 0; }
.tl-step::before {
  content: ""; position: absolute; inset-inline-start: -26px; top: 9px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold-soft); box-shadow: 0 0 0 4px rgba(217, 190, 134, .18);
}
.tl-when {
  display: inline-block; font-size: .84rem; font-weight: 800; color: var(--gold-soft);
  margin-bottom: 3px;
}
.tl-step h4 { color: #fff; font-size: 1.04rem; margin-bottom: 3px; }
.tl-step p { color: #B9C8BE; font-size: .94rem; margin: 0; }
.tl-foot {
  margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .92rem; color: #A8BAAE;
}

/* -----------------------------------------------------------------------------
   11. Apply / lottery block
   -------------------------------------------------------------------------- */
.dates-grid { display: grid; gap: 14px; margin-bottom: 26px; }
.date-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow-sm);
}
.date-card.is-urgent { border-color: #E4C79A; background: #FDF8EF; }
.date-card .label { font-size: .88rem; color: var(--muted); font-weight: 600; }
.date-card .value {
  font-size: 1.3rem; font-weight: 800; color: var(--deep); margin-top: 4px; line-height: 1.35;
}
.date-card.is-urgent .value { color: #8E6829; }

@media (min-width: 620px) { .dates-grid { grid-template-columns: 1fr 1fr; } }

.info-grid { display: grid; gap: 14px; }
@media (min-width: 860px) { .info-grid { grid-template-columns: 1fr 1fr; align-items: start; } }

.info-card {
  background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow-sm);
}
.info-card h3 { font-size: 1.08rem; margin-bottom: 12px; }
.check-list li {
  position: relative; padding-inline-start: 27px; margin-bottom: 10px;
  font-size: .96rem; color: var(--ink-soft); line-height: 1.7;
}
.check-list li:last-child { margin-bottom: 0; }
.check-list li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: .55em;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--green-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%232C6B4F' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 8.4l3 3 6-6.4'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* Deposit table */
.dep-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.dep-table caption {
  text-align: start; font-weight: 800; color: var(--deep);
  font-size: 1.08rem; padding-bottom: 12px;
}
.dep-table th, .dep-table td {
  padding: 11px 12px; border-bottom: 1px solid var(--line-soft); text-align: start;
}
.dep-table th { font-weight: 700; color: var(--ink-soft); }
.dep-table td { font-weight: 800; color: var(--deep); white-space: nowrap; font-feature-settings: "tnum"; }
.dep-table tr:last-child th, .dep-table tr:last-child td { border-bottom: 0; }

/* Collapsibles */
.acc { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.acc + .acc { margin-top: 10px; }
.acc summary {
  list-style: none; cursor: pointer; padding: 17px 20px;
  font-weight: 700; color: var(--deep); font-size: 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  min-height: 56px;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: ""; flex: 0 0 auto; width: 11px; height: 11px;
  border-inline-end: 2.4px solid var(--gold); border-block-end: 2.4px solid var(--gold);
  transform: rotate(45deg); margin-top: -5px; transition: transform .22s;
}
.acc[open] summary::after { transform: rotate(-135deg); margin-top: 3px; }
.acc summary:hover { background: var(--sand); }
.acc-body { padding: 2px 20px 20px; font-size: .96rem; color: var(--ink-soft); }
.acc-body p { margin-bottom: .85em; }
.acc-body li { position: relative; padding-inline-start: 18px; margin-bottom: 9px; line-height: 1.75; }
.acc-body li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: .72em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold-soft);
}

.price-notice {
  margin-top: 22px; padding: 15px 17px;
  display: flex; align-items: flex-start; gap: 11px;
  background: #FBF1E2; border: 1px solid #E7D2B0;
  border-radius: var(--radius);
  font-size: .98rem; font-weight: 700; color: #7A4A11; line-height: 1.75;
}
.price-notice svg { flex: 0 0 auto; margin-top: 5px; }

/* explicit "ticket not included" line under the secondary programme prices */
.alt-price .excl {
  display: block; font-size: .82rem; font-weight: 700; color: #8A5514;
  margin-top: 3px; white-space: normal;
}

/* the same clarification inside the lead form */
.field-note {
  margin: 8px 0 0; font-size: .85rem; color: var(--muted); line-height: 1.65;
}

.legal-note {
  margin-top: 18px; padding: 15px 18px;
  background: #F7F5F0; border: 1px solid var(--line-soft);
  border-inline-start: 4px solid var(--gold-soft);
  border-radius: var(--radius-sm);
  font-size: .92rem; color: var(--muted); line-height: 1.8;
}

/* -----------------------------------------------------------------------------
   12. Other programs table
   -------------------------------------------------------------------------- */
.alt-list { display: grid; gap: 12px; }
.alt {
  background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 17px 19px;
  display: grid; gap: 10px;
}
.alt-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.alt-head h3 { font-size: 1.04rem; margin: 0; }
.alt-price {
  font-weight: 800; color: var(--deep); font-size: 1.1rem; white-space: nowrap;
  font-feature-settings: "tnum";
}
.alt-price small { display: block; font-size: .75rem; font-weight: 600; color: var(--muted); }
.alt-rows { display: grid; gap: 7px; font-size: .92rem; color: var(--muted); }
.alt-rows b { color: var(--ink-soft); font-weight: 700; }
.alt-foot { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

@media (min-width: 900px) { .alt-list { grid-template-columns: 1fr 1fr; } }

/* -----------------------------------------------------------------------------
   13. FAQ
   -------------------------------------------------------------------------- */
.faq-list { display: grid; gap: 10px; max-width: 860px; margin-inline: auto; }

/* -----------------------------------------------------------------------------
   14. Lead form
   -------------------------------------------------------------------------- */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; gap: 15px; }
@media (min-width: 620px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
  .form-wrap { padding: 30px 28px; }
}

.field label {
  display: block; font-size: .92rem; font-weight: 700;
  color: var(--ink-soft); margin-bottom: 6px;
}
.field .opt { font-weight: 500; color: var(--muted-2); font-size: .85em; }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  font: inherit;
  font-size: 1rem;                 /* 16px stops iOS zoom on focus */
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .16s, background-color .16s, box-shadow .16s;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { min-height: 96px; resize: vertical; line-height: 1.7; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #fff;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(44, 107, 79, .14);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%236E675B' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 15px center;
  background-size: 12px;
  padding-inline-start: 40px;
}
.field input[type="tel"] { direction: ltr; text-align: end; font-feature-settings: "tnum"; }

.field .err {
  display: none; margin-top: 6px; font-size: .86rem;
  color: #B4341F; font-weight: 600;
}
.field.is-invalid input,
.field.is-invalid select { border-color: #D9705B; background: #FDF5F3; }
.field.is-invalid .err { display: block; }

/* honeypot, never visible to humans */
.hp {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

.form-consent { font-size: .86rem; color: var(--muted); margin-top: 4px; line-height: 1.75; }

.form-alert {
  display: none; margin-bottom: 16px; padding: 14px 16px;
  border-radius: var(--radius-sm); font-size: .96rem; font-weight: 600; line-height: 1.7;
}
.form-alert.is-error { display: block; background: #FDF2EF; border: 1px solid #F0CFC6; color: #A0301B; }

.form-success { text-align: center; padding: 12px 4px; }
.form-success .tick {
  width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 16px;
  display: grid; place-items: center;
  background: var(--green-tint); color: var(--green-dark);
}
.form-success h3 { font-size: 1.28rem; }
.form-success p { color: var(--muted); }

.form-side { margin-bottom: 26px; }
.form-side .trust li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .96rem; margin-bottom: 12px; color: #CBD8CE;
}
.form-side .trust .ico { flex: 0 0 auto; color: var(--gold-soft); margin-top: 3px; }
.form-side .trust b { color: #fff; }

@media (min-width: 940px) {
  .form-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 40px; align-items: start; }
  .form-side { margin-bottom: 0; position: sticky; top: 96px; }
}

/* -----------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--deep-2); color: #9EB2A5; padding: 44px 0 30px; font-size: .93rem; }
.site-footer a { color: #C9D8CE; }
.footer-grid { display: grid; gap: 26px; }
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 12px; }
.footer-brand img { width: 148px; height: 60px; object-fit: contain; margin-bottom: 14px; filter: brightness(0) invert(1) opacity(.92); }
.footer-list li { margin-bottom: 8px; line-height: 1.7; }
.footer-bottom {
  margin-top: 30px; padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .11);
  font-size: .86rem; color: #7D9188;
  display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between;
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1.2fr; gap: 36px; } }

/* -----------------------------------------------------------------------------
   16. Sticky mobile CTA
   -------------------------------------------------------------------------- */
.sticky-cta {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 80;
  background: rgba(251, 248, 242, .96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 9px var(--gutter) calc(9px + env(safe-area-inset-bottom, 0px));
  display: flex; gap: 9px;
  transform: translateY(120%);
  transition: transform .28s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { flex: 1 1 auto; min-height: 50px; padding: 11px 14px; font-size: .97rem; }
.sticky-cta .btn-icon {
  flex: 0 0 auto; width: 50px; min-height: 50px; padding: 0;
  display: grid; place-items: center;
}
body.has-sticky { padding-bottom: 74px; }

@media (min-width: 992px) {
  .sticky-cta { display: none; }
  body.has-sticky { padding-bottom: 0; }
}

/* -----------------------------------------------------------------------------
   17. Motion
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* -----------------------------------------------------------------------------
   18. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .sticky-cta, .hero-media, .btn { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding: 12px 0; }
}
