/* ============================================================
   DAT BIH GAH™
   Main Stylesheet — Reference Design Build
   ============================================================ */

/* ============================================================
   01. DESIGN TOKENS
   ============================================================ */

:root {
    --cream: #f2e6cf;
    --cream-soft: #eadbc0;
    --paper: #fff4dc;

    --ink: #11100d;
    --ink-soft: #191713;
    --ink-mid: #24211b;

    --red: #dc3d21;
    --red-dark: #9d2818;
    --yellow: #efb62f;
    --yellow-soft: #ffd36a;

    --text: #342e27;
    --muted: #786e61;

    --border-dark: rgba(17, 16, 13, 0.22);
    --border-light: rgba(255, 244, 220, 0.19);

    --display:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        "Arial Black",
        sans-serif;

    --sans:
        Arial,
        Helvetica,
        sans-serif;

    --mono:
        "Courier New",
        Courier,
        monospace;

    --container: 1320px;
    --section-space: clamp(4.5rem, 7vw, 7rem);

    --transition: 180ms ease;
}

/* ============================================================
   02. RESET / GLOBAL
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;

    color: var(--text);
    background: var(--cream);

    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: 9998;

    content: "";

    pointer-events: none;

    opacity: 0.055;

    background-image:
        radial-gradient(circle at 20% 10%, #000 0 0.7px, transparent 0.8px),
        radial-gradient(circle at 80% 70%, #000 0 0.55px, transparent 0.65px);

    background-size:
        5px 5px,
        7px 7px;

    mix-blend-mode: multiply;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: inherit;
}

h1,
h2,
h3,
p,
blockquote {
    margin-top: 0;
}

::selection {
    color: var(--paper);
    background: var(--red);
}

/* ============================================================
   03. ACCESSIBILITY
   ============================================================ */

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 10000;

    padding: 0.8rem 1rem;

    color: var(--paper);
    background: var(--ink);

    font: 800 0.72rem/1 var(--mono);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;

    transform: translateY(-200%);
    transition: transform var(--transition);
}

.skip-link:focus {
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 4px;
}

/* ============================================================
   04. SHARED LAYOUT
   ============================================================ */

.container {
    width: min(calc(100% - 3rem), var(--container));
    margin-inline: auto;
}

section {
    position: relative;
}

.eyebrow {
    margin-bottom: 0.9rem;

    color: var(--red);

    font: 800 0.67rem/1.3 var(--mono);
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.section-heading h2,
.rating-heading h2,
.about-section h2,
.pull-up-heading h2 {
    margin-bottom: 1rem;

    color: var(--ink);

    font-family: var(--display);
    font-size: clamp(4.2rem, 7vw, 7.3rem);
    font-weight: 900;
    line-height: 0.78;

    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.section-heading h2 span,
.rating-heading h2 span,
.about-section h2 span,
.pull-up-heading h2 span {
    display: block;
    color: var(--red);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0.9rem 1.35rem;

    border: 2px solid transparent;

    font: 800 0.68rem/1 var(--mono);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;

    transition:
        transform var(--transition),
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition);
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--paper);
    background: var(--red);
    border-color: var(--red);
}

.button-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
}

.button-secondary {
    color: var(--paper);
    background: transparent;
    border-color: var(--yellow);
}

.button-secondary:hover {
    color: var(--ink);
    background: var(--yellow);
}

.button-large {
    min-height: 58px;
    padding-inline: 1.65rem;
}

/* ============================================================
   05. HEADER
   ============================================================ */

