:root {
  --off-white: #f8f3ea;
  --warm-white: #fffaf1;
  --espresso: #2b1a11;
  --brick-red: #a83d2f;
  --brick-red-dark: #81291f;
  --brick-brown: #6b3f2a;
  --olive-green: #4f6335;
  --soft-gold: #c9a25d;
  --charcoal: #211711;
  --muted-text: #5f4738;
  --light-text: #fff7ec;
  --soft-border: rgba(52, 36, 23, 0.14);
  --shadow: 0 22px 55px rgba(52, 36, 23, 0.14);
  --radius: 26px;
  --max-width: 1180px;
  --header-height: 96px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", Arial, sans-serif;
  background: var(--off-white);
  color: var(--espresso);
  line-height: 1.7;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(248, 243, 234, 0.96);
  box-shadow: 0 10px 32px rgba(52, 36, 23, 0.1);
  backdrop-filter: blur(12px);
}

.navbar {
  width: min(var(--max-width), calc(100% - 40px));
  height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo {
  height: 78px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 27px;
  font-weight: 800;
  color: var(--espresso);
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-tagline {
  margin-top: 4px;
  color: var(--brick-red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--espresso);
  font-weight: 900;
  font-size: 15px;
}

.nav-links a {
  position: relative;
  padding: 9px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 0;
  height: 2px;
  background: var(--brick-red);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.nav-call {
  background: var(--brick-red);
  color: var(--warm-white);
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(168, 61, 47, 0.25);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--brick-red);
  cursor: pointer;
  place-items: center;
  gap: 5px;
  padding: 12px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--warm-white);
  border-radius: 999px;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  color: inherit;
  line-height: 1.08;
}

h1 {
  font-size: clamp(44px, 6vw, 82px);
  letter-spacing: -0.045em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}

h3 {
  font-size: 25px;
  margin-bottom: 10px;
}

p {
  color: var(--muted-text);
  font-size: 18px;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--brick-red);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.eyebrow span {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--olive-green), var(--warm-white), var(--brick-red));
  border-radius: 999px;
}

.section-kicker.light,
.brick-section .section-kicker {
  color: #ffd7c9;
}

.section-lead {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted-text);
}

.centered {
  text-align: center;
  max-width: 840px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.03em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brick-red);
  color: var(--warm-white);
  box-shadow: 0 16px 36px rgba(168, 61, 47, 0.28);
}

.btn-primary:hover {
  background: var(--brick-red-dark);
}

.btn-secondary {
  background: var(--warm-white);
  color: var(--espresso);
  border: 1px solid var(--soft-border);
}

.btn-secondary.dark {
  background: transparent;
}

.hero {
  padding: calc(var(--header-height) + 55px) 0 90px;
}

.split-hero {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}

.hero-copy {
  max-width: 650px;
  font-size: clamp(19px, 2vw, 22px);
  color: var(--muted-text);
  margin-bottom: 34px;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: none;
  background: transparent;
  transform: none;
}

.hero-image-card::before {
  display: none;
}

.hero-image-card img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 30px;
}

.promo-preview,
.featured-menu,
.why-section,
.loyalty-section,
.visit,
.page-section {
  padding: 105px 0;
}

.split-grid,
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.split-grid.reverse {
  grid-template-columns: 0.9fr 1fr;
}

.about-grid img,
.image-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--warm-white);
}

.image-card::before {
  display: none;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.promo-card {
  background: var(--warm-white);
  border: 1px solid var(--soft-border);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(52, 36, 23, 0.08);
  overflow: hidden;
}

.promo-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: contain;
    background: #111;
    display: block;
}

.promo-card div {
  padding: 28px;
}

.promo-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--brick-red);
  font-weight: 900;
}

.feature-list,
.oven-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.feature-list span,
.oven-points span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(168, 61, 47, 0.1);
  border: 1px solid rgba(168, 61, 47, 0.18);
  color: var(--brick-red);
  font-weight: 900;
}

