:root {
  --terracotta: #b65a36;
  --terracotta-dark: #934424;
  --terracotta-soft: #d98b67;
  --azur: #1e6fb5;
  --azur-dark: #12578f;
  --olive: #6b8e23;
  --cream: #faf7f2;
  --sand: #f0e6d8;
  --graphite: #25272a;
  --muted: #6e6d6b;
  --white: #fff;
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-strong: rgba(255, 255, 255, 0.76);
  --glass-border: rgba(255, 255, 255, 0.72);
  --shadow-soft: 0 16px 50px rgba(66, 43, 28, 0.1);
  --shadow-float: 0 28px 80px rgba(30, 28, 25, 0.18);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --radius-xl: 46px;
  --container: 1220px;
  --header-height: 104px;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }

body {
  margin: 0;
  color: var(--graphite);
  background:
    radial-gradient(circle at 8% 12%, rgba(182, 90, 54, 0.11), transparent 25rem),
    radial-gradient(circle at 90% 34%, rgba(30, 111, 181, 0.09), transparent 28rem),
    var(--cream);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}

body.menu-open,
body.dialog-open { overflow: hidden; }

img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.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: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--graphite);
  color: white;
}
.skip-link:focus { transform: none; }

.glass {
  position: relative;
  background:
    linear-gradient(145deg, rgba(255,255,255,.74), rgba(255,255,255,.38)),
    var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,.85);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
  backdrop-filter: blur(24px) saturate(155%);
}

.glass-strong {
  background:
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(255,255,255,.54)),
    var(--glass-strong);
  -webkit-backdrop-filter: blur(32px) saturate(165%);
  backdrop-filter: blur(32px) saturate(165%);
}

.glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,.34), transparent 27%, transparent 72%, rgba(255,255,255,.16));
  opacity: .68;
}

.glass > * { position: relative; z-index: 1; }

