@charset "UTF-8";

:root {
  --ink: #0f172a;
  --muted: #526174;
  --muted-2: #718096;
  --brand: #0f5f70;
  --brand-2: #0e7490;
  --brand-dark: #083844;
  --sand: #f7efe2;
  --sand-2: #fff8ed;
  --gold: #d7912d;
  --green: #16855a;
  --white: #ffffff;
  --line: rgba(15, 23, 42, .10);
  --shadow: 0 24px 70px rgba(15, 23, 42, .14);
  --shadow-soft: 0 16px 44px rgba(15, 23, 42, .09);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
  --header-h: 108px;
  --top-strip-h: 36px;
  --anchor-offset: calc(var(--header-h) + var(--top-strip-h));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(14, 116, 144, .14), transparent 36rem),
    radial-gradient(circle at 85% 18%, rgba(215, 145, 45, .16), transparent 30rem),
    linear-gradient(180deg, #fffaf2 0%, #f8fafc 42%, #ffffff 100%);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 850;
  background: rgba(15, 23, 42, .34);
  backdrop-filter: blur(4px);
}

body[data-current-lang="it"] [data-lang]:not([data-lang="it"]),
body[data-current-lang="en"] [data-lang]:not([data-lang="en"]),
body[data-current-lang="es"] [data-lang]:not([data-lang="en"]),
body[data-current-lang="fr"] [data-lang]:not([data-lang="en"]),
body[data-current-lang="de"] [data-lang]:not([data-lang="en"]),
body[data-current-lang="pt"] [data-lang]:not([data-lang="en"]) { display: none !important; }

