/* ============ TOKENS ============ */
:root {
  --yellow:   #f8b807;
  --green:    #4aa248;
  --blue:     #3866af;
  --navy:     #0f4495;
  --pink:     #e33384;
  --cream:    #fdf7e8;
  --paper:    #fffaf0;
  --ink:      #0e2a55;
  --ink-soft: #2a3d62;
  --line:     #0f4495;

  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --shadow-stamp: 8px 8px 0 var(--ink);
  --shadow-stamp-soft: 6px 6px 0 rgba(15,68,149,.18);
  --shadow-tile: 12px 12px 0 var(--ink);

  --font-display: "Montserrat", "Inter", system-ui, sans-serif;
  --font-body:    "Montserrat", "Inter", system-ui, sans-serif;

  --maxw: 1240px;
  --pad: clamp(16px, 3vw, 32px);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ============ TYPE ============ */
.h-display {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 8vw, 124px);
  line-height: .9;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 0;
}
.h-section {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 6vw, 84px);
  line-height: .92;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 0;
}
.eyebrow {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.lead {
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 500;
  line-height: 1.45;
  max-width: 56ch;
}

/* ============ TOPBAR ============ */
.topbar {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}
.topbar__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-block: 10px;
  flex-wrap: wrap;
}
.topbar a { display: inline-flex; align-items: center; gap: 8px; }
.topbar a:hover { color: var(--yellow); }

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
}
.header__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding-block: 14px;
}
.nav {
  display: flex;
  gap: 28px;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.nav a {
  position: relative;
  padding-bottom: 4px;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 3px;
  background: var(--pink);
  transition: right .25s ease;
}
.nav a:hover::after { right: 0; }

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.logo__img {
  height: 52px;
  width: auto;
  display: block;
}
.logo__img--lg { height: 72px; }
@media (max-width: 500px) {
  .logo__img { height: 42px; }
  .logo__img--lg { height: 56px; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  background: #fff;
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .12s ease, box-shadow .12s ease;
  white-space: nowrap;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(2px,2px); box-shadow: 0 0 0 var(--ink); }
.btn--pink   { background: var(--pink);   color: #fff; }
.btn--yellow { background: var(--yellow); color: var(--ink); }
.btn--navy   { background: var(--navy);   color: #fff; }
.btn--green  { background: var(--green);  color: #fff; }
.btn--ghost  { background: transparent; box-shadow: none; }
.btn--lg { padding: 18px 28px; font-size: 16px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--pink);
  color: #fff;
  overflow: hidden;
  border-bottom: 4px solid var(--ink);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 14%, rgba(255,255,255,.12) 0 6px, transparent 7px),
    radial-gradient(circle at 88% 70%, rgba(255,255,255,.08) 0 8px, transparent 9px),
    radial-gradient(circle at 50% 90%, rgba(255,255,255,.08) 0 5px, transparent 6px);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  padding-block: clamp(56px, 9vw, 120px);
  position: relative;
}
.hero__text { position: relative; z-index: 2; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  margin-bottom: 22px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0 0 18px;
}
.hero h1 .accent-yellow {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  padding: 0 .15em;
  border-radius: 10px;
  box-shadow: inset 0 0 0 3px var(--ink), 6px 6px 0 var(--ink);
  transform: rotate(-1.2deg);
  margin: .04em .06em;
}
.hero__lead {
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 500;
  max-width: 38ch;
  margin-bottom: 28px;
  color: #fff;
  opacity: .96;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
}
.stat__label {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 4px;
  opacity: .88;
}

.hero__media {
  position: relative;
  z-index: 1;
  transform: rotate(1.5deg);
}
.hero__media-frame {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 4px solid var(--ink);
  box-shadow: var(--shadow-tile);
  background: var(--paper);
}
.hero__media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__sticker {
  position: absolute;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: 4px 4px 0 var(--ink);
}
.hero__sticker--carrot {
  width: 178px; height: 178px;
  bottom: -38px; left: -32px;
  transform: rotate(-7deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 10px 12px;
}
.hero__sticker-icon {
  width: 78px;
  height: 78px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(2px 2px 0 rgba(15,42,85,.18));
}
.hero__sticker-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.hero__sticker-text em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 700;
}
.hero__sticker-text strong {
  font-size: 18px;
  letter-spacing: -.01em;
  font-weight: 900;
}
@media (max-width: 880px) {
  .hero__sticker--carrot {
    width: 140px; height: 140px;
    bottom: -22px; left: 8px;
  }
  .hero__sticker-icon { width: 58px; height: 58px; }
  .hero__sticker-text strong { font-size: 15px; }
  .hero__sticker-text em { font-size: 10px; }
}

/* ============ MARQUEE BAR ============ */
.marquee {
  background: var(--yellow);
  border-block: 4px solid var(--ink);
  overflow: hidden;
  padding-block: 18px;
}
.marquee__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 48px);
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: -.01em;
}
.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}
.marquee__track svg { width: 36px; height: 36px; flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */
.section {
  padding-block: clamp(72px, 10vw, 130px);
  position: relative;
}
.section__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 56px;
}
.section__title-wrap { max-width: 22ch; }
.section__eyebrow {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
  display: inline-block;
}
.section__sub {
  font-size: clamp(15px, 1.2vw, 18px);
  max-width: 42ch;
  color: var(--ink-soft);
  margin: 0;
  font-weight: 500;
}

