:root {
  --ink: #2a241e;
  --muted: #756c61;
  --cream: #f6efe5;
  --paper: #fffaf2;
  --stone: #e8ddcf;
  --wood: #9b6a43;
  --wine: #6e2d22;
  --forest: #22382f;
  --shadow: 0 22px 55px rgba(42, 36, 30, .16);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 242, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(42, 36, 30, .08);
}
.brand img { width: min(270px, 42vw); height: auto; }
.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.1vw, 34px);
  font-size: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.main-nav a { position: relative; padding: 8px 0; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform .25s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }
.language-switcher { display: flex; gap: 6px; }
.language-switcher button {
  border: 1px solid rgba(42, 36, 30, .18);
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  padding: 7px 9px;
  font-size: 12px;
  cursor: pointer;
}
.language-switcher button.active { background: var(--ink); color: var(--paper); }

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  background: var(--ink);
  color: var(--paper);
}
.hero-media { position: relative; overflow: hidden; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(42,36,30,.05), rgba(42,36,30,.55));
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-content {
  align-self: center;
  padding: clamp(38px, 6vw, 86px);
  max-width: 680px;
}
.hero-logo { width: min(360px, 70vw); margin-bottom: clamp(30px, 5vw, 70px); }
.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--wood);
  font-weight: 700;
}
h1, h2, h3 { line-height: 1.02; margin: 0; font-weight: 650; letter-spacing: -.03em; }
h1 { font-size: clamp(44px, 6vw, 92px); }
h2 { font-size: clamp(34px, 4vw, 64px); }
h3 { font-size: clamp(22px, 2vw, 30px); }
p { color: var(--muted); font-size: 17px; }
.hero p { color: rgba(255, 250, 242, .82); }
.hero-lead { font-size: clamp(18px, 2vw, 23px); max-width: 540px; margin: 22px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid currentColor;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn.ghost { color: var(--paper); border-color: rgba(255,250,242,.5); }
.btn.ghost.dark { color: var(--ink); border-color: rgba(42,36,30,.22); }

.quick-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(42, 36, 30, .1);
  border-bottom: 1px solid rgba(42, 36, 30, .1);
}
.quick-info article {
  background: var(--cream);
  padding: clamp(20px, 3vw, 34px);
}
.quick-info span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.quick-info strong { font-size: clamp(18px, 1.5vw, 24px); }

.section {
  padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 72px);
}
.split {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(340px, 1.18fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
}
.section-copy { max-width: 620px; }
.section-copy p:last-child { margin-bottom: 0; }
.image-stack {
  display: grid;
  grid-template-columns: 1fr .62fr;
  align-items: end;
  gap: 18px;
}
.image-stack img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.image-stack img:first-child { aspect-ratio: 1.2 / 1; }
.image-stack img:last-child { aspect-ratio: .78 / 1; margin-bottom: -8%; }

.gastronomy { background: var(--cream); }
.section-heading { max-width: 820px; margin-bottom: 42px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading p { font-size: clamp(18px, 2vw, 22px); }
.cards.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(42,36,30,.08);
}
.feature-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.feature-card div { padding: 28px; }
.feature-card p { margin-bottom: 0; }

.spaces { background: var(--paper); }
.space-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(42,36,30,.13);
  border-left: 1px solid rgba(42,36,30,.13);
}
.space-grid article {
  padding: clamp(28px, 4vw, 50px);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(42,36,30,.13);
  border-bottom: 1px solid rgba(42,36,30,.13);
}
.space-grid span { color: var(--wood); font-weight: 800; }
.space-grid p { margin-bottom: 0; }

.banner {
  margin: 0 clamp(20px, 5vw, 72px);
  padding: clamp(34px, 5vw, 70px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  background: linear-gradient(135deg, var(--forest), var(--ink));
  color: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
}
.banner p { color: rgba(255,250,242,.75); max-width: 760px; }

.menu-section {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.menu-card {
  padding: clamp(34px, 5vw, 60px);
  background: var(--cream);
  border-radius: var(--radius);
}
.menu-section > img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.contact-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 42px);
  min-height: 260px;
  box-shadow: 0 12px 40px rgba(42,36,30,.08);
}
.contact-card a {
  display: block;
  margin-top: 12px;
  color: var(--wine);
  font-weight: 800;
}
.hours-card strong { font-size: 26px; line-height: 1.3; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding: clamp(34px, 5vw, 56px) clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: var(--paper);
}
.site-footer img { width: 260px; margin-bottom: 20px; }
.site-footer p { color: rgba(255,250,242,.68); margin: 0; }
.site-footer a { color: var(--paper); font-weight: 800; }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr auto; }
  .main-nav { grid-column: 1 / -1; justify-content: flex-start; overflow-x: auto; padding-bottom: 4px; }
  .hero { grid-template-columns: 1fr; }
  .hero-media { min-height: 56vh; }
  .hero-content { padding-top: 54px; padding-bottom: 64px; }
  .quick-info, .cards.three, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .menu-section { grid-template-columns: 1fr; }
  .space-grid { grid-template-columns: 1fr; }
  .banner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { padding: 12px 16px; gap: 12px; }
  .brand img { width: 210px; }
  .language-switcher button { padding: 6px 8px; }
  .hero-media { min-height: 48vh; }
  .quick-info, .cards.three, .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 18px; }
  .image-stack { grid-template-columns: 1fr; }
  .image-stack img:last-child { margin: 0; }
  .space-grid article { min-height: 250px; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}

.terrace-feature {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  background: var(--forest);
  color: var(--paper);
}
.terrace-media img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.terrace-copy { max-width: 620px; }
.terrace-copy p { color: rgba(255,250,242,.76); }
.terrace-copy .eyebrow { color: var(--stone); }

.mountain-specialties {
  margin-top: clamp(54px, 7vw, 96px);
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.specialties-copy { max-width: 560px; }
.specialties-gallery {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 18px;
  align-items: stretch;
}
.specialties-gallery img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(42,36,30,.09);
}
.specialties-gallery img:first-child {
  grid-row: span 2;
  aspect-ratio: 4 / 5;
}
.specialties-gallery img:nth-child(2),
.specialties-gallery img:nth-child(3) {
  aspect-ratio: 4 / 3;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
}

@media (max-width: 1080px) {
  .terrace-feature, .mountain-specialties { grid-template-columns: 1fr; }
  .terrace-media img { aspect-ratio: 16 / 9; }
}

@media (max-width: 640px) {
  .specialties-gallery { grid-template-columns: 1fr; }
  .specialties-gallery img:first-child { grid-row: auto; }
  .footer-links { justify-content: flex-start; }
}


/* v5 refinements */
.space-grid article {
  padding: 0;
  min-height: auto;
  display: block;
  overflow: hidden;
  background: var(--cream);
}
.space-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.space-copy-card {
  min-height: 260px;
  padding: clamp(28px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.space-copy-card span { color: var(--wood); font-weight: 800; }
.space-copy-card p { margin-bottom: 0; }
.menu-main-button {
  min-height: 64px;
  padding: 18px 36px;
  font-size: 18px;
}
.arthotel-section {
  background: var(--paper);
  border-top: 1px solid rgba(42,36,30,.1);
}
.arthotel-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}
.arthotel-intro p:last-child {
  font-size: clamp(18px, 2vw, 22px);
  margin: 0;
}
.arthotel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.arthotel-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(42,36,30,.08);
}
.arthotel-button { margin-top: 30px; }

@media (max-width: 1080px) {
  .arthotel-intro, .arthotel-grid { grid-template-columns: 1fr; }
  .space-copy-card { min-height: 220px; }
}
