:root {
  color-scheme: light;
  --ink: #261f1a;
  --muted: #6b6259;
  --paper: #fffaf3;
  --soft: #f3eadf;
  --line: #ded0bf;
  --accent: #8f2f21;
  --accent-dark: #612016;
  --sage: #66735a;
  --gold: #c28c42;
  --shadow: 0 24px 60px rgba(38, 31, 26, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 243, 0.9);
  border-bottom: 1px solid rgba(222, 208, 191, 0.78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.brand small,
.eyebrow,
.features span,
.hero-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 750;
}

nav a:hover {
  color: var(--ink);
  background: var(--soft);
}

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: end;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(120px, 16vh, 190px) clamp(18px, 5vw, 72px) clamp(42px, 7vw, 84px);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(22, 15, 10, 0.78), rgba(22, 15, 10, 0.36) 52%, rgba(22, 15, 10, 0.16)),
    linear-gradient(0deg, rgba(38, 31, 26, 0.34), rgba(38, 31, 26, 0.06));
}

.hero-copy {
  max-width: 760px;
  color: #fff;
}

.hero-copy .eyebrow {
  color: #f1d39e;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.8vw, 4rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  color: #fff;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

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

.button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #221711;
}

.hero-card,
.contact-card,
.features article {
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow);
}

.hero-card {
  align-self: end;
  padding: 28px;
  color: #fff;
  background: rgba(38, 31, 26, 0.62);
  backdrop-filter: blur(18px);
  border-radius: 8px;
}

.hero-card strong {
  display: block;
  margin: 12px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.hero-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.intro,
.hours-section,
.contact-section,
.features,
.gallery {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  background: var(--paper);
}

.intro > p,
.contact-section p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.features article {
  min-height: 245px;
  padding: 28px;
  border-color: var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.features span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--sage);
}

.features p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(240px, 0.82fr);
  gap: 18px;
  background: #fffdf8;
}

.gallery figure {
  position: relative;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.gallery-large {
  grid-row: span 2;
  min-height: 638px;
}

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

.gallery figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 12px;
  color: #fff;
  background: rgba(38, 31, 26, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.hours-section {
  background: #293228;
  color: #fff;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.hours-section .eyebrow {
  color: #c8d3b9;
}

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

.day {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.day span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.day strong {
  text-align: right;
}

.day.muted {
  opacity: 0.66;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  background: var(--paper);
}

.contact-card {
  padding: 30px;
  border-color: var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.contact-card > a {
  display: block;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--accent);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
}

.contact-card span {
  color: var(--muted);
  line-height: 1.5;
}

.contact-card .button {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.contact-card .button.primary {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fffdf8;
}

footer p {
  margin-bottom: 0;
}

footer a {
  font-weight: 800;
  color: var(--accent);
}

@media (max-width: 880px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 760px;
    grid-template-columns: 1fr;
    align-content: end;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(22, 15, 10, 0.48), rgba(22, 15, 10, 0.8)),
      linear-gradient(90deg, rgba(22, 15, 10, 0.6), rgba(22, 15, 10, 0.26));
  }

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

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

  .gallery-large {
    grid-row: auto;
    min-height: 460px;
  }

  .section-heading {
    display: block;
  }
}

@media (max-width: 540px) {
  .site-header {
    padding: 14px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  nav a {
    padding-inline: 12px;
  }

  .hero {
    min-height: 720px;
    padding: 82px 16px 28px;
  }

  h1 {
    font-size: 3rem;
  }

  .lead {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .hero-card,
  .features article,
  .contact-card {
    padding: 22px;
  }

  .gallery figure,
  .gallery-large {
    min-height: 320px;
  }

  .day {
    display: block;
  }

  .day strong {
    display: block;
    margin-top: 6px;
    text-align: left;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
