﻿:root {
    --color-base: #fffdf8;
    --color-base-soft: #fbf5eb;
    --color-base-warm: #f6ead8;
    --color-surface: #ffffff;
    --color-text: #241f1c;
    --color-muted: #746a62;
    --color-border: rgba(122, 30, 19, 0.13);
    --color-border-strong: rgba(122, 30, 19, 0.22);
    --color-burgundy: #7a1e13;
    --color-burgundy-dark: #5f170f;
    --color-burgundy-soft: #9b3528;
    --color-whatsapp: #1f8f57;
    --color-whatsapp-dark: #176f43;
    --color-wheat-gold: #d9ba74;
    --color-wheat-soft: #f2dfb2;
    --color-wheat-pale: #fbf1d7;
    --shadow-soft: 0 14px 36px rgba(70, 38, 26, 0.055);
    --shadow-card: 0 20px 46px rgba(70, 38, 26, 0.075);
    --radius: 8px;
    --space-shell: min(1160px, calc(100vw - 36px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-text);
    background: var(--color-base);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
}

a {
    color: var(--color-burgundy);
    text-underline-offset: 3px;
}

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

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

h1,
h2,
h3 {
    color: #211915;
    line-height: 1.12;
    letter-spacing: 0;
}

h1 {
    max-width: 780px;
    margin-bottom: 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.45rem, 5.7vw, 5.15rem);
    font-weight: 520;
}

h2 {
    max-width: 820px;
    margin-bottom: 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.9rem, 3.5vw, 3.05rem);
    font-weight: 520;
    line-height: 1.16;
}

h3 {
    margin-bottom: 12px;
    font-size: 1.08rem;
    font-weight: 730;
    line-height: 1.28;
}

p {
    color: var(--color-muted);
}

.site-shell {
    width: var(--space-shell);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 253, 248, 0.97);
    border-bottom: 1px solid rgba(122, 30, 19, 0.07);
    box-shadow: 0 8px 22px rgba(65, 34, 25, 0.028);
    backdrop-filter: blur(16px);
}

.site-header__inner,
.site-footer__grid {
    display: grid;
    gap: 24px;
}

.site-header__inner {
    grid-template-columns: minmax(230px, auto) 1fr auto;
    align-items: center;
    min-height: 68px;
    padding: 7px 0;
}

.site-title {
    display: inline-grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    color: var(--color-burgundy);
    font-weight: 850;
    line-height: 1.05;
    text-decoration: none;
}

.site-title__mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--color-burgundy);
    background:
        linear-gradient(180deg, #ffffff, var(--color-wheat-pale));
    border: 1px solid rgba(122, 30, 19, 0.12);
    border-radius: 50%;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: 520;
    box-shadow: 0 8px 18px rgba(70, 38, 26, 0.055);
}

.site-title__copy {
    display: grid;
    gap: 2px;
}

.site-title__main {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    font-weight: 540;
    letter-spacing: 0.01em;
}

.site-title__descriptor {
    color: var(--color-muted);
    font-size: 0.72rem;
    font-weight: 560;
}

.site-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 24px);
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-nav a {
    color: var(--color-text);
    font-size: 0.89rem;
    font-weight: 640;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
    color: var(--color-burgundy);
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 720;
    line-height: 1.1;
    text-decoration: none;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus {
    transform: translateY(-1px);
}

.button--primary {
    color: #ffffff;
    background: var(--color-whatsapp);
    box-shadow: 0 12px 26px rgba(31, 143, 87, 0.18);
}

.button--primary:hover,
.button--primary:focus {
    color: #ffffff;
    background: var(--color-whatsapp-dark);
    box-shadow: 0 16px 34px rgba(31, 143, 87, 0.24);
}

.button--secondary {
    color: var(--color-burgundy);
    background: rgba(242, 223, 178, 0.62);
    border-color: rgba(122, 30, 19, 0.10);
}

.button--ghost {
    color: var(--color-burgundy);
    background: rgba(255, 255, 255, 0.72);
    border-color: var(--color-border-strong);
}

.site-header__cta {
    min-height: 38px;
    padding: 9px 14px;
    font-size: 0.86rem;
    box-shadow: 0 8px 18px rgba(31, 143, 87, 0.14);
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.site-section,
.section-band,
.hero {
    padding: clamp(76px, 8vw, 112px) 0;
}

.section-band {
    background:
        linear-gradient(180deg, var(--color-base) 0%, var(--color-base-soft) 100%);
}

.section-band--hero {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.section-band--hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.54)),
        linear-gradient(180deg, #ffffff 0%, var(--color-base) 78%, var(--color-base-soft) 100%);
    pointer-events: none;
}

.hero {
    min-height: clamp(560px, 72vh, 690px);
    display: grid;
    align-items: center;
}

.hero__grid,
.split-layout,
.reservation-band__inner,
.faq-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
    gap: clamp(36px, 6.5vw, 82px);
    align-items: center;
}

.hero__grid {
    grid-template-columns: minmax(300px, 0.76fr) minmax(480px, 1.24fr);
    gap: clamp(34px, 5.4vw, 72px);
}

.hero__content {
    max-width: 560px;
    padding: 12px 0;
}

.hero h1 {
    max-width: 560px;
    margin-bottom: 18px;
    font-size: clamp(2rem, 3.05vw, 3.05rem);
    font-weight: 520;
    line-height: 1.14;
}

.hero__lead {
    max-width: 520px;
    margin-bottom: 26px;
    color: var(--color-muted);
    font-size: clamp(1rem, 1.18vw, 1.1rem);
    line-height: 1.72;
}

.hero__media,
.image-placeholder {
    position: relative;
    display: block;
    min-height: 500px;
    overflow: hidden;
    margin: 0;
    background: var(--color-base-soft);
    border: 1px solid rgba(122, 30, 19, 0.10);
    border-radius: calc(var(--radius) + 2px);
    box-shadow: 0 22px 54px rgba(70, 38, 26, 0.08);
}

.hero__media img,
.image-placeholder img,
.category-card__image img,
.dish-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__media::before,
.image-placeholder::before,
.category-card__image::before,
.dish-card__image::before {
    position: absolute;
    inset: 18px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: calc(var(--radius) - 2px);
}

.hero__media img,
.image-placeholder img {
    min-height: 500px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--color-burgundy);
    font-size: 0.74rem;
    font-weight: 720;
    letter-spacing: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.eyebrow::before {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--color-wheat-gold);
    content: "";
}

.trust-bar {
    padding: 22px 0;
    color: var(--color-text);
    background:
        linear-gradient(180deg, #ffffff 0%, var(--color-base-soft) 100%);
    border-top: 1px solid rgba(122, 30, 19, 0.08);
    border-bottom: 1px solid rgba(122, 30, 19, 0.08);
}

.trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.trust-bar__grid > div {
    padding: 6px 18px;
    border-left: 1px solid rgba(122, 30, 19, 0.10);
}

.trust-bar__grid > div:first-child {
    border-left: 0;
}

.trust-bar strong,
.trust-bar span {
    display: block;
}

.trust-bar strong {
    color: var(--color-burgundy);
    font-size: 0.96rem;
    font-weight: 720;
}

.trust-bar span {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 42px;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading--center .eyebrow {
    justify-content: center;
}

.reviews-social-proof {
    background:
        linear-gradient(180deg, #ffffff 0%, var(--color-base-soft) 100%);
}

.reviews-social-proof__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
    gap: clamp(30px, 5.5vw, 72px);
    align-items: center;
}

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

.review-placeholder-card {
    position: relative;
    min-height: 238px;
    padding: clamp(24px, 3.2vw, 34px);
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 253, 248, 0.96));
    border: 1px solid rgba(122, 30, 19, 0.095);
    border-radius: var(--radius);
    box-shadow: 0 14px 34px rgba(70, 38, 26, 0.06);
}

.review-placeholder-card::before {
    position: absolute;
    top: 22px;
    left: 24px;
    width: 38px;
    height: 3px;
    background: var(--color-burgundy);
    content: "";
}

.review-placeholder-card--tripadvisor::before {
    background: var(--color-wheat-gold);
}

.review-placeholder-card__topline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 34px;
    padding-top: 18px;
}

.review-placeholder-card__source {
    color: var(--color-burgundy);
    font-size: 0.82rem;
    font-weight: 720;
    text-transform: uppercase;
}

.review-placeholder-card__status {
    padding: 6px 10px;
    color: var(--color-burgundy);
    background: rgba(251, 241, 215, 0.68);
    border: 1px solid rgba(122, 30, 19, 0.10);
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
}

.review-placeholder-card__body {
    max-width: 360px;
    margin-bottom: 18px;
    color: #3f332e;
    font-size: clamp(1.08rem, 1.7vw, 1.26rem);
    font-weight: 520;
    line-height: 1.45;
}

.review-placeholder-card__meta {
    color: var(--color-muted);
    font-size: 0.92rem;
    margin-bottom: 0;
}

.category-grid,
.dish-grid,
.link-card-grid,
.menu-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.category-card,
.dish-card,
.link-card,
.info-panel {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 253, 248, 0.96));
    border: 1px solid rgba(122, 30, 19, 0.09);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.category-card,
.dish-card,
.link-card {
    min-height: 100%;
    padding: 12px 12px 22px;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.category-card:hover,
.dish-card:hover,
.link-card:hover {
    transform: translateY(-2px);
    border-color: rgba(122, 30, 19, 0.16);
    box-shadow: var(--shadow-card);
}

.info-panel {
    padding: clamp(24px, 4vw, 36px);
}

.category-card__image,
.dish-card__image {
    position: relative;
    display: block;
    min-height: 172px;
    margin-bottom: 18px;
    overflow: hidden;
    background: var(--color-base-soft);
    border-radius: var(--radius);
}

.dish-card__image {
    min-height: 186px;
}

.category-card__image img,
.dish-card__image img {
    min-height: inherit;
}

.category-card h3,
.category-card p,
.category-card .card-link,
.dish-card h3,
.dish-card p,
.link-card h3,
.link-card p,
.link-card .card-link {
    margin-inline: 8px;
}

.category-card p,
.dish-card p,
.link-card p {
    margin-bottom: 16px;
    color: #67584f;
    font-size: 0.95rem;
    line-height: 1.62;
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-burgundy);
    font-size: 0.88rem;
    font-weight: 740;
    text-decoration: none;
}

.card-link:hover,
.card-link:focus {
    text-decoration: underline;
}

.landmark-hub {
    background:
        linear-gradient(180deg, #ffffff 0%, var(--color-base-soft) 100%);
}

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

.link-card {
    position: relative;
    padding: 26px 24px;
    overflow: hidden;
}

.link-card::before {
    display: block;
    width: 36px;
    height: 3px;
    margin-bottom: 18px;
    background: var(--color-wheat-gold);
    content: "";
}

.menu-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-preview-grid span {
    display: grid;
    min-height: 88px;
    place-items: center;
    padding: 18px;
    color: #3f332e;
    background:
        linear-gradient(180deg, #ffffff, var(--color-base));
    border: 1px solid rgba(122, 30, 19, 0.09);
    border-radius: var(--radius);
    box-shadow: 0 10px 24px rgba(70, 38, 26, 0.045);
    font-weight: 680;
    text-align: center;
}

.menu-page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(74px, 8vw, 110px) 0;
    background:
        radial-gradient(circle at 86% 22%, rgba(206, 174, 111, 0.18), transparent 34%),
        linear-gradient(135deg, #fffdf8 0%, #ffffff 52%, #fbf4e8 100%);
    border-bottom: 1px solid rgba(122, 30, 19, 0.08);
}

.menu-page-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.7fr);
    gap: clamp(34px, 6vw, 78px);
    align-items: stretch;
}

.menu-page-hero h1 {
    max-width: 780px;
    font-size: clamp(2.05rem, 3.4vw, 3.25rem);
    line-height: 1.05;
}

.menu-page-hero p {
    max-width: 680px;
}

.menu-page-hero__copy {
    align-self: center;
}

.menu-page-hero__copy .cta-row {
    margin-top: 28px;
}

.menu-page-hero__copy .button--primary,
.menu-page-cta .button--primary {
    color: #ffffff;
    background: var(--color-whatsapp);
    box-shadow: 0 12px 26px rgba(31, 143, 87, 0.18);
}

.menu-page-hero__copy .button--primary:hover,
.menu-page-hero__copy .button--primary:focus,
.menu-page-cta .button--primary:hover,
.menu-page-cta .button--primary:focus {
    color: #ffffff;
    background: var(--color-whatsapp-dark);
}

.menu-page-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 760px;
    margin-top: 24px;
}

.menu-page-hero__tags span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 13px;
    color: #4b3930;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(206, 174, 111, 0.34);
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(70, 38, 26, 0.04);
    font-size: 0.86rem;
    font-weight: 660;
}

.menu-page-hero__visual {
    position: relative;
    display: flex;
    min-height: 340px;
    align-items: flex-end;
    padding: clamp(24px, 4vw, 36px);
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(255, 250, 239, 0.92)),
        repeating-linear-gradient(135deg, rgba(122, 30, 19, 0.045) 0 1px, transparent 1px 18px);
    border: 1px solid rgba(122, 30, 19, 0.1);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(70, 38, 26, 0.1);
}

.menu-page-hero__visual::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(206, 174, 111, 0.32);
    border-radius: 22px;
}

.menu-page-hero__visual::after {
    content: "";
    position: absolute;
    top: 36px;
    right: 36px;
    width: 82px;
    height: 82px;
    background: rgba(122, 30, 19, 0.08);
    border-radius: 999px;
}

.menu-page-hero__visual div {
    position: relative;
    z-index: 1;
    max-width: 300px;
}

.menu-page-hero__visual span {
    display: block;
    margin-bottom: 10px;
    color: var(--color-burgundy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.22rem;
    font-weight: 520;
}

.menu-page-hero__visual p {
    margin-bottom: 0;
    color: #67584f;
    font-size: 0.94rem;
}

.menu-page-hero__visual--image {
    align-items: stretch;
    padding: 0;
    background: #ffffff;
}

.menu-page-hero__visual--image::before,
.menu-page-hero__visual--image::after {
    display: none;
}

.menu-page-hero__visual--image img {
    display: block;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.menu-page-hero__visual--overlay {
    min-height: clamp(360px, 36vw, 520px);
    align-items: flex-end;
    padding: clamp(24px, 3vw, 34px);
    background: #2d1d17;
    border: 0;
    border-radius: 30px;
    box-shadow: 0 28px 68px rgba(70, 38, 26, 0.16);
}

.menu-page-hero__visual--overlay::before {
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(31, 20, 15, 0.08) 0%, rgba(31, 20, 15, 0.58) 56%, rgba(54, 16, 11, 0.88) 100%),
        linear-gradient(135deg, rgba(122, 30, 19, 0.32), transparent 48%);
    border: 0;
    border-radius: inherit;
}

.menu-page-hero__visual--overlay::after {
    display: none;
}

.menu-page-hero__visual--overlay > img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-page-hero__visual--overlay .menu-page-hero__visual-copy {
    position: relative;
    z-index: 2;
    max-width: 420px;
    margin: 0;
    padding: 0;
}

.menu-page-hero__visual--overlay .menu-page-hero__visual-copy span {
    display: inline-flex;
    margin-bottom: 12px;
    color: #f2dfb2;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.72rem;
    font-weight: 840;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
}

.menu-page-hero__visual--overlay .menu-page-hero__visual-copy h2 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: clamp(1.75rem, 3vw, 2.55rem);
    line-height: 1.04;
}

.menu-page-hero__visual--overlay .menu-page-hero__visual-copy p {
    max-width: 360px;
    margin-bottom: 0;
    color: rgba(255, 253, 248, 0.9);
    font-size: clamp(0.96rem, 1.25vw, 1.08rem);
    line-height: 1.55;
}

.menu-list-section {
    padding-top: clamp(66px, 8vw, 104px);
}

.menu-list-intro {
    max-width: 860px;
    margin-bottom: clamp(46px, 6vw, 66px);
}

.menu-list-intro h2 {
    font-size: clamp(1.85rem, 3vw, 2.65rem);
}

.menu-category-nav {
    position: sticky;
    top: 82px;
    z-index: 20;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin: 0 0 clamp(36px, 5vw, 54px);
    padding: 12px 14px;
    background: rgba(255, 253, 248, 0.92);
    border: 1px solid rgba(122, 30, 19, 0.1);
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(70, 38, 26, 0.07);
    backdrop-filter: blur(14px);
}

.menu-category-nav > span {
    color: var(--color-burgundy);
    font-size: 0.74rem;
    font-weight: 780;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.menu-category-nav__links {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
}

.menu-category-nav__links a {
    display: inline-flex;
    min-height: 36px;
    flex: 0 0 auto;
    align-items: center;
    padding: 8px 12px;
    color: #4b3930;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(206, 174, 111, 0.34);
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 680;
    text-decoration: none;
}

.menu-category-nav__links a:hover,
.menu-category-nav__links a:focus {
    color: var(--color-burgundy);
    border-color: rgba(122, 30, 19, 0.2);
    background: #fff7e5;
}

.menu-category-stack {
    display: grid;
    gap: clamp(58px, 8vw, 92px);
}

.menu-category-section {
    scroll-margin-top: 152px;
    padding-top: clamp(26px, 4vw, 36px);
    border-top: 1px solid rgba(122, 30, 19, 0.1);
}

.menu-category-section__heading {
    display: grid;
    grid-template-columns: minmax(260px, auto) minmax(80px, 1fr);
    gap: clamp(20px, 4vw, 42px);
    align-items: end;
    margin-bottom: 30px;
}

.menu-category-section__heading h2 {
    margin-bottom: 0;
    color: #241a16;
    font-size: clamp(1.72rem, 2.6vw, 2.45rem);
}

.menu-category-section__rule {
    height: 1px;
    margin-bottom: 13px;
    background: linear-gradient(90deg, rgba(206, 174, 111, 0.78), rgba(122, 30, 19, 0.12), transparent);
}

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

.menu-item-card {
    display: grid;
    grid-template-columns: 178px minmax(0, 1fr);
    min-height: 178px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 248, 0.98));
    border: 1px solid rgba(122, 30, 19, 0.09);
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(70, 38, 26, 0.07);
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.menu-item-card:hover {
    transform: translateY(-2px);
    border-color: rgba(122, 30, 19, 0.15);
    box-shadow: 0 24px 58px rgba(70, 38, 26, 0.1);
}

