
:root {
  --ink: #090909;
  --charcoal: #141312;
  --ivory: #f3eee4;
  --ivory-muted: #bcb5aa;
  --red: #c6281f;
  --red-bright: #e1251b;
  --gold: #b89555;
  --line: rgba(184, 149, 85, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: Arial, Helvetica, sans-serif;
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background: var(--ink);
}

.section {
  padding: clamp(88px, 10vw, 150px) clamp(24px, 6vw, 96px);
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section h2,
.contact-banner h2 {
  margin: 0;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: clamp(24px, 4vw, 72px);
  right: clamp(24px, 4vw, 72px);
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(184, 149, 85, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: clamp(180px, 18vw, 282px);
  height: auto;
  max-height: 88px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 70px);
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  color: #e6dfd5;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 1px;
  background: var(--gold);
  transition: right 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--gold);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  isolation: isolate;
  background: var(--ink);
}

.hero-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  animation: heroReveal 1100ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, #080808 0%, rgba(8, 8, 8, 0.96) 29%, rgba(8, 8, 8, 0.62) 53%, rgba(8, 8, 8, 0.08) 82%),
    linear-gradient(0deg, rgba(3, 3, 3, 0.68) 0%, transparent 38%, rgba(2, 2, 2, 0.3) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
}

.hero-copy {
  width: min(720px, 52vw);
  margin-left: clamp(24px, 4vw, 72px);
  padding-top: 118px;
  animation: copyReveal 800ms 180ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.edo-mark {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  color: var(--gold);
}

.edo-mark span {
  padding: 5px 7px;
  border: 1px solid currentColor;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.edo-mark i {
  width: 96px;
  height: 1px;
  background: var(--gold);
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.25vw, 86px);
  font-weight: 500;
  letter-spacing: -0.038em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-description {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--ivory-muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.button {
  min-width: 190px;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--red-bright);
  color: white;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #b91e17;
}

.button-secondary {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(9, 9, 9, 0.4);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #d0aa67;
  color: #d0aa67;
  background: rgba(184, 149, 85, 0.08);
}

.branch-quicklinks {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  color: #aaa298;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.branch-quicklinks span {
  color: #777169;
}

.branch-quicklinks a {
  color: #c9b082;
  transition: color 180ms ease;
}

.branch-quicklinks a:hover,
.branch-quicklinks a:focus-visible {
  color: var(--ivory);
}

.scroll-cue {
  position: absolute;
  right: clamp(24px, 4vw, 72px);
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(243, 238, 228, 0.56);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(-100%);
  transform-origin: right bottom;
}

.scroll-cue i {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(56px, 8vw, 128px);
  align-items: center;
  background: #11100f;
}

.story-image-wrap {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #211f1c;
}

.story-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184, 149, 85, 0.2);
  pointer-events: none;
}

.story-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  display: block;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.story-image-wrap:hover img {
  transform: scale(1.02);
}

.image-stamp {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 72px;
  height: 88px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--ivory);
  font-family: Georgia, serif;
  font-size: 34px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
}

.story-copy h2 {
  max-width: 680px;
  font-size: clamp(44px, 4.4vw, 70px);
}

.story-copy > p:not(.section-kicker) {
  max-width: 640px;
  margin: 30px 0 0;
  color: #aaa39a;
  font-size: 17px;
  line-height: 1.85;
}

.story-copy > p + p:not(.section-kicker) {
  margin-top: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  gap: 20px;
  color: #d2ad6a;
}

.featured {
  background: #ebe5db;
  color: var(--charcoal);
}

.featured .section-kicker {
  color: #9b6f31;
}

.section-heading,
.menu-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 56px;
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 84px);
}

.section-heading h2 {
  color: #191713;
}

.section-heading > p,
.menu-intro > p {
  max-width: 530px;
  margin: 0 0 8px auto;
  color: #686057;
  font-size: 16px;
  line-height: 1.75;
}

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

.food-card {
  min-width: 0;
}

.food-card-1,
.food-card-6 {
  grid-column: span 2;
}

.food-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #d5cec2;
}

.food-card-1 .food-image,
.food-card-6 .food-image {
  aspect-ratio: 2 / 1.45;
}

.food-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.food-card:hover .food-image img {
  transform: scale(1.035);
}

.food-meta {
  padding: 20px 2px 0;
  border-top: 1px solid rgba(20, 19, 18, 0.18);
}

.food-meta span {
  color: #9b6f31;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.food-meta h3 {
  margin: 8px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.6vw, 28px);
  font-weight: 500;
  line-height: 1.18;
}

.menu-section {
  background:
    radial-gradient(circle at 100% 20%, rgba(198, 40, 31, 0.09), transparent 26%),
    #0d0d0c;
}

.menu-intro {
  align-items: end;
}

.menu-intro h2 {
  color: var(--ivory);
}

.menu-intro > p {
  color: #8e877d;
}

.menu-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.menu-group {
  min-height: 100%;
  padding: clamp(28px, 3.2vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.menu-group header {
  min-height: 78px;
  margin-bottom: 24px;
}

.menu-group header span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.13em;
}

.menu-group h3 {
  margin: 8px 0 0;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.3vw, 36px);
  font-weight: 500;
}

.menu-group ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-group li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(184, 149, 85, 0.09);
  color: #aaa39a;
  font-size: 14px;
  line-height: 1.45;
}

.menu-group li:last-child {
  border-bottom: 0;
}

.menu-note {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(400px, 1.26fr);
  min-height: 420px;
  margin-top: 64px;
  border: 1px solid var(--line);
  background: #151412;
}

.menu-note img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.menu-note > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(40px, 6vw, 88px);
}

