:root {
    --background: #f7f3eb;
    --surface: #fffdf8;
    --forest: #17372e;
    --forest-dark: #10251f;
    --text: #1d332c;
    --muted: #63716b;
    --terracotta: #b95632;
    --sand: #e9dfca;
    --green-soft: #dfe7d5;
    --blue-soft: #dbe5e5;
    --terracotta-soft: #eadbd3;
    --stone-soft: #e4e0d8;
    --border: rgba(23, 55, 46, 0.12);
    --content-width: 1280px;
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Arial, Helvetica, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background: var(--background);
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--background);
    color: var(--text);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

::selection {
    background: rgba(185, 86, 50, 0.24);
}

.icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 200;
    padding: 10px 14px;
    border-radius: 10px;
    background: white;
    color: var(--forest);
    font-weight: 700;
    transform: translateY(-150%);
    transition: transform 160ms ease;
}

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

:focus-visible {
    outline: 3px solid rgba(185, 86, 50, 0.5);
    outline-offset: 4px;
}

.content-width,
.header-inner,
.footer-inner {
    width: min(var(--content-width), calc(100% - 40px));
    margin: 0 auto;
}

.section-anchor {
    scroll-margin-top: 92px;
}

.loading-message,
.content-error,
.noscript-message {
    width: min(680px, calc(100% - 40px));
    margin: 80px auto;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface);
    text-align: center;
}

.content-error strong {
    display: block;
    color: var(--forest);
    font-size: 20px;
}

.content-error p {
    margin: 8px 0 0;
    color: var(--muted);
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 220;
    border-bottom: 1px solid rgba(23, 55, 46, 0.1);
    background: rgba(247, 243, 235, 0.94);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    min-height: 80px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-mark {
    display: grid;
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
    place-items: center;
    background: transparent;
}

.brand-logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 28px;
    color: #41554d;
    font-size: 14px;
    font-weight: 600;
}

.desktop-nav a {
    transition: color 180ms ease;
}

.desktop-nav a:hover {
    color: var(--terracotta);
}

/* Hero */

.hero {
    padding: 32px 20px 56px;
}

.hero-inner {
    display: grid;
    width: min(var(--content-width), 100%);
    margin: 0 auto;
    align-items: center;
    gap: 36px;
}

.hero-copy {
    position: relative;
    z-index: 1;
    padding: 16px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.58);
    color: #456055;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.eyebrow-icon {
    width: 15px;
    height: 15px;
}

.hero h1,
.section-heading h2,
.section-intro h2,
.shop-panel h2,
.gallery-heading h2,
.about-copy h2 {
    margin: 0;
    color: var(--forest);
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.035em;
}

.hero h1 {
    max-width: 680px;
    margin-top: 20px;
    font-size: 52px;
    font-size: clamp(3.25rem, 7vw, 6.7rem);
    line-height: 0.9;
    letter-spacing: -0.045em;
}

.hero-description {
    max-width: 580px;
    margin: 24px 0 0;
    color: #53635d;
    font-size: 17px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 999px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 700;
    transition: transform 180ms ease, background-color 180ms ease;
}

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

.button-primary {
    background: var(--terracotta);
    color: white;
    box-shadow: 0 10px 28px rgba(185, 86, 50, 0.22);
}

.button-secondary {
    border: 1px solid rgba(23, 55, 46, 0.18);
    background: rgba(255, 255, 255, 0.48);
    color: var(--forest);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.85);
}

.button-arrow,
.location-icon {
    width: 17px;
    height: 17px;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 28px 0 0;
    color: #63716b;
    font-size: 14px;
}

.hero-location .icon {
    color: var(--terracotta);
}

.hero-image-card {
    position: relative;
    min-height: 420px;
    margin: 0;
    overflow: hidden;
    border-radius: 32px;
    background: var(--forest);
    box-shadow: 0 30px 90px rgba(23, 55, 46, 0.2);
}

.hero-image-card > img,
.hero-image-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image-card > img {
    object-fit: cover;
}

.hero-image-shade {
    background: linear-gradient(to top, rgba(16, 37, 31, 0.88), rgba(16, 37, 31, 0) 66%);
}

.hero-image-card figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 24px;
    color: white;
}

.hero-image-card figcaption small,
.hero-image-card figcaption strong {
    display: block;
}

