/* =========================================================
   SHALIMAR HOUSE OF JOY
   MODERN RESTAURANT WEBSITE
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --black: #11100e;
    --black-soft: #191714;
    --charcoal: #24211d;

    --cream: #f7f3ea;
    --cream-dark: #ebe4d5;
    --white: #ffffff;

    --gold: #c7953d;
    --gold-light: #e0b766;
    --gold-dark: #9d7026;

    --red: #8f2e24;
    --red-dark: #681e18;

    --text: #28241f;
    --text-light: #766e63;
    --border: #ded7ca;

    --container: 1200px;

    --serif: Georgia, "Times New Roman", serif;

    --sans: Inter, -apple-system, BlinkMacSystemFont,
            "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --shadow: 0 20px 60px rgba(17, 16, 14, 0.10);

    --transition: 280ms ease;
}


/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    position: relative;

    font-family: var(--sans);

    background: var(--cream);

    color: var(--text);

    line-height: 1.6;

    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

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

::selection {
    background: var(--gold);
    color: var(--black);
}


/* =========================================================
   SITE-WIDE BACKGROUND PHOTO
========================================================= */

.background-photo {
    position: fixed;

    inset: 0;

    z-index: -10;

    background-image:
        linear-gradient(
            rgba(247, 243, 234, 0.78),
            rgba(247, 243, 234, 0.78)
        ),
        url("images/shalimar-background.png");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    transform: scale(1.025);

    filter: saturate(0.72);

    pointer-events: none;
}


/*
    A second soft tint creates a more sophisticated
    warm/neutral appearance and keeps the photo subtle.
*/

.background-photo::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(255,255,255,0.18),
            transparent 55%
        ),
        linear-gradient(
            180deg,
            rgba(247,243,234,0.10),
            rgba(235,228,213,0.18)
        );
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: min(var(--container), calc(100% - 48px));

    margin: 0 auto;
}

.section {
    padding: 120px 0;
}

.section-kicker {
    display: flex;
    align-items: center;

    gap: 12px;

    color: var(--gold-dark);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.22em;

    text-transform: uppercase;

    margin-bottom: 20px;
}

.section-kicker::before {
    content: "";

    width: 28px;
    height: 1px;

    background: currentColor;
}

.section-kicker.light {
    color: var(--gold-light);
}

h1,
h2,
h3 {
    line-height: 1.05;
}

h2 {
    font-family: var(--serif);

    font-size: clamp(44px, 5vw, 70px);

    font-weight: 400;

    letter-spacing: -0.035em;
}

h2 span {
    color: var(--gold-dark);
}

.reveal {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 700ms ease,
        transform 700ms ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 18px 0;

    background: rgba(17, 16, 14, 0.78);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255,255,255,0.08);

    transition: var(--transition);
}

.site-header.scrolled {
    padding: 12px 0;

    background: rgba(17, 16, 14, 0.96);
}

.nav-container {
    width: min(1300px, calc(100% - 48px));

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.brand {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border: 1px solid var(--gold);

    color: var(--gold);

    font-family: var(--serif);

    font-size: 22px;

    transform: rotate(45deg);
}

.brand-mark::first-letter {
    transform: rotate(-45deg);
}

.brand-text {
    display: flex;

    flex-direction: column;

    line-height: 1;
}

.brand-text strong {
    color: white;

    font-size: 17px;

    letter-spacing: 0.14em;
}

.brand-text small {
    margin-top: 5px;

    color: var(--gold-light);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.24em;
}

.main-nav {
    display: flex;

    align-items: center;

    gap: 32px;
}

.main-nav > a {
    color: rgba(255,255,255,0.82);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    transition: color var(--transition);
}

.main-nav > a:hover {
    color: var(--gold-light);
}

.main-nav .nav-phone {
    padding: 11px 18px;

    color: var(--black);

    background: var(--gold);

    border: 1px solid var(--gold);

    transition: var(--transition);
}

.main-nav .nav-phone:hover {
    color: var(--black);

    background: var(--gold-light);
}

.mobile-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    background: transparent;

    border: 1px solid rgba(255,255,255,0.2);

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 5px;
}