@media (max-width: 760px) {
  .section__head { grid-template-columns: 1fr; align-items: start; }
}

/* ============ COMBO ============ */
.section--combo { background: var(--cream); border-block: 4px solid var(--ink); }
.combo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) {
  .combo-grid { grid-template-columns: 1fr; gap: 22px; }
}
.combo {
  position: relative;
  border-radius: var(--radius-xl);
  border: 4px solid var(--ink);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-tile);
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 100%;
  transition: transform .18s ease, box-shadow .18s ease;
}
.combo:hover {
  transform: translate(-4px,-4px);
  box-shadow: 16px 16px 0 var(--ink);
}
.combo--green  { background: var(--green); color: #fff; }
.combo--pink   { background: var(--pink);  color: #fff; transform: scale(1.03); }
.combo--pink:hover { transform: scale(1.03) translate(-4px,-4px); }
.combo--navy   { background: var(--navy);  color: #fff; }

.combo__badge {
  position: absolute;
  top: -22px;
  right: -14px;
  background: var(--yellow);
  color: var(--ink);
  border: 4px solid var(--ink);
  border-radius: 14px;
  padding: 8px 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 15px;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(8deg);
}
.combo__index {
  position: absolute;
  top: -28px;
  left: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--paper);
  border: 4px solid var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.combo__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 34px;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin: 0;
}
.combo__save {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: rgba(255,255,255,.18);
  color: #fff;
  border: 2px dashed rgba(255,255,255,.6);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.combo__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 6px 0;
}
.combo__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
}
.combo__item-icon {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,.95);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.combo__item-icon svg { width: 18px; height: 18px; }
.combo__or {
  align-self: center;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 800;
  opacity: .85;
  margin: -4px 0;
}
.combo__extra {
  font-size: 13px;
  font-weight: 700;
  background: var(--yellow);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: 10px 12px;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.combo__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 2px dashed rgba(255,255,255,.45);
}
.combo__price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 4.2vw, 50px);
  line-height: .9;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.combo__price small {
  display: block;
  font-size: 12px;
  letter-spacing: .14em;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: .85;
}
.combo__buy {
  background: #fff;
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 14px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .12s ease;
}
.combo__buy:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }

