/* ===================================
   Matus Burritos — Banker Discipline, Imbiss Punk
   =================================== */

@font-face {
    font-family: 'Uniform Rounded';
    src: url('fonts/Uniform Rounded.eot');
    src: url('fonts/Uniform Rounded.eot?#iefix') format('embedded-opentype'),
         url('fonts/Uniform Rounded.woff2') format('woff2'),
         url('fonts/Uniform Rounded.woff') format('woff'),
         url('fonts/Uniform Rounded.ttf') format('truetype'),
         url('fonts/Uniform Rounded.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #f5820a;
    --orange-dark: #cb6900;
    --green: #45c356;
    --green-dark: #2fa83f;

    --ink: #100d09;
    --ink-surface: #18130e;
    --ink-raised: #211913;
    --ink-line: rgba(255, 255, 255, 0.08);
    --paper: #efe4d2;
    --paper-strong: #fff7ec;
    --paper-line: rgba(16, 13, 9, 0.12);

    --text-dark: #f5ebdb;
    --text-dark-muted: rgba(245, 235, 219, 0.72);
    --text-light: #18130e;
    --text-light-muted: rgba(24, 19, 14, 0.7);

    --radius-sm: 4px;
    --radius-md: 10px;
    --radius-lg: 18px;

    --shadow-sm: 0 6px 16px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 18px 44px rgba(0, 0, 0, 0.18);
    --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.28);
    --shadow-xl: 0 40px 120px rgba(0, 0, 0, 0.34);
    --gradient-primary: linear-gradient(135deg, #f5820a 0%, #f2a022 100%);

    --fast: 180ms ease;
    --base: 320ms cubic-bezier(0.22, 1, 0.36, 1);
    --slow: 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background:
        radial-gradient(circle at top left, rgba(245, 130, 10, 0.08), transparent 28%),
        linear-gradient(180deg, #0f0b08 0%, #130f0a 100%);
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.32;
    mix-blend-mode: soft-light;
    z-index: -1;
}

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

a {
    color: inherit;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Uniform Rounded', sans-serif;
    line-height: 0.95;
}

.section-heading {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.section-heading.split {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    align-items: end;
}

.section-kicker {
    font-family: 'Azeret Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.8rem;
}

.section-kicker.ink {
    color: var(--orange-dark);
}

.section-title {
    font-size: clamp(2.8rem, 6vw, 5.8rem);
    letter-spacing: 0.02em;
}

.section-lead {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text-dark-muted);
    max-width: 34rem;
    justify-self: end;
    line-height: 1.7;
}

.section-lead.ink {
    color: var(--text-light-muted);
}

.accent {
    color: var(--green);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 9, 7, 0.76);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(245, 130, 10, 0.12);
    transition: var(--base);
}

.navbar.scrolled {
    background: rgba(11, 9, 7, 0.92);
    border-bottom-color: rgba(245, 130, 10, 0.22);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: 78px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    position: relative;
    text-decoration: none;
    font-family: 'Azeret Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 235, 219, 0.84);
    transition: color var(--fast), opacity var(--fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.55rem;
    width: 100%;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--fast);
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-cta {
    padding: 0.8rem 1.3rem;
    font-size: 0.82rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1.8rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    font-family: 'Azeret Mono', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--fast), background var(--fast), color var(--fast), border-color var(--fast), box-shadow var(--fast);
}

.cta-button.primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 10px 30px rgba(245, 130, 10, 0.24);
}

.cta-button.primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(245, 130, 10, 0.32);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-dark);
    border-color: rgba(245, 235, 219, 0.35);
}

.cta-button.secondary:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 1.05rem 2.2rem;
}

.cta-button svg {
    transition: transform var(--fast);
}

.cta-button:hover svg {
    transform: translateX(3px);
}

.cta-button.full-width {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.35rem;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--base);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    padding-top: 78px;
    overflow: hidden;
    border-bottom: 1px solid rgba(245, 130, 10, 0.12);
}

.hero-background,
.hero-overlay,
.hero-noise {
    position: absolute;
    inset: 0;
}

.hero-background {
    background-image: url('images/Website/BurritosSessionsHeader1920.jpg');
    background-size: cover;
    background-position: center center;
}

