:root {
    --ink: #f7f1e8;
    --ink-soft: rgba(247, 241, 232, 0.78);
    --ink-muted: rgba(247, 241, 232, 0.58);
    --dark: #050a09;
    --dark-2: #081110;
    --dark-3: #0d1918;
    --panel: rgba(255, 255, 255, 0.07);
    --line: rgba(255, 255, 255, 0.14);
    --cream: #f4efe7;
    --cream-2: #e6ddd0;
    --text: #16201e;
    --muted: #5d6965;
    --blue: #1f7d9d;
    --blue-2: #2b9ac0;
    --wood: #b68655;
    --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
    --radius: 28px;
    --radius-sm: 18px;
    --container: 1180px;
    --container-wide: 1420px;
    --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--dark);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16.5px;
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-is-open {
    overflow: hidden;
}

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

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

p {
    margin: 0 0 1.25rem;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 0.92;
    letter-spacing: -0.035em;
    font-family: var(--serif);
    font-weight: 700;
}

h1 {
    font-size: clamp(4.6rem, 7.6vw, 8.35rem);
}

h2 {
    font-size: clamp(2.6rem, 5vw, 5.6rem);
}

h3 {
    font-size: clamp(1.65rem, 2.4vw, 2.4rem);
}

.container,
.container-wide {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

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

.section-padding {
    padding: clamp(78px, 9vw, 148px) 0;
}

.section-padding--compact {
    padding-top: clamp(48px, 6vw, 90px);
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 999;
    transform: translateY(-180%);
    background: var(--cream);
    color: var(--dark);
    padding: .65rem .9rem;
    border-radius: 999px;
    transition: transform .2s ease;
}

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

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

.site-header {
    position: fixed;
    z-index: 90;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(3, 8, 7, .96), rgba(3, 8, 7, .68));
    backdrop-filter: blur(18px);
    transition: background .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
    background: rgba(3, 8, 7, .92);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .32);
}

.site-header__inner {
    min-height: 86px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.site-header__brand {
    position: relative;
    z-index: 92;
}

.site-logo,
.custom-logo-link {
    display: inline-flex;
    align-items: center;
    width: min(230px, 38vw);
}

.site-logo img,
.custom-logo {
    display: block;
    width: 100%;
    max-height: 58px;
    object-fit: contain;
    object-position: left center;
    mix-blend-mode: screen;
}

.site-nav {
    display: flex;
    justify-content: center;
}

.site-nav__list,
.footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav__list a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .2s ease, background .2s ease;
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item > a {
    color: var(--ink);
    background: rgba(255, 255, 255, .08);
}

.site-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.header-order,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .075em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.header-order,
.button--ghost {
    color: var(--ink);
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .18);
}

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

.button--primary {
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--blue-2));
    border-color: rgba(255, 255, 255, .1);
    box-shadow: 0 16px 50px rgba(31, 125, 157, .36);
}

.button--small {
    min-height: 48px;
    padding-inline: 22px;
}

.site-nav-toggle {
    display: none;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, .05);
    color: var(--ink);
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 92;
}

.site-nav-toggle__bar {
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    display: block;
    margin: 5px auto;
    transition: transform .2s ease, opacity .2s ease;
}

.site-nav-toggle[aria-expanded='true'] .site-nav-toggle__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.site-nav-toggle[aria-expanded='true'] .site-nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.site-nav-toggle[aria-expanded='true'] .site-nav-toggle__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: clamp(760px, 100vh, 930px);
    display: flex;
    align-items: center;
    padding: clamp(150px, 17vh, 190px) 0 clamp(82px, 10vh, 116px);
    background:
        radial-gradient(circle at 78% 28%, rgba(31, 125, 157, .18), transparent 28%),
        radial-gradient(circle at 10% 78%, rgba(31, 125, 157, .12), transparent 25%),
        var(--dark);
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.hero::before {
    inset: 0;
    background-image:
        linear-gradient(110deg, transparent 0 44%, rgba(255,255,255,.025) 44% 45%, transparent 45% 100%),
        repeating-radial-gradient(circle at 60% 45%, transparent 0 140px, rgba(255,255,255,.035) 142px 144px);
    opacity: .26;
}

