:root {
  --cream: #f7f0e4;
  --sand: #e9dcc6;
  --gold: #c7933b;
  --terracotta: #a64b2a;
  --olive: #56613e;
  --charcoal: #1f1a17;
  --wine: #5b2d21;
  --white: #fffdf9;
}

body {
  font-family: "Work Sans", sans-serif;
  color: var(--charcoal);
  background: var(--cream);
}

h1, h2, h3, h4, .navbar-brand {
  font-family: "Cormorant Garamond", serif;
}

.site-nav {
  background: rgba(31, 26, 23, 0.88);
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-size: 1.9rem;
  letter-spacing: 0.04em;
}

.nav-link {
  color: rgba(255, 255, 255, 0.88);
}

.nav-link:hover,
.nav-link:focus,
.footer-link:hover,
.footer-link:focus {
  color: #ffffff;
}

.btn-warm {
  background: linear-gradient(135deg, var(--gold), #d7a957);
  border: none;
  color: var(--charcoal);
  font-weight: 700;
  padding-inline: 1.5rem;
}

.btn-warm:hover,
.btn-warm:focus {
  background: linear-gradient(135deg, #d9a03b, #e4b766);
  color: var(--charcoal);
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 8rem 0 5rem;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(31, 26, 23, 0.78), rgba(91, 45, 33, 0.52)),
    radial-gradient(circle at top right, rgba(199, 147, 59, 0.35), transparent 30%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 26, 23, 0.72) 0%, rgba(31, 26, 23, 0.48) 42%, rgba(31, 26, 23, 0.2) 100%),
    linear-gradient(180deg, rgba(31, 26, 23, 0.18), rgba(31, 26, 23, 0.42));
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-copy-block {
  display: inline-block;
  max-width: 43rem;
  padding: 1.5rem 1.75rem 1.75rem;
  background: linear-gradient(135deg, rgba(31, 26, 23, 0.32), rgba(31, 26, 23, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.5rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 1.2rem 2.5rem rgba(0, 0, 0, 0.2);
}

.hero-wordmark {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--white);
  text-shadow: 0 0.6rem 1.8rem rgba(0, 0, 0, 0.4);
}

.hero-title {
  line-height: 0.95;
  max-width: 10ch;
  text-shadow: 0 0.55rem 1.6rem rgba(0, 0, 0, 0.35);
}

.wide-title {
  max-width: 14ch;
}

.hero-copy {
  max-width: 38rem;
  font-size: 1.1rem;
  text-shadow: 0 0.35rem 1.2rem rgba(0, 0, 0, 0.3);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.22);
}

.hero-card,
.menu-card,
.story-panel,
.highlight-box,
.contact-card,
.reservation-form,
.info-chip {
  border-radius: 1.5rem;
}

.hero-card {
  padding: 2rem;
  background: rgba(247, 240, 228, 0.92);
  color: var(--charcoal);
  border: 1px solid rgba(91, 45, 33, 0.1);
}

.tracking {
  letter-spacing: 0.2em;
}

.hero-card-footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(31, 26, 23, 0.15);
}

.intro-strip {
  background:
    linear-gradient(180deg, rgba(233, 220, 198, 0.95), rgba(247, 240, 228, 0.95));
}

.info-chip {
  height: 100%;
  padding: 1.5rem;
  background: rgba(255, 253, 249, 0.75);
  border: 1px solid rgba(91, 45, 33, 0.08);
}

.info-title {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--terracotta);
}

.section-light {
  background: var(--white);
}

.subhero {
  min-height: 70vh;
  padding-top: 9rem;
  padding-bottom: 4rem;
}

.gallery-section {
  background:
    linear-gradient(180deg, rgba(233, 220, 198, 0.4), rgba(247, 240, 228, 0.9));
}

.section-heading {
  max-width: 42rem;
}

