/* ──────────────────────────────────────────────────────────────
   MITEC website — components & layout (LIGHT · full-width · editorial)
   Bright, image-led, premium. KLCC-style IA, MITEC display type,
   black pill CTAs, gold micro-accent. Full-bleed intentional layout
   with true 320px → ultrawide responsiveness and a real mobile menu.
   ────────────────────────────────────────────────────────────── */

/* ── Layout primitives ────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding-inline: var(--container-gutter); }
.container--narrow { max-width: 1180px; }
.section { padding-block: var(--space-section); }
.section--tight { padding-block: var(--space-block); }
.section--soft { background: var(--bg-soft); }
.section--ink { background: var(--bg-ink); color: var(--on-ink); }
.bleed { width: 100%; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-feature-settings: var(--font-feature-body); font-size: var(--type-caption); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.eyebrow::before { content: ''; width: 26px; height: 1.5px; background: currentColor; opacity: 0.55; }
.eyebrow--plain::before { display: none; }
.section--ink .eyebrow { color: #e3c47e; }
.lead { color: var(--ink-muted); max-width: 64ch; font-size: var(--type-body-lg); line-height: 1.55; }
.section--ink .lead { color: var(--on-ink-muted); }
.muted { color: var(--ink-muted); }
.center { text-align: center; }
.section-head { display: flex; flex-direction: column; gap: clamp(14px, 1.6vw, 20px); margin-bottom: clamp(40px, 5vw, 68px); max-width: 820px; }
.section-head--center { margin-inline: auto; align-items: center; text-align: center; }
.row-between { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap; margin-bottom: clamp(32px, 4vw, 56px); }
img { max-width: 100%; display: block; }
.ico { width: 18px; height: 18px; stroke-width: 1.6; flex: 0 0 auto; }

/* ── Buttons (pills) ──────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--font-body); font-feature-settings: var(--font-feature-body); font-size: var(--type-body-sm); font-weight: 500; letter-spacing: -0.1px; line-height: 1; border: none; cursor: pointer; text-decoration: none; white-space: nowrap; border-radius: var(--radius-pill); padding: 15px 24px; min-height: 50px; transition: transform 140ms cubic-bezier(.3,.7,.3,1), background 160ms ease, box-shadow 160ms ease, color 160ms ease; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(0.97); }
.btn--sm { padding: 10px 17px; min-height: 42px; }
.btn--primary { background: var(--ink); color: var(--on-ink); }
.btn--primary:hover { background: #000; box-shadow: var(--shadow-md); }
.btn--gold { background: var(--accent); color: #ffffff; }
.btn--gold:hover { background: var(--accent-deep); box-shadow: var(--glow-gold); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line-strong); }
.btn--ghost:hover { background: var(--bg-soft); box-shadow: inset 0 0 0 1px var(--ink); }
.btn--on-ink { background: #ffffff; color: var(--ink); }
.btn--on-ink:hover { box-shadow: var(--shadow-lg); }
.btn--ghost-on-ink { background: rgba(255,255,255,0.06); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28); backdrop-filter: blur(8px); }
.btn--ghost-on-ink:hover { background: rgba(255,255,255,0.14); }
.btn .ico { width: 16px; height: 16px; }

.textlink { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-family: var(--font-body); font-feature-settings: var(--font-feature-body); font-size: var(--type-body-sm); font-weight: 600; text-decoration: none; }
.textlink .ico { width: 15px; height: 15px; transition: transform 200ms cubic-bezier(.3,.7,.3,1); color: var(--accent); }
.textlink:hover .ico { transform: translateX(4px); }
.section--ink .textlink { color: #fff; }

/* ── Chips ────────────────────────────────────────────────────── */
.chip { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-body); font-feature-settings: var(--font-feature-body); font-size: var(--type-caption); font-weight: 600; letter-spacing: -0.1px; padding: 7px 14px; border-radius: var(--radius-pill); color: var(--ink-muted); background: var(--bg-soft); box-shadow: inset 0 0 0 1px var(--line); }
.chip--accent { color: #fff; background: var(--accent); box-shadow: none; }
.chip--glass { color: #fff; background: rgba(255,255,255,0.14); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.30); backdrop-filter: blur(8px); }

/* ── Navigation ───────────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.72); backdrop-filter: saturate(180%) blur(18px); border-bottom: 1px solid transparent; transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease; }
.nav.is-scrolled { background: rgba(255,255,255,0.92); border-bottom-color: var(--line); box-shadow: 0 1px 30px -12px rgba(20,18,12,0.18); }
.nav-inner { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); height: clamp(64px, 6vw, 78px); }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 23px; letter-spacing: -1.2px; flex: 0 0 auto; }
.brand .mark { width: 25px; height: 25px; border-radius: 7px; background: var(--ink); position: relative; }
.brand .mark::after { content: ''; position: absolute; inset: 6px; border-radius: 3px; background: var(--accent); }
.brand img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav-item { position: relative; }
.nav-link { display: inline-flex; align-items: center; gap: 5px; padding: 10px 15px; border-radius: var(--radius-pill); font-family: var(--font-body); font-feature-settings: var(--font-feature-body); font-size: var(--type-body-sm); font-weight: 500; letter-spacing: -0.1px; color: var(--ink-muted); text-decoration: none; cursor: pointer; white-space: nowrap; transition: color 140ms ease, background 140ms ease; }
.nav-link:hover, .nav-item:hover > .nav-link { color: var(--ink); }
.nav-link.is-active { color: var(--ink); }
.nav-link.is-active::after { content: ''; position: absolute; left: 15px; right: 15px; bottom: 2px; height: 2px; border-radius: 2px; background: var(--accent); }
.nav-link .caret { width: 11px; height: 11px; opacity: 0.55; transition: transform 200ms ease; }
.nav-item:hover .caret { transform: rotate(180deg); }

.mega { position: absolute; top: calc(100% + 12px); left: 0; transform: translateY(8px); min-width: 320px; background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--line); padding: 12px; opacity: 0; visibility: hidden; transition: opacity 180ms ease, transform 180ms ease, visibility 180ms; }
.mega::before { content: ''; position: absolute; bottom: 100%; left: 0; right: 0; height: 16px; }
.nav-item:hover .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega--right { left: auto; right: 0; }
.mega--wide { min-width: 560px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.mega a { display: flex; flex-direction: column; gap: 3px; padding: 13px 15px; border-radius: var(--radius-md); text-decoration: none; transition: background 140ms ease; }
.mega a:hover { background: var(--bg-soft); }
.mega a .mi-title { font-family: var(--font-body); font-feature-settings: var(--font-feature-body); font-size: var(--type-body-sm); font-weight: 600; color: var(--ink); }
.mega a .mi-desc { font-size: var(--type-micro); color: var(--ink-muted); }

.nav-utility { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.lang { display: inline-flex; align-items: center; gap: 5px; font-size: var(--type-caption); font-weight: 500; }
.lang a { color: var(--ink-muted); text-decoration: none; }
.lang a.is-active { color: var(--ink); }
.lang .sep { color: var(--line-strong); }
.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: var(--radius-full); background: var(--bg-soft); color: var(--ink); border: none; cursor: pointer; text-decoration: none; transition: background 140ms ease; box-shadow: inset 0 0 0 1px var(--line); }
.icon-btn:hover { background: #ecebe5; }
.icon-btn .ico { width: 17px; height: 17px; }
.nav-burger { display: none; }

/* ── Mobile drawer (built by site.js) ─────────────────────────── */
.mobile-drawer { position: fixed; inset: 0; z-index: 200; visibility: hidden; pointer-events: none; }
.mobile-drawer.open { visibility: visible; pointer-events: auto; }
.md-overlay { position: absolute; inset: 0; background: rgba(20,18,12,0.42); backdrop-filter: blur(2px); opacity: 0; transition: opacity 280ms ease; }
.mobile-drawer.open .md-overlay { opacity: 1; }
.md-panel { position: absolute; top: 0; right: 0; height: 100%; width: min(440px, 90vw); background: var(--bg); display: flex; flex-direction: column; transform: translateX(100%); transition: transform 360ms cubic-bezier(.4,0,.1,1); box-shadow: -30px 0 80px -30px rgba(20,18,12,0.4); }
.mobile-drawer.open .md-panel { transform: translateX(0); }
.md-head { display: flex; align-items: center; justify-content: space-between; padding: 20px var(--container-gutter); border-bottom: 1px solid var(--line); flex: 0 0 auto; }
.md-scroll { overflow-y: auto; padding: 12px var(--container-gutter) 28px; flex: 1; }
.md-group { border-bottom: 1px solid var(--line); padding: 6px 0; }
.md-link { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 4px; font-family: var(--font-display); font-weight: 500; font-size: clamp(22px, 6vw, 28px); letter-spacing: -0.8px; color: var(--ink); text-decoration: none; }
.md-link .ico { color: var(--accent); }
.md-sub { display: flex; flex-direction: column; gap: 2px; padding: 0 4px 12px; }
.md-sub a { font-size: 15px; color: var(--ink-muted); text-decoration: none; padding: 7px 0; }
.md-sub a:hover { color: var(--ink); }
.md-foot { display: flex; flex-direction: column; gap: 12px; padding: 22px var(--container-gutter) calc(22px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); flex: 0 0 auto; }
.md-foot .btn { width: 100%; }
.md-meta { display: flex; gap: 18px; align-items: center; font-size: 13px; color: var(--ink-muted); }
.md-burger-x { position: relative; }
body.body-lock { overflow: hidden; }

/* ── Media placeholder (warm/light) ───────────────────────────── */
.ph { position: relative; overflow: hidden; background:
  radial-gradient(90% 130% at 72% 6%, var(--ph-tint, rgba(180,137,47,0.10)), rgba(246,245,241,0) 60%),
  repeating-linear-gradient(135deg, rgba(20,18,12,0.018) 0 2px, rgba(0,0,0,0) 2px 10px),
  linear-gradient(160deg, #eceae3, #e2dfd5); display: flex; align-items: center; justify-content: center; }
.ph--violet { --ph-tint: rgba(106,76,245,0.18); }
.ph--orange { --ph-tint: rgba(255,122,61,0.18); }
.ph--coral { --ph-tint: rgba(255,85,119,0.16); }
.ph--gold { --ph-tint: rgba(180,137,47,0.22); }
.ph-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 12px; font-weight: 500; letter-spacing: 0.02em; color: var(--ink-soft); }
.ph-label .ico { width: 15px; height: 15px; }
.ph--dark { background:
  radial-gradient(80% 120% at 70% 8%, var(--ph-tint, rgba(106,76,245,0.30)), rgba(9,9,9,0) 60%),
  repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 2px, rgba(0,0,0,0) 2px 10px),
  linear-gradient(160deg, #20202a, #121117); }
.ph--dark .ph-label { color: rgba(255,255,255,0.55); }
.imgph { background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }

/* ── Hero (full-bleed, image-led) ─────────────────────────────── */
.hero { position: relative; min-height: clamp(560px, 92vh, 1000px); display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; background:
  radial-gradient(75% 95% at 80% 6%, rgba(180,137,47,0.32), rgba(20,18,12,0) 55%),
  radial-gradient(70% 80% at 8% 88%, rgba(106,76,245,0.22), rgba(20,18,12,0) 55%),
  linear-gradient(155deg, #2a2620 0%, #14130f 60%); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-grid { position: absolute; inset: 0; z-index: 0; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 76px 76px; mask-image: radial-gradient(80% 80% at 50% 30%, #000 25%, transparent 78%); }
.hero-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(20,18,12,0.46) 0%, rgba(20,18,12,0.10) 32%, rgba(20,18,12,0.42) 70%, rgba(20,18,12,0.88) 100%); }
.hero-inner { position: relative; z-index: 2; padding-top: clamp(80px, 12vh, 140px); padding-bottom: clamp(44px, 6vh, 72px); width: 100%; color: #fff; }
.hero h1 { color: #fff; max-width: 20ch; margin-bottom: clamp(18px, 2.4vw, 28px); }
.hero .lead { color: rgba(255,255,255,0.88); font-size: clamp(17px, 1.7vw, 21px); margin-bottom: clamp(24px, 3vw, 36px); max-width: 56ch; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.media-tag { position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-body); font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.5); }

.stat-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: clamp(32px, 4.5vw, 52px); }
.stat-badge { display: flex; flex-direction: column; gap: 4px; padding: 18px 28px 18px 22px; border-radius: var(--radius-md); background: rgba(255,255,255,0.10); backdrop-filter: blur(12px); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18); }
.stat-badge .n { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 3vw, 36px); letter-spacing: -1.6px; color: #fff; }
.stat-badge .l { font-size: var(--type-caption); color: rgba(255,255,255,0.72); }

/* ── Quick-access strip ───────────────────────────────────────── */
.quickstrip { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px, 1.5vw, 20px); margin-top: clamp(-56px, -4vw, -44px); position: relative; z-index: 5; }
.quickstrip a { display: flex; align-items: center; gap: 18px; padding: clamp(20px, 2.2vw, 28px); background: var(--surface); border-radius: var(--radius-lg); text-decoration: none; box-shadow: var(--shadow-md); border: 1px solid var(--line); transition: transform 200ms ease, box-shadow 200ms ease; }
.quickstrip a:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.quickstrip .qi-ico { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: var(--radius-full); background: var(--bg-soft); color: var(--accent); flex: 0 0 auto; }
.quickstrip .qi-ico .ico { width: 21px; height: 21px; }
.quickstrip .qi-t { font-family: var(--font-body); font-feature-settings: var(--font-feature-body); font-size: var(--type-body-lg); font-weight: 600; color: var(--ink); }
.quickstrip .qi-d { font-size: var(--type-caption); color: var(--ink-muted); }
.quickstrip .qi-arrow { margin-left: auto; color: var(--ink-soft); transition: transform 200ms ease; }
.quickstrip a:hover .qi-arrow { transform: translateX(4px); color: var(--accent); }

/* ── Split (editorial 2-col) ──────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 88px); align-items: center; }
.split .ph { aspect-ratio: 4 / 3; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); }
.stack { display: flex; flex-direction: column; gap: clamp(18px, 2vw, 26px); align-items: flex-start; }

/* ── Fast facts ───────────────────────────────────────────────── */
.fact-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(12px, 1.3vw, 18px); }
.fact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 2vw, 30px) clamp(20px, 1.8vw, 26px); display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow-sm); transition: transform 200ms ease, box-shadow 200ms ease; }
.fact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.fact-card .fi { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: var(--radius-full); background: var(--bg-soft); color: var(--accent); }
.fact-card .fi .ico { width: 21px; height: 21px; }
.fact-card .fn { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 2.6vw, 36px); letter-spacing: -1.6px; color: var(--ink); }
.fact-card .fl { font-size: var(--type-caption); color: var(--ink-muted); line-height: 1.4; }

