:root {
    --primary: #d7a85d;
    --primary-strong: #f4c87d;
    --secondary: #ff7a59;
    --surface: rgba(17, 23, 34, 0.82);
    --surface-strong: #121927;
    --surface-soft: #1a2334;
    --surface-card: rgba(23, 32, 48, 0.92);
    --bg-dark: #09111d;
    --bg-darker: #060b13;
    --text-light: #f7f3eb;
    --text-muted: #aab7c7;
    --text-dark: #111827;
    --border: rgba(255, 255, 255, 0.1);
    --border-gold: rgba(215, 168, 93, 0.24);
    --gradient-brand: linear-gradient(135deg, #f4c87d 0%, #d7a85d 38%, #ff7a59 100%);
    --gradient-panel: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    --shadow-premium: 0 18px 60px rgba(0, 0, 0, 0.35);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.2);
    --font-heading: "Cormorant Garamond", serif;
    --font-body: "Manrope", sans-serif;
    --container-width: 1240px;
    --status-strip-height: 44px;
    --navbar-height: 64px;
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --transition: all 0.35s ease;
    --branch-image: url("https://www.arrangedmarriage.co.nz/palm.jpeg");
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--status-strip-height) + var(--navbar-height) + 24px);
}

body {
    font-family: var(--font-body);
    background:
        radial-gradient(circle at top left, rgba(255, 122, 89, 0.16), transparent 30%),
        radial-gradient(circle at top right, rgba(244, 200, 125, 0.18), transparent 28%),
        linear-gradient(180deg, #0b1422 0%, #070d16 45%, #060b13 100%);
    color: var(--text-light);
    line-height: 1.65;
    overflow-x: hidden;
    padding-top: calc(var(--status-strip-height) + var(--navbar-height));
}

body.nav-open {
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.12;
    pointer-events: none;
    z-index: -2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

ul {
    list-style: none;
}

.container,
.nav-container {
    width: min(var(--container-width), calc(100% - 32px));
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.eyebrow,
.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--primary-strong);
}

.eyebrow::before,
.hero-subtitle::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hero .reveal,
.page-hero .reveal {
    opacity: 1;
    transform: none;
}

.navbar {
    position: fixed;
    top: var(--status-strip-height);
    left: 0;
    width: 100%;
    z-index: 1000;
    min-height: var(--navbar-height);
    padding: 8px 0;
    background: rgba(6, 11, 19, 0.72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    position: relative;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-mark {
    width: 58px;
    height: 58px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    object-fit: contain;
}

.logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 0.95;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links,
.nav-actions {
    display: flex;
    align-items: center;
}

.nav-links {
    flex: 1 1 auto;
    justify-content: center;
    gap: 18px;
}

.nav-links a {
    position: relative;
    color: rgba(247, 243, 235, 0.88);
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 2px;
    background: var(--gradient-brand);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    flex: 0 0 auto;
    gap: 10px;
}

.branch-selector {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.branch-btn,
.branch-mini-btn {
    border: 0;
    border-radius: 999px;
    transition: var(--transition);
}

.branch-btn {
    padding: 8px 12px;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.branch-btn.active,
.branch-btn:hover,
.branch-mini-btn:hover {
    background: var(--gradient-brand);
    color: var(--text-dark);
}

.branch-mini-btn {
    padding: 10px 16px;
    background: rgba(255,255,255,0.06);
    color: var(--text-light);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.05);
    color: var(--text-light);
}

.btn-order,
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 11px 18px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    text-align: center;
}

.btn-order,
.btn-primary {
    background: var(--gradient-brand);
    color: var(--text-dark);
    box-shadow: 0 18px 40px rgba(215, 168, 93, 0.18);
}

.btn-order:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(215, 168, 93, 0.25);
}

.btn-secondary {
    border: 1px solid var(--border-gold);
    background: rgba(255,255,255,0.03);
    color: var(--text-light);
}

.btn-order:active,
.btn-primary:active,
.btn-secondary:active,
.branch-btn:active,
.branch-mini-btn:active,
.mobile-menu-toggle:active {
    transform: translateY(1px) scale(0.99);
}

.btn-secondary:hover {
    border-color: var(--primary-strong);
    background: rgba(255,255,255,0.08);
}

.inline-cta {
    width: fit-content;
    min-height: 44px;
    padding: 11px 18px;
    font-size: 0.76rem;
}

.page-hero,
.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.hero {
    min-height: calc(100svh - var(--status-strip-height) - var(--navbar-height) - 16px);
    display: flex;
    align-items: center;
    padding: 12px 0 18px;
}

.hero-video-shell {
    position: absolute;
    inset: 0;
    z-index: -3;
    overflow: hidden;
}

.hero-video-fallback,
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-video-fallback {
    background: url("../assets/herobg.png") center/cover no-repeat;
    transform: scale(1.04);
}

.hero-video {
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero.video-ready .hero-video {
    opacity: 0.32;
}

.hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(6, 11, 19, 0.88) 0%, rgba(6, 11, 19, 0.76) 45%, rgba(6, 11, 19, 0.88) 100%),
        url("../assets/herobg.png") center/cover no-repeat;
    z-index: -2;
    transform: scale(1.04);
}

.hero.has-video::before {
    background: linear-gradient(100deg, rgba(6, 11, 19, 0.88) 0%, rgba(6, 11, 19, 0.72) 45%, rgba(6, 11, 19, 0.88) 100%);
}

.hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: auto -15% -25% auto;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 89, 0.2), transparent 70%);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    align-items: center;
    gap: 20px;
}