body.lang-it:not([data-current-lang]) [data-lang="en"],
body.lang-en:not([data-current-lang]) [data-lang="it"] { display: none !important; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
strong { color: var(--ink); }

[id] {
  scroll-margin-top: var(--anchor-offset);
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transition: top .2s ease;
}

.skip-link:focus { top: 12px; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 250, 242, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.top-strip {
  border-bottom: 1px solid rgba(15, 23, 42, .06);
  font-size: .86rem;
  color: var(--muted);
}

.top-strip .container {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.top-contacts {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.top-contacts a {
  color: var(--brand-dark);
  font-weight: 700;
}

.navbar {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-logo {
  width: 90px;
  height: 90px;
  min-width: 90px;
  max-width: 90px;
  aspect-ratio: 1 / 1;
  flex: 0 0 90px;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: grid;
  place-items: center;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
  border-radius: 50%;
  display: block;
}

.brand-name {
  display: grid;
  line-height: 1.08;
}

.brand-name b {
  font-size: 1.04rem;
  letter-spacing: -.02em;
}

.brand-name span {
  color: var(--brand);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex: 1;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  color: #243244;
  font-size: .93rem;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--brand-dark);
  background: rgba(14, 116, 144, .10);
  outline: none;
}

.nav-link.cta-link {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .18);
}

.nav-link.cta-link:hover,
.nav-link.cta-link:focus-visible {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-1px);
}

.lang-switch {
  position: relative;
}

.lang-current,
.lang-option {
  border: 0;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: inherit;
}

.lang-current {
  width: 36px;
  height: 42px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.lang-current::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .7;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  gap: 6px;
  width: 58px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 250, 242, .98);
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(-6px) scale(.98);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 20;
}

.lang-switch.open .lang-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.lang-option {
  width: 42px;
  min-height: 38px;
  padding: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  justify-content: center;
}

.lang-option.active,
.lang-option:hover,
.lang-option:focus-visible {
  background: rgba(14, 116, 144, .12);
  color: var(--brand-dark);
  outline: none;
}

.lang-code {
  display: none;
  min-width: 24px;
  font-size: .78rem;
  text-align: left;
}

.lang-current .lang-code {
  min-width: auto;
  color: var(--brand-dark);
}

.flag-es {
  background:
    linear-gradient(180deg, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%);
}

.flag-fr {
  background: linear-gradient(90deg, #0055a4 0 33.333%, #fff 33.333% 66.666%, #ef4135 66.666% 100%);
}

.flag-de {
  background: linear-gradient(180deg, #000 0 33.333%, #dd0000 33.333% 66.666%, #ffce00 66.666% 100%);
}

.flag-pt {
  background:
    radial-gradient(circle at 44% 50%, #ffcc00 0 18%, transparent 19%),
    linear-gradient(90deg, #006600 0 40%, #ff0000 40% 100%);
}

.skip-translate {
  translate: no;
}

.translated-text {
  display: none;
}

body[data-current-lang="es"] .translated-text,
body[data-current-lang="fr"] .translated-text,
body[data-current-lang="de"] .translated-text,
body[data-current-lang="pt"] .translated-text {
  display: revert;
}

body[data-current-lang="es"] [data-lang="en"].has-translation,
body[data-current-lang="fr"] [data-lang="en"].has-translation,
body[data-current-lang="de"] [data-lang="en"].has-translation,
body[data-current-lang="pt"] [data-lang="en"].has-translation {
  font-size: 0;
}

body[data-current-lang="es"] [data-lang="en"].has-translation .translated-text,
body[data-current-lang="fr"] [data-lang="en"].has-translation .translated-text,
body[data-current-lang="de"] [data-lang="en"].has-translation .translated-text,
body[data-current-lang="pt"] [data-lang="en"].has-translation .translated-text {
  font-size: initial;
}

.flag-icon {
  display: block;
  flex: 0 0 auto;
  width: 30px;
  height: 20px;
  border-radius: 3px;
  overflow: hidden;
  background-clip: border-box;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, .22),
    0 2px 5px rgba(15, 23, 42, .12);
  transform: translateZ(0);
}

.flag-it {
  background: linear-gradient(90deg, #009246 0 33.333%, #fff 33.333% 66.666%, #ce2b37 66.666% 100%);
}

.flag-en {
  background:
    linear-gradient(0deg, transparent 42%, #c8102e 42% 58%, transparent 58%),
    linear-gradient(90deg, transparent 44%, #c8102e 44% 56%, transparent 56%),
    linear-gradient(0deg, transparent 35%, #fff 35% 65%, transparent 65%),
    linear-gradient(90deg, transparent 38%, #fff 38% 62%, transparent 62%),
    linear-gradient(33deg, transparent 44%, #fff 44% 50%, #c8102e 50% 56%, #fff 56% 62%, transparent 62%),
    linear-gradient(-33deg, transparent 44%, #fff 44% 50%, #c8102e 50% 56%, #fff 56% 62%, transparent 62%),
    #012169;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  width: 46px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(14, 116, 144, .18);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 12%, rgba(215, 145, 45, .18), transparent 34%),
    rgba(255, 255, 255, .94);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .10);
  color: var(--brand-dark);
  font-family: inherit;
  font-weight: 950;
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.menu-toggle::before {
  content: none;
}

.menu-toggle::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background:
    radial-gradient(circle, currentColor 0 2px, transparent 2.4px) 0 0 / 8px 8px;
  opacity: .92;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle span {
  display: none;
}

body.menu-open .menu-toggle {
  background: var(--brand-dark);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 18px 36px rgba(14, 116, 144, .22);
}

body.menu-open .menu-toggle::after {
  transform: rotate(45deg) scale(.96);
}

.section {
  padding: 92px 0;
  position: relative;
  scroll-margin-top: var(--anchor-offset);
}

.section.alt {
  background: rgba(255, 255, 255, .54);
  border-block: 1px solid rgba(15, 23, 42, .06);
}

.section-head {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}

.eyebrow,
.section-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(14, 116, 144, .10);
  color: var(--brand-dark);
  border: 1px solid rgba(14, 116, 144, .18);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -.045em;
  color: var(--ink);
}

.sub {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.55vw, 1.2rem);
}

.hero {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
  padding: 12px 0 180px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  align-items: center;
  gap: 48px;
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.7rem, 6.4vw, 6rem);
  line-height: .94;
  letter-spacing: -.065em;
}

.hero-copy {
  max-width: 710px;
  margin: 24px 0 0;
  color: #405064;
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
}

.hero-actions,
.centered-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.centered-actions { justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, .22);
  outline: none;
}

.btn.outline {
  background: rgba(255, 255, 255, .74);
  color: var(--brand-dark);
  border-color: rgba(14, 116, 144, .22);
  box-shadow: 0 10px 26px rgba(15, 23, 42, .08);
}

.btn.green { background: var(--green); }
.btn.gold { background: var(--gold); color: #1f1304; }

.hero-media {
  position: relative;
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(14, 116, 144, .18), rgba(215, 145, 45, .16));
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, .10);
  isolation: isolate;
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.02);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, .76));
  z-index: 1;
}

.floating-summary {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 22px;
  border-radius: 26px;
  color: #fff;
  background: rgba(15, 23, 42, .46);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .22);
}

.floating-summary h2 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  line-height: 1.1;
}

.floating-summary p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  line-height: 1.55;
}

.transparency-pill {
  position: absolute;
  top: 22px;
  left: -22px;
  z-index: 3;
  max-width: 295px;
  padding: 16px 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.45;
}

.transparency-pill b {
  display: block;
  margin-bottom: 4px;
  color: var(--brand-dark);
}

.grid-2,
.grid-3,
.grid-4,
.grid-5 {
  display: grid;
  gap: 22px;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.experience-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 42px 0 0;
}

.craft-experiences {
  margin: 42px 0 0;
}

.craft-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.craft-card .card-icon {
  margin-bottom: 0;
}

