
:root {
  --bg: #f5f0e7;
  --surface: #faf6ef;
  --surface-2: #efe6d8;
  --text: #2c2721;
  --muted: #675c4d;
  --line: rgba(44, 39, 33, 0.12);
  --green: #46553e;
  --green-2: #5c6d52;
  --brown: #8c6848;
  --white: #ffffff;
  --shadow-soft: 0 18px 50px rgba(37, 32, 26, 0.08);
  --shadow-strong: 0 24px 60px rgba(25, 22, 18, 0.18);
  --radius: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --header-height: 78px;
  --container: 1220px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #f8f5ef 0%, var(--bg) 100%);
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
figure { margin: 0; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -44px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--green);
  color: var(--white);
  border-radius: 10px;
}
.skip-link:focus { top: 12px; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(248, 245, 239, 0.82);
  border-bottom: 1px solid rgba(44, 39, 33, 0.08);
}
.site-header.is-scrolled {
  background: rgba(248, 245, 239, 0.94);
  box-shadow: 0 10px 30px rgba(44, 39, 33, 0.06);
}
.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.brand-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.brand-subtitle {
  margin-top: 4px;
  font-size: 0.84rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-nav a {
  font-size: 0.97rem;
  color: var(--muted);
  transition: color 0.2s ease, opacity 0.2s ease;
}
.site-nav a:hover,
.site-nav a.active { color: var(--green); }
.site-nav .nav-phone {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 16px 35px rgba(70, 85, 62, 0.24);
}
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(70,85,62,0.08);
  border: 1px solid rgba(70,85,62,0.14);
}
.lang-switcher a {
  min-width: 42px;
  padding: 8px 10px;
  border-radius: 999px;
  text-align: center;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 600;
}
.lang-switcher a.is-current {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(70,85,62,0.18);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(70, 85, 62, 0.14);
  background: rgba(255,255,255,0.66);
  border-radius: 12px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--green);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}
.eyebrow:not(.eyebrow-light) {
  border: 1px solid rgba(255,255,255,0.26);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.eyebrow-light {
  color: var(--green);
  background: rgba(70, 85, 62, 0.08);
  border: 1px solid rgba(70, 85, 62, 0.14);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--white);
  color: var(--green);
  box-shadow: 0 18px 40px rgba(17, 18, 14, 0.16);
}
.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
}
.btn-tertiary {
  color: var(--green);
  background: rgba(70, 85, 62, 0.08);
  border-color: rgba(70,85,62,0.16);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #1e211b;
}
.hero-media,
.hero-overlay,
.page-hero-media,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay,
.page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(19, 20, 16, 0.84) 0%, rgba(19, 20, 16, 0.54) 44%, rgba(19, 20, 16, 0.2) 100%),
    linear-gradient(180deg, rgba(19, 20, 16, 0.1) 0%, rgba(19, 20, 16, 0.34) 100%);
}
.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.7fr);
  gap: 40px;
  align-items: end;
  padding: 90px 0 72px;
}
.hero-copy { max-width: 760px; }
.hero-copy h1 {
  margin: 18px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.95rem, 4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: 13ch;
}
.hero-copy p {
  margin: 0;
  max-width: 620px;
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  color: rgba(255,255,255,0.92);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-cards,
.feature-stack {
  display: grid;
  gap: 14px;
}
.feature-panel {
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.feature-panel strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
  color: var(--green);
}
.feature-panel span {
  display: block;
  font-size: 0.95rem;
  color: var(--muted);
}

.page-hero {
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #252019;
}
.page-hero-content { grid-template-columns: 1fr; }
.page-hero h1 {
  margin: 16px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.1vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 13ch;
}
.page-hero p {
  margin: 0;
  max-width: 760px;
  font-size: 1.06rem;
  color: rgba(255,255,255,0.92);
}
.page-hero.page-hero--light .page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(26, 25, 20, 0.72) 0%, rgba(26, 25, 20, 0.44) 44%, rgba(26, 25, 20, 0.18) 100%),
    linear-gradient(180deg, rgba(19, 20, 16, 0.06) 0%, rgba(19, 20, 16, 0.26) 100%);
}

.section { padding: 92px 0; }
.section-head { max-width: 820px; margin-bottom: 34px; }
.section-head.narrow { max-width: 700px; }
.section-head h2,
.section-copy h2,
.info-card h3,
.prose h2 {
  margin: 12px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3.1vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.section-head p,
.section-copy p,
.info-card p,
.prose p,
.prose li {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.02rem;
}
.section-copy p:last-child,
.info-card p:last-child,
.prose p:last-child { margin-bottom: 0; }

.intro-grid,
.story-grid,
.trip-grid,
.visit-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: center;
}
.story-grid { align-items: stretch; }
.trip-grid { grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr); }

