:root {
  --ink: #1e1812;
  --paper: #f8f0df;
  --paper-strong: #fff9ef;
  --green: #13794f;
  --green-deep: #0d5b3c;
  --red: #b52a2b;
  --red-deep: #7e1f21;
  --gold: #d1a552;
  --shadow: 0 24px 70px rgba(24, 16, 8, 0.18);
  --border: rgba(38, 26, 17, 0.1);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "URW Palladio L", serif;
  --sans: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100svh;
  font-family: var(--sans);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 250, 238, 0.92), rgba(245, 235, 214, 0.98)),
    url("./images/flag.png") center top / cover no-repeat fixed;
}

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

a {
  color: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto auto 8% -8%;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.page-shell::before {
  background: var(--green);
}

.page-shell::after {
  inset: 18% -10% auto auto;
  background: var(--red);
}

.hero,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 100svh;
  padding: 2rem clamp(1.2rem, 3vw, 2.5rem) 3rem;
  display: grid;
  place-items: center;
}

.hero__content {
  position: relative;
  width: min(1100px, 100%);
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  background:
    linear-gradient(140deg, rgba(255, 250, 242, 0.92), rgba(255, 244, 225, 0.85)),
    rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
  animation: rise-in 900ms ease-out both;
}

.hero__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 121, 79, 0.08), transparent 30%, transparent 70%, rgba(181, 42, 43, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 35%);
  pointer-events: none;
}

.hero__eyebrow {
  margin: 0 0 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(30, 24, 18, 0.74);
}

.hero__logo {
  width: clamp(150px, 18vw, 220px);
  margin-bottom: 1.35rem;
  animation: logo-float 5.8s ease-in-out infinite;
}

.hero__copy {
  max-width: 46rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.95);
  border: 1px solid rgba(19, 121, 79, 0.2);
  box-shadow: 0 10px 24px rgba(41, 28, 16, 0.08);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero h1,
.section h2,
.feature-card strong,
.info-card h3,
.updates__item h3 {
  font-family: var(--serif);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 2.7rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero__name {
  display: inline-block;
  color: var(--green);
  text-shadow: 0 2px 10px rgba(30, 24, 18, 0.06);
}

.hero__lede {
  margin: 1.35rem 0 0;
  max-width: 38rem;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.7;
  color: rgba(30, 24, 18, 0.82);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #fff8f1;
  box-shadow: 0 14px 30px rgba(19, 121, 79, 0.22);
}

.button--secondary {
  border: 1px solid rgba(30, 24, 18, 0.16);
  background: rgba(255, 250, 244, 0.72);
}

.button--hotel {
  width: fit-content;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff8f1;
  box-shadow: 0 14px 30px rgba(181, 42, 43, 0.22);
}

.hero__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.detail-card {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 252, 245, 0.78);
  border: 1px solid rgba(30, 24, 18, 0.08);
  box-shadow: 0 12px 30px rgba(33, 23, 13, 0.07);
}

.detail-card__label {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(30, 24, 18, 0.58);
}

.detail-card__value {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.hotel-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1.15rem;
  border: 1px solid rgba(181, 42, 43, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 252, 245, 0.88), rgba(255, 240, 226, 0.78)),
    rgba(255, 252, 245, 0.78);
  box-shadow: 0 16px 34px rgba(33, 23, 13, 0.08);
}

.hotel-block__copy {
  max-width: 40rem;
}

.hotel-block__eyebrow {
  margin: 0 0 0.35rem;
  color: var(--red-deep);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.hotel-block h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  line-height: 1.05;
}

.hotel-block p {
  margin: 0.65rem 0 0;
  color: rgba(30, 24, 18, 0.82);
  line-height: 1.65;
}

.reservation-accordion {
  grid-column: 1 / -1;
  border-radius: 18px;
  background: rgba(255, 252, 246, 0.7);
  border: 1px solid rgba(30, 24, 18, 0.08);
  overflow: hidden;
}

.reservation-accordion summary {
  position: relative;
  padding: 1rem 3rem 1rem 1.1rem;
  cursor: pointer;
  color: var(--green-deep);
  font-weight: 800;
  list-style: none;
}