.mobile-menu-toggle span {
    width: 19px;
    height: 1px;

    background: white;

    transition: var(--transition);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--black);

    color: white;

    overflow: hidden;
}


/*
    Restaurant photo specifically behind the hero.
    This gives visitors an immediate visual connection
    to the actual restaurant.
*/

.hero-background {
    position: absolute;

    inset: 0;

    background-image:
        url("images/shalimar-background.png");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    filter:
        saturate(0.65)
        contrast(0.92);

    transform: scale(1.03);
}


/*
    Dark + warm overlay keeps the elegant black/gold
    visual identity while allowing the building to show.
*/

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(17,16,14,0.82) 0%,
            rgba(17,16,14,0.62) 38%,
            rgba(17,16,14,0.76) 100%
        ),
        linear-gradient(
            90deg,
            rgba(17,16,14,0.72),
            rgba(17,16,14,0.35),
            rgba(17,16,14,0.65)
        );
}


/*
    Subtle gold glow over the photo.
*/

.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(199,149,61,0.18),
            transparent 30%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(143,46,36,0.15),
            transparent 30%
        );

    z-index: 1;

    pointer-events: none;
}

.hero::after {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -250px;
    top: 15%;

    border: 1px solid rgba(199,149,61,0.18);

    border-radius: 50%;

    z-index: 1;
}

.hero-pattern {
    position: absolute;

    inset: 0;

    opacity: 0.08;

    background-image:
        linear-gradient(
            45deg,
            transparent 48%,
            rgba(255,255,255,0.05) 49%,
            rgba(255,255,255,0.05) 51%,
            transparent 52%
        );

    background-size: 70px 70px;

    z-index: 2;
}

.hero-content {
    width: min(900px, calc(100% - 48px));

    position: relative;

    z-index: 3;

    text-align: center;

    padding: 150px 0 100px;
}

.eyebrow {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    color: var(--gold-light);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.28em;
}

.eyebrow span {
    width: 35px;
    height: 1px;

    background: var(--gold);
}

.hero h1 {
    margin-top: 28px;

    font-family: var(--serif);

    font-size: clamp(70px, 10vw, 130px);

    line-height: 0.9;

    font-weight: 400;

    letter-spacing: -0.055em;

    text-shadow:
        0 5px 30px rgba(0,0,0,0.25);
}

.hero h1 em {
    display: block;

    color: var(--gold-light);

    font-weight: 400;
}

.hero-content > p {
    max-width: 590px;

    margin: 35px auto 0;

    color: rgba(255,255,255,0.72);

    font-size: 17px;

    line-height: 1.8;
}

.hero-buttons {
    display: flex;

    justify-content: center;

    gap: 12px;

    margin-top: 38px;
}

.btn {
    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    padding: 0 25px;

    border: 1px solid transparent;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    color: var(--black);

    background: var(--gold);

    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);

    border-color: var(--gold-light);
}

.btn-outline {
    color: white;

    border-color: rgba(255,255,255,0.32);

    background: rgba(255,255,255,0.06);

    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: white;

    color: var(--black);
}

.btn-outline-dark {
    color: var(--text);

    border-color: var(--border);
}

.btn-outline-dark:hover {
    background: var(--black);

    color: white;
}

.btn-light {
    color: var(--black);

    background: white;
}

.btn-gold {
    color: var(--black);

    background: var(--gold);
}

.hero-details {
    margin: 65px auto 0;

    display: flex;

    justify-content: center;

    align-items: center;

    max-width: 650px;
}

.hero-details > div:not(.detail-divider) {
    display: flex;

    flex-direction: column;

    gap: 2px;

    min-width: 140px;
}

.hero-details strong {
    color: white;

    font-family: var(--serif);

    font-size: 20px;

    font-weight: 400;
}

