:root {
  --bg: #f4efe3;
  --card: #fffdf7;
  --card-alt: #efe0cc;
  --text: #2f1b12;
  --muted: #7a5f4a;
  --accent: #b35a2a;
  --accent-strong: #8c3f1c;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', 'Georgia', serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

.hero {
  position: relative;
  min-height: 65vh;
  background: radial-gradient(circle at 25% 25%, #fff5e8 0%, #f2deca 45%, #e7cfb6 100%);
  display: flex;
  align-items: center;
  padding: 4rem 1.5rem;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(179, 90, 42, 0.3), rgba(247, 240, 227, 0.05));
}

.hero__inner {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
  z-index: 1;
}

.hero__content {
  position: relative;
  width: min(640px, 100%);
  margin: 0 auto;
  z-index: 1;
  text-align: center;
}

.hero__logo {
  width: 160px;
  max-width: 70%;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.35));
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
}

.hero p {
  margin-bottom: 1.5rem;
  color: #4b3526;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #111;
}

.btn.ghost {
  border: 1px solid rgba(47, 27, 18, 0.25);
}

.btn:hover {
  transform: translateY(-2px);
}

main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 3rem 1.5rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

section {
  background: var(--card);
  border: 1px solid rgba(47, 27, 18, 0.08);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 30px 60px rgba(105, 73, 48, 0.08);
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
}

.status {
  position: relative;
}

.status__badge {
  position: absolute;
  top: -20px;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--accent);
  color: #fff;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status__info {
  position: relative;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.status__info-icon {
  font-size: 0.8rem;
  font-weight: 600;
}

.status__tooltip-text {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #2f1b12;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  width: max(200px, 22vw);
  max-width: 260px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  text-align: left;
}

.status__info:hover .status__tooltip-text,
.status__info:focus-visible .status__tooltip-text {
  opacity: 1;
  transform: translateY(0);
}

.status__tooltip-text::after {
  content: '';
  position: absolute;
  bottom: 100%;
  right: 12px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #2f1b12 transparent;
}

.status__details {
  display: none;
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.status__badge.ok {
  background: #72b77b;
}

.status__badge.alert {
  background: #c4492f;
}

.status__badge.maintenance {
  background: #f5b84d;
  color: #4c2b00;
}

.status__intro {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.updates {
  display: grid;
  gap: 1rem;
}

.status .updates + .updates {
  margin-top: 1rem;
}

.update-card {
  padding: 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(47, 27, 18, 0.08);
  background: #f8efe2;
}

.update-card.alert {
  background: rgba(196, 73, 47, 0.18);
  border-color: rgba(196, 73, 47, 0.5);
}

.update-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.update-card time {
  font-size: 0.9rem;
  color: var(--muted);
}

.update-card p {
  margin-top: 0.75rem;
  color: var(--text);
}

.update-card p strong {
  font-weight: 600;
}

.concept {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.concept__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 0.45fr);
  gap: 1.5rem;
  align-items: start;
}

.concept__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.concept__figure {
  justify-self: end;
  width: min(240px, 40vw);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  border: 1px solid rgba(47, 27, 18, 0.08);
  padding: 0.75rem;
  box-shadow: 0 18px 32px rgba(105, 73, 48, 0.18);
  text-align: center;
}

.concept__figure img {
  border-radius: 12px;
  width: 100%;
}

.concept__figure figcaption {
  margin-top: 0.45rem;
  font-size: 0.85rem;
  color: rgba(47, 27, 18, 0.85);
}

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 100%;
  margin-top: 0.65rem;
}

.pill-list li {
  background: rgba(47, 27, 18, 0.08);
  padding: 0.45rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  line-height: 1.1;
  white-space: nowrap;
  flex: 0 0 auto;
  height: 36px;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 860px) {
  .concept__body {
    grid-template-columns: minmax(0, 1fr);
  }
  .concept__figure {
    width: 100%;
    justify-self: flex-start;
  }
}

.price-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.price-card {
  border-radius: 18px;
  padding: 1rem 1.25rem;
  background: var(--card-alt);
  border: 1px solid rgba(47, 27, 18, 0.1);
}

.price-card strong {
  font-size: 1.1rem;
}

.price-card span {
  display: block;
  color: var(--muted);
  margin-top: 0.3rem;
}

.price-card .price {
  margin-top: 0.75rem;
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 600;
}

.pricing__note {
  margin-top: 1.5rem;
  color: var(--muted);
}

.visit {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.visit__top {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.visit__info {
  flex: 1 1 320px;
}

.info-list {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.5rem;
}

.scene-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(47, 27, 18, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 40px rgba(105, 73, 48, 0.12);
}

.scene-card img {
  width: 100%;
  display: block;
}

.scene-card figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: #5c4739;
}

.map-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 360px;
  aspect-ratio: 5 / 3;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(47, 27, 18, 0.12);
  box-shadow: 0 30px 60px rgba(105, 73, 48, 0.15);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  display: block;
}

footer {
  text-align: center;
  padding: 2rem 1rem 3rem;
  color: var(--muted);
}

.operator {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 0.4rem;
}

@media (max-width: 640px) {
  section {
    padding: 1.5rem;
  }

  .status__badge {
    position: static;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .status__info {
    width: 100%;
    height: auto;
    margin-top: 0.4rem;
    border-radius: 10px;
    padding: 0;
    justify-content: flex-start;
    background: none;
    color: var(--text);
    display: block;
  }

  .hero {
    min-height: 75vh;
    padding: 3rem 1rem;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__content {
    text-align: left;
  }

  .hero__logo {
    margin-left: 0;
  }

  .visit {
    gap: 1rem;
  }

  .visit__top {
    flex-direction: column;
  }

  .map-card {
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }

  .cta-row {
    justify-content: flex-start;
  }

  .status__tooltip-text {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 0.2rem;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    text-align: left;
    background: rgba(47, 27, 18, 0.08);
    color: var(--text);
  }

  .status__tooltip-text::after {
    display: none;
  }

  .status__info-icon {
    display: none;
  }

  .status__details {
    display: block;
  }

  .status__info {
    display: none;
  }
}
}