.hero::after {
    inset: auto -18vw -28vw auto;
    width: 56vw;
    height: 56vw;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .08);
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: linear-gradient(90deg, rgba(3, 8, 7, .99) 0%, rgba(3, 8, 7, .92) 42%, rgba(3, 8, 7, .64) 72%, rgba(3, 8, 7, .44) 100%), var(--hero-bg);
    background-size: cover;
    background-position: center;
    opacity: .55;
    filter: saturate(.86) contrast(1.04);
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(640px, .94fr) minmax(360px, .56fr);
    gap: clamp(42px, 5vw, 84px);
    align-items: center;
}

.hero__content {
    max-width: 800px;
}

.eyebrow {
    margin: 0 0 30px;
    color: var(--blue-2);
    font-size: clamp(.74rem, .95vw, .88rem);
    font-weight: 900;
    letter-spacing: .24em;
    line-height: 1.25;
    text-transform: uppercase;
}

.hero h1 .hero__line {
    display: block;
    white-space: nowrap;
}

.hero h1 .hero__line--accent {
    color: var(--blue);
}

.hero__lede {
    max-width: 650px;
    margin-top: 30px;
    color: rgba(247, 241, 232, 0.80);
    font-size: clamp(1.02rem, 1.25vw, 1.22rem);
    line-height: 1.72;
}

.hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 38px;
}

.hero-showcase {
    position: relative;
    min-height: 500px;
}

.hero-showcase figure {
    margin: 0;
}

.hero-showcase__main {
    position: absolute;
    right: 0;
    top: 52px;
    width: min(360px, 90%);
    border-radius: 999px 999px 34px 34px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, .16);
}

.hero-showcase__main::after,
.hero-showcase__badge::after,
.stack-photos::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 8, 7, 0), rgba(3, 8, 7, .22));
    pointer-events: none;
}

.hero-showcase__main img {
    width: 100%;
    height: 470px;
    object-fit: cover;
}

.hero-showcase__badge {
    position: absolute;
    left: 0;
    bottom: 26px;
    width: min(255px, 56%);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, .18);
}

.hero-showcase__badge img {
    width: 100%;
    height: 315px;
    object-fit: cover;
}

.feature-strip {
    background: var(--cream);
    color: var(--text);
    position: relative;
    z-index: 2;
    box-shadow: 0 -1px rgba(255,255,255,.15) inset;
}

.feature-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.feature-strip article {
    padding: 32px 28px;
    border-left: 1px solid rgba(22, 32, 30, .12);
}

.feature-strip article:first-child {
    border-left: 0;
}

.feature-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: rgba(31, 125, 157, .1);
    color: var(--blue);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .06em;
}

.feature-strip h2 {
    margin-bottom: 8px;
    font-family: var(--sans);
    font-size: .84rem;
    line-height: 1.3;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.feature-strip p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.5;
}

.card-section {
    background: linear-gradient(180deg, #06100f 0%, #0a1514 100%);
}

.card-grid {
    display: grid;
    gap: 22px;
}

.card-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.image-card {
    min-height: clamp(300px, 28vw, 430px);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    isolation: isolate;
    box-shadow: var(--shadow);
    background: var(--dark-3);
}

.image-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--card-image);
    background-size: cover;
    background-position: center;
    transition: transform .5s ease, filter .5s ease;
    filter: saturate(.88) contrast(1.02);
}

.image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(2,7,6,.74) 62%, rgba(2,7,6,.95) 100%);
}

.image-card:hover::before {
    transform: scale(1.06);
    filter: saturate(1) contrast(1.06);
}

.image-card a {
    min-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.card-label {
    margin: 0 0 10px;
    color: var(--blue-2);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.image-card strong {
    max-width: 330px;
    display: block;
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.2vw, 2.2rem);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.card-link,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--blue-2);
    font-size: .77rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.card-link::after,
.text-link::after {
    content: '→';
    transition: transform .2s ease;
}

.image-card:hover .card-link::after,
.text-link:hover::after {
    transform: translateX(4px);
}

.split-showcase,
.about-story,
.product-story,
.content-page {
    background: var(--cream);
    color: var(--text);
}

.split-showcase__grid,
.about-story__grid,
.product-story__grid,
.visit-panel__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
    gap: clamp(44px, 7vw, 96px);
    align-items: center;
}