.experience-option {
  min-height: 100%;
  padding: 30px;
}

.experience-option.featured {
  background: linear-gradient(135deg, rgba(15, 95, 112, .96), rgba(8, 56, 68, .96));
  color: #fff;
}

.experience-option.featured h3,
.experience-option.featured strong { color: #fff; }
.experience-option.featured p { color: rgba(255, 255, 255, .82); }
.experience-option.featured .check-list li { color: rgba(255, 255, 255, .88); }
.experience-option.featured .check-list li::before {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.walking-note {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(215, 145, 45, .14);
  border: 1px solid rgba(215, 145, 45, .26);
  color: #6f4311;
  font-weight: 850;
  line-height: 1.45;
}

.experience-option.featured .walking-note {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .22);
}

.experience-option.featured .walking-note strong {
  color: #fff;
}

.option-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(215, 145, 45, .16);
  color: #7b4a10;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.experience-option.featured .option-kicker {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.option-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.option-meta span {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(14, 116, 144, .10);
  color: var(--brand-dark);
  font-size: .84rem;
  font-weight: 900;
}

.experience-option.featured .option-meta span {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.archaeology-focus {
  border-color: rgba(215, 145, 45, .42) !important;
  background:
    linear-gradient(145deg, rgba(255, 248, 237, .96), rgba(255, 255, 255, .9)) !important;
  box-shadow: 0 18px 48px rgba(101, 56, 5, .13);
}

.archaeology-focus::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--gold), var(--brand));
}

.experience-option.featured.archaeology-focus {
  background:
    linear-gradient(135deg, rgba(8, 56, 68, .97), rgba(15, 95, 112, .94)),
    radial-gradient(circle at top right, rgba(215, 145, 45, .35), transparent 34%) !important;
  border-color: rgba(215, 145, 45, .55) !important;
}

.card,
.panel,
.route-stop,
.faq-item {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: var(--shadow-soft);
}

.card::before,
.panel::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -72px;
  top: -76px;
  border-radius: 999px;
  background: rgba(14, 116, 144, .08);
  pointer-events: none;
}

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(14, 116, 144, .10);
  color: var(--brand-dark);
  font-size: 1.35rem;
}

.card h3,
.panel h3,
.route-stop h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.card p,
.panel p,
.route-stop p {
  margin: 0;
  color: var(--muted);
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(15, 95, 112, .96), rgba(8, 56, 68, .96));
  color: #fff;
  box-shadow: var(--shadow);
}

.split-panel .title,
.split-panel h3,
.split-panel strong { color: #fff; }
.split-panel .sub,
.split-panel p { color: rgba(255, 255, 255, .80); }

.split-panel .section-note {
  background: rgba(255, 255, 255, .16);
  color: #fff;
  border-color: rgba(255, 255, 255, .24);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, .88);
}

.panel .check-list li,
.card .check-list li {
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-weight: 950;
  line-height: 1;
}

.panel .check-list li::before,
.card .check-list li::before {
  background: rgba(14, 116, 144, .12);
  color: var(--brand-dark);
}

.check-list.no li::before {
  content: "—";
  background: rgba(215, 145, 45, .18);
  color: #6f4311;
}

.video-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 28px;
  align-items: center;
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 30px;
  background: #0f172a;
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: var(--shadow);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.instagram-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 560px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(8, 31, 40, .46), rgba(15, 23, 42, .68)),
    url("../img/photo-13.jpg") center / cover;
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: var(--shadow);
  color: #fff;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  align-content: center;
  gap: 18px;
  padding: 34px 28px;
}

.instagram-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, .30), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(8, 31, 40, .10));
  pointer-events: none;
}

.reel-device {
  position: relative;
  z-index: 2;
  width: min(100%, 250px);
  max-height: none;
  aspect-ratio: 875 / 1600;
  justify-self: center;
  padding: 8px;
  border-radius: 34px;
  background: #07090f;
  box-shadow: 0 26px 60px rgba(0, 0, 0, .34);
}

.reel-preview-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  justify-items: center;
  align-self: center;
}

.reel-preview-title {
  max-width: 280px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 950;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .45);
}

.reel-title-separator {
  width: 84px;
  height: 1px;
  background: rgba(255, 255, 255, .34);
}

.reel-screen {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 27px;
  background: #05070b url("../img/reel_visitcastellammare_130541.jpeg") center / contain no-repeat;
}

.reel-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle, rgba(0, 0, 0, .04), rgba(0, 0, 0, .22));
  pointer-events: none;
}

.reel-screen::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .28);
  transform: translateX(-50%);
}

.reel-play {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
}

.reel-play::before {
  content: "";
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .32);
  animation: reelPlayPulse 1.55s ease-out infinite;
  transition: transform .2s ease, background .2s ease;
}