.hero-image-card figcaption small {
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-image-card figcaption strong {
    max-width: 460px;
    margin-top: 8px;
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.12;
}

.camera-badge {
    display: none;
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

/* Shared headings */

.section-kicker {
    margin: 0;
    color: var(--terracotta);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 680px;
    margin-bottom: 32px;
}

.section-heading h2,
.section-intro h2,
.shop-panel h2,
.gallery-heading h2,
.about-copy h2 {
    margin-top: 10px;
    font-size: 42px;
    font-size: clamp(2.6rem, 5vw, 3.2rem);
    line-height: 1.02;
}

.section-intro > p:last-of-type {
    max-width: 520px;
    margin: 20px 0 0;
    color: var(--muted);
    line-height: 1.72;
}

/* Area cards */

.areas {
    padding: 56px 0 80px;
}

.area-grid {
    display: grid;
    gap: 16px;
}

.area-card {
    display: flex;
    min-height: 270px;
    flex-direction: column;
    border: 1px solid rgba(23, 55, 46, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.66);
    padding: 24px;
    box-shadow: 0 12px 36px rgba(23, 55, 46, 0.06);
    transition: transform 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

.area-card:hover {
    transform: translateY(-4px);
    background: white;
    box-shadow: 0 18px 44px rgba(23, 55, 46, 0.1);
}

.area-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 16px;
}

.area-icon .icon {
    width: 21px;
    height: 21px;
}

.area-icon-green { background: var(--green-soft); color: #244637; }
.area-icon-sand { background: var(--sand); color: #674c2f; }
.area-icon-blue { background: var(--blue-soft); color: #2e5252; }
.area-icon-terracotta { background: var(--terracotta-soft); color: #76472f; }
.area-icon-stone { background: var(--stone-soft); color: #4c4a43; }

.area-card h3 {
    margin: 28px 0 0;
    color: var(--forest);
    font-size: 20px;
}

.area-card p {
    margin: 8px 0 0;
    color: #68746f;
    font-size: 14px;
    line-height: 1.65;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 24px;
    color: var(--terracotta);
    font-size: 14px;
    font-weight: 700;
}

.card-arrow {
    width: 16px;
    height: 16px;
    transition: transform 180ms ease;
}

.area-card:hover .card-arrow {
    transform: translateX(4px);
}

/* Food */

.food {
    background: var(--forest);
    color: white;
    padding: 64px 20px;
}

.food-inner,
.members-inner {
    display: grid;
    width: min(var(--content-width), 100%);
    margin: 0 auto;
    gap: 40px;
}

.section-intro-dark .section-kicker {
    color: #e7a782;
}

.section-intro-dark h2 {
    color: white;
}

.section-intro-dark > p:last-of-type {
    color: rgba(255, 255, 255, 0.66);
}

.menu-list {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.055);
    padding: 0 24px;
}

.menu-note {
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 20px 0 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.55;
}

.menu-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
}

.menu-item + .menu-item {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-item h3 {
    margin: 0;
    font-size: 16px;
}

.menu-item p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 14px;
    line-height: 1.6;
}

.menu-item strong {
    flex: 0 0 auto;
    color: #f0b18c;
}

/* Shop */

.shop {
    padding: 64px 0;
}

.shop-panel {
    display: grid;
    gap: 32px;
    overflow: hidden;
    border-radius: 32px;
    background: var(--sand);
    padding: 28px;
}

.shop-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.shop-main-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 16px;
    background: var(--forest);
    color: white;
}

.shop-main-icon .icon {
    width: 21px;
    height: 21px;
}

.shop-copy .section-kicker {
    margin-top: 30px;
    color: #8b5435;
}

.shop-description {
    max-width: 560px;
    margin: 20px 0 0;
    color: #5f6259;
    line-height: 1.72;
}

.shop-image-note {
    max-width: 560px;
    margin: 12px 0 0;
    color: #75776f;
    font-size: 13px;
    line-height: 1.55;
}

.shop-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 34px 0 0;
    color: var(--forest);
    font-size: 14px;
    font-weight: 700;
}

.note-icon {
    width: 17px;
    height: 17px;
    color: var(--terracotta);
}

.product-grid {
    display: grid;
    gap: 12px;
}

.product-category + .product-category {
    margin-top: 34px;
}

.product-category-title {
    margin: 0 0 14px;
    color: #7d5138;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.45;
    text-transform: uppercase;
}

.product-card {
    display: flex;
    width: 100%;
    font: inherit;
    text-align: left;
    cursor: pointer;
    min-height: 100px;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(23, 55, 46, 0.1);
    border-radius: 22px;
    background: rgba(255, 250, 240, 0.72);
    padding: 12px;
    transition: transform 180ms ease, background-color 180ms ease;
}

.product-card:hover {
    transform: translateY(-2px);
    background: #fffaf0;
}

.product-card:focus-visible {
    outline: 3px solid var(--terracotta);
    outline-offset: 3px;
}

.product-media {
    width: 76px;
    height: 76px;
    flex: 0 0 auto;
    overflow: hidden;
    border: 1px solid rgba(23, 55, 46, 0.08);
    border-radius: 17px;
    background: white;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.product-details {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.product-name {
    margin: 0;
    font-weight: 700;
    color: var(--forest);
    font-size: 16px;
    line-height: 1.35;
}

.product-card strong {
    color: var(--terracotta);
    font-size: 15px;
    white-space: nowrap;
}

/* Members */

.members {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.46);
    padding: 64px 20px;
}

.document-list {
    display: grid;
    gap: 16px;
}

.document-card {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(23, 55, 46, 0.1);
    border-radius: 24px;
    background: var(--surface);
    padding: 20px;
    box-shadow: 0 12px 34px rgba(23, 55, 46, 0.05);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.document-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(23, 55, 46, 0.09);
}

.document-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 16px;
}

.document-icon-green {
    background: var(--forest);
    color: white;
}

.document-icon-sand {
    background: var(--sand);
    color: #6b5035;
}

.document-copy {
    min-width: 0;
    flex: 1 1 auto;
}

.document-copy strong,
.document-copy small {
    display: block;
}

.document-copy strong {
    color: var(--forest);
}

.document-copy small {
    margin-top: 4px;
    color: #718079;
    font-size: 14px;
}

.download-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    color: var(--terracotta);
    transition: transform 180ms ease;
}

.document-card:hover .download-icon {
    transform: translateY(3px);
}

/* Gallery */

.gallery {
    padding: 64px 0;
}

.gallery-heading {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
}

.gallery-heading > p {
    max-width: 420px;
    margin: 0;
    color: #6a7771;
    font-size: 14px;
    line-height: 1.65;
}

.gallery-grid {
    display: grid;
    grid-auto-rows: 220px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 0;
    border-radius: 24px;
    background: #d7d9d3;
    padding: 0;
    color: white;
    cursor: zoom-in;
    font: inherit;
    text-align: left;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 58px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
    color: white;
    font-size: 14px;
    font-weight: 700;
}

/* About */

.about {
    padding: 24px 0 112px;
}

.about-panel {
    display: grid;
    overflow: hidden;
    border-radius: 32px;
    background: var(--terracotta);
    color: white;
}

.about-copy {
    padding: 32px;
}

.about-copy .section-kicker {
    color: rgba(255, 255, 255, 0.62);
}

.about-copy h2 {
    color: white;
}

.about-copy > p:not(.section-kicker) {
    max-width: 600px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.72;
}

.about-location {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
    font-size: 14px;
    font-weight: 700;
}

.about-location strong {
    display: block;
}

.about-location address {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.55;
}

.about-location > span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.about-location .icon {
    width: 17px;
    height: 17px;
}

.about-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.about-legal-links a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    padding: 9px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    transition: background-color 180ms ease, transform 180ms ease;
}

.about-legal-links a:hover,
.about-legal-links a:focus-visible {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.about-legal-arrow {
    width: 16px;
    height: 16px;
}

.about-image {
    min-height: 320px;
}

.about-install {
    margin-top: 28px;
    max-width: 600px;
}

.install-button {
    max-width: 100%;
    min-height: 48px;
    white-space: normal;
    text-align: left;
    padding: 12px 24px;
    background: #fff;
}

.install-button:focus-visible { outline-color: #fff; }

.install-button .icon { flex-shrink: 0; }
.install-button:disabled { cursor: default; opacity: 0.8; transform: none; }
.about-install > p { margin: 12px 0 0; font-size: 1rem; line-height: 1.6; }

.install-help {
    margin-top: 20px;
    padding: 20px;
    border-radius: 18px;
    background: var(--cream, #f7f3eb);
    color: #24332e;
    font-size: 1rem;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.install-help h3 { margin: 0; font-size: 1.125rem; }
.install-help ol { margin: 12px 0; padding-left: 24px; }
.install-help li + li { margin-top: 8px; }
.install-help p { margin: 12px 0 0; }

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Legal information */

.legal-page {
    min-height: 100%;
    padding: 72px 0 48px;
}

.legal-shell {
    width: min(980px, calc(100% - 32px));
}

.legal-heading {
    max-width: 720px;
    margin-bottom: 28px;
}

.legal-heading h2 {
    margin: 6px 0 10px;
    color: var(--forest);
    font-family: var(--serif);
    font-size: clamp(2.2rem, 7vw, 4.5rem);
    line-height: 1;
}

.legal-heading > p:last-child {
    margin: 0;
    color: var(--muted);
}

.legal-grid {
    display: grid;
    gap: 16px;
}

.legal-card {
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
    padding: 22px;
    box-shadow: 0 12px 36px rgba(16, 37, 31, 0.06);
}

.legal-card h3 {
    margin: 0 0 14px;
    color: var(--forest);
    font-family: var(--serif);
    font-size: 1.35rem;
    line-height: 1.25;
}

.legal-card p,
.legal-card address,
.legal-card ul,
.legal-card dl {
    margin: 0;
}

.legal-card p + p,
.legal-card p + address,
.legal-card p + .legal-list {
    margin-top: 12px;
}

.legal-card address {
    font-style: normal;
}

.legal-list {
    padding-left: 20px;
}

.legal-list li + li {
    margin-top: 8px;
}

.legal-contact,
.legal-data {
    display: grid;
    gap: 12px;
}

.legal-placeholder-note {
    border-left: 4px solid var(--terracotta);
    border-radius: 0 10px 10px 0;
    background: var(--terracotta-soft);
    padding: 12px 14px;
    color: var(--forest);
}

.legal-placeholder-note + .legal-tax-data {
    margin-top: 18px;
}

.legal-contact div,
.legal-data div {
    display: grid;
    gap: 2px;
}

.legal-contact dt,
.legal-data dt {
    color: var(--muted);
    font-size: 0.875rem;
    font-weight: 700;
}

.legal-contact dd,
.legal-data dd {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
}

.legal-contact a,
.footer-legal a,
.privacy-source-link,
.privacy-credits a {
    color: var(--terracotta);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.privacy-heading .privacy-updated,
.privacy-updated {
    color: var(--terracotta);
    font-weight: 700;
}

.privacy-card p {
    max-width: 78ch;
    line-height: 1.7;
}

.privacy-card p + p,
.privacy-card address + p,
.privacy-card address + .privacy-representatives,
.privacy-card .privacy-list + p {
    margin-top: 14px;
}

.privacy-representatives {
    margin-top: 14px;
}

.privacy-contact {
    margin-top: 18px;
}

.privacy-list {
    max-width: 78ch;
    margin: 14px 0 0;
    padding-left: 22px;
}

.privacy-list li + li {
    margin-top: 8px;
}

.privacy-credits {
    border-color: rgba(185, 86, 50, 0.24);
    background: var(--terracotta-soft);
}

.legal-credits {
    border-color: rgba(185, 86, 50, 0.24);
    background: var(--terracotta-soft);
}

.legal-credits a {
    color: var(--terracotta);
    font-weight: 700;
    overflow-wrap: anywhere;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

/* NIGHTKOM-style content window */

body.panel-open {
    overflow: hidden;
}

.panel-backdrop {
    position: fixed;
    inset: 0;
    z-index: 170;
    background: rgba(16, 37, 31, 0.54);
    opacity: 0;
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    transition: opacity 220ms ease;
}

.panel-backdrop.is-open {
    opacity: 1;
}

.panel-backdrop[hidden],
.info-window[hidden] {
    display: none;
}

.info-window {
    position: fixed;
    top: 92px;
    right: 12px;
    bottom: 88px;
    left: 12px;
    z-index: 180;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 28px;
    background: var(--background);
    box-shadow: 0 28px 90px rgba(16, 37, 31, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px) scale(0.985);
    transition: opacity 220ms ease, transform 220ms ease;
}

.info-window.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.info-content {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
}

.info-content > .section-anchor {
    min-height: 100%;
    scroll-margin-top: 0;
}

.info-content .about {
    padding-bottom: 48px;
}

.info-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 4;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(23, 55, 46, 0.14);
    border-radius: 50%;
    background: rgba(255, 253, 248, 0.94);
    color: var(--forest);
    cursor: pointer;
    font-size: 27px;
    line-height: 1;
    box-shadow: 0 8px 24px rgba(16, 37, 31, 0.16);
    transition: transform 180ms ease, background-color 180ms ease;
}

.info-close:hover,
.info-close:focus-visible {
    background: white;
    transform: scale(1.06);
}

.image-viewer {
    position: absolute;
    inset: 0;
    z-index: 12;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: inherit;
    background: rgba(7, 12, 10, 0.96);
    padding: 68px 18px 20px;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.985);
    transition: opacity 180ms ease, transform 180ms ease;
}

.image-viewer[hidden] {
    display: none;
}

.image-viewer.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.image-viewer-figure {
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.image-viewer-figure img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(100% - 38px);
    border-radius: 16px;
    object-fit: contain;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.image-viewer-figure figcaption {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

.image-viewer-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 14;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    cursor: pointer;
    font-size: 27px;
    line-height: 1;
    transition: transform 180ms ease, background-color 180ms ease;
}

.image-viewer-close:hover,
.image-viewer-close:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.06);
}

/* Product details: large image, with description and price underneath. */
.info-close[hidden] {
    display: none;
}

.product-viewer {
    background: var(--background);
    align-items: start;
    padding: 66px 18px 18px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.product-viewer .image-viewer-figure {
    display: grid;
    grid-template-rows: minmax(140px, 1fr) auto;
    width: min(100%, 760px);
    min-height: min-content;
    align-items: stretch;
    gap: 18px;
}

.product-viewer .image-viewer-figure img {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 100%;
    padding: 12px;
    background: white;
    box-shadow: none;
}

.product-viewer .image-viewer-figure figcaption {
    color: var(--forest);
    text-align: left;
    font-weight: 400;
    padding: 0 4px 4px;
}

.product-viewer h2 {
    margin: 0 0 8px;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.25;
}

.product-viewer-description {
    margin: 0 0 12px;
    font-size: 1rem;
    line-height: 1.5;
}

.product-viewer-price {
    display: block;
    color: var(--terracotta);
    font-size: 1.5rem;
}

.product-viewer-note {
    margin: 10px 0 0;
    color: #5f6259;
    font-size: 0.8125rem;
    line-height: 1.5;
}

.product-viewer .image-viewer-close {
    color: var(--forest);
    border-color: var(--border);
    background: white;
}

/* Footer and mobile navigation */

.site-footer {
    border-top: 1px solid var(--border);
    padding: 28px 0 112px;
    color: #6a7771;
    font-size: 13px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.footer-inner p {
    margin: 0;
}

.footer-copy {
    display: grid;
    gap: 6px;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.mobile-nav {
    position: fixed;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    left: 12px;
    z-index: 230;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: rgba(23, 55, 46, 0.96);
    padding: 8px 4px;
    color: white;
    box-shadow: 0 20px 60px rgba(16, 37, 31, 0.3);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.mobile-nav a {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border-radius: 12px;
    padding: 7px 2px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 700;
    transition: background-color 180ms ease, color 180ms ease;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.mobile-nav-icon {
    width: 17px;
    height: 17px;
}

@media (min-width: 600px) {
    .content-width,
    .header-inner,
    .footer-inner {
        width: min(var(--content-width), calc(100% - 64px));
    }

    .camera-badge {
        display: grid;
    }

    .hero {
        padding: 48px 32px 80px;
    }

    .hero-image-card {
        min-height: 560px;
    }

    .hero-image-card figcaption {
        padding: 36px;
    }

    .hero-image-card figcaption strong {
        font-size: 38px;
    }

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

    .menu-list {
        padding: 0 32px;
    }

    .shop-panel,
    .about-copy {
        padding: 40px;
    }

    .document-card {
        padding: 24px;
    }

    .gallery-heading {
        flex-direction: row;
        align-items: flex-end;
    }

    .gallery-featured {
        grid-row: span 2;
    }

    .footer-inner {
        flex-direction: row;
        align-items: center;
    }

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

    .legal-card-wide {
        grid-column: 1 / -1;
    }
}

@media (min-width: 768px) {
    .area-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .area-card {
        grid-column: span 2;
    }

    .area-card-wide {
        grid-column: span 3;
    }

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

    .gallery-item {
        grid-column: span 2;
    }

    .gallery-featured {
        grid-row: span 2;
    }

}

@media (min-width: 1024px) {
    .header-inner {
        padding: 8px 0 12px;
    }

    .section-anchor {
        scroll-margin-top: 120px;
    }

    .desktop-nav {
        display: flex;
    }

    .info-window {
        top: 124px;
        right: auto;
        bottom: 24px;
        left: 50%;
        width: min(92vw, 1320px);
        transform: translate(-50%, 14px) scale(0.985);
    }

    .info-window.is-open {
        transform: translate(-50%, 0) scale(1);
    }

    .mobile-nav {
        display: none;
    }

    .about,
    .site-footer {
        padding-bottom: 64px;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 56px;
    }

    .hero-copy {
        padding: 40px 0;
    }

    .food,
    .members {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .food-inner {
        grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
        gap: 80px;
    }

    .shop {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .shop-panel {
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
        padding: 56px;
    }

    .members-inner {
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
        gap: 80px;
    }

    .gallery {
        padding-top: 96px;
        padding-bottom: 96px;
    }

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

    .about-copy {
        padding: 56px;
    }
}

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

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