/* ============ TICKETS ============ */
.section--tickets { background: var(--paper); }
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .tickets-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .tickets-grid { grid-template-columns: 1fr; } }
.ticket {
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 22px 22px 24px;
  box-shadow: var(--shadow-stamp);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.ticket:hover { transform: translate(-3px,-3px); box-shadow: 12px 12px 0 var(--ink); }
.ticket__icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  border: 3px solid var(--ink);
  display: grid;
  place-items: center;
  background: var(--cream);
}
.ticket__icon svg { width: 36px; height: 36px; }
.ticket--alpaca .ticket__icon { background: var(--pink); }
.ticket--alpaca .ticket__icon svg { color: #fff; }
.ticket--topiary .ticket__icon { background: var(--green); }
.ticket--topiary .ticket__icon svg { color: #fff; }
.ticket--ship    .ticket__icon { background: var(--yellow); }
.ticket--rope    .ticket__icon { background: var(--blue);  }
.ticket--rope    .ticket__icon svg { color: #fff; }

.ticket__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin: 0;
  color: var(--ink);
  line-height: 1;
}
.ticket__sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0;
}
.ticket__price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  color: var(--navy);
  line-height: 1;
}
.ticket__price small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink);
}

/* restrictions */
.limits {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 760px) { .limits { grid-template-columns: 1fr; } }
.limit {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  border: 4px solid var(--ink);
  box-shadow: var(--shadow-stamp);
}
.limit__title {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .14em;
  color: var(--pink);
  margin: 0 0 14px;
}
.limit__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  margin: 0 0 14px;
  line-height: 1;
}
.limit__list {
  display: grid;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.limit__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.limit__list li::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 6px;
}
.note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
  max-width: 70ch;
}

/* ============ ATTRACTIONS ============ */
.section--zones { background: var(--blue); color: #fff; border-block: 4px solid var(--ink); }
.section--zones .section__sub { color: rgba(255,255,255,.8); }
.section--zones .section__eyebrow { color: var(--yellow); }

.zones-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.zone {
  position: relative;
  border-radius: var(--radius-lg);
  border: 4px solid var(--ink);
  overflow: hidden;
  box-shadow: var(--shadow-tile);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  min-height: 360px;
  color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}
.zone:hover { transform: translate(-4px,-4px); box-shadow: 16px 16px 0 var(--ink); }
.zone__media {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.zone__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.zone:hover .zone__media img { transform: scale(1.06); }
.zone__chip {
  position: absolute;
  top: 14px; left: 14px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .12em;
}
.zone__body {
  padding: 18px 20px 20px;
  background: var(--paper);
  border-top: 3px solid var(--ink);
}
.zone__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin: 0 0 4px;
}
.zone__desc { font-size: 13px; color: var(--ink-soft); margin: 0; font-weight: 500; }

.zone--wide { grid-column: span 3; }
.zone--med  { grid-column: span 3; }
.zone--sm   { grid-column: span 2; }
@media (max-width: 1100px) {
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .zone--wide, .zone--med, .zone--sm { grid-column: span 1; }
}
@media (max-width: 560px) {
  .zones-grid { grid-template-columns: 1fr; }
}

/* ============ RULES ============ */
.section--rules { background: var(--cream); border-block: 4px solid var(--ink); }
.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .rules-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .rules-grid { grid-template-columns: 1fr; } }
.rule {
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 26px 24px 22px;
  box-shadow: var(--shadow-stamp);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.rule__num {
  position: absolute;
  top: -22px;
  left: 20px;
  width: 48px;
  height: 48px;
  background: var(--pink);
  color: #fff;
  border: 4px solid var(--ink);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  display: grid;
  place-items: center;
  box-shadow: 4px 4px 0 var(--ink);
}
.rule:nth-child(even) .rule__num { background: var(--blue); }
.rule:nth-child(3n)   .rule__num { background: var(--green); }
.rule__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  margin: 14px 0 0;
  line-height: 1.05;
}
.rule__text {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}