.hero-since-badge {
    width: min(150px, 28vw);
    margin-top: 12px;
}

.hero-content h1,
.page-hero h1,
.section-header h2,
.about-copy h3,
.app-content h2,
.location-details h3,
.contact-branch-top h2,
.menu-card h3,
.menu-card-body h3 {
    font-family: var(--font-heading);
    line-height: 0.98;
    letter-spacing: 0.02em;
}

.hero-content h1 {
    margin: 10px 0 12px;
    font-size: clamp(2.45rem, 5vw, 4.15rem);
}

.hero-content p {
    max-width: 600px;
    font-size: 0.96rem;
    color: rgba(247, 243, 235, 0.82);
}

.hero-positioning {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
}

.hero-btns,
.contact-branch-actions,
.hero-inline-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-btns {
    margin-top: 16px;
}

.hero-aside,
.panel,
.location-card,
.menu-card,
.feature-card,
.branch-panel,
.footer-branch-card,
.contact-branch-card {
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(18px);
}

.hero-aside {
    padding: 22px;
    border-radius: var(--radius-lg);
}

.hero-aside h2 {
    margin-bottom: 8px;
    font-size: 1.36rem;
}

.hero-aside p {
    color: var(--text-muted);
}

.reservation-note {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.reservation-note h3,
.trust-card h3,
.video-card-copy h3,
.promo-card h3,
.faq-card summary,
.loyalty-step strong {
    font-family: var(--font-heading);
}

.reservation-note h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.hero-inline-meta {
    margin-top: 14px;
}

.hero-inline-meta .meta-chip,
.menu-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.84rem;
    font-weight: 700;
}

.page-hero {
    padding: 88px 0 76px;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    margin: 18px auto 14px;
}

.page-hero p {
    max-width: 740px;
    margin: 0 auto;
    color: rgba(247, 243, 235, 0.82);
}

.page-hero .hero-since-badge {
    margin: 20px auto 0;
}

.hero-quick-info,
.branch-info-strip,
.menu-tabs-container,
.footer {
    position: relative;
}

.branch-info-strip {
    margin-top: -16px;
    z-index: 2;
}

.info-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.info-item,
.feature-card,
.contact-meta-item,
.branch-hours-row {
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
}

.info-item i {
    color: var(--primary-strong);
}

section {
    padding: 92px 0;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 46px;
}

