:root {
  --bg: #f6f2ed;
  --paper: #ffffff;
  --ink: #233331;
  --muted: #6b7c78;
  --primary: #5d918c;
  --primary-dark: #2f5e5a;
  --sage: #dfeae5;
  --sand: #dac7aa;
  --rose: #f1dfd8;
  --line: rgba(35, 51, 49, 0.10);
  --shadow: 0 24px 70px rgba(35, 51, 49, 0.14);
  --radius: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(218, 199, 170, 0.48), transparent 28%),
    radial-gradient(circle at 86% 5%, rgba(93, 145, 140, 0.22), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(241, 223, 216, 0.56), transparent 32%),
    var(--bg);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(35, 51, 49, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 51, 49, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

.hero {
  min-height: 100vh;
  padding: 22px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "";
  width: 380px;
  height: 380px;
  border: 54px solid rgba(93, 145, 140, 0.12);
  border-radius: 50%;
  position: absolute;
  right: -120px;
  bottom: -110px;
}

.navbar {
  width: min(1180px, 100%);
  margin: 0 auto;
  min-height: 76px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 16px 45px rgba(35, 51, 49, 0.10);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-symbol {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 12px 28px rgba(47, 94, 90, 0.25);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 14px;
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--sage);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--sage);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 10px;
}

.hero-grid {
  width: min(1180px, 100%);
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.hero-copy,
.hero-panel,
.location-card,
.map-illustration,
.info-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-copy {
  padding: clamp(30px, 6vw, 66px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 590px;
  position: relative;
}

.hero-copy::before {
  content: "";
  width: 140px;
  height: 140px;
  position: absolute;
  top: 34px;
  right: 34px;
  background: linear-gradient(135deg, rgba(93, 145, 140, 0.20), rgba(218, 199, 170, 0.38));
  border-radius: 34% 66% 64% 36%;
}

.label {
  margin: 0 0 12px;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 900;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.9rem, 8vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.lead {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 16px 30px rgba(47, 94, 90, 0.26);
}

.button.ghost {
  color: var(--primary-dark);
  background: #fff;
  border: 1px solid var(--line);
}

.hero-panel {
  min-height: 590px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.panel-decoration {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(93, 145, 140, 0.82), rgba(47, 94, 90, 0.92)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.4), transparent 22%);
}

.panel-decoration::before,
.panel-decoration::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.panel-decoration::before {
  width: 280px;
  height: 280px;
  top: -70px;
  right: -80px;
  border: 42px solid rgba(255, 255, 255, 0.16);
}

.panel-decoration::after {
  width: 170px;
  height: 170px;
  left: -34px;
  bottom: 90px;
  background: rgba(218, 199, 170, 0.22);
}

.mini-title,
.data-row {
  position: relative;
  z-index: 1;
}

.mini-title {
  align-self: flex-start;
  margin: 0 auto auto 0;
  padding: 8px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.data-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
}

.data-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  background: #fff;
  border-radius: 16px;
  font-weight: 900;
}

.data-row p {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.data-row strong {
  display: block;
  line-height: 1.35;
}

.section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 86px 0;
  position: relative;
  z-index: 1;
}

.section-title {
  max-width: 840px;
  margin: 0 auto 28px;
  text-align: center;
}

.schedule-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  padding: clamp(28px, 5vw, 60px);
  border-radius: 38px;
  background: linear-gradient(135deg, #fff, #e9f2ef);
  box-shadow: var(--shadow);
}

.schedule-card > div:not(.divider) {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.card-label {
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.schedule-card p {
  margin: 0;
  color: var(--primary-dark);
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.divider {
  width: 1px;
  height: 160px;
  background: var(--line);
}

.location-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 26px;
  align-items: stretch;
}

.location-card {
  padding: clamp(28px, 5vw, 52px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.address {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1.15rem;
}

.map-illustration {
  min-height: 430px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 22px;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(47, 94, 90, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(47, 94, 90, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, #fbf8f3, #e1ede8);
  background-size: 36px 36px;
}

.route {
  position: absolute;
  height: 16px;
  border-radius: 999px;
  background: rgba(218, 199, 170, 0.92);
}

.route-one {
  width: 75%;
  left: -8%;
  top: 31%;
  transform: rotate(-11deg);
}

.route-two {
  width: 82%;
  right: -12%;
  bottom: 28%;
  transform: rotate(16deg);
}

.pin {
  width: 56px;
  height: 56px;
  position: absolute;
  left: 52%;
  top: 45%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 18px 30px rgba(47, 94, 90, 0.32);
}

.pin::after {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
}

.map-address {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 42px;
  padding: 20px;
  display: grid;
  gap: 4px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(35, 51, 49, 0.10);
  backdrop-filter: blur(12px);
}

.map-address span {
  color: var(--muted);
}

.info-section {
  padding-top: 30px;
}

.info-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  text-align: center;
}

.info-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}

.info-list div {
  padding: 22px;
  border-radius: 24px;
  background: var(--sage);
}

.info-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.info-list strong {
  display: block;
  line-height: 1.4;
}

.footer {
  width: min(1180px, calc(100% - 44px));
  margin: 24px auto 22px;
  padding: 26px;
  text-align: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 28px;
}

.footer p {
  margin: 4px 0;
}

.footer strong {
  color: var(--ink);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
  }

  .navbar {
    border-radius: 26px;
  }

  .brand span:last-child {
    max-width: 230px;
    line-height: 1.12;
  }

  .menu-button {
    display: block;
    flex: 0 0 auto;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 12px;
    right: 12px;
    top: 78px;
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 18px 48px rgba(35, 51, 49, 0.15);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    text-align: center;
  }

  .hero-grid,
  .location-section {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-panel {
    min-height: auto;
  }

  .hero-panel {
    min-height: 520px;
  }

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

  .divider {
    width: 100%;
    height: 1px;
  }

  .info-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 12px;
  }

  .navbar {
    padding: 10px;
  }

  .brand-symbol {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 15px;
  }

  .brand span:last-child {
    max-width: 175px;
    font-size: 0.92rem;
  }

  .hero-grid {
    margin-top: 36px;
    gap: 18px;
  }

  .hero-copy,
  .hero-panel,
  .location-card,
  .map-illustration,
  .info-card {
    border-radius: 24px;
  }

  .hero-copy,
  .location-card,
  .info-card {
    padding: 24px;
  }

  h1 {
    font-size: clamp(2.65rem, 16vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .actions,
  .actions .button,
  .location-card .button {
    width: 100%;
  }

  .hero-panel {
    min-height: auto;
    padding: 20px;
  }

  .data-row {
    grid-template-columns: 1fr;
  }

  .data-icon {
    width: 42px;
    height: 42px;
  }

  .section {
    width: min(100% - 24px, 1180px);
    padding: 58px 0;
  }

  .schedule-card {
    padding: 18px;
    border-radius: 24px;
  }

  .schedule-card > div:not(.divider) {
    min-height: 140px;
    padding: 20px;
    border-radius: 20px;
  }

  .schedule-card p {
    font-size: clamp(2.5rem, 16vw, 4rem);
  }

  .map-illustration {
    min-height: 380px;
    padding: 14px;
  }

  .map-grid {
    inset: 14px;
    border-radius: 20px;
  }

  .map-address {
    left: 26px;
    right: 26px;
    bottom: 26px;
  }

  .footer {
    width: min(100% - 24px, 1180px);
    border-radius: 22px;
  }
}