.menu-item-card__media {
    position: relative;
    height: 178px;
    min-height: 178px;
    margin: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 26% 24%, rgba(206, 174, 111, 0.34), transparent 32%),
        linear-gradient(135deg, #fff9ec, #f8ead1);
}

.menu-item-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 178px;
    min-height: 178px;
    object-fit: cover;
}

.menu-item-card__media span {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    height: 100%;
    min-height: 178px;
    align-items: center;
    justify-content: center;
    padding: 22px;
    color: var(--color-burgundy);
    text-align: center;
}

.menu-item-card__media strong {
    font-size: 0.76rem;
    font-weight: 720;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-item-card__media em {
    max-width: 130px;
    color: #7c6d62;
    font-size: 0.78rem;
    font-style: normal;
    line-height: 1.35;
}

.menu-item-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 26px;
}

.menu-item-card__content h3 {
    margin-bottom: 10px;
    color: #241a16;
    font-size: 1.24rem;
    line-height: 1.22;
}

.menu-item-card__content p {
    margin-bottom: 0;
    color: #67584f;
    font-size: 0.96rem;
    line-height: 1.7;
}

.menu-empty-state {
    max-width: 720px;
    padding: clamp(28px, 5vw, 44px);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(122, 30, 19, 0.09);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.menu-page-cta {
    margin-top: 0;
    padding-top: clamp(66px, 8vw, 90px);
    padding-bottom: clamp(72px, 8vw, 100px);
    background:
        linear-gradient(180deg, #ffffff, var(--color-base-soft));
    border-top: 1px solid rgba(122, 30, 19, 0.08);
    border-bottom: 0;
}

.menu-page-cta .reservation-band__inner {
    padding: clamp(28px, 5vw, 46px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 249, 237, 0.92));
    border: 1px solid rgba(122, 30, 19, 0.1);
    border-radius: 28px;
    box-shadow: 0 22px 60px rgba(70, 38, 26, 0.08);
}

.menu-page-cta h2 {
    font-size: clamp(1.78rem, 3vw, 2.55rem);
}

.split-layout--reverse {
    grid-template-columns: minmax(340px, 0.98fr) minmax(0, 1.02fr);
}

.reservation-band {
    padding: clamp(70px, 8vw, 96px) 0;
    color: var(--color-text);
    background:
        linear-gradient(180deg, var(--color-base-soft), #ffffff);
    border-top: 1px solid rgba(122, 30, 19, 0.09);
    border-bottom: 1px solid rgba(122, 30, 19, 0.09);
}

.reservation-band .eyebrow,
.reservation-band a:not(.button) {
    color: var(--color-burgundy);
}

.reservation-band .eyebrow::before {
    background: var(--color-wheat-gold);
}

.reservation-band h2 {
    color: #211915;
}

.reservation-band p {
    color: var(--color-muted);
}

.reservation-band .button--primary {
    color: #ffffff;
    background: var(--color-whatsapp);
    box-shadow: 0 12px 26px rgba(31, 143, 87, 0.18);
}

.reservation-band .button--secondary {
    color: var(--color-burgundy);
    background: rgba(255, 255, 255, 0.74);
    border-color: rgba(122, 30, 19, 0.16);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(122, 30, 19, 0.09);
    border-radius: var(--radius);
    box-shadow: 0 12px 28px rgba(70, 38, 26, 0.05);
    padding: 20px 22px;
}

.faq-list summary {
    cursor: pointer;
    color: var(--color-burgundy);
    font-weight: 720;
}

.faq-list p {
    margin-top: 12px;
    margin-bottom: 0;
}

.site-footer {
    padding: 62px 0 92px;
    background: linear-gradient(180deg, #ffffff, var(--color-base));
    border-top: 1px solid rgba(122, 30, 19, 0.08);
}

.site-footer__grid {
    grid-template-columns: 1.15fr 1fr 0.8fr 0.9fr;
    align-items: start;
}

.site-footer h2 {
    color: var(--color-burgundy);
    font-size: 0.96rem;
    margin-bottom: 10px;
}

.site-footer__brand {
    color: var(--color-burgundy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.26rem;
    font-weight: 520;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.site-footer__links a {
    font-weight: 640;
    text-decoration: none;
}

.site-footer__note {
    margin-bottom: 0;
    font-size: 0.92rem;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    color: #ffffff;
    background: var(--color-whatsapp);
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(31, 143, 87, 0.22);
    font-weight: 720;
    text-decoration: none;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
    color: #ffffff;
    background: var(--color-whatsapp-dark);
}

.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    z-index: 999;
    background: var(--color-surface);
    padding: 8px 12px;
}

@media (max-width: 1020px) {
    .site-header__inner,
    .hero__grid,
    .split-layout,
    .menu-page-hero__inner,
    .reviews-social-proof__grid,
    .split-layout--reverse,
    .reservation-band__inner,
    .faq-layout,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-header__inner {
        gap: 14px;
    }

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

    .site-nav__list {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .trust-bar__grid,
    .review-card-grid,
    .menu-item-grid,
    .category-grid,
    .dish-grid,
    .link-card-grid,
    .menu-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .menu-page-hero__visual {
        min-height: 280px;
    }

    .menu-category-nav {
        top: 76px;
    }

    .trust-bar__grid > div {
        border-left: 0;
    }
}

@media (max-width: 680px) {
    :root {
        --space-shell: min(100vw - 28px, 1160px);
    }

    h1 {
        font-size: clamp(2.35rem, 13vw, 3.55rem);
    }

    h2 {
        font-size: clamp(1.78rem, 9vw, 2.6rem);
    }

    .hero h1 {
        font-size: clamp(1.95rem, 8.8vw, 2.85rem);
    }

    .site-section,
    .section-band,
    .hero {
        padding: 58px 0;
    }

    .button {
        width: 100%;
    }

    .site-header__cta {
        width: auto;
        justify-self: start;
    }

    .cta-row {
        width: 100%;
    }

    .site-nav__list {
        gap: 16px;
        width: 100%;
    }

    .trust-bar__grid,
    .review-card-grid,
    .menu-item-grid,
    .category-grid,
    .dish-grid,
    .link-card-grid,
    .menu-preview-grid {
        grid-template-columns: 1fr;
    }

    .trust-bar {
        padding: 18px 0;
    }

    .trust-bar__grid {
        gap: 10px;
    }

    .trust-bar__grid > div {
        padding: 6px 0;
    }

    .hero__media,
    .image-placeholder {
        min-height: 286px;
    }

    .hero__media img,
    .image-placeholder img {
        min-height: 286px;
    }

    .hero__media {
        min-height: 340px;
    }

    .hero__media img {
        min-height: 340px;
    }

    .category-card__image,
    .dish-card__image {
        min-height: 150px;
    }

    .floating-whatsapp {
        right: 12px;
        bottom: 12px;
        left: 12px;
    }

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

    .menu-item-card__media,
    .menu-item-card__media img,
    .menu-item-card__media span {
        height: 180px;
        max-height: 180px;
        min-height: 180px;
    }

    .menu-category-section__heading {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .menu-category-section__rule {
        margin-bottom: 0;
    }

    .menu-category-nav {
        position: relative;
        top: auto;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 34px;
    }

    .menu-category-nav__links {
        margin-right: -14px;
        padding-right: 14px;
    }

    .menu-category-section {
        scroll-margin-top: 24px;
    }

    .menu-page-hero__visual {
        min-height: 240px;
        border-radius: 22px;
    }
}

/* Homepage refinement pass 02: Stitch-aligned local homepage system. */
:root {
    --stitch-shell: min(1800px, calc(100vw - 64px));
    --stitch-shell-narrow: min(1380px, calc(100vw - 64px));
    --stitch-cream: #fffaf0;
    --stitch-cream-deep: #f6ead8;
    --stitch-gold: #d9ba74;
    --stitch-burgundy: #7a1e13;
    --stitch-burgundy-deep: #4e0f09;
    --stitch-ink: #241915;
    --stitch-muted: #77675d;
    --stitch-radius-xl: 44px;
    --stitch-radius-lg: 32px;
    --stitch-shadow: 0 32px 90px rgba(70, 38, 26, 0.11);
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    background: rgba(255, 253, 248, 0.88);
    border-bottom: 1px solid rgba(122, 30, 19, 0.09);
    box-shadow: 0 18px 46px rgba(65, 34, 25, 0.07);
    backdrop-filter: blur(22px);
}

.site-header__inner {
    min-height: 82px;
    padding: 12px 0;
}

.site-title {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 13px;
}

.site-title__mark {
    width: 46px;
    height: 46px;
    color: var(--stitch-burgundy);
    background: linear-gradient(180deg, #ffffff, var(--stitch-cream-deep));
    border-color: rgba(122, 30, 19, 0.16);
    box-shadow: 0 14px 30px rgba(70, 38, 26, 0.08);
    font-size: 1.38rem;
}

.site-title__main {
    font-size: 1.08rem;
}

.site-title__descriptor {
    font-size: 0.74rem;
}

.site-nav a {
    color: #3d2b24;
    font-size: 0.78rem;
    font-weight: 760;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-header__cta {
    min-height: 44px;
    padding: 12px 18px;
    border-radius: 999px;
}

.site-main {
    overflow: hidden;
}

.stitch-home {
    color: var(--stitch-ink);
    background: #fffdf8;
}

.stitch-shell {
    width: var(--stitch-shell);
    margin-inline: auto;
}

.stitch-section {
    padding: clamp(104px, 10vw, 172px) 0;
}

.stitch-section-heading {
    max-width: 760px;
    margin-bottom: clamp(42px, 5vw, 74px);
}

.stitch-section-heading--wide {
    max-width: 1120px;
}

.stitch-section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.stitch-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
    color: var(--stitch-burgundy);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.stitch-eyebrow::before {
    display: block;
    width: 42px;
    height: 2px;
    background: var(--stitch-gold);
    content: "";
}

.stitch-section-heading--center .stitch-eyebrow {
    justify-content: center;
}

.stitch-home h1,
.stitch-home h2,
.stitch-home h3 {
    color: var(--stitch-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 520;
    letter-spacing: 0;
}

.stitch-home h2 {
    max-width: none;
    margin-bottom: 24px;
    font-size: clamp(2.65rem, 5.7vw, 6.4rem);
    line-height: 0.98;
}

.stitch-home h3 {
    margin-bottom: 14px;
    font-size: clamp(1.5rem, 2.35vw, 2.6rem);
    line-height: 1.05;
}

.stitch-home p {
    color: var(--stitch-muted);
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.78;
}

.stitch-button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 16px 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 820;
    line-height: 1.1;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.stitch-button:hover,
.stitch-button:focus {
    transform: translateY(-2px);
    text-decoration: none;
}

.stitch-button--whatsapp {
    color: #ffffff;
    background: var(--color-whatsapp);
    box-shadow: 0 18px 42px rgba(31, 143, 87, 0.24);
}

.stitch-button--whatsapp:hover,
.stitch-button--whatsapp:focus {
    color: #ffffff;
    background: var(--color-whatsapp-dark);
}

.stitch-button--cream {
    color: var(--stitch-burgundy);
    background: #fff5dd;
    border-color: rgba(122, 30, 19, 0.13);
}

.stitch-button--light {
    color: var(--stitch-burgundy);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.28);
}

.stitch-text-link {
    display: inline-flex;
    margin-top: 10px;
    color: var(--stitch-burgundy);
    font-weight: 820;
    text-decoration: none;
}

.stitch-text-link:hover,
.stitch-text-link:focus {
    text-decoration: underline;
}

.stitch-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
    min-height: 100vh;
    padding-top: 82px;
    background: linear-gradient(90deg, #fffdf8 0%, #ffffff 54%, #f7ecd9 100%);
}

.stitch-hero__copy {
    display: flex;
    min-height: calc(100vh - 82px);
    flex-direction: column;
    justify-content: center;
    padding: clamp(64px, 8vw, 140px) clamp(32px, 6vw, 118px);
}

.stitch-hero h1 {
    max-width: 760px;
    margin-bottom: 26px;
    color: var(--stitch-burgundy-deep);
    font-size: clamp(4.6rem, 9vw, 10.8rem);
    line-height: 0.88;
}

.stitch-hero__lead {
    max-width: 690px;
    margin-bottom: 38px;
    color: #5f4d44;
    font-size: clamp(1.12rem, 1.7vw, 1.42rem);
    line-height: 1.72;
}

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

.stitch-hero__media {
    position: relative;
    min-height: calc(100vh - 82px);
    overflow: hidden;
}

.stitch-hero__image {
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 82px);
    margin: 0;
}

.stitch-hero__image img,
.stitch-hero__floating-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stitch-hero__image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(55, 20, 12, 0.02), rgba(55, 20, 12, 0.18));
    content: "";
}

.stitch-hero__floating-image {
    position: absolute;
    right: auto;
    bottom: 58px;
    left: -84px;
    width: min(360px, 34vw);
    aspect-ratio: 1;
    padding: 14px;
    margin: 0;
    overflow: hidden;
    background: #ffffff;
    border-radius: 34px;
    box-shadow: 0 30px 90px rgba(39, 18, 10, 0.26);
}

.stitch-hero__floating-image img {
    border-radius: 24px;
}

.stitch-trust {
    position: relative;
    z-index: 4;
    margin-top: -70px;
    padding-bottom: clamp(64px, 8vw, 118px);
}

.stitch-trust__panel {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(122, 30, 19, 0.10);
    border-radius: 46px;
    box-shadow: var(--stitch-shadow);
    backdrop-filter: blur(16px);
}

.stitch-trust__panel div {
    min-height: 154px;
    padding: 34px 30px;
    border-left: 1px solid rgba(122, 30, 19, 0.10);
}

.stitch-trust__panel div:first-child {
    border-left: 0;
}

.stitch-trust__panel strong,
.stitch-trust__panel span {
    display: block;
}

.stitch-trust__panel strong {
    margin-bottom: 10px;
    color: var(--stitch-burgundy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.26rem, 1.8vw, 1.8rem);
    font-weight: 520;
    line-height: 1.1;
}

.stitch-trust__panel span {
    color: var(--stitch-muted);
    font-size: 0.92rem;
    font-weight: 650;
}

.stitch-social {
    background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
}

.stitch-social__grid,
.stitch-menu-preview__grid,
.stitch-location__grid,
.stitch-faq__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
    gap: clamp(54px, 8vw, 128px);
    align-items: center;
}

.stitch-review-deck {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 24px;
    align-items: stretch;
}

.stitch-review-card {
    display: flex;
    min-height: 410px;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(34px, 4vw, 56px);
    background:
        linear-gradient(150deg, #ffffff 0%, #fff8eb 100%);
    border: 1px solid rgba(122, 30, 19, 0.10);
    border-radius: var(--stitch-radius-xl);
    box-shadow: var(--stitch-shadow);
}

.stitch-review-card--large {
    min-height: 560px;
    background:
        linear-gradient(180deg, rgba(122, 30, 19, 0.08), rgba(255, 250, 240, 0.94)),
        linear-gradient(135deg, #ffffff 0%, #fff4dc 100%);
}

.stitch-review-card span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 22px;
    padding: 8px 12px;
    color: var(--stitch-burgundy);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(122, 30, 19, 0.12);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.stitch-review-card h3 {
    max-width: 620px;
    color: var(--stitch-burgundy-deep);
}

.stitch-categories {
    background: #ffffff;
}

.stitch-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(22px, 2.5vw, 36px);
    align-items: start;
}

.stitch-category-card:nth-child(even) {
    margin-top: clamp(46px, 5vw, 84px);
}

.stitch-category-card a {
    position: relative;
    display: block;
    min-height: clamp(520px, 48vw, 720px);
    overflow: hidden;
    color: #ffffff;
    border-radius: var(--stitch-radius-xl);
    box-shadow: var(--stitch-shadow);
    text-decoration: none;
}

.stitch-category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.stitch-category-card a:hover img,
.stitch-category-card a:focus img {
    transform: scale(1.045);
}

.stitch-category-card__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(42, 18, 11, 0.05) 0%, rgba(42, 18, 11, 0.12) 34%, rgba(42, 18, 11, 0.84) 100%);
}

.stitch-category-card__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: clamp(28px, 3vw, 44px);
}

.stitch-category-card__content > span {
    display: block;
    margin-bottom: 16px;
    color: var(--stitch-gold);
    font-size: 0.74rem;
    font-weight: 820;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.stitch-category-card h3,
.stitch-category-card p {
    color: #ffffff;
}

.stitch-category-card p {
    margin-bottom: 0;
    font-size: 0.98rem;
    line-height: 1.64;
}

.stitch-dishes {
    background: linear-gradient(180deg, #ffffff 0%, #fff8ec 100%);
}

.stitch-dish-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 44px);
}

.stitch-dish-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(122, 30, 19, 0.10);
    border-radius: var(--stitch-radius-xl);
    box-shadow: var(--stitch-shadow);
}

.stitch-dish-card figure {
    aspect-ratio: 4 / 5;
    margin: 0;
    overflow: hidden;
}

.stitch-dish-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stitch-dish-card div {
    padding: clamp(30px, 3vw, 46px);
}

.stitch-dish-card p {
    margin-bottom: 0;
}

.stitch-landmarks {
    background:
        radial-gradient(circle at 18% 16%, rgba(217, 186, 116, 0.24), transparent 30%),
        linear-gradient(180deg, #fff8ec 0%, #ffffff 100%);
}

.stitch-landmark-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.stitch-landmark-card a {
    display: flex;
    min-height: 390px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--stitch-ink);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 248, 236, 0.98)),
        repeating-linear-gradient(135deg, rgba(122, 30, 19, 0.045) 0 1px, transparent 1px 18px);
    border: 1px solid rgba(122, 30, 19, 0.10);
    border-radius: var(--stitch-radius-lg);
    box-shadow: 0 20px 60px rgba(70, 38, 26, 0.08);
    text-decoration: none;
}