.split-showcase__content p,
.story-copy p,
.product-story p,
.wp-content p,
.visit-panel p {
    color: var(--muted);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.split-showcase__content h2,
.story-copy h2,
.product-story h2,
.visit-panel h2 {
    margin-bottom: 28px;
}

.stack-photos {
    position: relative;
    min-height: 640px;
}

.stack-photos img {
    position: absolute;
    object-fit: cover;
    box-shadow: 0 24px 70px rgba(19, 31, 28, .28);
}

.stack-photos__large {
    left: 0;
    top: 0;
    width: 74%;
    height: 600px;
    border-radius: var(--radius);
}

.stack-photos__small {
    right: 0;
    bottom: 0;
    width: 42%;
    height: 320px;
    border-radius: 999px 999px 26px 26px;
    border: 10px solid var(--cream);
}

.tick-list {
    padding: 0;
    margin: 32px 0 36px;
    list-style: none;
}

.tick-list li {
    position: relative;
    padding-left: 34px;
    margin: 12px 0;
    color: var(--text);
    font-weight: 700;
}

.tick-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .62em;
    width: 17px;
    height: 2px;
    background: var(--blue);
}

.quote-band {
    background: var(--blue);
    color: white;
    padding: 34px 0;
}

.quote-band__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(210px, .35fr);
    gap: 36px;
    align-items: center;
}

.quote-band blockquote {
    margin: 0;
    position: relative;
    padding-left: 62px;
}

.quote-band blockquote::before {
    content: '“';
    position: absolute;
    left: 0;
    top: -22px;
    color: rgba(255,255,255,.32);
    font-family: var(--serif);
    font-size: 5.2rem;
    line-height: 1;
}

.quote-band p {
    max-width: 620px;
    margin: 0 0 10px;
    color: rgba(255,255,255,.88);
    font-size: clamp(1.02rem, 1.5vw, 1.25rem);
    line-height: 1.45;
    font-family: var(--serif);
    font-style: italic;
}

.quote-band cite {
    display: block;
    color: rgba(255,255,255,.78);
    font-size: .78rem;
    font-style: normal;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.mini-gallery {
    display: flex;
    gap: 12px;
}

.mini-gallery img {
    width: 88px;
    height: 88px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
}

.follow-box {
    padding: 22px;
    border-left: 1px solid rgba(255,255,255,.22);
}

.follow-box__label {
    margin: 0 0 6px;
    color: rgba(255,255,255,.64);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.follow-box a {
    font-size: 1.15rem;
    font-weight: 900;
}

.visit-panel {
    background: radial-gradient(circle at 80% 10%, rgba(31, 125, 157, .18), transparent 30%), var(--dark);
    color: var(--ink);
}

.visit-panel .eyebrow,
.page-hero .eyebrow {
    color: var(--blue-2);
}

.visit-panel p {
    color: var(--ink-soft);
}

.visit-panel .text-link {
    color: var(--blue-2);
}

.opening-card,
.panel-card,
.menu-card,
.product-feature-card {
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    background: rgba(255,255,255,.07);
    box-shadow: var(--shadow);
}

.opening-card {
    padding: clamp(28px, 4vw, 46px);
}

.opening-card h3,
.menu-card h2 {
    margin-bottom: 24px;
}

.opening-list {
    margin: 0;
}

.opening-list div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.opening-list dt {
    color: var(--ink-muted);
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .78rem;
}

.opening-list dd {
    margin: 0;
    color: var(--ink);
    font-weight: 800;
}

.page-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    padding: 170px 0 88px;
    background: var(--dark);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: linear-gradient(90deg, rgba(3,8,7,.96), rgba(3,8,7,.58)), var(--page-bg);
    background-size: cover;
    background-position: center;
    opacity: .88;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 20% 75%, rgba(31, 125, 157, .24), transparent 32%);
}