/* ============ CONTACTS ============ */
.section--contacts { background: var(--paper); }
.contacts {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 900px) { .contacts { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-tile);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 44px);
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: -.01em;
  margin: 0;
  color: var(--ink);
}
.contact-block {
  border-top: 3px dashed var(--ink);
  padding-top: 18px;
}
.contact-block:first-of-type { border-top: 0; padding-top: 0; }
.contact-block__label {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--blue);
  margin-bottom: 8px;
}
.contact-block__value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 2.5vw, 30px);
  letter-spacing: -.01em;
  color: var(--ink);
  text-decoration: none;
  display: inline-block;
}
.contact-block__value:hover { color: var(--pink); }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.map {
  border: 4px solid var(--ink);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-tile);
  background: var(--blue);
  position: relative;
  min-height: 420px;
}
.map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: #fff;
  padding-block: 56px 28px;
  border-top: 4px solid var(--navy);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 36px;
}
@media (max-width: 760px) { .footer__top { grid-template-columns: 1fr; } }
.footer__tagline {
  margin-top: 18px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  max-width: 38ch;
}

.requisites {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 28px;
  font-size: 13px;
}
@media (max-width: 560px) { .requisites { grid-template-columns: 1fr; } }
.requisites__title {
  grid-column: 1 / -1;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--yellow);
  margin-bottom: 4px;
}
.requisites dt {
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 4px;
}
.requisites dd {
  margin: 0 0 14px;
  color: #fff;
  font-weight: 600;
  word-break: break-word;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}
.footer__link {
  color: rgba(255,255,255,.8);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  cursor: pointer;
}
.footer__link:hover { color: var(--yellow); }

/* ============ MODAL ============ */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15,42,85,.7);
  z-index: 100;
  backdrop-filter: blur(6px);
}
.modal.is-open { display: flex; animation: fadeIn .2s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal__panel {
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-tile);
  max-width: 460px;
  width: 100%;
  padding: 36px 32px 32px;
  position: relative;
  text-align: center;
}
.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  background: #fff;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
}
.modal h3 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 28px;
  margin: 0 0 8px;
  line-height: 1;
  color: var(--ink);
}
.modal p {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
}
.modal__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal__notice {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 16px 0 0;
  font-weight: 500;
}
.modal__notice a {
  color: var(--pink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

/* Privacy modal — wider, scrollable, left-aligned */
.modal__panel--wide {
  max-width: 720px;
  text-align: left;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  padding: 36px 36px 28px;
}
.modal__panel--wide h3 { margin-bottom: 4px; }
.privacy__meta {
  margin: 0 0 18px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--pink);
  font-weight: 800;
}
.privacy__body {
  overflow-y: auto;
  padding-right: 8px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.6;
}
.privacy__body h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 22px 0 8px;
  line-height: 1.2;
}
.privacy__body h4:first-child { margin-top: 0; }
.privacy__body p { margin: 0 0 12px; }
.privacy__body ul { margin: 0 0 12px 18px; padding: 0; list-style: disc; }
.privacy__body ul li { margin-bottom: 6px; }
.privacy__body a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.privacy__body strong { color: var(--ink); }

/* scrollbar for privacy body */
.privacy__body::-webkit-scrollbar { width: 8px; }
.privacy__body::-webkit-scrollbar-track { background: transparent; }
.privacy__body::-webkit-scrollbar-thumb {
  background: rgba(15,42,85,.25);
  border-radius: 4px;
}

@media (max-width: 560px) {
  .modal__panel--wide { padding: 28px 22px 20px; max-height: 92vh; }
  .privacy__body { font-size: 13px; }
}

/* ============ RESPONSIVE TWEAKS ============ */
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 480px; margin-inline: auto; }
  .nav { display: none; }
}
@media (max-width: 500px) {
  .topbar__row { font-size: 12px; }
  .header__row { grid-template-columns: 1fr auto; }
  .combo { padding: 26px 22px 22px; }
  .combo__price { font-size: 42px; }
  .combo__name { font-size: 28px; }
  .contact-card { padding: 28px 24px; }
}