.section-header h2 {
    font-size: clamp(2.6rem, 5vw, 4rem);
    margin: 16px 0 10px;
}

.section-header p {
    color: var(--text-muted);
}

.about-grid,
.app-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 36px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-visual img,
.app-mockup img,
.location-img img,
.contact-branch-media img,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-visual img,
.app-mockup img,
.contact-branch-media img,
.gallery-item img,
.location-img img {
    border-radius: var(--radius-lg);
}

.experience-badge {
    position: absolute;
    right: 24px;
    bottom: 24px;
    padding: 22px;
    min-width: 160px;
    border-radius: 22px;
    background: rgba(8, 14, 22, 0.78);
    border: 1px solid var(--border-gold);
    text-align: center;
}

.experience-badge .years {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-strong);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-copy {
    display: grid;
    gap: 18px;
}

.about-copy h3 {
    font-size: clamp(2.6rem, 5vw, 4rem);
}

.about-copy p {
    color: var(--text-muted);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.feature-card {
    padding: 18px;
}

.feature-card i {
    color: var(--primary-strong);
    margin-bottom: 14px;
}

.feature-card span {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.featured-menu .menu-grid,
.api-menu-grid,
.locations-grid,
.gallery-grid,
.footer-branches-grid,
.contact-branches-grid,
.trust-grid,
.video-grid,
.promo-grid,
.faq-grid {
    display: grid;
    gap: 24px;
}

.featured-menu .menu-grid,
.api-menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.api-menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.trust-grid,
.promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

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

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

.menu-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.menu-card:hover,
.location-card:hover,
.footer-branch-card:hover,
.contact-branch-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
}

.menu-image-container,
.menu-card-img {
    position: relative;
    height: 224px;
    overflow: hidden;
}

.menu-image-container img,
.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover img,
.gallery-item:hover img,
.location-card:hover img,
.contact-branch-card:hover img {
    transform: scale(1.06);
}

.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top, rgba(244, 200, 125, 0.18), transparent 45%),
        rgba(255,255,255,0.04);
}

.placeholder-img i {
    width: 52px;
    height: 52px;
    color: rgba(255,255,255,0.25);
}

.menu-category-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(6, 11, 19, 0.72);
    border: 1px solid var(--border-gold);
    color: var(--primary-strong);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.menu-details,
.menu-card-body,
.location-details,
.contact-branch-body {
    padding: 24px;
}

.menu-details,
.menu-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 14px;
}

.menu-card-topline {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
}

.menu-details h3,
.menu-card-body h3 {
    flex: 1 1 auto;
    min-width: 0;
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    line-height: 1.05;
    margin-bottom: 0;
    text-wrap: balance;
}

.menu-price,
.price {
    flex: 0 0 auto;
    color: var(--primary-strong);
    font-size: 1.25rem;
    font-weight: 800;
    white-space: nowrap;
}

.menu-details p,
.menu-card-body p,
.location-details p,
.contact-branch-copy {
    color: var(--text-muted);
}

.menu-details p,
.menu-card-body p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.menu-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.menu-guidance {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    padding: 22px 24px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.menu-guidance-copy {
    max-width: 640px;
    color: var(--text-light);
}

.menu-guidance-copy p {
    color: rgba(247,243,235,0.84);
}

.menu-guidance-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.order-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(244, 200, 125, 0.24);
    background: rgba(244, 200, 125, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
    color: var(--primary-strong);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

.order-link:hover {
    transform: translateY(-1px);
    border-color: var(--border-gold);
    background: rgba(244, 200, 125, 0.18);
}

.menu-tabs-container {
    position: sticky;
    top: calc(var(--status-strip-height) + var(--navbar-height));
    z-index: 20;
    padding: 18px 0;
    background: rgba(6, 11, 19, 0.78);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.menu-tabs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar {
    display: none;
}

.menu-tab {
    padding: 12px 18px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    border-radius: 999px;
    color: var(--text-light);
    font-weight: 700;
    white-space: nowrap;
}

.menu-tab.active {
    background: var(--gradient-brand);
    color: var(--text-dark);
    border-color: transparent;
}

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

.gallery-item {
    aspect-ratio: 0.95;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.08);
}

.trust-card,
.video-card,
.promo-card,
.faq-card {
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(18px);
}

.trust-card,
.promo-card {
    padding: 24px;
}

.trust-card p,
.promo-card p,
.video-card-copy p,
.faq-card p {
    color: var(--text-muted);
}

.trust-points,
.promo-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    color: rgba(247,243,235,0.86);
}

.trust-points li,
.promo-list li {
    position: relative;
    padding-left: 18px;
}

.trust-points li::before,
.promo-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-strong);
}

