:root {
  color-scheme: light;
  --ink: #17211e;
  --muted: #60706b;
  --line: #d7e4de;
  --surface: #ffffff;
  --surface-soft: #f4f7f4;
  --surface-tint: #e8f4ef;
  --green: #0d7c66;
  --green-dark: #075642;
  --red: #b73d35;
  --gold: #d6a642;
  --blue: #256d8f;
  --shadow: 0 20px 60px rgb(22 44 36 / 12%);
  --shadow-soft: 0 10px 28px rgb(22 44 36 / 8%);
  --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(--surface-soft);
  color: var(--ink);
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgb(215 228 222 / 82%);
  background: rgb(255 255 255 / 88%);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 4px 14px rgb(22 44 36 / 18%);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 0.93rem;
}

.site-nav a:hover {
  background: var(--surface-tint);
  color: var(--green-dark);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-content: end;
  gap: 28px;
  padding: clamp(26px, 6vw, 76px);
  overflow: hidden;
  color: white;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgb(6 34 26 / 84%), rgb(6 34 26 / 42) 58%, rgb(6 34 26 / 76)),
    url("https://images.unsplash.com/photo-1539650116574-75c0c6d73f6e?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(transparent, rgb(6 34 26 / 86%));
}

.hero-content {
  max-width: 760px;
  padding-bottom: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8fe4ca;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5.8vw, 5.35rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-content p {
  max-width: 620px;
  color: rgb(255 255 255 / 86%);
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-actions,
.filter-panel,
.planner-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.primary-button {
  background: var(--green);
  color: white;
  box-shadow: var(--shadow-soft);
}

.primary-button:hover {
  background: var(--green-dark);
}

.secondary-button {
  border-color: rgb(255 255 255 / 42%);
  background: rgb(255 255 255 / 12%);
  color: white;
}

.hero-panel {
  position: relative;
  width: 100%;
  padding: clamp(16px, 2.4vw, 24px);
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgb(255 255 255 / 22%), rgb(255 255 255 / 8%)),
    rgb(5 46 36 / 62%);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgb(0 0 0 / 28%);
}

.countdown-card {
  display: grid;
  grid-template-columns: 150px minmax(220px, 1fr) minmax(360px, 0.9fr);
  gap: clamp(16px, 2.6vw, 28px);
  align-items: center;
  overflow: hidden;
}

.countdown-card::before {
  content: "";
  position: absolute;
  inset: -80px -90px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgb(214 166 66 / 22%);
  pointer-events: none;
}

.countdown-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgb(5 46 36 / 96%) 0 53%, transparent 54%),
    conic-gradient(var(--gold) var(--countdown-progress, 0%), rgb(255 255 255 / 18%) 0);
  box-shadow:
    inset 0 0 0 1px rgb(255 255 255 / 18%),
    0 14px 32px rgb(0 0 0 / 18%);
}

.countdown-orbit::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 50%;
}

.countdown-orbit span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.countdown-orbit strong,
.countdown-orbit small {
  position: relative;
  z-index: 1;
}

.countdown-orbit strong {
  margin: 0;
  font-size: 2.8rem;
  line-height: 0.95;
}

.countdown-orbit small {
  color: rgb(255 255 255 / 70%);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.countdown-copy {
  position: relative;
}

.countdown-kicker,
.countdown-copy p,
.countdown-grid span {
  display: block;
  color: rgb(255 255 255 / 76%);
}

.countdown-kicker {
  margin-bottom: 5px;
  color: #8fe4ca;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown-copy h2 {
  margin-bottom: 6px;
  font-size: clamp(1.45rem, 3vw, 2.6rem);
  line-height: 1.12;
}

.countdown-copy p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.countdown-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.countdown-grid div {
  min-height: 104px;
  padding: 18px 10px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 12%);
  text-align: center;
}

.countdown-grid strong {
  display: block;
  color: white;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.countdown-grid span {
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-grid,
.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  transform: translateY(-36px);
}

.quick-grid article,
.stadium-card,
.essentials-grid article,
.directory-list article,
.hermes-feed article,
.featured-post,
.blog-card,
.planner-result,
.city-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.quick-grid article {
  padding: 20px;
}

.tool-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background: var(--surface-tint);
  color: var(--green-dark);
  font-weight: 900;
}

.quick-grid h2 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.quick-grid p,
.section-heading p,
.stadium-card p,
.city-panel p,
.essentials-grid li,
.directory-list p,
.planner-result p,
.site-footer {
  color: var(--muted);
  line-height: 1.62;
}

.section {
  padding: 46px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading.compact {
  max-width: 560px;
}

.section-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

.dashboard-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.dashboard-strip div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.dashboard-strip div:last-child {
  border-right: 0;
}

.dashboard-strip strong {
  display: block;
  margin-bottom: 4px;
  color: var(--red);
  font-size: 2.35rem;
  line-height: 1;
}

.dashboard-strip span {
  color: var(--muted);
}

.split-section,
.travel-section,
.planner-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: start;
}

.filter-panel {
  justify-content: flex-end;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select {
  min-height: 44px;
  min-width: 210px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  padding: 0 12px;
}

.stadium-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stadium-card {
  padding: 18px;
}

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.status-pill {
  align-self: start;
  padding: 6px 9px;
  border-radius: 999px;
  background: #f4eee0;
  color: #7c5711;
  font-size: 0.76rem;
  font-weight: 900;
}

.progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7ece9;
}