.hero-details span {
    color: rgba(255,255,255,0.55);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.detail-divider {
    width: 1px;
    height: 32px;

    background: rgba(255,255,255,0.2);
}

.hero-scroll {
    position: absolute;

    left: 50%;
    bottom: 28px;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

    color: rgba(255,255,255,0.5);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.2em;

    z-index: 3;
}

.hero-scroll i {
    width: 1px;
    height: 35px;

    background:
        linear-gradient(
            to bottom,
            var(--gold),
            transparent
        );
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    position: relative;

    background:
        linear-gradient(
            rgba(247,243,234,0.84),
            rgba(247,243,234,0.84)
        );

    backdrop-filter: blur(2px);
}

.about-grid {
    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 110px;

    align-items: center;
}

.about-copy h2 {
    max-width: 650px;
}

.about-copy .lead {
    margin-top: 30px;

    color: var(--text);

    font-family: var(--serif);

    font-size: 23px;

    line-height: 1.5;
}

.about-copy > p:not(.lead) {
    max-width: 620px;

    margin-top: 20px;

    color: var(--text-light);
}

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-top: 30px;

    color: var(--text);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    border-bottom: 1px solid var(--gold);

    padding-bottom: 8px;
}

.text-link span {
    color: var(--gold-dark);

    font-size: 17px;

    transition: transform var(--transition);
}

.text-link:hover span {
    transform: translateX(5px);
}

.about-visual {
    position: relative;
}

.visual-card {
    aspect-ratio: 0.86;

    position: relative;

    display: grid;

    place-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle,
            rgba(199,149,61,0.2),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            #1d1a16,
            #0d0c0b
        );

    border: 1px solid rgba(199,149,61,0.25);

    box-shadow: var(--shadow);
}

.visual-card::before,
.visual-card::after {
    content: "";

    position: absolute;

    width: 65%;

    aspect-ratio: 1;

    border: 1px solid rgba(199,149,61,0.22);

    border-radius: 50%;
}

.visual-card::after {
    width: 48%;
}

.visual-center {
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: center;

    color: white;

    text-align: center;
}

