:root {
    --bg: #f6efe3;
    --bg-soft: #fff9ef;
    --surface: rgba(255, 249, 239, 0.88);
    --surface-strong: #fff7ea;
    --ink: #1f1b17;
    --muted: #665d53;
    --line: rgba(57, 42, 26, 0.12);
    --brand: #b24d18;
    --brand-strong: #8c3210;
    --accent: #d9a441;
    --forest: #334437;
    --shadow: 0 24px 60px rgba(35, 24, 14, 0.18);
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container-max: 1240px;
    --topbar-height: 58px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(217, 164, 65, 0.18), transparent 35%),
        radial-gradient(circle at right center, rgba(178, 77, 24, 0.1), transparent 28%),
        linear-gradient(180deg, #f5eedf 0%, #f4eddf 34%, #fff8eb 100%);
    color: var(--ink);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: var(--container-max);
}

.page-shell {
    overflow: clip;
}

.section-padding {
    padding: 110px 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(178, 77, 24, 0.1);
    color: var(--brand-strong);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.12);
    color: #fff4db;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2.8rem;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2,
.section-copy h2,
.contact-section h2,
.featured-dishes h3,
.hero-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 0.95;
    margin: 1rem 0 1rem;
    letter-spacing: -0.03em;
}

.section-heading p,
.section-copy p,
.featured-dishes p,
.contact-section p,
.hero-lead,
.hero-card p,
.footer-copy {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted);
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1045;
    background: rgba(21, 17, 13, 0.75);
    backdrop-filter: blur(10px);
    color: rgba(255, 244, 219, 0.9);
    font-size: 0.9rem;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
}

.topbar-inner i,
.topbar-link i {
    margin-right: 0.5rem;
    color: var(--accent);
}

.site-header .navbar {
    top: var(--topbar-height);
    padding: 1rem 0;
    transition: top 0.28s ease, background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.header-compact .topbar {
    transform: translateY(-100%);
    opacity: 0;
}

.site-header.header-compact .navbar {
    top: 0;
}

.site-header .navbar.nav-scrolled {
    background: rgba(255, 248, 235, 0.94);
    box-shadow: 0 18px 44px rgba(35, 24, 14, 0.12);
    padding: 0.65rem 0;
}

.nav-shell {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 0.6rem 1rem 0.6rem 1.25rem;
    backdrop-filter: blur(18px);
}

.nav-scrolled .nav-shell {
    background: rgba(255, 249, 239, 0.9);
    border-color: var(--line);
}

.brand-logo {
    height: 44px;
    width: auto;
}

.brand-logo-dark {
    display: none;
}

.nav-scrolled .brand-logo-light {
    display: none;
}

.nav-scrolled .brand-logo-dark {
    display: block;
}

.navbar-nav .nav-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 247, 229, 0.86);
    padding: 0.5rem 0.95rem;
}

.nav-scrolled .navbar-nav .nav-link,
.nav-scrolled .navbar-toggler {
    color: var(--ink);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
    color: #ffffff;
}

.nav-scrolled .navbar-nav .nav-link:hover,
.nav-scrolled .navbar-nav .nav-link:focus,
.nav-scrolled .navbar-nav .nav-link.active {
    color: var(--brand-strong);
}

.btn-book,
.btn-primary-glow,
.btn-dark-soft,
.btn-outline-light {
    border-radius: 999px;
    font-weight: 800;
    padding: 0.9rem 1.35rem;
    border: 0;
}