.site-header {
    position: relative;
    z-index: 100;

    color: var(--ink);
    background: var(--cream);

    border-bottom: 1px solid var(--border-dark);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 76px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;

    color: var(--ink);
    text-decoration: none;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    color: var(--paper);
    background: var(--red);

    font-family: var(--display);
    font-size: 1.05rem;
    letter-spacing: 0.04em;

    transform: rotate(-3deg);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-copy strong {
    font-family: var(--display);
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.brand-copy small {
    margin-top: 0.35rem;

    color: #514a40;

    font: 700 0.51rem/1 var(--mono);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2.1rem;
}

.site-nav a {
    position: relative;

    color: var(--ink);

    font: 800 0.66rem/1 var(--mono);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
}

.site-nav a::after {
    position: absolute;
    left: 0;
    bottom: -0.45rem;

    width: 100%;
    height: 2px;

    content: "";

    background: var(--red);

    transform: scaleX(0);
    transform-origin: right;

    transition: transform var(--transition);
}

.site-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 1px solid var(--border-dark);
    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 19px;
    height: 2px;

    margin-inline: auto;

    background: var(--ink);

    transition:
        transform var(--transition),
        background-color var(--transition);
}

.menu-toggle span + span {
    margin-top: 6px;
}

/* ============================================================
   06. HERO
   ============================================================ */

.hero {
    overflow: hidden;

    padding:
        clamp(2.2rem, 4vw, 3.6rem)
        0
        0;

    color: var(--paper);
    background:
        radial-gradient(circle at 78% 24%, rgba(217, 61, 33, 0.12), transparent 27%),
        linear-gradient(180deg, #11100e 0%, #0e0d0b 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.74fr)
        minmax(470px, 1.26fr);

    align-items: stretch;

    min-height: 620px;
}

.hero-copy {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
        clamp(2.4rem, 4vw, 4rem)
        clamp(2rem, 4vw, 4.5rem)
        2rem
        0;
}

.hero .eyebrow {
    color: var(--red);
}

.hero h1 {
    margin-bottom: 1rem;

    color: var(--cream);

    font-family: var(--display);
    font-size: clamp(6.3rem, 10vw, 10.8rem);
    font-weight: 900;
    line-height: 0.72;

    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.hero h1 span {
    display: block;

    color: var(--red);

    transform: none;
}

.hero-tagline {
    margin-bottom: 0.8rem;

    color: var(--cream);

    font: 800 0.77rem/1.3 var(--mono);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-tagline strong {
    color: var(--red);
}

.hero-intro {
    max-width: 560px;

    margin-bottom: 1.6rem;

    color: #e2d8c7;

    font-size: 0.98rem;
    line-height: 1.62;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;

    margin-bottom: 1.8rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    width: min(100%, 760px);

    margin-top: auto;

    border: 1px solid rgba(239, 182, 47, 0.34);
    background: rgba(0, 0, 0, 0.2);
}

.hero-stats > div {
    position: relative;

    min-height: 90px;
    padding: 1rem 1.15rem;

    border-right: 1px dashed rgba(239, 182, 47, 0.35);
}

.hero-stats > div:last-child {
    border-right: 0;
}

.hero-stats span {
    display: block;

    margin-bottom: 0.3rem;

    color: #c8bdac;

    font: 700 0.53rem/1.2 var(--mono);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.hero-stats strong {
    color: var(--yellow);

    font-family: var(--display);
    font-size: clamp(1.5rem, 2.1vw, 2rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.hero-media {
    position: relative;

    min-width: 0;

    margin-right:
        min(
            0px,
            calc((100vw - var(--container)) / -2)
        );
}

.hero-image-wrap {
    position: relative;

    width: 100%;
    height: 100%;
    min-height: 620px;

    overflow: hidden;

    background: #19140f;
}

.hero-image-wrap::before {
    position: absolute;
    inset: 0;
    z-index: 1;

    content: "";

    background:
        linear-gradient(
            90deg,
            rgba(17, 16, 14, 0.95) 0%,
            rgba(17, 16, 14, 0.48) 21%,
            rgba(17, 16, 14, 0.05) 58%
        );

    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 620px;

    object-fit: cover;
    object-position: center;
}

.hero-stamp {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 122px;
    height: 122px;

    color: var(--red);
    background: rgba(17, 16, 13, 0.82);

    border: 3px solid var(--red);
    border-radius: 50%;

    text-align: center;

    transform: rotate(-10deg);
}

.hero-stamp::before {
    position: absolute;
    inset: 7px;

    content: "";

    border: 1px solid var(--red);
    border-radius: 50%;
}

.hero-stamp span,
.hero-stamp strong {
    position: relative;
    z-index: 2;
}

.hero-stamp span {
    font: 800 0.49rem/1 var(--mono);
    letter-spacing: 0.09em;
}

.hero-stamp strong {
    margin-top: 0.18rem;

    font-family: var(--display);
    font-size: 2.4rem;
    line-height: 0.85;
}

/* Reference design does not use the earlier scrolling strip. */
.marquee {
    display: none;
}

/* ============================================================
   07. MENU
   ============================================================ */

.menu-section {
    padding:
        clamp(3rem, 5vw, 4.6rem)
        0
        clamp(4rem, 6vw, 5.5rem);

    background: var(--cream);
}

.menu-section .section-heading {
    display: grid;
    grid-template-columns:
        minmax(0, 0.72fr)
        minmax(280px, 0.28fr);

    align-items: end;

    max-width: none;

    margin-bottom: 2rem;
}

.menu-section .section-heading .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0.45rem;
}

.menu-section .section-heading h2 {
    grid-column: 1;

    margin: 0;

    font-size: clamp(4.2rem, 6.3vw, 6.5rem);
}

.menu-section .section-heading > p:last-child {
    grid-column: 2;

    max-width: 330px;
    margin: 0 0 0.35rem;

    color: #494036;

    font-size: 0.9rem;
    line-height: 1.5;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 0.9rem;
}

.food-card {
    display: flex;
    flex-direction: column;

    overflow: hidden;

    border: 1px solid var(--border-dark);
    background: #efe2cb;
}

.food-image-wrap {
    position: relative;

    overflow: hidden;

    aspect-ratio: 4 / 3;

    background: var(--ink);
}

.food-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 320ms ease;
}

.food-card:hover .food-image {
    transform: scale(1.035);
}

.food-rating {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;

    padding: 0.48rem 0.58rem;

    color: var(--ink);
    background: var(--yellow);

    border: 1px solid var(--ink);

    font: 900 0.58rem/1 var(--mono);
    letter-spacing: 0.05em;
}

.food-content {
    display: flex;
    flex: 1;
    flex-direction: column;

    padding: 1rem 1rem 1.1rem;
}

.food-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 0.75rem;

    margin-bottom: 0.6rem;
}

.food-heading h3 {
    max-width: 78%;
    margin: 0;

    color: var(--ink);

    font-family: var(--display);
    font-size: clamp(1.55rem, 2.25vw, 2.2rem);
    line-height: 0.88;

    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.food-price {
    color: var(--red);

    font-family: var(--display);
    font-size: 1.7rem;
    line-height: 0.9;
}

.food-content > p {
    margin-bottom: 1rem;

    color: #453c32;

    font-size: 0.79rem;
    line-height: 1.45;
}

.food-verdict {
    display: block;

    margin-top: auto;
    padding-top: 0.7rem;

    border-top: 1px solid var(--border-dark);

    color: #60564a;

    font: 700 0.53rem/1.3 var(--mono);
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.food-verdict strong {
    color: var(--red);
}

/* ============================================================
   08. GAH SCALE
   ============================================================ */

.rating-section {
    padding:
        clamp(2.7rem, 4vw, 3.7rem)
        0;

    color: var(--paper);
    background:
        linear-gradient(180deg, #15130f 0%, #100f0c 100%);
}

.rating-layout {
    display: grid;
    grid-template-columns:
        minmax(260px, 1.12fr)
        minmax(0, 2.88fr);

    gap: 2rem;
}

.rating-heading {
    position: static;
}

.rating-section .eyebrow {
    color: var(--yellow);
}

.rating-heading h2 {
    margin-bottom: 0.8rem;

    color: var(--cream);

    font-size: clamp(3.5rem, 5vw, 5.2rem);
}

.rating-heading h2 span {
    display: inline;
    color: var(--red);
}

.rating-heading > p:last-child {
    max-width: 300px;

    margin: 0;

    color: #c0b4a3;

    font-size: 0.82rem;
    line-height: 1.45;
}

.rating-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    border-top: 0;
}

.rating-item {
    display: block;

    min-height: 170px;

    padding: 0.7rem 1.15rem 0.7rem 1.4rem;

    border-bottom: 0;
    border-left: 1px dashed rgba(239, 182, 47, 0.38);
}

.rating-score {
    display: block;

    margin-bottom: 1rem;

    color: #d4caba;

    font: 800 0.57rem/1 var(--mono);
    letter-spacing: 0.06em;
}

.rating-item h3 {
    margin-bottom: 0.65rem;

    color: var(--cream);

    font-family: var(--display);
    font-size: clamp(2.2rem, 3vw, 3.25rem);
    line-height: 0.84;

    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.rating-item p {
    max-width: 180px;
    margin: 0;

    color: #c0b4a3;

    font-size: 0.78rem;
    line-height: 1.38;
}

.rating-item-highlight h3 {
    color: var(--yellow);
}

.rating-item-max {
    position: relative;
}

.rating-item-max h3 {
    color: var(--red);
}

.rating-item-max::before {
    position: absolute;
    top: 3.2rem;
    right: 0.8rem;

    content: "CERTIFIED";

    padding: 0.38rem 0.46rem;

    color: var(--red);
    background: transparent;

    border: 1px solid var(--red);

    font: 800 0.48rem/1 var(--mono);
    letter-spacing: 0.05em;
}

/* ============================================================
   09. HOUSE POLICY
   ============================================================ */

.feature-section {
    background: var(--cream);
}

.feature-image-wrap {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(380px, 0.92fr);

    min-height: 360px;

    overflow: hidden;

    background: var(--cream);
}

.feature-image {
    grid-column: 2;
    grid-row: 1;

    width: 100%;
    height: 100%;
    min-height: 360px;

    object-fit: cover;
    object-position: center;
}

.feature-image-wrap::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    width: 54%;

    content: "";

    background:
        linear-gradient(
            90deg,
            var(--cream) 0%,
            rgba(242, 230, 207, 0.58) 12%,
            rgba(242, 230, 207, 0) 35%
        );

    pointer-events: none;
}

.feature-overlay {
    position: relative;
    top: auto;
    left: auto;
    z-index: 2;

    grid-column: 1;
    grid-row: 1;

    width: auto;

    align-self: center;

    padding:
        3rem
        clamp(2rem, 4.5vw, 5rem)
        3rem
        max(1.5rem, calc((100vw - var(--container)) / 2));

    color: var(--ink);

    transform: none;
}

.feature-overlay .eyebrow {
    color: var(--red);
}

.feature-overlay blockquote {
    max-width: 720px;

    margin-bottom: 1rem;

    color: var(--ink);

    font-family: var(--display);
    font-size: clamp(3.6rem, 5.6vw, 6rem);
    line-height: 0.8;

    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.feature-overlay blockquote em {
    color: var(--red);
    font-style: normal;
}

.feature-overlay > span {
    color: #463e35;

    font: 800 0.58rem/1 var(--mono);
    letter-spacing: 0.07em;
}

/* ============================================================
   10. ABOUT
   ============================================================ */

.about-section {
    padding:
        clamp(3.2rem, 5vw, 4.7rem)
        0;

    color: var(--paper);

    background:
        radial-gradient(circle at 70% 20%, rgba(239, 182, 47, 0.05), transparent 28%),
        var(--ink);
}

.about-grid {
    display: grid;
    grid-template-columns:
        minmax(250px, 0.78fr)
        minmax(0, 2.22fr);

    gap: clamp(3rem, 5vw, 5rem);
}

.about-section .eyebrow {
    color: var(--yellow);
}

.about-section h2 {
    margin-bottom: 0;

    color: var(--cream);

    font-size: clamp(4rem, 5.7vw, 5.8rem);
}

.about-section h2 span {
    color: var(--red);
}

.about-copy {
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(260px, 0.75fr);

    column-gap: clamp(2rem, 4vw, 4rem);

    padding-top: 0;
}

.about-lead,
.about-copy > p:not(.about-lead) {
    grid-column: 1;
}

.about-lead {
    margin-bottom: 0.9rem;

    color: var(--cream);

    font-family: var(--sans);
    font-size: 0.98rem;
    font-weight: 400;
    line-height: 1.48;
    text-transform: none;
}

.about-copy > p:not(.about-lead) {
    max-width: 580px;

    margin-bottom: 0.65rem;

    color: #c4b9a9;

    font-size: 0.82rem;
    line-height: 1.48;
}

.about-facts {
    grid-column: 2;
    grid-row: 1 / span 4;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    align-self: start;

    margin: 0;

    border-top: 1px solid rgba(239, 182, 47, 0.36);
    border-left: 1px solid rgba(239, 182, 47, 0.36);
}

.about-facts > div {
    min-height: 92px;

    padding: 1rem;

    border-right: 1px solid rgba(239, 182, 47, 0.36);
    border-bottom: 1px solid rgba(239, 182, 47, 0.36);
}

.about-facts span {
    display: block;

    margin-bottom: 0.35rem;

    color: #bcae99;

    font: 700 0.52rem/1 var(--mono);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.about-facts strong {
    color: var(--cream);

    font-family: var(--display);
    font-size: 1.35rem;
    line-height: 0.92;
    text-transform: uppercase;
}

/* ============================================================
   11. PULL UP
   ============================================================ */

.pull-up-section {
    padding:
        clamp(2.8rem, 4vw, 3.8rem)
        0;

    color: var(--paper);

    background:
        linear-gradient(90deg, #e44626 0%, #d93a20 100%);
}

.pull-up-grid {
    display: grid;
    grid-template-columns:
        minmax(280px, 0.85fr)
        minmax(0, 2.15fr);

    align-items: start;

    gap: clamp(2.5rem, 5vw, 4.5rem);
}

.pull-up-section .eyebrow {
    color: var(--yellow);
}

.pull-up-heading h2 {
    margin-bottom: 0;

    color: var(--cream);

    font-size: clamp(4.1rem, 5.7vw, 6rem);
}

.pull-up-heading h2 span {
    color: var(--yellow);
}

.pull-up-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    border-top: 1px solid rgba(255, 244, 220, 0.34);
}

.info-row {
    display: block;

    min-height: 92px;

    padding: 1rem 1.2rem;

    border-right: 1px dashed rgba(255, 244, 220, 0.34);
    border-bottom: 1px solid rgba(255, 244, 220, 0.34);
}

.info-row span {
    display: block;

    margin-bottom: 0.45rem;

    color: #ffe1a1;

    font: 800 0.53rem/1 var(--mono);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.info-row strong {
    color: var(--cream);

    font-family: var(--display);
    font-size: clamp(1.6rem, 2.3vw, 2.15rem);
    line-height: 0.9;
    text-transform: uppercase;
}

.pull-up-section .button-primary {
    justify-self: start;

    margin-top: 1.3rem;

    color: var(--ink);
    background: var(--yellow);
    border-color: var(--yellow);
}

.pull-up-section .button-primary:hover {
    color: var(--paper);
    background: var(--ink);
    border-color: var(--ink);
}

.pull-up-note {
    align-self: center;

    max-width: 420px;
    margin: 1.3rem 0 0;

    color: rgba(255, 244, 220, 0.72);

    font: 700 0.5rem/1.45 var(--mono);
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

/* ============================================================
   12. FOOTER
   ============================================================ */

.site-footer {
    padding:
        1.8rem
        0;

    color: #b9ad9b;
    background: #0f0e0c;

    border-top: 1px solid rgba(255, 244, 220, 0.13);
}

.footer-inner {
    display: grid;
    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: end;

    gap: 2rem;
}

.footer-brand {
    color: var(--cream);

    font-family: var(--display);
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.footer-inner p {
    margin:
        0.35rem
        0
        0;

    font: 700 0.52rem/1.35 var(--mono);
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: 1.3rem;
}

.footer-links a {
    color: #c5b9a8;

    font: 800 0.56rem/1 var(--mono);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--yellow);
}

.footer-meta {
    text-align: right;
}

/* ============================================================
   13. LARGE TABLET
   ============================================================ */

@media (max-width: 1120px) {

    .hero-grid {
        grid-template-columns:
            minmax(0, 0.85fr)
            minmax(420px, 1.15fr);
    }

    .hero h1 {
        font-size: clamp(5.4rem, 10vw, 8rem);
    }

    .menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .food-image-wrap {
        aspect-ratio: 16 / 10;
    }

    .rating-layout {
        grid-template-columns: 1fr;
    }

    .rating-heading {
        display: grid;
        grid-template-columns:
            minmax(250px, 0.8fr)
            minmax(280px, 1.2fr);

        align-items: end;
        gap: 2rem;
    }

    .rating-heading .eyebrow {
        grid-column: 1 / -1;
    }

    .rating-heading h2 {
        margin: 0;
    }

    .rating-heading > p:last-child {
        margin-bottom: 0.45rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-section > .container > div:first-child {
        max-width: 620px;
    }

    .pull-up-grid {
        grid-template-columns: 1fr;
    }

    .pull-up-heading {
        max-width: 720px;
    }
}

/* ============================================================
   14. TABLET / MOBILE NAV
   ============================================================ */

@media (max-width: 860px) {

    .container {
        width: min(calc(100% - 2rem), var(--container));
    }

    .header-inner {
        min-height: 72px;
    }

    .menu-toggle {
        position: relative;
        z-index: 102;

        display: block;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        z-index: 101;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        gap: 1rem;

        padding: 6rem 2rem 3rem;

        visibility: hidden;
        opacity: 0;

        color: var(--paper);
        background: var(--ink);

        transform: translateY(-12px);

        transition:
            opacity var(--transition),
            visibility var(--transition),
            transform var(--transition);
    }

    .site-nav.is-open {
        visibility: visible;
        opacity: 1;

        transform: translateY(0);
    }

    .site-nav a {
        color: var(--cream);

        font-family: var(--display);
        font-size: clamp(3rem, 12vw, 5rem);
        letter-spacing: -0.02em;
        text-transform: uppercase;
    }

    .site-nav a::after {
        display: none;
    }

    .menu-toggle.is-active {
        border-color: rgba(255, 244, 220, 0.25);
    }

    .menu-toggle.is-active span {
        background: var(--cream);
    }

    .menu-toggle.is-active span:first-child {
        transform:
            translateY(4px)
            rotate(45deg);
    }

    .menu-toggle.is-active span:last-child {
        transform:
            translateY(-4px)
            rotate(-45deg);
    }

    .hero {
        padding-top: 0;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr;

        width: 100%;
        min-height: auto;
    }

    .hero-copy {
        padding:
            3.5rem
            0
            2rem;
    }

    .hero-media {
        margin: 0;
    }

    .hero-image-wrap,
    .hero-image {
        min-height: 520px;
    }

    .hero-image-wrap::before {
        background:
            linear-gradient(
                180deg,
                rgba(17, 16, 14, 0.15) 0%,
                rgba(17, 16, 14, 0.03) 60%,
                rgba(17, 16, 14, 0.5) 100%
            );
    }

    .feature-image-wrap {
        grid-template-columns: 1fr;
    }

    .feature-image {
        grid-column: 1;
        grid-row: 2;

        min-height: 340px;
    }

    .feature-image-wrap::after {
        display: none;
    }

    .feature-overlay {
        grid-column: 1;
        grid-row: 1;

        padding:
            3.2rem
            1rem;
    }

    .about-copy {
        grid-template-columns: 1fr;
    }

    .about-lead,
    .about-copy > p:not(.about-lead),
    .about-facts {
        grid-column: 1;
    }

    .about-facts {
        grid-row: auto;
        margin-top: 1.6rem;
    }
}

/* ============================================================
   15. MOBILE
   ============================================================ */

@media (max-width: 640px) {

    body {
        font-size: 15px;
    }

    .brand-copy small {
        display: none;
    }

    .brand-mark {
        width: 44px;
        height: 44px;
    }

    .hero-copy {
        padding-top: 2.8rem;
    }

    .hero h1 {
        font-size: clamp(5.3rem, 27vw, 7.2rem);
        line-height: 0.72;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-stats > div {
        min-height: auto;

        border-right: 0;
        border-bottom: 1px dashed rgba(239, 182, 47, 0.35);
    }

    .hero-stats > div:last-child {
        border-bottom: 0;
    }

    .hero-image-wrap,
    .hero-image {
        min-height: 430px;
    }

    .hero-stamp {
        top: 1rem;
        right: 1rem;

        width: 96px;
        height: 96px;
    }

    .hero-stamp strong {
        font-size: 1.9rem;
    }

    .menu-section .section-heading {
        display: block;
    }

    .menu-section .section-heading h2 {
        margin-bottom: 1rem;

        font-size: clamp(4rem, 19vw, 5.6rem);
    }

    .menu-section .section-heading > p:last-child {
        margin: 0;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .food-image-wrap {
        aspect-ratio: 16 / 10;
    }

    .food-heading h3 {
        font-size: 2rem;
    }

    .rating-heading {
        display: block;
    }

    .rating-heading h2 {
        margin-bottom: 0.8rem;
    }

    .rating-list {
        grid-template-columns: 1fr;
    }

    .rating-item {
        min-height: auto;

        padding:
            1.4rem
            0;

        border-left: 0;
        border-bottom: 1px dashed rgba(239, 182, 47, 0.38);
    }

    .rating-item p {
        max-width: 520px;
    }

    .rating-item-max::before {
        position: static;

        display: inline-block;

        margin-bottom: 0.8rem;
    }

    .feature-overlay blockquote {
        font-size: clamp(3.3rem, 16vw, 4.8rem);
    }

    .about-facts {
        grid-template-columns: 1fr;
    }

    .pull-up-info {
        grid-template-columns: 1fr;
    }

    .info-row {
        min-height: auto;

        border-right: 0;
    }

    .pull-up-section .button-primary {
        width: 100%;
    }

    .footer-inner {
        grid-template-columns: 1fr;

        gap: 1.4rem;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .footer-meta {
        text-align: left;
    }
}

/* ============================================================
   16. REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* ============================================================
   17. TYPOGRAPHY STABILIZATION PASS
   Keeps the approved layout/design, fixes oversized and
   overlapping display text throughout the page.
   ============================================================ */

:root {
    /*
       Less extreme than Impact. Arial Narrow is widely available
       on Windows; the fallbacks remain predictable everywhere else.
    */
    --display:
        "Arial Narrow",
        Arial,
        Helvetica,
        sans-serif;
}


/* ------------------------------------------------------------
   GLOBAL DISPLAY TYPE
   ------------------------------------------------------------ */

.section-heading h2,
.rating-heading h2,
.about-section h2,
.pull-up-heading h2,
.hero h1,
.food-heading h3,
.food-price,
.rating-item h3,
.feature-overlay blockquote,
.about-facts strong,
.info-row strong,
.brand-mark,
.brand-copy strong,
.footer-brand {
    font-weight: 900;
    font-stretch: condensed;

    overflow-wrap: normal;
    word-break: normal;
}

.section-heading h2,
.rating-heading h2,
.about-section h2,
.pull-up-heading h2,
.feature-overlay blockquote {
    text-wrap: balance;
}


/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */

.hero h1 {
    font-size: clamp(5rem, 8vw, 8.4rem);
    line-height: 0.84;
    letter-spacing: -0.045em;
}

.hero h1 span {
    line-height: 0.86;
}

.hero-tagline {
    font-size: 0.75rem;
    line-height: 1.35;
}

.hero-intro {
    max-width: 540px;

    font-size: 0.95rem;
    line-height: 1.65;
}


/* The three KPI boxes are narrow inside the left hero column.
   Use a strong sans instead of oversized display type so they fit. */

.hero-stats strong {
    display: block;

    max-width: 100%;

    font-family: var(--sans);
    font-size: clamp(1rem, 1.35vw, 1.28rem);
    font-weight: 900;
    line-height: 1.05;

    letter-spacing: -0.035em;
    text-transform: uppercase;

    white-space: normal;
}

.hero-stats span {
    font-size: 0.5rem;
    line-height: 1.2;
}

.hero-stats > div {
    min-width: 0;
    padding-inline: 1rem;
}


/* ------------------------------------------------------------
   MENU HEADING
   ------------------------------------------------------------ */

.menu-section .section-heading h2 {
    font-size: clamp(3.65rem, 5.3vw, 5.4rem);
    line-height: 0.9;
    letter-spacing: -0.035em;
}

.menu-section .section-heading h2 span {
    line-height: 0.9;
}

.menu-section .section-heading > p:last-child {
    font-size: 0.88rem;
    line-height: 1.5;
}


/* ------------------------------------------------------------
   FOOD CARDS
   ------------------------------------------------------------ */

.food-heading {
    gap: 0.6rem;
}

.food-heading h3 {
    max-width: 76%;

    font-size: clamp(1.35rem, 1.75vw, 1.68rem);
    line-height: 1;
    letter-spacing: -0.035em;
}

.food-price {
    font-size: clamp(1.35rem, 1.8vw, 1.65rem);
    line-height: 1;
}

.food-content > p {
    font-size: 0.8rem;
    line-height: 1.48;
}

.food-verdict {
    font-size: 0.5rem;
    line-height: 1.35;
}


/* ------------------------------------------------------------
   GAH SCALE
   ------------------------------------------------------------ */

.rating-heading h2 {
    font-size: clamp(3rem, 4vw, 4.25rem);
    line-height: 0.9;
    letter-spacing: -0.03em;
}

.rating-heading h2 span {
    line-height: 0.92;
}

.rating-heading > p:last-child {
    font-size: 0.82rem;
    line-height: 1.5;
}

.rating-item h3 {
    max-width: 100%;

    font-size: clamp(1.85rem, 2.4vw, 2.5rem);
    line-height: 0.93;
    letter-spacing: -0.035em;
}

.rating-item p {
    font-size: 0.77rem;
    line-height: 1.42;
}

.rating-item-max::before {
    top: 3rem;
    right: 0.55rem;

    font-size: 0.44rem;
}


/* ------------------------------------------------------------
   HOUSE POLICY
   ------------------------------------------------------------ */

.feature-overlay blockquote {
    max-width: 650px;

    font-size: clamp(2.9rem, 4.25vw, 4.45rem);
    line-height: 0.91;
    letter-spacing: -0.04em;
}

.feature-overlay blockquote em {
    line-height: inherit;
}


/* ------------------------------------------------------------
   ABOUT / STORY
   ------------------------------------------------------------ */

.about-section h2 {
    font-size: clamp(3.15rem, 4.4vw, 4.7rem);
    line-height: 0.9;
    letter-spacing: -0.035em;
}

.about-section h2 span {
    line-height: 0.9;
}

.about-lead {
    font-size: 0.95rem;
    line-height: 1.52;
}

.about-copy > p:not(.about-lead) {
    font-size: 0.82rem;
    line-height: 1.52;
}

.about-facts strong {
    display: block;

    max-width: 100%;

    font-family: var(--sans);
    font-size: clamp(0.98rem, 1.25vw, 1.18rem);
    font-weight: 900;
    line-height: 1.08;

    letter-spacing: -0.025em;
    white-space: normal;
}


/* ------------------------------------------------------------
   PULL UP / HOURS
   ------------------------------------------------------------ */

.pull-up-heading h2 {
    font-size: clamp(3.35rem, 4.75vw, 4.9rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
}

.pull-up-heading h2 span {
    line-height: 0.91;
}

.info-row strong {
    display: block;

    max-width: 100%;

    font-size: clamp(1.25rem, 1.75vw, 1.7rem);
    line-height: 1.02;
    letter-spacing: -0.025em;

    white-space: normal;
}


/* ------------------------------------------------------------
   BRAND / FOOTER
   ------------------------------------------------------------ */

.brand-copy strong {
    font-size: 0.98rem;
    line-height: 1;
}

.brand-copy small {
    font-size: 0.49rem;
}

.footer-brand {
    font-size: 1rem;
}


/* ============================================================
   TABLET TYPOGRAPHY
   ============================================================ */

@media (max-width: 1120px) {

    .hero h1 {
        font-size: clamp(4.75rem, 7.3vw, 6.7rem);
        line-height: 0.85;
    }

    .hero-stats strong {
        font-size: 1rem;
        line-height: 1.05;
    }

    .menu-section .section-heading h2 {
        font-size: clamp(3.4rem, 5vw, 4.7rem);
    }

    .food-heading h3 {
        font-size: 1.55rem;
    }

    .rating-heading h2 {
        font-size: clamp(3rem, 4.8vw, 4rem);
    }

    .feature-overlay blockquote {
        font-size: clamp(2.8rem, 5vw, 4rem);
    }

    .about-section h2 {
        font-size: clamp(3.2rem, 5vw, 4.2rem);
    }

    .pull-up-heading h2 {
        font-size: clamp(3.4rem, 5vw, 4.4rem);
    }

}


/* ============================================================
   MOBILE TYPOGRAPHY
   ============================================================ */

@media (max-width: 640px) {

    .hero h1 {
        font-size: clamp(4.2rem, 21vw, 5.8rem);
        line-height: 0.86;
        letter-spacing: -0.04em;
    }

    .hero h1 span {
        line-height: 0.88;
    }

    .hero-stats strong {
        font-size: 1.1rem;
    }

    .menu-section .section-heading h2 {
        font-size: clamp(3.25rem, 15vw, 4.35rem);
        line-height: 0.92;
    }

    .food-heading h3 {
        max-width: 78%;

        font-size: 1.65rem;
        line-height: 1;
    }

    .food-price {
        font-size: 1.5rem;
    }

    .rating-heading h2 {
        font-size: clamp(3rem, 14vw, 4rem);
        line-height: 0.92;
    }

    .rating-item h3 {
        font-size: clamp(2rem, 10vw, 2.7rem);
        line-height: 0.95;
    }

    .feature-overlay blockquote {
        font-size: clamp(2.7rem, 12vw, 3.8rem);
        line-height: 0.93;
    }

    .about-section h2 {
        font-size: clamp(3rem, 14vw, 4rem);
        line-height: 0.92;
    }

    .pull-up-heading h2 {
        font-size: clamp(3rem, 14vw, 4rem);
        line-height: 0.92;
    }

    .info-row strong {
        font-size: 1.45rem;
        line-height: 1.05;
    }

}


/* ============================================================
   18. FINAL TYPE FIT PASS
   Targeted fixes only — approved layout/colors remain intact.
   ============================================================ */

/* ------------------------------------------------------------
   HERO — keep DAT BIH together on one line
   ------------------------------------------------------------ */

.hero h1 {
    max-width: 100%;

    font-size: clamp(4.35rem, 6vw, 5.55rem);
    line-height: 0.86;
}

.hero h1 span {
    line-height: 0.88;
}


/* Give the KPI labels just a little more breathing room. */

.hero-stats strong {
    font-size: clamp(0.88rem, 1.05vw, 1rem);
    line-height: 1.06;
    letter-spacing: -0.025em;
}

.hero-stats > div {
    padding-inline: 0.9rem;
}


/* ------------------------------------------------------------
   GAH SCALE — final column fit
   ------------------------------------------------------------ */

.rating-item {
    min-width: 0;
}

.rating-item-max {
    padding-right: 0.75rem;
}

.rating-item-max h3 {
    max-width: 100%;

    padding-right: 0;

    font-size: clamp(1.48rem, 1.72vw, 1.9rem);
    line-height: 0.96;
    letter-spacing: -0.035em;
}

.rating-item-max::before {
    top: 3.05rem;
    right: 0.45rem;

    padding: 0.32rem 0.38rem;

    font-size: 0.39rem;
}


/* ------------------------------------------------------------
   ABOUT — exactly two headline lines
   ------------------------------------------------------------ */

.about-section h2 {
    font-size: clamp(2.9rem, 3.8vw, 3.8rem);
    line-height: 0.91;
}

.about-section h2,
.about-section h2 span {
    white-space: nowrap;
}


/* Keep each fact inside its own cell. */

.about-facts > div {
    min-width: 0;
    overflow: hidden;

    padding:
        1rem
        1.05rem;
}

.about-facts strong {
    max-width: 100%;

    font-size: clamp(0.84rem, 0.95vw, 0.98rem);
    line-height: 1.08;
    letter-spacing: -0.025em;

    overflow-wrap: break-word;
    word-break: normal;
}


/* ============================================================
   FINAL TABLET FIT
   ============================================================ */

@media (max-width: 1120px) {

    .hero h1 {
        font-size: clamp(4.15rem, 6.1vw, 5.2rem);
    }

    .about-section h2 {
        font-size: clamp(2.9rem, 4.4vw, 3.55rem);
    }

    .about-facts strong {
        font-size: 0.9rem;
    }

}


/* ============================================================
   FINAL MOBILE FIT
   ============================================================ */

@media (max-width: 640px) {

    .hero h1 {
        font-size: clamp(4rem, 20vw, 5.2rem);
        line-height: 0.87;
    }

    .about-section h2,
    .about-section h2 span {
        white-space: normal;
    }

    .about-section h2 {
        font-size: clamp(2.9rem, 13vw, 3.9rem);
    }

    .rating-item-max h3 {
        font-size: clamp(1.95rem, 9vw, 2.6rem);
    }

    .rating-item-max::before {
        position: static;

        display: inline-block;

        margin-bottom: 0.7rem;

        font-size: 0.45rem;
    }

}


/* ============================================================
   19. FINAL MICRO-FIT FIXES
   Only the two remaining typography collisions.
   ============================================================ */


/* ------------------------------------------------------------
   ABOUT FACTS — keep QUESTIONABLE on one clean line
   ------------------------------------------------------------ */

.about-facts > div {
    padding-left: 0.72rem;
    padding-right: 0.72rem;
}

.about-facts strong {
    font-family: var(--display);
    font-size: 0.84rem;
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

/* VIBES value is one word and should never split. */
.about-facts > div:nth-child(3) strong {
    white-space: nowrap;
    font-size: 0.78rem;
}


/* ------------------------------------------------------------
   ABSOLUTELY GAH — move CERTIFIED badge into normal flow
   ------------------------------------------------------------ */

.rating-item-max::before {
    position: static;

    display: inline-block;

    margin: 0 0 0.72rem;

    padding: 0.34rem 0.42rem;

    font-size: 0.4rem;
}

.rating-item-max h3 {
    margin-bottom: 0.58rem;
}


/* ------------------------------------------------------------
   MOBILE SAFETY
   ------------------------------------------------------------ */

@media (max-width: 640px) {

    .about-facts > div:nth-child(3) strong {
        white-space: normal;
        font-size: 0.9rem;
    }

}


/* ============================================================
   20. STRUCTURAL TYPOGRAPHY CORRECTIONS
   Fixes the two issues visible after V4:
   1) CERTIFIED must not push "04" downward.
   2) ABOUT headline must not intrude into body copy.
   ============================================================ */


/* ------------------------------------------------------------
   GAH SCALE — CERTIFIED badge no longer participates in flow
   ------------------------------------------------------------ */

.rating-item-max {
    position: relative;

    /*
       Reserve a little room at the bottom for the badge.
       This keeps it completely separate from 04 / heading / copy.
    */
    padding-bottom: 2.6rem;
}

/* Kill the V4 flow-based badge. */
.rating-item-max::before {
    content: none !important;
    display: none !important;
}

/* Re-create it after the card content and anchor it low/right. */
.rating-item-max::after {
    position: absolute;
    right: 0.75rem;
    bottom: 0.72rem;

    display: inline-block;

    content: "CERTIFIED";

    padding: 0.34rem 0.45rem;

    color: var(--red);
    background: transparent;

    border: 1px solid var(--red);

    font: 800 0.4rem/1 var(--mono);
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.rating-item-max .rating-score {
    margin-top: 0;
}


/* ------------------------------------------------------------
   ABOUT — give headline its own real column
   ------------------------------------------------------------ */

.about-grid {
    grid-template-columns:
        minmax(300px, 0.86fr)
        minmax(0, 2.14fr);

    column-gap: clamp(4rem, 6vw, 6rem);
}

.about-grid > div:first-child {
    min-width: 0;

    padding-right: 0.5rem;
}

.about-section h2 {
    max-width: 290px;

    font-size: clamp(2.55rem, 3.35vw, 3.15rem);
    line-height: 0.93;
    letter-spacing: -0.035em;
}

.about-section h2,
.about-section h2 span {
    white-space: nowrap;
}

.about-copy {
    min-width: 0;
}

.about-lead {
    max-width: 620px;
}


/* ------------------------------------------------------------
   ABOUT FACT CELLS — preserve fit after column adjustment
   ------------------------------------------------------------ */

.about-facts > div {
    min-width: 0;
}

.about-facts > div:nth-child(3) strong {
    white-space: nowrap;
    font-size: 0.76rem;
}


/* ============================================================
   TABLET — stack before the heading can collide again
   ============================================================ */

@media (max-width: 980px) {

    .about-grid {
        grid-template-columns: 1fr;

        row-gap: 2.4rem;
    }

    .about-grid > div:first-child {
        max-width: 620px;

        padding-right: 0;
    }

    .about-section h2 {
        max-width: none;

        font-size: clamp(3rem, 7vw, 4rem);
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 640px) {

    .about-section h2,
    .about-section h2 span {
        white-space: normal;
    }

    .about-section h2 {
        font-size: clamp(2.8rem, 13vw, 3.8rem);
    }

    .about-facts > div:nth-child(3) strong {
        white-space: normal;
        font-size: 0.9rem;
    }

    .rating-item-max {
        padding-bottom: 3rem;
    }

    .rating-item-max::after {
        right: auto;
        left: 0;
        bottom: 0.8rem;
    }

}