.visual-center span {
    color: var(--gold-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.3em;
}

.visual-center strong {
    margin-top: 10px;

    font-family: var(--serif);

    font-size: 38px;

    font-weight: 400;

    letter-spacing: 0.05em;
}

.visual-center small {
    color: rgba(255,255,255,0.5);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.25em;
}

.mandala {
    position: absolute;

    color: rgba(199,149,61,0.4);

    font-size: 40px;
}

.mandala-one {
    top: 12%;
    left: 12%;
}

.mandala-two {
    right: 12%;
    bottom: 12%;
}

.floating-note {
    position: absolute;

    right: -25px;

    bottom: 35px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 17px 20px;

    background: rgba(255,255,255,0.94);

    color: var(--text);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    box-shadow: 0 15px 40px rgba(0,0,0,0.12);

    backdrop-filter: blur(8px);
}

.floating-note span {
    color: var(--gold);
}


/* =========================================================
   FEATURE STRIP
========================================================= */

.feature-strip {
    background: rgba(17,16,14,0.96);

    color: white;

    backdrop-filter: blur(8px);
}

.features {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.feature {
    min-height: 120px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 25px;

    border-right: 1px solid rgba(255,255,255,0.08);
}

.feature:first-child {
    border-left: 1px solid rgba(255,255,255,0.08);
}

.feature-icon {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    color: var(--gold);

    border: 1px solid rgba(199,149,61,0.35);

    font-size: 15px;
}

.feature strong {
    display: block;

    font-family: var(--serif);

    font-size: 17px;

    font-weight: 400;
}

.feature small {
    display: block;

    margin-top: 4px;

    color: rgba(255,255,255,0.42);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.06em;
}


/* =========================================================
   MENU
========================================================= */

.menu-section {
    position: relative;

    background:
        linear-gradient(
            rgba(242,237,227,0.86),
            rgba(242,237,227,0.86)
        );

    backdrop-filter: blur(3px);
}

.section-heading {
    max-width: 750px;

    margin-bottom: 45px;
}

.section-heading > p {
    max-width: 650px;

    margin-top: 25px;

    color: var(--text-light);

    font-size: 16px;
}

.menu-notice {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-bottom: 35px;

    padding: 22px 25px;

    background: rgba(255,255,255,0.76);

    border: 1px solid var(--border);

    backdrop-filter: blur(8px);
}

.notice-icon {
    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    color: var(--gold-dark);

    border: 1px solid rgba(199,149,61,0.35);
}

.notice-content > strong {
    display: block;

    font-family: var(--serif);

    font-size: 18px;

    font-weight: 400;
}

.notice-items {
    display: flex;

    flex-wrap: wrap;

    gap: 8px 22px;

    margin-top: 8px;

    color: var(--text-light);

    font-size: 11px;
}

.notice-items b {
    color: var(--text);
}


/* =========================================================
   MENU FILTER
========================================================= */

.menu-filter-wrapper {
    overflow-x: auto;

    margin: 0 -10px 20px;

    padding: 10px;

    scrollbar-width: none;
}

.menu-filter-wrapper::-webkit-scrollbar {
    display: none;
}

.menu-filter {
    display: flex;

    gap: 7px;

    min-width: max-content;
}

.filter-btn {
    padding: 11px 16px;

    background: rgba(255,255,255,0.45);

    border: 1px solid var(--border);

    color: var(--text-light);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.09em;

    text-transform: uppercase;

    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--gold);

    color: var(--text);

    background: rgba(255,255,255,0.8);
}

.filter-btn.active {
    background: var(--black);

    border-color: var(--black);

    color: white;
}


/* =========================================================
   MENU SEARCH
========================================================= */

.menu-search {
    position: relative;

    max-width: 500px;

    margin: 0 auto 45px;
}

.menu-search > span {
    position: absolute;

    top: 50%;
    left: 18px;

    transform: translateY(-50%);

    color: var(--gold-dark);

    font-size: 24px;
}

.menu-search input {
    width: 100%;

    height: 54px;

    padding: 0 50px;

    background: rgba(255,255,255,0.82);

    border: 1px solid var(--border);

    outline: none;

    color: var(--text);

    font-size: 13px;

    transition: var(--transition);

    backdrop-filter: blur(8px);
}

.menu-search input:focus {
    border-color: var(--gold);

    background: white;
}

.menu-search input::placeholder {
    color: #aaa39a;
}

#clearSearch {
    position: absolute;

    top: 50%;
    right: 14px;

    transform: translateY(-50%);

    width: 28px;
    height: 28px;

    display: none;

    border: 0;

    background: transparent;

    color: var(--text-light);

    font-size: 20px;
}


/* =========================================================
   MENU GRID
========================================================= */

.menu-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;
}

.menu-card {
    position: relative;

    padding: 26px 28px;

    background: rgba(255,255,255,0.82);

    border: 1px solid rgba(222,215,202,0.9);

    transition:
        transform var(--transition),
        background var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);

    backdrop-filter: blur(8px);
}

.menu-card:hover {
    transform: translateY(-4px);

    background: rgba(255,255,255,0.97);

    border-color: rgba(199,149,61,0.35);

    box-shadow: 0 15px 35px rgba(40,35,25,0.08);
}

.menu-card-top {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 20px;
}

.menu-card h3 {
    color: var(--text);

    font-family: var(--serif);

    font-size: 22px;

    font-weight: 400;

    line-height: 1.2;
}

.menu-price {
    flex-shrink: 0;

    color: var(--gold-dark);

    font-family: var(--serif);

    font-size: 19px;

    white-space: nowrap;
}

.menu-description {
    max-width: 620px;

    margin-top: 9px;

    color: var(--text-light);

    font-size: 12px;

    line-height: 1.65;
}

.menu-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-top: 13px;
}

