:root {
  --ink: #202521;
  --charcoal: #202521;
  --charcoal-soft: #303833;
  --saffron: #d99724;
  --saffron-light: #f1bf5b;
  --cream: #faf7f0;
  --paper: #f0ece3;
  --white: #fffdf9;
  --green: #34483e;
  --muted: #6d746f;
  --line: rgba(32, 37, 33, .14);
  --shadow: 0 20px 50px rgba(32, 37, 33, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: "DM Sans", sans-serif; font-size: 16px; }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header { height: 82px; padding: 0 clamp(18px, 5vw, 72px); display: flex; align-items: center; justify-content: space-between; background: rgba(250, 247, 240, .96); border-bottom: 1px solid var(--line); position: relative; z-index: 10; backdrop-filter: blur(10px); }
.brand { display: flex; align-items: center; gap: 12px; }
.logo-image { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(32, 37, 33, .2); }
.brand strong, .brand small { display: block; line-height: 1; letter-spacing: .045em; }
.brand strong { font: 800 18px "Fraunces"; }
.brand small { font-size: 9px; font-weight: 800; margin-top: 6px; letter-spacing: .13em; color: var(--muted); }
.site-header nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 700; }
.site-header nav > a { border-bottom: 1px solid transparent; padding: 7px 0; }
.site-header nav > a:hover { border-color: var(--saffron); }
.nav-order { border: 0; padding: 13px 20px; border-radius: 100px; background: var(--charcoal); color: white; font-weight: 800; cursor: pointer; transition: background .2s, transform .2s; }
.nav-order:hover { background: var(--green); transform: translateY(-1px); }

