:root {
    --ink: #171312;
    --charcoal: #1c1715;
    --night: #120e0d;
    --paper: #f3efe7;
    --paper-deep: #e9e1d5;
    --cream: #fffaf1;
    --muted: #756c65;
    --gold: #c8984d;
    --gold-light: #e2bd7a;
    --wine: #6b171c;
    --line: rgba(23, 19, 18, 0.16);
    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;
    --header-height: 82px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input {
    font: inherit;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

em {
    color: var(--gold);
    font-weight: 600;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 15px;
    background: var(--cream);
    color: var(--ink);
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 4px;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(24px, 5vw, 78px);
    color: var(--cream);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    transition: background-color 250ms ease, height 250ms ease, box-shadow 250ms ease;
}

.site-header.is-scrolled {
    height: 70px;
    background: rgba(18, 14, 13, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.brand-mark {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 30px;
    background: var(--gold);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.brand-mark span {
    width: 20px;
    height: 17px;
    margin-top: 7px;
    background: var(--night);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.brand-type {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-type strong {
    font-family: var(--serif);
    font-size: 23px;
    letter-spacing: -0.04em;
}

.brand-type small {
    margin-top: 5px;
    color: rgba(255, 250, 241, 0.64);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.23em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(22px, 3vw, 44px);
}

.primary-nav a {
    position: relative;
    padding: 8px 0;
    color: rgba(255, 250, 241, 0.72);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--gold-light);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
    color: var(--cream);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
    display: block;
    width: 23px;
    height: 1px;
    margin: 7px auto;
    background: currentColor;
    transition: transform 180ms ease;
}

.hero {
    position: relative;
    min-height: min(900px, 100svh);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--night);
    color: var(--cream);
}

.hero-image,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-image {
    background-image: url("../images/lounge-hero.jpg");
    background-position: 56% center;
    background-size: cover;
    transform: scale(1.015);
    animation: heroSettle 1.4s cubic-bezier(.2, .7, .2, 1) both;
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(14, 10, 9, 0.97) 0%, rgba(14, 10, 9, 0.82) 38%, rgba(14, 10, 9, 0.28) 73%, rgba(14, 10, 9, 0.43) 100%),
        linear-gradient(0deg, rgba(14, 10, 9, 0.55), transparent 45%);
}

@keyframes heroSettle {
    from { transform: scale(1.08); opacity: 0.7; }
    to { transform: scale(1.015); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(660px, 82vw);
    margin-left: clamp(24px, 10vw, 158px);
    padding: calc(var(--header-height) + 55px) 0 80px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--wine);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 36px;
    height: 1px;
    background: currentColor;
}

.hero .eyebrow,
.eyebrow-light {
    color: var(--gold-light);
}

.hero h1 {
    max-width: 680px;
    margin-bottom: 28px;
    font-size: clamp(64px, 8.4vw, 126px);
    letter-spacing: -0.06em;
    line-height: 0.83;
}

.hero h1 em {
    display: inline-block;
    margin-left: clamp(22px, 6vw, 92px);
    color: var(--gold-light);
}

.hero-copy {
    max-width: 510px;
    margin: 0 0 35px clamp(4px, 6vw, 92px);
    color: rgba(255, 250, 241, 0.7);
    font-size: clamp(15px, 1.35vw, 18px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-left: clamp(4px, 6vw, 92px);
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 24px;
    border: 1px solid transparent;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.external-arrow {
    display: block;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: square;
    stroke-linejoin: miter;
    transition: transform 180ms ease;
}

.button:hover .external-arrow {
    transform: translate(2px, -2px);
}

.button-primary {
    background: var(--gold);
    color: var(--night);
}

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

.button-ghost {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--cream);
}

.button-ghost:hover {
    border-color: var(--cream);
    background: var(--cream);
    color: var(--ink);
}

.button-dark {
    background: var(--ink);
    color: var(--cream);
}

.button-dark:hover {
    background: var(--wine);
}

.hero-note {
    position: absolute;
    z-index: 2;
    right: clamp(24px, 5vw, 78px);
    bottom: 40px;
    display: flex;
    gap: 34px;
    color: rgba(255, 250, 241, 0.58);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-note span + span::before {
    content: "•";
    margin-right: 34px;
    color: var(--gold-light);
}

.scroll-cue {
    position: absolute;
    z-index: 2;
    bottom: 32px;
    left: clamp(24px, 5vw, 78px);
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 250, 241, 0.58);
    font-size: 9px;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.scroll-cue span {
    position: relative;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
}

.scroll-cue span::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 12px;
    width: 3px;
    height: 7px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
}

.section {
    position: relative;
}

.section-number {
    color: rgba(23, 19, 18, 0.15);
    font-family: var(--serif);
    font-size: 13px;
    letter-spacing: 0.08em;
}

.welcome {
    display: grid;
    grid-template-columns: minmax(28px, 0.25fr) 1.2fr 0.9fr;
    gap: clamp(30px, 6vw, 100px);
    align-items: start;
    padding: clamp(100px, 13vw, 190px) clamp(24px, 8vw, 130px);
    background: var(--paper);
}

.welcome h2,
.menu-panel h2,
.location-copy h2 {
    margin: 0;
    font-size: clamp(48px, 6.4vw, 96px);
}

.welcome-detail {
    padding-top: 36px;
}

.welcome-detail > p {
    margin-bottom: 52px;
    color: var(--muted);
    font-size: clamp(16px, 1.4vw, 19px);
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.feature-row div {
    padding: 20px 13px 20px 0;
}

.feature-row div + div {
    padding-left: 18px;
    border-left: 1px solid var(--line);
}

.feature-row strong,
.feature-row span {
    display: block;
}

.feature-row strong {
    margin-bottom: 2px;
    font-family: var(--serif);
    font-size: 26px;
}

.feature-row span {
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.food-section {
    display: grid;
    grid-template-columns: minmax(320px, 0.85fr) minmax(520px, 1.15fr);
    min-height: 900px;
    background: var(--paper-deep);
}

.food-visual {
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.food-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(18, 14, 13, 0.72), transparent 58%);
}

.food-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.food-visual > p {
    position: absolute;
    z-index: 2;
    right: 42px;
    bottom: 34px;
    left: 42px;
    color: var(--cream);
    font-family: var(--serif);
    font-size: clamp(30px, 3.5vw, 56px);
    line-height: 1;
}

.food-visual > p span {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.menu-panel {
    padding: clamp(80px, 9vw, 135px) clamp(30px, 7vw, 110px);
}

.menu-heading {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 75px;
}

.category-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--ink);
}

.category-heading h3 {
    margin: 0;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.category-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.food-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 34px;
}

.food-item {
    display: flex;
    min-height: 93px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 0 18px;
    border-bottom: 1px solid var(--line);
}

.food-item h4 {
    margin: 0;
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 600;
}

.food-item p {
    max-width: 250px;
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
}

.price {
    flex: 0 0 auto;
    color: var(--wine);
    font-size: 12px;
    font-weight: 600;
}

.menu-badge {
    display: inline-block;
    margin-top: 6px;
    color: var(--wine);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-note {
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 10px;
}

.hookah-section {
    overflow: hidden;
    padding: clamp(95px, 12vw, 180px) clamp(24px, 8vw, 130px);
    background:
        radial-gradient(circle at 84% 18%, rgba(107, 23, 28, 0.25), transparent 30%),
        var(--night);
    color: var(--cream);
}

.hookah-section::before {
    content: "";
    position: absolute;
    top: 8%;
    right: -9vw;
    width: 35vw;
    height: 35vw;
    border: 1px solid rgba(200, 152, 77, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 5vw rgba(200, 152, 77, 0.035), 0 0 0 10vw rgba(200, 152, 77, 0.02);
}

.hookah-intro {
    position: relative;
    display: grid;
    grid-template-columns: 1.25fr 0.65fr auto;
    gap: clamp(35px, 7vw, 110px);
    align-items: end;
    margin-bottom: 90px;
}

.hookah-intro h2 {
    margin: 0;
    font-size: clamp(55px, 7.5vw, 112px);
}

.hookah-intro-copy > p {
    margin-bottom: 27px;
    color: rgba(255, 250, 241, 0.58);
    font-size: 14px;
}

.hookah-section .section-number {
    align-self: start;
    color: rgba(255, 255, 255, 0.24);
}

.flavor-search {
    position: relative;
    display: block;
}

.flavor-search input {
    width: 100%;
    min-height: 50px;
    padding: 0 45px 0 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 0;
    background: transparent;
    color: var(--cream);
    outline: 0;
}

.flavor-search input::placeholder {
    color: rgba(255, 250, 241, 0.48);
}

.flavor-search input:focus {
    border-bottom-color: var(--gold-light);
}

.flavor-search > span:not(.sr-only) {
    position: absolute;
    right: 3px;
    bottom: 9px;
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 26px;
}

.hookah-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 0.56fr) minmax(560px, 1fr);
    gap: clamp(40px, 7vw, 110px);
    align-items: start;
}

.hookah-photo {
    position: sticky;
    top: 100px;
}

.hookah-photo img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    filter: saturate(0.78) contrast(1.06);
}

.hookah-photo > div {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hookah-photo > div span {
    display: grid;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 11px;
}

.hookah-photo > div p {
    margin: 0;
    color: rgba(255, 250, 241, 0.5);
    font-size: 10px;
}

.hookah-card {
    padding: 34px 0 38px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hookah-card:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hookah-card[hidden] {
    display: none;
}

.hookah-card-heading {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    gap: 20px;
    align-items: start;
    margin-bottom: 28px;
}

.hookah-card-heading > span {
    padding-top: 7px;
    color: var(--gold-light);
    font-size: 9px;
    letter-spacing: 0.12em;
}

.hookah-card-heading h3 {
    margin: 0 0 7px;
    font-size: clamp(30px, 3vw, 44px);
}

.hookah-card-heading p {
    margin: 0;
    color: rgba(255, 250, 241, 0.43);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hookah-card-heading strong {
    padding-top: 7px;
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 500;
}

.flavor-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px 22px;
    margin: 0 0 0 56px;
    padding: 0;
    list-style: none;
}

.flavor-grid li {
    position: relative;
    padding-left: 13px;
    color: rgba(255, 250, 241, 0.68);
    font-size: 12px;
}

.flavor-grid li::before {
    content: "";
    position: absolute;
    top: 0.75em;
    left: 0;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
}

.flavor-grid li[hidden] {
    display: none;
}

.no-results {
    padding: 32px 0;
    color: rgba(255, 250, 241, 0.56);
}

.location-section {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    min-height: 720px;
    background: var(--paper);
}

.location-copy {
    padding: clamp(90px, 10vw, 150px) clamp(30px, 7vw, 110px);
}

.location-copy h2 {
    margin-bottom: 55px;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 36px;
    border-top: 1px solid var(--line);
}

.location-details > div {
    padding: 22px 20px 22px 0;
    border-bottom: 1px solid var(--line);
}

.location-details > div:first-child {
    grid-column: 1 / -1;
}

.location-details > div:last-child {
    padding-left: 20px;
    border-left: 1px solid var(--line);
}

.location-details span {
    display: block;
    margin-bottom: 6px;
    color: var(--wine);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.location-details p,
.location-details a {
    margin: 0;
    font-family: var(--serif);
    font-size: 16px;
    line-height: 1.45;
}

.location-details a:hover {
    color: var(--wine);
}

.map-wrap {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: #d6d0c7;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 720px;
    border: 0;
    filter: grayscale(1) sepia(0.15) contrast(0.92);
}

.map-label {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 205px;
    padding: 14px 18px;
    background: var(--night);
    color: var(--cream);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.map-label > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    background: var(--gold);
    color: var(--night);
    font-family: var(--serif);
    font-size: 22px;
}

.map-label p {
    margin: 0;
    color: rgba(255, 250, 241, 0.58);
    font-size: 9px;
    line-height: 1.5;
}

.map-label strong {
    color: var(--cream);
    font-family: var(--serif);
    font-size: 15px;
}

.closing-banner {
    position: relative;
    min-height: 580px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--cream);
    text-align: center;
}

.closing-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(12, 9, 8, 0.76);
}

.closing-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.65);
}

.closing-banner > div {
    position: relative;
    z-index: 2;
    padding: 80px 24px;
}

.closing-banner .eyebrow {
    justify-content: center;
}

.closing-banner h2 {
    margin: 0 0 24px;
    font-size: clamp(58px, 8vw, 112px);
}

.closing-banner > div > p:last-child {
    max-width: 470px;
    margin: 0 auto;
    color: rgba(255, 250, 241, 0.64);
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    padding: 38px clamp(24px, 5vw, 78px);
    background: var(--night);
    color: var(--cream);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-contact {
    display: flex;
    gap: 22px;
    color: rgba(255, 250, 241, 0.58);
    font-size: 10px;
}

.footer-contact a:hover {
    color: var(--gold-light);
}

.site-footer > p {
    justify-self: end;
    margin: 0;
    color: rgba(255, 250, 241, 0.38);
    font-size: 9px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.js .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(.2, .75, .25, 1);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1060px) {
    .welcome {
        grid-template-columns: 35px 1fr;
    }

    .welcome-detail {
        grid-column: 2;
        max-width: 680px;
    }

    .food-section {
        grid-template-columns: 0.72fr 1.28fr;
    }

    .food-list {
        grid-template-columns: 1fr;
    }

    .hookah-intro {
        grid-template-columns: 1.1fr 0.9fr;
    }

    .hookah-intro .section-number {
        display: none;
    }

    .hookah-layout {
        grid-template-columns: 0.46fr 1fr;
        gap: 50px;
    }

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

    .location-section {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer-contact {
        justify-self: end;
    }

    .site-footer > p {
        grid-column: 1 / -1;
        justify-self: start;
    }
}

@media (max-width: 760px) {
    :root {
        --header-height: 70px;
    }

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

    .nav-toggle {
        position: relative;
        z-index: 2;
        display: block;
    }

    .menu-open .nav-toggle > span:nth-of-type(2) {
        transform: translateY(4px) rotate(45deg);
    }

    .menu-open .nav-toggle > span:nth-of-type(3) {
        transform: translateY(-4px) rotate(-45deg);
    }

    .primary-nav {
        position: fixed;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 8px;
        padding: 90px 10vw;
        background: rgba(18, 14, 13, 0.98);
        opacity: 0;
        transform: translateX(100%);
        visibility: hidden;
        transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
    }

    .primary-nav a {
        font-family: var(--serif);
        font-size: clamp(36px, 12vw, 62px);
        letter-spacing: -0.04em;
        text-transform: none;
    }

    .menu-open .primary-nav {
        opacity: 1;
        transform: translateX(0);
        visibility: visible;
    }

    .hero {
        min-height: 790px;
    }

    .hero-image {
        background-position: 60% center;
    }

    .hero-shade {
        background: linear-gradient(90deg, rgba(14, 10, 9, 0.92), rgba(14, 10, 9, 0.42)), linear-gradient(0deg, rgba(14, 10, 9, 0.8), transparent 55%);
    }

    .hero-content {
        width: auto;
        margin: 0;
        padding: 115px 24px 145px;
    }

    .hero h1 {
        font-size: clamp(59px, 20vw, 92px);
    }

    .hero h1 em,
    .hero-copy,
    .hero-actions {
        margin-left: 0;
    }

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

    .hero-note {
        right: 24px;
        bottom: 30px;
        left: 24px;
        justify-content: flex-end;
    }

    .hero-note span:first-child,
    .scroll-cue {
        display: none;
    }

    .hero-note span + span::before {
        display: none;
    }

    .welcome {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 90px 24px;
    }

    .welcome > .section-number {
        display: none;
    }

    .welcome-detail {
        grid-column: 1;
        padding-top: 12px;
    }

    .welcome h2,
    .menu-panel h2,
    .location-copy h2 {
        font-size: clamp(45px, 14vw, 66px);
    }

    .feature-row strong {
        font-size: 22px;
    }

    .feature-row span {
        font-size: 7px;
    }

    .food-section {
        display: block;
    }

    .food-visual {
        position: relative;
        height: 64vh;
        min-height: 490px;
    }

    .menu-panel {
        padding: 80px 24px 95px;
    }

    .menu-heading {
        margin-bottom: 55px;
    }

    .category-heading {
        display: block;
    }

    .category-heading p {
        margin-top: 6px;
    }

    .hookah-section {
        padding: 90px 24px;
    }

    .hookah-intro {
        display: block;
        margin-bottom: 60px;
    }

    .hookah-intro h2 {
        margin-bottom: 35px;
        font-size: clamp(54px, 17vw, 78px);
    }

    .hookah-layout {
        display: block;
    }

    .hookah-photo {
        position: relative;
        top: auto;
        margin-bottom: 55px;
    }

    .hookah-photo img {
        aspect-ratio: 4 / 3;
    }

    .hookah-card-heading {
        grid-template-columns: 30px 1fr auto;
        gap: 12px;
    }

    .flavor-grid {
        margin-left: 42px;
        gap: 9px 14px;
    }

    .location-section {
        display: block;
    }

    .location-copy {
        padding: 90px 24px;
    }

    .map-wrap,
    .map-wrap iframe {
        min-height: 520px;
    }

    .closing-banner {
        min-height: 520px;
    }

    .site-footer {
        grid-template-columns: 1fr;
        padding: 48px 24px;
    }

    .footer-contact {
        justify-self: start;
        flex-direction: column;
        gap: 6px;
    }

    .site-footer > p {
        grid-column: auto;
    }
}

@media (max-width: 430px) {
    .brand-type strong {
        font-size: 20px;
    }

    .hero-actions .button {
        flex: 1 1 100%;
    }

    .feature-row {
        grid-template-columns: 1fr;
    }

    .feature-row div + div {
        padding-left: 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .food-visual > p {
        right: 24px;
        left: 24px;
    }

    .hookah-card-heading {
        grid-template-columns: 26px 1fr;
    }

    .hookah-card-heading strong {
        grid-column: 2;
        padding-top: 0;
    }

    .flavor-grid {
        grid-template-columns: 1fr;
        margin-left: 38px;
    }

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

    .location-details > div:first-child {
        grid-column: auto;
    }

    .location-details > div:last-child {
        padding-left: 0;
        border-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