.btn-book,
.btn-primary-glow {
    background: linear-gradient(135deg, var(--brand) 0%, #cc6a24 100%);
    color: #fffaf2;
    box-shadow: 0 14px 30px rgba(178, 77, 24, 0.28);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: #fffaf2;
}

.btn-dark-soft {
    background: rgba(29, 24, 20, 0.92);
    color: #fff4dd;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 188px 0 90px;
    color: #fffef9;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.hero-overlay {
    background:
        linear-gradient(115deg, rgba(22, 18, 14, 0.94), rgba(22, 18, 14, 0.7)),
        radial-gradient(circle at 78% 22%, rgba(178, 77, 24, 0.26), transparent 24%),
        radial-gradient(circle at 18% 82%, rgba(217, 164, 65, 0.18), transparent 20%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-copy {
    color: #fff;
}

.hero-copy h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 7vw, 6.6rem);
    line-height: 0.88;
    letter-spacing: -0.04em;
    margin: 1rem 0 0.5rem;
    max-width: 10ch;
    color: #fff;
}

.hero-subtitle {
    margin: 0 0 1.1rem;
    color: #f6e8da;
    font-size: clamp(1.05rem, 1.8vw, 1.45rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-lead {
    color: rgba(255, 246, 229, 0.84);
    max-width: 60ch;
    font-size: 1.03rem;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0 1.25rem;
}

.hero-points {
    display: grid;
    gap: 0.9rem;
    margin-top: 0.75rem;
    max-width: 42rem;
}

.hero-points li {
    position: relative;
    padding-left: 1.6rem;
    color: rgba(255, 246, 229, 0.88);
    font-weight: 600;
}

.hero-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--brand));
}

.hero-card-kicker,
.highlight-kicker,
.info-label,
.testimonial-tag,
.contact-item-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 800;
}

.hero-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.6rem;
}

.hero-contact-chip {
    min-width: 220px;
    padding: 0.95rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 248, 235, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.hero-contact-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 230, 188, 0.72);
    margin-bottom: 0.4rem;
}

.hero-contact-chip strong {
    display: block;
    color: #fff3dc;
    font-size: 0.98rem;
    line-height: 1.5;
}

.hero-showcase {
    position: relative;
    min-height: 620px;
}

.hero-orbit {
    position: absolute;
    inset: 42px 46px 36px 52px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.16);
}

.hero-card {
    position: absolute;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 52px rgba(6, 17, 28, 0.28);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-main {
    inset: 28px 46px 74px 24px;
}

.hero-card-secondary {
    width: 220px;
    height: 250px;
    left: -8px;
    bottom: 10px;
}

.hero-card-accent {
    width: 190px;
    height: 220px;
    right: 0;
    top: 0;
}

.hero-badge {
    position: absolute;
    right: 18px;
    bottom: 26px;
    width: 260px;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(22, 18, 14, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
    color: #fff3dc;
    box-shadow: 0 20px 40px rgba(6, 17, 28, 0.22);
}

.hero-badge-kicker {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 227, 191, 0.72);
}

.hero-badge strong {
    font-size: 1rem;
    line-height: 1.6;
}

.about-section {
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/about-texture.jpg') no-repeat right top;
    opacity: 0.2;
    pointer-events: none;
}

.about-visual {
    position: relative;
    padding: 0;
}

.about-visual img {
    border-radius: 36px;
    box-shadow: var(--shadow);
    min-height: 560px;
    width: 100%;
    object-fit: cover;
}

.page-about .about-visual img,
.page-cuisine .about-visual img {
    min-height: 0;
    height: 380px;
}

.inner-feature-image {
    height: 380px !important;
    min-height: 0 !important;
    width: 100%;
    object-fit: cover;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.info-card,
.highlight-card,
.testimonial-card,
.contact-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 20px 45px rgba(35, 24, 14, 0.08);
}

.info-card {
    border-radius: var(--radius-md);
    padding: 1.4rem;
}

.info-label,
.highlight-kicker,
.testimonial-tag,
.contact-item-label {
    color: var(--brand);
}

.cuisine-section {
    background: linear-gradient(180deg, rgba(255, 249, 239, 0) 0%, rgba(255, 249, 239, 0.72) 22%, rgba(255, 249, 239, 0.98) 100%);
}

.cuisine-intro {
    max-width: 900px;
}

.highlight-card {
    border-radius: 26px;
    padding: 1.75rem;
    width: 100%;
}

.highlight-card h3,
.testimonial-card h3,
.location-copy h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin: 0.6rem 0 0.8rem;
}

.highlight-list {
    margin-top: 1.25rem;
    display: grid;
    gap: 0.7rem;
}

.highlight-list li {
    position: relative;
    padding-left: 1.2rem;
    font-weight: 700;
}

.highlight-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
}