.stitch-landmark-card span,
.stitch-guide-card span {
    display: block;
    margin-bottom: 18px;
    color: var(--stitch-burgundy);
    font-size: 0.75rem;
    font-weight: 820;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.stitch-landmark-card h3 {
    font-size: clamp(1.45rem, 1.8vw, 2rem);
}

.stitch-landmark-card p {
    margin-bottom: 0;
    font-size: 0.96rem;
}

.stitch-atmosphere {
    position: relative;
    display: grid;
    min-height: 92vh;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
}

.stitch-atmosphere > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stitch-atmosphere__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(54, 9, 5, 0.88) 0%, rgba(54, 9, 5, 0.62) 48%, rgba(54, 9, 5, 0.18) 100%),
        linear-gradient(180deg, rgba(54, 9, 5, 0.20), rgba(54, 9, 5, 0.42));
}

.stitch-atmosphere__content {
    position: relative;
    z-index: 1;
    padding: clamp(92px, 12vw, 170px) 0;
}

.stitch-atmosphere h2 {
    max-width: 980px;
    color: #ffffff;
}

.stitch-atmosphere p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.82);
}

.stitch-atmosphere .stitch-eyebrow {
    color: #f4dfaa;
}

.stitch-atmosphere__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.stitch-atmosphere__facts span {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 10px 16px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    font-weight: 720;
    backdrop-filter: blur(12px);
}

.stitch-menu-preview {
    background: #fffdf8;
}

.stitch-menu-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.stitch-menu-columns article {
    min-height: 520px;
    padding: clamp(32px, 4vw, 52px);
    background: #ffffff;
    border: 1px solid rgba(122, 30, 19, 0.10);
    border-radius: var(--stitch-radius-xl);
    box-shadow: var(--stitch-shadow);
}

.stitch-menu-columns h3 {
    color: var(--stitch-burgundy-deep);
    font-size: clamp(1.8rem, 2.4vw, 2.7rem);
}

.stitch-menu-columns ul {
    display: grid;
    gap: 18px;
    padding: 0;
    margin: 34px 0 0;
    list-style: none;
}

.stitch-menu-columns li {
    padding-bottom: 18px;
    color: #4b3930;
    border-bottom: 1px solid rgba(122, 30, 19, 0.10);
    font-size: 1.03rem;
    font-weight: 680;
}

.stitch-guides {
    background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
}

.stitch-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 42px);
}

.stitch-guide-card a {
    display: flex;
    min-height: 470px;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(34px, 4vw, 52px);
    color: var(--stitch-ink);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 236, 0.98)),
        radial-gradient(circle at 80% 16%, rgba(217, 186, 116, 0.22), transparent 34%);
    border: 1px solid rgba(122, 30, 19, 0.10);
    border-radius: var(--stitch-radius-xl);
    box-shadow: var(--stitch-shadow);
    text-decoration: none;
}

.stitch-guide-card p {
    margin-bottom: 0;
}

.stitch-location {
    background: #ffffff;
}

.stitch-location__visual {
    min-height: 760px;
    overflow: hidden;
    border-radius: var(--stitch-radius-xl);
    box-shadow: var(--stitch-shadow);
}

.stitch-location__visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 760px;
    object-fit: cover;
}

.stitch-location__panel {
    padding: clamp(38px, 5vw, 70px);
    background: #fff8ec;
    border: 1px solid rgba(122, 30, 19, 0.10);
    border-radius: var(--stitch-radius-xl);
    box-shadow: var(--stitch-shadow);
}

.stitch-location__panel dl {
    display: grid;
    gap: 22px;
    margin: 30px 0;
}

.stitch-location__panel dt {
    margin-bottom: 6px;
    color: var(--stitch-burgundy);
    font-size: 0.78rem;
    font-weight: 820;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.stitch-location__panel dd {
    margin: 0;
    color: #4a382f;
    font-size: 1.05rem;
    line-height: 1.65;
}

.stitch-location__nearby {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
    margin: 0 0 34px;
    list-style: none;
}

.stitch-location__nearby li {
    padding: 12px 14px;
    color: var(--stitch-burgundy);
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(122, 30, 19, 0.10);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 720;
}

.stitch-faq {
    background:
        radial-gradient(circle at 86% 22%, rgba(217, 186, 116, 0.24), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fff8ec 100%);
}

.stitch-faq__grid {
    align-items: start;
}

.stitch-faq-list {
    display: grid;
    gap: 18px;
}

.stitch-faq-list details {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(122, 30, 19, 0.10);
    border-radius: 30px;
    box-shadow: 0 18px 52px rgba(70, 38, 26, 0.07);
}

.stitch-faq-list summary {
    cursor: pointer;
    padding: 30px 34px;
    color: var(--stitch-burgundy-deep);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.26rem, 1.8vw, 1.8rem);
    font-weight: 520;
    line-height: 1.18;
}

.stitch-faq-list p {
    margin: 0;
    padding: 0 34px 30px;
}

.stitch-final-cta {
    padding: clamp(86px, 10vw, 156px) 0;
    background: #fff8ec;
}

.stitch-final-cta__panel {
    display: flex;
    min-height: 520px;
    flex-direction: column;
    justify-content: center;
    padding: clamp(48px, 7vw, 104px);
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(122, 30, 19, 0.96), rgba(78, 15, 9, 0.98)),
        radial-gradient(circle at 82% 18%, rgba(217, 186, 116, 0.28), transparent 34%);
    border-radius: 54px;
    box-shadow: 0 38px 100px rgba(78, 15, 9, 0.26);
}

.stitch-final-cta h2 {
    max-width: 1080px;
    color: #ffffff;
}

.stitch-final-cta p {
    max-width: 740px;
    color: rgba(255, 255, 255, 0.82);
}

.stitch-final-cta .stitch-eyebrow {
    color: var(--stitch-gold);
}

.site-footer {
    padding: clamp(78px, 8vw, 126px) 0 104px;
    background:
        linear-gradient(180deg, #fff8ec 0%, #ffffff 100%);
    border-top: 1px solid rgba(122, 30, 19, 0.10);
}

.site-footer__grid {
    width: var(--stitch-shell);
    grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(180px, 1fr));
    gap: clamp(28px, 5vw, 72px);
    padding-top: 34px;
    border-top: 1px solid rgba(122, 30, 19, 0.13);
}

.site-footer h2 {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.78rem;
    font-weight: 820;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-footer__brand {
    color: var(--stitch-burgundy-deep);
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
    line-height: 1.05;
}

.floating-whatsapp {
    z-index: 120;
    min-height: 58px;
    padding: 16px 22px;
    border-radius: 999px;
}

@media (max-width: 1220px) {
    :root {
        --stitch-shell: min(100vw - 40px, 1800px);
        --stitch-shell-narrow: min(100vw - 40px, 1380px);
    }

    .stitch-hero,
    .stitch-social__grid,
    .stitch-menu-preview__grid,
    .stitch-location__grid,
    .stitch-faq__grid {
        grid-template-columns: 1fr;
    }

    .stitch-hero__copy {
        min-height: auto;
        padding: clamp(84px, 12vw, 132px) 20px 56px;
    }

    .stitch-hero__media,
    .stitch-hero__image {
        min-height: 62vh;
    }

    .stitch-hero__floating-image {
        left: 26px;
        width: min(300px, 42vw);
    }

    .stitch-trust {
        margin-top: -44px;
    }

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

    .stitch-trust__panel div {
        border-top: 1px solid rgba(122, 30, 19, 0.10);
    }

    .stitch-trust__panel div:nth-child(-n+2) {
        border-top: 0;
    }

    .stitch-category-grid,
    .stitch-dish-grid,
    .stitch-guide-grid,
    .stitch-menu-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .stitch-category-card:nth-child(even) {
        margin-top: 0;
    }

    .stitch-location__visual,
    .stitch-location__visual img {
        min-height: 520px;
    }
}

@media (max-width: 760px) {
    :root {
        --stitch-shell: min(100vw - 28px, 1800px);
        --stitch-shell-narrow: min(100vw - 28px, 1380px);
    }

    .site-header__inner {
        min-height: 74px;
        grid-template-columns: 1fr auto;
        gap: 10px;
    }

    .site-title {
        grid-template-columns: 40px minmax(0, 1fr);
    }

    .site-title__mark {
        width: 40px;
        height: 40px;
    }

    .site-title__main {
        font-size: 0.98rem;
    }

    .site-title__descriptor {
        font-size: 0.66rem;
    }

    .site-nav {
        grid-column: 1 / -1;
        order: 3;
        width: 100%;
    }

    .site-nav__list {
        justify-content: flex-start;
        gap: 18px;
        overflow-x: auto;
        padding: 2px 0 6px;
    }

    .site-nav a {
        font-size: 0.72rem;
        white-space: nowrap;
    }

    .site-header__cta {
        min-height: 40px;
        padding: 10px 14px;
    }

    .stitch-section {
        padding: 76px 0;
    }

    .stitch-hero {
        padding-top: 122px;
    }

    .stitch-hero__copy {
        padding: 44px 14px 34px;
    }

    .stitch-hero h1 {
        font-size: clamp(3.45rem, 18vw, 5.7rem);
    }

    .stitch-home h2 {
        font-size: clamp(2.35rem, 13vw, 4.3rem);
    }

    .stitch-home h3 {
        font-size: clamp(1.45rem, 8vw, 2.25rem);
    }

    .stitch-hero__lead {
        font-size: 1.04rem;
    }

    .stitch-hero__media,
    .stitch-hero__image {
        min-height: 470px;
    }

    .stitch-hero__floating-image {
        bottom: 24px;
        left: 18px;
        width: 172px;
        padding: 8px;
        border-radius: 22px;
    }

    .stitch-hero__floating-image img {
        border-radius: 16px;
    }

    .stitch-hero__actions,
    .stitch-final-cta .stitch-hero__actions {
        width: 100%;
    }

    .stitch-button {
        width: 100%;
        min-height: 54px;
    }

    .stitch-trust {
        margin-top: -30px;
        padding-bottom: 58px;
    }

    .stitch-trust__panel,
    .stitch-category-grid,
    .stitch-dish-grid,
    .stitch-guide-grid,
    .stitch-menu-columns,
    .stitch-landmark-grid,
    .stitch-review-deck,
    .stitch-location__nearby,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .stitch-trust__panel {
        border-radius: 30px;
    }

    .stitch-trust__panel div {
        min-height: auto;
        padding: 24px;
        border-left: 0;
    }

    .stitch-trust__panel div:nth-child(2) {
        border-top: 1px solid rgba(122, 30, 19, 0.10);
    }

    .stitch-review-card,
    .stitch-review-card--large {
        min-height: 330px;
        border-radius: 30px;
    }

    .stitch-category-card a {
        min-height: 460px;
        border-radius: 30px;
    }

    .stitch-dish-card,
    .stitch-guide-card a,
    .stitch-location__panel,
    .stitch-final-cta__panel {
        border-radius: 30px;
    }

    .stitch-dish-card figure {
        aspect-ratio: 4 / 3;
    }

    .stitch-landmark-card a,
    .stitch-guide-card a,
    .stitch-menu-columns article {
        min-height: 340px;
    }

    .stitch-atmosphere {
        min-height: 760px;
    }

    .stitch-atmosphere__overlay {
        background: linear-gradient(180deg, rgba(54, 9, 5, 0.76), rgba(54, 9, 5, 0.86));
    }

    .stitch-atmosphere__facts {
        display: grid;
        grid-template-columns: 1fr;
    }

    .stitch-location__visual,
    .stitch-location__visual img {
        min-height: 380px;
        border-radius: 30px;
    }

    .stitch-location__panel {
        padding: 28px;
    }

    .stitch-faq-list summary {
        padding: 24px;
    }

    .stitch-faq-list p {
        padding: 0 24px 24px;
    }

    .stitch-final-cta__panel {
        min-height: 470px;
        padding: 34px 26px;
    }

    .floating-whatsapp {
        right: 12px;
        bottom: 12px;
        left: 12px;
        min-height: 52px;
    }
}

/* Homepage refinement pass 03: containment, heading scale, and fixed-header offsets. */
:root {
    --stitch-header-offset: 118px;
}

html {
    scroll-padding-top: var(--stitch-header-offset);
}

.stitch-home section[id],
.stitch-home [id].stitch-section,
.stitch-final-cta[id],
.stitch-atmosphere[id] {
    scroll-margin-top: var(--stitch-header-offset);
}

.stitch-section {
    padding: clamp(88px, 8vw, 138px) 0;
}

.stitch-section-heading {
    max-width: 820px;
    margin-bottom: clamp(34px, 4.2vw, 62px);
}

.stitch-section-heading--wide {
    max-width: 1040px;
}

.stitch-home h2 {
    max-width: 1120px;
    font-size: clamp(2.2rem, 4.35vw, 4.95rem);
    line-height: 1.04;
    overflow-wrap: normal;
}

.stitch-home h3 {
    font-size: clamp(1.35rem, 1.85vw, 2.16rem);
    line-height: 1.12;
}

.stitch-hero {
    min-height: 100svh;
}

.stitch-hero__copy {
    min-height: calc(100svh - 82px);
    padding: clamp(54px, 6vw, 108px) clamp(32px, 5vw, 92px);
    overflow: visible;
}

.stitch-hero h1 {
    max-width: 720px;
    margin-bottom: 24px;
    font-size: clamp(3.8rem, 6.75vw, 7.6rem);
    line-height: 0.96;
    overflow: visible;
}

.stitch-hero__lead {
    max-width: 650px;
    margin-bottom: 34px;
    font-size: clamp(1.06rem, 1.35vw, 1.28rem);
}

.stitch-hero__media,
.stitch-hero__image {
    min-height: calc(100svh - 82px);
}

.stitch-trust {
    margin-top: -54px;
    padding-bottom: clamp(58px, 6vw, 92px);
}

.stitch-trust__panel div {
    min-height: 134px;
    padding: 28px 26px;
}

.stitch-trust__panel strong {
    font-size: clamp(1.12rem, 1.45vw, 1.48rem);
}

.stitch-review-card {
    min-height: 360px;
}

.stitch-review-card--large {
    min-height: 480px;
}

.stitch-review-card h3 {
    font-size: clamp(1.5rem, 2.1vw, 2.35rem);
}

.stitch-category-card a {
    min-height: clamp(460px, 40vw, 620px);
}

.stitch-category-card h3 {
    font-size: clamp(1.55rem, 2.1vw, 2.45rem);
}

.stitch-dish-card div,
.stitch-guide-card a,
.stitch-location__panel {
    padding: clamp(28px, 3.2vw, 46px);
}

.stitch-landmark-card a {
    min-height: 340px;
    padding: 28px;
}

.stitch-landmark-card h3 {
    font-size: clamp(1.32rem, 1.55vw, 1.72rem);
}

.stitch-atmosphere {
    min-height: 84vh;
}

.stitch-atmosphere__content {
    padding: clamp(86px, 9vw, 132px) 0;
}

.stitch-atmosphere h2 {
    max-width: 920px;
}

.stitch-menu-columns article {
    min-height: 460px;
    padding: clamp(30px, 3.4vw, 46px);
}

.stitch-menu-columns h3 {
    font-size: clamp(1.5rem, 1.9vw, 2.15rem);
}

.stitch-guide-card a {
    min-height: 410px;
}

.stitch-location__visual,
.stitch-location__visual img {
    min-height: 640px;
}

.stitch-faq-list summary {
    font-size: clamp(1.15rem, 1.45vw, 1.48rem);
    line-height: 1.24;
}

.stitch-final-cta__panel {
    min-height: 440px;
    padding: clamp(42px, 5.5vw, 78px);
}

.floating-whatsapp {
    right: max(22px, env(safe-area-inset-right));
    bottom: max(26px, env(safe-area-inset-bottom));
}

@media (min-width: 1600px) {
    .stitch-hero h1 {
        font-size: clamp(5.6rem, 5.6vw, 7.4rem);
    }

    .stitch-home h2 {
        font-size: clamp(3.4rem, 3.55vw, 4.85rem);
    }
}

@media (max-width: 1220px) {
    :root {
        --stitch-header-offset: 136px;
    }

    .stitch-hero__copy {
        padding-top: clamp(72px, 10vw, 108px);
    }

    .stitch-hero h1 {
        max-width: 900px;
        font-size: clamp(3.7rem, 9vw, 6.6rem);
    }

    .stitch-home h2 {
        font-size: clamp(2.25rem, 6vw, 4.4rem);
    }

    .stitch-location__visual,
    .stitch-location__visual img {
        min-height: 500px;
    }
}

@media (max-width: 760px) {
    :root {
        --stitch-header-offset: 152px;
    }

    .stitch-section {
        padding: 66px 0;
    }

    .stitch-section-heading {
        margin-bottom: 30px;
    }

    .stitch-home h2 {
        font-size: clamp(2rem, 10.5vw, 3.38rem);
        line-height: 1.08;
    }

    .stitch-home h3 {
        font-size: clamp(1.28rem, 6.8vw, 1.92rem);
    }

    .stitch-hero {
        padding-top: 122px;
    }

    .stitch-hero__copy {
        padding: 34px 14px 32px;
    }

    .stitch-hero h1 {
        font-size: clamp(3rem, 15vw, 4.45rem);
        line-height: 0.98;
    }

    .stitch-hero__lead {
        font-size: 1rem;
        line-height: 1.65;
    }

    .stitch-hero__media,
    .stitch-hero__image {
        min-height: 420px;
    }

    .stitch-trust {
        margin-top: -22px;
    }

    .stitch-category-card a {
        min-height: 390px;
    }

    .stitch-review-card,
    .stitch-review-card--large,
    .stitch-landmark-card a,
    .stitch-guide-card a,
    .stitch-menu-columns article {
        min-height: auto;
    }

    .stitch-atmosphere {
        min-height: 680px;
    }

    .stitch-final-cta__panel {
        min-height: 400px;
    }

    .floating-whatsapp {
        right: max(12px, env(safe-area-inset-right));
        bottom: max(14px, env(safe-area-inset-bottom));
        left: auto;
        min-height: 46px;
        padding: 12px 16px;
        font-size: 0.88rem;
    }
}

/* Homepage pass 04: near-1:1 Stitch port translated from Tailwind reference. */
:root {
    --port-surface: #fbf9f5;
    --port-surface-container: #efeeea;
    --port-primary: #5a0502;
    --port-primary-container: #7a1e13;
    --port-on-primary-container: #ff8b79;
    --port-gold: #e5c185;
    --port-whatsapp: #25d366;
    --port-on-surface: #1b1c1a;
    --port-outline: #8a716d;
    --port-shell: min(1920px, calc(100vw - 64px));
    --port-section-gap: clamp(112px, 9vw, 160px);
    --port-header-offset: 112px;
    --port-display: "Playfair Display", Georgia, "Times New Roman", serif;
    --port-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
    scroll-padding-top: var(--port-header-offset);
}

body {
    background: var(--port-surface);
    font-family: var(--port-body);
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    padding: 24px 0;
    background: rgba(251, 249, 245, 0.80);
    border-bottom: 1px solid rgba(239, 238, 234, 0.78);
    box-shadow: none;
    backdrop-filter: blur(24px);
}

.site-header__inner {
    width: var(--port-shell);
    min-height: auto;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: clamp(28px, 4vw, 64px);
    padding: 0;
}

.site-title {
    grid-template-columns: 40px minmax(0, auto);
    gap: 16px;
    color: var(--port-primary);
}

.site-title__mark {
    width: 40px;
    height: 40px;
    color: var(--port-primary);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-family: var(--port-display);
    font-size: 2rem;
    line-height: 1;
}

.site-title__main {
    color: var(--port-primary);
    font-family: var(--port-display);
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1;
}

.site-title__descriptor {
    display: none;
}

.site-nav__list {
    justify-content: center;
    gap: clamp(34px, 5vw, 64px);
}

.site-nav a {
    color: var(--port-on-surface);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus {
    color: var(--port-primary);
}

.site-header__cta {
    min-height: 46px;
    padding: 14px 30px;
    color: #ffffff;
    background: var(--port-primary-container);
    border-radius: 999px;
    box-shadow: 0 16px 34px rgba(90, 5, 2, 0.16);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-header__cta:hover,
.site-header__cta:focus {
    background: var(--port-primary);
}

.stitch-port,
.stitch-port * {
    box-sizing: border-box;
}

.stitch-port {
    color: var(--port-on-surface);
    background: var(--port-surface);
    font-family: var(--port-body);
}

.stitch-port section[id],
.stitch-port [id] {
    scroll-margin-top: var(--port-header-offset);
}

.stitch-port-shell {
    width: var(--port-shell);
    margin-inline: auto;
}

.stitch-port h1,
.stitch-port h2,
.stitch-port h3 {
    color: var(--port-primary);
    font-family: var(--port-display);
    font-weight: 400;
    letter-spacing: 0;
}

.stitch-port h1,
.stitch-port h2,
.stitch-port h3,
.stitch-port p {
    margin-top: 0;
}

.stitch-port p {
    color: var(--port-outline);
}

.stitch-port a {
    color: inherit;
}

.stitch-port img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stitch-port-button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 38px;
    border: 1px solid transparent;
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
    transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.stitch-port-button:hover,
.stitch-port-button:focus {
    transform: scale(1.035);
    text-decoration: none;
}

.stitch-port-button--whatsapp {
    color: #ffffff;
    background: var(--port-whatsapp);
    box-shadow: 0 22px 48px rgba(37, 211, 102, 0.24);
}

.stitch-port-button--surface {
    color: var(--port-on-surface);
    background: #ffffff;
    border-color: var(--port-surface-container);
    box-shadow: 0 8px 20px rgba(27, 28, 26, 0.05);
}

.stitch-port-button--outline {
    color: var(--port-primary);
    background: #ffffff;
    border: 2px solid var(--port-primary);
    box-shadow: 0 18px 36px rgba(90, 5, 2, 0.09);
}

.stitch-port-button--large {
    min-height: 80px;
    padding: 28px 64px;
    border-radius: 32px;
    font-size: 1.45rem;
}

.stitch-port-hero {
    position: relative;
    min-height: 100vh;
    padding-top: 94px;
    overflow: hidden;
}

.stitch-port-hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.stitch-port-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    height: 100%;
    min-height: 100vh;
}

.stitch-port-hero__copy {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: clamp(64px, 6vw, 96px);
    background: var(--port-surface);
}

.stitch-port-hero__copy-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.stitch-port-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-bottom: 32px;
    padding: 8px 16px;
    color: var(--port-primary);
    background: rgba(90, 5, 2, 0.05);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.stitch-port-hero h1 {
    max-width: 760px;
    margin-bottom: 40px;
    font-size: clamp(4.4rem, 7.7vw, 8rem);
    line-height: 1;
    text-wrap: balance;
}

.stitch-port-hero p {
    max-width: 560px;
    margin-bottom: 48px;
    color: var(--port-outline);
    font-size: clamp(1.28rem, 1.55vw, 1.55rem);
    line-height: 1.52;
}

.stitch-port-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.stitch-port-hero__media {
    position: relative;
    display: block;
    min-height: 100vh;
    overflow: hidden;
}

.stitch-port-hero__fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--port-surface), transparent 44%, transparent);
}