.section-heading h2,
.story-panel h2,
.contact-card h3 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.menu-card {
  padding: 1.75rem;
  background: linear-gradient(180deg, #fffdf9, #f6ebda);
  border: 1px solid rgba(166, 75, 42, 0.12);
  box-shadow: 0 1rem 2rem rgba(31, 26, 23, 0.06);
}

.menu-card h3 {
  margin: 0.75rem 0;
  font-size: 2rem;
}

.page-link-card {
  display: block;
  height: 100%;
  padding: 1.75rem;
  text-decoration: none;
  color: var(--charcoal);
  background: linear-gradient(180deg, #fffdf9, #f6ebda);
  border-radius: 1.5rem;
  border: 1px solid rgba(166, 75, 42, 0.12);
  box-shadow: 0 1rem 2rem rgba(31, 26, 23, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-link-card:hover,
.page-link-card:focus {
  color: var(--charcoal);
  transform: translateY(-4px);
  box-shadow: 0 1.3rem 2.2rem rgba(31, 26, 23, 0.12);
}

.page-link-card h3 {
  margin: 0.85rem 0;
  font-size: 2rem;
}

.page-link-card p {
  margin-bottom: 0;
}

.dish-tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(199, 147, 59, 0.15);
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-card {
  overflow: hidden;
  margin: 0;
  background: rgba(255, 253, 249, 0.92);
  border-radius: 1.5rem;
  border: 1px solid rgba(91, 45, 33, 0.1);
  box-shadow: 0 1rem 2rem rgba(31, 26, 23, 0.08);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card figcaption {
  padding: 1rem 1.1rem 1.2rem;
  font-weight: 600;
  color: var(--wine);
}

.menu-preview-card {
  display: block;
  overflow: hidden;
  padding: 0;
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid rgba(91, 45, 33, 0.12);
  border-radius: 1.5rem;
  box-shadow: 0 1rem 2rem rgba(31, 26, 23, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-preview-card:hover,
.menu-preview-card:focus {
  transform: translateY(-4px);
  box-shadow: 0 1.35rem 2.3rem rgba(31, 26, 23, 0.14);
}

.menu-preview-card img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  object-position: top center;
}

.menu-preview-caption {
  display: block;
  padding: 0.95rem 1rem 1.05rem;
  font-weight: 700;
  color: var(--wine);
  text-align: center;
}

.menu-modal-content {
  color: var(--white);
  background: rgba(31, 26, 23, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(233, 220, 198, 0.7), rgba(255, 253, 249, 0.95));
  border: 1px solid rgba(166, 75, 42, 0.12);
  border-radius: 1.5rem;
}

.story-section {
  background:
    linear-gradient(135deg, rgba(86, 97, 62, 0.08), rgba(166, 75, 42, 0.08)),
    var(--cream);
}

.story-panel {
  padding: 2rem;
  background: rgba(255, 253, 249, 0.7);
  border: 1px solid rgba(86, 97, 62, 0.12);
}

.feature-box {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  background: rgba(233, 220, 198, 0.55);
  border-radius: 1rem;
}

.highlight-box {
  height: 100%;
  padding: 2.5rem;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(91, 45, 33, 0.96), rgba(166, 75, 42, 0.9)),
    var(--wine);
  box-shadow: 0 1.25rem 2.5rem rgba(31, 26, 23, 0.18);
}

.quote-mark {
  margin-bottom: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
}

.highlight-text {
  font-size: 1.35rem;
  line-height: 1.6;
}

.divider {
  width: 4rem;
  height: 2px;
  margin: 1.5rem 0;
  background: rgba(255, 255, 255, 0.45);
}

.contact-section {
  background: var(--white);
}

.faq-section {
  background:
    linear-gradient(180deg, rgba(247, 240, 228, 0.7), rgba(255, 253, 249, 1));
}

.contact-card,
.reservation-form {
  padding: 2rem;
  background: #fbf5ea;
  border: 1px solid rgba(166, 75, 42, 0.12);
}

.contact-list {
  padding-left: 0;
  list-style: none;
}

.contact-list li {
  margin-bottom: 1rem;
}

.form-control,
.form-select {
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  border-color: rgba(86, 97, 62, 0.2);
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(199, 147, 59, 0.9);
  box-shadow: 0 0 0 0.25rem rgba(199, 147, 59, 0.18);
}

.form-help {
  color: rgba(31, 26, 23, 0.74);
  font-size: 0.95rem;
}

.faq-accordion .accordion-item {
  border: 1px solid rgba(166, 75, 42, 0.12);
  border-radius: 1rem;
  overflow: hidden;
  background: #fbf5ea;
  box-shadow: 0 0.8rem 1.5rem rgba(31, 26, 23, 0.05);
}

.faq-accordion .accordion-item + .accordion-item {
  margin-top: 1rem;
}

.faq-accordion .accordion-button {
  font-weight: 700;
  color: var(--wine);
  background: #fbf5ea;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--charcoal);
  background: rgba(199, 147, 59, 0.14);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  border-color: rgba(199, 147, 59, 0.9);
  box-shadow: 0 0 0 0.2rem rgba(199, 147, 59, 0.18);
}

.faq-accordion .accordion-body {
  color: rgba(31, 26, 23, 0.9);
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.site-footer {
  color: var(--white);
  background: var(--charcoal);
}

.footer-link {
  color: var(--gold);
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding-top: 7rem;
  }

  .hero-title {
    max-width: 100%;
  }

  .hero-copy-block {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575.98px) {
  .hero-card,
  .menu-card,
  .story-panel,
  .highlight-box,
  .contact-card,
  .reservation-form,
  .info-chip {
    border-radius: 1.1rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .map-section iframe {
    height: 320px;
  }
}
