:root {
  --ink: #15120f;
  --muted: #554d44;
  --paper: #fffdf8;
  --paper-soft: #f4efe7;
  --sage: #566955;
  --sage-dark: #223229;
  --wine: #6f352c;
  --line: rgba(34, 30, 25, 0.14);
  --line-strong: rgba(34, 30, 25, 0.24);
  --shadow: 0 28px 80px rgba(34, 25, 18, 0.13);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.96) 0%, rgba(255, 253, 248, 0.80) 48%, rgba(255, 253, 248, 0.48) 100%),
    linear-gradient(rgba(21, 18, 15, 0.10), rgba(246, 241, 232, 0.88)),
    url("site-background.jpg") center center / cover fixed;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.hero {
  min-height: clamp(500px, 70svh, 640px);
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 28px clamp(18px, 4vw, 56px) 48px;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.50), rgba(255, 253, 248, 0.08) 42%, rgba(255, 253, 248, 0.84)),
    linear-gradient(110deg, rgba(255, 253, 248, 0.97) 0%, rgba(255, 253, 248, 0.78) 43%, rgba(255, 253, 248, 0.16) 100%);
}

.topbar {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(34, 30, 25, 0.08);
}

.brand-link {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  font-size: 0.86rem;
  font-weight: 650;
}

.nav-links a {
  text-decoration: none;
  color: rgba(21, 18, 15, 0.78);
  transition: color 180ms ease;
}

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

.hero-content {
  width: min(1120px, 100%);
  margin: 0 auto;
  align-self: start;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(360px, 0.88fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: start;
  padding-block: clamp(38px, 7vh, 62px) 28px;
}

.hero-brand {
  min-width: 0;
}

.logo {
  width: clamp(220px, 20vw, 280px);
  height: auto;
  display: block;
  margin-bottom: clamp(16px, 3vh, 24px);
}

.kicker,
.eyebrow,
.card-label,
.quick-fact span {
  margin: 0;
  color: var(--sage-dark);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 8.8em;
  margin-top: 8px;
  font-size: clamp(2.85rem, 6.2vw, 4.75rem);
  line-height: 0.9;
}

h2 {
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  line-height: 0.98;
}

.hero-story {
  max-width: 610px;
  margin-top: 4px;
  padding: clamp(26px, 3.4vw, 42px) clamp(28px, 3.6vw, 46px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(34, 30, 25, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.80), rgba(255, 253, 248, 0.50));
  box-shadow: 0 24px 60px rgba(34, 25, 18, 0.12);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.hero-story::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--wine), var(--sage));
  opacity: 0.72;
}

.hero-story p {
  margin: 0;
  color: #4f473f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.34vw, 1.24rem);
  line-height: 1.64;
  text-wrap: pretty;
}

.hero-story p + p {
  margin-top: 22px;
  color: var(--ink);
  font-style: italic;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 12px 20px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--sage-dark);
  color: #fff;
  border-color: var(--sage-dark);
}

.button-secondary {
  background: rgba(255, 253, 248, 0.42);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(111, 53, 44, 0.46);
  color: var(--wine);
}

.intro-band {
  width: min(1120px, calc(100% - 32px));
  margin: -28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--line);
  box-shadow: 0 18px 54px rgba(34, 25, 18, 0.10);
  position: relative;
}

.quick-fact {
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 20px 22px;
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(10px);
}

.quick-fact strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  font-weight: 600;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 106px) 0 0;
  scroll-margin-top: 42px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(100px, 0.35fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 52px);
  align-items: end;
  margin-bottom: 28px;
}

.details-section .section-heading {
  margin-bottom: 18px;
}

.reservation-section .section-heading {
  width: min(900px, 100%);
  margin: 0 auto 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.reservation-section .eyebrow {
  width: fit-content;
  margin: 0;
  color: rgba(34, 50, 41, 0.72);
}

.reservation-section h2 {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  line-height: 1.08;
}

.reservation-section h2::after {
  content: "";
  width: 64px;
  height: 1px;
  display: block;
  margin: 16px auto 0;
  background: var(--line-strong);
}

.reservation-frame {
  width: min(820px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow);
}

.reservation-frame iframe {
  width: 100%;
  height: clamp(360px, 40vw, 400px);
  display: block;
  border: 0;
  background: #fff;
}

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

.detail-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 12px 36px rgba(34, 25, 18, 0.08);
  backdrop-filter: blur(10px);
}

.detail-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.detail-card a {
  font-weight: 750;
}

.detail-card > a {
  display: inline-flex;
  margin-top: 18px;
}

.detail-card span:not(.card-label) {
  color: #6d655c;
  font-size: 0.92rem;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 78px auto 24px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #5f574d;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 14px 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(21, 18, 15, 0.92);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.92rem;
}

.cookie-banner button {
  min-width: 72px;
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.cookie-banner.is-hidden {
  display: none;
}

@media (max-width: 820px) {
  body {
    background-attachment: scroll;
  }

  .hero {
    min-height: 500px;
    padding-inline: 18px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .topbar {
    align-items: flex-start;
  }

  .nav-links {
    gap: 16px;
  }

  .intro-band,
  .detail-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .intro-band {
    margin-top: -18px;
  }

  .quick-fact {
    min-height: 82px;
  }

  .detail-card {
    min-height: 0;
  }

  .hero-story {
    max-width: none;
    margin-top: 0;
    padding: 20px 22px 22px;
    border: 1px solid rgba(34, 30, 25, 0.14);
    border-radius: 6px;
    background: rgba(255, 253, 248, 0.66);
    box-shadow: 0 16px 38px rgba(34, 25, 18, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .hero-story::before {
    top: 16px;
    bottom: 16px;
  }

  .reservation-frame iframe {
    height: 580px;
  }
}

@media (max-width: 520px) {
  .nav-links {
    font-size: 0.84rem;
  }

  .hero-content {
    align-self: start;
    padding-block: 34px 24px;
    gap: 20px;
  }

  .logo {
    width: min(196px, 58vw);
    margin-bottom: 14px;
  }

  .hero-story p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .button {
    min-height: 44px;
    padding: 10px 12px;
  }

  .button-primary {
    grid-column: 1 / -1;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
  }

  .cookie-banner p {
    font-size: 0.86rem;
  }

  .cookie-banner button {
    width: 100%;
    min-height: 40px;
  }
}