.menu-tag {
    padding: 4px 7px;

    color: var(--gold-dark);

    background: rgba(199,149,61,0.09);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.menu-category-label {
    display: block;

    margin-bottom: 8px;

    color: #9c9489;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.menu-card.hidden {
    display: none;
}


/* =========================================================
   MENU EMPTY
========================================================= */

.menu-empty {
    display: none;

    padding: 80px 20px;

    text-align: center;
}

.menu-empty.visible {
    display: block;
}

.menu-empty > span {
    display: block;

    color: var(--gold);

    font-size: 40px;
}

.menu-empty h3 {
    margin-top: 15px;

    font-family: var(--serif);

    font-size: 30px;

    font-weight: 400;
}

.menu-empty p {
    margin-top: 8px;

    color: var(--text-light);
}


/* =========================================================
   MENU FOOTER NOTES
========================================================= */

.menu-footer-notes {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    margin-top: 50px;

    border-top: 1px solid var(--border);
}

.menu-footer-note {
    display: flex;

    gap: 17px;

    padding: 30px 25px;

    border-right: 1px solid var(--border);
}

.menu-footer-note:first-child {
    padding-left: 0;
}

.menu-footer-note:last-child {
    border-right: 0;
}

.menu-footer-note > span {
    color: var(--gold-dark);

    font-family: var(--serif);

    font-size: 13px;
}

.menu-footer-note strong {
    font-family: var(--serif);

    font-size: 18px;

    font-weight: 400;
}

.menu-footer-note p {
    margin-top: 7px;

    color: var(--text-light);

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    position: relative;

    padding: 90px 0;

    background:
        linear-gradient(
            rgba(17,16,14,0.91),
            rgba(17,16,14,0.91)
        ),
        url("images/shalimar-background.png");

    background-size: cover;

    background-position: center;

    color: white;

    overflow: hidden;
}

.cta-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -300px;
    top: -250px;

    border: 1px solid rgba(199,149,61,0.18);

    border-radius: 50%;
}

.cta-inner {
    display: grid;

    grid-template-columns: auto 1fr auto;

    align-items: center;

    gap: 45px;
}

.cta-decoration {
    width: 75px;
    height: 75px;

    display: grid;

    place-items: center;

    color: var(--gold);

    border: 1px solid rgba(199,149,61,0.4);

    font-size: 22px;
}

.cta-inner h2 {
    font-size: clamp(42px, 5vw, 62px);
}

.cta-inner h2 em {
    color: var(--gold-light);
}

.cta-inner p {
    margin-top: 12px;

    color: rgba(255,255,255,0.55);

    font-size: 14px;
}

.cta-actions {
    display: flex;

    flex-direction: column;

    gap: 10px;

    min-width: 190px;
}


/* =========================================================
   VISIT
========================================================= */

.visit-section {
    position: relative;

    background:
        linear-gradient(
            rgba(247,243,234,0.84),
            rgba(247,243,234,0.84)
        );

    backdrop-filter: blur(2px);
}

.visit-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 90px;

    align-items: center;
}

.visit-copy h2 {
    max-width: 600px;
}

.visit-copy > p {
    max-width: 520px;

    margin-top: 24px;

    color: var(--text-light);
}

.contact-details {
    display: flex;

    flex-direction: column;

    gap: 25px;

    margin-top: 40px;
}

.contact-detail {
    display: flex;

    gap: 17px;
}

.contact-icon {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    color: var(--gold-dark);

    border: 1px solid var(--border);

    background: rgba(255,255,255,0.35);
}

.contact-detail > div {
    display: flex;

    flex-direction: column;
}

.contact-detail small {
    color: #9b9387;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.16em;
}

.contact-detail strong,
.contact-detail a {
    margin-top: 4px;

    font-family: var(--serif);

    font-size: 17px;

    font-weight: 400;
}

.contact-detail > div > span {
    color: var(--text-light);

    font-size: 12px;
}

.contact-detail a:hover {
    color: var(--gold-dark);
}

.visit-buttons {
    display: flex;

    gap: 10px;

    margin-top: 38px;
}

.map-card {
    min-height: 520px;
}

.map-placeholder {
    height: 100%;

    min-height: 520px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            30deg,
            transparent 48%,
            rgba(199,149,61,0.12) 49%,
            transparent 51%
        ),
        linear-gradient(
            -20deg,
            transparent 48%,
            rgba(199,149,61,0.08) 49%,
            transparent 51%
        ),
        rgba(221,214,200,0.88);

    background-size:
        130px 130px,
        160px 160px,
        auto;

    border: 1px solid var(--border);

    backdrop-filter: blur(5px);
}