.reel-play::after {
  content: "";
  position: absolute;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #111827;
  animation: reelPlayArrow 1.55s ease-in-out infinite;
}

.instagram-frame:hover .reel-play::before,
.instagram-frame:focus-visible .reel-play::before {
  transform: scale(1.06);
  background: #fff;
}

.reel-actions {
  position: absolute;
  right: 12px;
  bottom: 86px;
  z-index: 3;
  display: grid;
  gap: 12px;
  justify-items: center;
  color: #fff;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .45));
}

.reel-action {
  display: grid;
  gap: 3px;
  justify-items: center;
  font-size: .62rem;
  font-weight: 900;
  line-height: 1;
}

.reel-action svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reel-caption {
  position: absolute;
  left: 16px;
  right: 58px;
  bottom: 14px;
  z-index: 2;
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.35;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .55);
}

.reel-caption b {
  display: block;
  margin-top: 18px;
  margin-bottom: 0;
}

.instagram-frame-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  min-width: 0;
  max-width: 420px;
  color: #fff;
  align-self: center;
  margin-bottom: 0;
}

.instagram-frame-kicker {
  font-size: .82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .78);
}

.instagram-frame strong {
  font-size: .98rem;
  line-height: 1.45;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, .88);
  max-width: 330px;
}

.instagram-frame-line {
  color: rgba(255, 255, 255, .86);
  font-weight: 850;
}

.instagram-open-pill {
  order: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .26);
  color: #fff;
  font-size: .86rem;
  font-weight: 950;
  backdrop-filter: blur(10px);
}

.instagram-frame-content strong {
  order: 2;
}

.instagram-frame-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
  backdrop-filter: blur(10px);
}

.social-badge .social-platform-icon {
  margin-right: 0;
}

.social-badge .social-platform-icon.instagram img {
  width: 18px;
  height: 18px;
}

.social-badge .social-platform-icon.tiktok img {
  width: 18px;
  height: 18px;
}

.instagram-story-grid {
  margin-top: 28px;
}

.instagram-actions {
  justify-content: center;
  margin-top: 22px;
}

.instagram-actions .btn {
  width: min(100%, 280px);
  min-height: 54px;
  padding-inline: 16px;
  justify-content: flex-start;
}

.instagram-actions .btn.social-instagram {
  background: linear-gradient(135deg, rgba(245, 133, 41, .10), rgba(193, 53, 132, .10), rgba(81, 91, 212, .10));
  color: #0b3440;
  border-color: rgba(193, 53, 132, .26);
  box-shadow: 0 12px 28px rgba(193, 53, 132, .08);
}

.instagram-actions .btn.social-tiktok {
  background: linear-gradient(135deg, rgba(37, 244, 238, .12), rgba(254, 44, 85, .10));
  color: #0b3440;
  border-color: rgba(37, 244, 238, .34);
  box-shadow: 0 12px 28px rgba(37, 244, 238, .08);
}

.social-platform-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  line-height: 0;
}

.social-platform-icon img {
  display: block;
}

.social-platform-icon.instagram img {
  width: 24px;
  height: 24px;
}

.social-platform-icon.tiktok img {
  width: 24px;
  height: 24px;
}

.story-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.story-highlights span,
.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(14, 116, 144, .10);
  color: var(--brand-dark);
  font-size: .85rem;
  font-weight: 900;
}

.steps {
  counter-reset: step;
}

.step {
  min-height: 250px;
}

.step::after {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  right: 20px;
  bottom: -10px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(14, 116, 144, .10);
  font-weight: 950;
  letter-spacing: -.08em;
}

.route-map {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.route-stop {
  padding: 22px;
  min-height: 230px;
}

.route-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 14px;
  background: var(--brand);
  color: #fff;
  font-weight: 950;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.info {
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.info b,
.info span { display: block; }
.info b { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; }
.info span { margin-top: 8px; font-weight: 950; color: var(--ink); line-height: 1.2; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  margin: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(14, 116, 144, .10), rgba(215, 145, 45, .12));
  box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
  border: 1px solid rgba(15, 23, 42, .08);
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform .45s ease;
}

.photo-card:hover img { transform: scale(1.04); }

.photo-card figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .66);
  color: #fff;
  font-size: .86rem;
  font-weight: 850;
  backdrop-filter: blur(8px);
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.person-card {
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: var(--shadow-soft);
}

.person-photo {
  min-height: 390px;
  background: linear-gradient(135deg, rgba(14, 116, 144, .12), rgba(215, 145, 45, .14));
}

.person-photo img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
}

.person-body {
  padding: 26px;
}