.page-hero--simple::before {
    background-image: radial-gradient(circle at 25% 85%, rgba(31, 125, 157, .24), transparent 32%), linear-gradient(135deg, #050a09, #0e1c1a);
}

.page-hero h1 {
    max-width: 1040px;
    font-size: clamp(4rem, 8.4vw, 8rem);
}

.page-hero p:not(.eyebrow) {
    max-width: 740px;
    margin-top: 28px;
    color: var(--ink-soft);
    font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

.menu-section {
    background: var(--cream);
    color: var(--text);
}

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

.panel-card {
    position: sticky;
    top: 126px;
    overflow: hidden;
    padding: 34px;
    background: white;
    border-color: rgba(22, 32, 30, .1);
    box-shadow: 0 26px 60px rgba(19, 31, 28, .12);
}

.panel-card h2 {
    margin-bottom: 20px;
    font-size: clamp(2.4rem, 4vw, 4rem);
}

.panel-card p {
    color: var(--muted);
}

.panel-card img {
    width: calc(100% + 68px);
    margin: 28px -34px -34px;
    height: 315px;
    object-fit: cover;
}

.note-pill {
    display: inline-flex;
    border-radius: 999px;
    padding: 10px 14px;
    background: rgba(31, 125, 157, .1);
    color: var(--blue) !important;
    font-weight: 900;
    font-size: .82rem !important;
    letter-spacing: .06em;
    text-transform: uppercase;
}

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

.menu-groups .menu-card:first-child {
    grid-row: span 2;
}

.menu-card {
    padding: clamp(28px, 4vw, 44px);
    background: white;
    border-color: rgba(22, 32, 30, .1);
    color: var(--text);
    box-shadow: 0 18px 46px rgba(19, 31, 28, .1);
}

.menu-card h2 {
    font-size: clamp(2.2rem, 3vw, 3.5rem);
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-list li {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(22, 32, 30, .1);
}

.menu-list span {
    color: var(--text);
    font-weight: 760;
}

.menu-list strong {
    color: var(--blue);
    font-weight: 900;
}

.visit-panel--dark {
    background: #07100f;
}

.opening-card--dark {
    background: rgba(255,255,255,.06);
}

.story-copy,
.product-story__grid > div:first-child,
.content-page__inner {
    max-width: 900px;
}

.portrait-card {
    position: relative;
    border-radius: 999px 999px 34px 34px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(19, 31, 28, .25);
    min-height: 650px;
}

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

.gallery-section,
.supplier-section {
    background: #07100f;
    color: var(--ink);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
}

.section-heading h2 {
    max-width: 840px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 250px;
    gap: 18px;
}

.photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 48px rgba(0,0,0,.28);
}

.photo-grid img:nth-child(1) {
    grid-column: span 3;
    grid-row: span 2;
}

.photo-grid img:nth-child(2),
.photo-grid img:nth-child(6) {
    grid-column: span 2;
}

.photo-grid img:nth-child(3),
.photo-grid img:nth-child(4),
.photo-grid img:nth-child(5) {
    grid-column: span 1;
}

.product-story__grid {
    align-items: stretch;
}

.product-feature-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 38px;
    color: white;
}

.product-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--card-image);
    background-size: cover;
    background-position: center;
}

.product-feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.76));
}