.glass-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.7);
  background: rgba(255,255,255,.58);
  box-shadow: 0 8px 24px rgba(31, 32, 33, .08), inset 0 1px 0 rgba(255,255,255,.86);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 23px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease;
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(.98); }
.button-primary { color: white; background: linear-gradient(135deg, var(--terracotta-soft), var(--terracotta)); box-shadow: 0 14px 30px rgba(182, 90, 54, .3), inset 0 1px 0 rgba(255,255,255,.26); }
.button-primary:hover { box-shadow: 0 18px 38px rgba(182, 90, 54, .38), inset 0 1px 0 rgba(255,255,255,.3); }
.button-glass { color: white; border: 1px solid rgba(255,255,255,.45); background: rgba(255,255,255,.16); box-shadow: inset 0 1px 0 rgba(255,255,255,.22); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
.button-secondary { color: var(--azur-dark); border: 1px solid rgba(30,111,181,.22); background: rgba(30,111,181,.09); box-shadow: none; }
.button-secondary:hover { background: rgba(30,111,181,.15); }

:focus-visible { outline: 3px solid rgba(30,111,181,.75); outline-offset: 3px; }

.site-header { position: fixed; z-index: 50; inset: 10px 0 auto; pointer-events: none; }
.nav-shell {
  width: min(calc(100% - 28px), 1280px);
  min-height: 86px;
  margin-inline: auto;
  padding: 6px 10px 6px 14px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 26px;
  pointer-events: auto;
  transition: min-height .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled .nav-shell { min-height: 80px; box-shadow: 0 16px 50px rgba(30,30,30,.15), inset 0 1px 0 rgba(255,255,255,.86); }
.brand { display: inline-flex; align-items: center; min-width: 268px; gap: 12px; }
.brand img { width: 72px; height: 74px; object-fit: contain; filter: drop-shadow(0 5px 10px rgba(42,49,37,.14)); }
.brand-copy { line-height: 1; }
.brand-copy strong { display: block; font-size: 1.08rem; letter-spacing: -.02em; text-transform: uppercase; }
.brand-copy small { display: block; margin-top: 6px; color: var(--olive); font-size: .64rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 30px; margin-inline: auto; }
.main-nav a { position: relative; padding: 10px 0; font-size: .9rem; font-weight: 650; }
.main-nav a::after { content: ""; position: absolute; height: 2px; border-radius: 2px; background: var(--terracotta); inset: auto 0 4px; transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.main-nav a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.language-switcher { padding: 4px; display: flex; gap: 2px; border-radius: 999px; background: rgba(255,255,255,.45); }
.language-switcher button { width: 34px; height: 32px; border: 0; border-radius: 999px; color: #555; background: transparent; font-size: .69rem; font-weight: 800; cursor: pointer; transition: .2s ease; }
.language-switcher button[aria-pressed="true"] { color: white; background: var(--azur); box-shadow: 0 5px 14px rgba(30,111,181,.25); }
.nav-cta { min-height: 44px; padding-inline: 19px; }
.menu-toggle { width: 44px; height: 44px; padding: 0; border-radius: 50%; display: none; flex-direction: column; gap: 4px; }
.menu-toggle span { width: 18px; height: 2px; border-radius: 2px; background: var(--graphite); transition: .25s ease; }

.hero { min-height: 860px; height: min(940px, 100svh); position: relative; overflow: hidden; color: white; background: #26302c; }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-slide { position: absolute; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.04); transition: opacity 1.2s ease, transform 7s linear; }
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-shade { background: linear-gradient(90deg, rgba(16,24,25,.67) 0%, rgba(18,25,25,.36) 54%, rgba(18,25,25,.14) 100%), linear-gradient(0deg, rgba(16,17,17,.36), transparent 45%); }
.hero-orb { position: absolute; width: 300px; aspect-ratio: 1; border-radius: 50%; filter: blur(4px); opacity: .7; }
.hero-orb-one { right: -90px; top: 16%; background: radial-gradient(circle at 30% 30%, rgba(30,111,181,.42), rgba(30,111,181,.04) 68%); }
.hero-orb-two { left: 40%; bottom: -170px; width: 440px; background: radial-gradient(circle at 45% 35%, rgba(182,90,54,.36), rgba(182,90,54,.03) 68%); }
.hero-layout { height: 100%; position: relative; z-index: 2; display: flex; align-items: center; padding-top: 90px; }
.hero-card { width: min(650px, 100%); padding: clamp(28px, 5vw, 58px); border-radius: var(--radius-xl); color: var(--graphite); }
.hero-card::before { content: ""; position: absolute; width: 46%; height: 4px; left: 27%; top: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.95), transparent); border-radius: 50%; filter: blur(.5px); }
.eyebrow { margin: 0 0 18px; display: flex; align-items: center; gap: 10px; font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow > span:first-child { width: 24px; height: 2px; border-radius: 2px; background: var(--terracotta); }
.eyebrow.dark { color: var(--terracotta-dark); }
.eyebrow.light { color: rgba(255,255,255,.86); }
.eyebrow.light > span:first-child { background: var(--terracotta-soft); }
.hero h1 { max-width: 570px; margin: 0; font-size: clamp(3.15rem, 6vw, 5.75rem); line-height: .96; letter-spacing: -.066em; font-weight: 760; }
.hero-copy { max-width: 560px; margin: 24px 0 0; color: rgba(37,39,42,.76); font-size: clamp(1rem, 1.5vw, 1.15rem); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.hero-card .button-glass { color: var(--graphite); border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.5); }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 38px; padding-top: 26px; border-top: 1px solid rgba(90,78,66,.14); }
.hero-facts div { display: flex; flex-direction: column; }
.hero-facts strong { font-size: 1.35rem; line-height: 1; letter-spacing: -.04em; }
.hero-facts span { margin-top: 7px; color: var(--muted); font-size: .74rem; }
.carousel-controls { position: absolute; right: 0; bottom: 44px; display: flex; align-items: center; gap: 14px; padding: 8px 9px 8px 14px; border-radius: 999px; }
.carousel-dots { display: flex; gap: 7px; }
.carousel-dot { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 99px; background: rgba(37,39,42,.28); cursor: pointer; transition: width .25s var(--ease), background .25s ease; }
.carousel-dot[aria-selected="true"] { width: 25px; background: var(--terracotta); }
.carousel-pause { width: 34px; height: 34px; border-radius: 50%; border: 0; background: rgba(255,255,255,.58); cursor: pointer; }
.pause-icon { font-size: .68rem; font-weight: 800; }
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 28px; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; transform: translateX(-50%); }
.scroll-cue span { width: 8px; height: 8px; border: solid var(--graphite); border-width: 0 2px 2px 0; transform: rotate(45deg) translate(-2px,-2px); animation: cue 2s infinite; }
@keyframes cue { 0%, 100% { opacity: .35; transform: rotate(45deg) translate(-3px,-3px); } 50% { opacity: 1; transform: rotate(45deg) translate(2px,2px); } }

.section-heading h2 { margin: 0; max-width: 820px; font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: 1.02; letter-spacing: -.06em; }
.section-heading > p:last-child { max-width: 610px; margin: 23px 0 0; color: var(--muted); font-size: 1.05rem; }
.section-heading.centered { display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-heading.centered h2 { margin-inline: auto; }
.section-heading.centered > p:last-child { margin-inline: auto; }
.section-heading.split { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 56px; }
.section-heading.split > p { padding-bottom: 8px; }
.tours-section { position: relative; background: linear-gradient(180deg, rgba(240,230,216,.62), rgba(250,247,242,.55)); border-block: 1px solid rgba(182,90,54,.08); }
.tour-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 56px; }
.tour-card { position: relative; min-height: 500px; border-radius: 32px; overflow: hidden; background: #334; box-shadow: 0 18px 48px rgba(58,43,34,.13); isolation: isolate; }
.tour-card-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .5s ease; }
.tour-card:hover .tour-card-image { transform: scale(1.045); }
.tour-card::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(19,22,22,.03) 30%, rgba(17,20,20,.82) 100%); }
.tour-card-top { position: absolute; z-index: 2; top: 18px; left: 18px; right: 18px; display: flex; justify-content: space-between; align-items: center; }
.tour-chip { padding: 8px 12px; border-radius: 999px; color: var(--graphite); font-size: .68rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.photo-count { padding: 8px 11px; border-radius: 999px; color: white; background: rgba(18,20,20,.32); border: 1px solid rgba(255,255,255,.28); -webkit-backdrop-filter: blur(15px); backdrop-filter: blur(15px); font-size: .72rem; }
.tour-card-content { position: absolute; z-index: 2; inset: auto 20px 20px; color: white; }
.tour-card h3 { margin: 0; font-size: clamp(1.55rem, 3vw, 2.3rem); line-height: 1.02; letter-spacing: -.045em; }
.tour-card p { max-width: 520px; margin: 10px 0 18px; color: rgba(255,255,255,.78); font-size: .9rem; }
.tour-card-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.tour-card-actions .button { min-height: 43px; padding-inline: 17px; font-size: .78rem; }
.tour-card-actions .button-glass { background: rgba(255,255,255,.14); }
.tour-card[data-tour="airport"] .tour-card-actions [data-gallery-button] { display: none; }
.tour-price-note { display: inline-flex; margin: 0 0 14px; padding: 7px 11px; border-radius: 999px; color: white; background: rgba(18,20,20,.34); border: 1px solid rgba(255,255,255,.25); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); font-size: .74rem; font-weight: 750; }

