:root {
    --navy: #071f33;
    --navy-2: #0b3047;
    --emerald: #0b5147;
    --emerald-2: #087264;
    --gold: #d9a62e;
    --gold-light: #f2cf72;
    --sand: #e8dcc4;
    --cream: #f7f2e8;
    --white: #fff;
    --charcoal: #202a2d;
    --muted: #607076;
    --line: #dbe2df;
    --error: #a93434;
    --success: #176847;
    --shadow: 0 22px 60px rgba(6, 31, 39, .12);
    --shadow-small: 0 10px 30px rgba(6, 31, 39, .09);
    --radius: 22px;
    --radius-small: 13px;
    --container: 1240px;
    --header-height: 78px;
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body { margin: 0; color: var(--charcoal); background: var(--white); font-family: var(--sans); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy); font-family: var(--serif); font-weight: 500; line-height: 1.08; text-wrap: balance; }
h1 { font-size: clamp(3.2rem, 8vw, 7.5rem); }
h2 { margin-bottom: 24px; font-size: clamp(2.35rem, 5vw, 4.4rem); letter-spacing: -.035em; }
h3 { font-size: 1.45rem; }
p { color: var(--muted); }
::selection { color: var(--navy); background: var(--gold-light); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.narrow { max-width: 860px; }
.section { position: relative; padding: clamp(86px, 10vw, 150px) 0; overflow: clip; }
.section-cream { background: var(--cream); }
.section-navy { color: var(--white); background: var(--navy); }
.section-emerald { color: var(--white); background: var(--emerald); }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.skip-link { position: fixed; z-index: 10000; top: 12px; left: 12px; padding: 12px 18px; color: var(--white); background: var(--navy); border-radius: 8px; transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.eyebrow { margin-bottom: 14px; color: var(--emerald-2); font-size: .73rem; font-weight: 800; letter-spacing: .16em; line-height: 1.4; text-transform: uppercase; }
.eyebrow.light { color: var(--gold-light); }
.lead-copy { color: #344b50; font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.5; }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--emerald); font-weight: 750; text-decoration: none; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link.light { color: var(--gold-light); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button { display: inline-flex; min-height: 52px; padding: 13px 22px; border: 1px solid transparent; border-radius: 999px; align-items: center; justify-content: center; gap: 8px; font-weight: 760; line-height: 1.15; text-align: center; text-decoration: none; transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-gold { color: #17252a; background: var(--gold); box-shadow: 0 10px 26px rgba(217, 166, 46, .25); }
.button-gold:hover { background: var(--gold-light); }
.button-navy { color: var(--white); background: var(--navy); }
.button-navy:hover { background: var(--emerald); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.06); backdrop-filter: blur(10px); }
.button-ghost:hover { background: rgba(255,255,255,.15); }
.button-small { min-height: 42px; padding: 10px 16px; font-size: .83rem; }
.button-full { width: 100%; }

.site-loader { position: fixed; z-index: 9999; inset: 0; display: grid; background: var(--navy); place-items: center; opacity: 0; visibility: hidden; transition: opacity .45s ease, visibility .45s; }
.js .site-loader { opacity: 1; visibility: visible; }
.js body.is-loaded .site-loader { opacity: 0; visibility: hidden; pointer-events: none; }
.site-loader span { width: 54px; height: 54px; border: 2px solid rgba(255,255,255,.18); border-top-color: var(--gold); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.site-header { position: fixed; z-index: 1000; top: 0; right: 0; left: 0; height: var(--header-height); color: var(--white); transition: background .25s, box-shadow .25s, color .25s; }
.site-header.is-scrolled, .province-page .site-header, .inner-page .site-header { color: var(--navy); background: rgba(255,255,255,.96); box-shadow: 0 8px 24px rgba(4,24,31,.08); backdrop-filter: blur(16px); }
.header-inner { display: flex; width: min(1500px, calc(100% - 32px)); height: 100%; margin-inline: auto; align-items: center; gap: 24px; }
.brand { display: flex; flex: 0 0 auto; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 122px; height: 38px; padding: 5px 7px; object-fit: contain; object-position: left center; background: var(--navy); border-radius: 7px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.12; }
.brand-copy strong { font-family: var(--serif); font-size: 1.02rem; font-weight: 600; }
.brand-copy small { max-width: 205px; margin-top: 3px; font-size: .58rem; letter-spacing: .02em; opacity: .72; }
.primary-nav { display: flex; margin-left: auto; align-items: center; gap: clamp(10px, 1vw, 20px); }
.primary-nav a { position: relative; padding: 26px 0; font-size: .78rem; font-weight: 680; text-decoration: none; white-space: nowrap; }
.primary-nav a::after { position: absolute; right: 0; bottom: 19px; left: 0; height: 2px; content: ''; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .2s; }
.primary-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.language-control select { width: 62px; padding: 8px 5px; color: inherit; border: 0; background: transparent; font-size: .76rem; font-weight: 700; }
.site-header.is-scrolled .language-control select, .province-page .language-control select { color: var(--navy); }
.icon-button { display: grid; width: 42px; height: 42px; padding: 0; color: inherit; border: 1px solid currentColor; background: transparent; border-radius: 50%; place-items: center; opacity: .86; }
.icon-button svg, .search-field svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.nav-toggle { display: none; width: 44px; height: 44px; margin-left: auto; padding: 11px; border: 0; background: transparent; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s, opacity .2s; }

.hero { position: relative; display: grid; min-height: min(920px, 100svh); color: var(--white); background: var(--navy); align-items: center; overflow: hidden; }
.hero-media, .province-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,17,29,.9) 0%, rgba(2,24,34,.66) 42%, rgba(2,20,29,.08) 76%), linear-gradient(0deg, rgba(2,17,26,.63), transparent 58%); }
.hero-pattern, .footer-pattern { position: absolute; inset: 0; opacity: .075; background-image: linear-gradient(30deg, transparent 47%, var(--gold) 48% 52%, transparent 53%), linear-gradient(150deg, transparent 47%, var(--gold) 48% 52%, transparent 53%); background-size: 54px 94px; mask-image: linear-gradient(to right, black, transparent 45%); }
.hero-content { position: relative; z-index: 2; padding: 140px 0 190px; }
.hero h1 { max-width: 880px; margin-bottom: 24px; color: var(--white); letter-spacing: -.055em; }
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero-lead { max-width: 720px; color: rgba(255,255,255,.83); font-family: var(--serif); font-size: clamp(1.15rem, 2.2vw, 1.55rem); line-height: 1.55; }
.hero-stats { position: absolute; z-index: 3; right: 0; bottom: 32px; left: 0; display: grid; grid-template-columns: repeat(4, 1fr); color: var(--white); border: 1px solid rgba(255,255,255,.19); background: rgba(3,24,33,.56); border-radius: var(--radius); backdrop-filter: blur(18px); }
.hero-stat { display: flex; min-height: 104px; padding: 22px; align-items: center; gap: 16px; border-right: 1px solid rgba(255,255,255,.13); }
.hero-stat:last-child { border-right: 0; }
.hero-stat > span { display: grid; width: 46px; height: 46px; color: var(--gold-light); border: 1px solid rgba(255,255,255,.18); border-radius: 50%; place-items: center; }
.hero-stat strong, .hero-stat small { display: block; }
.hero-stat strong { color: var(--white); font-family: var(--serif); font-size: 1.25rem; font-weight: 500; line-height: 1.15; }
.hero-stat small { margin-top: 5px; color: rgba(255,255,255,.64); font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; }
.scroll-cue { position: absolute; z-index: 3; right: 24px; bottom: 164px; display: flex; color: rgba(255,255,255,.72); align-items: center; gap: 12px; font-size: .68rem; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; transform: rotate(90deg); transform-origin: right bottom; }
.scroll-cue i { display: block; width: 54px; height: 1px; background: var(--gold); }

