:root {
  --bg: #16110d;
  --bg-soft: #221914;
  --surface: #1d1511;
  --surface-strong: #130f0c;
  --surface-card: rgba(34, 25, 20, 0.92);
  --border: rgba(210, 154, 90, 0.18);
  --text: #f4ede5;
  --text-soft: #d1c8bb;
  --gold: #d29a5a;
  --gold-soft: #ebc28f;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top, rgba(210, 154, 90, 0.08), transparent 32%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: 900px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(37, 31, 27, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 84px;
}

.brand img,
.footer-logo {
  width: 144px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  justify-self: center;
}

.site-nav a {
  color: var(--text-soft);
  font-size: 0.98rem;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--gold);
}

.header-social {
  justify-self: end;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-soft);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.header-social:hover {
  color: var(--gold);
  border-color: rgba(210, 154, 90, 0.4);
}

.nav-toggle {
  display: none;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72vh;
  overflow: hidden;
  isolation: isolate;
  background-color: #000;
  background-position: center;
  background-size: cover;
}

.hero-home {
  min-height: calc(100vh - 84px);
  background-image: url("../images/bg-kitchen-wood.jpg");
  background-position: top center;
}

.hero-menu {
  background-image: url("../images/menu-hero.jpg");
}

.hero-contact {
  background-image: url("../images/front.jpg");
}

.hero-short {
  min-height: 40rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19, 15, 12, 0.86), rgba(19, 15, 12, 0.35));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  padding: 7rem 0;
}

.eyebrow,
.section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.28rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero h1,
.section h2 {
  margin: 0.6rem 0 1rem;
  font-family: "Raleway", sans-serif;
  line-height: 1.06;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.8rem);
}

.hero p {
  max-width: 42rem;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.hero-mark {
  position: absolute;
  right: 10%;
  bottom: 8%;
  width: min(26vw, 340px);
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

.hero-mark-small {
  width: min(18vw, 240px);
  bottom: 12%;
  right: 8%;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-leaf {
  position: absolute;
  right: 6%;
  top: 10%;
  width: min(28vw, 360px);
  opacity: 0.92;
  pointer-events: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.5rem;
  border: 2px solid var(--gold);
  background: var(--gold);
  color: #140f0b;
  text-transform: uppercase;
  letter-spacing: 0.22rem;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.button-secondary {
  background: transparent;
  color: var(--text);
}

.section {
  padding: 6rem 0;
}

.section-quote,
.section-cta {
  background: var(--bg-soft);
}

.section-showcase,
.section-menu-nav-band,
.menu-section-image,
.section-cta-image {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.section-showcase > .container,
.section-menu-nav-band > .container,
.menu-section-image > .container,
.section-cta-image > .container {
  position: relative;
  z-index: 1;
}

.featured-quote,
.testimonial-card,
.hours-card,
.info-card,
.form-card,
.callout-card,
.menu-item,
.menu-panel,
.showcase-card,
.cta-card,
.menu-preview-card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.featured-quote {
  padding: 3rem;
  text-align: center;
  background: #d9c7b2;
  border-radius: var(--radius);
  box-shadow: none;
}

.featured-quote p,
.testimonial-card p {
  margin: 0 0 1rem;
  color: var(--text);
  font-family: "Raleway", sans-serif;
}

.featured-quote p {
  font-size: clamp(1.35rem, 2.3vw, 1.7rem);
  font-style: italic;
  color: #1f1712;
}

.featured-quote span,
.testimonial-card span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18rem;
  font-size: 0.82rem;
}

.split-grid,
.cta-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.split-grid,
.cta-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.section-about .split-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr) minmax(180px, 0.48fr);
  gap: 2.25rem;
}

.section-copy p,
.section-heading p,
.contact-copy p,
.callout-card p {
  color: var(--text-soft);
}

.feature-list,
.menu-highlight-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.5rem 0 2rem;
  list-style: none;
}

.feature-list li,
.menu-highlight-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--text-soft);
}

.feature-list li::before,
.menu-highlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}

.section-about {
  position: relative;
  overflow: hidden;
  background:
    url("../images/bg-thyme.png") bottom right / min(36vw, 420px) no-repeat,
    var(--bg-soft);
}

.hours-card,
.form-card,
.info-card,
.callout-card {
  background: var(--surface-card);
  border-radius: var(--radius);
}

.hours-card {
  padding: 2rem;
}

.hours-card-compact {
  padding: 1.6rem;
}

.about-hours-card {
  align-self: start;
}

.hours-card h3,
.form-card h2,
.info-card h3,
.menu-group h3,
.site-footer h3 {
  margin-top: 0;
  font-family: "Raleway", sans-serif;
}

.hours-card dl {
  margin: 0;
}

.hours-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hours-card dl div:last-child {
  border-bottom: 0;
}

.hours-card dt {
  color: var(--gold);
}

.hours-card dd {
  margin: 0;
  color: var(--text-soft);
  text-align: right;
}