/* ── Event cards (carousel + grid) ────────────────────────────── */
.event-scroll { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(340px, 1fr); gap: clamp(16px, 1.6vw, 24px); overflow-x: auto; padding: 4px 4px 16px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.event-scroll::-webkit-scrollbar { height: 8px; }
.event-scroll::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 100px; }
.event-card { scroll-snap-align: start; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); text-decoration: none; transition: transform 200ms ease, box-shadow 200ms ease; }
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.event-card .ph { aspect-ratio: 16 / 10; }
.event-card .ec-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 9px; }
.event-card .ec-date { font-size: var(--type-caption); font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; color: var(--accent); }
.event-card .ec-title { font-family: var(--font-body); font-feature-settings: var(--font-feature-body); font-size: var(--type-body-lg); font-weight: 600; letter-spacing: -0.3px; color: var(--ink); line-height: 1.25; }
.event-card .ec-meta { font-size: var(--type-body-sm); color: var(--ink-muted); }
.event-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 1.8vw, 26px); }
.event-list .event-card .ph { aspect-ratio: 16 / 11; }

/* ── Feature grid (spaces) ────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 1.8vw, 26px); }
.feature-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); text-decoration: none; transition: transform 200ms ease, box-shadow 200ms ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-card .ph { aspect-ratio: 3 / 2; }
.feature-card .fc-body { padding: clamp(22px, 2vw, 30px); display: flex; flex-direction: column; gap: 11px; flex: 1; }
.feature-card .fc-title { font-family: var(--font-body); font-feature-settings: var(--font-feature-body); font-size: var(--type-headline); font-weight: 700; letter-spacing: -0.4px; color: var(--ink); }
.feature-card .fc-desc { font-size: var(--type-body); color: var(--ink-muted); line-height: 1.5; }
.feature-card .textlink { margin-top: auto; padding-top: 6px; }

/* ── Spotlight (signature gradient feature) ───────────────────── */
.spotlight { position: relative; overflow: hidden; border-radius: var(--radius-xxl); padding: clamp(36px, 4.5vw, 68px); color: #fff; box-shadow: var(--shadow-md); }
.spotlight--violet { background: var(--gradient-violet); box-shadow: var(--glow-violet); }
.spotlight--orange { background: var(--gradient-orange); box-shadow: var(--glow-orange); }
.spotlight--gold { background: var(--gradient-gold); box-shadow: var(--glow-gold); }
.spotlight::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,0.20), rgba(255,255,255,0) 44%); mix-blend-mode: soft-light; pointer-events: none; }
.spotlight > * { position: relative; }
.spotlight .sp-eyebrow { font-size: var(--type-caption); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.88); }
.spotlight-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 3.5vw, 48px); align-items: center; }