.stitch-port-hero__floating {
    position: absolute;
    bottom: 48px;
    left: 48px;
    width: 320px;
    aspect-ratio: 1;
    padding: 16px;
    margin: 0;
    overflow: hidden;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 28px 80px rgba(27, 28, 26, 0.28);
}

.stitch-port-hero__floating img {
    border-radius: 20px;
}

.stitch-port-trust {
    position: relative;
    z-index: 20;
    margin-top: -48px;
}

.stitch-port-trust__panel {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 48px;
    align-items: center;
    padding: clamp(44px, 4vw, 64px);
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(239, 238, 234, 0.82);
    border-radius: 48px;
    box-shadow: 0 30px 80px rgba(27, 28, 26, 0.14);
    backdrop-filter: blur(20px);
}

.stitch-port-trust__panel div + div {
    border-left: 1px solid var(--port-surface-container);
}

.stitch-port-trust__panel p {
    margin-bottom: 8px;
    color: var(--port-outline);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.stitch-port-trust__panel strong {
    display: block;
    color: var(--port-primary);
    font-family: var(--port-display);
    font-size: clamp(1.45rem, 1.6vw, 1.62rem);
    line-height: 1.1;
}

.stitch-port-section {
    padding: var(--port-section-gap) 0;
    overflow: hidden;
}

.stitch-port-section-head {
    margin-bottom: clamp(72px, 6vw, 96px);
}

.stitch-port-section-head--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
}

.stitch-port-section-head--center {
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
}

.stitch-port-section-head p:first-child {
    margin-bottom: 24px;
    color: var(--port-primary);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.stitch-port h2 {
    max-width: 1080px;
    margin-bottom: 0;
    font-size: clamp(3.25rem, 5.7vw, 7rem);
    line-height: 1.08;
}

.stitch-port-quote {
    max-width: 900px;
    margin-top: 28px;
    color: var(--port-outline);
    font-family: var(--port-display);
    font-size: clamp(1.55rem, 2.1vw, 2rem);
    font-style: italic;
    line-height: 1.28;
}

.stitch-port-review-controls {
    display: flex;
    gap: 24px;
}

.stitch-port-review-controls span {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    color: var(--port-primary);
    border: 1px solid var(--port-surface-container);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.stitch-port-review-controls span:last-child {
    color: #ffffff;
    background: var(--port-primary);
    box-shadow: 0 18px 34px rgba(90, 5, 2, 0.18);
}

.stitch-port-review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
}

.stitch-port-review-card {
    min-height: 410px;
    padding: clamp(42px, 4vw, 64px);
    background: #ffffff;
    border: 1px solid rgba(239, 238, 234, 0.6);
    border-radius: 48px;
    box-shadow: 0 8px 24px rgba(27, 28, 26, 0.04);
    transition: box-shadow 500ms ease, transform 500ms ease;
}

.stitch-port-review-card:hover {
    box-shadow: 0 26px 70px rgba(27, 28, 26, 0.12);
}

.stitch-port-review-card--raised {
    position: relative;
    top: -48px;
    border: 2px solid rgba(90, 5, 2, 0.05);
    box-shadow: 0 30px 80px rgba(27, 28, 26, 0.13);
}

.stitch-port-review-card span {
    display: inline-flex;
    margin-bottom: 40px;
    color: var(--port-primary);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.stitch-port-review-card h3 {
    margin-bottom: 28px;
    font-size: clamp(1.75rem, 2vw, 2.35rem);
    line-height: 1.12;
}

.stitch-port-review-card p {
    margin-bottom: 0;
    color: var(--port-outline);
    font-size: 1.1rem;
    line-height: 1.7;
}

.stitch-port-categories {
    background: #ffffff;
}

.stitch-port-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.stitch-port-category-card {
    position: relative;
    display: block;
    height: 600px;
    overflow: hidden;
    border-radius: 48px;
    text-decoration: none;
}

.stitch-port-category-card--tall {
    height: 750px;
    margin-top: -80px;
}

.stitch-port-category-card img {
    transition: transform 2s ease;
}

.stitch-port-category-card:hover img,
.stitch-port-category-card:focus img {
    transform: scale(1.1);
}

.stitch-port-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 48px;
    background: linear-gradient(0deg, rgba(90, 5, 2, 0.9), rgba(90, 5, 2, 0.2) 54%, transparent);
}

.stitch-port-category-card__content {
    position: absolute;
    right: 48px;
    bottom: 48px;
    left: 48px;
    color: #ffffff;
}

.stitch-port-category-card__content span {
    display: block;
    color: #ffffff;
    font-family: var(--port-display);
    font-size: clamp(2rem, 2.3vw, 2.5rem);
    line-height: 1.1;
}

.stitch-port-category-card__content em {
    display: block;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 220ms ease;
}

.stitch-port-category-card:hover em,
.stitch-port-category-card:focus em {
    opacity: 1;
}

.stitch-port-dishes {
    background: rgba(239, 238, 234, 0.34);
}

.stitch-port-dishes h2,
.stitch-port-landmarks h2 {
    padding-bottom: 0;
    margin-bottom: 96px;
}

.stitch-port-dish-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 64px;
}

.stitch-port-dish-card figure {
    aspect-ratio: 4 / 5;
    margin: 0 0 40px;
    overflow: hidden;
    border-radius: 48px;
    box-shadow: 0 28px 70px rgba(27, 28, 26, 0.15);
}

.stitch-port-dish-card img {
    transition: transform 1s ease;
}

.stitch-port-dish-card:hover img {
    transform: scale(1.05);
}

.stitch-port-dish-card__content {
    padding-inline: 16px;
}

.stitch-port-dish-card h3 {
    margin-bottom: 24px;
    font-size: clamp(2rem, 2.3vw, 2.5rem);
    line-height: 1.1;
}

.stitch-port-dish-card p {
    max-width: 420px;
    margin-bottom: 32px;
    color: var(--port-outline);
    font-size: 1.2rem;
    line-height: 1.65;
}

.stitch-port-dish-card a {
    display: flex;
    min-height: 60px;
    align-items: center;
    justify-content: center;
    color: var(--port-primary);
    background: #ffffff;
    border: 1px solid var(--port-surface-container);
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(27, 28, 26, 0.05);
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    transition: background 220ms ease, color 220ms ease;
}

.stitch-port-dish-card a:hover,
.stitch-port-dish-card a:focus {
    color: #ffffff;
    background: var(--port-primary);
}

.stitch-port-landmarks h2 {
    border-bottom: 1px solid var(--port-surface-container);
    padding-bottom: 48px;
}

.stitch-port-landmark-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 48px;
}

.stitch-port-landmark-card a {
    display: block;
    color: var(--port-on-surface);
    text-decoration: none;
}

.stitch-port-landmark-card figure {
    aspect-ratio: 1 / 1.2;
    margin: 0 0 32px;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 18px 46px rgba(27, 28, 26, 0.12);
    filter: grayscale(1);
    transition: filter 1s ease;
}

.stitch-port-landmark-card:hover figure {
    filter: grayscale(0);
}

.stitch-port-landmark-card h3 {
    margin-bottom: 16px;
    font-size: clamp(1.7rem, 1.9vw, 2rem);
}

.stitch-port-landmark-card p {
    margin-bottom: 24px;
    color: var(--port-outline);
    font-size: 1.08rem;
    line-height: 1.6;
}

.stitch-port-landmark-card span {
    color: var(--port-primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.stitch-port-atmosphere {
    position: relative;
    display: flex;
    min-height: 90vh;
    align-items: center;
    overflow: hidden;
}

.stitch-port-atmosphere > img,
.stitch-port-atmosphere__shade {
    position: absolute;
    inset: 0;
}

.stitch-port-atmosphere__shade {
    background: linear-gradient(90deg, rgba(90, 5, 2, 0.95), rgba(90, 5, 2, 0.7) 52%, transparent);
}

.stitch-port-atmosphere .stitch-port-shell {
    position: relative;
    z-index: 1;
}

.stitch-port-atmosphere__content {
    max-width: 900px;
    color: #ffffff;
}

.stitch-port-atmosphere h2 {
    margin-bottom: 48px;
    color: #ffffff;
    font-size: clamp(4rem, 7vw, 8rem);
    line-height: 1.05;
}

.stitch-port-atmosphere p {
    max-width: 680px;
    margin-bottom: 64px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.55rem;
    line-height: 1.6;
}

.stitch-port-atmosphere__facts {
    display: flex;
    gap: 80px;
    margin-bottom: 64px;
}

.stitch-port-atmosphere__facts strong {
    display: block;
    margin-bottom: 16px;
    color: #ffffff;
    font-family: var(--port-display);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
}

.stitch-port-atmosphere__facts span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.stitch-port-atmosphere .stitch-port-button--outline,
.stitch-port-atmosphere .stitch-port-button--outline:hover,
.stitch-port-atmosphere .stitch-port-button--outline:focus {
    color: var(--port-primary);
    background: #ffffff;
    border-color: #ffffff;
}

.stitch-port-menu-preview {
    background: var(--port-surface);
}

.stitch-port-menu-preview .stitch-port-section-head p {
    color: var(--port-outline);
    font-family: var(--port-display);
    font-size: 1.55rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.stitch-port-menu-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(64px, 7vw, 128px);
}

.stitch-port-menu-columns h3 {
    padding-bottom: 32px;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--port-surface-container);
    font-size: clamp(2rem, 2.3vw, 2.5rem);
}

.stitch-port-menu-columns p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    color: var(--port-on-surface);
    font-size: 1.18rem;
    font-weight: 700;
}

.stitch-port-menu-columns em {
    color: rgba(90, 5, 2, 0.44);
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.stitch-port-menu-preview__cta {
    margin-top: 96px;
    text-align: center;
}

.stitch-port-guides {
    background: rgba(239, 238, 234, 0.5);
}

.stitch-port-guides .stitch-port-section-head > a {
    color: var(--port-primary);
    border-bottom: 4px solid var(--port-primary);
    padding-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
}

.stitch-port-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 64px;
}

.stitch-port-guide-card a {
    display: block;
    overflow: hidden;
    color: var(--port-on-surface);
    background: #ffffff;
    border-radius: 48px;
    box-shadow: 0 8px 24px rgba(27, 28, 26, 0.04);
    text-decoration: none;
    transition: box-shadow 500ms ease;
}

.stitch-port-guide-card a:hover,
.stitch-port-guide-card a:focus {
    box-shadow: 0 30px 80px rgba(27, 28, 26, 0.14);
}

.stitch-port-guide-card figure {
    aspect-ratio: 16 / 9;
    margin: 0;
    overflow: hidden;
}

.stitch-port-guide-card img {
    transition: transform 1s ease;
}

.stitch-port-guide-card:hover img {
    transform: scale(1.1);
}

.stitch-port-guide-card div {
    padding: clamp(42px, 4vw, 64px);
}