.featured-dishes {
    margin-top: 4rem;
    padding: 1.25rem;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(51, 68, 55, 0.08), rgba(255, 249, 239, 0.74));
}

.featured-dish-image {
    border-radius: 26px;
    min-height: 360px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.pill-row span {
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    font-weight: 700;
}

.menu-section {
    background: linear-gradient(180deg, rgba(255, 248, 235, 0.96), rgba(245, 238, 223, 0.7));
}

.menu-panel {
    padding: 2rem;
    border-radius: 32px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 20px 45px rgba(35, 24, 14, 0.08);
}

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    border: 0;
    margin-bottom: 2rem;
}

.menu-tabs .nav-link {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.8rem 1.15rem;
    background: rgba(255, 255, 255, 0.68);
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.menu-tabs .nav-link.active,
.menu-tabs .nav-link:hover,
.menu-tabs .nav-link:focus {
    background: linear-gradient(135deg, var(--brand) 0%, #cc6a24 100%);
    color: #fffaf2;
    border-color: transparent;
}

.menu-tab-content {
    border-top: 1px solid rgba(57, 42, 26, 0.08);
    padding-top: 1rem;
}

.menu-list {
    padding: 0 1rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(57, 42, 26, 0.1);
}

.menu-item:last-child {
    border-bottom: 0;
}

.menu-item-copy {
    flex: 1 1 auto;
}

.menu-item-copy h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    line-height: 1;
    margin: 0 0 0.35rem;
}

.menu-item-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.menu-item-price {
    flex: 0 0 auto;
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    white-space: nowrap;
    padding-left: 1rem;
}

.gallery-frame img,
.location-image,
.gallery-modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-carousel {
    padding-bottom: 3.5rem;
}

.gallery-frame {
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #d9cdb8;
}

.gallery-indicators,
.testimonial-indicators {
    gap: 0.55rem;
}

.gallery-indicators [data-bs-target],
.testimonial-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    margin: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(57, 42, 26, 0.24);
    opacity: 1;
}

.gallery-indicators .active,
.testimonial-indicators .active {
    background: var(--brand);
}

.gallery-control,
.testimonial-control {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
    border-radius: 999px;
    background: rgba(22, 18, 14, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 1;
}

.gallery-control.carousel-control-prev {
    left: -18px;
}

.gallery-control.carousel-control-next {
    right: -18px;
}

.testimonial-section {
    position: relative;
}

.testimonial-card {
    padding: 1.8rem;
    border-radius: 26px;
    width: 100%;
}

.testimonial-card p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 0;
}

.testimonial-carousel {
    padding-bottom: 1rem;
}

.premium-testimonial {
    min-height: 100%;
    background:
        radial-gradient(circle at top right, rgba(217, 164, 65, 0.14), transparent 24%),
        linear-gradient(180deg, rgba(255, 249, 239, 0.98), rgba(255, 255, 255, 1));
    border: 1px solid rgba(57, 42, 26, 0.12);
    box-shadow: 0 24px 50px rgba(35, 24, 14, 0.1);
}

.testimonial-stars {
    margin-bottom: 1rem;
    color: var(--accent);
    letter-spacing: 0.2em;
    font-size: 0.9rem;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    line-height: 1.22;
    color: var(--ink);
    margin-bottom: 1.8rem !important;
}

