﻿@import url("https://fonts.googleapis.com/css2?family=Special+Elite&display=swap");

:root {
  --bg: #f5efe6;
  --surface: #fffaf2;
  --surface-2: #f0e2ce;
  --text: #1f1a17;
  --muted: #62574d;
  --accent: #8f3d20;
  --accent-2: #ca803f;
  --line: #d6c4af;
  --radius: 18px;
  --shadow: 0 18px 36px rgba(46, 30, 20, 0.14);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: "Special Elite", "Manrope", serif;
  color: var(--text);
  background-color: var(--bg);
  background-image: linear-gradient(
    180deg,
    #f2ddc3 0,
    #f5efe6 280px,
    #f5efe6 100%
  );
  background-repeat: no-repeat;
  line-height: 1.6;
}

img { max-width: 100%; display: block; border-radius: 14px; }
a { color: inherit; }

h1, h2, h3 {
  margin: 0;
  line-height: 1.12;
  font-family: inherit;
}

.container { width: min(1120px, 92vw); margin: 0 auto; }
.site-header { padding: 16px 0 54px; }

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  position: sticky;
  top: 12px;
  z-index: 20;
  background: rgba(255, 250, 242, 0.88);
  border: 1px solid rgba(141, 110, 80, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.brand { margin-left: 10px; }
.brand img { width: 112px; border-radius: 0; }

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 16px;
  justify-self: center;
}

.menu a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
}

.menu a.active,
.menu a:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #f7ede0, #f1dec8);
  color: var(--accent);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  font-family: inherit;
}

.lang-switch {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.lang-switch a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 8px 10px;
  background: var(--surface);
  color: var(--muted);
}

.lang-switch a.current {
  background: var(--accent);
  color: #fff;
}

.insta-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(133, 86, 52, 0.45);
  background: rgba(255, 248, 236, 0.92);
  color: #3b2414;
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  padding-top: 82px;
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero h1 { font-size: clamp(2.2rem, 5.5vw, 4.6rem); margin-bottom: 18px; }

.lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
}

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

.btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 24px rgba(143, 61, 32, 0.26);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.hours-pill {
  margin-top: 24px;
  padding: 12px 16px;
  display: inline-block;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.section { padding: 74px 0; }

.section.alt {
  background: linear-gradient(180deg, rgba(240, 226, 206, 0.78), rgba(245, 239, 230, 0.5));
  border-top: 1px solid rgba(140, 107, 76, 0.2);
  border-bottom: 1px solid rgba(140, 107, 76, 0.2);
}

.section h2 { font-size: clamp(1.8rem, 4vw, 2.9rem); margin-bottom: 18px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.quote {
  margin-top: 20px;
  padding: 18px;
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  background: var(--surface);
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.card h3 { margin-bottom: 10px; font-size: 1.4rem; }
.card ul { margin: 0; padding: 0; list-style: none; }

.card li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}

.card li:last-child { border-bottom: 0; }
.card strong { color: var(--accent); }

.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.preview-grid a { text-decoration: none; }
.preview-grid img { width: 100%; height: 170px; object-fit: cover; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 130px;
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.gallery-filter {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.gallery-filter.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(133, 86, 52, 0.25);
  box-shadow: 0 8px 18px rgba(28, 16, 8, 0.12);
  background: rgba(255, 248, 236, 0.8);
}

.gallery-item.tile-standard { grid-column: span 1; grid-row: span 1; }
.gallery-item.tile-wide { grid-column: span 2; grid-row: span 1; }
.gallery-item.tile-tall { grid-column: span 1; grid-row: span 2; }
.gallery-item.tile-hero { grid-column: span 2; grid-row: span 2; }
.gallery-item.tile-panorama { grid-column: span 2; grid-row: span 1; }
.gallery-item.tile-portrait-xl { grid-column: span 1; grid-row: span 3; }

.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 7, 4, 0.86);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
  z-index: 1000;
}

.lightbox-backdrop.open { display: flex; }

.lightbox-image {
  max-width: min(94vw, 1300px);
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 18px; align-items: start; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-wrap iframe { width: 100%; height: 360px; border: 0; }

.menu-sheet {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.97), rgba(248, 238, 222, 0.97)),
    repeating-linear-gradient(
      0deg,
      rgba(185, 157, 120, 0.08),
      rgba(185, 157, 120, 0.08) 1px,
      transparent 1px,
      transparent 30px
    );
  border: 1px solid #c7b08f;
  border-radius: 20px;
  box-shadow: 0 20px 44px rgba(56, 35, 22, 0.18);
  padding: 26px;
}