.person-role {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(14, 116, 144, .10);
  color: var(--brand-dark);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.person-body h3 {
  margin: 0 0 10px;
  font-size: 1.7rem;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.person-body p { color: var(--muted); margin: 0 0 12px; }

details.more-story {
  margin-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, .08);
  padding-top: 14px;
}

details.more-story summary {
  cursor: pointer;
  color: var(--brand-dark);
  font-weight: 950;
}

.review-box {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 36px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: var(--shadow-soft);
}

.review-box .stars {
  margin: 12px 0;
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 1.15rem;
}

.review-divider {
  width: 84px;
  height: 1px;
  margin: 16px auto 24px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .18);
}

.review-author {
  margin: 8px 0 0;
  font-size: 1.02rem;
}

.review-source {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 6px;
  margin-top: 10px;
  margin-right: 0;
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(14, 116, 144, .08);
  border: 1px solid rgba(14, 116, 144, .16);
  color: var(--brand-dark);
  font-size: .86rem;
  font-weight: 950;
}

.review-source img {
  width: 104px;
  max-height: 20px;
  object-fit: contain;
}

.review-source span {
  white-space: nowrap;
  line-height: 1;
  text-align: center;
}

.review-translation {
  margin-top: 10px;
  color: var(--muted);
  text-align: right;
}

.review-translation summary {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--brand-2);
  border: 0;
  font-size: .72rem;
  font-weight: 950;
  box-shadow: none;
  list-style: none;
}

.review-translation summary::-webkit-details-marker { display: none; }
.review-translation summary [data-review-toggle] { display: none; }

body[data-current-lang="it"] .review-translation summary [data-review-toggle="it"],
body[data-current-lang="en"] .review-translation summary [data-review-toggle="en"],
body[data-current-lang="es"] .review-translation summary [data-review-toggle="es"],
body[data-current-lang="fr"] .review-translation summary [data-review-toggle="fr"],
body[data-current-lang="de"] .review-translation summary [data-review-toggle="de"],
body[data-current-lang="pt"] .review-translation summary [data-review-toggle="pt"] {
  display: inline;
}

.review-translation p {
  display: none;
  margin-top: 14px;
  text-align: center;
}

body[data-current-lang="it"] .review-translation [data-review-lang="it"],
body[data-current-lang="en"] .review-translation [data-review-lang="en"],
body[data-current-lang="es"] .review-translation [data-review-lang="es"],
body[data-current-lang="fr"] .review-translation [data-review-lang="fr"],
body[data-current-lang="de"] .review-translation [data-review-lang="de"],
body[data-current-lang="pt"] .review-translation [data-review-lang="pt"] {
  display: block;
}

.review-hidden-actions { display: none; }
.translation-anchor { display: none !important; }

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 950;
  font-size: 1.08rem;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--brand);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.booking-card {
  overflow: hidden;
  padding: 0;
  border-radius: 38px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, .08);
}

.partner-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, .62);
  font-size: .82rem;
}

.partner-strip + .partner-strip {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.partner-footer {
  padding: 26px 0;
  background: #081f28;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.partner-label {
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, .58);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.partner-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 18px;
  background: transparent;
  border: 1px solid transparent;
}

.partner-mark {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 58px;
  background: transparent;
}

.partner-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-mark.gyg { width: 72px; height: 56px; }
.partner-mark.viator { width: 150px; height: 38px; }
.partner-mark.trip { width: 192px; height: 36px; }
.partner-mark.ganimede { width: 210px; height: 72px; }

.technical-strip .partner-card {
  padding: 8px 14px;
  border-color: #fff;
  background: #fff;
}

@media (min-width: 961px) {
  .partner-mark.gyg { width: 94px; height: 74px; }
  .partner-mark.viator { width: 124px; height: 31px; }
  .partner-mark.trip { width: 238px; height: 44px; }
  .partner-mark.ganimede { width: 250px; height: 82px; }
}

.booking-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
}

.booking-copy,
.booking-actions {
  padding: 38px;
}

.booking-copy {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff;
}