.section-heading { max-width: 720px; margin-bottom: 50px; }
.section-heading > p:last-child { max-width: 660px; font-size: 1.06rem; }
.split-heading { display: grid; max-width: none; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 60px; }
.split-heading h2 { margin-bottom: 0; }
.split-heading > p, .split-heading > a { margin-bottom: 7px; justify-self: end; }
.centered { margin-inline: auto; text-align: center; }
.centered > p:last-child { margin-inline: auto; }
.light-heading h2 { color: var(--white); }
.light-heading > p { color: rgba(255,255,255,.67); }

.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.fact-card { min-height: 230px; padding: 27px; border: 1px solid rgba(7,31,51,.08); background: rgba(255,255,255,.73); border-radius: var(--radius-small); transition: transform .25s, box-shadow .25s, background .25s; }
.fact-card:hover { background: var(--white); box-shadow: var(--shadow-small); transform: translateY(-5px); }
.card-icon { display: grid; width: 48px; height: 48px; margin-bottom: 28px; color: var(--emerald); background: #e5f0eb; border-radius: 50%; place-items: center; }
.fact-card > p { margin-bottom: 8px; color: var(--emerald-2); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.fact-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.fact-card small { display: block; color: var(--muted); line-height: 1.5; }
.source-line { margin: 32px 0 0; padding-top: 22px; border-top: 1px solid rgba(7,31,51,.1); font-size: .8rem; }
.source-line a { color: var(--emerald); font-weight: 700; }

.editorial-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.editorial-copy p:not(.eyebrow) { max-width: 650px; }
.image-frame { position: relative; margin: 0; }
.image-frame::before { position: absolute; z-index: -1; top: -18px; right: -18px; width: 42%; height: 45%; content: ''; border: 1px solid var(--gold); border-radius: var(--radius); }
.image-frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-frame figcaption { position: absolute; right: 24px; bottom: 22px; left: 24px; padding: 18px 20px; color: var(--white); background: rgba(4,30,38,.83); border-radius: 12px; backdrop-filter: blur(9px); }
.image-frame figcaption strong, .image-frame figcaption span { display: block; }
.image-frame figcaption strong { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; }
.image-frame figcaption span { margin-top: 3px; color: rgba(255,255,255,.67); font-size: .72rem; }

.destination-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.destination-card, .explore-card { color: var(--charcoal); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-small); overflow: hidden; transition: transform .28s ease, box-shadow .28s ease; }
.destination-card:hover, .explore-card:hover { box-shadow: 0 26px 60px rgba(0,0,0,.22); transform: translateY(-7px); }
.card-media { position: relative; overflow: hidden; }
.card-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.destination-card:hover .card-media img, .explore-card:hover .card-media img { transform: scale(1.045); }
.card-media > span { position: absolute; top: 15px; left: 15px; padding: 7px 11px; color: var(--white); background: rgba(4,27,38,.74); border-radius: 999px; font-size: .64rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; backdrop-filter: blur(8px); }
.card-body { padding: 27px; }
.card-body h3 { margin-bottom: 12px; font-size: 1.65rem; }
.card-body > p { font-size: .9rem; }
.card-kicker { margin-bottom: 7px !important; color: var(--emerald-2) !important; font-size: .67rem !important; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.tag-list { display: flex; padding: 0; margin: 18px 0; flex-wrap: wrap; gap: 7px; list-style: none; }
.tag-list li { padding: 5px 9px; color: #44575a; background: var(--cream); border-radius: 999px; font-size: .67rem; }

.directory-toolbar { display: grid; padding: 20px; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-small); grid-template-columns: 1.2fr 2fr auto; align-items: center; gap: 18px; }
.search-field { position: relative; display: flex; align-items: center; }
.search-field svg { position: absolute; left: 16px; color: var(--muted); }
.search-field input { width: 100%; min-height: 48px; padding: 10px 14px 10px 46px; color: var(--charcoal); border: 1px solid var(--line); background: var(--cream); border-radius: 999px; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.filter-chips button, .gallery-filters button { padding: 8px 12px; color: var(--muted); border: 1px solid var(--line); background: transparent; border-radius: 999px; font-size: .7rem; font-weight: 700; }
.filter-chips button.is-active, .gallery-filters button.is-active { color: var(--white); border-color: var(--emerald); background: var(--emerald); }
.sort-control { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .7rem; font-weight: 700; }
.sort-control select { padding: 8px; border: 1px solid var(--line); background: var(--white); border-radius: 8px; }
.results-count { margin: 24px 0 14px; font-size: .76rem; font-weight: 700; }
.province-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.province-card { position: relative; min-height: 205px; padding: 25px; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius-small); overflow: hidden; transition: border-color .2s, transform .2s, box-shadow .2s; }
.province-card:hover { border-color: rgba(11,81,71,.35); box-shadow: var(--shadow-small); transform: translateY(-4px); }
.province-card[hidden] { display: none; }
.province-number { position: absolute; right: 18px; top: 13px; color: rgba(11,81,71,.08); font-family: var(--serif); font-size: 3.6rem; }
.province-card > p { margin-bottom: 18px; color: var(--emerald-2); font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.province-card h3 { margin-bottom: 6px; }
.province-card > span:not(.province-number) { color: var(--muted); font-size: .76rem; }
.province-card a { position: absolute; right: 25px; bottom: 22px; left: 25px; color: var(--emerald); font-size: .76rem; font-weight: 750; text-decoration: none; }
.empty-state { padding: 36px; text-align: center; border: 1px dashed var(--line); border-radius: var(--radius); }

.history-section::after { position: absolute; top: 0; right: -10%; width: 55%; height: 100%; content: ''; opacity: .05; background-image: repeating-linear-gradient(45deg, var(--emerald) 0 1px, transparent 1px 28px); pointer-events: none; }
.timeline { position: relative; max-width: 1000px; margin: 70px auto 0; }
.timeline::before { position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; content: ''; background: linear-gradient(var(--gold), var(--emerald)); }
.timeline-item { position: relative; display: grid; width: 50%; padding: 0 54px 56px 0; }
.timeline-item:nth-child(even) { margin-left: 50%; padding: 0 0 56px 54px; }
.timeline-marker { position: absolute; top: 0; right: -20px; display: grid; width: 40px; height: 40px; color: var(--white); background: var(--emerald); border: 5px solid var(--cream); border-radius: 50%; place-items: center; }
.timeline-item:nth-child(even) .timeline-marker { right: auto; left: -20px; }
.timeline-marker span { font-size: .58rem; font-weight: 800; }
.timeline-content { padding: 27px; border: 1px solid rgba(7,31,51,.1); background: rgba(255,255,255,.78); border-radius: var(--radius); }
.timeline-content > p:first-child { margin-bottom: 10px; color: var(--gold); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.timeline-content h3 { margin-bottom: 12px; }
.timeline-content > p:last-child { margin-bottom: 0; font-size: .89rem; }

.culture-intro { display: grid; margin-bottom: 70px; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 80px; }
.wide-image img { aspect-ratio: 16 / 9; }
.culture-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.culture-card { min-height: 260px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-small); transition: background .2s, transform .2s; }
.culture-card:hover { background: var(--cream); transform: translateY(-4px); }
.culture-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.culture-card p { margin-bottom: 0; font-size: .81rem; }

.section-emerald::before { position: absolute; inset: 0; content: ''; opacity: .09; background: radial-gradient(circle at 80% 20%, var(--gold), transparent 28%), repeating-linear-gradient(135deg, transparent 0 34px, rgba(255,255,255,.22) 35px, transparent 36px); }
.travel-notice { position: relative; display: flex; max-width: 940px; padding: 24px; margin-bottom: 42px; color: var(--white); border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.07); border-radius: var(--radius-small); align-items: flex-start; gap: 17px; }
.travel-notice > .icon { flex: 0 0 auto; color: var(--gold-light); }
.travel-notice strong { display: block; margin-bottom: 4px; }
.travel-notice p { margin: 0; color: rgba(255,255,255,.73); font-size: .87rem; }
.explore-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.explore-card .card-body { padding: 23px; }
.explore-card details { padding: 11px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.explore-card summary { color: var(--emerald); font-size: .76rem; font-weight: 750; }
.explore-card details p { margin: 10px 0 0; font-size: .78rem; }
.responsible-note { display: block; padding-top: 15px; }
.responsible-note strong, .responsible-note span { display: block; }
.responsible-note strong { color: var(--gold); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; }
.responsible-note span { margin-top: 5px; color: var(--muted); font-size: .72rem; line-height: 1.5; }

.economy-intro { margin-bottom: 72px; }
.data-strip { display: grid; margin-bottom: 48px; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.data-strip article { padding: 30px; border-right: 1px solid var(--line); background: var(--cream); }
.data-strip article:last-child { border-right: 0; }
.data-strip p, .data-strip strong, .data-strip small { display: block; }
.data-strip p { margin-bottom: 9px; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.data-strip strong { color: var(--navy); font-family: var(--serif); font-size: 2.2rem; font-weight: 500; }
.data-strip small { color: var(--muted); }
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.industry-card { display: flex; min-height: 175px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-small); gap: 19px; }
.industry-card .card-icon { flex: 0 0 auto; margin: 0; }
.industry-card h3 { margin-bottom: 8px; font-size: 1.18rem; }
.industry-card p { margin-bottom: 0; font-size: .8rem; }

.business-section { color: var(--white); background: var(--navy); }
.business-backdrop { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,31,51,.97), rgba(7,31,51,.83)), url('../images/afghanistan/afghan-business.webp') center/cover; }
.business-backdrop::after { position: absolute; inset: 0; content: ''; opacity: .1; background-image: linear-gradient(30deg, transparent 47%, var(--gold) 48% 52%, transparent 53%), linear-gradient(150deg, transparent 47%, var(--gold) 48% 52%, transparent 53%); background-size: 55px 95px; }
.business-shell { position: relative; }
.business-heading { max-width: 850px; margin-bottom: 60px; }
.business-heading img { width: 190px; height: 54px; margin-bottom: 28px; object-fit: contain; object-position: left; }
.business-heading h2 { color: var(--white); }
.business-heading > p:not(.eyebrow) { color: rgba(255,255,255,.75); font-family: var(--serif); font-size: 1.3rem; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.service-grid article { min-height: 225px; padding: 24px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.055); border-radius: var(--radius-small); backdrop-filter: blur(8px); transition: background .2s, transform .2s; }
.service-grid article:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.service-grid article > span { color: var(--gold-light); font-family: var(--serif); font-size: 1.7rem; }
.service-grid h3 { margin: 38px 0 9px; color: var(--white); font-size: 1.25rem; }
.service-grid p { margin: 0; color: rgba(255,255,255,.63); font-size: .8rem; }
.business-caveat { max-width: 800px; margin: 34px 0 0; color: rgba(255,255,255,.52); font-size: .75rem; }

.practical-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 13px; }
.practical-card { min-height: 250px; padding: 25px; background: var(--white); border-radius: var(--radius-small); box-shadow: 0 1px 0 rgba(7,31,51,.08); }
.practical-card h3 { font-size: 1.15rem; }
.practical-card p { margin-bottom: 0; font-size: .78rem; }

.gallery-filters { display: flex; margin-bottom: 28px; flex-wrap: wrap; gap: 8px; }
.gallery-grid { display: grid; grid-auto-rows: 245px; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-item { position: relative; padding: 0; color: var(--white); border: 0; background: var(--navy); border-radius: var(--radius-small); overflow: hidden; text-align: left; }
.gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-row: span 2; }
.gallery-item:nth-child(2), .gallery-item:nth-child(7) { grid-column: span 2; }
.gallery-item[hidden] { display: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s, opacity .35s; }
.gallery-item::after { position: absolute; inset: 0; content: ''; background: linear-gradient(0deg, rgba(2,20,28,.82), transparent 65%); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item > span { position: absolute; z-index: 2; right: 18px; bottom: 16px; left: 18px; }
.gallery-item small, .gallery-item strong { display: block; }
.gallery-item small { color: var(--gold-light); font-size: .6rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.gallery-item strong { margin-top: 4px; font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
.skeleton { background: linear-gradient(90deg, #e4e7e5 25%, #f2f4f2 50%, #e4e7e5 75%); background-size: 200% 100%; }
.skeleton:not(.is-loaded) { animation: shimmer 1.6s infinite; }
.skeleton:not(.is-loaded) img { opacity: 0; }
@keyframes shimmer { to { background-position: -200% 0; } }

.lightbox { position: fixed; z-index: 3000; inset: 0; display: grid; padding: 32px 80px; color: var(--white); background: rgba(2,14,20,.94); place-items: center; }
.lightbox[hidden] { display: none; }
.lightbox figure { width: min(1100px, 100%); margin: 0; }
.lightbox img { width: 100%; max-height: 75vh; object-fit: contain; border-radius: 10px; }
.lightbox figcaption { display: flex; padding-top: 16px; justify-content: space-between; gap: 24px; }
.lightbox figcaption strong { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; }
.lightbox figcaption span { max-width: 650px; color: rgba(255,255,255,.65); font-size: .82rem; text-align: right; }
.lightbox-close, .lightbox-nav { position: absolute; display: grid; color: var(--white); border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.06); border-radius: 50%; place-items: center; }
.lightbox-close { top: 22px; right: 22px; width: 46px; height: 46px; font-size: 1.7rem; }
.lightbox-nav { top: 50%; width: 52px; height: 52px; font-size: 1.2rem; transform: translateY(-50%); }
.lightbox-nav.previous { left: 22px; }.lightbox-nav.next { right: 22px; }

.faq-shell { display: grid; max-width: 1100px; grid-template-columns: .7fr 1.3fr; gap: 80px; }
.accordion-item { border-top: 1px solid #cfd7d3; }
.accordion-item:last-child { border-bottom: 1px solid #cfd7d3; }
.accordion-item h3 { margin: 0; }
.accordion-item button { display: flex; width: 100%; padding: 22px 0; color: var(--navy); border: 0; background: transparent; align-items: center; justify-content: space-between; gap: 20px; text-align: left; }
.accordion-item button span { font-family: var(--serif); font-size: 1.2rem; }
.accordion-item button i { display: grid; flex: 0 0 auto; width: 31px; height: 31px; color: var(--white); background: var(--emerald); border-radius: 50%; place-items: center; font-style: normal; transition: transform .2s; }
.accordion-item button[aria-expanded="true"] i { transform: rotate(45deg); }
.accordion-panel { padding: 0 48px 22px 0; }
.accordion-panel p { margin: 0; font-size: .89rem; }

.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: clamp(50px, 8vw, 100px); }
.contact-copy { position: sticky; top: 120px; }
.contact-points { display: grid; margin-top: 40px; gap: 22px; }
.contact-points > div { display: flex; align-items: flex-start; gap: 15px; }
.contact-points .icon { flex: 0 0 auto; color: var(--emerald); }
.contact-points strong, .contact-points span { display: block; }
.contact-points span { color: var(--muted); font-size: .84rem; }
.contact-points strong { margin-bottom: 3px; color: var(--navy); font-size: .9rem; }
.form-card { padding: clamp(28px, 5vw, 52px); border: 1px solid var(--line); background: var(--cream); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-grid label { display: block; color: var(--navy); font-size: .73rem; font-weight: 750; }
.form-grid label > span[aria-hidden] { display: inline; color: var(--error); }
.form-grid input, .form-grid select, .form-grid textarea, .page-search input { width: 100%; min-height: 50px; padding: 12px 14px; color: var(--charcoal); border: 1px solid #ccd7d1; background: var(--white); border-radius: 9px; font-weight: 450; }
.form-grid label > input, .form-grid label > select, .form-grid label > textarea { margin-top: 7px; }
.form-grid textarea { resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--emerald); outline: 3px solid rgba(11,81,71,.12); }
.full-width { grid-column: 1 / -1; }
.checkbox { display: flex !important; align-items: flex-start; grid-template-columns: auto 1fr; }
.form-grid .checkbox input { width: 18px; min-height: 18px; margin-top: 2px; }
.checkbox span { color: var(--muted); font-weight: 450; line-height: 1.5; }
.form-card .button { margin-top: 26px; }
.form-note { margin: 15px 0 0; font-size: .68rem; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.alert { padding: 15px 17px; margin-bottom: 24px; border-radius: 10px; font-size: .82rem; }
.alert ul { margin-bottom: 0; }
.alert-success { color: var(--success); border: 1px solid #9bcdb7; background: #e8f7f0; }
.alert-error { color: var(--error); border: 1px solid #e4b6b6; background: #fff0f0; }

.attribution-section { padding: 58px 0; color: var(--white); background: var(--emerald); }
.attribution-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; }
.attribution-grid h2 { margin: 0; color: var(--white); font-size: 2.4rem; }
.attribution-grid p { color: rgba(255,255,255,.68); font-size: .8rem; }

.site-footer { position: relative; padding-top: 80px; color: var(--white); background: #041723; overflow: hidden; }
.footer-pattern { opacity: .035; }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 60px; }
.footer-brand img { width: 176px; height: 50px; margin-bottom: 22px; object-fit: contain; object-position: left; }
.footer-brand p { max-width: 340px; color: rgba(255,255,255,.58); font-size: .84rem; }
.site-footer h2 { margin: 5px 0 22px; color: var(--white); font-family: var(--sans); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.site-footer ul { padding: 0; margin: 0; list-style: none; }
.site-footer li { margin: 10px 0; }
.site-footer li a { color: rgba(255,255,255,.62); font-size: .78rem; text-decoration: none; }
.site-footer li a:hover { color: var(--gold-light); }
.footer-disclaimer { position: relative; padding: 35px 0; margin-top: 60px; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-disclaimer p { margin: 0; color: rgba(255,255,255,.48); font-size: .72rem; }
.footer-disclaimer strong { color: rgba(255,255,255,.72); }
.footer-bottom { position: relative; display: flex; padding: 24px 0; align-items: center; justify-content: space-between; gap: 24px; }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.43); font-size: .7rem; }
.social-links { display: flex; gap: 14px; }
.social-links a { color: rgba(255,255,255,.55); font-size: .7rem; text-decoration: none; }

.search-dialog { position: fixed; z-index: 2500; inset: 0; display: grid; padding: 24px; background: rgba(2,20,28,.86); place-items: start center; overflow-y: auto; backdrop-filter: blur(14px); }
.search-dialog[hidden] { display: none; }
.search-panel { position: relative; width: min(900px, 100%); min-height: 440px; padding: clamp(34px, 7vw, 70px); margin-top: 8vh; background: var(--cream); border-radius: var(--radius); box-shadow: 0 30px 90px rgba(0,0,0,.35); }
.search-panel h2 { max-width: 680px; font-size: clamp(2rem, 5vw, 3.7rem); }
.dialog-close { position: absolute; top: 18px; right: 20px; width: 42px; height: 42px; color: var(--navy); border: 1px solid var(--line); background: var(--white); border-radius: 50%; font-size: 1.5rem; }
.search-panel input { width: 100%; padding: 16px 0; color: var(--navy); border: 0; border-bottom: 2px solid var(--navy); background: transparent; font-family: var(--serif); font-size: clamp(1.1rem, 3vw, 1.6rem); outline: none; }
.search-hint { margin: 13px 0 22px; font-size: .75rem; }
.search-results { display: grid; gap: 8px; }
.search-result { display: grid; padding: 14px 16px; color: inherit; border: 1px solid var(--line); background: var(--white); border-radius: 10px; grid-template-columns: 95px 1fr; text-decoration: none; }
.search-result small { color: var(--emerald); font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.search-result strong { color: var(--navy); }
.search-result span { display: block; color: var(--muted); font-size: .73rem; }
.back-to-top { position: fixed; z-index: 900; right: 24px; bottom: 24px; display: grid; width: 46px; height: 46px; color: var(--white); border: 0; background: var(--emerald); border-radius: 50%; box-shadow: var(--shadow-small); place-items: center; opacity: 0; pointer-events: none; transform: translateY(14px); transition: .2s; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.toast { position: fixed; z-index: 4000; right: 24px; bottom: 84px; max-width: 340px; padding: 14px 18px; color: var(--white); background: var(--navy); border-radius: 10px; box-shadow: var(--shadow); font-size: .8rem; }

.breadcrumbs { padding-top: calc(var(--header-height) + 26px); padding-bottom: 20px; }
.breadcrumbs ol { display: flex; padding: 0; margin: 0; flex-wrap: wrap; gap: 9px; list-style: none; }
.breadcrumbs li { color: var(--muted); font-size: .72rem; }
.breadcrumbs li + li::before { margin-right: 9px; content: '/'; color: #a9b2b0; }
.breadcrumbs a { color: var(--emerald); text-decoration: none; }
.province-hero { position: relative; display: flex; min-height: 620px; color: var(--white); background: var(--navy); align-items: flex-end; overflow: hidden; }
.province-hero-content { position: relative; z-index: 2; padding-bottom: 70px; }
.province-hero h1 { margin-bottom: 16px; color: var(--white); }
.province-hero-content > p:not(.eyebrow) { max-width: 720px; color: rgba(255,255,255,.8); font-family: var(--serif); font-size: 1.25rem; }
.province-meta { display: flex; margin-top: 30px; gap: 12px; }
.province-meta span { padding: 10px 14px; color: rgba(255,255,255,.65); border: 1px solid rgba(255,255,255,.22); background: rgba(4,26,35,.4); border-radius: 9px; font-size: .7rem; }
.province-meta strong { margin-left: 5px; color: var(--white); }
.province-layout { display: grid; grid-template-columns: 1.4fr .6fr; align-items: start; gap: 80px; }
.province-main h2 { max-width: 760px; }
.province-main h3 { margin-top: 40px; }
.highlight-list { display: grid; padding: 0; grid-template-columns: repeat(3, 1fr); gap: 10px; list-style: none; }
.highlight-list li { display: flex; padding: 15px; color: var(--navy); background: var(--cream); border-radius: 10px; align-items: center; gap: 10px; font-size: .8rem; font-weight: 700; }
.highlight-list .icon { width: 19px; color: var(--gold); }
.profile-card { position: sticky; top: 110px; padding: 30px; background: var(--cream); border-radius: var(--radius); }
.profile-card dl { margin: 0 0 28px; }
.profile-card dl div { display: flex; padding: 12px 0; border-bottom: 1px solid var(--line); justify-content: space-between; gap: 20px; }
.profile-card dt { color: var(--muted); font-size: .73rem; }.profile-card dd { margin: 0; color: var(--navy); font-size: .78rem; font-weight: 750; text-align: right; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-grid article { padding: 28px; background: var(--white); border-radius: var(--radius-small); }
.related-grid p { margin-bottom: 10px; color: var(--emerald); font-size: .65rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.related-grid h3 { margin-bottom: 5px; }.related-grid span { color: var(--muted); font-size: .75rem; }.related-grid a { display: block; margin-top: 25px; color: var(--emerald); font-size: .76rem; font-weight: 750; text-decoration: none; }
.detail-disclaimer { padding: 30px 0; background: #e5eee9; }.detail-disclaimer .container { display: flex; align-items: center; gap: 20px; }.detail-disclaimer strong { flex: 0 0 auto; color: var(--emerald); }.detail-disclaimer p { margin: 0; font-size: .75rem; }

.search-page, .legal-page, .error-page { padding-top: calc(var(--header-height) + 90px); }
.search-page h1, .legal-page h1, .error-page h1 { margin-bottom: 25px; color: var(--navy); font-size: clamp(3rem, 7vw, 5.8rem); }
.page-search { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.search-summary { padding: 25px 0; border-bottom: 1px solid var(--line); }
.page-results article { padding: 26px 0; border-bottom: 1px solid var(--line); }
.page-results article > span { color: var(--emerald); font-size: .65rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.page-results h2 { margin: 6px 0 9px; font-size: 1.45rem; }.page-results h2 a { text-decoration: none; }.page-results p { margin: 0; }
.legal-page h2 { margin: 42px 0 12px; font-size: 1.8rem; }.legal-page .updated { margin-bottom: 50px; font-size: .78rem; }.legal-page p { max-width: 760px; }

.js [data-reveal] { opacity: 0; transform: translateY(25px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

[dir="rtl"] .brand img, [dir="rtl"] .business-heading img, [dir="rtl"] .footer-brand img { object-position: right; }
[dir="rtl"] .primary-nav { margin-right: auto; margin-left: 0; }
[dir="rtl"] .card-media > span { right: 15px; left: auto; }
[dir="rtl"] .search-field svg { right: 16px; left: auto; }
[dir="rtl"] .search-field input { padding-right: 46px; padding-left: 14px; }
[dir="rtl"] .accordion-item button { text-align: right; }

@media (max-width: 1360px) {
    .header-cta, .brand-copy small { display: none; }
    .primary-nav { gap: 12px; }
}

@media (max-width: 1180px) {
    .nav-toggle { display: block; order: 2; color: inherit; }
    .header-actions { order: 3; }
    .primary-nav { position: fixed; z-index: 1001; top: var(--header-height); right: 0; left: 0; display: grid; padding: 20px 24px 30px; color: var(--navy); background: var(--white); box-shadow: 0 18px 32px rgba(4,24,31,.14); opacity: 0; visibility: hidden; transform: translateY(-15px); transition: .2s; grid-template-columns: repeat(2, 1fr); }
    .primary-nav.is-open { opacity: 1; visibility: visible; transform: none; }
    .primary-nav a { padding: 10px; border-bottom: 1px solid var(--line); }
    .primary-nav a::after { display: none; }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
    .facts-grid, .province-grid, .explore-grid { grid-template-columns: repeat(3, 1fr); }
    .culture-grid, .practical-grid { grid-template-columns: repeat(3, 1fr); }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 32px; }
}

@media (max-width: 900px) {
    .container { width: min(var(--container), calc(100% - 32px)); }
    .hero { min-height: 940px; }
    .hero-content { padding: 130px 0 340px; }
    .hero-stats { bottom: 28px; grid-template-columns: repeat(2, 1fr); }
    .hero-stat:nth-child(2) { border-right: 0; }.hero-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.13); }
    .scroll-cue { display: none; }
    .split-heading, .editorial-grid, .culture-intro, .faq-shell, .contact-grid, .province-layout, .attribution-grid { grid-template-columns: 1fr; gap: 40px; }
    .split-heading > p, .split-heading > a { justify-self: start; }
    .destination-grid, .facts-grid, .industry-grid { grid-template-columns: repeat(2, 1fr); }
    .directory-toolbar { grid-template-columns: 1fr; }
    .province-grid, .explore-grid { grid-template-columns: repeat(2, 1fr); }
    .culture-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline::before { left: 20px; }
    .timeline-item, .timeline-item:nth-child(even) { width: 100%; padding: 0 0 36px 64px; margin-left: 0; }
    .timeline-marker, .timeline-item:nth-child(even) .timeline-marker { right: auto; left: 0; }
    .practical-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-auto-rows: 220px; grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(n) { grid-row: span 1; grid-column: span 1; }
    .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-row: span 2; }
    .contact-copy, .profile-card { position: static; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .province-hero { min-height: 560px; }
}

@media (max-width: 620px) {
    :root { --header-height: 68px; }
    body { font-size: 15px; }
    .section { padding: 78px 0; }
    .header-inner { width: calc(100% - 20px); gap: 7px; }
    .brand img { width: 94px; height: 34px; }
    .brand-copy { display: none; }
    .language-control { display: none; }
    .hero { min-height: 920px; }
    .hero-content { padding: 110px 0 350px; }
    .hero h1 { font-size: clamp(3.5rem, 18vw, 5.2rem); }
    .hero-lead { font-size: 1.05rem; }
    .button-row .button { width: 100%; }
    .hero-stats { grid-template-columns: 1fr; }
    .hero-stat { min-height: 72px; padding: 12px 16px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
    .hero-stat:last-child { border-bottom: 0; }.hero-stat > span { width: 38px; height: 38px; }.hero-stat strong { font-size: 1rem; }
    .facts-grid, .destination-grid, .province-grid, .explore-grid, .culture-grid, .industry-grid, .practical-grid, .service-grid, .data-strip, .related-grid { grid-template-columns: 1fr; }
    .fact-card { min-height: 200px; }
    .editorial-grid { gap: 55px; }
    .image-frame::before { display: none; }
    .image-frame img { aspect-ratio: 4 / 5; }
    .filter-chips { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; }
    .filter-chips button { flex: 0 0 auto; }
    .timeline-item, .timeline-item:nth-child(even) { padding-left: 53px; }
    .timeline-content { padding: 21px; }
    .data-strip { overflow: visible; border: 0; gap: 10px; }
    .data-strip article { border: 1px solid var(--line); border-radius: var(--radius-small); }
    .gallery-grid { grid-auto-rows: 240px; grid-template-columns: 1fr; }
    .gallery-item:nth-child(n) { grid-row: span 1; }
    .lightbox { padding: 75px 18px; }.lightbox-nav { top: auto; bottom: 18px; }.lightbox figcaption { display: block; }.lightbox figcaption span { display: block; margin-top: 6px; text-align: left; }
    .form-grid { grid-template-columns: 1fr; }.full-width { grid-column: auto; }
    .footer-grid { grid-template-columns: 1fr; }.footer-bottom { align-items: flex-start; flex-direction: column; }
    .search-panel { padding: 34px 24px; margin-top: 4vh; }.search-result { grid-template-columns: 1fr; gap: 4px; }
    .page-search { grid-template-columns: 1fr; }
    .province-meta { align-items: stretch; flex-direction: column; }.province-meta span { display: flex; justify-content: space-between; }
    .highlight-list { grid-template-columns: 1fr; }
    .detail-disclaimer .container { align-items: flex-start; flex-direction: column; gap: 6px; }
}

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

@media print {
    .site-header, .site-loader, .back-to-top, .search-dialog, .button-row, .gallery-filters, .contact-section { display: none !important; }
    .section { padding: 32px 0; }
    body { color: #000; background: #fff; }
    .hero { min-height: 400px; }
}
