:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #65716c;
  --paper: #f6f1e8;
  --cream: #fffaf0;
  --green: #1f352f;
  --green-soft: #d8e2d5;
  --terracotta: #a84d2a;
  --brass: #c59b4b;
  --blue: #4f6e80;
  --line: rgba(23, 33, 29, 0.16);
  --shadow: 0 24px 70px rgba(23, 33, 29, 0.18);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body::selection {
  background: var(--brass);
  color: var(--ink);
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: #fffaf0;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 240, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 35px rgba(23, 33, 29, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a,
.footer a {
  text-decoration: none;
}

.nav a:hover,
.footer a:hover {
  color: var(--terracotta);
}

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

.lang-toggle,
.icon-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.lang-toggle {
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
}

.icon-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
}

.hero img {
  object-fit: cover;
  object-position: 58% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.86), rgba(23, 33, 29, 0.52) 42%, rgba(23, 33, 29, 0.18)),
    linear-gradient(0deg, rgba(23, 33, 29, 0.7), rgba(23, 33, 29, 0) 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(120px, 16vh, 180px) clamp(18px, 7vw, 98px);
  color: #fffaf0;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 780px;
  font-size: clamp(3.15rem, 8vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 250, 240, 0.9);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.button.primary {
  background: var(--brass);
  color: #16201c;
}

.button.secondary {
  border-color: rgba(255, 250, 240, 0.5);
  color: #fffaf0;
}

.location .button.secondary {
  border-color: var(--green);
  color: var(--green);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-facts {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 34px;
  left: clamp(18px, 5vw, 64px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-facts > div {
  min-width: 0;
  padding: 20px;
  background: rgba(255, 250, 240, 0.92);
  color: var(--ink);
}

.hero-facts span,
.hero-facts small,
.schedule span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-facts strong {
  display: block;
  margin: 8px 0 3px;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1;
}

.band,
.atmosphere,
.location,
.footer {
  padding: clamp(76px, 10vw, 136px) clamp(18px, 6vw, 86px);
}

.intro {
  background: var(--cream);
}

.intro-grid,
.comparison-grid,
.location {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.intro-grid p,
.location-copy p,
.source-note,
.comparison li {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.atmosphere {
  background: var(--green);
  color: var(--cream);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 36px;
}

.feature-strip,
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-strip article,
.offer-grid article {
  min-height: 230px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.08);
  border: 1px solid rgba(255, 250, 240, 0.16);
}

.feature-strip span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--brass);
  font-weight: 900;
}

.feature-strip p {
  color: rgba(255, 250, 240, 0.78);
  line-height: 1.65;
}

.offer {
  background: #e4e8dc;
}

.offer-grid article {
  background: var(--cream);
  border-color: var(--line);
}

.offer-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 36px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 1.35rem;
}

.offer-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.source-note {
  max-width: 760px;
  margin: 28px 0 0;
}

.location {
  background: var(--cream);
  align-items: center;
}

.schedule {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.schedule div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.schedule strong {
  display: block;
  margin-top: 8px;
  font-size: 1.45rem;
}

.map-panel {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(31, 53, 47, 0.92), rgba(79, 110, 128, 0.72)),
    linear-gradient(90deg, rgba(255, 250, 240, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 250, 240, 0.1) 1px, transparent 1px);
  background-size: auto, 54px 54px, 54px 54px;
}

.map-lines,
.map-lines::before,
.map-lines::after {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.42);
  transform-origin: center;
}

.map-lines {
  top: 45%;
  right: -18%;
  left: -12%;
  height: 18px;
  transform: rotate(-18deg);
}

.map-lines::before,
.map-lines::after {
  content: "";
  left: 14%;
  width: 78%;
  height: 12px;
}

.map-lines::before {
  top: -118px;
  transform: rotate(41deg);
}

.map-lines::after {
  top: 122px;
  transform: rotate(34deg);
}

.map-pin {
  position: absolute;
  top: 42%;
  left: 52%;
  width: 28px;
  height: 28px;
  border: 7px solid var(--brass);
  border-radius: 50% 50% 50% 0;
  background: var(--cream);
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 12px 35px rgba(23, 33, 29, 0.35);
}

.map-label {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.92);
}

.map-label span,
.map-label small {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.map-label strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1;
}

.comparison {
  background: #f2e2d3;
}

.comparison ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(23, 33, 29, 0.18);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-block: 34px;
  background: var(--ink);
  color: var(--cream);
}

.footer p {
  margin: 6px 0 0;
  color: rgba(255, 250, 240, 0.7);
}

.mobile-actions {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: none;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(23, 33, 29, 0.9);
  box-shadow: 0 15px 40px rgba(23, 33, 29, 0.24);
  backdrop-filter: blur(16px);
}

.mobile-actions a {
  flex: 1;
  min-width: 0;
  padding: 12px 10px;
  border-radius: 999px;
  color: var(--cream);
  text-align: center;
  text-decoration: none;
  font-weight: 900;
}

.mobile-actions a:first-child {
  background: var(--brass);
  color: var(--ink);
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .header-actions {
    justify-content: end;
  }

  .hero {
    min-height: 98svh;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 220px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 5.6rem);
  }

  .hero-facts {
    grid-template-columns: 1fr;
    bottom: 82px;
    right: 16px;
    left: 16px;
  }

  .hero-facts > div {
    padding: 14px 16px;
  }

  .hero-facts strong {
    font-size: 1.25rem;
  }

  .intro-grid,
  .comparison-grid,
  .location,
  .feature-strip,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip article,
  .offer-grid article {
    min-height: auto;
  }

  .map-panel {
    min-height: 420px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 98px;
  }

  .mobile-actions {
    display: flex;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .brand-mark,
  .lang-toggle,
  .icon-link {
    width: 40px;
    height: 40px;
  }

  .hero-content {
    margin-bottom: 245px;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    flex: 1 1 190px;
    padding-inline: 14px;
  }

  .schedule {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