.video-card {
    overflow: hidden;
}

.video-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.video-card-copy {
    padding: 22px;
}

.video-card-copy h3,
.promo-card h3,
.trust-card h3 {
    font-size: 2rem;
    margin: 8px 0 10px;
}

.loyalty-panel {
    align-items: start;
}

.loyalty-steps {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.loyalty-step {
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.loyalty-step strong {
    display: block;
    font-size: 1.45rem;
    margin-bottom: 4px;
}

.loyalty-step span {
    color: var(--text-muted);
}

.faq-card {
    padding: 0;
    overflow: hidden;
}

.faq-card summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    font-size: 1.5rem;
    line-height: 1.2;
}

.faq-card summary::-webkit-details-marker {
    display: none;
}

.faq-card p {
    padding: 0 24px 22px;
}

.faq-card[open] summary {
    color: var(--primary-strong);
}

.app-promo {
    position: relative;
    overflow: hidden;
}

.app-promo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 122, 89, 0.18), rgba(244, 200, 125, 0.16));
    z-index: -1;
}

.app-grid {
    padding: 34px;
    border-radius: 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.app-content h2 {
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    margin: 18px 0;
}

.app-content p {
    color: rgba(247,243,235,0.78);
    max-width: 580px;
}

.app-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.app-btn {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
}

.app-btn img {
    height: 48px;
}

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

.location-card,
.contact-branch-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.location-img {
    height: 280px;
}

.location-details h3 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.location-card.is-active,
.footer-branch-card.is-active,
.contact-branch-card.is-active {
    border-color: var(--border-gold);
    box-shadow: 0 22px 64px rgba(215, 168, 93, 0.18);
}

.footer {
    padding: 72px 0 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(6,11,19,0.2), rgba(6,11,19,0.96));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.95fr 1fr;
    gap: 28px;
    align-items: start;
}

.footer-brand {
    display: grid;
    gap: 16px;
}

.footer-brand p,
.footer-bottom {
    color: var(--text-muted);
}

.footer-links h4,
.footer-locations h4,
.contact-branch-top h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 14px;
}

.footer-small-copy {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.footer-links ul,
.footer-locations ul {
    display: grid;
    gap: 10px;
}

.footer-links a,
.footer-locations a,
.footer-locations li {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover,
.footer-locations a:hover {
    color: var(--primary-strong);
}

.footer-links-label {
    color: var(--primary-strong);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.88rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--primary-strong);
}

.social-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.social-links a:hover {
    transform: translateY(-2px);
    border-color: var(--border-gold);
    background: rgba(255,255,255,0.09);
}

.contact-shell,
.menu-shell {
    padding-top: 28px;
}

.cuisine-teaser,
.story-page-section {
    padding: 32px 0;
}

.story-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
    gap: 28px;
    align-items: start;
}

.story-copy,
.story-note,
.cuisine-card,
.team-card-body {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(18px);
}

.story-copy h2,
.cuisine-card h2 {
    font-size: clamp(2.3rem, 3.6vw, 3.35rem);
    margin: 14px 0 18px;
    line-height: 1.12;
}

.story-copy p + p,
.cuisine-card p + p {
    margin-top: 14px;
}