.map-grid {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            transparent 49%,
            rgba(255,255,255,0.7) 50%,
            transparent 51%
        ),
        linear-gradient(
            transparent 49%,
            rgba(255,255,255,0.7) 50%,
            transparent 51%
        );

    background-size: 110px 110px;

    opacity: 0.55;
}

.map-pin {
    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%)
        rotate(45deg);

    width: 62px;
    height: 62px;

    display: grid;

    place-items: center;

    background: var(--red);

    box-shadow:
        0 10px 25px rgba(100,20,10,0.3);
}

.map-pin span {
    color: white;

    transform: rotate(-45deg);

    font-size: 20px;
}

.map-label {
    position: absolute;

    left: 50%;

    top: calc(50% + 55px);

    transform: translateX(-50%);

    padding: 14px 20px;

    background: rgba(17,16,14,0.94);

    color: white;

    text-align: center;

    white-space: nowrap;

    box-shadow: var(--shadow);
}

.map-label strong {
    display: block;

    font-family: var(--serif);

    font-size: 18px;

    font-weight: 400;
}

.map-label small {
    display: block;

    margin-top: 2px;

    color: rgba(255,255,255,0.5);

    font-size: 9px;
}


/* =========================================================
   DETAILS
========================================================= */

.details-section {
    padding: 75px 0;

    background:
        linear-gradient(
            rgba(235,228,213,0.90),
            rgba(235,228,213,0.90)
        );

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(4px);
}

.details-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.details-grid > div {
    padding: 0 30px;

    border-right: 1px solid rgba(0,0,0,0.1);
}

.details-grid > div:first-child {
    padding-left: 0;
}

.details-grid > div:last-child {
    padding-right: 0;

    border-right: 0;
}

.details-number {
    color: var(--gold-dark);

    font-family: var(--serif);

    font-size: 12px;
}

.details-grid h3 {
    margin-top: 14px;

    font-family: var(--serif);

    font-size: 22px;

    font-weight: 400;
}

.details-grid p {
    margin-top: 10px;

    color: var(--text-light);

    font-size: 11px;

    line-height: 1.7;
}

.tag-list,
.spice-levels {
    display: flex;

    flex-wrap: wrap;

    gap: 5px;

    margin-top: 17px;
}

.tag-list span,
.spice-levels span {
    padding: 5px 8px;

    background: rgba(255,255,255,0.55);

    color: var(--text);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.07em;

    text-transform: uppercase;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    background:
        linear-gradient(
            rgba(17,16,14,0.95),
            rgba(17,16,14,0.95)
        ),
        url("images/shalimar-background.png");

    background-size: cover;

    background-position: center;
}

.contact-card {
    display: grid;

    grid-template-columns: 1.5fr 0.7fr;

    min-height: 420px;

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(199,149,61,0.11),
            transparent 30%
        ),
        rgba(25,23,20,0.96);

    border: 1px solid rgba(255,255,255,0.08);
}

.contact-card-copy {
    padding: 70px;
}

.contact-card-copy h2 {
    color: white;
}

.contact-card-copy h2 span {
    color: var(--gold-light);
}

.contact-card-copy > p {
    max-width: 560px;

    margin-top: 20px;

    color: rgba(255,255,255,0.5);

    font-size: 14px;
}

.large-phone {
    display: inline-block;

    margin-top: 30px;

    color: var(--gold-light);

    font-family: var(--serif);

    font-size: clamp(30px, 4vw, 48px);

    font-weight: 400;

    border-bottom: 1px solid rgba(199,149,61,0.4);
}

.large-phone:hover {
    color: white;
}

.phone-caption {
    display: block;

    margin-top: 6px;

    color: rgba(255,255,255,0.32);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}