.price-overview { margin-top: 22px; padding: clamp(25px, 4vw, 42px); border-radius: var(--radius-lg); display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.price-overview-copy .eyebrow { margin-bottom: 12px; }
.price-overview-copy h3 { margin: 0; font-size: clamp(1.85rem, 3.2vw, 3rem); line-height: 1.02; letter-spacing: -.05em; }
.price-overview-copy > p:last-child { margin: 14px 0 0; color: var(--muted); }
.price-tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.price-tiers > div { min-height: 150px; padding: 17px 13px; border: 1px solid rgba(112,96,80,.11); border-radius: 22px; display: flex; align-items: center; flex-direction: column; justify-content: center; text-align: center; background: rgba(255,255,255,.55); }
.price-tiers strong { font-size: 1.35rem; line-height: 1; }
.price-tiers span { margin-top: 5px; color: var(--muted); font-size: .72rem; }
.price-tiers b { margin-top: 11px; color: var(--terracotta-dark); font-size: 1.35rem; }
.price-tiers small { color: var(--muted); font-size: .68rem; }
.price-tiers .transfer-tier { background: rgba(30,111,181,.08); }
.price-tiers .transfer-tier b { color: var(--azur-dark); }

.photo-story { overflow: hidden; }
.story-grid { height: 660px; display: grid; grid-template-columns: 1.4fr .8fr; grid-template-rows: 1fr 1fr; gap: 16px; margin-top: 54px; }
.story-photo { position: relative; padding: 0; overflow: hidden; border: 0; border-radius: var(--radius-lg); cursor: pointer; box-shadow: 0 15px 45px rgba(50,43,35,.13); }
.story-photo.story-large { grid-row: 1 / 3; }
.story-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease), filter .65s ease; }
.story-photo:hover img { transform: scale(1.035); filter: saturate(1.07); }
.story-photo > span { position: absolute; left: 16px; right: 16px; bottom: 16px; padding: 14px 17px; border-radius: 20px; display: flex; justify-content: space-between; align-items: center; text-align: left; }
.story-photo strong { font-size: 1.05rem; }
.story-photo small { color: var(--terracotta-dark); font-weight: 750; }