.testimonial-person {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonial-person strong {
    font-size: 1rem;
    color: var(--ink);
}

.testimonial-person span {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-control {
    position: static;
    transform: none;
    background: rgba(22, 18, 14, 0.84);
}

.inner-main {
    min-height: 60vh;
}

.page-hero {
    position: relative;
    padding: 210px 0 110px;
    color: #fffef9;
    overflow: hidden;
}

.page-hero-media,
.page-hero-overlay {
    position: absolute;
    inset: 0;
}

.page-hero-media {
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.page-hero-overlay {
    background:
        linear-gradient(115deg, rgba(22, 18, 14, 0.9), rgba(22, 18, 14, 0.62)),
        radial-gradient(circle at 78% 22%, rgba(178, 77, 24, 0.28), transparent 24%),
        radial-gradient(circle at 18% 82%, rgba(217, 164, 65, 0.16), transparent 20%);
}

.page-hero-copy {
    position: relative;
    z-index: 1;
    max-width: 840px;
}

.page-hero-copy h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.1rem, 5vw, 5.4rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
    margin: 1rem 0;
}

.page-hero-copy p {
    max-width: 62ch;
    color: rgba(255, 246, 229, 0.84);
    font-size: 1.04rem;
    line-height: 1.85;
}

.page-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.7rem;
}

.page-meta-pill {
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(255, 248, 235, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff2d8;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-block-soft {
    background: linear-gradient(180deg, rgba(255, 249, 239, 0.64), rgba(255, 255, 255, 0.9));
}

.story-grid,
.cuisine-grid {
    display: grid;
    gap: 1.35rem;
}

.story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-card,
.cuisine-card,
.split-panel,
.cta-band,
.experience-item {
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 20px 45px rgba(35, 24, 14, 0.08);
}

.story-card,
.cuisine-card,
.experience-item {
    border-radius: 26px;
    padding: 1.7rem;
}

.story-card p,
.cuisine-card p,
.experience-item p,
.cta-band p {
    margin: 1rem 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.split-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.5rem;
    border-radius: 34px;
    padding: 2rem;
    background:
        radial-gradient(circle at top right, rgba(217, 164, 65, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(255, 249, 239, 0.94), rgba(255, 255, 255, 0.98));
}

.split-panel h2,
.cta-band h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 0.96;
    margin: 1rem 0;
}

.experience-list {
    display: grid;
    gap: 1rem;
}

.experience-item h3,
.cuisine-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin: 0 0 0.5rem;
}

.cuisine-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cuisine-card {
    background:
        radial-gradient(circle at top right, rgba(217, 164, 65, 0.1), transparent 24%),
        linear-gradient(180deg, rgba(255, 249, 239, 0.98), rgba(255, 255, 255, 1));
}

.cuisine-item-list {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.25rem;
}

.cuisine-item-list li {
    position: relative;
    padding-left: 1.2rem;
    color: var(--ink);
    font-weight: 700;
}

.cuisine-item-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(28, 23, 18, 0.98), rgba(55, 39, 24, 0.92)),
        linear-gradient(180deg, rgba(255, 249, 239, 0.98), rgba(255, 255, 255, 1));
    color: #fff6e7;
}

.cta-band p {
    color: rgba(255, 242, 216, 0.8);
}

.cta-band .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #ffe6b7;
}

.cta-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
}

.contact-panel {
    border-radius: 36px;
    padding: 2rem;
    background:
        radial-gradient(circle at top right, rgba(217, 164, 65, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(255, 249, 239, 0.92), rgba(255, 247, 232, 0.98));
}

.contact-list {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line);
}

.contact-item strong {
    text-align: right;
}

.location-card {
    position: relative;
    min-height: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.location-image {
    min-height: 430px;
}

.location-copy {
    position: absolute;
    inset: auto 1rem 1rem 1rem;
    padding: 1.5rem;
    border-radius: 22px;
    background: rgba(20, 16, 13, 0.76);
    backdrop-filter: blur(10px);
    color: #fff5df;
}

.location-copy p {
    color: rgba(255, 245, 223, 0.82);
}

.site-footer {
    padding: 70px 0 28px;
    background: #191410;
    color: #f8ead0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
}

.footer-logo {
    height: 48px;
    margin-bottom: 1.2rem;
}

.site-footer h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-links li + li {
    margin-top: 0.7rem;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.3rem;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(248, 234, 208, 0.14);
    color: #f8ead0;
    font-size: 1rem;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.footer-social-link:hover,
.footer-social-link:focus {
    transform: translateY(-2px);
    background: rgba(178, 77, 24, 0.22);
    border-color: rgba(217, 164, 65, 0.34);
    color: #fff6e7;
}

.footer-contact-list {
    display: grid;
    gap: 1rem;
}

.footer-contact-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0.9rem;
    align-items: start;
}

.footer-contact-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(248, 234, 208, 0.14);
    color: var(--accent);
    font-size: 1rem;
}

