:root {
  color-scheme: light;
  --ink: #18201d;
  --muted: #5d6864;
  --paper: #f7f2e8;
  --paper-strong: #fffaf0;
  --line: rgba(24, 32, 29, 0.14);
  --forest: #22483d;
  --moss: #7e9a62;
  --brass: #b7853d;
  --clay: #b45d47;
  --sky: #5a879e;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(19, 28, 25, 0.16);
  font-family: "Inter", "Noto Sans SC", "Noto Sans JP", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--paper-strong);
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(16, 20, 18, 0.68), rgba(16, 20, 18, 0));
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.5);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.12);
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a {
  opacity: 0.82;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
}

.language-switcher {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(38px, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 250, 240, 0.42);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.14);
  backdrop-filter: blur(18px);
}

.language-switcher button {
  min-width: 38px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  color: var(--paper-strong);
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--paper-strong);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(14, 16, 14, 0.78) 0%, rgba(25, 25, 21, 0.54) 38%, rgba(24, 24, 20, 0.16) 72%),
    linear-gradient(0deg, rgba(18, 23, 20, 0.42) 0%, rgba(18, 23, 20, 0.02) 42%);
}

.hero-content {
  align-self: end;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 14vh;
  color: var(--paper-strong);
}

.eyebrow,
.section-kicker,
.destination-meta {
  margin: 0;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 20px;
  font-size: clamp(3rem, 7.4vw, 7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--paper-strong);
}

.button-secondary {
  border: 1px solid rgba(255, 250, 240, 0.46);
  color: var(--paper-strong);
  background: rgba(255, 250, 240, 0.1);
  backdrop-filter: blur(16px);
}

.profile-band,
.destinations {
  background: var(--paper);
}

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

.profile-band {
  padding: 86px 0 42px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 1.22fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.profile-card {
  min-height: 260px;
  padding: 28px;
  background: rgba(255, 250, 240, 0.74);
}

.card-index {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
}

.profile-card h3 {
  margin: 54px 0 12px;
  color: var(--forest);
  font-size: 1.25rem;
}

.profile-card p {
  margin: 0;
  color: var(--muted);
}

.destinations {
  padding: 42px 0 86px;
}

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

.destination-link {
  display: grid;
  min-height: 230px;
  align-content: end;
  gap: 10px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(34, 72, 61, 0.08), rgba(90, 135, 158, 0.06)),
    var(--paper-strong);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.destination-link:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(180, 93, 71, 0.08), rgba(126, 154, 98, 0.08)),
    var(--paper-strong);
}

.destination-link:hover,
.destination-link:focus-visible {
  box-shadow: 0 20px 52px rgba(19, 28, 25, 0.12);
}

.destination-link strong {
  color: var(--forest);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.1;
}

.destination-link span:last-child {
  max-width: 460px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--paper-strong);
  font-size: 0.92rem;
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 14px 18px;
  }

  .nav-links {
    grid-column: 1 / -1;
    order: 3;
    gap: 16px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(13, 17, 15, 0.84), rgba(13, 17, 15, 0.42)),
      linear-gradient(0deg, rgba(18, 23, 20, 0.58), rgba(18, 23, 20, 0.08));
  }

  .hero-content {
    padding-top: 160px;
    padding-bottom: 10vh;
  }

  .section-heading,
  .profile-grid,
  .destination-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 12px;
  }

  .profile-card {
    min-height: 210px;
  }
}

@media (max-width: 520px) {
  .nav-links {
    display: none;
  }

  .brand span:last-child {
    max-width: 42vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .language-switcher {
    grid-template-columns: repeat(3, 34px);
  }

  .language-switcher button {
    min-width: 34px;
  }

  .hero-content,
  .section-inner {
    width: min(100% - 28px, 1120px);
  }

  .hero h1 {
    font-size: 3rem;
  }

  .button {
    width: 100%;
  }

  .profile-band {
    padding-top: 64px;
  }

  .profile-card,
  .destination-link {
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