@media (max-width: 768px) {
    .hero-background {
        background-image: url('images/Website/BurritosSessionsHeaderMobile.jpg');
        background-position: center top;
    }
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(9, 8, 6, 0.92) 0%, rgba(9, 8, 6, 0.62) 42%, rgba(9, 8, 6, 0.25) 72%, rgba(9, 8, 6, 0.6) 100%),
        linear-gradient(180deg, rgba(16, 13, 9, 0.12) 0%, rgba(16, 13, 9, 0.88) 88%);
}

.hero-noise {
    opacity: 0.16;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px),
        radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px);
    background-size: 14px 14px, 18px 18px;
    mix-blend-mode: soft-light;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: end;
    padding: 4rem 0 3.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
    gap: 2rem;
    align-items: end;
}

.hero-copy {
    max-width: 760px;
}

.hero-kicker {
    display: inline-flex;
    padding: 0.45rem 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(69, 195, 86, 0.3);
    background: rgba(69, 195, 86, 0.08);
    color: var(--green);
    font-family: 'Azeret Mono', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-title {
    display: block;
    font-size: clamp(4rem, 9vw, 8.2rem);
    color: #fff6ea;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-wrap: balance;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
    max-width: 44rem;
    margin-top: 1.25rem;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.55;
    color: rgba(255, 246, 234, 0.84);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.6rem;
}

.proof-chip {
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.22);
    color: var(--text-dark);
    font-family: 'Azeret Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

.hero-note {
    position: relative;
    justify-self: end;
    max-width: 320px;
    padding: 1.4rem 1.3rem 1.2rem;
    background: rgba(239, 228, 210, 0.94);
    color: var(--text-light);
    border: 1px solid rgba(16, 13, 9, 0.16);
    box-shadow: var(--shadow-md);
    transform: rotate(-2.5deg) translateY(1rem);
}

.hero-note::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 22px;
    width: 82px;
    height: 24px;
    background: rgba(69, 195, 86, 0.84);
    opacity: 0.88;
    transform: rotate(4deg);
}

.hero-note p {
    font-family: 'Newsreader', serif;
    font-size: 1.1rem;
    line-height: 1.45;
}