.footer-contact-label {
    display: inline-block;
    margin-bottom: 0.35rem;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(248, 234, 208, 0.54);
}

.footer-links a,
.footer-link,
.footer-address {
    color: rgba(248, 234, 208, 0.78);
}

.footer-address,
.footer-link {
    line-height: 1.7;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(248, 234, 208, 0.14);
    color: rgba(248, 234, 208, 0.62);
    text-align: center;
}

.footer-bottom a {
    color: #f8ead0;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    :root {
        --topbar-height: 0px;
    }

    .topbar {
        display: none;
    }

    .nav-shell {
        border-radius: 28px;
    }

    .navbar-collapse {
        padding-top: 1rem;
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .info-grid,
    .footer-grid,
    .story-grid,
    .cuisine-grid,
    .split-panel {
        grid-template-columns: 1fr;
    }

    .hero-section {
        min-height: auto;
        padding-top: 188px;
        padding-bottom: 54px;
    }

    .hero-copy h1 {
        max-width: 12ch;
    }

    .page-hero {
        padding-top: 188px;
        padding-bottom: 88px;
    }

    .hero-showcase {
        min-height: 540px;
        margin-top: 1rem;
    }

    .hero-card-main {
        inset: 30px 28px 94px 28px;
    }

    .hero-card-secondary {
        left: 18px;
        bottom: 18px;
    }

    .hero-card-accent {
        right: 22px;
    }

    .hero-badge {
        right: 26px;
    }

    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-band-actions {
        justify-content: flex-start;
    }

    .menu-item {
        flex-direction: column;
    }

    .menu-list {
        padding: 0;
    }

    .gallery-control.carousel-control-prev {
        left: 8px;
    }

    .gallery-control.carousel-control-next {
        right: 8px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --topbar-height: 0px;
    }

    .section-padding {
        padding: 82px 0;
    }

    .site-header .navbar {
        padding-top: 0.4rem;
    }

    .hero-section {
        padding-top: 214px;
        padding-bottom: 42px;
    }

    .page-hero {
        padding-top: 214px;
        padding-bottom: 62px;
    }

    .brand-logo {
        height: 38px;
    }

    .hero-copy h1,
    .page-hero-copy h1,
    .section-heading h2,
    .section-copy h2,
    .contact-section h2,
    .featured-dishes h3 {
        line-height: 1;
    }

    .hero-actions,
    .contact-item,
    .cta-band-actions {
        flex-direction: column;
    }

    .hero-showcase {
        min-height: 430px;
    }

    .hero-orbit {
        inset: 28px 18px 22px 18px;
    }

    .hero-card-main {
        inset: 20px 20px 92px 20px;
    }

    .hero-card-secondary {
        width: 140px;
        height: 150px;
        left: 12px;
        bottom: 12px;
    }

    .hero-card-accent {
        width: 126px;
        height: 138px;
        right: 12px;
        top: 10px;
    }

    .hero-badge {
        right: 14px;
        bottom: 14px;
        width: calc(100% - 28px);
    }

    .contact-panel {
        padding: 1.4rem;
    }

    .hero-contact-row {
        flex-direction: column;
    }

    .hero-contact-chip {
        min-width: 0;
    }

    .menu-panel {
        padding: 1.2rem;
    }

    .split-panel,
    .cta-band {
        padding: 1.4rem;
    }

    .menu-tabs {
        justify-content: flex-start;
    }

    .menu-tabs .nav-link {
        font-size: 0.8rem;
        padding: 0.75rem 0.95rem;
    }

    .menu-item-copy h3 {
        font-size: 1.45rem;
    }

    .about-visual img {
        min-height: 400px;
    }

    .page-about .about-visual img,
    .page-cuisine .about-visual img {
        height: 300px;
    }

    .inner-feature-image {
        height: 300px !important;
    }

    .gallery-frame {
        aspect-ratio: 1 / 1;
    }

    .testimonial-quote {
        font-size: 1.6rem;
    }

    .testimonial-controls {
        gap: 0.75rem;
    }

    .featured-dish-image,
    .location-image {
        min-height: 300px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-card,
    .gallery-card.large {
        grid-column: span 1;
        min-height: 180px;
    }
}