.image-stack,
.about-image-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-image-pair {
  grid-template-columns: 1fr;
}

.about-image-column {
  align-self: start;
}

.image-stack img,
.about-image-pair img,
.callout-figure img {
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 20px;
}

.image-stack img:first-child {
  grid-column: 1 / -1;
  min-height: 320px;
}

.about-image-pair img {
  min-height: 188px;
}

.section-image-callout {
  position: relative;
  background: var(--bg-soft);
  overflow: hidden;
}

.section-background-image {
  position: absolute;
  inset: 0;
}

.section-background-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 19, 21, 0.72);
}

.section-background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.section-image-callout .section-background-image,
.section-showcase .section-background-image,
.section-menu-nav-band .section-background-image,
.section-cta-image .section-background-image {
  inset: auto;
  top: 3rem;
  left: 50%;
  width: min(calc(100% - 2rem), var(--container));
  height: clamp(220px, 34vw, 360px);
  transform: translateX(-50%);
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
}

.section-image-callout .container,
.section-showcase > .container,
.section-menu-nav-band > .container,
.section-cta-image > .container {
  padding-top: 8.5rem;
}

.callout-card {
  width: min(100%, 640px);
  padding: 2.5rem;
  border-left: 4px solid var(--gold);
}

.section-image-callout .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: center;
  padding-top: 1.5rem;
}

.callout-figure img {
  min-height: 420px;
}

.callout-card {
  width: 100%;
}

.section-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.8;
}

.section-deco-basil {
  left: -3rem;
  bottom: 2rem;
  width: min(16vw, 180px);
}

.section-deco-rosemary {
  right: 2rem;
  bottom: 1rem;
  width: min(18vw, 220px);
  opacity: 0.55;
}

.section-heading {
  margin-bottom: 2.5rem;
  text-align: center;
}

.section-heading-left {
  text-align: left;
}

.section-heading-light p,
.section-heading-light h2 {
  color: var(--text);
}

.section-showcase .section-heading {
  position: relative;
  z-index: 1;
}

.testimonial-grid,
.menu-preview-grid,
.info-card-grid {
  display: grid;
  gap: 1.5rem;
}

.testimonial-grid,
.menu-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  padding: 2rem;
  border-radius: 20px;
  background: var(--surface-card);
}

.section-showcase-reviews .section-background-image::after,
.section-showcase-contact .section-background-image::after,
.section-cta-image .section-background-image::after,
.section-menu-nav-band .section-background-image::after {
  background: rgba(10, 13, 14, 0.74);
}

.section-showcase-menu .section-background-image::after {
  background: rgba(19, 15, 12, 0.78);
}

.section-showcase-reviews .section-background-image {
  height: clamp(240px, 32vw, 320px);
  top: 4rem;
}

.section-showcase-reviews .section-background-image img {
  object-position: center 18%;
}

.section-showcase-reviews > .container {
  padding-top: 7rem;
}

.section-showcase-menu .section-background-image,
.section-cta-image .section-background-image {
  height: clamp(240px, 34vw, 340px);
}

.section-showcase-contact .section-background-image {
  height: clamp(260px, 40vw, 420px);
  top: 2rem;
}

.section-showcase-contact > .container {
  padding-top: 10rem;
}

.showcase-card,
.cta-card,
.menu-panel {
  border-radius: var(--radius);
  background: rgba(19, 15, 12, 0.88);
  backdrop-filter: blur(10px);
}

.showcase-card {
  padding: 2.4rem;
}

.showcase-card-compact {
  width: min(100%, 860px);
}

.section-showcase-menu > .container {
  padding-top: 0;
}

.cta-card {
  padding: 2.6rem;
  background:
    linear-gradient(rgba(19, 15, 12, 0.82), rgba(19, 15, 12, 0.82)),
    url("../images/reserve-bg.jpg") center / cover;
}

.menu-preview-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 360px;
  background: var(--surface-card);
}

.menu-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-preview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 15, 12, 0.08), rgba(19, 15, 12, 0.88));
}

.menu-preview-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.6rem;
}

.menu-preview-card h3 {
  margin: 0 0 0.45rem;
  font-family: "Raleway", sans-serif;
}

.menu-preview-card p {
  margin: 0;
  color: rgba(244, 237, 229, 0.88);
}

.section-menu-nav {
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.section-menu-nav-band {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.section-menu-nav-band > .container {
  padding-top: 6rem;
}

.section-menu-nav-band .showcase-card {
  background: rgba(19, 15, 12, 0.88);
}

.menu-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.menu-anchor-nav a {
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  color: var(--text-soft);
}

.menu-anchor-nav a:hover {
  color: var(--gold);
}

.menu-section {
  padding-top: 3rem;
  background: var(--bg);
}

.menu-section-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(calc(100% - 2rem), var(--container));
  height: clamp(220px, 30vw, 300px);
  transform: translateX(-50%);
  background-position: center;
  background-size: cover;
  border-radius: calc(var(--radius) + 8px);
}

.menu-section-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(calc(100% - 2rem), var(--container));
  height: clamp(220px, 30vw, 300px);
  transform: translateX(-50%);
  background: rgba(12, 10, 9, 0.7);
  border-radius: calc(var(--radius) + 8px);
}