.story-note h3,
.team-card-body h3 {
    font-size: 2rem;
    margin: 10px 0 14px;
}

.image-feature {
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-premium);
}

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

.founders-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    gap: 28px;
    align-items: center;
}

.founders-copy {
    margin: 0;
    text-align: left;
}

.founders-copy h2 {
    text-wrap: balance;
}

.founders-image {
    max-width: 720px;
    margin-left: auto;
}

.founders-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center top;
}

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

.team-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-premium);
}

.team-card-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.cuisine-stack {
    display: grid;
    gap: 24px;
}

.cuisine-card p {
    color: rgba(247,243,235,0.86);
}

.floating-order-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    min-width: 170px;
    box-shadow: 0 20px 50px rgba(215, 168, 93, 0.28);
}

.floating-order-btn i {
    width: 20px;
    height: 20px;
}

.contact-branch-media {
    height: 240px;
}

.contact-branch-card {
    display: flex;
    flex-direction: column;
}

.contact-meta-list {
    display: grid;
    gap: 14px;
    margin: 22px 0;
}

.contact-meta-item {
    padding: 14px 16px;
}

.contact-meta-item span {
    display: block;
    margin-bottom: 6px;
    color: var(--primary-strong);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-branch-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.contact-branch-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer-hours-stack {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.branch-hours-row {
    display: grid;
    grid-template-columns: minmax(64px, 76px) minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 12px 16px;
}

.branch-hours-day {
    color: rgba(247, 243, 235, 0.72);
    font-weight: 700;
}

.branch-hours-time {
    display: grid;
    gap: 4px;
    justify-items: start;
    text-align: left;
    font-weight: 800;
    line-height: 1.45;
}

.branch-hours-line {
    display: block;
}

.contact-branch-actions {
    margin-top: auto;
    padding-top: 18px;
}

.contact-branch-actions .btn-primary,
.contact-branch-actions .btn-secondary {
    flex: 1 1 190px;
}

.reviews-section {
    padding-top: 0;
}

.review-panel,
.maps-panel {
    padding: 32px;
    border-radius: var(--radius-lg);
}

.review-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
}

.review-panel-copy p,
.map-card p {
    color: var(--text-muted);
}

.review-panel-copy h2,
.maps-panel h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin: 12px 0;
}

.review-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.review-panel-aside {
    display: grid;
    align-content: start;
    gap: 14px;
    min-width: min(100%, 320px);
}

.review-panel-aside .branch-selector {
    justify-content: space-between;
    width: 100%;
}

.review-panel-aside .branch-btn {
    flex: 1 1 0;
}

.maps-section {
    padding-top: 0;
}

.maps-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

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

.map-card {
    display: grid;
    gap: 14px;
}

.map-frame {
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    min-height: 360px;
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
}

.active-branch-panel {
    margin-top: -34px;
    position: relative;
    z-index: 2;
}

.homepage-mobile-branch-panel {
    display: none;
}

.branch-panel {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    padding: 24px;
    border-radius: 28px;
}

.branch-panel-copy h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin: 12px 0;
}

.branch-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.branch-panel-mobile-switcher {
    display: none;
}

.branch-panel-aside {
    display: grid;
    gap: 12px;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 28px;
    text-align: center;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.04);
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.08);
}

.loader-container {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding: 32px 0;
}