.contact-card-side {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 45px;

    background: rgba(255,255,255,0.025);

    border-left: 1px solid rgba(255,255,255,0.08);

    color: rgba(255,255,255,0.5);

    font-size: 10px;

    line-height: 1.8;
}

.mini-logo {
    display: flex;

    align-items: center;

    gap: 10px;

    color: white;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 0.12em;
}

.mini-logo span {
    color: var(--gold);
}

.contact-card-side > p {
    margin-top: 20px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.12em;
}

.side-line {
    width: 30px;
    height: 1px;

    margin-top: 25px;

    background: var(--gold);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 70px 0 25px;

    background:
        linear-gradient(
            rgba(12,11,10,0.97),
            rgba(12,11,10,0.97)
        ),
        url("images/shalimar-background.png");

    background-size: cover;

    background-position: center;

    color: white;
}

.footer-main {
    display: grid;

    grid-template-columns: 1.7fr 1fr 1.2fr 1.2fr;

    gap: 60px;

    padding-bottom: 60px;

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand > p {
    max-width: 310px;

    margin-top: 20px;

    color: rgba(255,255,255,0.38);

    font-size: 11px;

    line-height: 1.8;
}

.footer-links {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 9px;
}

.footer-links h4 {
    margin-bottom: 8px;

    color: var(--gold-light);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}

.footer-links a,
.footer-links span {
    color: rgba(255,255,255,0.48);

    font-size: 10px;

    line-height: 1.6;

    transition: color var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding-top: 22px;

    color: rgba(255,255,255,0.25);

    font-size: 8px;

    letter-spacing: 0.04em;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;

    right: 20px;
    bottom: 20px;

    z-index: 900;

    width: 44px;
    height: 44px;

    display: grid;

    place-items: center;

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    background: var(--gold);

    border: 0;

    color: var(--black);

    font-size: 18px;

    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-light);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .main-nav {
        gap: 20px;
    }

    .main-nav > a {
        font-size: 10px;
    }

    .about-grid {
        gap: 60px;
    }

    .visit-grid {
        gap: 50px;
    }

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

    .footer-main > div:last-child {
        display: none;
    }

    .cta-inner {
        grid-template-columns: auto 1fr;
    }

    .cta-actions {
        grid-column: 2;

        flex-direction: row;
    }

    .cta-decoration {
        grid-row: span 2;
    }

    .details-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 35px 0;
    }

    .details-grid > div:nth-child(2) {
        border-right: 0;
    }

    .details-grid > div:nth-child(3),
    .details-grid > div:nth-child(4) {
        padding-top: 30px;

        border-top: 1px solid rgba(0,0,0,0.1);
    }
}


/* =========================================================
   MOBILE NAV
========================================================= */

