:root {
  --stone: #f6f1e8;
  --paper: #fffaf2;
  --ink: #1c2724;
  --muted: #65706b;
  --line: rgba(28, 39, 36, 0.14);
  --sea: #1f6f7a;
  --sea-dark: #164f58;
  --coral: #c96748;
  --amber: #dfb347;
  --olive: #67764a;
  --shadow: 0 20px 60px rgba(26, 35, 32, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--stone);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

img,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  transform: translateY(-160%);
  z-index: 20;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  background: rgba(246, 241, 232, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border-radius: 50%;
  background: var(--sea);
  color: #fff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 0.18rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 1.7rem);
  font-size: 0.92rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}

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

.language-switch {
  display: flex;
  gap: 0.25rem;
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 0.42rem 0.68rem;
  cursor: pointer;
  min-width: 2.55rem;
}

.lang-btn.active {
  background: var(--ink);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 25rem);
  align-items: end;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(7rem, 12vw, 10rem) clamp(1rem, 4vw, 4rem) 6rem;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 26, 24, 0.78), rgba(20, 26, 24, 0.44) 46%, rgba(20, 26, 24, 0.18)),
    linear-gradient(0deg, rgba(28, 39, 36, 0.76), transparent 42%);
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 1;
}

.hero-content {
  color: #fff;
  max-width: 58rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(3rem, 9vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 43rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.03rem, 2vw, 1.28rem);
}

.hero-actions,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.75rem;
}

.btn,
.text-link {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0.85rem 1.15rem;
  font-weight: 800;
  text-decoration: none;
}

.btn.primary {
  background: var(--amber);
  color: #251e11;
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-card {
  display: grid;
  gap: 0.9rem;
  align-self: end;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.88);
  box-shadow: var(--shadow);
}

.hero-card div {
  padding: 0.9rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.7);
}

.hero-card span,
.contact-card span,
.source-list span {
  display: block;
  color: var(--muted);
  font-size: 0.83rem;
}

.hero-card strong,
.contact-card strong {
  display: block;
  margin-top: 0.18rem;
  font-size: 1.05rem;
}

.notice-band {
  background: var(--ink);
  color: #fff;
}

.notice-inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0;
  color: rgba(255, 255, 255, 0.84);
}

.notice-inner strong {
  color: var(--amber);
}

.section,
.split-section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.intro-grid,
.contact-section,
.map-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.72fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.intro-copy h2,
.section-heading h2,
.food-copy h2,
.contact-section h2,
.map-copy h2,
.source-section h2 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro-copy p,
.food-copy p,
.contact-section p,
.map-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42rem;
}

.visit-planner {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.visit-planner h3 {
  margin: 0 0 1rem;
  font-size: 1.3rem;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.3rem;
  margin-bottom: 1rem;
  padding: 0.25rem;
  border-radius: 8px;
  background: #eee4d6;
}

.plan-option {
  min-height: 2.65rem;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.plan-option.active {
  background: var(--sea);
  color: #fff;
  font-weight: 800;
}

.visit-planner label {
  display: block;
  margin: 0.85rem 0 0.35rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.visit-planner input,
.visit-planner textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 0.78rem 0.85rem;
}

.planner-output {
  margin-top: 1rem;
  padding: 0.9rem;
  border-radius: 6px;
  background: #edf5f2;
  color: var(--sea-dark);
  font-weight: 700;
}

.section-heading {
  margin-bottom: 2rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.proof-card {
  min-height: 17rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.proof-icon {
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  background: var(--sea);
  box-shadow: 0 0 0 8px rgba(31, 111, 122, 0.14);
}

.proof-icon.warm {
  background: var(--amber);
  box-shadow: 0 0 0 8px rgba(223, 179, 71, 0.17);
}

.proof-icon.coral {
  background: var(--coral);
  box-shadow: 0 0 0 8px rgba(201, 103, 72, 0.15);
}

.proof-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.35rem;
}

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

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.9fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.food-panel {
  min-height: 28rem;
}

.food-panel img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.tag-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0.55rem 0.75rem;
  color: var(--sea-dark);
  font-weight: 800;
}

.contact-cards {
  display: grid;
  gap: 0.75rem;
}

.contact-card {
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 111, 122, 0.45);
}

.contact-card small {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
}

.route-card {
  background: var(--sea);
  color: #fff;
}

.route-card span,
.route-card small {
  color: rgba(255, 255, 255, 0.78);
}

.map-section {
  align-items: stretch;
}

.text-link {
  justify-content: flex-start;
  padding-left: 0;
  color: var(--sea-dark);
}

.map-frame {
  min-height: 25rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 25rem;
  border: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.85rem;
}

.gallery-grid figure {
  position: relative;
  grid-column: span 4;
  min-height: 17rem;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #ddd;
}

.gallery-grid figure:nth-child(1),
.gallery-grid figure:nth-child(6) {
  grid-column: span 6;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.gallery-grid figcaption {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.55rem 0.7rem;
  border-radius: 6px;
  background: rgba(28, 39, 36, 0.78);
  color: #fff;
  font-size: 0.88rem;
}

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

.source-list {
  display: grid;
  gap: 0.7rem;
  max-width: 52rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.source-list li {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.68);
}

.source-list a {
  font-weight: 900;
  color: var(--sea-dark);
}

.site-footer {
  padding: 2.5rem clamp(1rem, 4vw, 4rem) 6rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer p {
  margin: 0.35rem 0;
}

.mobile-quick {
  position: fixed;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 12;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
  padding: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(28, 39, 36, 0.92);
  box-shadow: var(--shadow);
  transform: translateY(140%);
  transition: transform 200ms ease;
}

.mobile-quick a {
  display: grid;
  min-height: 2.8rem;
  place-items: center;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
}

.mobile-quick[data-visible="true"] {
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .intro-grid,
  .contact-section,
  .map-section,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 96vh;
    align-items: end;
    padding-bottom: 3rem;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .hero-card {
    max-width: 28rem;
  }

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

  .proof-card {
    min-height: auto;
  }

  .gallery-grid figure,
  .gallery-grid figure:nth-child(1),
  .gallery-grid figure:nth-child(6) {
    grid-column: span 6;
  }

  .mobile-quick {
    display: grid;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0.65rem 0.75rem;
    gap: 0.75rem;
  }

  .brand-mark {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.85rem;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    display: none;
  }

  .lang-btn {
    min-width: 2.25rem;
    padding: 0.35rem 0.5rem;
  }

  .hero {
    padding: 6.6rem 0.85rem 2rem;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 14vw, 4.5rem);
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .section,
  .split-section {
    width: min(100% - 1.5rem, 1120px);
  }

  .intro-copy h2,
  .section-heading h2,
  .food-copy h2,
  .contact-section h2,
  .map-copy h2,
  .source-section h2 {
    max-width: 11ch;
    font-size: clamp(2rem, 11vw, 3rem);
  }

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

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

  .gallery-grid figure,
  .gallery-grid figure:nth-child(1),
  .gallery-grid figure:nth-child(6) {
    grid-column: span 1;
    min-height: 16rem;
  }
}

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