.hero { min-height: calc(100vh - 82px); position: relative; display: flex; align-items: center; overflow: hidden; background: var(--charcoal); border-bottom: 5px solid var(--saffron); }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(24, 29, 25, .97) 0%, rgba(24, 29, 25, .78) 42%, rgba(24, 29, 25, .12) 80%); }
.hero-content { position: relative; z-index: 2; width: min(720px, 87%); margin-left: clamp(24px, 8vw, 128px); color: #fff; padding: 70px 0; }
.eyebrow, .kicker { text-transform: uppercase; letter-spacing: .2em; font-size: 12px; font-weight: 800; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--saffron-light); }
.eyebrow span { width: 27px; height: 2px; background: currentColor; }
.hero h1, .section-heading h2, .reviews-intro h2, .closing h2 { font: 800 clamp(58px, 8vw, 112px)/.88 "Fraunces"; letter-spacing: -.055em; margin: 25px 0; }
.hero h1 em, .closing h2 em { color: var(--saffron-light); font-style: italic; }
.hero-copy { max-width: 575px; font-size: clamp(18px, 2vw, 22px); line-height: 1.55; color: rgba(255, 255, 255, .82); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.button { border: 0; display: inline-flex; align-items: center; justify-content: center; gap: 20px; padding: 15px 22px; border-radius: 100px; font-weight: 800; font-size: 14px; cursor: pointer; transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--saffron); color: var(--charcoal); box-shadow: 0 10px 30px rgba(217, 151, 36, .2); }
.button-primary:hover { background: var(--saffron-light); }
.button-ghost { border: 1px solid rgba(255, 255, 255, .48); color: #fff; background: rgba(0, 0, 0, .08); }
.hero-stamp { position: absolute; z-index: 3; right: clamp(24px, 5vw, 72px); bottom: 36px; width: 136px; height: 136px; border-radius: 50%; border: 4px solid rgba(255, 253, 249, .9); box-shadow: 0 16px 44px rgba(0, 0, 0, .28); transform: rotate(5deg); overflow: hidden; }
.hero-stamp img { width: 100%; height: 100%; object-fit: cover; }

.section { padding: 110px clamp(20px, 7vw, 110px); }
.section-heading { max-width: 800px; margin-bottom: 50px; }
.kicker { color: var(--saffron); margin: 0 0 14px; }
.section-heading h2, .reviews-intro h2 { font-size: clamp(44px, 6vw, 76px); margin: 0 0 20px; }
.section-heading > p:last-child, .reviews-intro > p { font-size: 18px; line-height: 1.7; color: var(--muted); max-width: 560px; }

.locations { background: var(--paper); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.location-card { position: relative; min-height: 500px; padding: 40px; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; align-items: flex-start; background: var(--white); box-shadow: var(--shadow); }
.location-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--saffron); }
.location-card:nth-child(2)::before { background: var(--green); }
.location-number { position: absolute; right: 24px; top: 8px; font: 800 100px "Fraunces"; color: var(--green); opacity: .065; }
.city { font-weight: 800; text-transform: uppercase; letter-spacing: .18em; font-size: 12px; color: var(--saffron); }
.location-card h3 { font: 800 clamp(32px, 4vw, 50px)/1 "Fraunces"; margin: 24px 0 18px; max-width: 430px; }
.location-card address { font-style: normal; font-size: 17px; line-height: 1.6; color: var(--muted); }
.rating { margin-top: 20px; font-size: 13px; color: var(--muted); }
.rating span { color: var(--saffron); letter-spacing: .08em; margin-right: 7px; }
.rating strong { color: var(--ink); }
.hours { display: grid; grid-template-columns: 70px 1fr; gap: 15px; border-top: 1px solid var(--line); margin-top: 24px; padding-top: 22px; width: 100%; font-size: 14px; line-height: 1.6; }
.hours span { color: var(--muted); }
.phone-link { margin-top: 13px; font-size: 14px; font-weight: 700; border-bottom: 1px solid var(--line); }
.card-actions { margin-top: auto; padding-top: 30px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.button-dark { background: var(--charcoal); color: white; box-shadow: 0 8px 24px rgba(32, 37, 33, .16); }
.button-dark:hover { background: var(--green); }
.text-link { border: 0; border-bottom: 1px solid currentColor; background: transparent; color: inherit; padding: 0 0 3px; font-weight: 800; font-size: 14px; cursor: pointer; }
.hours-note, .menu-note { text-align: center; color: var(--muted); font-size: 13px; margin: 28px 0 0; }

.reviews { background: var(--charcoal); color: white; }
.reviews-intro { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 48px; }
.reviews-intro h2 { color: white; }
.reviews-intro > p { color: rgba(255, 255, 255, .62); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card { min-height: 285px; padding: 30px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 16px; background: var(--charcoal-soft); display: flex; flex-direction: column; }
.review-stars { color: var(--saffron-light); letter-spacing: .12em; font-size: 14px; }
.review-card blockquote { margin: 30px 0; font: 700 clamp(22px, 2.2vw, 30px)/1.22 "Fraunces"; letter-spacing: -.02em; }
.review-card footer { margin-top: auto; padding: 0; background: transparent; display: block; text-align: left; }
.review-card footer strong, .review-card footer span { display: block; }
.review-card footer span { color: rgba(255, 255, 255, .5); font-size: 12px; margin-top: 5px; }
.reviews-link { display: inline-block; color: var(--saffron-light); border-bottom: 1px solid currentColor; margin-top: 30px; padding-bottom: 4px; font-size: 14px; font-weight: 800; }

.gallery-section { background: var(--cream); }
.gallery-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 46px; }
.gallery-heading h2 { font: 800 clamp(44px, 6vw, 76px)/.92 "Fraunces"; letter-spacing: -.05em; margin: 0; }
.gallery-heading > p { max-width: 440px; margin: 0 0 5px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; grid-auto-flow: dense; gap: 12px; }
.gallery-item { margin: 0; overflow: hidden; border-radius: 14px; background: var(--paper); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item.dahi-plate { background: #fff; }
.gallery-item.dahi-plate img { object-fit: cover; object-position: 50% 52%; transform: rotate(-1deg) scale(1.03); }
.gallery-item.dahi-plate:hover img { transform: rotate(-1deg) scale(1.055); }
.gallery-feature { grid-column: span 2; grid-row: span 2; }
.gallery-tall { grid-row: span 2; }
.gallery-landscape { grid-column: span 2; grid-row: span 2; }
.gallery-tall:hover img, .gallery-landscape:hover img { transform: none; }

.catering { background: var(--green); color: white; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: clamp(50px, 8vw, 120px); }
.catering .kicker { color: var(--saffron-light); }
.catering h2 { font: 800 clamp(48px, 6vw, 82px)/.92 "Fraunces"; letter-spacing: -.055em; margin: 16px 0 28px; }
.catering h2 em { color: var(--saffron-light); font-style: italic; }
.catering-copy > p:last-of-type { max-width: 660px; color: rgba(255, 255, 255, .72); font-size: 18px; line-height: 1.7; }
.catering-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.catering-tags span { padding: 9px 13px; border: 1px solid rgba(255, 255, 255, .22); border-radius: 100px; color: rgba(255, 255, 255, .86); font-size: 12px; font-weight: 700; }
.catering-card { padding: clamp(28px, 4vw, 46px); border-radius: 18px; background: var(--white); color: var(--ink); box-shadow: 0 24px 60px rgba(17, 24, 20, .2); }
.catering-card > p { color: #9a6913; font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.catering-card h3 { font: 700 clamp(25px, 3vw, 35px)/1.2 "Fraunces"; margin: 15px 0 28px; }
.catering-phones { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.catering-phones a { font-size: 13px; font-weight: 700; }
.catering-phones small { display: block; margin-bottom: 5px; color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.catering-gallery { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; gap: 12px; margin-top: -22px; }
.catering-photo { position: relative; width: 100%; margin: 0; aspect-ratio: 3 / 4; overflow: hidden; border-radius: 14px; background: #26352e; box-shadow: 0 18px 44px rgba(17, 24, 20, .22); }
.catering-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.catering-photo:nth-child(1) img,
.catering-photo:nth-child(2) img { object-position: 50% 48%; }
.catering-photo:nth-child(3) img { object-position: 50% 54%; }
.catering-photo:nth-child(4) img { object-position: 50% 45%; }

.menu-section { background: var(--cream); }
.menu-heading { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.menu-heading > p { max-width: 450px; }
.filters { display: flex; gap: 9px; overflow: auto; padding-bottom: 20px; margin-bottom: 18px; scrollbar-width: none; }
.filter { border: 1px solid var(--line); background: var(--white); color: var(--ink); border-radius: 100px; padding: 10px 17px; cursor: pointer; white-space: nowrap; font-weight: 800; font-size: 14px; }
.filter.active, .filter:hover { background: var(--green); color: white; border-color: var(--green); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.menu-item { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 25px; min-height: 178px; display: flex; flex-direction: column; justify-content: space-between; gap: 24px; box-shadow: 0 8px 24px rgba(32, 37, 33, .035); }
.menu-item.featured { background: var(--green); color: white; border-color: var(--green); box-shadow: 0 12px 30px rgba(52, 72, 62, .14); }
.menu-item.hidden { display: none; }
.menu-item h3 { font: 700 23px "Fraunces"; margin: 7px 0 8px; }
.menu-item p { font-size: 14px; line-height: 1.5; margin: 0; opacity: .66; }
.menu-item strong { font-size: 18px; color: #a36c0a; }
.featured strong { color: var(--saffron-light); }
.badge { display: inline-block; background: var(--saffron); color: var(--charcoal); padding: 5px 9px; border-radius: 100px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }

.closing { padding: 110px 20px; background: var(--green); color: white; text-align: center; border-top: 5px solid var(--saffron); }
.closing .eyebrow { justify-content: center; }
.closing h2 { font-size: clamp(58px, 8vw, 102px); margin: 28px auto 38px; }
.closing .button { margin: auto; }
body > footer { padding: 38px clamp(20px, 7vw, 110px); background: #171b18; color: white; display: flex; align-items: center; justify-content: space-between; gap: 32px; font-size: 13px; }
.footer-brand .logo-image { width: 52px; height: 52px; }
.footer-contact { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 4vw, 48px); flex: 1; }
.footer-contact a { position: relative; display: grid; grid-template-columns: 28px auto; grid-template-rows: auto auto; column-gap: 10px; align-items: center; }
.footer-icon { grid-row: 1 / 3; width: 27px; height: 27px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--saffron-light); font-style: normal; font-size: 13px; }
.footer-contact span { color: rgba(255, 255, 255, .5); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.footer-contact strong { font-size: 13px; }
.footer-contact a:hover strong, .footer-social:hover { color: var(--saffron-light); }
.footer-social { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; font-weight: 700; }
.footer-social .footer-icon { width: 29px; height: 29px; }

.order-dialog { width: min(600px, calc(100% - 28px)); border: 1px solid rgba(255, 255, 255, .08); border-radius: 22px; padding: 32px; background: var(--cream); color: var(--ink); box-shadow: 0 32px 90px rgba(0, 0, 0, .32); overflow: visible; }
.order-dialog::backdrop { background: rgba(18, 22, 19, .72); backdrop-filter: blur(5px); }
.dialog-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.dialog-header h2 { font: 800 clamp(30px, 6vw, 44px)/1 "Fraunces"; margin: 5px 0 0; }
.dialog-close { border: 1px solid var(--line); background: var(--white); width: 42px; height: 42px; border-radius: 50%; font-size: 26px; line-height: 1; cursor: pointer; }
.dialog-copy { color: var(--muted); line-height: 1.55; }
.order-locations { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 22px; padding: 5px; border-radius: 14px; background: #e8e4da; }
.order-locations button { padding: 13px 15px; border: 0; border-radius: 10px; background: transparent; color: var(--ink); text-align: left; cursor: pointer; transition: background .2s, color .2s, box-shadow .2s; }
.order-locations button:hover { border-color: var(--saffron); }
.order-locations button[aria-pressed="true"] { background: var(--white); color: var(--ink); box-shadow: 0 4px 14px rgba(32, 37, 33, .1); }
.order-locations strong, .order-locations span { display: block; }
.order-locations span { margin-top: 5px; font-size: 12px; opacity: .65; }
.order-services { display: grid; grid-template-columns: 1fr; gap: 9px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.order-services.is-hidden { display: none; }
.order-service { min-height: 72px; border: 1px solid var(--line); border-radius: 13px; padding: 12px 14px; display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 14px; background: var(--white); color: var(--ink); transition: transform .2s, border-color .2s, box-shadow .2s; }
.order-service:hover { transform: translateY(-2px); border-color: rgba(32, 37, 33, .28); box-shadow: 0 12px 28px rgba(32, 37, 33, .09); }
.service-mark { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; background: var(--paper); color: var(--ink); font: 800 12px "DM Sans"; font-style: normal; letter-spacing: -.02em; }
.service-name { display: block; }
.service-name strong, .service-name small { display: block; }
.service-name strong { font-size: 16px; }
.service-name small { margin-top: 3px; color: var(--muted); font-size: 11px; font-weight: 500; }
.order-service b { color: var(--green); font-size: 12px; }
.doordash .service-mark { background: #fff0ec; color: #c94b2d; }
.uber .service-mark { background: var(--charcoal); color: white; }
.grubhub .service-mark { background: #eef3ef; color: var(--green); }
.bites .service-mark { background: #fff2d2; color: #8b5e0c; }

@media (max-width: 850px) {
  .site-header nav > a { display: none; }
  .brand strong { font-size: 15px; }
  .hero { min-height: 760px; align-items: flex-start; }
  .hero > img { object-position: 60% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(24, 29, 25, .94), rgba(24, 29, 25, .36)), linear-gradient(0deg, rgba(24, 29, 25, .1), rgba(24, 29, 25, .35)); }
  .hero-content { margin: 60px 24px 0; padding: 30px 0; width: calc(100% - 48px); }
  .hero h1 { font-size: clamp(56px, 15vw, 84px); }
  .hero-stamp { width: 108px; height: 108px; right: 20px; bottom: 24px; }
  .section { padding: 76px 20px; }
  .location-grid { grid-template-columns: 1fr; }
  .location-card { min-height: 470px; padding: 30px; }
  .reviews-intro { display: block; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 235px; }
  .gallery-heading { display: block; }
  .gallery-heading > p { margin-top: 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 210px; }
  .gallery-feature, .gallery-landscape { grid-column: span 2; }
  .gallery-tall { grid-row: span 2; }
  .catering { grid-template-columns: 1fr; }
  .catering-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 0; }
  .menu-heading { display: block; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .closing { padding: 90px 20px; }
  body > footer { flex-direction: column; text-align: center; }
  .footer-contact { flex-wrap: wrap; }
}

@media (max-width: 560px) {
  .site-header { height: 74px; padding: 0 14px; }
  .logo-image { width: 47px; height: 47px; }
  .brand small { display: none; }
  .nav-order { padding: 10px 14px; }
  .hero { min-height: 720px; }
  .hero-content { margin-top: 36px; }
  .hero-copy { font-size: 17px; }
  .hero-stamp { display: none; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item { min-height: 155px; }
  .section-heading h2, .reviews-intro h2 { font-size: 46px; }
  .gallery-heading h2 { font-size: 46px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 245px; }
  .gallery-feature, .gallery-tall, .gallery-landscape { grid-column: span 1; }
  .gallery-feature, .gallery-landscape { grid-row: span 1; }
  .gallery-tall { grid-row: span 2; }
  .catering h2 { font-size: 48px; }
  .catering-phones { grid-template-columns: 1fr; }
  .catering-gallery { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; margin-inline: -20px; padding: 0 20px 10px; scrollbar-width: none; }
  .catering-gallery::-webkit-scrollbar { display: none; }
  .catering-photo { flex: 0 0 78vw; scroll-snap-align: start; }
  .location-card h3 { font-size: 38px; }
  .hours { grid-template-columns: 1fr; }
  .hours span { font-weight: 700; }
  .closing h2 { font-size: 58px; }
  .order-locations { grid-template-columns: 1fr; }
  .order-dialog { padding: 22px; max-height: 88vh; overflow: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .order-service, .nav-order { transition: none; }
}