.reservation-accordion summary::-webkit-details-marker {
  display: none;
}

.reservation-accordion summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.1rem;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(19, 121, 79, 0.11);
  transform: translateY(-50%);
}

.reservation-accordion[open] summary::after {
  content: "-";
}

.reservation-accordion ol {
  margin: 0;
  padding: 0 1.25rem 1.1rem 2.45rem;
  color: rgba(30, 24, 18, 0.82);
  line-height: 1.75;
}

.reservation-accordion li + li {
  margin-top: 0.2rem;
}

.ticket-block {
  margin-top: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 24px;
  border: 1px solid rgba(19, 121, 79, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 252, 245, 0.86), rgba(239, 248, 241, 0.78)),
    rgba(255, 252, 245, 0.78);
  box-shadow: 0 16px 34px rgba(33, 23, 13, 0.08);
}

.ticket-block__eyebrow {
  margin: 0 0 0.35rem;
  color: var(--green-deep);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.ticket-block h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.1;
}

.hero__glow {
  position: absolute;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  filter: blur(35px);
  opacity: 0.24;
  pointer-events: none;
}

.hero__glow--green {
  top: 8%;
  left: 4%;
  background: rgba(19, 121, 79, 0.7);
}

.hero__glow--red {
  right: 2%;
  bottom: 8%;
  background: rgba(181, 42, 43, 0.62);
}

.section {
  width: min(1100px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: clamp(1rem, 2vw, 1.4rem) 0 5rem;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}

.section-heading {
  max-width: 42rem;
}

.section-heading__kicker {
  margin: 0 0 0.8rem;
  color: var(--red-deep);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 1.05;
}

.intro__panel,
.feature-card,
.updates__item,
.info-card {
  border: 1px solid var(--border);
  background: rgba(255, 250, 241, 0.8);
  box-shadow: 0 16px 36px rgba(32, 23, 14, 0.08);
}

.intro__panel {
  padding: 1.4rem 1.5rem;
  border-radius: 24px;
}

.intro__panel p {
  margin: 0;
  line-height: 1.75;
}

.intro__panel p + p {
  margin-top: 1rem;
}

.snapshot-grid,
.updates__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.info-card,
.updates__item {
  padding: 1.35rem;
  border-radius: 24px;
}

.info-card__pill {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(19, 121, 79, 0.1);
  color: var(--green-deep);
  font-size: 0.85rem;
  font-weight: 700;
}

.info-card h3,
.updates__item h3 {
  margin: 0 0 0.7rem;
  font-size: 1.7rem;
}

.info-card p,
.feature-card p,
.updates__item p {
  margin: 0;
  line-height: 1.7;
  color: rgba(30, 24, 18, 0.82);
}

.section--feature {
  padding-top: 0;
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.2rem;
  padding: 1.5rem;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 249, 239, 0.9), rgba(255, 243, 221, 0.82)),
    rgba(255, 250, 241, 0.8);
}

.feature-card__copy h2 {
  margin-bottom: 0.85rem;
}

.feature-card__list {
  display: grid;
  gap: 0.9rem;
}

.feature-card__list div {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 252, 246, 0.74);
  border: 1px solid rgba(30, 24, 18, 0.08);
}

.feature-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.35rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  width: min(1100px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 0 0 2.5rem;
  color: rgba(30, 24, 18, 0.7);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logo-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 1.25rem;
  }

  .hero__details,
  .snapshot-grid,
  .updates__grid,
  .section--split,
  .hotel-block,
  .feature-card {
    grid-template-columns: 1fr;
  }

  .button--hotel {
    width: 100%;
  }
}

@media (max-width: 640px) {
  body {
    background:
      linear-gradient(180deg, rgba(255, 250, 238, 0.92), rgba(245, 235, 214, 0.98)),
      url("./images/flag90.png") center top / cover no-repeat fixed;
  }

  .hero__content {
    border-radius: 26px;
    padding: 1.25rem;
  }

  .hero h1 {
    line-height: 1.02;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