.stitch-port-guide-card p {
    margin-bottom: 24px;
    color: var(--port-primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.stitch-port-guide-card h3 {
    margin-bottom: 32px;
    color: var(--port-on-surface);
    font-size: clamp(2rem, 2.3vw, 2.5rem);
    line-height: 1.15;
    transition: color 220ms ease;
}

.stitch-port-guide-card a:hover h3,
.stitch-port-guide-card a:focus h3 {
    color: var(--port-primary);
}

.stitch-port-guide-card span {
    display: block;
    margin-bottom: 40px;
    color: var(--port-outline);
    font-size: 1.15rem;
    line-height: 1.65;
}

.stitch-port-guide-card em {
    color: var(--port-primary);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.stitch-port-location {
    background: #ffffff;
}

.stitch-port-location__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(76px, 7vw, 128px);
    align-items: center;
}

.stitch-port-location h2 {
    margin-bottom: 64px;
    font-size: clamp(4rem, 7vw, 8rem);
    line-height: 1.05;
}

.stitch-port-location__facts {
    display: grid;
    gap: 48px;
    margin-bottom: 48px;
}

.stitch-port-location__facts div {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.stitch-port-location__facts span {
    display: grid;
    min-height: 80px;
    place-items: center;
    color: var(--port-primary);
    background: var(--port-surface-container);
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
}

.stitch-port-location__facts p {
    margin-bottom: 0;
    color: var(--port-outline);
    font-size: 1.25rem;
    line-height: 1.65;
}

.stitch-port-area-box {
    padding: 48px;
    background: var(--port-surface);
    border: 1px solid var(--port-surface-container);
    border-radius: 48px;
}

.stitch-port-area-box > p {
    margin-bottom: 32px;
    color: var(--port-primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.stitch-port-area-box > .stitch-port-area-box__context {
    color: var(--port-muted);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.7;
    text-transform: none;
}

.stitch-port-area-box ul {
    display: grid;
    gap: 24px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.stitch-port-area-box li {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--port-surface-container);
}

.stitch-port-area-box li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.stitch-port-area-box span {
    color: var(--port-on-surface);
    font-family: var(--port-display);
    font-size: 1.35rem;
}

.stitch-port-area-box strong {
    color: var(--port-primary);
    font-size: 1rem;
}

.stitch-port-location__image {
    position: relative;
    height: 800px;
    overflow: hidden;
    border-radius: 64px;
    box-shadow: 0 30px 80px rgba(27, 28, 26, 0.18);
}

.stitch-port-location__image img {
    transition: transform 2s ease;
}

.stitch-port-location__image:hover img {
    transform: scale(1.08);
}

.stitch-port-location__image::after {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.10);
    content: "";
}

.stitch-port-location__image a {
    position: absolute;
    right: 48px;
    bottom: 48px;
    left: 48px;
    z-index: 1;
    display: flex;
    min-height: 84px;
    align-items: center;
    justify-content: center;
    color: var(--port-on-surface);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(27, 28, 26, 0.18);
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    backdrop-filter: blur(18px);
    transition: color 220ms ease, background 220ms ease;
}

.stitch-port-location__image a:hover,
.stitch-port-location__image a:focus {
    color: #ffffff;
    background: var(--port-primary);
}

.stitch-port-faq__shell {
    width: min(1152px, calc(100vw - 64px));
    margin-inline: auto;
}

.stitch-port-faq h2 {
    margin-inline: auto;
    margin-bottom: 96px;
    text-align: center;
}

.stitch-port-faq__list {
    display: grid;
    gap: 32px;
}

.stitch-port-faq details {
    padding: clamp(40px, 4vw, 64px);
    background: #ffffff;
    border: 1px solid var(--port-surface-container);
    border-radius: 32px;
    transition: box-shadow 220ms ease;
}

.stitch-port-faq details:hover {
    box-shadow: 0 20px 50px rgba(27, 28, 26, 0.08);
}

.stitch-port-faq summary {
    cursor: pointer;
    color: var(--port-primary);
    font-family: var(--port-display);
    font-size: clamp(1.65rem, 2.2vw, 2rem);
    line-height: 1.2;
}

.stitch-port-faq summary::marker {
    color: var(--port-primary);
}

.stitch-port-faq p {
    max-width: 900px;
    margin: 32px 0 0;
    color: var(--port-outline);
    font-size: 1.2rem;
    line-height: 1.7;
}

.stitch-port-final {
    padding: 0 32px 128px;
}

.stitch-port-final__panel {
    position: relative;
    overflow: hidden;
    padding: clamp(88px, 10vw, 192px);
    color: #ffffff;
    text-align: center;
    background: var(--port-primary-container);
    border-radius: 80px;
}

.stitch-port-final__panel h2 {
    max-width: none;
    margin-bottom: 48px;
    color: #ffffff;
    font-size: clamp(4.5rem, 8.2vw, 9rem);
}

.stitch-port-final__panel p {
    max-width: 780px;
    margin: 0 auto 80px;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--port-display);
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    font-style: italic;
    line-height: 1.35;
}

.site-footer {
    padding: clamp(76px, 8vw, 120px) 0 112px;
    color: var(--port-on-surface);
    background: var(--port-surface);
    border-top: 1px solid var(--port-surface-container);
}

.site-footer__grid {
    width: var(--port-shell);
    grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(180px, 1fr));
    gap: clamp(32px, 5vw, 78px);
    padding-top: 40px;
}

.site-footer__brand {
    color: var(--port-primary);
    font-family: var(--port-display);
    font-size: clamp(2rem, 2.6vw, 2.8rem);
}

.site-footer h2 {
    color: var(--port-primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.floating-whatsapp {
    z-index: 120;
    right: max(24px, env(safe-area-inset-right));
    bottom: max(26px, env(safe-area-inset-bottom));
    min-height: 56px;
    padding: 14px 22px;
    color: #ffffff;
    background: var(--port-whatsapp);
    border-radius: 999px;
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.26);
}

@media (max-width: 1220px) {
    :root {
        --port-shell: min(100vw - 40px, 1920px);
        --port-header-offset: 136px;
    }

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

    .site-header__inner {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .site-nav {
        grid-column: 1 / -1;
        order: 3;
    }

    .site-nav__list {
        justify-content: flex-start;
        gap: 26px;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .stitch-port-hero {
        padding-top: 136px;
    }

    .stitch-port-hero__grid,
    .stitch-port-location__grid {
        grid-template-columns: 1fr;
    }

    .stitch-port-hero__copy {
        min-height: auto;
        justify-content: flex-start;
        padding: clamp(64px, 10vw, 112px) 20px 56px;
    }

    .stitch-port-hero__media {
        min-height: 62vh;
    }

    .stitch-port-hero__fade {
        background: linear-gradient(180deg, transparent, rgba(251, 249, 245, 0.18));
    }

    .stitch-port-trust__panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    .stitch-port-trust__panel div {
        padding: 24px;
    }

    .stitch-port-trust__panel div + div {
        border-left: 0;
    }

    .stitch-port-review-grid,
    .stitch-port-dish-grid,
    .stitch-port-menu-columns,
    .stitch-port-guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stitch-port-category-grid,
    .stitch-port-landmark-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stitch-port-category-card--tall {
        margin-top: 0;
    }

    .stitch-port-review-card--raised {
        top: 0;
    }

    .stitch-port-section-head--split {
        align-items: flex-start;
        flex-direction: column;
    }

    .stitch-port-location__image {
        height: 560px;
    }
}

@media (max-width: 760px) {
    :root {
        --port-shell: min(100vw - 28px, 1920px);
        --port-section-gap: 86px;
        --port-header-offset: 152px;
    }

    .site-header__inner {
        gap: 12px;
    }

    .site-title__main {
        font-size: 1.18rem;
    }

    .site-header__cta {
        min-height: 40px;
        padding: 10px 14px;
        font-size: 0.62rem;
        letter-spacing: 0.1em;
    }

    .site-nav a {
        font-size: 0.68rem;
    }

    .stitch-port-hero {
        padding-top: 146px;
    }

    .stitch-port-hero__copy {
        padding: 44px 14px 40px;
    }

    .stitch-port-pill {
        margin-bottom: 24px;
        letter-spacing: 0.16em;
    }

    .stitch-port-hero h1 {
        margin-bottom: 28px;
        font-size: clamp(3.1rem, 15vw, 5rem);
    }

    .stitch-port h2,
    .stitch-port-atmosphere h2,
    .stitch-port-location h2,
    .stitch-port-final__panel h2 {
        font-size: clamp(2.7rem, 12vw, 4.4rem);
    }

    .stitch-port-hero p,
    .stitch-port-atmosphere p,
    .stitch-port-final__panel p {
        font-size: 1.08rem;
    }

    .stitch-port-actions,
    .stitch-port-atmosphere__facts {
        flex-direction: column;
        gap: 16px;
    }

    .stitch-port-button {
        width: 100%;
        min-height: 54px;
        padding: 16px 22px;
        font-size: 0.98rem;
    }

    .stitch-port-button--large {
        min-height: 64px;
        font-size: 1.06rem;
    }

    .stitch-port-hero__media {
        min-height: 480px;
    }

    .stitch-port-hero__floating {
        bottom: 20px;
        left: 20px;
        width: 180px;
        padding: 8px;
        border-radius: 22px;
    }

    .stitch-port-trust {
        margin-top: -28px;
    }

    .stitch-port-trust__panel,
    .stitch-port-review-grid,
    .stitch-port-category-grid,
    .stitch-port-dish-grid,
    .stitch-port-landmark-grid,
    .stitch-port-menu-columns,
    .stitch-port-guide-grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .stitch-port-trust__panel {
        gap: 0;
        padding: 22px;
        border-radius: 30px;
    }

    .stitch-port-category-card,
    .stitch-port-category-card--tall {
        height: 460px;
    }

    .stitch-port-review-card,
    .stitch-port-guide-card a {
        border-radius: 32px;
    }

    .stitch-port-card-overlay,
    .stitch-port-category-card__content {
        right: 28px;
        bottom: 28px;
        left: 28px;
        padding: 0;
    }

    .stitch-port-dish-card figure {
        border-radius: 30px;
    }

    .stitch-port-atmosphere {
        min-height: 760px;
    }

    .stitch-port-atmosphere__shade {
        background: linear-gradient(180deg, rgba(90, 5, 2, 0.86), rgba(90, 5, 2, 0.72));
    }

    .stitch-port-menu-columns {
        gap: 48px;
    }

    .stitch-port-location__facts div {
        grid-template-columns: 1fr;
    }

    .stitch-port-area-box {
        padding: 28px;
        border-radius: 30px;
    }

    .stitch-port-area-box li {
        flex-direction: column;
        gap: 8px;
    }

    .stitch-port-location__image {
        height: 460px;
        border-radius: 34px;
    }

    .stitch-port-location__image a {
        right: 20px;
        bottom: 20px;
        left: 20px;
        min-height: 62px;
        padding: 14px;
        font-size: 0.96rem;
    }

    .stitch-port-faq__shell {
        width: min(100vw - 28px, 1152px);
    }

    .stitch-port-faq details {
        padding: 28px;
    }

    .stitch-port-final {
        padding: 0 14px 86px;
    }

    .stitch-port-final__panel {
        padding: 58px 24px;
        border-radius: 42px;
    }

    .floating-whatsapp {
        right: max(12px, env(safe-area-inset-right));
        bottom: max(14px, env(safe-area-inset-bottom));
        left: auto;
        min-height: 46px;
        padding: 12px 16px;
        font-size: 0.86rem;
    }
}

/* Homepage pass 05: Stitch scale normalization and viewport-fit refinement. */
:root {
    --port-section-gap: clamp(78px, 6.5vw, 112px);
    --port-header-offset: 104px;
}

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

.site-header__inner {
    gap: clamp(24px, 3.4vw, 52px);
}

.site-title__mark {
    width: 36px;
    height: 36px;
    font-size: 1.72rem;
}

.site-title__main {
    font-size: 1.32rem;
}

.site-header__cta {
    min-height: 42px;
    padding: 12px 24px;
    font-size: 0.66rem;
}

.stitch-port-section {
    padding: var(--port-section-gap) 0;
}

.stitch-port-section-head {
    margin-bottom: clamp(44px, 4.6vw, 70px);
}

.stitch-port h2 {
    max-width: 980px;
    font-size: clamp(2.65rem, 4.25vw, 5.25rem);
    line-height: 1.07;
}

.stitch-port h3 {
    line-height: 1.12;
}

.stitch-port-hero {
    min-height: 88vh;
    padding-top: 82px;
}

.stitch-port-hero__grid {
    min-height: 88vh;
}

.stitch-port-hero__copy {
    min-height: 88vh;
    padding: clamp(46px, 5vw, 78px);
}

.stitch-port-hero h1 {
    max-width: 660px;
    margin-bottom: 28px;
    font-size: clamp(3.7rem, 5.8vw, 6.35rem);
    line-height: 1.02;
}

.stitch-port-hero p {
    max-width: 540px;
    margin-bottom: 34px;
    font-size: clamp(1.08rem, 1.25vw, 1.28rem);
    line-height: 1.58;
}

.stitch-port-pill {
    min-height: 30px;
    margin-bottom: 24px;
    padding: 7px 14px;
    font-size: 0.64rem;
}

.stitch-port-actions {
    gap: 16px;
}

.stitch-port-hero .stitch-port-actions {
    gap: 12px;
}

.stitch-port-hero .stitch-port-button {
    min-height: 46px;
    padding: 13px 22px;
    border-radius: 12px;
    font-size: 0.9rem;
}

.stitch-port-button {
    min-height: 52px;
    padding: 15px 28px;
    border-radius: 14px;
    font-size: 0.98rem;
}

.stitch-port-button--large {
    min-height: 66px;
    padding: 22px 46px;
    border-radius: 24px;
    font-size: 1.18rem;
}

.stitch-port-hero__media {
    min-height: 88vh;
}

.stitch-port-hero__floating {
    bottom: 36px;
    left: 36px;
    width: 260px;
    padding: 12px;
    border-radius: 26px;
}

.stitch-port-hero__floating img {
    border-radius: 18px;
}

.stitch-port-trust {
    margin-top: -36px;
}

.stitch-port-trust__panel {
    gap: 28px;
    padding: clamp(28px, 3vw, 42px);
    border-radius: 38px;
}

.stitch-port-trust__panel p {
    margin-bottom: 6px;
    font-size: 0.62rem;
}

.stitch-port-trust__panel strong {
    font-size: clamp(1.12rem, 1.32vw, 1.38rem);
}

.stitch-port-quote {
    margin-top: 22px;
    font-size: clamp(1.25rem, 1.55vw, 1.6rem);
}

.stitch-port-review-controls span {
    width: 52px;
    height: 52px;
}

.stitch-port-review-grid {
    gap: 34px;
}

.stitch-port-review-card {
    min-height: 310px;
    padding: clamp(32px, 3vw, 46px);
    border-radius: 38px;
}

.stitch-port-review-card--raised {
    top: -30px;
}

.stitch-port-review-card span {
    margin-bottom: 26px;
}

.stitch-port-review-card h3 {
    margin-bottom: 20px;
    font-size: clamp(1.42rem, 1.65vw, 1.9rem);
}

.stitch-port-review-card p {
    font-size: 1rem;
}

.stitch-port-category-card {
    height: 470px;
    border-radius: 40px;
}

.stitch-port-category-card--tall {
    height: 580px;
    margin-top: -48px;
}

.stitch-port-card-overlay {
    padding: 36px;
}

.stitch-port-category-card__content {
    right: 36px;
    bottom: 36px;
    left: 36px;
}

.stitch-port-category-card__content span {
    font-size: clamp(1.65rem, 1.9vw, 2.08rem);
}

.stitch-port-dishes h2,
.stitch-port-landmarks h2 {
    margin-bottom: 64px;
}

.stitch-port-dish-grid {
    gap: 42px;
}

.stitch-port-dish-card figure {
    margin-bottom: 28px;
    border-radius: 36px;
}

.stitch-port-dish-card h3 {
    margin-bottom: 16px;
    font-size: clamp(1.65rem, 1.9vw, 2.08rem);
}

.stitch-port-dish-card p {
    margin-bottom: 24px;
    font-size: 1.05rem;
    line-height: 1.58;
}

.stitch-port-dish-card a {
    min-height: 52px;
}

.stitch-port-landmarks h2 {
    padding-bottom: 34px;
}

.stitch-port-landmark-grid {
    gap: 32px;
}

.stitch-port-landmark-card figure {
    margin-bottom: 24px;
    border-radius: 28px;
}

.stitch-port-landmark-card h3 {
    margin-bottom: 12px;
    font-size: clamp(1.38rem, 1.52vw, 1.68rem);
}

.stitch-port-landmark-card p {
    margin-bottom: 18px;
    font-size: 0.98rem;
    line-height: 1.5;
}

.stitch-port-atmosphere {
    min-height: 74vh;
}

.stitch-port-atmosphere h2 {
    max-width: 820px;
    margin-bottom: 32px;
    font-size: clamp(3.1rem, 5vw, 5.7rem);
}

.stitch-port-atmosphere p {
    margin-bottom: 42px;
    font-size: 1.24rem;
}

.stitch-port-atmosphere__facts {
    gap: 46px;
    margin-bottom: 42px;
}

.stitch-port-atmosphere__facts strong {
    margin-bottom: 10px;
    font-size: 2.55rem;
}

.stitch-port-menu-preview .stitch-port-section-head p {
    font-size: 1.25rem;
}

.stitch-port-menu-columns {
    gap: clamp(42px, 4.5vw, 74px);
}

.stitch-port-menu-columns h3 {
    padding-bottom: 22px;
    margin-bottom: 30px;
    font-size: clamp(1.55rem, 1.85vw, 2rem);
}

.stitch-port-menu-columns p {
    margin-bottom: 18px;
    font-size: 1.02rem;
}

.stitch-port-menu-preview__cta {
    margin-top: 60px;
}

.stitch-port-guide-grid {
    gap: 40px;
}

.stitch-port-guide-card a {
    border-radius: 38px;
}

.stitch-port-guide-card div {
    padding: clamp(32px, 3vw, 46px);
}

.stitch-port-guide-card p {
    margin-bottom: 18px;
}

.stitch-port-guide-card h3 {
    margin-bottom: 22px;
    font-size: clamp(1.65rem, 1.9vw, 2.08rem);
}

.stitch-port-guide-card span {
    margin-bottom: 28px;
    font-size: 1.02rem;
    line-height: 1.55;
}

.stitch-port-location__grid {
    gap: clamp(52px, 5vw, 82px);
}

.stitch-port-location h2 {
    margin-bottom: 42px;
    font-size: clamp(3.15rem, 5vw, 5.8rem);
}

.stitch-port-location__facts {
    gap: 30px;
    margin-bottom: 32px;
}

.stitch-port-location__facts div {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 22px;
}

.stitch-port-location__facts span {
    min-height: 68px;
    font-size: 0.68rem;
}

.stitch-port-location__facts p {
    font-size: 1.08rem;
}

.stitch-port-area-box {
    padding: 34px;
    border-radius: 38px;
}

.stitch-port-area-box > p {
    margin-bottom: 24px;
}

.stitch-port-area-box ul {
    gap: 18px;
}

.stitch-port-area-box li {
    padding-bottom: 18px;
}

.stitch-port-area-box span {
    font-size: 1.14rem;
}

.stitch-port-location__image {
    height: 620px;
    border-radius: 48px;
}

.stitch-port-location__image a {
    right: 34px;
    bottom: 34px;
    left: 34px;
    min-height: 66px;
    border-radius: 20px;
    font-size: 1.05rem;
}

.stitch-port-faq h2 {
    margin-bottom: 58px;
}

.stitch-port-faq__list {
    gap: 20px;
}

.stitch-port-faq details {
    padding: clamp(30px, 3vw, 42px);
}

.stitch-port-faq summary {
    font-size: clamp(1.38rem, 1.75vw, 1.68rem);
}

.stitch-port-faq p {
    margin-top: 22px;
    font-size: 1.05rem;
}

.stitch-port-final {
    padding: 0 24px 94px;
}

.stitch-port-final__panel {
    padding: clamp(64px, 7vw, 118px);
    border-radius: 60px;
}

.stitch-port-final__panel h2 {
    margin-bottom: 32px;
    font-size: clamp(3.7rem, 6.8vw, 7.2rem);
}

.stitch-port-final__panel p {
    margin-bottom: 50px;
    font-size: clamp(1.28rem, 1.65vw, 1.58rem);
}

.site-footer {
    padding: clamp(58px, 6vw, 88px) 0 82px;
}

.site-footer__brand {
    font-size: clamp(1.7rem, 2.1vw, 2.25rem);
}

.floating-whatsapp {
    min-height: 50px;
    padding: 12px 18px;
    font-size: 0.92rem;
}

@media (min-width: 1500px) {
    .stitch-port-hero h1 {
        font-size: clamp(5rem, 4.7vw, 6.5rem);
    }

    .stitch-port h2 {
        font-size: clamp(3.25rem, 3.75vw, 5.3rem);
    }
}

@media (max-width: 1220px) {
    :root {
        --port-section-gap: clamp(70px, 8vw, 98px);
        --port-header-offset: 130px;
    }

    .stitch-port-hero {
        padding-top: 128px;
        min-height: auto;
    }

    .stitch-port-hero__grid {
        min-height: auto;
    }

    .stitch-port-hero__copy {
        min-height: auto;
        padding: clamp(54px, 8vw, 82px) 20px 46px;
    }

    .stitch-port-hero__media {
        min-height: 54vh;
    }

    .stitch-port-hero h1 {
        max-width: 820px;
        font-size: clamp(3.4rem, 8vw, 5.7rem);
    }

    .stitch-port h2 {
        font-size: clamp(2.5rem, 5.8vw, 4.6rem);
    }

    .stitch-port-category-card,
    .stitch-port-category-card--tall {
        height: 470px;
        margin-top: 0;
    }

    .stitch-port-review-card--raised {
        top: 0;
    }

    .stitch-port-location__image {
        height: 500px;
    }
}

@media (max-width: 760px) {
    :root {
        --port-section-gap: 66px;
        --port-header-offset: 146px;
    }

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

    .stitch-port-hero {
        padding-top: 138px;
    }

    .stitch-port-hero__copy {
        padding: 34px 14px 32px;
    }

    .stitch-port-hero h1 {
        font-size: clamp(2.75rem, 13vw, 4.05rem);
    }

    .stitch-port h2,
    .stitch-port-atmosphere h2,
    .stitch-port-location h2,
    .stitch-port-final__panel h2 {
        font-size: clamp(2.3rem, 10vw, 3.55rem);
        line-height: 1.08;
    }

    .stitch-port-hero__media {
        min-height: 390px;
    }

    .stitch-port-hero__floating {
        width: 154px;
    }

    .stitch-port-trust__panel {
        padding: 18px;
    }

    .stitch-port-category-card,
    .stitch-port-category-card--tall {
        height: 390px;
    }

    .stitch-port-atmosphere {
        min-height: 620px;
    }

    .stitch-port-location__image {
        height: 390px;
    }

    .stitch-port-final__panel {
        padding: 46px 22px;
        border-radius: 34px;
    }

    .floating-whatsapp {
        min-height: 44px;
        padding: 10px 14px;
        font-size: 0.82rem;
    }
}

/* Homepage pass 07: section-specific compactness tuning below the accepted hero/trust scale. */
.stitch-port-reviews {
    padding-top: clamp(48px, 4.4vw, 72px);
    padding-bottom: clamp(54px, 4.8vw, 78px);
}

.stitch-port-reviews .stitch-port-section-head {
    margin-bottom: clamp(26px, 3vw, 42px);
}

.stitch-port-review-grid {
    gap: 24px;
}

.stitch-port-review-card {
    min-height: 260px;
    padding: clamp(24px, 2.1vw, 34px);
}

.stitch-port-categories {
    padding-top: clamp(56px, 4.8vw, 78px);
    padding-bottom: clamp(58px, 5vw, 82px);
}

.stitch-port-categories .stitch-port-section-head {
    margin-bottom: clamp(30px, 3.1vw, 46px);
}

.stitch-port-category-grid {
    gap: 24px;
}

.stitch-port-category-card {
    height: 410px;
}

.stitch-port-category-card--tall {
    height: 490px;
    margin-top: -28px;
}

.stitch-port-dishes {
    padding-top: clamp(58px, 5vw, 82px);
    padding-bottom: clamp(58px, 5vw, 82px);
}

.stitch-port-dishes h2,
.stitch-port-landmarks h2 {
    margin-bottom: 40px;
}

.stitch-port-dish-grid {
    gap: 24px;
}

.stitch-port-dish-card figure {
    margin-bottom: 18px;
}

.stitch-port-dish-card p {
    margin-bottom: 16px;
}

.stitch-port-landmarks {
    padding-top: clamp(56px, 4.8vw, 78px);
    padding-bottom: clamp(56px, 4.8vw, 78px);
}

.stitch-port-landmarks h2 {
    padding-bottom: 24px;
}

.stitch-port-landmark-grid {
    gap: 22px;
}

.stitch-port-landmark-card figure {
    margin-bottom: 14px;
}

.stitch-port-atmosphere {
    min-height: 60vh;
}

.stitch-port-atmosphere .stitch-port-shell {
    padding-top: clamp(60px, 5.2vw, 90px);
    padding-bottom: clamp(60px, 5.2vw, 90px);
}

.stitch-port-atmosphere h2 {
    margin-bottom: 22px;
}

.stitch-port-atmosphere p,
.stitch-port-atmosphere__facts {
    margin-bottom: 28px;
}

.stitch-port-menu-preview {
    padding-top: clamp(58px, 5vw, 82px);
    padding-bottom: clamp(56px, 4.8vw, 78px);
}

.stitch-port-menu-preview .stitch-port-section-head {
    margin-bottom: clamp(30px, 3.2vw, 46px);
}

.stitch-port-menu-columns {
    gap: clamp(26px, 3vw, 46px);
}

.stitch-port-menu-columns h3 {
    margin-bottom: 18px;
    padding-bottom: 14px;
}

.stitch-port-menu-columns p {
    margin-bottom: 10px;
}

.stitch-port-menu-preview__cta {
    margin-top: 32px;
}

.stitch-port-guides {
    padding-top: clamp(56px, 4.8vw, 78px);
    padding-bottom: clamp(56px, 4.8vw, 78px);
}

.stitch-port-guides .stitch-port-section-head {
    margin-bottom: clamp(30px, 3.2vw, 44px);
}

.stitch-port-guide-grid {
    gap: 24px;
}

.stitch-port-guide-card div {
    padding: clamp(24px, 2.2vw, 34px);
}

.stitch-port-guide-card h3 {
    margin-bottom: 14px;
}

.stitch-port-guide-card span {
    margin-bottom: 18px;
}

.stitch-port-location {
    padding-top: clamp(58px, 5vw, 82px);
    padding-bottom: clamp(58px, 5vw, 82px);
}

.stitch-port-location__grid {
    gap: clamp(34px, 3.4vw, 58px);
}

.stitch-port-location h2 {
    margin-bottom: 28px;
}

.stitch-port-location__facts {
    gap: 18px;
    margin-bottom: 20px;
}

.stitch-port-area-box {
    padding: 24px;
}

.stitch-port-area-box > p {
    margin-bottom: 18px;
}

.stitch-port-area-box ul {
    gap: 14px;
}

.stitch-port-area-box li {
    padding-bottom: 14px;
}

.stitch-port-location__image {
    height: 520px;
}

.stitch-port-faq {
    padding-top: clamp(56px, 4.8vw, 78px);
    padding-bottom: clamp(56px, 4.8vw, 78px);
}

.stitch-port-faq h2 {
    margin-bottom: 34px;
}

.stitch-port-faq__list {
    gap: 14px;
}

.stitch-port-faq details {
    padding: clamp(24px, 2.2vw, 32px);
}

.stitch-port-faq p {
    margin-top: 18px;
}

.stitch-port-final {
    padding-bottom: 64px;
}

.stitch-port-final__panel {
    padding: clamp(48px, 5vw, 82px);
}

.stitch-port-final__panel h2 {
    margin-bottom: 20px;
}

.stitch-port-final__panel p {
    margin-bottom: 32px;
}

@media (max-width: 1220px) {
    .stitch-port-reviews,
    .stitch-port-categories,
    .stitch-port-dishes,
    .stitch-port-landmarks,
    .stitch-port-menu-preview,
    .stitch-port-guides,
    .stitch-port-location,
    .stitch-port-faq {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .stitch-port-category-card,
    .stitch-port-category-card--tall {
        height: 410px;
        margin-top: 0;
    }

    .stitch-port-location__image {
        height: 440px;
    }
}

@media (max-width: 760px) {
    .stitch-port-reviews,
    .stitch-port-categories,
    .stitch-port-dishes,
    .stitch-port-landmarks,
    .stitch-port-menu-preview,
    .stitch-port-guides,
    .stitch-port-location,
    .stitch-port-faq {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .stitch-port-review-card {
        min-height: 0;
    }

    .stitch-port-category-card,
    .stitch-port-category-card--tall {
        height: 340px;
    }

    .stitch-port-atmosphere {
        min-height: 540px;
    }

    .stitch-port-atmosphere .stitch-port-shell {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .stitch-port-location__image {
        height: 320px;
    }

    .stitch-port-final {
        padding-bottom: 56px;
    }

    .stitch-port-final__panel {
        padding: 38px 20px;
    }
}

/* Homepage pass 08: mobile trust-bar flow and category overlay containment. */
.stitch-port-category-card {
    overflow: hidden;
    isolation: isolate;
}

.stitch-port-category-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stitch-port-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    padding: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(
        0deg,
        rgba(90, 5, 2, 0.86) 0%,
        rgba(90, 5, 2, 0.68) 18%,
        rgba(90, 5, 2, 0.34) 38%,
        rgba(90, 5, 2, 0.10) 54%,
        rgba(90, 5, 2, 0) 68%
    );
}

.stitch-port-category-card__content {
    z-index: 2;
}

@media (max-width: 760px) {
    .stitch-port-trust {
        margin-top: 0;
        padding-top: 16px;
    }

    .stitch-port-trust .stitch-port-shell {
        width: min(100vw - 28px, 1728px);
    }

    .stitch-port-trust__panel {
        border-radius: 30px;
        box-shadow: 0 18px 44px rgba(27, 28, 26, 0.10);
    }

    .stitch-port-card-overlay {
        inset: 0;
        padding: 0;
        background: linear-gradient(
            0deg,
            rgba(90, 5, 2, 0.88) 0%,
            rgba(90, 5, 2, 0.68) 20%,
            rgba(90, 5, 2, 0.30) 40%,
            rgba(90, 5, 2, 0.08) 54%,
            rgba(90, 5, 2, 0) 66%
        );
    }

    .stitch-port-category-card__content {
        right: 24px;
        bottom: 24px;
        left: 24px;
    }
}

/* Homepage pass 09: mobile trust bar must sit after the hero in normal flow. */
@media (max-width: 760px) {
    .stitch-port-hero {
        overflow: visible;
        padding-bottom: 0;
    }

    .stitch-port-hero__background {
        position: relative;
        inset: auto;
        z-index: auto;
    }

    .stitch-port-hero__grid {
        height: auto;
        min-height: auto;
    }

    .stitch-port-trust {
        position: relative;
        z-index: 1;
        margin-top: clamp(20px, 6vw, 36px);
        padding-top: 0;
        transform: none;
    }
}

/* Homepage pass 10: final mobile-only hero and trust-card refinement. */
@media (max-width: 760px) {
    .stitch-port-hero {
        padding-top: 96px;
    }

    .stitch-port-hero__copy {
        padding-top: 18px;
        padding-bottom: 30px;
    }

    .stitch-port-hero .stitch-port-actions {
        flex-direction: row;
        gap: 10px;
    }

    .stitch-port-hero .stitch-port-button {
        width: auto;
        min-height: 44px;
        padding: 12px 16px;
        font-size: 0.84rem;
    }

    .stitch-port-hero__media {
        min-height: 380px;
        margin: 0 14px;
        overflow: hidden;
        border: 1px solid rgba(206, 174, 111, 0.28);
        border-radius: 34px;
        box-shadow: 0 22px 54px rgba(55, 20, 12, 0.14);
    }

    .stitch-port-hero__media > img {
        border-radius: inherit;
    }

    .stitch-port-hero__fade {
        border-radius: inherit;
    }

    .stitch-port-hero__floating {
        bottom: 14px;
        left: 14px;
        width: 148px;
        padding: 7px;
        border-radius: 20px;
        box-shadow: 0 16px 38px rgba(27, 28, 26, 0.18);
    }

    .stitch-port-trust {
        margin-top: clamp(16px, 4.5vw, 26px);
    }

    .stitch-port-trust__panel {
        gap: 0;
        padding: 12px 14px;
        border-radius: 24px;
        box-shadow: 0 16px 38px rgba(27, 28, 26, 0.09);
    }

    .stitch-port-trust__panel div {
        padding: 12px 2px;
    }

    .stitch-port-trust__panel div + div {
        border-top: 1px solid rgba(122, 30, 19, 0.09);
    }

    .stitch-port-trust__panel p {
        margin-bottom: 4px;
        font-size: 0.58rem;
        letter-spacing: 0.13em;
    }

    .stitch-port-trust__panel strong {
        font-size: 1.02rem;
        line-height: 1.28;
    }
}

/* Homepage pass 66E: Tripadvisor shortcode-only review section. */
.stitch-port-review-shortcode {
    width: 100%;
}

/* Homepage pass 66F: remove old review-control spacing around shortcode output. */
.stitch-port-reviews .stitch-port-section-head {
    margin-bottom: clamp(14px, 1.8vw, 24px);
}

.stitch-port-review-shortcode {
    margin-top: 0;
}

@media (max-width: 760px) {
    .stitch-port-reviews .stitch-port-section-head {
        margin-bottom: 12px;
    }
}

/* Pass 73: reusable SEO landing page template structure. */
.divella-landing,
.divella-landing * {
    box-sizing: border-box;
}

.divella-landing {
    --landing-shell: min(1160px, calc(100vw - 36px));
    color: var(--color-text);
    background:
        radial-gradient(circle at 10% 0%, rgba(217, 186, 116, 0.14), transparent 34%),
        linear-gradient(180deg, var(--color-base), var(--color-base-soft) 42%, var(--color-base));
}

.divella-landing-shell {
    width: var(--landing-shell);
    margin-inline: auto;
}

.divella-landing-narrow {
    max-width: 860px;
}

.divella-landing h1,
.divella-landing h2,
.divella-landing h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 520;
    color: #211915;
}

.divella-landing h1 {
    max-width: 760px;
    margin-bottom: 18px;
    font-size: clamp(2.25rem, 4.9vw, 4.35rem);
    line-height: 1.04;
}

.divella-landing h2 {
    margin-bottom: 16px;
    font-size: clamp(1.68rem, 2.8vw, 2.55rem);
    line-height: 1.14;
}

.divella-landing h3 {
    margin-bottom: 10px;
    font-size: 1.12rem;
    line-height: 1.24;
}

.divella-landing p {
    color: var(--color-muted);
}

.divella-landing-hero {
    padding: clamp(66px, 7.8vw, 112px) 0 clamp(36px, 5vw, 66px);
}

.divella-landing-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
    gap: clamp(24px, 4.4vw, 60px);
    align-items: center;
}

.divella-landing-pill,
.divella-landing-kicker,
.divella-landing-section-head span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 16px;
    color: var(--color-burgundy);
    font-size: 0.73rem;
    font-weight: 780;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
}

.divella-landing-pill {
    padding: 9px 12px;
    background: rgba(122, 30, 19, 0.07);
    border: 1px solid rgba(122, 30, 19, 0.12);
    border-radius: 999px;
}

.divella-landing-hero__intro {
    max-width: 700px;
    margin-bottom: 24px;
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.68;
}

.divella-landing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.divella-landing-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 13px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 760;
    line-height: 1.1;
    text-decoration: none;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.divella-landing-button:hover,
.divella-landing-button:focus {
    transform: translateY(-1px);
}

.divella-landing-button--whatsapp {
    color: #ffffff;
    background: var(--color-whatsapp);
    box-shadow: 0 14px 30px rgba(31, 143, 87, 0.18);
}

.divella-landing-button--whatsapp:hover,
.divella-landing-button--whatsapp:focus {
    color: #ffffff;
    background: var(--color-whatsapp-dark);
}

.divella-landing-button--surface {
    color: var(--color-burgundy);
    background: #ffffff;
    border-color: rgba(122, 30, 19, 0.18);
}

.divella-landing-button--large {
    min-height: 52px;
    padding-inline: 22px;
}

.divella-landing-hero__image-slot {
    display: grid;
    min-height: clamp(285px, 32vw, 430px);
    place-items: center;
    overflow: hidden;
    padding: 24px;
    color: var(--color-burgundy);
    background:
        linear-gradient(135deg, rgba(122, 30, 19, 0.08), transparent 42%),
        linear-gradient(180deg, #ffffff, var(--color-wheat-pale));
    border: 1px solid rgba(206, 174, 111, 0.34);
    border-radius: 34px;
    box-shadow: 0 22px 54px rgba(55, 20, 12, 0.10);
    text-align: center;
}

.divella-landing-hero__image-slot img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.divella-landing-hero__image-slot--image {
    padding: 0;
}

.divella-landing-hero__image-slot span {
    max-width: 220px;
    font-size: 0.78rem;
    font-weight: 780;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.divella-landing-trust {
    padding-bottom: clamp(34px, 4.4vw, 64px);
}

.divella-landing-trust__panel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    background: rgba(122, 30, 19, 0.10);
    border: 1px solid rgba(122, 30, 19, 0.12);
    border-radius: 28px;
    box-shadow: var(--shadow-card);
}

.divella-landing-trust__panel div {
    padding: 17px 20px;
    background: rgba(255, 255, 255, 0.86);
}

.divella-landing-trust__panel p {
    margin-bottom: 5px;
    color: var(--color-burgundy);
    font-size: 0.66rem;
    font-weight: 780;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.divella-landing-trust__panel strong {
    color: var(--color-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
    font-weight: 520;
}

.divella-landing-section {
    padding: clamp(50px, 6vw, 80px) 0;
}

.divella-landing-intent {
    background: #ffffff;
    border-top: 1px solid rgba(122, 30, 19, 0.08);
    border-bottom: 1px solid rgba(122, 30, 19, 0.08);
}

.divella-landing-section-head {
    max-width: 820px;
    margin-bottom: 24px;
}

.divella-landing-card-grid,
.divella-landing-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.divella-landing-card,
.divella-landing-guide-card,
.divella-landing-faq details {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(122, 30, 19, 0.12);
    border-radius: 26px;
    box-shadow: var(--shadow-soft);
}

.divella-landing-card,
.divella-landing-guide-card {
    min-height: 198px;
    padding: 23px;
}

.divella-landing-card a,
.divella-landing-guide-card a {
    color: var(--color-burgundy);
    font-weight: 760;
    text-decoration: none;
}

.divella-landing-card a:hover,
.divella-landing-card a:focus,
.divella-landing-guide-card a:hover,
.divella-landing-guide-card a:focus {
    text-decoration: underline;
}

.divella-landing-location-proof {
    background:
        linear-gradient(135deg, rgba(122, 30, 19, 0.05), transparent 42%),
        var(--color-base-warm);
}

.divella-landing-location-proof__panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.55fr);
    gap: 24px;
    align-items: start;
    padding: clamp(24px, 3.5vw, 40px);
    background: rgba(255, 253, 248, 0.86);
    border: 1px solid rgba(122, 30, 19, 0.12);
    border-radius: 32px;
    box-shadow: var(--shadow-card);
}

.divella-landing-location-proof ul {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.divella-landing-location-proof li {
    padding: 13px 14px;
    color: var(--color-burgundy);
    background: #ffffff;
    border: 1px solid rgba(122, 30, 19, 0.10);
    border-radius: 16px;
    font-weight: 720;
}

.divella-landing-guide-card span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--color-burgundy);
    font-size: 0.7rem;
    font-weight: 780;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.divella-landing-faq {
    background: #ffffff;
}

.divella-landing-faq__list {
    display: grid;
    gap: 12px;
}

.divella-landing-faq details {
    padding: 0;
}

.divella-landing-faq summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 20px;
}

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

.divella-landing-faq summary h3 {
    display: inline;
    margin: 0;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 760;
}

.divella-landing-faq details p {
    padding: 0 20px 18px;
    margin: 0;
}

.divella-landing-final {
    padding: clamp(48px, 6vw, 82px) 0;
}

.divella-landing-final__panel {
    padding: clamp(30px, 4.4vw, 50px);
    background:
        linear-gradient(135deg, rgba(122, 30, 19, 0.08), transparent 48%),
        #ffffff;
    border: 1px solid rgba(122, 30, 19, 0.12);
    border-radius: 34px;
    box-shadow: var(--shadow-card);
    text-align: center;
}

.divella-landing-final__panel h2 {
    margin-inline: auto;
}

.divella-landing-final__panel p {
    max-width: 720px;
    margin: 0 auto 24px;
}

@media (max-width: 980px) {
    .divella-landing-hero__grid,
    .divella-landing-location-proof__panel {
        grid-template-columns: 1fr;
    }

    .divella-landing-card-grid,
    .divella-landing-guide-grid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 680px) {
    .divella-landing {
        --landing-shell: min(100vw - 28px, 1160px);
    }

    .divella-landing-hero {
        padding-top: 50px;
    }

    .divella-landing h1 {
        font-size: clamp(2.05rem, 10.5vw, 3.1rem);
    }

    .divella-landing-actions,
    .divella-landing-actions .divella-landing-button {
        width: 100%;
    }

    .divella-landing-card-grid,
    .divella-landing-guide-grid,
    .divella-landing-trust__panel {
        grid-template-columns: 1fr;
    }

    .divella-landing-trust__panel div {
        padding: 14px 16px;
    }

    .divella-landing-card,
    .divella-landing-guide-card {
        min-height: 0;
        padding: 20px;
        border-radius: 22px;
    }

    .divella-landing-hero__image-slot {
        min-height: 245px;
        padding: 20px;
    }

    .divella-landing-location-proof__panel,
    .divella-landing-final__panel {
        border-radius: 26px;
    }
}

/* Pass 81: controlled footer internal links for local landing pages. */
.site-footer__grid {
    grid-template-columns: minmax(230px, 1.35fr) minmax(170px, 0.95fr) minmax(150px, 0.78fr) minmax(150px, 0.82fr) minmax(170px, 0.9fr) minmax(190px, 1fr);
    gap: clamp(22px, 3.2vw, 44px);
}

.site-footer__landing-links ul {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer__landing-links a {
    color: inherit;
    font-size: 0.94rem;
    font-weight: 640;
    line-height: 1.35;
    text-decoration: none;
}

.site-footer__landing-links a:hover,
.site-footer__landing-links a:focus {
    color: var(--color-burgundy);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 1180px) {
    .site-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .site-footer__brand-block {
        grid-column: span 3;
    }
}

@media (max-width: 760px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__brand-block {
        grid-column: auto;
    }
}

/* Pass 105: contact and reservation page architecture. */
.divella-action-page,
.divella-action-section {
    padding: clamp(58px, 7vw, 96px) 0;
}

.divella-action-page {
    background:
        linear-gradient(135deg, rgba(122, 30, 19, 0.06), transparent 48%),
        linear-gradient(180deg, #ffffff 0%, var(--color-base-soft) 100%);
    border-bottom: 1px solid rgba(122, 30, 19, 0.08);
}

.divella-action-hero,
.divella-action-grid,
.divella-reservation-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.72fr);
    gap: clamp(28px, 5vw, 68px);
    align-items: start;
}

.divella-action-hero h1 {
    max-width: 760px;
    font-size: clamp(2.15rem, 4.2vw, 4rem);
}

.divella-action-hero p {
    max-width: 720px;
    font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.divella-action-card {
    padding: clamp(24px, 3vw, 36px);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(122, 30, 19, 0.11);
    border-radius: 26px;
    box-shadow: var(--shadow-card);
}

.divella-detail-list {
    display: grid;
    gap: 18px;
    margin: 0;
}

.divella-detail-list div {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(122, 30, 19, 0.09);
}

.divella-detail-list div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.divella-detail-list dt {
    margin-bottom: 4px;
    color: var(--color-burgundy);
    font-size: 0.74rem;
    font-weight: 780;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.divella-detail-list dd {
    margin: 0;
    color: var(--color-text);
    font-weight: 650;
}

.divella-check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.divella-check-list li {
    padding: 12px 14px;
    color: #4b3930;
    background: #ffffff;
    border: 1px solid rgba(122, 30, 19, 0.10);
    border-radius: 16px;
    font-weight: 680;
}

.divella-link-stack {
    display: grid;
    gap: 10px;
}

.divella-link-stack a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 10px 12px;
    color: var(--color-burgundy);
    background: rgba(251, 241, 215, 0.42);
    border: 1px solid rgba(122, 30, 19, 0.10);
    border-radius: 14px;
    font-weight: 720;
    text-decoration: none;
}

.divella-link-stack a:hover,
.divella-link-stack a:focus {
    background: #fff7e5;
    text-decoration: underline;
}

.divella-action-section--map {
    background: var(--color-base-soft);
}

.divella-action-section-head {
    max-width: 760px;
    margin-bottom: 26px;
}

.divella-map-frame {
    overflow: hidden;
    min-height: 420px;
    background: var(--color-base-warm);
    border: 1px solid rgba(122, 30, 19, 0.11);
    border-radius: 26px;
    box-shadow: var(--shadow-card);
}

.divella-map-frame iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

.divella-map-note {
    margin-top: 20px;
}

.divella-reservation-form {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

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

.divella-reservation-form p {
    margin: 0;
}

.divella-reservation-form label {
    display: block;
    margin-bottom: 7px;
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 720;
}

.divella-reservation-form input,
.divella-reservation-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    color: var(--color-text);
    background: #ffffff;
    border: 1px solid rgba(122, 30, 19, 0.18);
    border-radius: 12px;
    font: inherit;
}

.divella-reservation-form textarea {
    min-height: 132px;
    resize: vertical;
}

.divella-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.divella-form-message {
    margin: 20px 0 0;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 660;
}

.divella-form-message--success {
    color: #155d39;
    background: rgba(31, 143, 87, 0.10);
    border: 1px solid rgba(31, 143, 87, 0.20);
}

.divella-form-message--error {
    color: var(--color-burgundy);
    background: rgba(122, 30, 19, 0.07);
    border: 1px solid rgba(122, 30, 19, 0.16);
}

.divella-form-message p {
    margin-bottom: 8px;
    color: inherit;
}

.divella-form-message ul {
    margin: 0;
    padding-left: 18px;
}

@media (max-width: 860px) {
    .divella-action-hero,
    .divella-action-grid,
    .divella-reservation-layout,
    .divella-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .divella-action-page,
    .divella-action-section {
        padding: 46px 0;
    }

    .divella-action-card {
        border-radius: 22px;
    }

    .divella-map-frame,
    .divella-map-frame iframe {
        min-height: 340px;
        height: 340px;
    }
}

/* Pass 106: contact and reservation visual polish. */
.divella-polish-page {
    position: relative;
    overflow: hidden;
}

.divella-polish-page::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(120deg, rgba(122, 30, 19, 0.08), transparent 36%),
        radial-gradient(circle at 86% 12%, rgba(217, 186, 116, 0.18), transparent 30%);
    pointer-events: none;
}

.divella-action-page {
    padding: clamp(74px, 8vw, 118px) 0 clamp(58px, 7vw, 96px);
}

.divella-action-page .site-shell {
    position: relative;
    z-index: 1;
}

.divella-action-hero {
    grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.62fr);
    align-items: center;
}

.divella-action-hero__copy {
    max-width: 760px;
}

.divella-action-hero__copy .eyebrow,
.divella-action-section-head .eyebrow,
.divella-action-card .eyebrow {
    letter-spacing: 0.13em;
}

.divella-action-hero h1 {
    max-width: 780px;
    margin-bottom: 20px;
    font-size: clamp(2.35rem, 5vw, 4.65rem);
    line-height: 1.04;
}

.divella-action-hero__copy > p {
    max-width: 700px;
    margin-bottom: 28px;
    color: #5e524b;
    font-size: clamp(1.02rem, 1.38vw, 1.18rem);
    line-height: 1.72;
}

.divella-action-hero .cta-row {
    gap: 12px;
}

.divella-action-hero .button,
.divella-reservation-form .button,
.divella-map-frame + .button {
    min-height: 48px;
    border-radius: 10px;
}

.divella-action-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 253, 248, 0.94));
    border-color: rgba(122, 30, 19, 0.12);
    border-radius: 28px;
    box-shadow: 0 22px 54px rgba(70, 38, 26, 0.08);
}