.menu-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.menu-filter {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.menu-filter.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.menu-sheet + .menu-sheet { margin-top: 20px; }
.menu-sheet h3 { font-size: 1.8rem; margin-bottom: 6px; }
.menu-subtitle { margin: 0 0 16px; color: var(--muted); font-style: italic; }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li { padding: 11px 0; border-bottom: 1px dashed rgba(131, 91, 62, 0.35); }
.menu-list li:last-child { border-bottom: 0; }

.dish-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: baseline;
}

.dish-line span { font-size: 1.15rem; }
.dish-line strong { color: var(--accent); font-size: 1.08rem; }
.dish-desc { margin: 4px 0 0; color: #5d5046; font-size: 0.95rem; }

.footer { padding: 24px 0; }
.footer-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.footer-row > p:first-child {
  justify-self: start;
  margin: 0;
}

.footer-links {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-self: end;
}

.insta-link-footer { padding: 6px 10px; }

.credit {
  margin: 0;
  color: var(--muted);
  justify-self: center;
  text-align: center;
}

.reveal { opacity: 0; transform: translateY(14px); transition: 0.55s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }

/* Home top visual area */
.home-page .top-scene {
  position: relative;
  overflow: hidden;
}

.home-page .top-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: image-set(url("images/cabin-bg.webp") type("image/webp"), url("images/cabin-bg.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-page .top-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(245, 236, 220, 0.01), rgba(245, 236, 220, 0.01));
}

.home-page .top-scene > * {
  position: relative;
  z-index: 1;
}

.home-page .top-scene .hero {
  text-align: center;
}

.home-page .top-scene .hero-copy-bubble,
.home-page .top-scene .hero-cta-bubble {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 248, 236, 0.96);
  border: 1px solid rgba(171, 129, 92, 0.35);
  border-radius: 14px;
}

.home-page .top-scene .hero-copy-bubble {
  padding: 12px 14px;
  box-shadow: 0 6px 14px rgba(28, 16, 8, 0.14);
}

.home-page .top-scene .hero-copy-bubble .eyebrow {
  display: block;
  margin-bottom: 10px;
}

.home-page .top-scene .hero-copy-bubble h1 {
  margin-bottom: 10px;
}

.home-page .top-scene .hero-cta-bubble {
  margin-top: 16px;
  padding: 10px 12px;
  box-shadow: 0 8px 18px rgba(29, 17, 8, 0.16);
}

.home-page .top-scene .hero-actions {
  display: inline-flex;
  gap: 10px;
  margin-top: 0;
  padding: 0;
  justify-content: center;
  width: 100%;
}

.home-page .top-scene .btn.ghost {
  background: #fff7ec;
  color: #2f1d10;
  border: 1px solid rgba(110, 72, 44, 0.75);
}

.home-page .top-scene .hours-pill {
  display: block;
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .top-scene .section.alt {
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

.highlights-wood {
  background: rgba(245, 239, 230, 0.95);
  border-top: 1px solid rgba(140, 107, 76, 0.2);
  border-bottom: 1px solid rgba(140, 107, 76, 0.2);
}

.highlights-wood::before { display: none; }
.highlights-wood .card { background: var(--surface); }

.home-page .top-scene .section.container,
.home-page .top-scene .highlights-wood .container {
  background: rgba(255, 248, 236, 0.93);
  border: 1px solid rgba(171, 129, 92, 0.35);
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(28, 16, 8, 0.14);
  padding: 22px;
}

.home-page .top-scene .section > .eyebrow,
.home-page .top-scene .highlights-wood .eyebrow {
  display: block;
  margin-bottom: 10px;
}

.home-page .top-scene .section > h2,
.home-page .top-scene .highlights-wood h2 {
  margin-bottom: 16px;
}

.home-page .top-scene .section.container .panel,
.home-page .top-scene .section.container .quote,
.home-page .top-scene .highlights-wood .card {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.home-page .top-scene .section.container .panel { padding: 0; }

.home-page .top-scene .section.container .quote {
  padding: 0;
  border-left: 0;
}

/* Menu page */
.menu-page {
  position: relative;
}

.menu-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: image-set(url("images/cabin-bg.webp") type("image/webp"), url("images/cabin-bg.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.16;
  pointer-events: none;
  z-index: -1;
}

.menu-page .hero {
  text-align: center;
}

.menu-page .menu-hero-copy {
  display: inline-block;
  background: rgba(255, 248, 236, 0.94);
  border: 1px solid rgba(171, 129, 92, 0.35);
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(28, 16, 8, 0.14);
  padding: 10px 12px;
}

.menu-page .menu-hero-copy h1 {
  margin: 0 0 8px;
}

.menu-page .menu-hero-copy .lead {
  margin: 0;
  max-width: min(92vw, 780px);
}

@media (max-width: 1024px) {
  .nav {
    grid-template-columns: auto auto 1fr auto auto;
    border-radius: 24px;
  }

  .brand { margin-left: 6px; }
  .nav-toggle { display: block; }

  .menu {
    display: none;
    position: absolute;
    grid-column: 1 / -1;
    top: 68px;
    left: 0;
    right: 0;
    margin: 0 12px;
    padding: 12px;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .menu.open { display: flex; }
  .hero { padding-top: 44px; }

  .nav .insta-link {
    grid-column: 4;
    justify-self: end;
    width: 38px;
    padding: 8px;
    min-width: 38px;
  }

  .nav .lang-switch {
    grid-column: 5;
    justify-self: end;
  }

  .grid-2,
  .cards,
  .preview-grid,
  .gallery-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 190px;
  }

  .gallery-item.tile-standard,
  .gallery-item.tile-wide,
  .gallery-item.tile-tall,
  .gallery-item.tile-hero,
  .gallery-item.tile-panorama,
  .gallery-item.tile-portrait-xl {
    grid-column: span 1;
    grid-row: span 1;
  }

  .home-page .top-scene::before { background-position: center top; }
}


.insta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.insta-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.section-bubble {
  background: rgba(255, 248, 236, 0.95);
  border: 1px solid rgba(171, 129, 92, 0.35);
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(28, 16, 8, 0.14);
  padding: 22px;
}

.news-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.news-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.news-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.news-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 2px 9px;
  font-size: 0.76rem;
}

.news-item h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.news-item p {
  margin: 0 0 10px;
  color: var(--muted);
}

.news-link {
  text-decoration: none;
  color: var(--accent);
  font-weight: 700;
}

.life-feed {
  display: grid;
  gap: 14px;
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.life-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.life-card img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  border-radius: 0;
}

.life-content {
  padding: 10px 12px 12px;
}

.life-content p {
  margin: 0 0 6px;
  color: var(--muted);
}

.life-footer {
  display: flex;
  justify-content: center;
}

.data-fallback {
  margin: 0;
  padding: 14px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  color: var(--muted);
  background: var(--surface);
}

@media (max-width: 960px) {
  .news-feed {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .life-grid {
    grid-template-columns: 1fr;
  }

  .footer-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-row > p:first-child,
  .credit,
  .footer-links {
    justify-self: center;
  }
}