.loader {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top-color: var(--primary-strong);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1100px) {
    .nav-container {
        gap: 16px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 0.84rem;
        letter-spacing: 0.1em;
    }

    .logo-mark {
        width: 66px;
        height: 66px;
    }

    .logo .logo-text {
        font-size: 1.52rem;
    }

    .branch-btn {
        padding-inline: 14px;
        font-size: 0.78rem;
    }

    .btn-order {
        padding-inline: 20px;
        font-size: 0.84rem;
    }

    .hero-grid,
    .about-grid,
    .app-grid,
    .branch-panel,
    .footer-grid,
    .review-panel,
    .maps-grid,
    .video-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .locations-grid,
    .contact-branches-grid {
        grid-template-columns: 1fr;
    }

    .story-layout,
    .founders-layout,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 920px) {
    :root {
        --navbar-height: 80px;
    }

    body {
        padding-top: calc(var(--status-strip-height) + var(--navbar-height));
    }

    .mobile-menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .nav-links,
    .nav-actions {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        border-radius: 24px;
        background:
            linear-gradient(180deg, rgba(18, 25, 39, 0.98), rgba(8, 13, 22, 0.98));
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: var(--shadow-premium);
    }

    .navbar.menu-open .nav-links,
    .navbar.menu-open .nav-actions {
        display: flex;
    }

    .nav-links {
        gap: 0;
        top: calc(100% + 12px);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 14px 0;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-links li:last-child a {
        border-bottom: 0;
    }

    .nav-links a::after {
        bottom: 8px;
    }

    .nav-actions {
        top: calc(100% + 292px);
        gap: 16px;
        padding-top: 18px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-top: 0;
        margin-left: 0;
    }

    .branch-selector {
        width: 100%;
        justify-content: space-between;
    }

    .branch-btn {
        flex: 1 1 0;
        min-height: 48px;
    }

    .btn-order {
        width: 100%;
        min-height: 48px;
        padding-inline: 18px;
    }

    .logo-mark {
        width: 62px;
        height: 62px;
    }

    .logo .logo-text {
        font-size: 1.42rem;
    }
}

@media (max-width: 760px) {
    :root {
        --status-strip-height: 48px;
        --navbar-height: 72px;
    }

    section {
        padding: 68px 0;
    }

    .hero,
    .page-hero {
        padding-top: 20px;
    }

    .hero .hero-video-shell {
        display: none;
    }

    .hero::before,
    .hero.has-video::before {
        background:
            linear-gradient(100deg, rgba(6, 11, 19, 0.9) 0%, rgba(6, 11, 19, 0.76) 46%, rgba(6, 11, 19, 0.9) 100%),
            url("../assets/mobileherobg.png") center/cover no-repeat;
    }

    .info-container,
    .about-features {
        grid-template-columns: 1fr;
    }

    .nav-container {
        gap: 12px;
        justify-content: flex-start;
    }

    .logo {
        margin-right: auto;
    }

    .logo .logo-text {
        display: none;
    }

    .logo-mark {
        width: 52px;
        height: 52px;
    }

    .nav-actions {
        position: static;
        display: flex;
        flex: 0 0 auto;
        align-items: center;
        gap: 8px;
        margin-left: 0;
        padding: 0;
        background: none;
        border: 0;
        box-shadow: none;
        border-radius: 0;
    }

    .nav-actions .btn-order {
        display: none;
    }

    .nav-actions .branch-selector {
        display: inline-flex;
        width: auto;
        gap: 4px;
        padding: 4px;
        border-radius: 999px;
    }

    .nav-actions .branch-btn {
        min-width: 52px;
        min-height: 40px;
        padding: 0 10px;
        font-size: 0;
        letter-spacing: 0;
    }

    .nav-actions .branch-btn::before {
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .nav-actions .branch-btn[data-branch="parmy"]::before {
        content: "PN";
    }

    .nav-actions .branch-btn[data-branch="np"]::before {
        content: "NP";
    }

    .mobile-menu-toggle {
        margin-left: 0;
    }

    .nav-links {
        top: calc(100% + 10px);
    }

    .navbar.menu-open .nav-links {
        display: flex;
    }

    .review-panel-aside .branch-selector {
        display: inline-flex;
    }

    .hero {
        min-height: calc(100svh - var(--status-strip-height) - var(--navbar-height) - 8px);
        padding: 10px 0 18px;
    }

    .homepage-mobile-branch-panel {
        display: block;
        margin-top: 0;
    }

    .hero .hero-aside {
        display: none;
    }

    .hero-content h1,
    .page-hero h1,
    .section-header h2,
    .about-copy h3,
    .app-content h2 {
        line-height: 1.04;
        text-wrap: balance;
    }

    .hero-content p,
    .page-hero p {
        font-size: 1rem;
    }

    .hero-since-badge {
        width: min(124px, 34vw);
    }

    .footer-bottom {
        flex-direction: column;
        align-items: start;
    }

    .menu-guidance {
        padding: 20px;
    }

    .hero-inline-meta,
    .hero-btns,
    .menu-guidance-chips,
    .review-panel-actions,
    .branch-panel-actions {
        gap: 12px;
    }

    .hero-btns {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
    }

    .hero-btns .btn-primary,
    .branch-panel-actions .btn-primary,
    .branch-panel-actions .btn-secondary,
    .review-panel-actions .btn-primary,
    .review-panel-actions .btn-secondary {
        width: 100%;
    }

    .hero-btns .btn-primary {
        grid-column: 1 / -1;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-secondary {
        min-height: 46px;
        padding: 12px 16px;
        font-size: 0.82rem;
        letter-spacing: 0.06em;
    }
}

@media (max-width: 560px) {
    .container,
    .nav-container {
        width: min(var(--container-width), calc(100% - 24px));
    }

    .navbar {
        padding: 10px 0;
    }

    .nav-links {
        left: 12px;
        right: 12px;
        padding: 18px;
    }

    .nav-actions {
        gap: 6px;
    }

    .hero-aside,
    .app-grid,
    .branch-panel,
    .contact-branch-body,
    .menu-details,
    .menu-card-body {
        padding: 20px;
    }

    .logo-mark {
        width: 48px;
        height: 48px;
    }

    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
    }

    .nav-actions .branch-selector {
        padding: 3px;
    }

    .nav-actions .branch-btn {
        min-width: 48px;
        min-height: 38px;
    }

    .hero-inline-meta .meta-chip,
    .info-item,
    .feature-card {
        width: 100%;
    }

    .hero-btns {
        grid-template-columns: 1fr 1fr;
        margin-top: 18px;
    }

    .hero-btns .btn-secondary {
        padding-inline: 12px;
    }

    .hero-inline-meta,
    .about-features,
    .menu-guidance-chips,
    .review-panel-actions,
    .branch-panel-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .menu-card-topline,
    .contact-branch-top,
    .menu-card-footer {
        flex-direction: column;
        align-items: start;
    }

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

    .menu-card-img {
        height: 210px;
    }

    .menu-card-body h3 {
        font-size: 1.1rem;
    }

    .menu-card-body p {
        -webkit-line-clamp: 5;
    }

    .order-link {
        width: 100%;
    }

    .review-panel,
    .maps-panel {
        padding: 20px;
    }

    .trust-card,
    .promo-card,
    .video-card-copy {
        padding: 20px;
    }

    .branch-hours-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .floating-order-btn {
        right: 14px;
        left: auto;
        bottom: 14px;
        width: 56px;
        min-width: 56px;
        height: 56px;
        min-height: 56px;
        padding: 0;
        border-radius: 50%;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
    }

    .floating-order-btn .floating-order-label {
        display: none;
    }

    .floating-order-btn i {
        width: 22px;
        height: 22px;
    }

    .faq-card summary {
        font-size: 1.28rem;
        padding: 20px;
    }

    .faq-card p {
        padding: 0 20px 20px;
    }

    /* Hide address / phone / status aside in the Active Branch panel on mobile */
    .active-branch-panel .branch-panel-aside {
        display: none;
    }

    /* Hide the description paragraph — show only eyebrow, branch name & buttons */
    .active-branch-panel .branch-panel-copy > p {
        display: none;
    }

    .active-branch-panel .branch-panel-mobile-switcher {
        display: inline-flex;
        width: 100%;
        justify-content: space-between;
        margin-top: 18px;
    }

    .active-branch-panel .branch-panel-mobile-switcher .branch-btn {
        flex: 1 1 0;
    }

    .active-branch-panel .branch-panel-actions {
        display: none;
    }
}