.note-stamp {
    display: inline-block;
    margin-bottom: 0.8rem;
    font-family: 'Azeret Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange-dark);
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 1.6rem;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator span {
    display: block;
    width: 28px;
    height: 48px;
    border: 2px solid rgba(245, 235, 219, 0.48);
    border-radius: 999px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 5px;
    height: 10px;
    border-radius: 999px;
    background: var(--orange);
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

.features,
.menu,
.about,
.testimonials,
.locations,
.footer {
    position: relative;
}

.features {
    padding: 6rem 0;
    background:
        linear-gradient(180deg, rgba(17, 13, 10, 0.96) 0%, rgba(20, 15, 10, 0.98) 100%);
}

.features::before,
.locations::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: repeating-linear-gradient(
        135deg,
        transparent 0,
        transparent 14px,
        rgba(255, 255, 255, 0.018) 14px,
        rgba(255, 255, 255, 0.018) 15px
    );
    opacity: 0.4;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(245, 130, 10, 0.16);
    border-bottom: 1px solid rgba(245, 130, 10, 0.16);
}

.feature-card {
    padding: 2.4rem 1.6rem 2rem;
    position: relative;
    transition: transform var(--base), background var(--base);
}

.feature-card:not(:last-child) {
    border-right: 1px solid rgba(245, 130, 10, 0.12);
}

.feature-card:hover {
    background: rgba(245, 130, 10, 0.04);
    transform: translateY(-6px);
}

.feature-number {
    display: block;
    margin-bottom: 0.8rem;
    font-family: 'Azeret Mono', monospace;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
}

.feature-card h3 {
    font-size: clamp(1.8rem, 3vw, 2.55rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    max-width: 22rem;
    color: var(--text-dark-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.menu {
    padding: 6.5rem 0;
    background:
        linear-gradient(180deg, rgba(245, 238, 225, 1) 0%, rgba(239, 228, 210, 1) 100%);
    color: var(--text-light);
}

.menu::before,
.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background:
        linear-gradient(-45deg, transparent 8px, var(--ink) 0) left,
        linear-gradient(45deg, transparent 8px, var(--ink) 0) right;
    background-size: 20px 10px;
    background-repeat: repeat-x;
    opacity: 0.85;
}

.menu-heading {
    align-items: center;
}

.menu-intro {
    display: grid;
    gap: 1rem;
    justify-items: end;
}

.menu-stamp {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.8rem;
    border: 1px solid rgba(16, 13, 9, 0.22);
    color: var(--orange-dark);
    font-family: 'Azeret Mono', monospace;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transform: rotate(-2deg);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.menu-item {
    display: flex;
    flex-direction: column;
    background: rgba(255, 248, 238, 0.92);
    border: 1px solid var(--paper-line);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform var(--base), box-shadow var(--base);
}

.menu-item:nth-child(2n) {
    transform: translateY(1rem);
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.menu-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #221a13;
}

.menu-image::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 40%;
    background: linear-gradient(180deg, transparent 0%, rgba(16, 13, 9, 0.4) 100%);
}

.menu-image picture,
.menu-image img {
    width: 100%;
    height: 100%;
}

.menu-image img {
    object-fit: cover;
    transition: transform var(--slow);
}

.menu-item:hover .menu-image img {
    transform: scale(1.06);
}

.menu-content {
    display: grid;
    gap: 0.8rem;
    padding: 1.3rem 1.3rem 1.5rem;
}

.menu-meta,
.menu-option {
    font-family: 'Azeret Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.menu-meta {
    color: var(--orange-dark);
}

.menu-content h3 {
    font-size: 1.5rem;
    color: var(--text-light);
}

.menu-content p:not(.menu-meta) {
    color: var(--text-light-muted);
    line-height: 1.65;
}

.menu-option {
    display: inline-flex;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(16, 13, 9, 0.1);
    color: var(--green-dark);
}

.menu-cta {
    display: flex;
    justify-content: center;
    margin-top: 3.4rem;
}

.midpage-banner {
    position: relative;
    min-height: 440px;
    overflow: hidden;
}

.midpage-banner img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem;
    background:
        linear-gradient(90deg, rgba(15, 11, 8, 0.82) 0%, rgba(15, 11, 8, 0.5) 44%, rgba(15, 11, 8, 0.18) 100%);
}

.banner-text {
    max-width: 760px;
}

.banner-tag {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.5rem 0.8rem;
    background: rgba(69, 195, 86, 0.88);
    color: #0f0b08;
    font-family: 'Azeret Mono', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.banner-text h2 {
    font-size: clamp(3rem, 6vw, 6.8rem);
    color: #fff6ea;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 0.94;
}

.about {
    padding: 6.5rem 0;
    background:
        linear-gradient(180deg, rgba(16, 13, 9, 0.98) 0%, rgba(24, 19, 14, 1) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    gap: 2.2rem;
    align-items: center;
}

.about .section-title {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.manifesto-card {
    position: relative;
    display: grid;
    gap: 1.2rem;
    padding: 1.6rem;
    border-left: 3px solid var(--orange);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.manifesto-card p {
    color: var(--text-dark-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 2.2rem;
    background: rgba(69, 195, 86, 0.16);
}

.stat {
    padding: 1.4rem 1rem;
    background: var(--ink-raised);
}

.stat h3 {
    font-size: clamp(1.5rem, 2.8vw, 2.8rem);
    color: var(--orange);
    margin-bottom: 0.4rem;
}

.stat p {
    font-family: 'Azeret Mono', monospace;
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-dark-muted);
}

.about-image {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(16, 13, 9, 0.4) 100%);
}

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

.image-sticker {
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 1;
    padding: 0.7rem 0.9rem;
    background: rgba(239, 228, 210, 0.94);
    color: var(--text-light);
    font-family: 'Azeret Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transform: rotate(-4deg);
    box-shadow: var(--shadow-sm);
}

.testimonials {
    padding: 6.5rem 0;
    background: linear-gradient(180deg, rgba(248, 241, 229, 1) 0%, rgba(239, 228, 210, 1) 100%);
    color: var(--text-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.testimonial-card {
    position: relative;
    padding: 1.6rem 1.4rem;
    background: rgba(255, 248, 238, 0.98);
    border: 1px solid rgba(16, 13, 9, 0.1);
    box-shadow: var(--shadow-sm);
    transition: transform var(--base), box-shadow var(--base);
}

.testimonial-card:nth-child(odd) {
    transform: rotate(-1deg);
}

.testimonial-card:nth-child(even) {
    transform: rotate(1deg);
}

.testimonial-card:hover {
    transform: translateY(-6px) rotate(0deg);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    font-size: 0.86rem;
    letter-spacing: 0.24em;
    color: var(--orange-dark);
    margin-bottom: 0.8rem;
}

.testimonial-card p {
    font-family: 'Newsreader', serif;
    font-size: 1.28rem;
    line-height: 1.4;
    color: var(--text-light);
    margin-bottom: 1.3rem;
}

.testimonial-author strong {
    display: block;
    font-family: 'Azeret Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-light);
}

.testimonial-author span {
    font-size: 0.84rem;
    color: var(--text-light-muted);
}

.locations {
    padding: 6.5rem 0;
    background: linear-gradient(180deg, rgba(17, 13, 10, 1) 0%, rgba(12, 10, 7, 1) 100%);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
}

.location-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(33, 25, 19, 0.94) 0%, rgba(24, 19, 14, 1) 100%);
    border: 1px solid rgba(245, 130, 10, 0.14);
    box-shadow: var(--shadow-sm);
    transition: transform var(--base), border-color var(--fast), box-shadow var(--base);
}

.location-card:hover {
    transform: translateY(-8px);
    border-color: rgba(69, 195, 86, 0.28);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

.location-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid rgba(245, 130, 10, 0.14);
}

.location-tag {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-family: 'Azeret Mono', monospace;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
}

.location-header h3 {
    font-size: clamp(2rem, 4vw, 2.7rem);
    color: var(--text-dark);
}

.location-badge {
    align-self: start;
    padding: 0.35rem 0.55rem;
    border: 1px solid rgba(245, 235, 219, 0.16);
    color: var(--orange);
    font-family: 'Azeret Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.location-details {
    display: grid;
    gap: 1.4rem;
    height: 100%;
}

.location-address strong,
.location-hours strong,
.contact-info-item h3,
.footer-section h4 {
    display: block;
    margin-bottom: 0.45rem;
    font-family: 'Azeret Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
}

.location-address p,
.location-hours p,
.contact-info-item p,
.footer-section p,
.footer-section li,
.footer-section a,
.footer-bottom p {
    color: var(--text-dark-muted);
}

.contact-info-section {
    display: flex;
    justify-content: center;
    margin-top: 2.6rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(245, 130, 10, 0.14);
}

.contact-icon {
    min-width: 54px;
    font-family: 'Azeret Mono', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
}

.contact-info-item a {
    text-decoration: none;
}

.contact-info-item a:hover {
    color: #fff;
}

.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(245, 130, 10, 0.12);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--green) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li + li,
.footer-section .social-links a + a {
    margin-top: 0.45rem;
}

.footer-section a {
    text-decoration: none;
    transition: color var(--fast);
}

.footer-section a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-bottom {
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(18px);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.14s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.28s both;
}

/* Responsive */
@media (max-width: 1080px) {
    .section-heading.split,
    .hero-grid,
    .about-content,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .section-lead,
    .menu-intro {
        justify-self: start;
    }

    .hero-note {
        justify-self: start;
        max-width: 420px;
        transform: rotate(-1.4deg);
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(82vw, 320px);
        height: 100vh;
        padding: 6rem 1.5rem 2rem;
        background: rgba(16, 13, 9, 0.98);
        border-left: 1px solid rgba(245, 130, 10, 0.14);
        flex-direction: column;
        align-items: flex-start;
        gap: 1.4rem;
        transition: var(--base);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

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

    .feature-card:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(245, 130, 10, 0.12);
    }

    .menu-item:nth-child(2n) {
        transform: none;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 1.25rem, 1240px);
    }

    .hero-content {
        padding-bottom: 5rem;
    }

    .hero-title {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-button {
        width: 100%;
    }

    .hero-note {
        max-width: none;
        margin-top: 0.8rem;
    }

    .menu-grid,
    .testimonials-grid,
    .locations-grid,
    .about-stats {
        grid-template-columns: 1fr;
    }

    .midpage-banner,
    .midpage-banner img {
        min-height: 360px;
    }

    .about-image {
        min-height: 420px;
    }
}

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