:root {
  --forest: #1f3a2e;
  --forest-deep: #162a21;
  --beige: #f4ecdf;
  --beige-soft: #f8f3ea;
  --slate: #5e6a67;
  --mist: #dfe7e3;
  --white: #ffffff;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --shadow-soft: 0 12px 36px rgba(14, 29, 23, 0.14);
  --shadow-fab: 0 10px 24px rgba(11, 23, 19, 0.24);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--forest-deep);
  background: linear-gradient(180deg, var(--beige-soft) 0%, var(--beige) 100%);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 28px;
}

.glass-nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  background: rgba(248, 243, 234, 0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow-soft);
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-link {
  position: relative;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  color: var(--slate);
  transition: 0.24s ease;
}

.nav-link:hover {
  color: var(--forest);
  background: rgba(31, 58, 46, 0.08);
}

.nav-link.active {
  color: var(--forest);
  background: rgba(31, 58, 46, 0.12);
}

.nav-link.active::after {
  content: "👣";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.95rem;
  animation: footprint 1.6s ease-in-out infinite;
}

@keyframes footprint {
  0%,
  100% {
    transform: translateX(-56%) translateY(0) rotate(-8deg);
    opacity: 0.55;
  }
  50% {
    transform: translateX(-44%) translateY(-3px) rotate(8deg);
    opacity: 1;
  }
}

.page {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 14px 0 120px;
}

.hero {
  min-height: 88vh;
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 72px);
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 25, 20, 0.06) 10%, rgba(15, 28, 22, 0.62) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: var(--white);
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.1;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 12px;
}

p {
  margin: 0;
}

.hero-copy {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 30px;
}

.fab-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  border: 0;
  font: inherit;
  cursor: pointer;
  box-shadow: var(--shadow-fab);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.fab.primary {
  background: var(--forest);
  color: var(--white);
}

.fab.secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--forest);
}

.fab:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 14px 30px rgba(11, 23, 19, 0.3);
}

.section {
  margin-top: clamp(48px, 9vw, 100px);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-muted {
  color: var(--slate);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.bento-item {
  border-radius: var(--radius-xl);
  min-height: 210px;
  padding: 26px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.bento-item.image {
  padding: 0;
}

.bento-item.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-item.wide {
  grid-column: span 7;
}

.bento-item.tall {
  grid-column: span 5;
  min-height: 440px;
}

.bento-item.half {
  grid-column: span 6;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.route-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.route-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.route-body {
  padding: 18px 18px 22px;
}

.route-meta {
  color: var(--slate);
  font-size: 0.95rem;
  margin-top: 6px;
}

.route-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--forest);
  font-weight: 600;
}

.route-text-card {
  min-height: 180px;
}

.logo-marquee {
  display: flex;
  gap: 18px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.logo-track {
  min-width: max-content;
  display: flex;
  gap: 18px;
  animation: logoSlide 30s linear infinite;
}

.logo-track img {
  width: 180px;
  height: 90px;
  object-fit: contain;
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
}

@keyframes logoSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 18px));
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.form-wrap {
  max-width: 760px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: clamp(24px, 4vw, 44px);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

label {
  display: block;
  color: var(--slate);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #d6ddd9;
  padding: 12px 13px;
  font: inherit;
  background: #fcfcfb;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: 70px;
  color: var(--slate);
}

@media (max-width: 900px) {
  .bento-item.wide,
  .bento-item.tall,
  .bento-item.half {
    grid-column: span 12;
    min-height: 230px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .glass-nav {
    border-radius: 24px;
  }
}