.product-feature-card p {
    margin: 0 0 10px;
    color: var(--blue-2);
    font-size: .84rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.product-feature-card strong {
    display: block;
    max-width: 460px;
    font-family: var(--serif);
    font-size: clamp(2rem, 3.4vw, 4rem);
    line-height: 1;
    letter-spacing: -.05em;
}

.content-page__inner {
    padding: clamp(32px, 5vw, 64px);
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(19,31,28,.12);
}

.wp-content h2,
.wp-content h3 {
    margin: 2rem 0 1rem;
    font-family: var(--sans);
    letter-spacing: -.02em;
    line-height: 1.15;
}

.wp-content h2 {
    font-size: 2rem;
}

.wp-content h3 {
    font-size: 1.45rem;
}

.wp-content a,
.archive-card a {
    color: var(--blue);
    font-weight: 800;
}

.archive-card {
    padding: 28px;
    border-radius: 22px;
    background: white;
    color: var(--text);
    margin-bottom: 20px;
}

.site-footer {
    background: #030807;
    color: var(--ink);
    padding: 72px 0 32px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.site-footer__top {
    display: grid;
    grid-template-columns: minmax(240px, .7fr) 1fr;
    gap: 40px;
    align-items: end;
    padding-bottom: 42px;
    margin-bottom: 42px;
    border-bottom: 1px solid rgba(255,255,255,.11);
}

.site-footer__brand .site-logo,
.site-footer__brand .custom-logo-link {
    margin-bottom: 18px;
}

.site-footer__brand p,
.footer-cta p,
.site-footer a,
.site-footer__bottom p {
    color: var(--ink-muted);
}

.footer-cta {
    text-align: right;
    font-size: clamp(1.3rem, 3vw, 2.6rem);
    line-height: 1.1;
    font-family: var(--serif);
    letter-spacing: -.04em;
}

.footer-cta a {
    display: inline-block;
    color: var(--blue-2);
    margin-top: 12px;
    font-family: var(--sans);
    font-size: 1rem;
    letter-spacing: .02em;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: clamp(32px, 6vw, 80px);
}

.site-footer__title {
    margin-bottom: 20px;
    color: var(--ink);
    font-family: var(--sans);
    font-size: .84rem;
    line-height: 1.3;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.opening-list--footer div {
    max-width: 390px;
}

.footer-nav li {
    margin: 0 0 8px;
}

.footer-nav a,
.privacy-link,
.social-links a {
    display: inline-flex;
    padding: 5px 0;
    color: var(--ink-soft);
    font-weight: 800;
}

.privacy-link {
    margin-top: 12px;
}

.social-handle {
    color: var(--blue-2);
    font-family: var(--serif);
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -.04em;
}

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

.site-footer__bottom {
    margin-top: 46px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: .9rem;
}


/* Updated homepage flow, Google review carousel, visit panel, and footer polish */
.quote-band--single {
    padding: clamp(38px, 5vw, 58px) 0;
}

.quote-band__grid--single {
    grid-template-columns: minmax(0, 1fr) minmax(220px, .32fr);
}

.reviews-section {
    background: linear-gradient(180deg, #06100f 0%, #081514 100%);
    color: var(--ink);
    overflow: hidden;
}

.reviews-section__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: clamp(30px, 4vw, 54px);
}

.reviews-section__head h2 {
    max-width: 880px;
}

.reviews-section__actions {
    display: flex;
    gap: 12px;
    flex: 0 0 auto;
}

.review-nav {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    color: var(--ink);
    cursor: pointer;
    font-family: var(--serif);
    font-size: 2.1rem;
    line-height: 1;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.review-nav:hover {
    transform: translateY(-2px);
    background: rgba(31, 125, 157, .18);
    border-color: rgba(43, 154, 192, .36);
}

.reviews-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, 31%);
    gap: 22px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    padding: 4px 0 22px;
    scrollbar-width: thin;
}

.review-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    scroll-snap-align: start;
    padding: clamp(26px, 3vw, 36px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 88% 18%, rgba(31, 125, 157, .18), transparent 30%),
        rgba(255, 255, 255, .065);
    box-shadow: var(--shadow);
}

.review-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.review-card__rating {
    color: var(--blue-2);
    font-weight: 900;
    letter-spacing: .06em;
}

.review-card__source {
    color: var(--ink-muted);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.review-card p {
    color: rgba(247, 241, 232, .84);
    font-family: var(--serif);
    font-size: clamp(1.32rem, 2vw, 1.82rem);
    line-height: 1.18;
    letter-spacing: -.035em;
}

.review-card cite {
    margin-top: 26px;
    color: var(--ink-soft);
    font-style: normal;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.visit-panel__grid--simple {
    grid-template-columns: minmax(0, .8fr) minmax(320px, .65fr);
}

.visit-photo-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, .12);
}

.visit-photo-card img {
    width: 100%;
    height: clamp(360px, 35vw, 520px);
    object-fit: cover;
}

.product-story__grid--single {
    display: block;
}

.product-story__grid--single > div {
    max-width: 940px;
}

.site-footer__brand h2 {
    margin: 0 0 12px;
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 4.4rem);
    line-height: .96;
    letter-spacing: -.05em;
}