.brick-section {
  position: relative;
  padding: 115px 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(33, 23, 17, 0.72), rgba(33, 23, 17, 0.72)),
    url("images/brick-wall.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--light-text);
}

.brick-section .container {
  position: relative;
  z-index: 2;
}

.brick-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(201, 162, 93, 0.18), transparent 34%),
    linear-gradient(rgba(33, 23, 17, 0.16), rgba(33, 23, 17, 0.35));
}

.brick-section h2,
.brick-section h3 {
  color: var(--light-text);
}

.brick-section p {
  color: rgba(255, 250, 241, 0.92);
}

.brick-section .feature-card h3 {
  color: var(--espresso);
}

.brick-section .feature-card p {
  color: var(--muted-text);
}

.oven-points span {
  color: var(--light-text);
  background: rgba(255, 250, 241, 0.12);
  border-color: rgba(255, 250, 241, 0.28);
}

.feature-row,
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.features-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.visit-card,
.menu-item,
.legal-card {
  background: var(--warm-white);
  border: 1px solid var(--soft-border);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(52, 36, 23, 0.08);
}

.feature-card {
  padding: 34px;
}

.feature-card p {
  font-size: 17px;
  color: var(--muted-text);
}

.feature-icon {
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 50%;
  margin-bottom: 22px;
  box-shadow: 0 0 0 8px rgba(52, 36, 23, 0.04);
}

.green-dot {
  background: var(--olive-green);
}

.white-dot {
  background: var(--warm-white);
  border: 1px solid rgba(52, 36, 23, 0.18);
}

.red-dot {
  background: var(--brick-red);
}

.page-hero {
  padding: calc(var(--header-height) + 88px) 0 85px;
  background:
    radial-gradient(circle at 10% 20%, rgba(168, 61, 47, 0.08), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(79, 99, 53, 0.08), transparent 24%),
    var(--off-white);
  text-align: center;
}

.page-hero .container {
  max-width: 900px;
}

.page-hero h1 {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted-text);
}

.page-hero .hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.menu-category {
  margin-bottom: 75px;
}

.menu-category-header {
  margin-bottom: 30px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
}

.menu-item p {
  font-size: 17px;
}

.menu-item strong {
  color: var(--brick-red);
  white-space: nowrap;
  font-size: 20px;
}

.price-stack {
  display: grid;
  gap: 4px;
  text-align: right;
  color: var(--brick-red);
  font-weight: 900;
  white-space: nowrap;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  margin-top: 32px;
}

.gallery-grid img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(52, 36, 23, 0.16);
}