.menu-section-appetizer::before {
  background-image: url("../images/appetizer.jpg");
}

.menu-section-main::before {
  background-image: url("../images/menu-main.jpg");
}

.menu-section-dessert::before {
  background-image: url("../images/menu-dessert.jpg");
}

.menu-panel {
  position: relative;
  padding: 2.4rem;
  margin-top: 7rem;
}

.menu-group + .menu-group {
  margin-top: 2.5rem;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.menu-item h4 {
  margin: 0 0 0.35rem;
  font-family: "Raleway", sans-serif;
  font-size: 1.08rem;
}

.menu-item p {
  margin: 0;
  color: var(--text-soft);
}

.menu-item strong {
  color: var(--gold);
  white-space: nowrap;
  font-size: 1.05rem;
}

.contact-summary a,
.site-footer a,
.contact-copy a {
  color: var(--gold-soft);
}

.contact-summary a:hover,
.site-footer a:hover,
.contact-copy a:hover {
  color: var(--gold);
}

.contact-summary p {
  margin: 0 0 1rem;
}

.info-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 2rem 0;
}

.info-card {
  padding: 1.5rem;
}

.form-card-strong {
  background: rgba(19, 15, 12, 0.9);
  backdrop-filter: blur(12px);
}

.info-card p,
.social-box p {
  margin-bottom: 0;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-box {
  margin-top: 2rem;
}

.section-showcase-contact .contact-copy {
  padding: 2.4rem;
}

.form-card {
  padding: 2rem;
}

.section-cta-image > .container {
  padding-top: 6.5rem;
}

.section-cta-image .section-background-image {
  display: none;
}

.form-intro {
  margin-top: -0.25rem;
  color: var(--text-soft);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-radius: 14px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 180px;
}

.form-botcheck {
  display: none;
}

.form-status {
  min-height: 1.6rem;
  margin: -0.25rem 0 0;
  color: var(--text-soft);
}

.form-status[data-state="pending"] {
  color: var(--gold-soft);
}

.form-status[data-state="success"] {
  color: #9ad7a1;
}

.form-status[data-state="error"] {
  color: #f18a7c;
}

.contact-form button[disabled] {
  opacity: 0.75;
  cursor: wait;
}

.site-footer {
  padding: 4rem 0;
  background:
    linear-gradient(rgba(16, 12, 9, 0.96), rgba(16, 12, 9, 0.96)),
    url("../images/bg-kitchen-wood.jpg") center / cover;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 2rem;
}

.site-footer p,
.site-footer li {
  color: var(--text-soft);
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 0.5rem;
}

@media (max-width: 1024px) {
  .split-grid,
  .cta-grid,
  .contact-grid,
  .footer-grid,
  .testimonial-grid,
  .menu-preview-grid {
    grid-template-columns: 1fr;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .section-about .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-short {
    min-height: 32rem;
  }

  .hero-leaf {
    width: min(32vw, 260px);
    top: 18%;
    right: -3%;
  }
}

@media (max-width: 800px) {
  .nav-toggle {
    display: block;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(19, 15, 12, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-social {
    display: none;
  }

  .hero-content {
    padding: 6rem 0 5rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section-image-callout .section-background-image,
  .section-showcase .section-background-image,
  .section-menu-nav-band .section-background-image,
  .section-cta-image .section-background-image,
  .menu-section-image::before,
  .menu-section-image::after {
    width: calc(100% - 1rem);
    height: 12rem;
    top: 1.5rem;
  }

  .section-image-callout .container,
  .section-showcase > .container,
  .section-menu-nav-band > .container,
  .section-cta-image > .container,
  .section-showcase-contact > .container {
    padding-top: 5rem;
  }

  .menu-panel {
    margin-top: 4.5rem;
  }

  .featured-quote,
  .callout-card,
  .hours-card,
  .form-card,
  .showcase-card,
  .menu-panel,
  .cta-card {
    padding: 1.6rem;
  }

  .image-stack,
  .about-image-pair,
  .info-card-grid {
    grid-template-columns: 1fr;
  }

  .section-image-callout .container {
    grid-template-columns: 1fr;
  }

  .callout-figure img {
    min-height: 280px;
  }

  .hero-mark,
  .section-deco {
    display: none;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 76px;
  }

  .brand img,
  .footer-logo {
    width: 120px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 15vw, 3.8rem);
  }

  .menu-item {
    flex-direction: column;
  }

  .section-showcase-contact .section-background-image {
    height: 13rem;
  }

  .menu-item strong {
    font-size: 1rem;
  }

  .hours-card dl div {
    flex-direction: column;
  }

  .hours-card dd {
    text-align: left;
  }
}