.divella-action-card--feature {
    padding: clamp(28px, 3.5vw, 42px);
    background:
        linear-gradient(135deg, rgba(122, 30, 19, 0.10), transparent 46%),
        linear-gradient(180deg, #ffffff, var(--color-wheat-pale));
}

.divella-action-card--feature::after {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 72px;
    height: 3px;
    background: var(--color-wheat-gold);
    content: "";
}

.divella-action-card--feature > span,
.divella-info-card > span,
.divella-proof-card > span {
    display: block;
    margin-bottom: 12px;
    color: var(--color-burgundy);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.divella-action-card--feature h2 {
    margin-bottom: 14px;
    font-size: clamp(1.5rem, 2.2vw, 2.08rem);
}

.divella-action-card--feature p {
    margin-bottom: 22px;
}

.divella-action-card--feature a {
    color: var(--color-burgundy);
    font-weight: 780;
    text-decoration: none;
}

.divella-action-card--feature a:hover,
.divella-action-card--feature a:focus {
    text-decoration: underline;
}

.divella-action-section {
    padding: clamp(58px, 6.4vw, 92px) 0;
}

.divella-action-section--proof,
.divella-action-section--form {
    background:
        linear-gradient(180deg, #ffffff 0%, var(--color-base-soft) 100%);
    border-top: 1px solid rgba(122, 30, 19, 0.07);
    border-bottom: 1px solid rgba(122, 30, 19, 0.07);
}

.divella-action-section--map {
    background:
        linear-gradient(180deg, var(--color-base-soft), #ffffff);
}

.divella-action-section-head {
    margin-bottom: clamp(26px, 4vw, 42px);
}

.divella-action-section-head--center {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.divella-action-section-head--center .eyebrow {
    justify-content: center;
    margin-inline: auto;
}

.divella-action-section-head--split {
    display: flex;
    gap: 22px;
    align-items: end;
    justify-content: space-between;
    max-width: none;
}

.divella-action-section-head--split h2 {
    margin-bottom: 0;
}

.divella-info-grid,
.divella-link-card-grid,
.divella-proof-grid {
    display: grid;
    gap: 18px;
}

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

.divella-info-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.divella-info-card,
.divella-proof-card,
.divella-link-card {
    min-height: 100%;
    padding: clamp(22px, 2.6vw, 30px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 253, 248, 0.96));
    border: 1px solid rgba(122, 30, 19, 0.10);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.divella-info-card a,
.divella-info-card strong,
.divella-proof-card strong {
    display: block;
    color: #2d211c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.04rem, 1.3vw, 1.22rem);
    font-weight: 520;
    line-height: 1.35;
    text-decoration: none;
}

.divella-info-card a:hover,
.divella-info-card a:focus {
    color: var(--color-burgundy);
    text-decoration: underline;
}

.divella-proof-grid {
    grid-template-columns: 1fr;
}

.divella-proof-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 20px 22px;
}

.divella-proof-card > span {
    margin-bottom: 0;
}

.divella-proof-card strong {
    color: var(--color-burgundy);
    white-space: nowrap;
}

.divella-map-frame {
    min-height: clamp(420px, 48vw, 560px);
    border-radius: 30px;
    box-shadow: 0 26px 68px rgba(70, 38, 26, 0.10);
}

.divella-map-frame iframe {
    height: clamp(420px, 48vw, 560px);
}

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

.divella-link-card,
.divella-link-stack--cards a {
    display: flex;
    min-height: 112px;
    flex-direction: column;
    justify-content: space-between;
    color: var(--color-text);
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.divella-link-card:hover,
.divella-link-card:focus,
.divella-link-stack--cards a:hover,
.divella-link-stack--cards a:focus {
    transform: translateY(-2px);
    border-color: rgba(122, 30, 19, 0.20);
    box-shadow: var(--shadow-card);
    text-decoration: none;
}

.divella-link-card span,
.divella-link-stack--cards span {
    color: #2d211c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
    font-weight: 520;
    line-height: 1.25;
}

.divella-link-card em,
.divella-link-stack--cards em {
    margin-top: 18px;
    color: var(--color-burgundy);
    font-style: normal;
    font-weight: 780;
}

.divella-reservation-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
}

.divella-action-card--form {
    padding: clamp(26px, 3.5vw, 44px);
}

.divella-action-card--sticky {
    position: sticky;
    top: 96px;
}

.divella-reservation-form {
    gap: 20px;
}

.divella-reservation-form label {
    margin-bottom: 8px;
    color: #332822;
    font-size: 0.86rem;
    font-weight: 760;
}

.divella-reservation-form input,
.divella-reservation-form textarea {
    min-height: 50px;
    padding: 13px 14px;
    background:
        linear-gradient(180deg, #ffffff, #fffdf8);
    border-color: rgba(122, 30, 19, 0.16);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.divella-reservation-form input:focus,
.divella-reservation-form textarea:focus {
    border-color: rgba(122, 30, 19, 0.38);
    box-shadow: 0 0 0 3px rgba(217, 186, 116, 0.22);
    outline: none;
}

.divella-reservation-form textarea {
    min-height: 146px;
}

.divella-honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
}

.divella-honeypot input {
    width: 1px;
    height: 1px;
    min-height: 1px;
    padding: 0;
    border: 0;
}

.divella-form-message {
    margin: 22px 0 0;
    padding: 16px 18px;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.divella-form-message--success {
    color: #175b3c;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(232, 249, 240, 0.88));
}

.divella-form-message--error {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 244, 240, 0.92));
}

.divella-form-message:focus {
    outline: 3px solid rgba(217, 186, 116, 0.38);
    outline-offset: 3px;
}

.divella-link-stack--cards {
    gap: 12px;
}

.divella-link-stack--cards a {
    min-height: 86px;
    padding: 17px 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 253, 248, 0.96));
    border-radius: 18px;
}

/* Pass 115: reservation, contact and menu launch polish. */
.divella-action-page--reservation {
    padding-bottom: clamp(34px, 4vw, 58px);
}

.divella-reservation-priority {
    padding-top: clamp(34px, 4vw, 58px);
}

.divella-reservation-layout--focused {
    display: block;
    max-width: 940px;
}

.divella-reservation-support,
.divella-action-section--links,
.divella-contact-details,
.divella-contact-next {
    padding-top: clamp(38px, 4.5vw, 64px);
    padding-bottom: clamp(42px, 5vw, 68px);
}

.divella-action-section-head--compact {
    max-width: 780px;
    margin-bottom: 20px;
}

.divella-action-section-head--compact h2 {
    margin-bottom: 10px;
    font-size: clamp(1.62rem, 2.4vw, 2.25rem);
}

.divella-info-grid--compact .divella-info-card,
.divella-info-grid--contact .divella-info-card {
    padding: clamp(18px, 2vw, 24px);
    border-radius: 20px;
}

.divella-info-grid--compact .divella-info-card > span,
.divella-info-grid--contact .divella-info-card > span {
    margin-bottom: 8px;
}

.divella-contact-detail-layout {
    display: grid;
    gap: 12px;
}

.divella-contact-detail-layout .divella-info-grid--contact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.divella-info-card--address {
    display: grid;
    grid-template-columns: minmax(110px, 0.22fr) minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-height: 0;
    padding: 16px 20px;
    border-radius: 20px;
}

.divella-info-card--address > span {
    margin-bottom: 0;
}

.divella-info-card--address a {
    font-size: clamp(0.98rem, 1.05vw, 1.08rem);
    line-height: 1.38;
}

.divella-link-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.divella-link-chip {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    color: var(--color-burgundy);
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid rgba(122, 30, 19, 0.16);
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 760;
    line-height: 1.15;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(70, 38, 26, 0.045);
}

.divella-link-chip:hover,
.divella-link-chip:focus {
    color: #ffffff;
    background: var(--color-burgundy);
    border-color: var(--color-burgundy);
    text-decoration: none;
}

.divella-contact-details {
    background: #ffffff;
}

.divella-action-page--contact {
    padding-top: clamp(56px, 6vw, 84px);
    padding-bottom: clamp(36px, 4.6vw, 58px);
}

.divella-action-page--contact .divella-action-hero__copy > p {
    margin-bottom: 20px;
}

.divella-action-page--contact .divella-action-card--feature {
    padding: clamp(22px, 2.7vw, 32px);
}

.divella-contact-details,
.divella-contact-next {
    padding-top: clamp(24px, 3vw, 40px);
    padding-bottom: clamp(28px, 3.2vw, 44px);
}

.divella-contact-details .divella-action-section-head {
    margin-bottom: 16px;
}

.divella-contact-details .divella-action-section-head h2 {
    margin-bottom: 0;
    font-size: clamp(1.6rem, 2.4vw, 2.18rem);
}

.divella-contact-proof {
    padding-top: clamp(34px, 4vw, 56px);
    padding-bottom: clamp(34px, 4vw, 56px);
}

.divella-contact-map {
    padding-top: clamp(36px, 4.2vw, 58px);
    padding-bottom: clamp(38px, 4.4vw, 62px);
}

.divella-contact-next .divella-action-section-head {
    margin-bottom: 16px;
}

.divella-link-card-grid--compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.divella-link-card-grid--compact .divella-link-card {
    min-height: 76px;
    padding: 16px 18px;
    border-radius: 18px;
}

.divella-link-card-grid--compact .divella-link-card span {
    font-size: 1rem;
}

.divella-link-card-grid--compact .divella-link-card em {
    margin-top: 10px;
}

@media (max-width: 900px) {
    .divella-contact-detail-layout .divella-info-grid--contact {
        grid-template-columns: 1fr;
    }

    .divella-info-card--address {
        grid-template-columns: 1fr;
        gap: 8px;
    }

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

@media (max-width: 680px) {
    .divella-link-chip-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .divella-link-chip,
    .divella-link-card-grid--compact .divella-link-card {
        width: 100%;
    }

    .divella-link-card-grid--compact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1120px) {
    .divella-info-grid,
    .divella-link-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .divella-action-hero,
    .divella-action-grid,
    .divella-reservation-layout {
        grid-template-columns: 1fr;
    }

    .divella-action-card--sticky {
        position: static;
    }

    .divella-action-section-head--split {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 680px) {
    .divella-action-page {
        padding-top: 54px;
    }

    .divella-action-hero h1 {
        font-size: clamp(2.05rem, 10.5vw, 3.15rem);
    }

    .divella-action-hero .button,
    .divella-reservation-form .button,
    .divella-action-section-head--split .button {
        width: 100%;
    }

    .divella-info-grid,
    .divella-info-grid--three,
    .divella-link-card-grid,
    .divella-form-grid {
        grid-template-columns: 1fr;
    }

    .divella-proof-card {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .divella-proof-card strong {
        white-space: normal;
    }

    .divella-link-card {
        min-height: 94px;
    }

    .divella-map-frame,
    .divella-map-frame iframe {
        min-height: 360px;
        height: 360px;
    }
}

/* Pass 108: homepage location map and CTA upgrade. */
.stitch-port-location__facts a {
    color: inherit;
    font-weight: inherit;
    text-decoration: none;
}

.stitch-port-location__facts a:hover,
.stitch-port-location__facts a:focus {
    color: var(--port-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.stitch-port-location__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0 24px;
}

.stitch-port-location__actions .stitch-port-button {
    min-height: 48px;
    padding: 13px 17px;
}

.stitch-port-location__map {
    position: relative;
    display: grid;
    min-height: 640px;
    align-content: end;
    overflow: hidden;
    padding: clamp(18px, 2.4vw, 28px);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.80), rgba(255, 250, 239, 0.96));
    border: 1px solid rgba(122, 30, 19, 0.10);
    border-radius: 48px;
    box-shadow: 0 30px 80px rgba(27, 28, 26, 0.14);
}

.stitch-port-location__map-frame {
    position: absolute;
    inset: 0;
}

.stitch-port-location__map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 640px;
    border: 0;
    filter: saturate(0.92) contrast(0.98);
}

.stitch-port-location__map-card {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding: clamp(20px, 2.4vw, 28px);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(122, 30, 19, 0.11);
    border-radius: 24px;
    box-shadow: 0 22px 64px rgba(27, 28, 26, 0.18);
    backdrop-filter: blur(16px);
}

.stitch-port-location__map-card span {
    color: var(--port-primary);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.stitch-port-location__map-card strong {
    color: var(--port-on-surface);
    font-family: var(--port-display);
    font-size: clamp(1.28rem, 2vw, 1.8rem);
    font-weight: 520;
}

.stitch-port-location__map-card a {
    color: var(--port-primary);
    font-weight: 800;
    text-decoration: none;
}

.stitch-port-location__map-card a:hover,
.stitch-port-location__map-card a:focus {
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 1220px) {
    .stitch-port-location__map {
        min-height: 440px;
        border-radius: 34px;
    }

    .stitch-port-location__map-frame iframe {
        min-height: 440px;
    }
}

@media (max-width: 760px) {
    .stitch-port-location__actions,
    .stitch-port-location__actions .stitch-port-button {
        width: 100%;
    }

    .stitch-port-location__map {
        min-height: 360px;
        padding: 14px;
        border-radius: 28px;
    }

    .stitch-port-location__map-frame iframe {
        min-height: 360px;
    }

    .stitch-port-location__map-card {
        padding: 18px;
        border-radius: 20px;
    }
}

/* Pass 109: homepage location map layout polish. */
.stitch-port-location__grid {
    align-items: center;
    grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.86fr);
}

.stitch-port-location__content {
    align-self: center;
}

.stitch-port-location__map {
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: clamp(420px, 42vw, 520px);
    padding: 0;
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid rgba(122, 30, 19, 0.12);
    border-radius: 44px;
    box-shadow: 0 30px 80px rgba(27, 28, 26, 0.16);
}

.stitch-port-location__map-frame {
    position: relative;
    inset: auto;
    flex: 1 1 auto;
    min-height: 0;
}

.stitch-port-location__map-frame iframe {
    height: 100%;
    min-height: 0;
}

.stitch-port-location__map-card {
    gap: 6px;
    padding: 18px 22px 20px;
    background:
        linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(249, 239, 224, 0.94));
    border: 0;
    border-top: 1px solid rgba(122, 30, 19, 0.10);
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.stitch-port-location__map-card strong {
    font-size: clamp(1.16rem, 1.35vw, 1.46rem);
}

.stitch-port-location__map-card a {
    justify-self: start;
}

@media (max-width: 1220px) {
    .stitch-port-location__grid {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    }

    .stitch-port-location__map {
        height: 440px;
        border-radius: 34px;
    }
}

@media (max-width: 980px) {
    .stitch-port-location__grid {
        grid-template-columns: 1fr;
    }

    .stitch-port-location__map {
        height: 380px;
    }
}

@media (max-width: 760px) {
    .stitch-port-location__map {
        height: 340px;
        padding: 0;
        border-radius: 28px;
    }

    .stitch-port-location__map-card {
        padding: 16px 18px 18px;
    }
}

/* Pass 109B: forced homepage location markup and map layout. */
.divella-location-section {
    padding-top: clamp(58px, 5vw, 82px);
    padding-bottom: clamp(58px, 5vw, 82px);
    background: #ffffff;
}

.divella-location-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.92fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
}

.divella-location-content {
    min-width: 0;
}

.divella-location-content h2 {
    margin: 0 0 28px;
    color: var(--port-on-surface);
    font-family: var(--port-display);
    font-size: clamp(3.4rem, 6.2vw, 7rem);
    font-weight: 520;
    line-height: 1.05;
    letter-spacing: 0;
}

.divella-location-map-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    height: clamp(440px, 43vw, 520px);
    overflow: hidden;
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid rgba(122, 30, 19, 0.12);
    border-radius: 44px;
    box-shadow: 0 30px 80px rgba(27, 28, 26, 0.16);
}

.divella-location-map-frame {
    flex: 1 1 auto;
    min-height: 0;
    background: var(--port-surface-container);
}

.divella-location-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    border: 0;
    filter: saturate(0.94) contrast(0.98);
}