.booking-copy .title,
.booking-copy strong { color: #fff; }
.booking-copy p { color: rgba(255, 255, 255, .82); }

.booking-copy .section-note {
  background: rgba(255, 255, 255, .16);
  color: #fff;
  border-color: rgba(255, 255, 255, .24);
}

.booking-direct-actions {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 24px;
}

.booking-direct-actions .btn {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  justify-items: start;
  justify-content: flex-start;
  width: min(100%, 340px);
  height: 60px;
  min-height: 60px;
  padding-block: 0;
  padding-inline: 18px;
  column-gap: 12px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
}

.booking-direct-actions .btn.booking-whatsapp {
  background: rgba(37, 211, 102, .14);
  color: #e8fff0;
  border-color: rgba(37, 211, 102, .30);
}

.booking-direct-actions .btn.booking-email {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border-color: rgba(255, 255, 255, .24);
}

.booking-actions {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
}

.booking-actions .btn {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  justify-items: start;
  width: min(100%, 360px);
  justify-content: flex-start;
  column-gap: 12px;
  padding-inline: 18px;
}

.booking-actions .btn.with-mark {
  height: 64px;
  min-height: 64px;
  padding-block: 0;
}

.booking-actions .btn.booking-whatsapp,
.booking-actions .btn.booking-email {
  order: 1;
  display: none;
}

.booking-actions .btn.booking-gyg,
.booking-actions .btn.booking-viator,
.booking-actions .btn.booking-trip {
  order: 3;
}

.booking-actions .btn.booking-gyg {
  background: rgba(255, 85, 51, .075);
  color: #9a2d13;
  border-color: rgba(255, 85, 51, .18);
}

.booking-actions .btn.booking-viator {
  background: rgba(27, 119, 120, .075);
  color: #12595a;
  border-color: rgba(27, 119, 120, .16);
}

.booking-actions .btn.booking-trip {
  background: rgba(0, 235, 91, .09);
  color: #00451c;
  border-color: rgba(0, 235, 91, .18);
}

.booking-actions .btn.booking-whatsapp {
  background: rgba(37, 211, 102, .10);
  color: #0b6f36;
  border-color: rgba(37, 211, 102, .18);
}

.booking-actions .btn.booking-email {
  background: rgba(37, 99, 235, .08);
  color: #1645a3;
  border-color: rgba(37, 99, 235, .16);
}

.booking-mark {
  flex: 0 0 auto;
  display: block;
  justify-self: center;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.booking-mark.gyg {
  width: 54px;
  height: 46px;
  object-fit: contain;
}

.booking-mark.viator,
.booking-mark.trip,
.booking-mark.whatsapp {
  width: 38px;
  height: 38px;
}

.booking-mark.viator {
  width: 30px;
  height: 30px;
}

.booking-mark.whatsapp {
  width: 30px;
  height: 30px;
  padding: 6px;
  border-radius: 999px;
  background: #25d366;
}

.booking-email-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  justify-self: center;
  place-items: center;
  background: transparent;
  color: currentColor;
  font-size: 0;
  font-weight: 950;
  line-height: 1;
}

.booking-email-icon::before {
  content: "\2709";
  font-size: 1.65rem;
  line-height: 1;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.contact-tile {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .88);
  line-height: 1.35;
}

.contact-tile b {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

footer {
  padding: 50px 0 84px;
  background: #081f28;
  color: rgba(255, 255, 255, .78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 28px;
}

footer h3 {
  margin: 0 0 10px;
  color: #fff;
  line-height: 1.2;
}

footer p,
footer ul { margin: 0; padding: 0; list-style: none; }
footer a { color: #fff; font-weight: 800; }

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-legal {
  margin-top: 24px;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, .68);
  font-size: .9rem;
}

.footer-legal details {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  overflow: hidden;
}

.footer-legal summary {
  cursor: pointer;
  padding: 12px 14px;
  color: #fff;
  font-weight: 900;
  list-style: none;
}

.footer-legal summary::-webkit-details-marker { display: none; }

.footer-legal summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}

.footer-legal details[open] summary::after { content: "-"; }

.footer-legal p {
  padding: 0 14px 14px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.55;
}

.copyright-line {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .58);
  font-size: .86rem;
}

.audio-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 880;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.audio-toggle {
  min-height: 42px;
  padding: 5px 10px 5px 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(14, 116, 144, .24);
  background:
    radial-gradient(circle at 20% 18%, rgba(215, 145, 45, .20), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(232, 250, 251, .84));
  color: var(--brand-dark);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .18);
  backdrop-filter: blur(16px);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.audio-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(15, 23, 42, .22);
}

.audio-toggle-orb {
  position: relative;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #d7912d);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), 0 10px 24px rgba(14, 116, 144, .26);
}

.audio-toggle-orb::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid currentColor;
  opacity: 0;
  transform: scale(.78);
  pointer-events: none;
}

