:root {
  --ink: #102d34;
  --ink-soft: #496269;
  --green: #1e565c;
  --green-dark: #153f45;
  --cream: #fcfaf4;
  --paper: #ffffff;
  --line: #dbe4e1;
  --yellow: #f5c94a;
  --yellow-soft: #fff3bd;
  --red-soft: #fce8e5;
  --red: #98493f;
  --shadow: 0 24px 65px rgba(16, 45, 52, .11);
  --shadow-small: 0 12px 34px rgba(16, 45, 52, .08);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 15px;
  --container: min(1160px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.dialog-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; }

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: 16px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: var(--container); margin-inline: auto; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-weight: 800;
  font-size: .79rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(252, 250, 244, .88);
  border-bottom: 1px solid rgba(16,45,52,.08);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: var(--container);
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -.02em;
}
.brand-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50% 50% 45% 55%;
  font-family: Georgia, serif;
  font-size: 1.18rem;
}
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: .94rem;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ink); }
.nav-cta {
  padding: 10px 16px;
  color: white !important;
  background: var(--ink);
  border-radius: 999px;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--ink); }

.hero { padding: 64px 0 48px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 62px;
}
.hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 600;
}
.hero h1 span { position: relative; white-space: nowrap; }
.hero h1 span::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -3%; right: -3%; bottom: .08em;
  height: .23em;
  background: var(--yellow);
  border-radius: 99px;
  transform: rotate(-1.2deg);
}
.hero-copy {
  max-width: 620px;
  margin: 27px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.03rem, 1.8vw, 1.21rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  min-height: 50px;
  padding: 13px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { color: white; background: var(--green); box-shadow: 0 12px 25px rgba(30,86,92,.18); }
.button--primary:hover { background: var(--green-dark); }
.button--secondary { color: var(--ink); background: white; border-color: var(--line); }
.button:disabled { opacity: .48; box-shadow: none; transform: none; }
.hero-note {
  margin-top: 27px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: .92rem;
}
.hero-note::before { content: ""; width: 9px; height: 9px; flex: 0 0 auto; background: var(--yellow); border-radius: 50%; }
.hero-art { position: relative; }
.hero-art img { filter: drop-shadow(0 34px 65px rgba(16,45,52,.18)); }
.hero-stamp {
  position: absolute;
  right: -22px;
  bottom: 26px;
  width: 138px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  padding: 16px;
  text-align: center;
  color: var(--ink);
  background: var(--yellow);
  border: 7px solid var(--cream);
  border-radius: 50%;
  box-shadow: var(--shadow-small);
  font-weight: 900;
  line-height: 1.1;
  transform: rotate(7deg);
}

.trust-strip { padding: 0 0 66px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-small);
}
.trust-item { padding: 22px 26px; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item strong { display: block; font-size: 1rem; }
.trust-item span { color: var(--ink-soft); font-size: .9rem; }

.tours-section { padding: 80px 0 94px; background: #f3f5f1; border-block: 1px solid #e4e9e5; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; }
.section-heading h2, .content-section h1, .content-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.035em;
}
.section-heading h2 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
.section-intro { max-width: 470px; margin: 0 0 8px; color: var(--ink-soft); }
.month-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 35px 0 27px; }
.month-tab {
  padding: 10px 17px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: white;
  border-radius: 999px;
  font-weight: 800;
}
.month-tab.is-active { color: var(--ink); background: var(--yellow); border-color: var(--yellow); }
.tour-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.tour-card {
  min-height: 385px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 0 rgba(16,45,52,0);
  animation: card-in .55s both;
  animation-delay: var(--delay);
  transition: transform .2s ease, box-shadow .2s ease;
}
.tour-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-small); }
@keyframes card-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.tour-card__topline { padding: 20px 22px 0; display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.tour-status { padding: 5px 10px; border-radius: 999px; font-size: .77rem; font-weight: 850; }
.tour-status--available { color: #276249; background: #def3e6; }
.tour-status--few { color: #725617; background: var(--yellow-soft); }
.tour-status--soldout, .tour-status--past { color: var(--red); background: var(--red-soft); }
.tour-date { color: var(--ink-soft); font-weight: 750; font-size: .9rem; }
.tour-card__body { padding: 27px 25px 22px; flex: 1; }
.tour-location { margin: 0 0 8px; color: var(--green); font-weight: 800; font-size: .86rem; letter-spacing: .035em; text-transform: uppercase; }
.tour-card h3 { max-width: 570px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.65rem, 3vw, 2.15rem); line-height: 1.12; font-weight: 600; }
.tour-meta { margin: 26px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.tour-meta div { padding-top: 10px; border-top: 1px solid var(--line); }
.tour-meta dt { color: var(--ink-soft); font-size: .76rem; }
.tour-meta dd { margin: 2px 0 0; font-weight: 800; font-size: .91rem; }
.tour-card__footer { padding: 20px 23px; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: #f8faf8; border-top: 1px solid var(--line); }
.tour-price strong { display: block; font-size: 1.4rem; line-height: 1; }
.tour-price span { display: block; margin-top: 5px; color: var(--ink-soft); font-size: .78rem; }
.empty-state { grid-column: 1 / -1; padding: 60px 30px; text-align: center; background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.empty-state strong { font-family: Georgia, serif; font-size: 2rem; }
.empty-state p { color: var(--ink-soft); }

.process-section { padding: 95px 0; }
.process-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.process-copy h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(2.3rem, 5vw, 4rem); line-height: 1.04; font-weight: 600; letter-spacing: -.04em; }
.process-copy p { color: var(--ink-soft); }
.process-steps { display: grid; gap: 12px; }
.process-step { padding: 24px; display: grid; grid-template-columns: 50px 1fr; gap: 18px; background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.step-number { width: 50px; height: 50px; display: grid; place-items: center; background: var(--yellow); border-radius: 50%; font-weight: 900; }
.process-step h3 { margin: 0; font-size: 1.08rem; }
.process-step p { margin: 4px 0 0; color: var(--ink-soft); font-size: .93rem; }

.about-band { padding: 72px 0; color: white; background: var(--ink); }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; }
.about-grid h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(2.4rem, 5vw, 4.6rem); line-height: 1; font-weight: 600; letter-spacing: -.04em; }
.about-grid p { color: #d1dcdc; }
.about-links { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 25px; }
.about-links a { color: white; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.06); }
.about-quote { padding: 29px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg); background: rgba(255,255,255,.05); }
.about-quote strong { display: block; color: var(--yellow); font-family: Georgia, serif; font-size: 1.75rem; line-height: 1.17; font-weight: 600; }
.about-quote span { display: block; margin-top: 18px; color: #bacaca; }

.site-footer { padding: 44px 0 25px; background: white; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 45px; }
.footer-title { margin: 0 0 13px; font-weight: 900; }
.footer-text { max-width: 420px; color: var(--ink-soft); }
.footer-links { display: grid; gap: 8px; }
.footer-links a { width: fit-content; color: var(--ink-soft); text-decoration: none; }
.footer-links a:hover { color: var(--ink); text-decoration: underline; }
.footer-bottom { margin-top: 37px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; color: var(--ink-soft); border-top: 1px solid var(--line); font-size: .84rem; }

.booking-dialog {
  width: min(620px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: var(--radius-xl);
  color: var(--ink);
  background: white;
  box-shadow: var(--shadow);
}
.booking-dialog::backdrop { background: rgba(8,25,29,.72); backdrop-filter: blur(5px); }
.dialog-inner { position: relative; padding: 34px; }
.dialog-close { position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; border: 0; border-radius: 50%; color: var(--ink); background: #eef3f1; font-size: 1.5rem; }
.dialog-inner h2 { padding-right: 45px; margin: 0; font-family: Georgia, serif; font-size: 2rem; line-height: 1.12; font-weight: 600; }
.dialog-details { margin: 9px 0 25px; color: var(--ink-soft); }
.payment-options { display: grid; gap: 11px; }
.payment-option { padding: 16px 17px; display: flex; align-items: center; gap: 14px; text-decoration: none; border: 1px solid var(--line); border-radius: var(--radius-md); transition: transform .18s ease, border-color .18s ease; }
.payment-option:hover { transform: translateY(-2px); border-color: var(--green); }
.payment-option__icon { width: 47px; height: 47px; display: grid; place-items: center; flex: 0 0 auto; color: white; background: var(--green); border-radius: 13px; font-weight: 900; }
.payment-option--paypal .payment-option__icon { color: #123f7b; background: #ffd24a; }
.payment-option div { display: grid; }
.payment-option strong { font-size: 1rem; }
.payment-option small { color: var(--ink-soft); }
.payment-option.is-fallback { border-style: dashed; }
.dialog-note { margin: 20px 0 0; padding: 13px 15px; color: var(--ink-soft); background: #f4f7f5; border-radius: 12px; font-size: .85rem; }

.page-hero { padding: 73px 0 53px; background: #f3f5f1; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 850px; margin: 0; font-family: Georgia, serif; font-size: clamp(2.8rem, 6vw, 5rem); line-height: 1; font-weight: 600; letter-spacing: -.045em; }
.page-hero p { max-width: 680px; margin: 21px 0 0; color: var(--ink-soft); font-size: 1.1rem; }
.content-section { padding: 70px 0 95px; }
.content-grid { display: grid; grid-template-columns: minmax(0, 760px) minmax(220px, 1fr); gap: 70px; align-items: start; }
.prose { padding: 37px; background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-small); }
.prose h2 { margin-top: 37px; font-size: 1.75rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 30px 0 7px; }
.prose p, .prose li { color: var(--ink-soft); }
.prose a { color: var(--green); }
.placeholder {
  padding: 14px 16px;
  color: #765a18 !important;
  background: var(--yellow-soft);
  border: 1px dashed #d7b43f;
  border-radius: 11px;
  font-weight: 750;
}
.side-card { position: sticky; top: 108px; padding: 26px; background: var(--ink); color: white; border-radius: var(--radius-lg); }
.side-card h2 { font-size: 1.55rem; }
.side-card p { color: #c9d5d5; }
.side-card .button { width: 100%; margin-top: 7px; }
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.contact-card { padding: 25px; text-decoration: none; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-small); }
.contact-card:hover { border-color: var(--green); }
.contact-card strong { display: block; font-size: 1.16rem; }
.contact-card span { color: var(--ink-soft); }

@media (max-width: 920px) {
  .hero-grid, .process-grid, .about-grid, .content-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero-art { max-width: 720px; }
  .section-heading { display: block; }
  .section-intro { margin-top: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .side-card { position: static; }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1160px); --radius-xl: 24px; }
  .header-inner { min-height: 68px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    padding: 18px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 17px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 10px 12px; }
  .hero { padding-top: 43px; }
  .hero-grid { gap: 35px; }
  .hero h1 { font-size: clamp(2.8rem, 16vw, 4.4rem); }
  .hero-stamp { right: -5px; width: 105px; border-width: 5px; font-size: .8rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line); }
  .tours-section { padding: 65px 0; }
  .tour-grid { grid-template-columns: 1fr; }
  .tour-meta { grid-template-columns: 1fr 1fr; }
  .tour-meta div:last-child { grid-column: 1 / -1; }
  .tour-card__footer { align-items: stretch; flex-direction: column; }
  .tour-card__footer .button { width: 100%; }
  .process-section { padding: 70px 0; }
  .footer-grid, .contact-cards { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .prose { padding: 23px; }
  .dialog-inner { padding: 27px 20px 22px; }
}

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