@media (max-width: 760px) {

    .background-photo {
        background-position: 62% center;

        background-image:
            linear-gradient(
                rgba(247,243,234,0.88),
                rgba(247,243,234,0.88)
            ),
            url("images/shalimar-background.png");

        filter: saturate(0.6);
    }

    .site-header {
        padding: 14px 0;
    }

    .nav-container {
        width: calc(100% - 32px);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;

        top: 72px;

        left: 16px;
        right: 16px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 12px;

        background: rgba(17,16,14,0.98);

        border: 1px solid rgba(255,255,255,0.1);

        box-shadow: 0 20px 50px rgba(0,0,0,0.35);

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        transition: var(--transition);
    }

    .main-nav.open {
        opacity: 1;

        visibility: visible;

        transform: translateY(0);
    }

    .main-nav > a {
        padding: 15px;

        border-bottom: 1px solid rgba(255,255,255,0.06);

        font-size: 10px;
    }

    .main-nav > a:last-child {
        border-bottom: 0;
    }

    .main-nav .nav-phone {
        margin-top: 8px;

        text-align: center;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .container {
        width: calc(100% - 32px);
    }

    .section {
        padding: 80px 0;
    }

    .hero-background {
        background-position: 62% center;

        filter:
            saturate(0.55)
            contrast(0.9);
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(17,16,14,0.86) 0%,
                rgba(17,16,14,0.68) 45%,
                rgba(17,16,14,0.84) 100%
            ),
            linear-gradient(
                90deg,
                rgba(17,16,14,0.72),
                rgba(17,16,14,0.4),
                rgba(17,16,14,0.72)
            );
    }

    .hero-content {
        width: calc(100% - 32px);

        padding: 130px 0 80px;
    }

    .hero h1 {
        font-size: clamp(62px, 19vw, 95px);
    }

    .hero-content > p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;

        max-width: 280px;

        margin-left: auto;

        margin-right: auto;
    }

    .hero-details {
        margin-top: 45px;
    }

    .hero-details > div:not(.detail-divider) {
        min-width: auto;

        flex: 1;
    }

    .hero-details strong {
        font-size: 16px;
    }

    .hero-details span {
        font-size: 7px;
    }

    .hero-scroll {
        display: none;
    }


    /* ABOUT */

    .about-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .about-copy h2 {
        font-size: 48px;
    }

    .about-copy .lead {
        font-size: 20px;
    }

    .floating-note {
        right: 10px;

        bottom: 20px;
    }


    /* FEATURES */

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

    .feature {
        min-height: 105px;

        padding: 20px 15px;
    }

    .feature:nth-child(2) {
        border-right: 0;
    }

    .feature:nth-child(3),
    .feature:nth-child(4) {
        border-top: 1px solid rgba(255,255,255,0.08);
    }


    /* MENU */

    .section-heading h2 {
        font-size: 48px;
    }

    .menu-notice {
        padding: 18px;
    }

    .notice-items {
        flex-direction: column;

        gap: 5px;
    }

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

    .menu-card {
        padding: 22px;
    }

    .menu-card h3 {
        font-size: 20px;
    }

    .menu-price {
        font-size: 17px;
    }

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

    .menu-footer-note,
    .menu-footer-note:first-child {
        padding: 22px 0;

        border-right: 0;

        border-bottom: 1px solid var(--border);
    }

    .menu-footer-note:last-child {
        border-bottom: 0;
    }


    /* CTA */

    .cta-inner {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .cta-decoration {
        display: none;
    }

    .cta-actions {
        grid-column: auto;

        flex-direction: column;

        align-items: stretch;
    }


    /* VISIT */

    .visit-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .map-card,
    .map-placeholder {
        min-height: 390px;
    }

    .visit-buttons {
        flex-direction: column;
    }


    /* DETAILS */

    .details-grid {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .details-grid > div,
    .details-grid > div:first-child,
    .details-grid > div:last-child {
        padding: 25px 0;

        border-right: 0;

        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .details-grid > div:last-child {
        border-bottom: 0;
    }


    /* CONTACT */

    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-card-copy {
        padding: 50px 28px;
    }

    .contact-card-side {
        border-left: 0;

        border-top: 1px solid rgba(255,255,255,0.08);

        padding: 35px 28px;
    }


    /* FOOTER */

    .footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 45px 25px;
    }

    .footer-main > div:last-child {
        display: flex;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 8px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .brand-mark {
        width: 36px;
        height: 36px;

        font-size: 18px;
    }

    .brand-text strong {
        font-size: 14px;
    }

    .brand-text small {
        font-size: 7px;
    }

    .hero h1 {
        font-size: 62px;
    }

    .hero-details {
        gap: 4px;
    }

    .hero-details .detail-divider {
        height: 25px;
    }

    .hero-details strong {
        font-size: 13px;
    }

    .hero-details span {
        font-size: 6px;

        letter-spacing: 0.08em;
    }

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

    .feature {
        border-left: 0 !important;

        border-right: 0 !important;

        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .feature:last-child {
        border-bottom: 0;
    }

    .section-heading h2,
    .about-copy h2 {
        font-size: 42px;
    }

    .menu-card-top {
        gap: 10px;
    }

    .menu-card h3 {
        font-size: 18px;
    }

    .menu-price {
        font-size: 16px;
    }

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

    .footer-main > div:last-child {
        display: flex;
    }
}


/* =========================================================
   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;
    }
}