.panel,
.review-card,
.info-card,
.route-card,
.quote-card,
.feature-panel,
.prose {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.panel,
.prose { padding: 34px; }
.prose h2:first-child { margin-top: 0; }

.feature-list,
.route-list,
.info-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}
.feature-list li,
.route-list li,
.info-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(44, 39, 33, 0.08);
  color: var(--muted);
}
.feature-list li:last-child,
.route-list li:last-child,
.info-list li:last-child { border-bottom: 0; }
.info-list strong,
.info-list a,
.route-card a,
.info-card a,
.inline-links a,
.prose a {
  color: var(--green);
  font-weight: 600;
}

.media-card {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  background: var(--surface);
}
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-card.tall { min-height: 620px; }
.media-card.medium-card { min-height: 460px; }
.wide-card { min-height: 560px; }
.short-card { min-height: 268px; }
.story-art-card {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: #ece2d3;
}
.story-art-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: calc(var(--radius) - 8px);
}

.atmosphere-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
  gap: 24px;
}
.stacked-cards {
  display: grid;
  gap: 24px;
}

.flavors-grid,
.reviews-grid,
.link-card-grid,
.route-grid {
  display: grid;
  gap: 22px;
}
.flavors-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.reviews-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.link-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.route-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.dish-card {
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.dish-card figure {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.dish-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.dish-card:hover img { transform: scale(1.03); }
.dish-card__body { padding: 22px 20px 24px; }
.dish-card__body h3,
.info-card h3,
.route-card h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
  line-height: 1.2;
}
.dish-card__body p { margin: 0; color: var(--muted); font-size: 0.97rem; }

.info-card,
.route-card { padding: 28px; }
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 22px;
}
.reviews-grid .review-card { padding: 28px; }
.review-card p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.55;
  color: #43392d;
}
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.site-footer {
  padding: 34px 0 20px;
  background: #28241f;
  color: rgba(255,255,255,0.84);
}
.footer-grid {
  grid-template-columns: 1.35fr 0.8fr 0.9fr 0.8fr;
  align-items: start;
  gap: 28px;
}
.footer-brand h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  color: var(--white);
}
.footer-brand p { margin: 0; color: rgba(255,255,255,0.7); }
.footer-column h4 { margin: 0 0 12px; color: var(--white); font-size: 1rem; }
.footer-column a { display: block; margin-bottom: 10px; color: rgba(255,255,255,0.72); }
.footer-column a:hover,
.footer-social a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,0.6); font-size: 0.94rem; }
.footer-social { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-social a { color: rgba(255,255,255,0.72); }

@media (max-width: 1100px) {
  .hero-content,
  .page-hero-content,
  .intro-grid,
  .story-grid,
  .trip-grid,
  .visit-grid,
  .footer-grid,
  .atmosphere-layout {
    grid-template-columns: 1fr;
  }
  .hero-content { padding-top: 78px; }
  .feature-stack { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .wide-card,
  .media-card.tall,
  .media-card.medium-card { min-height: 420px; }
  .flavors-grid,
  .reviews-grid,
  .link-card-grid,
  .route-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .menu-toggle { display: flex; }
  .header-right { gap: 12px; }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 10px;
    padding: 18px;
    background: rgba(250, 246, 239, 0.98);
    border: 1px solid rgba(44,39,33,0.08);
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(44, 39, 33, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav .nav-phone { text-align: center; margin-top: 2px; }
  .lang-switcher { margin-left: auto; }
  .hero, .page-hero { min-height: auto; }
  .hero-content, .page-hero-content {
    grid-template-columns: 1fr;
    align-items: end;
    padding: 74px 0 56px;
  }
  .hero-copy h1 { font-size: clamp(1.75rem, 8vw, 2.4rem); }
  .page-hero h1 { font-size: clamp(1.95rem, 9vw, 2.8rem); }
  .feature-stack { grid-template-columns: 1fr; }
  .section { padding: 74px 0; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .header-inner { min-height: 72px; }
  .brand-title { font-size: 1.28rem; }
  .brand-subtitle { font-size: 0.76rem; }
  .section-head h2,
  .section-copy h2,
  .prose h2 { font-size: clamp(1.72rem, 8vw, 2.32rem); }
  .panel,
  .info-card,
  .route-card,
  .prose,
  .review-card,
  .feature-panel { padding: 24px; }
  .wide-card,
  .media-card.tall,
  .media-card.medium-card,
  .short-card { min-height: 300px; }
  .flavors-grid,
  .reviews-grid,
  .link-card-grid,
  .route-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions, .visit-actions { width: 100%; }
  .hero-actions .btn, .visit-actions .btn { flex: 1 1 220px; }
  .lang-switcher a { min-width: 38px; padding: 7px 9px; }
}