.progress-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.meta-row span,
.seo-tags span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.save-button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  cursor: pointer;
}

.save-button.is-saved {
  border-color: rgb(13 124 102 / 45%);
  background: var(--surface-tint);
  color: var(--green-dark);
}

.city-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.city-tabs button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--muted);
  cursor: pointer;
}

.hermes-section {
  padding-top: 10px;
}

.hermes-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.filter-chip {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.filter-chip.is-active {
  border-color: rgb(13 124 102 / 42%);
  background: var(--surface-tint);
  color: var(--green-dark);
}

.hermes-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hermes-feed article {
  padding: 18px;
}

.hermes-feed h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.hermes-feed a:hover h3 {
  color: var(--green-dark);
}

.source-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
}

.source-line span {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--surface-soft);
}

.blog-section {
  border-top: 1px solid var(--line);
}

.blog-controls {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: 14px;
  align-items: end;
  margin-bottom: 16px;
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.25fr);
  gap: 14px;
}

.featured-post {
  overflow: hidden;
}

.featured-post-inner {
  display: grid;
  min-height: 100%;
}

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

.blog-card {
  overflow: hidden;
}

.blog-image {
  min-height: 190px;
  background-position: center;
  background-size: cover;
}

.featured-post .blog-image {
  min-height: 330px;
}

.blog-content {
  padding: 18px;
}

.blog-content h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.featured-post .blog-content h3 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.text-button {
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green-dark);
  font-weight: 900;
  cursor: pointer;
}

.article-dialog {
  width: min(780px, calc(100% - 28px));
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
}

.article-dialog::backdrop {
  background: rgb(6 34 26 / 62%);
  backdrop-filter: blur(5px);
}

.article-dialog article {
  position: relative;
  padding: clamp(22px, 4vw, 42px);
  background: white;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  color: var(--ink);
  cursor: pointer;
}

.article-dialog h2 {
  margin-right: 38px;
  margin-bottom: 10px;
  font-size: clamp(1.65rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.article-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--surface-tint);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.article-body p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.78;
}

.city-tabs button[aria-selected="true"] {
  border-color: rgb(13 124 102 / 42%);
  background: var(--surface-tint);
  color: var(--green-dark);
  font-weight: 800;
}

.city-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
  padding: 22px;
}

.city-photo {
  min-height: 260px;
  border-radius: var(--radius);
  background-position: center;
  background-size: cover;
}

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

.city-columns h3 {
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.city-columns ul,
.essentials-grid ul {
  margin: 0;
  padding-left: 18px;
}

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

.essentials-grid article {
  padding: 18px;
}

.map-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 24px;
}

.directory-shell {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 14px;
}

.map-board {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(13 124 102 / 14%) 1px, transparent 1px),
    linear-gradient(rgb(13 124 102 / 12%) 1px, transparent 1px),
    linear-gradient(135deg, #f9fbf8, #e4f1ec);
  background-size: 46px 46px;
}

.map-board::before {
  content: "";
  position: absolute;
  inset: 23% 0 auto;
  height: 28px;
  transform: rotate(-14deg);
  background: rgb(37 109 143 / 18%);
}

.pin {
  position: absolute;
  padding: 8px 10px;
  border-radius: 999px;
  background: white;
  box-shadow: var(--shadow-soft);
  font-size: 0.82rem;
  font-weight: 900;
}

.pin-stadium {
  left: 44%;
  top: 44%;
  color: var(--red);
}

.pin-hotel {
  left: 20%;
  top: 25%;
  color: var(--green);
}

.pin-food {
  right: 16%;
  top: 28%;
  color: #8a5e0f;
}

.pin-care {
  right: 18%;
  bottom: 20%;
  color: var(--blue);
}

.directory-list {
  display: grid;
  gap: 10px;
}

.directory-list article {
  padding: 14px;
}

.directory-list h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.planner-form {
  justify-content: flex-start;
}

.planner-result {
  grid-column: 2;
  padding: 20px;
  min-height: 168px;
}

.planner-result ul {
  margin-bottom: 0;
}

.seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(18px, 4vw, 52px);
  border-top: 1px solid var(--line);
  background: white;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .quick-grid,
  .dashboard-strip,
  .stadium-grid,
  .hermes-feed,
  .blog-controls,
  .blog-layout,
  .blog-grid,
  .split-section,
  .travel-section,
  .map-section,
  .directory-shell,
  .planner-section,
  .city-panel,
  .essentials-grid {
    grid-template-columns: 1fr;
  }

  .countdown-card {
    grid-template-columns: 150px 1fr;
  }

  .countdown-grid {
    grid-column: 1 / -1;
  }

  .essentials-grid,
  .planner-result {
    grid-column: auto;
  }

  .dashboard-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dashboard-strip div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .brand small {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: 720px;
    padding: 24px 18px;
  }

  .hero-panel {
    margin-top: 20px;
  }

  .countdown-card {
    grid-template-columns: 1fr;
  }

  .countdown-orbit {
    justify-self: center;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-grid {
    transform: none;
    margin-top: 18px;
  }

  .city-columns,
  .essentials-grid {
    grid-template-columns: 1fr;
  }

  input,
  select,
  .planner-form button {
    width: 100%;
    min-width: 0;
  }
}