/* ── Tour band (immersive dark) ───────────────────────────────── */
.tour { position: relative; overflow: hidden; border-radius: var(--radius-xxl); min-height: clamp(340px, 44vw, 460px); display: flex; align-items: center; justify-content: center; text-align: center; }
.tour .ph { position: absolute; inset: 0; }
.tour-inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: clamp(16px, 2vw, 24px); padding: clamp(40px, 5vw, 64px); color: #fff; max-width: 720px; }
.tour-inner h2 { color: #fff; }
.tour-inner p { color: rgba(255,255,255,0.82); }
.tour-orb { display: inline-flex; align-items: center; justify-content: center; width: 92px; height: 92px; border-radius: var(--radius-full); background: rgba(255,255,255,0.12); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.26); backdrop-filter: blur(8px); color: #fff; }
.tour-orb .ico { width: 34px; height: 34px; }

/* ── Destination cards ────────────────────────────────────────── */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.5vw, 20px); }
.dest-card { position: relative; aspect-ratio: 3 / 4; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); text-decoration: none; display: flex; align-items: flex-end; border: 1px solid var(--line); }
.dest-card .ph { position: absolute; inset: 0; transition: transform 600ms cubic-bezier(.3,.7,.3,1); }
.dest-card .dc-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,12,0) 36%, rgba(20,18,12,0.84)); }
.dest-card .dc-label { position: relative; padding: 22px; font-family: var(--font-body); font-feature-settings: var(--font-feature-body); font-size: var(--type-body-lg); font-weight: 600; color: #fff; letter-spacing: -0.3px; }
.dest-card:hover .ph { transform: scale(1.06); }

/* ── Trio cards ───────────────────────────────────────────────── */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 1.8vw, 26px); }
.trio-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(26px, 2.4vw, 34px); display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow-sm); text-decoration: none; transition: transform 200ms ease, box-shadow 200ms ease; }
.trio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trio-card .tc-ico { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: var(--radius-full); background: var(--bg-soft); color: var(--accent); }
.trio-card .tc-ico .ico { width: 22px; height: 22px; }
.trio-card .tc-title { font-family: var(--font-body); font-feature-settings: var(--font-feature-body); font-size: var(--type-body-lg); font-weight: 600; color: var(--ink); }
.trio-card .tc-desc { font-size: var(--type-body); color: var(--ink-muted); line-height: 1.5; }
.trio-card .textlink { margin-top: auto; }