.menu-note span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.menu-note h3 {
  max-width: 660px;
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.menu-note a {
  margin-top: 34px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
}

.branches {
  background: #171513;
}

.branches-title {
  max-width: 900px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.branch-card {
  position: relative;
  padding: clamp(42px, 5vw, 76px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 32px;
}

.branch-number {
  position: absolute;
  top: 42px;
  right: 48px;
  color: rgba(184, 149, 85, 0.34);
  font-family: Georgia, serif;
  font-size: 52px;
}

.branch-card > p {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.branch-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.2vw, 66px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.branch-card address {
  max-width: 520px;
  min-height: 74px;
  margin-top: 26px;
  color: #aaa39a;
  font-size: 16px;
  font-style: normal;
  line-height: 1.65;
}

.branch-phone {
  display: inline-block;
  margin-top: 24px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2vw, 32px);
}

.branch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.branch-actions .button {
  min-width: 170px;
  min-height: 54px;
  font-size: 14px;
}

.contact-banner {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: clamp(88px, 10vw, 150px) clamp(24px, 6vw, 96px);
  isolation: isolate;
  overflow: hidden;
}

.contact-banner > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-banner-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 6, 6, 0.96) 0%, rgba(6, 6, 6, 0.74) 46%, rgba(6, 6, 6, 0.32) 100%);
}

.contact-banner-copy {
  max-width: 740px;
}

.contact-banner-copy > p:not(.section-kicker) {
  max-width: 560px;
  margin: 28px 0 0;
  color: #b7b0a7;
  font-size: 18px;
  line-height: 1.7;
}

.contact-banner-copy .button {
  margin-top: 38px;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 62px clamp(24px, 6vw, 96px);
  border-top: 1px solid var(--line);
  background: #090909;
}

.footer-brand img {
  width: 130px;
  height: auto;
  display: block;
}

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

.footer-locations div,
.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-locations span,
.footer-contact span {
  color: #716c65;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-locations a,
.footer-contact a {
  color: #c9c2b8;
  font-size: 13px;
}

.footer-contact {
  justify-items: end;
  text-align: right;
}

@keyframes copyReveal {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroReveal {
  from { opacity: 0.15; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 900px) {
  .site-header {
    height: 94px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(184, 149, 85, 0.45);
    cursor: pointer;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary span {
    width: 21px;
    height: 1px;
    background: var(--ivory);
  }

  .mobile-nav nav {
    position: absolute;
    top: 58px;
    right: 0;
    width: 210px;
    display: grid;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(9, 9, 9, 0.97);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.5);
  }

  .mobile-nav nav a {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(184, 149, 85, 0.12);
  }

  .hero-copy {
    width: min(680px, calc(100vw - 48px));
    padding-top: 96px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.88) 48%, rgba(5, 5, 5, 0.36) 100%),
      linear-gradient(0deg, rgba(3, 3, 3, 0.7) 0%, transparent 42%);
  }

  .story {
    grid-template-columns: 1fr;
  }

  .story-image-wrap,
  .story-image-wrap img {
    min-height: 540px;
  }

  .section-heading,
  .menu-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p,
  .menu-intro > p {
    margin-left: 0;
  }

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

  .food-card-1,
  .food-card-6 {
    grid-column: span 1;
  }

  .food-card-1 .food-image,
  .food-card-6 .food-image {
    aspect-ratio: 4 / 3;
  }

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

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

  .menu-note img {
    min-height: 340px;
    max-height: 440px;
  }

  .branch-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 0.65fr 1.35fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .site-header {
    left: 20px;
    right: 20px;
  }

  .brand img {
    width: 190px;
    max-height: 68px;
  }

  .hero {
    min-height: 820px;
    align-items: flex-end;
  }

  .hero-image {
    height: 54%;
    top: 94px;
    bottom: auto;
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, #080808 30%, rgba(8, 8, 8, 0.88) 52%, rgba(8, 8, 8, 0.15) 100%),
      linear-gradient(90deg, rgba(8, 8, 8, 0.78), rgba(8, 8, 8, 0.12));
  }

  .hero-copy {
    width: auto;
    margin: 0 20px;
    padding: 360px 0 56px;
  }

  .edo-mark,
  .scroll-cue,
  .branch-quicklinks span {
    display: none;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  h1 {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 1.02;
  }

  .hero-description {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.55;
  }

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

  .button {
    width: 100%;
    min-height: 56px;
  }

  .branch-quicklinks {
    gap: 18px;
    margin-top: 24px;
  }

  .section {
    padding: 76px 20px;
  }

  .story-image-wrap,
  .story-image-wrap img {
    min-height: 430px;
  }

  .story-copy > p:not(.section-kicker) {
    font-size: 16px;
    line-height: 1.72;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .food-image,
  .food-card-1 .food-image,
  .food-card-6 .food-image {
    aspect-ratio: 4 / 3;
  }

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

  .menu-group {
    padding: 30px 24px;
  }

  .menu-group header {
    min-height: 0;
  }

  .menu-note {
    margin-top: 40px;
  }

  .menu-note img {
    min-height: 280px;
  }

  .menu-note > div {
    padding: 36px 26px 44px;
  }

  .branch-card {
    padding: 40px 24px;
  }

  .branch-number {
    top: 32px;
    right: 24px;
    font-size: 38px;
  }

  .branch-actions {
    display: grid;
  }

  .branch-actions .button {
    width: 100%;
  }

  .contact-banner {
    min-height: 620px;
    padding: 76px 20px;
  }

  .contact-banner-shade {
    background: linear-gradient(0deg, rgba(6, 6, 6, 0.96) 0%, rgba(6, 6, 6, 0.72) 58%, rgba(6, 6, 6, 0.3) 100%);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 48px 20px;
  }

  .footer-locations {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