.gallery-grid img:first-child {
  grid-row: span 2;
  height: 680px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.video-card {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(52, 36, 23, 0.16);
  background: var(--charcoal);
}

.video-card video {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.section-heading {
  max-width: 860px;
}

.center-button {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.full-width {
  max-width: 900px;
  margin-bottom: 42px;
}

.visit-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: clamp(30px, 5vw, 58px);
  max-width: 100%;
  margin: 0 auto;
}

.visit-details p + p {
  margin-top: 10px;
}

.visit-actions {
  margin-top: 28px;
}

.map-frame {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 22px;
  position: relative;
  z-index: 2;
}

.legal-card {
  padding: clamp(30px, 5vw, 58px);
}

.legal-card h2 {
  margin-top: 34px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.site-footer {
  padding: 70px 0 28px;
  color: var(--warm-white);
  background: var(--charcoal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 0.8fr;
  gap: 34px;
  padding-bottom: 42px;
}

.footer-logo {
  width: 132px;
  margin-bottom: 16px;
}

.footer-grid h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--warm-white);
}

.footer-grid p,
.footer-grid a {
  display: block;
  color: rgba(255, 250, 241, 0.78);
  margin-bottom: 9px;
}

.footer-grid a:hover {
  color: var(--soft-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 250, 241, 0.14);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-bottom p {
  color: rgba(255, 250, 241, 0.72);
}
.footer-bottom p {
    padding: 0 16px;
}

.footer-bottom a {
  color: var(--soft-gold);
  font-weight: 900;
}

.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 16px;
  }

  .brand-name {
    font-size: 23px;
  }

  .brand-tagline {
    font-size: 10px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 88px;
  }

  .site-header {
    padding: 0;
  }

  .navbar {
    width: calc(100% - 28px);
    height: var(--header-height);
    gap: 12px;
  }

  .logo {
    height: 66px;
    max-width: 92px;
  }

  .brand {
    gap: 9px;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-tagline {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-call {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(var(--header-height) + 12px);
    right: 14px;
    width: min(320px, calc(100vw - 28px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: var(--warm-white);
    color: var(--espresso);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 8px;
  }

  .hero {
    padding: var(--header-height) 0 0;
  }

  .split-hero {
    width: 100%;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 20px 70px;
    position: relative;
    overflow: hidden;
  }

  .hero-image-card {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: 0;
  }

  .hero-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(33, 23, 17, 0.62), rgba(33, 23, 17, 0.76));
    z-index: 1;
  }

  .hero-image-card img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    color: var(--light-text);
    text-align: left;
  }

  .hero h1,
  .hero .eyebrow {
    color: var(--light-text);
  }

  .hero-copy {
    color: rgba(255, 250, 241, 0.94);
  }

  .hero .btn-secondary {
    background: rgba(255, 250, 241, 0.94);
  }

  .page-hero {
    padding: calc(var(--header-height) + 58px) 0 60px;
  }

  .split-grid,
  .split-grid.reverse,
  .about-grid,
  .visit-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .promo-grid,
  .feature-row,
  .features-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img,
  .gallery-grid img:first-child {
    height: 340px;
    grid-row: auto;
  }

  .video-card video {
    height: 520px;
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 84px;
  }

  .container {
    width: calc(100% - 30px);
  }

  .navbar {
    width: calc(100% - 26px);
  }

  .logo {
    height: 60px;
    max-width: 82px;
  }

  .brand-name {
    font-size: 16px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  h1 {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(31px, 10vw, 43px);
    line-height: 1.08;
  }

  h3 {
    font-size: 23px;
  }

  p {
    font-size: 17px;
  }

  .section-kicker,
  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  .split-hero {
    padding: 70px 16px 54px;
    min-height: calc(100vh - var(--header-height));
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions,
  .visit-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .promo-preview,
  .featured-menu,
  .why-section,
  .loyalty-section,
  .visit,
  .page-section,
  .brick-section {
    padding: 78px 0;
  }

  .page-hero {
    padding: calc(var(--header-height) + 44px) 0 52px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .about-grid img,
  .image-card img {
    min-height: 310px;
  }

  .promo-card img {
    height: 250px;
  }

  .menu-item {
    flex-direction: column;
  }

  .price-stack {
    text-align: left;
  }

  .feature-card,
  .menu-item,
  .visit-card {
    padding: 26px;
  }

  .gallery-grid img,
  .gallery-grid img:first-child {
    height: 300px;
  }

  .video-card video {
    height: 500px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.center-button {
  position: relative;
  z-index: 5;
}

.center-button a,
.gallery-preview .btn {
  position: relative;
  z-index: 6;
  pointer-events: auto;
}

@media (max-width: 600px) {
  .split-hero {
    padding-top: 95px;
  }

  .hero-content {
    padding-top: 18px;
  }

  .hero .eyebrow {
    margin-top: 0;
    margin-bottom: 14px;
  }
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--brick-red);
  color: var(--warm-white);
  font-weight: 900;
}

.social-links a:hover {
  background: var(--brick-red-dark);
}

.footer-social {
  margin-top: 18px;
}

.footer-social a {
  display: block;
  color: rgba(255, 250, 241, 0.78);
  margin-bottom: 9px;
  font-weight: 700;
}

.footer-social a:hover {
  color: var(--soft-gold);
}

@media (max-width: 768px) {
    .footer-bottom {
        padding: 50px 10px !important;
    }
}