.footer-nav--tidy {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-nav--tidy li {
    margin: 0;
}

.footer-nav--tidy a {
    padding: 3px 0;
}

@media (max-width: 1180px) {
    .hero__grid {
        grid-template-columns: 1fr;
    }

    .hero-showcase {
        min-height: 560px;
        width: min(680px, 100%);
    }

    .hero-showcase__main {
        width: 64%;
    }

    .hero-showcase__badge {
        width: 42%;
    }

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

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

    .feature-strip article:nth-child(3) {
        border-left: 0;
    }

    .menu-layout,
    .split-showcase__grid,
    .about-story__grid,
    .product-story__grid,
    .visit-panel__grid {
        grid-template-columns: 1fr;
    }

    .panel-card {
        position: static;
    }

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

    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .photo-grid img:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .photo-grid img:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (max-width: 920px) {
    body {
        font-size: 16px;
    }

    .site-header__inner {
        min-height: 82px;
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .site-logo,
    .custom-logo-link {
        width: min(220px, 55vw);
    }

    .site-logo img,
    .custom-logo {
        max-height: 58px;
    }

    .site-nav-toggle {
        display: inline-block;
    }

    .header-order {
        display: none;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        z-index: 91;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 110px 28px 40px;
        background: rgba(3, 8, 7, .97);
        backdrop-filter: blur(18px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav__list {
        width: min(440px, 100%);
        flex-direction: column;
        gap: 12px;
    }

    .site-nav__list a {
        width: 100%;
        min-height: 64px;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, .12);
        background: rgba(255,255,255,.05);
        font-size: .92rem;
    }

    .hero {
        min-height: auto;
        padding: 132px 0 70px;
    }

    .hero-showcase {
        min-height: 520px;
    }

    .hero-showcase__main {
        width: 72%;
    }

    .hero-showcase__main img {
        height: 480px;
    }

    .hero-showcase__badge {
        width: 48%;
    }

    .hero-showcase__badge img {
        height: 300px;
    }

    .quote-band__grid {
        grid-template-columns: 1fr;
    }

    .follow-box {
        padding-left: 0;
        border-left: 0;
    }

    .site-footer__top,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .footer-cta {
        text-align: left;
    }
}

@media (max-width: 680px) {
    .container,
    .container-wide {
        width: min(calc(100% - 28px), var(--container));
    }

    h1 {
        font-size: clamp(3.2rem, 15vw, 5.2rem);
    }

    h2 {
        font-size: clamp(2.35rem, 12vw, 4rem);
    }

    .eyebrow {
        letter-spacing: .18em;
    }

    .hero h1 .hero__line {
        white-space: normal;
    }

    .hero__lede {
        margin-top: 24px;
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
        margin-top: 30px;
    }

    .button {
        width: 100%;
    }

    .hero-showcase {
        min-height: 410px;
    }

    .hero-showcase__main {
        width: 78%;
        top: 10px;
    }

    .hero-showcase__main img {
        height: 380px;
    }

    .hero-showcase__badge {
        width: 44%;
        bottom: 10px;
        border-radius: 24px;
    }

    .hero-showcase__badge img {
        height: 230px;
    }

    .feature-strip__grid,
    .card-grid--four {
        grid-template-columns: 1fr;
    }

    .feature-strip article,
    .feature-strip article:nth-child(3) {
        border-left: 0;
        border-top: 1px solid rgba(22, 32, 30, .12);
    }

    .feature-strip article:first-child {
        border-top: 0;
    }

    .image-card {
        min-height: 360px;
    }

    .stack-photos {
        min-height: 500px;
    }

    .stack-photos__large {
        width: 88%;
        height: 450px;
    }

    .stack-photos__small {
        width: 46%;
        height: 230px;
        border-width: 7px;
    }

    .mini-gallery img {
        width: 76px;
        height: 76px;
    }

    .page-hero {
        min-height: 480px;
        padding: 132px 0 58px;
    }

    .page-hero h1 {
        font-size: clamp(3.2rem, 14vw, 5rem);
    }

    .menu-card,
    .panel-card,
    .content-page__inner,
    .opening-card {
        border-radius: 22px;
        padding: 26px;
    }

    .panel-card img {
        width: calc(100% + 52px);
        margin: 24px -26px -26px;
    }

    .photo-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 310px;
    }

    .photo-grid img:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }

    .site-footer {
        padding-top: 52px;
    }
}


@media (max-width: 920px) {
    .quote-band__grid--single,
    .reviews-section__head,
    .visit-panel__grid--simple {
        grid-template-columns: 1fr;
    }

    .reviews-section__head {
        align-items: start;
        flex-direction: column;
    }

    .reviews-carousel {
        grid-auto-columns: minmax(280px, 76vw);
    }
}

@media (max-width: 680px) {
    .review-nav {
        width: 48px;
        height: 48px;
    }

    .review-card {
        min-height: 300px;
    }

    .footer-nav--tidy {
        gap: 4px;
    }
}