.audio-wave {
  width: 18px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.audio-wave span {
  width: 2px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  opacity: .95;
  transform-origin: center bottom;
}

.audio-wave span:nth-child(2) { height: 12px; }
.audio-wave span:nth-child(3) { height: 9px; }
.audio-wave span:nth-child(4) { height: 14px; }

.audio-toggle-copy {
  display: grid;
  gap: 3px;
  text-align: left;
  line-height: 1;
}

.audio-toggle-title {
  color: rgba(3, 40, 50, .58);
  font-size: .6rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.audio-toggle-label {
  font-size: .76rem;
  line-height: 1;
}

.audio-info-trigger {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(14, 116, 144, .22);
  background: rgba(255, 255, 255, .88);
  color: var(--brand-dark);
  font: inherit;
  font-size: .82rem;
  font-weight: 950;
  cursor: help;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .14);
  backdrop-filter: blur(14px);
}

.audio-info-card {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: min(290px, calc(100vw - 32px));
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  background:
    radial-gradient(circle at 12% 0%, rgba(215, 145, 45, .30), transparent 36%),
    linear-gradient(135deg, rgba(6, 38, 48, .96), rgba(15, 23, 42, .96));
  color: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .28);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.audio-info-trigger:hover + .audio-info-card,
.audio-info-trigger:focus-visible + .audio-info-card,
.audio-info-card:hover {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.audio-info-card b,
.audio-info-card span {
  display: block;
}

.audio-info-card b {
  margin-bottom: 6px;
  font-size: .86rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.audio-info-card span {
  color: rgba(255, 255, 255, .78);
  font-size: .84rem;
  line-height: 1.45;
  font-weight: 750;
}

.audio-toggle.is-playing {
  background:
    radial-gradient(circle at 22% 20%, rgba(215, 145, 45, .34), transparent 32%),
    linear-gradient(135deg, #062630, var(--brand-dark));
  color: #fff;
  border-color: rgba(255, 255, 255, .22);
}

.audio-toggle.is-playing .audio-toggle-orb {
  background: linear-gradient(135deg, #d7912d, #0ea5b7);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, .08), 0 12px 28px rgba(14, 165, 183, .28);
}

.audio-toggle.is-playing .audio-toggle-orb::after {
  animation: audioHalo 1.2s ease-out infinite;
}

.audio-toggle.is-playing .audio-toggle-title {
  color: rgba(255, 255, 255, .62);
}

.audio-toggle.is-playing .audio-wave span {
  animation: audioWave .58s ease-in-out infinite alternate;
}

.audio-toggle.is-playing .audio-wave span:nth-child(2) { animation-delay: .08s; }
.audio-toggle.is-playing .audio-wave span:nth-child(3) { animation-delay: .16s; }
.audio-toggle.is-playing .audio-wave span:nth-child(4) { animation-delay: .24s; }

.audio-toggle.needs-click {
  animation: audioNudge 1.4s ease-in-out infinite;
  border-color: rgba(215, 145, 45, .55);
  box-shadow: 0 20px 52px rgba(215, 145, 45, .22), 0 12px 34px rgba(15, 23, 42, .18);
}

@keyframes audioWave {
  from { transform: scaleY(.35); opacity: .65; }
  to { transform: scaleY(1.35); opacity: 1; }
}

@keyframes audioHalo {
  0% { opacity: .38; transform: scale(.78); }
  100% { opacity: 0; transform: scale(1.28); }
}

@keyframes audioNudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes reelPlayPulse {
  0%, 100% { box-shadow: 0 14px 34px rgba(0, 0, 0, .32), 0 0 0 0 rgba(255, 255, 255, .34); }
  60% { box-shadow: 0 14px 34px rgba(0, 0, 0, .32), 0 0 0 12px rgba(255, 255, 255, 0); }
}

@keyframes reelPlayArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

@media (prefers-reduced-motion: reduce) {
  .audio-toggle,
  .audio-wave span,
  .reel-play::before,
  .reel-play::after {
    animation: none !important;
    transition: none !important;
  }
}

:focus-visible {
  outline: 3px solid rgba(14, 116, 144, .35);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .nav-link { padding-inline: 9px; font-size: .88rem; }
  .route-map { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .info-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  :root {
    --header-h: 80px;
    --top-strip-h: 0px;
  }

  .top-strip { display: none; }
  .menu-toggle { display: inline-flex; }

  .site-header .container { width: min(var(--max), calc(100% - 24px)); }

  .navbar {
    min-height: var(--header-h);
    gap: 10px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
    flex: 1 1 auto;
  }

  .brand-logo {
    width: 60px;
    height: 60px;
    min-width: 60px;
    max-width: 60px;
    aspect-ratio: 1 / 1;
    flex: 0 0 60px;
  }

  .brand-logo img {
    padding: 5px;
  }

  .review-source {
    margin-right: 0;
  }

  .review-translation {
    text-align: center;
  }

  .brand-name {
    min-width: 0;
  }

  .brand-name b {
    font-size: .9rem;
    white-space: nowrap;
  }

  .brand-name span {
    display: block;
    max-width: 180px;
    color: var(--brand);
    font-size: .58rem;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
  }

  .header-actions {
    gap: 12px;
    flex: 0 0 auto;
  }

  .menu-toggle {
    min-width: 42px;
    width: 42px;
    height: 38px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .10);
  }

  .lang-current {
    width: 30px;
    min-width: 30px;
    height: 34px;
    padding: 0;
    gap: 5px;
  }

  .lang-current .lang-code { display: none; }

  .lang-menu {
    right: 22px;
    width: 54px;
    min-width: 54px;
  }

  .lang-option {
    width: 38px;
    min-height: 36px;
    padding-inline: 0;
  }

  .flag-icon {
    width: 27px;
    height: 18px;
    border-radius: 2px;
  }

  .nav-panel {
    position: fixed;
    top: calc(var(--header-h) + 8px);
    left: 50%;
    right: auto;
    display: grid;
    justify-items: center;
    width: min(340px, calc(100vw - 24px));
    padding: 12px;
    border-radius: 22px;
    background:
      radial-gradient(circle at 12% 0%, rgba(215, 145, 45, .13), transparent 36%),
      rgba(255, 250, 242, .99);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 22px 54px rgba(15, 23, 42, .22);
    max-height: calc(100svh - var(--header-h) - 20px);
    overflow-y: auto;
    opacity: 0;
    transform: translate(-50%, -10px) scale(.98);
    transform-origin: top center;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
    z-index: 1100;
  }

  body.menu-open .nav-panel {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
    pointer-events: auto;
  }

  .nav-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
    width: 100%;
  }

  .nav-list li {
    display: flex;
    width: 100%;
  }

  .nav-link {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    gap: 0;
    text-align: center;
    min-height: 45px;
    padding: 0 15px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .68);
    border: 1px solid rgba(15, 23, 42, .06);
    box-shadow: 0 8px 18px rgba(15, 23, 42, .045);
    color: #172033;
    font-size: .94rem;
    font-weight: 950;
    letter-spacing: .01em;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.cta-link {
    background: linear-gradient(135deg, #9a551e, #c9822d);
    justify-content: center;
    min-height: 46px;
    margin-top: 4px;
    padding-inline: 18px;
    border-radius: 16px;
    border-color: transparent;
    color: #fff;
    box-shadow: 0 16px 30px rgba(154, 85, 30, .24);
  }

  .nav-link.cta-link::after { display: none; }

  .lang-switch {
    width: fit-content;
    margin-right: 12px;
  }

  @media (max-width: 380px) {
    .site-header .container { width: min(var(--max), calc(100% - 18px)); }
    .navbar { gap: 6px; }
    .brand-logo {
      width: 54px;
      height: 54px;
      min-width: 54px;
      max-width: 54px;
      flex-basis: 54px;
    }
    .brand-name b { font-size: .84rem; }
    .brand-name span {
      max-width: 158px;
      font-size: .52rem;
      letter-spacing: 0;
    }
    .menu-toggle {
      min-width: 40px;
      width: 40px;
      height: 36px;
    }
    .header-actions { gap: 9px; }
    .lang-switch { margin-right: 9px; }
    .lang-menu { right: 18px; }
    .lang-current {
      width: 28px;
      min-width: 28px;
    }
  }

  .hero {
    min-height: unset;
    padding: 46px 0 72px;
  }

  .hero-grid,
  .video-story-grid,
  .split-panel,
  .booking-inner {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-card img { min-height: 430px; }
  .hero-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .hero-card::after { display: none; }

  .transparency-pill {
    position: static;
    max-width: none;
    margin-bottom: 14px;
    font-size: .88rem;
  }

  .floating-summary {
    position: static;
    padding: 18px;
    border-radius: 0;
    background: var(--brand-dark);
    border: 0;
    backdrop-filter: none;
  }

  .grid-4,
  .grid-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .people-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 70px 0; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4.6rem); }
  .hero-copy { font-size: 1.06rem; }
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5,
  .experience-options,
  .partner-strip,
  .route-map,
  .info-grid,
  .gallery,
  .contact-row {
    grid-template-columns: 1fr;
  }
  .hero-actions .btn,
  .centered-actions .btn { width: 100%; }
  .instagram-actions .btn { width: 100%; }
  .hero-card,
  .hero-card img { min-height: 300px; }
  .floating-summary { padding: 16px; }
  .card,
  .panel,
  .route-stop,
  .split-panel,
  .review-box,
  .booking-copy,
  .booking-actions { padding: 22px; }
  .person-photo,
  .person-photo img { min-height: 310px; }
  .instagram-frame {
    min-height: 650px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 18px;
  }
  .reel-device { width: min(100%, 240px); }
  .instagram-frame strong { font-size: .94rem; }
  .audio-toggle {
    min-height: 40px;
    padding: 5px 9px 5px 6px;
    gap: 6px;
  }
  .audio-widget {
    right: 14px;
    bottom: 14px;
    gap: 7px;
  }
  .audio-toggle-orb { width: 28px; height: 28px; }
  .audio-toggle-label { font-size: .72rem; }
  .audio-info-trigger { width: 30px; height: 30px; font-size: .78rem; }
  .audio-info-card { right: -2px; }
}

.pet-friendly-note {
  margin-top: 18px;
}