.process-section { background: linear-gradient(135deg, rgba(240,230,216,.76), rgba(250,247,242,.86)); }
.process-layout { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(50px, 9vw, 125px); }
.process-copy h2 { margin: 0; max-width: 530px; font-size: clamp(2.5rem, 5vw, 4.6rem); line-height: 1; letter-spacing: -.06em; }
.process-copy > p:not(.eyebrow) { max-width: 500px; margin: 24px 0 30px; color: var(--muted); }
.process-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.process-list li { min-height: 126px; padding: 22px 24px; border-radius: var(--radius-md); display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: center; }
.process-list li > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; color: white; background: var(--azur); font-weight: 800; box-shadow: 0 10px 24px rgba(30,111,181,.2); }
.process-list li:nth-child(2) > span { background: var(--terracotta); box-shadow: 0 10px 24px rgba(182,90,54,.2); }
.process-list li:nth-child(3) > span { background: var(--olive); box-shadow: 0 10px 24px rgba(107,142,35,.2); }
.process-list h3 { margin: 0 0 4px; font-size: 1.15rem; letter-spacing: -.025em; }
.process-list p { margin: 0; color: var(--muted); font-size: .92rem; }

.contact-section { position: relative; min-height: 870px; padding: 120px 0; color: white; overflow: hidden; }
.contact-backdrop { position: absolute; inset: 0; background: #25302c; }
.contact-backdrop img { width: 100%; height: 100%; object-fit: cover; }
.contact-backdrop::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(19,26,27,.88), rgba(24,32,31,.54)), linear-gradient(0deg, rgba(18,20,20,.48), transparent); }
.contact-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.contact-copy h2 { margin: 0; max-width: 500px; font-size: clamp(2.7rem, 5vw, 5rem); line-height: .98; letter-spacing: -.06em; }
.contact-copy > p:not(.eyebrow) { max-width: 480px; color: rgba(255,255,255,.77); font-size: 1.08rem; }
.contact-details { width: min(390px, 100%); margin-top: 34px; padding: 20px 22px; border-radius: 24px; color: var(--graphite); display: flex; flex-direction: column; gap: 4px; }
.contact-details > span { color: var(--muted); font-size: .72rem; font-weight: 750; text-transform: uppercase; letter-spacing: .11em; }
.contact-details a { width: max-content; font-size: 1.04rem; font-weight: 750; }
.contact-details small { margin-top: 6px; color: var(--olive); font-weight: 700; }
.booking-form { color: var(--graphite); border-radius: var(--radius-xl); padding: clamp(24px, 4vw, 43px); }
.form-heading { display: flex; justify-content: space-between; gap: 18px; align-items: start; margin-bottom: 27px; }
.form-heading span:first-child { display: block; color: var(--terracotta-dark); font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.form-heading h3 { margin: 5px 0 0; font-size: 2rem; letter-spacing: -.045em; }
.form-badge { flex: 0 0 auto; padding: 9px 12px; border-radius: 999px; color: var(--olive) !important; background: rgba(107,142,35,.1); font-size: .67rem !important; letter-spacing: .03em !important; text-transform: none !important; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field > span, .field-label { padding-left: 3px; color: #565450; font-size: .78rem; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid rgba(112,96,80,.14);
  border-radius: 17px;
  outline: 0;
  color: var(--graphite);
  background: rgba(255,255,255,.62);
  box-shadow: inset 0 1px 1px rgba(75,61,49,.035), 0 1px 0 rgba(255,255,255,.7);
  padding: 13px 15px;
  transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input, .field select { min-height: 50px; }
.field textarea { resize: vertical; min-height: 108px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(30,111,181,.58); background: rgba(255,255,255,.86); box-shadow: 0 0 0 4px rgba(30,111,181,.1), inset 0 1px 1px rgba(75,61,49,.03); }
.field [aria-invalid="true"] { border-color: #b63232; box-shadow: 0 0 0 4px rgba(182,50,50,.09); }
.route-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; padding: 18px; border: 1px solid rgba(30,111,181,.16); border-radius: 22px; background: rgba(30,111,181,.055); }
.route-fields[hidden] { display: none !important; }
.place-autocomplete { position: relative; }
.place-suggestions {
  position: absolute;
  z-index: 30;
  top: calc(100% + 7px);
  left: 0;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(73,86,91,.16);
  border-radius: 17px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 20px 45px rgba(30,39,42,.19), 0 2px 8px rgba(30,39,42,.08);
}
.place-suggestions[hidden] { display: none !important; }
.place-options { display: grid; padding: 6px; }
.place-option {
  width: 100%;
  min-width: 0;
  padding: 10px 11px;
  border: 0;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 29px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  color: var(--graphite);
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.place-option:hover, .place-option.is-active { background: rgba(30,111,181,.09); }
.place-option-icon { width: 29px; height: 29px; border-radius: 10px; display: grid; place-items: center; color: var(--azur-dark); background: rgba(30,111,181,.1); font-size: .9rem; }
.place-option-copy { min-width: 0; display: grid; gap: 2px; }
.place-option-main, .place-option-secondary { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.place-option-main { font-size: .82rem; font-weight: 750; }
.place-option-secondary { color: var(--muted); font-size: .7rem; }
.google-attribution { padding: 7px 12px 9px; border-top: 1px solid rgba(73,86,91,.08); color: #777; font-size: .61rem; text-align: right; }
.google-wordmark { margin-left: 2px; font-size: .74rem; font-weight: 700; letter-spacing: -.02em; }
.google-wordmark span:nth-child(1), .google-wordmark span:nth-child(4) { color: #4285f4; }
.google-wordmark span:nth-child(2), .google-wordmark span:nth-child(6) { color: #ea4335; }
.google-wordmark span:nth-child(3) { color: #fbbc05; }
.google-wordmark span:nth-child(5) { color: #34a853; }
.route-action { display: flex; align-items: center; gap: 14px; }
.route-action p { margin: 0; color: var(--muted); font-size: .77rem; }
.route-action p.error { color: #9f2e2e; }
.route-action p.success { color: #4f741b; font-weight: 750; }
.price-result { min-height: 106px; padding: 18px 20px; border-radius: 22px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 3px 18px; background: linear-gradient(135deg, rgba(107,142,35,.12), rgba(255,255,255,.56)); border: 1px solid rgba(107,142,35,.2); }
.price-result > span { color: var(--olive); font-size: .72rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.price-result strong { grid-row: 1 / 3; grid-column: 2; color: var(--graphite); font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1; letter-spacing: -.055em; }
.price-result small { color: var(--muted); }
.price-result.is-pending { background: linear-gradient(135deg, rgba(30,111,181,.1), rgba(255,255,255,.56)); border-color: rgba(30,111,181,.2); }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 20px 2px 0; color: #64615d; font-size: .76rem; }
.consent input { margin-top: 3px; accent-color: var(--azur); }
.consent a { color: var(--azur-dark); text-decoration: underline; text-underline-offset: 2px; }
.website-field { position: absolute !important; left: -9999px; opacity: 0; }
.form-footer { display: flex; align-items: center; gap: 16px; margin-top: 23px; }
.submit-button.is-loading { pointer-events: none; opacity: .78; }
.button-spinner { width: 16px; height: 16px; display: none; border: 2px solid rgba(255,255,255,.38); border-top-color: white; border-radius: 50%; animation: spin .7s linear infinite; }
.submit-button.is-loading .button-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-status { margin: 0; color: var(--muted); font-size: .79rem; }
.form-status.error { color: #9f2e2e; }
.form-status.success { color: #4f741b; }

.site-footer { padding: 58px 0; background: #242a28; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .8fr 1fr; align-items: center; gap: 38px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 72px; height: 74px; object-fit: contain; }
.footer-brand strong { display: block; font-size: 1.04rem; }
.footer-brand small { display: block; margin-top: 3px; color: rgba(255,255,255,.5); }
.footer-links { display: flex; flex-direction: column; gap: 8px; color: rgba(255,255,255,.68); font-size: .88rem; }
.footer-links a:hover { color: white; }
.footer-social { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.social-link { min-width: 155px; padding: 11px 15px; justify-content: space-between; border-radius: 999px; color: var(--graphite); font-size: .84rem; font-weight: 750; }
.footer-social p { margin: 0; color: rgba(255,255,255,.4); font-size: .74rem; }

.gallery-dialog { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: 16px; border: 0; color: var(--graphite); background: transparent; overflow: hidden; }
.gallery-dialog::backdrop { background: rgba(15,18,18,.72); -webkit-backdrop-filter: blur(12px) saturate(120%); backdrop-filter: blur(12px) saturate(120%); }
.gallery-shell { width: min(1180px, 100%); height: min(900px, calc(100svh - 32px)); margin: auto; padding: 16px; border-radius: 36px; display: grid; grid-template-rows: auto minmax(0,1fr) auto; gap: 12px; overflow: hidden; }
.gallery-header { padding: 7px 7px 5px 12px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.gallery-kicker { display: block; color: var(--terracotta-dark); font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.gallery-header h2 { margin: 2px 0 0; font-size: 1.4rem; letter-spacing: -.035em; }
.gallery-header-actions { display: flex; align-items: center; gap: 8px; }
.gallery-autoplay { min-height: 43px; padding: 0 15px; border-radius: 999px; gap: 8px; color: var(--graphite); font-size: .75rem; font-weight: 750; cursor: pointer; }
.gallery-close { width: 43px; height: 43px; border-radius: 50%; border-color: rgba(80,70,60,.08); font-size: 1.7rem; cursor: pointer; }
.gallery-stage { min-height: 0; position: relative; overflow: hidden; border-radius: 26px; background: #171b1a; }
.gallery-stage figure { width: 100%; height: 100%; margin: 0; display: grid; grid-template-rows: minmax(0,1fr) auto; }
.gallery-stage img { width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.gallery-stage figcaption { min-height: 42px; padding: 10px 18px; display: flex; justify-content: space-between; align-items: center; gap: 18px; color: rgba(255,255,255,.72); background: #171b1a; font-size: .78rem; }
.gallery-arrow { position: absolute; z-index: 3; top: 50%; width: 48px; height: 48px; border-radius: 50%; border-color: rgba(255,255,255,.28); transform: translateY(-50%); font-size: 2rem; cursor: pointer; }
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }
.gallery-thumbs { display: flex; gap: 8px; overflow-x: auto; padding: 2px 3px 5px; scrollbar-width: thin; }
.gallery-thumb { flex: 0 0 90px; height: 64px; padding: 0; overflow: hidden; border: 2px solid transparent; border-radius: 14px; background: #ddd; cursor: pointer; opacity: .62; transition: opacity .2s ease, border-color .2s ease, transform .2s var(--ease); }
.gallery-thumb:hover { opacity: .88; transform: translateY(-2px); }
.gallery-thumb[aria-current="true"] { opacity: 1; border-color: var(--azur); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.toast { position: fixed; z-index: 100; left: 50%; bottom: 28px; transform: translate(-50%, 130px); padding: 12px 18px 12px 12px; border-radius: 999px; display: flex; align-items: center; gap: 10px; opacity: 0; transition: transform .45s var(--ease), opacity .35s ease; }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }
.toast > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--olive); font-weight: 900; }
.toast p { margin: 0; font-size: .86rem; font-weight: 650; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .main-nav { gap: 20px; }
  .brand { min-width: 222px; }
  .brand img { width: 60px; height: 62px; }
  .brand-copy strong { font-size: .98rem; }
  .brand-copy small { font-size: .56rem; }
  .nav-cta { display: none; }
  .price-overview { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: .8fr 1.2fr; gap: 44px; }
}

@media (max-width: 840px) {
  :root { --header-height: 76px; }
  .section { padding: 88px 0; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { inset-block-start: 10px; }
  .nav-shell { width: calc(100% - 20px); min-height: 60px; border-radius: 22px; flex-wrap: wrap; gap: 0; }
  .brand { min-width: auto; margin-right: auto; }
  .brand img { width: 58px; height: 60px; }
  .brand-copy strong { font-size: .9rem; }
  .brand-copy small { margin-top: 4px; font-size: .5rem; }
  .menu-toggle { display: flex; order: 3; margin-left: 6px; }
  .nav-actions { margin-left: auto; }
  .nav-cta { display: none; }
  .main-nav { order: 4; width: 100%; max-height: 0; overflow: hidden; visibility: hidden; margin: 0; flex-direction: column; align-items: stretch; gap: 0; transition: max-height .35s var(--ease), visibility .35s; }
  .main-nav.is-open { max-height: 240px; visibility: visible; padding: 12px 4px 8px; }
  .main-nav a { padding: 12px 9px; border-top: 1px solid rgba(91,79,65,.08); }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { min-height: max(760px, 100svh); height: auto; }
  .hero-shade { background: linear-gradient(0deg, rgba(16,22,22,.7), rgba(16,22,22,.24)); }
  .hero-layout { min-height: max(760px, 100svh); height: auto; align-items: flex-end; padding: 110px 0 58px; }
  .hero-card { margin-inline: auto; padding: 30px; border-radius: 36px; }
  .hero h1 { font-size: clamp(3rem, 11vw, 5rem); }
  .carousel-controls { right: 10px; bottom: 20px; }
  .scroll-cue { display: none; }
  .section-heading.split { grid-template-columns: 1fr; gap: 14px; }
  .tour-grid { margin-top: 42px; gap: 16px; }
  .price-tiers { grid-template-columns: repeat(2, 1fr); }
  .story-grid { height: 720px; grid-template-columns: 1fr 1fr; grid-template-rows: 1.25fr .75fr; }
  .story-photo.story-large { grid-column: 1 / -1; grid-row: auto; }
  .process-layout, .contact-layout { grid-template-columns: 1fr; }
  .contact-section { padding: 90px 0; }
  .contact-copy { text-align: center; }
  .contact-copy .eyebrow { justify-content: center; }
  .contact-copy h2, .contact-copy > p, .contact-details { margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-social { grid-column: 1 / -1; align-items: flex-start; }
}

@media (max-width: 620px) {
  :root { --header-height: 68px; }
  .section { padding: 64px 0; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .site-header { inset-block-start: 6px; }
  .nav-shell { width: calc(100% - 12px); min-height: 56px; padding: 5px 6px 5px 8px; border-radius: 20px; }
  .brand { gap: 7px; }
  .brand img { width: 52px; height: 54px; }
  .brand-copy strong { font-size: .77rem; }
  .brand-copy small { max-width: 92px; font-size: .43rem; line-height: 1.15; }
  .language-switcher { padding: 3px; gap: 1px; }
  .language-switcher button { width: 29px; height: 30px; font-size: .63rem; }
  .menu-toggle { width: 40px; height: 40px; margin-left: 4px; }
  .main-nav.is-open { padding: 10px 2px 6px; }
  .main-nav a { padding: 14px 10px; font-size: .92rem; }
  .hero { min-height: max(720px, 100svh); }
  .hero-layout { min-height: max(720px, 100svh); padding: 84px 0 24px; }
  .hero-card { padding: 24px 19px; border-radius: 28px; }
  .hero-card::before { width: 58%; left: 21%; }
  .hero .eyebrow { margin-bottom: 12px; gap: 8px; font-size: .63rem; letter-spacing: .12em; }
  .hero h1 { font-size: clamp(2.55rem, 12.2vw, 3.65rem); line-height: .94; }
  .hero-copy { margin-top: 16px; font-size: .92rem; line-height: 1.48; }
  .hero-buttons { margin-top: 21px; display: grid; grid-template-columns: 1fr; gap: 8px; }
  .hero-buttons .button { width: 100%; min-height: 49px; }
  .hero-facts { margin-top: 21px; padding-top: 17px; gap: 2px; }
  .hero-facts strong { font-size: 1.12rem; }
  .hero-facts span { font-size: .61rem; line-height: 1.25; }
  .carousel-controls { display: none; }
  .section-heading h2 { font-size: clamp(2.15rem, 10.6vw, 3.15rem); line-height: 1; }
  .section-heading > p:last-child { margin-top: 17px; font-size: .94rem; }
  .section-heading.split { gap: 8px; }
  .section-heading.split > p { padding-bottom: 0; }
  .tour-grid { display: grid; grid-template-columns: 1fr; margin-top: 34px; gap: 14px; }
  .tour-card { min-height: 520px; border-radius: 26px; }
  .tour-card::before { background: linear-gradient(180deg, rgba(19,22,22,.02) 24%, rgba(17,20,20,.9) 100%); }
  .tour-card-top { top: 13px; left: 13px; right: 13px; }
  .tour-card-content { inset: auto 14px 14px; }
  .tour-card h3 { font-size: 1.68rem; line-height: 1.04; }
  .tour-card p { margin: 8px 0 14px; font-size: .84rem; line-height: 1.43; }
  .tour-card-actions { display: grid; grid-template-columns: 1fr; gap: 7px; }
  .tour-card-actions .button { width: 100%; min-height: 45px; }
  .price-overview { margin-top: 14px; padding: 22px 16px; border-radius: 27px; gap: 22px; }
  .price-tiers { grid-template-columns: 1fr 1fr; gap: 8px; }
  .price-tiers > div { min-height: 132px; padding: 14px 9px; border-radius: 19px; }
  .story-grid { height: auto; display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 255px); gap: 12px; margin-top: 36px; }
  .story-photo.story-large { grid-column: auto; }
  .story-photo { border-radius: 26px; }
  .story-photo > span { left: 10px; right: 10px; bottom: 10px; padding: 12px 14px; align-items: flex-start; flex-direction: column; gap: 2px; border-radius: 17px; }
  .process-layout { gap: 36px; }
  .process-copy h2 { font-size: clamp(2.35rem, 11vw, 3.3rem); }
  .process-copy > p:not(.eyebrow) { margin: 18px 0 24px; }
  .process-copy .button { width: 100%; }
  .process-list { gap: 10px; }
  .process-list li { min-height: 0; grid-template-columns: 46px 1fr; gap: 13px; padding: 17px 15px; border-radius: 20px; }
  .process-list li > span { width: 42px; height: 42px; border-radius: 14px; }
  .process-list p { font-size: .84rem; line-height: 1.4; }
  .contact-section { min-height: 0; padding: 66px 0 52px; }
  .contact-layout { gap: 34px; }
  .contact-copy h2 { font-size: clamp(2.45rem, 11.5vw, 3.35rem); line-height: .98; }
  .contact-copy > p:not(.eyebrow) { font-size: .95rem; }
  .contact-details { margin-top: 22px; padding: 16px 18px; border-radius: 20px; text-align: left; }
  .contact-details a { width: auto; overflow-wrap: anywhere; font-size: .96rem; }
  .booking-form { padding: 22px 16px 20px; border-radius: 28px; }
  .form-heading { flex-direction: column; }
  .form-heading h3 { font-size: 1.75rem; }
  .form-badge { align-self: flex-start; }
  .form-grid { grid-template-columns: 1fr; gap: 14px; }
  .field { min-width: 0; }
  .field-full { grid-column: auto; }
  .field input, .field select, .field textarea { min-width: 0; border-radius: 15px; }
  .route-fields { grid-template-columns: 1fr; padding: 14px; gap: 14px; border-radius: 18px; }
  .route-action { align-items: stretch; flex-direction: column; }
  .route-action .button { width: 100%; }
  .price-result { grid-template-columns: 1fr; gap: 4px; padding: 16px; }
  .price-result strong { grid-row: auto; grid-column: auto; margin-block: 5px; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .submit-button { width: 100%; }
  .site-footer { padding: 44px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand img { width: 62px; height: 64px; }
  .footer-links { padding-block: 4px; }
  .footer-social { grid-column: auto; align-items: flex-start; }
  .social-link { width: 100%; }
  .gallery-dialog { padding: 6px; }
  .gallery-shell { height: calc(100svh - 12px); padding: 10px; border-radius: 27px; }
  .gallery-header { padding-left: 7px; }
  .gallery-kicker { max-width: 220px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .gallery-header h2 { max-width: 245px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 1.2rem; }
  .gallery-autoplay { width: 43px; padding: 0; }
  .gallery-autoplay span:last-child { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .gallery-stage { border-radius: 20px; }
  .gallery-stage figcaption { min-height: 38px; padding: 8px 12px; align-items: center; flex-direction: row; gap: 8px; font-size: .7rem; }
  .gallery-arrow { top: 46%; width: 42px; height: 42px; }
  .gallery-prev { left: 8px; }
  .gallery-next { right: 8px; }
  .gallery-thumb { flex-basis: 76px; height: 56px; }
  .toast { width: calc(100% - 24px); bottom: 12px; border-radius: 22px; }
}

@media (max-width: 360px) {
  .language-switcher button { width: 27px; }
  .hero-card { padding: 21px 17px; }
  .hero h1 { font-size: 2.38rem; }
  .hero-copy { font-size: .87rem; }
  .hero-facts span { font-size: .57rem; }
  .tour-card-actions .button { padding-inline: 11px; font-size: .73rem; }
  .booking-form { padding-inline: 14px; }
}

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

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass, .glass-button { background: rgba(255,255,255,.94); }
  .button-glass { background: rgba(38,42,42,.82); }
}

.simple-page {
  min-height: 100svh;
  padding: 30px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(182,90,54,.2), transparent 30rem),
    radial-gradient(circle at 84% 78%, rgba(30,111,181,.16), transparent 30rem),
    var(--cream);
}
.simple-shell { width: min(650px, 100%); padding: clamp(30px, 6vw, 62px); border-radius: var(--radius-xl); text-align: center; }
.simple-logo { width: 100px; height: 103px; margin: -20px auto 8px; object-fit: contain; }
.simple-check { width: 52px; height: 52px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--olive); box-shadow: 0 12px 28px rgba(107,142,35,.26); font-size: 1.4rem; font-weight: 900; }
.simple-shell .eyebrow { justify-content: center; }
.simple-shell h1 { margin: 0; font-size: clamp(2.8rem, 8vw, 4.6rem); letter-spacing: -.06em; }
.simple-shell > p:not(.eyebrow) { max-width: 520px; margin: 18px auto 0; color: var(--muted); }
.simple-shell .simple-translation { font-size: .85rem; }
.simple-shell .button { margin-top: 28px; }

.legal-page { min-height: 100svh; padding-top: 105px; }
.legal-header { position: fixed; z-index: 20; top: 14px; left: 50%; width: min(calc(100% - 28px), 1200px); min-height: 70px; padding: 8px 10px 8px 13px; border-radius: 24px; display: flex; align-items: center; justify-content: space-between; transform: translateX(-50%); }
.legal-header .button { min-height: 44px; }
.legal-main { padding-block: 78px 100px; }
.legal-title { max-width: 800px; }
.legal-title h1 { margin: 0; font-size: clamp(3.2rem, 8vw, 6.8rem); line-height: .9; letter-spacing: -.07em; }
.legal-title > p:last-child { color: var(--muted); }
.legal-grid { margin-top: 58px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.legal-card { padding: clamp(24px, 4vw, 38px); border-radius: var(--radius-lg); }
.legal-card:nth-child(2) { grid-row: span 2; }
.legal-card h2 { margin: 0 0 18px; font-size: 1.6rem; letter-spacing: -.04em; }
.legal-card p { color: var(--muted); }
.legal-card a { color: var(--azur-dark); text-decoration: underline; text-underline-offset: 3px; }
.legal-footer { padding: 34px 20px; text-align: center; color: rgba(255,255,255,.5); background: #242a28; font-size: .8rem; }

@media (max-width: 720px) {
  .simple-page { padding: 14px; }
  .legal-header .brand-copy { display: none; }
  .legal-main { padding-top: 50px; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-card:nth-child(2) { grid-row: auto; }
}