.divella-location-map-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 18px;
    align-items: center;
    padding: 18px 22px 20px;
    background:
        linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(249, 239, 224, 0.94));
    border-top: 1px solid rgba(122, 30, 19, 0.10);
}

.divella-location-map-footer span {
    grid-column: 1 / -1;
    color: var(--port-primary);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.divella-location-map-footer strong {
    min-width: 0;
    color: var(--port-on-surface);
    font-family: var(--port-display);
    font-size: clamp(1.16rem, 1.35vw, 1.46rem);
    font-weight: 520;
    line-height: 1.2;
}

.divella-location-map-footer a {
    color: var(--port-primary);
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.divella-location-map-footer a:hover,
.divella-location-map-footer a:focus {
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 1220px) {
    .divella-location-grid {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
        gap: clamp(30px, 4vw, 52px);
    }

    .divella-location-content h2 {
        font-size: clamp(3rem, 5.8vw, 5.8rem);
    }

    .divella-location-map-card {
        height: 440px;
        border-radius: 34px;
    }
}

@media (max-width: 980px) {
    .divella-location-grid {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .divella-location-map-card {
        height: 380px;
    }
}

@media (max-width: 760px) {
    .divella-location-content h2 {
        font-size: clamp(2.6rem, 13vw, 4.2rem);
    }

    .divella-location-map-card {
        height: 340px;
        border-radius: 28px;
    }

    .divella-location-map-footer {
        grid-template-columns: 1fr;
        padding: 16px 18px 18px;
    }

    .divella-location-map-footer a {
        white-space: normal;
    }
}

/* Pass 109C: final homepage location section visual polish. */
.divella-location-section {
    padding-top: clamp(64px, 6vw, 96px);
    padding-bottom: clamp(76px, 7vw, 112px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 241, 0.82));
}

.divella-location-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
    gap: clamp(42px, 5vw, 78px);
    align-items: start;
}

.divella-location-content {
    max-width: 760px;
}

.divella-location-content h2 {
    max-width: 680px;
    margin-bottom: 30px;
    font-size: clamp(3.5rem, 4.6vw, 4.5rem);
    line-height: 1.06;
}

.divella-location-content .stitch-port-location__facts {
    gap: 20px;
    margin-bottom: 24px;
}

.divella-location-content .stitch-port-location__facts div {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 24px;
}

.divella-location-content .stitch-port-location__facts span {
    min-height: 68px;
    border-radius: 14px;
}

.divella-location-content .stitch-port-location__facts p {
    font-size: 1.13rem;
    line-height: 1.58;
}

.divella-location-content .stitch-port-location__facts a {
    color: inherit;
    font-weight: inherit;
    text-decoration: none;
}

.divella-location-content .stitch-port-location__facts a:hover,
.divella-location-content .stitch-port-location__facts a:focus {
    color: var(--port-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.divella-location-content .stitch-port-location__actions {
    gap: 10px;
    margin: 22px 0 26px;
}

.divella-location-content .stitch-port-location__actions .stitch-port-button {
    min-height: 46px;
    padding: 12px 16px;
}

.divella-location-content .stitch-port-area-box {
    max-width: 680px;
    padding: clamp(24px, 2.6vw, 34px);
    border-radius: 34px;
    box-shadow: 0 18px 54px rgba(27, 28, 26, 0.07);
}

.divella-location-map-card {
    align-self: start;
    height: clamp(430px, 40vw, 500px);
    margin-top: 8px;
    border-radius: 38px;
    box-shadow: 0 28px 74px rgba(27, 28, 26, 0.14);
}

.divella-location-map-footer {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px clamp(34px, 4vw, 48px) 24px 24px;
}

.divella-location-map-footer span {
    grid-column: auto;
    font-size: 0.72rem;
}

.divella-location-map-footer strong {
    font-size: clamp(1.22rem, 1.5vw, 1.55rem);
}

.divella-location-map-footer a {
    justify-self: start;
    margin-top: 4px;
    padding: 9px 14px;
    color: #ffffff;
    background: var(--port-primary);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(122, 30, 19, 0.18);
    text-decoration: none;
}

.divella-location-map-footer a:hover,
.divella-location-map-footer a:focus {
    color: #ffffff;
    background: #5f160f;
    text-decoration: none;
}

@media (max-width: 1220px) {
    .divella-location-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
        gap: clamp(34px, 4vw, 56px);
    }

    .divella-location-content h2 {
        font-size: clamp(3.15rem, 4.4vw, 4rem);
    }

    .divella-location-map-card {
        height: 440px;
    }
}

@media (max-width: 980px) {
    .divella-location-grid {
        grid-template-columns: 1fr;
    }

    .divella-location-content,
    .divella-location-content h2,
    .divella-location-content .stitch-port-area-box {
        max-width: none;
    }

    .divella-location-map-card {
        height: 360px;
        margin-top: 0;
    }
}

@media (max-width: 760px) {
    .divella-location-section {
        padding-top: 56px;
        padding-bottom: 96px;
    }

    .divella-location-content h2 {
        font-size: clamp(2.38rem, 10.5vw, 2.88rem);
        line-height: 1.08;
    }

    .divella-location-content .stitch-port-location__facts div {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .divella-location-content .stitch-port-location__facts span {
        justify-self: start;
        min-height: 0;
        padding: 9px 12px;
    }

    .divella-location-content .stitch-port-location__actions {
        gap: 10px;
    }

    .divella-location-map-card {
        height: 340px;
        border-radius: 26px;
    }

    .divella-location-map-footer {
        padding: 18px 24px 22px 18px;
    }
}

/* Pass 113: reservation form CTA pairing and floating CTA group. */
.site-header__cta-group,
.stitch-port-final__actions,
.divella-landing-final__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.site-header__cta-group {
    justify-content: flex-end;
}

.site-header__cta--secondary {
    color: var(--port-primary, var(--color-burgundy));
    background: rgba(255, 253, 248, 0.96);
    border-color: var(--port-primary, var(--color-burgundy));
    box-shadow: 0 8px 20px rgba(90, 5, 2, 0.07);
}

.site-header__cta--secondary:hover,
.site-header__cta--secondary:focus,
.site-header__cta--secondary:active {
    color: #ffffff;
    background: var(--port-primary, var(--color-burgundy));
    border-color: var(--port-primary, var(--color-burgundy));
    box-shadow: 0 14px 28px rgba(90, 5, 2, 0.18);
}

.divella-landing-button--outline {
    color: var(--color-burgundy);
    background: #ffffff;
    border-color: rgba(122, 30, 19, 0.24);
    box-shadow: 0 10px 24px rgba(90, 5, 2, 0.07);
}

.floating-reservation-group {
    position: fixed;
    right: max(24px, env(safe-area-inset-right));
    bottom: max(26px, env(safe-area-inset-bottom));
    z-index: 120;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.floating-reservation-group .floating-whatsapp,
.floating-reservation-form {
    position: static;
    right: auto;
    bottom: auto;
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 13px 19px;
    border-radius: 999px;
    font-weight: 780;
    line-height: 1.1;
    text-decoration: none;
    white-space: nowrap;
}

.floating-reservation-form {
    color: var(--port-primary, var(--color-burgundy));
    background: #ffffff;
    border: 1px solid rgba(122, 30, 19, 0.22);
    box-shadow: 0 14px 34px rgba(90, 5, 2, 0.12);
}

.floating-reservation-form:hover,
.floating-reservation-form:focus {
    color: #ffffff;
    background: var(--port-primary, var(--color-burgundy));
}

@media (max-width: 1220px) {
    .site-header__cta-group {
        justify-self: end;
    }
}

@media (max-width: 680px) {
    .site-header__cta-group {
        justify-self: start;
    }

    .site-header__cta-group .site-header__cta {
        width: auto;
        min-height: 36px;
        padding: 8px 11px;
        font-size: 0.8rem;
    }

    .stitch-port-final__actions,
    .divella-landing-final__actions {
        width: 100%;
    }

    .stitch-port-final__actions .stitch-port-button,
    .divella-landing-final__actions .divella-landing-button {
        width: 100%;
    }

    .floating-reservation-group {
        right: max(14px, env(safe-area-inset-right));
        bottom: max(14px, env(safe-area-inset-bottom));
        gap: 8px;
    }

    .floating-reservation-group .floating-whatsapp,
    .floating-reservation-form {
        min-height: 42px;
        padding: 10px 13px;
        font-size: 0.82rem;
    }
}

/* Pass 126: mobile header/content overlap correction. */
@media (max-width: 760px) {
    :root {
        --mobile-header-offset: 172px;
    }

    html {
        scroll-padding-top: var(--mobile-header-offset);
    }

    .stitch-port section[id],
    .stitch-port [id],
    .menu-category-section {
        scroll-margin-top: var(--mobile-header-offset);
    }

    .stitch-port-hero {
        padding-top: var(--mobile-header-offset);
    }

    .menu-page-hero {
        padding-top: var(--mobile-header-offset);
    }

    .divella-action-page--contact,
    .divella-action-page--reservation {
        padding-top: var(--mobile-header-offset);
    }
}

@media (max-width: 420px) {
    :root {
        --mobile-header-offset: 184px;
    }
}