/* ── Conversion CTA band ──────────────────────────────────────── */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-xxl); background: var(--bg-ink); color: #fff; padding: clamp(44px, 5.5vw, 84px); text-align: center; display: flex; flex-direction: column; align-items: center; gap: clamp(20px, 2.4vw, 30px); }
.cta-band h2 { color: #fff; }
.cta-band::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(60% 90% at 80% 0%, rgba(180,137,47,0.30), rgba(20,18,12,0) 60%); }
.cta-band > * { position: relative; }
.cta-quick { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.cta-quick a { font-family: var(--font-body); font-feature-settings: var(--font-feature-body); font-size: var(--type-body-sm); font-weight: 500; color: rgba(255,255,255,0.82); text-decoration: none; padding: 10px 18px; border-radius: var(--radius-pill); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18); transition: background 140ms ease, color 140ms ease; }
.cta-quick a:hover { color: #fff; background: rgba(255,255,255,0.10); }

/* ── Map band ─────────────────────────────────────────────────── */
.map-band { display: grid; grid-template-columns: 0.85fr 1.4fr; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-info { background: var(--surface); padding: clamp(32px, 3.5vw, 48px); display: flex; flex-direction: column; gap: 20px; }
.map-info .mi-line { display: flex; gap: 12px; align-items: flex-start; }
.map-info .mi-line .ico { width: 18px; height: 18px; color: var(--accent); margin-top: 3px; }
.map-info .mi-line span { font-size: var(--type-body); color: var(--ink); }
.map-canvas { position: relative; min-height: 360px; background:
  radial-gradient(circle at 58% 46%, rgba(180,137,47,0.14), rgba(246,245,241,0) 38%),
  repeating-linear-gradient(0deg, rgba(20,18,12,0.04) 0 1px, transparent 1px 52px),
  repeating-linear-gradient(90deg, rgba(20,18,12,0.04) 0 1px, transparent 1px 52px),
  #edece6; display: flex; align-items: center; justify-content: center; }
.map-band iframe { min-height: 360px; }
.map-pin { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: var(--radius-full); background: var(--ink); color: #fff; box-shadow: 0 10px 24px rgba(20,18,12,0.3); }

/* ── Newsletter ───────────────────────────────────────────────── */
.newsletter { border-radius: var(--radius-xxl); background: var(--bg-soft); border: 1px solid var(--line); padding: clamp(36px, 4.5vw, 64px); display: flex; align-items: center; justify-content: space-between; gap: clamp(28px, 4vw, 48px); flex-wrap: wrap; }
.news-form { display: flex; gap: 10px; flex: 1; min-width: 300px; max-width: 520px; }
.input { flex: 1; min-width: 0; background: var(--surface); color: var(--ink); border: 1px solid var(--line-strong); border-radius: var(--radius-md); padding: 15px 17px; font-family: var(--font-body); font-feature-settings: var(--font-feature-body); font-size: var(--type-body); outline: none; transition: box-shadow 140ms ease, border-color 140ms ease; }
.input::placeholder { color: var(--ink-soft); }
.input:focus { box-shadow: var(--ring-focus); border-color: transparent; }

/* ── Forms (contact) ──────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--font-body); font-size: var(--type-caption); font-weight: 600; color: var(--ink); }
.field textarea.input { resize: vertical; min-height: 140px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(36px, 4vw, 56px); align-items: start; }

/* ── Footer ───────────────────────────────────────────────────── */
.footer { background: var(--bg-ink); color: var(--on-ink-muted); padding: clamp(56px, 7vw, 88px) 0 40px; }
.footer .brand { color: #fff; }
.footer .brand .mark { background: #fff; }
.footer .brand .mark::after { background: var(--accent); }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: clamp(32px, 3.5vw, 52px); }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.footer-brand p { font-size: var(--type-body-sm); color: var(--on-ink-muted); max-width: 300px; line-height: 1.6; }
.footer-col h4 { font-family: var(--font-body); font-size: var(--type-caption); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-col a { display: block; font-size: var(--type-body-sm); color: var(--on-ink-muted); text-decoration: none; padding: 6px 0; transition: color 140ms ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; margin-top: clamp(40px, 5vw, 60px); padding-top: 30px; border-top: 1px solid var(--line-on-ink); }
.accred { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.accred .abadge { display: inline-flex; align-items: center; justify-content: center; height: 36px; padding: 0 15px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.06); box-shadow: inset 0 0 0 1px var(--line-on-ink); font-family: var(--font-display); font-weight: 500; font-size: 13px; letter-spacing: 0.5px; color: var(--on-ink-muted); }
.accred .abadge--img { background: #fff; padding: 0 12px; }
.accred .abadge--img img { height: 22px; width: auto; display: block; }
.footer-legal { font-size: var(--type-micro); color: var(--on-ink-muted); }
.footer-legal a { color: var(--on-ink-muted); }

/* ── Interior page hero ───────────────────────────────────────── */
.page-hero { position: relative; overflow: hidden; padding: clamp(120px, 16vh, 168px) 0 clamp(56px, 7vw, 88px); color: #fff; }
.page-hero .hero-media { opacity: 1; }
.page-hero .hero-scrim { background: linear-gradient(180deg, rgba(20,18,12,0.52), rgba(20,18,12,0.72)); }
.page-hero .inner { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 18px; max-width: 820px; }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: rgba(255,255,255,0.84); }
.breadcrumb { font-size: var(--type-caption); color: rgba(255,255,255,0.66); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.66); }
.breadcrumb a:hover { color: #fff; }

/* ── Prose ────────────────────────────────────────────────────── */
.prose { max-width: 70ch; display: flex; flex-direction: column; gap: 22px; }
.prose p { font-size: var(--type-body-lg); color: var(--ink-muted); line-height: 1.6; }
.prose p strong { color: var(--ink); font-weight: 600; }

/* ── Scroll-reveal (tasteful, reduced-motion safe) ────────────── */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .btn, .quickstrip a, .event-card, .feature-card, .trio-card, .fact-card, .dest-card .ph { transition: none !important; }
}

/* ════ RESPONSIVE LADDER ═══════════════════════════════════════ */

/* Large desktop — keep wide but ease grids */
@media (max-width: 1280px) {
  .dest-grid { gap: 16px; }
}

/* Small desktop / large tablet */
@media (max-width: 1080px) {
  .fact-grid { grid-template-columns: repeat(3, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; max-width: 520px; }
  .spotlight-split { grid-template-columns: 1fr; }
  .spotlight-split .ph { min-height: 220px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid > :last-child:nth-child(odd) { grid-column: 1 / -1; }
}

/* Tablet — collapse desktop nav to mobile drawer */
@media (max-width: 900px) {
  .nav-links, .nav-utility .lang, .nav-utility .icon-btn { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-utility .btn { display: none; }
}

/* Tablet layout */
@media (max-width: 860px) {
  .split, .trio, .event-list, .form-grid, .contact-grid { grid-template-columns: 1fr; }
  .split { gap: 32px; }
  .split .order-img { order: -1; }
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
  .map-band { grid-template-columns: 1fr; }
  .newsletter { justify-content: center; text-align: center; }
  .newsletter > div { max-width: 100% !important; }
}

/* Large phone */
@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid > :last-child:nth-child(odd) { grid-column: auto; }
  .quickstrip { grid-template-columns: 1fr; margin-top: -36px; }
  .stat-badges { gap: 10px; }
  .stat-badge { flex: 1 1 calc(50% - 5px); padding: 14px 16px; }
  .hero-ctas .btn { flex: 1 1 auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Small phone */
@media (max-width: 460px) {
  .dest-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .fact-grid { grid-template-columns: 1fr 1fr; }
  .news-form { flex-direction: column; }
  .news-form .btn { width: 100%; }
  .event-scroll { grid-auto-columns: 84%; }
  .chip { padding: 6px 12px; }
  .stat-badge { flex: 1 1 100%; }
}

/* Very small phone */
@media (max-width: 360px) {
  .dest-grid, .fact-grid { grid-template-columns: 1fr; }
  .brand { font-size: 21px; }
}
