:root {
  --forest: #0c493c;
  --leaf: #08765d;
  --leaf-soft: #dceee2;
  --paper: #f7faf7;
  --surface: #ffffff;
  --ink: #102f29;
  --muted: #4d655d;
  --line: #cbded1;
  --radius: 12px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-move: cubic-bezier(0.77, 0, 0.175, 1);
  --z-header: 40;
  --z-drawer-scrim: 45;
  --z-drawer: 50;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Segoe UI", Arial, sans-serif; font-size: 16px; line-height: 1.55; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, select { font: inherit; }
button, a, select { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, select:focus-visible { outline: 3px solid #d7a21e; outline-offset: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 30; padding: 10px 14px; color: var(--surface); background: var(--forest); transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }
.section-shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-header); display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 74px; padding: 10px max(24px, calc((100vw - 1320px) / 2)); background: var(--forest); border-bottom: 1px solid rgb(255 255 255 / 18%); box-shadow: 0 0 0 rgb(0 0 0 / 0%); transition: background .2s var(--ease-out), box-shadow .2s var(--ease-out), border-color .2s var(--ease-out); }
.site-header.is-scrolled { background: rgb(12 73 60 / 97%); border-bottom-color: rgb(255 255 255 / 28%); box-shadow: 0 8px 18px rgb(3 35 28 / 18%); }
.brand { display: flex; align-items: center; gap: 9px; min-height: 44px; color: var(--surface); font-size: 13px; font-weight: 800; line-height: 1.04; letter-spacing: -.01em; }
.brand img { width: 43px; height: 43px; object-fit: cover; border-radius: 50%; transition: transform .2s var(--ease-out); }
.site-header.is-scrolled .brand img { transform: scale(.9); }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); font-size: 14px; font-weight: 700; }
.desktop-nav a:not(.nav-phone) { color: #dceee2; transition: color .18s ease; }
.nav-phone { padding: 8px 12px; color: var(--forest); background: var(--surface); border-radius: 8px; white-space: nowrap; }
.nav-tools { display: flex; align-items: center; gap: 12px; }
.language-control { position: relative; }
.language-toggle { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-width: 78px; height: 44px; padding: 0 12px; color: var(--forest); background: var(--surface); border: 1px solid rgb(255 255 255 / 45%); border-radius: 8px; font-weight: 800; cursor: pointer; }
.language-chevron { width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .18s ease; }
.language-toggle[aria-expanded="true"] .language-chevron { transform: rotate(225deg) translate(-2px, -2px); }
.language-menu { position: absolute; top: calc(100% + 10px); right: 0; z-index: 30; width: 230px; padding: 12px; color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 20px rgb(5 53 43 / 13%); opacity: 0; pointer-events: none; transform: translateY(-6px) scale(.98); transform-origin: top right; transition: opacity .18s var(--ease-out), transform .18s var(--ease-out); }
.language-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.language-menu-head { display: none; }
.language-options { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.language-options button { display: flex; align-items: center; justify-content: space-between; min-height: 42px; padding: 8px 9px; color: var(--ink); background: transparent; border: 1px solid transparent; border-radius: 7px; font-size: 14px; font-weight: 700; text-align: left; cursor: pointer; }
.language-options button:hover, .language-options button[aria-pressed="true"] { color: var(--forest); background: var(--leaf-soft); border-color: rgb(20 89 76 / 18%); }
.language-options button span:last-child { color: var(--leaf); font-size: 12px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px 8px; color: var(--forest); background: var(--surface); border: 1px solid rgb(255 255 255 / 45%); border-radius: 8px; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px auto; background: currentColor; }
.language-toggle, .menu-toggle, .close-menu, .close-language, .lightbox-close, .lightbox-arrow, .gallery-item, .social-icon { transition: transform .14s var(--ease-out), color .18s ease, background .18s ease, border-color .18s ease; }
.language-toggle:active, .menu-toggle:active, .close-menu:active, .close-language:active, .lightbox-close:active, .lightbox-arrow:active, .gallery-item:active, .social-icon:active, .nav-phone:active { transform: scale(.97); }

.mobile-menu { position: fixed; inset: 0 0 0 auto; z-index: var(--z-drawer); width: min(88vw, 390px); padding: 24px; color: var(--ink); background: var(--paper); transform: translateX(104%); transition: transform .26s var(--ease-out); }
.mobile-menu.is-open { transform: translateX(0); }
.drawer-scrim { display: none; }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; color: var(--forest); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.close-menu { display: grid; place-items: center; width: 44px; height: 44px; color: var(--forest); background: var(--surface); border: 1px solid var(--line); border-radius: 8px; font-size: 28px; line-height: 1; cursor: pointer; }
.mobile-menu nav { display: grid; gap: 4px; margin-top: 52px; }
.mobile-menu nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 29px; font-weight: 760; line-height: 1.15; letter-spacing: -.03em; }
.social-text-link { display: inline-block; margin-top: 38px; color: var(--leaf); font-weight: 750; }

.hero { position: relative; min-height: max(680px, 100dvh); overflow: hidden; color: var(--surface); background: var(--forest); }
.hero picture, .hero-image { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center 62%; transform: scale(1.055); animation: hero-image-in .72s var(--ease-out) both; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgb(0 0 0 / 68%) 0%, rgb(0 0 0 / 36%) 48%, rgb(0 0 0 / 4%) 100%); }
.hero-copy { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: end; width: min(1180px, calc(100% - 48px)); min-height: max(680px, 100dvh); margin: 0 auto; padding: 120px 0 58px; }
.hero-copy > * { opacity: 0; transform: translateY(18px); animation: hero-copy-in .42s var(--ease-out) forwards; }
.hero-copy > :nth-child(1) { animation-delay: 100ms; }
.hero-copy > :nth-child(2) { animation-delay: 155ms; }
.hero-copy > :nth-child(3) { animation-delay: 215ms; }
.hero-copy > :nth-child(4) { animation-delay: 275ms; }
.hero-kicker, .eyebrow { margin: 0 0 14px; color: var(--leaf); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-kicker { color: #d7f1e0; }
.hero h1 { max-width: 650px; margin: 0; font-size: clamp(52px, 6vw, 88px); line-height: .99; letter-spacing: -.035em; text-wrap: balance; }
.hero-summary { max-width: 535px; margin: 20px 0 0; font-size: clamp(17px, 1.6vw, 20px); line-height: 1.5; text-wrap: pretty; }
.hero-actions, .visit-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 18px; border: 1px solid transparent; border-radius: 8px; font-weight: 760; line-height: 1.2; text-align: center; transition: transform .16s var(--ease-out), background .18s ease, border-color .18s ease, box-shadow .18s ease; white-space: nowrap; }
.button:active { transform: scale(.97); }
.button-primary, .button-light { color: var(--forest); background: #f5fbf5; }
.button-ghost { color: var(--surface); background: rgb(255 255 255 / 12%); border-color: rgb(255 255 255 / 70%); }
.button-dark { color: var(--surface); background: var(--forest); }
.button-outline { color: var(--forest); background: transparent; border-color: var(--forest); }

.about { display: grid; grid-template-columns: minmax(0, .95fr) minmax(330px, .8fr); align-items: center; gap: clamp(56px, 9vw, 142px); padding-block: clamp(88px, 11vw, 148px); }
.about-copy h2, .section-heading h2, .gallery-heading h2, .visit-details h2 { max-width: 720px; margin: 0; color: var(--forest); font-size: clamp(37px, 4.1vw, 64px); line-height: 1.04; letter-spacing: -.035em; text-wrap: balance; }
.about-copy h2 { font-size: clamp(46px, 5.2vw, 78px); }
.about-copy > p:not(.eyebrow) { max-width: 610px; margin: 26px 0 0; color: var(--muted); font-size: 21px; line-height: 1.6; text-wrap: pretty; }
.text-link { display: inline-block; margin-top: 28px; color: var(--leaf); font-weight: 800; }
.about-figure { margin: 0; }
.about-figure img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; object-position: center; border-radius: var(--radius); }

.menu-section { padding-bottom: clamp(88px, 11vw, 148px); }
.section-heading { max-width: 710px; }
.section-heading > p:not(.eyebrow), .gallery-heading p { max-width: 600px; margin: 18px 0 0; color: var(--muted); font-size: 17px; text-wrap: pretty; }
.menu-grid { display: grid; grid-template-columns: 1.16fr 1fr .84fr; gap: 38px; margin: 48px 0 34px; }
.menu-group { padding-top: 18px; border-top: 3px solid var(--leaf); }
.menu-group h3 { margin: 0 0 21px; color: var(--forest); font-size: 22px; letter-spacing: -.02em; }
.menu-item + .menu-item { margin-top: 24px; }
.menu-item-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; font-weight: 760; }
.menu-item-top span:first-child, .menu-item p, .review blockquote, .reviews-heading, .about-copy, .visit-details { min-width: 0; overflow-wrap: anywhere; }
.menu-item-top span:last-child { color: var(--leaf); white-space: nowrap; }
.menu-item p { max-width: 38ch; margin: 5px 0 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
@media (min-width: 821px) {
  .menu-group .menu-item { min-height: 104px; }
  .menu-group .menu-item + .menu-item { margin-top: 0; }
}

.gallery-section { padding-bottom: clamp(88px, 11vw, 148px); }
.gallery-heading { max-width: 650px; margin-bottom: 40px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.gallery-item { width: 100%; padding: 0; overflow: hidden; background: transparent; border: 0; border-radius: var(--radius); cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .28s var(--ease-out), filter .28s ease; }
.gallery-item.square { aspect-ratio: 3 / 4; }
.gallery-item.portrait { aspect-ratio: 3 / 4; }
.gallery-item.landscape { grid-column: span 2; aspect-ratio: 16 / 9; }

.reviews-section { display: grid; grid-template-columns: minmax(300px, .92fr) minmax(0, 2.28fr); gap: clamp(44px, 6vw, 78px); align-items: start; padding-block: clamp(60px, 7vw, 92px); border-top: 1px solid var(--line); }
.reviews-heading { max-width: 420px; margin: 0; }
.reviews-heading h2 { max-width: 720px; margin: 0; color: var(--forest); font-size: clamp(37px, 4.1vw, 64px); line-height: 1.04; letter-spacing: -.035em; text-wrap: balance; }
.reviews-heading p { max-width: 600px; margin: 18px 0 0; color: var(--muted); font-size: 17px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.review { display: flex; flex-direction: column; min-height: 278px; margin: 0; padding-top: 18px; border-top: 3px solid var(--leaf); }
.review-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; color: var(--muted); font-size: 13px; }
.review-stars { color: #a76f00; font-size: 16px; letter-spacing: .05em; }
.review blockquote { margin: 24px 0 auto; color: var(--ink); font-size: 20px; font-weight: 650; line-height: 1.42; text-wrap: pretty; }
.review figcaption { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 30px; color: var(--forest); font-size: 14px; font-weight: 800; }
.review figcaption a { color: var(--leaf); font-size: 13px; white-space: nowrap; }

.visit-section { display: grid; grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr); gap: clamp(42px, 7vw, 106px); align-items: center; padding-block: clamp(88px, 11vw, 148px); border-top: 1px solid var(--line); }
.visit-details address { margin: 27px 0 18px; color: var(--ink); font-size: 18px; font-style: normal; line-height: 1.65; }
.contact-link { color: var(--leaf); font-size: 20px; font-weight: 800; }
.hours-block { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); }
.hours-label { display: block; color: var(--forest); font-size: 14px; font-weight: 800; letter-spacing: .03em; }
.hours-note { max-width: 370px; margin: 7px 0 0; color: var(--muted); }
.map-frame { height: 500px; overflow: hidden; border-radius: var(--radius); background: var(--leaf-soft); }
.map-frame iframe { display: block; width: 100%; height: 100%; border: 0; }

.site-footer { display: grid; grid-template-columns: minmax(240px, 1.35fr) minmax(105px, .48fr) minmax(125px, .5fr) auto; gap: 48px; align-items: start; padding: 56px max(24px, calc((100vw - 1180px) / 2)); color: #eaf5ec; background: var(--forest); }
.footer-brand { font-size: 26px; font-weight: 800; letter-spacing: -.03em; }
.site-footer p { max-width: 335px; margin: 10px 0 0; color: #c6ddce; }
.footer-label { margin: 0 0 14px !important; color: #9fcdb0 !important; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #eaf5ec; font-weight: 700; }
.social-icons { display: flex; gap: 10px; }
.social-icon { display: grid; width: 44px; height: 44px; place-items: center; color: #eaf5ec; border: 1px solid rgb(234 245 236 / 58%); border-radius: 50%; transition: color .18s ease, background .18s ease, transform .18s ease; }
.social-icon svg { width: 20px; height: 20px; fill: currentColor; stroke: currentColor; stroke-width: 1.6; }
.social-icon:first-child svg { fill: none; }
.rating-link { align-self: start; justify-self: end; margin-top: 10px; }
.rating-link img { width: min(270px, 100%); height: auto; }

.lightbox { width: 100vw; max-width: none; height: 100dvh; max-height: none; padding: 0; color: var(--surface); background: rgb(3 24 19 / 96%); border: 0; }
.lightbox[open] { animation: lightbox-in .24s var(--ease-out) both; }
.lightbox.is-closing { opacity: 0; transform: scale(.985); transition: opacity .16s var(--ease-out), transform .16s var(--ease-out); }
.lightbox::backdrop { background: rgb(3 24 19 / 86%); animation: backdrop-in .2s var(--ease-out) both; }
.lightbox-inner { position: relative; display: grid; grid-template-columns: 56px minmax(0, 1fr) 56px; align-items: center; width: min(1280px, 100%); height: 100%; margin: auto; padding: 72px 20px 30px; }
.lightbox figure { display: grid; justify-items: center; gap: 12px; min-width: 0; margin: 0; }
.lightbox figure img { max-width: 100%; max-height: calc(100dvh - 145px); object-fit: contain; }
.lightbox figcaption { color: #d8e8dc; }
.lightbox-close, .lightbox-arrow { display: grid; place-items: center; color: var(--surface); background: rgb(255 255 255 / 8%); border: 1px solid rgb(255 255 255 / 55%); border-radius: 8px; cursor: pointer; }
.lightbox-close { position: absolute; top: 20px; right: 22px; width: 44px; height: 44px; font-size: 29px; }
.lightbox-arrow { width: 44px; height: 44px; font-size: 24px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .32s var(--ease-out), transform .32s var(--ease-out); transition-delay: var(--reveal-delay, 0ms); }
.reveal.reveal-clip { transform: none; clip-path: inset(0 0 12% 0); transition: opacity .36s var(--ease-out), clip-path .36s var(--ease-out); }
.reveal.is-revealed { opacity: 1; transform: translateY(0); clip-path: inset(0); }

@keyframes hero-image-in { from { clip-path: inset(0 0 7% 0); transform: scale(1.075); } to { clip-path: inset(0); transform: scale(1.055); } }
@keyframes hero-copy-in { to { opacity: 1; transform: translateY(0); } }
@keyframes lightbox-in { from { opacity: 0; transform: scale(.985); } to { opacity: 1; transform: scale(1); } }
@keyframes backdrop-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes menu-item-in { to { opacity: 1; transform: translateX(0); } }

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:not(.nav-phone):hover { color: var(--surface); }
  .button:hover { transform: translateY(-2px); box-shadow: 0 5px 12px rgb(3 45 35 / 13%); }
  .gallery-item:hover img { transform: scale(1.035); filter: brightness(1.05); }
  .social-icon:hover { color: var(--forest); background: #eaf5ec; transform: translateY(-2px); }
  .text-link, .footer-links a, .review figcaption a, .social-text-link { text-decoration-line: underline; text-decoration-color: transparent; text-underline-offset: 4px; transition: color .18s ease, text-decoration-color .18s ease; }
  .text-link:hover, .footer-links a:hover, .review figcaption a:hover, .social-text-link:hover { text-decoration-color: currentColor; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .hero-image, .hero-copy > * { animation: none; opacity: 1; transform: none; clip-path: none; }
  .reveal { transform: none; clip-path: none; transition: opacity .14s ease; }
  .reveal.is-revealed { opacity: 1; }
  .mobile-menu, .language-menu, .lightbox.is-closing { transition-duration: .12s !important; }
}

@media (forced-colors: active) {
  button:focus-visible, a:focus-visible { outline: 3px solid Highlight; outline-offset: 3px; }
  .button, .language-toggle, .menu-toggle, .close-menu, .close-language, .lightbox-close, .lightbox-arrow { border: 1px solid ButtonText; }
}

@media (max-width: 820px) {
  .site-header { height: 68px; padding: 8px 16px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .brand { font-size: 12px; }
  .brand img { width: 42px; height: 42px; }
  .drawer-scrim { position: fixed; inset: 0; z-index: var(--z-drawer-scrim); display: block; padding: 0; background: rgb(3 35 28 / 38%); border: 0; opacity: 0; pointer-events: none; transition: opacity .2s var(--ease-out); }
  .drawer-scrim.is-active { opacity: 1; pointer-events: auto; }
  .language-scrim { z-index: calc(var(--z-header) - 1); }
  .language-menu { position: fixed; inset: 0 0 0 auto; z-index: calc(var(--z-header) + 1); width: min(88vw, 390px); padding: 24px; background: var(--paper); border: 0; border-radius: 0; box-shadow: none; opacity: 1; pointer-events: none; transform: translateX(104%); transition: transform .26s var(--ease-out); }
  .language-menu.is-open { pointer-events: auto; transform: translateX(0); }
  .language-menu-head { display: flex; align-items: center; justify-content: space-between; color: var(--forest); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
  .close-language { display: grid; place-items: center; width: 44px; height: 44px; color: var(--forest); background: var(--surface); border: 1px solid var(--line); border-radius: 8px; font-size: 28px; line-height: 1; cursor: pointer; }
  .language-options { grid-template-columns: 1fr; gap: 4px; margin-top: 52px; }
  .language-options button { min-height: 58px; padding: 14px 0; border-width: 0 0 1px; border-radius: 0; border-color: var(--line); font-size: 27px; letter-spacing: -.03em; }
  .language-options button:hover, .language-options button[aria-pressed="true"] { background: transparent; border-color: var(--line); }
  .language-options button[aria-pressed="true"] { color: var(--leaf); }
  .language-options button span:last-child { font-size: 14px; }
  .mobile-menu.is-open nav a, .language-menu.is-open .language-options button { opacity: 0; transform: translateX(10px); animation: menu-item-in .24s var(--ease-out) forwards; }
  .mobile-menu.is-open nav a:nth-child(1), .language-menu.is-open .language-options button:nth-child(1) { animation-delay: 35ms; }
  .mobile-menu.is-open nav a:nth-child(2), .language-menu.is-open .language-options button:nth-child(2) { animation-delay: 75ms; }
  .mobile-menu.is-open nav a:nth-child(3), .language-menu.is-open .language-options button:nth-child(3) { animation-delay: 115ms; }
  .mobile-menu.is-open nav a:nth-child(4), .language-menu.is-open .language-options button:nth-child(4) { animation-delay: 155ms; }
  .language-menu.is-open .language-options button:nth-child(5) { animation-delay: 195ms; }
  .language-menu.is-open .language-options button:nth-child(6) { animation-delay: 235ms; }
  .language-menu.is-open .language-options button:nth-child(7) { animation-delay: 275ms; }
  .language-menu.is-open .language-options button:nth-child(8) { animation-delay: 315ms; }
  .hero, .hero-copy { min-height: 760px; min-height: 100dvh; }
  .hero-image { object-position: center; }
  .hero-overlay { background: linear-gradient(to top, rgb(0 0 0 / 76%) 0%, rgb(0 0 0 / 42%) 58%, rgb(0 0 0 / 6%) 100%); }
  .hero-copy { justify-content: end; padding: 110px 0 38px; }
  .hero h1 { max-width: 370px; font-size: clamp(45px, 13vw, 64px); }
  .hero-summary { margin-top: 16px; font-size: 17px; }
  .hero-actions .button { flex: 1 1 145px; }
  .about, .visit-section { grid-template-columns: 1fr; gap: 38px; }
  .about { padding-block: 88px; }
  .about-figure { max-width: 460px; }
  .menu-grid { grid-template-columns: 1fr; gap: 30px; margin-top: 34px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 14px; }
  .gallery-item.landscape { grid-column: auto; aspect-ratio: 16 / 9; }
  .gallery-item.portrait { aspect-ratio: 3 / 4; }
  .gallery-item.square { aspect-ratio: 3 / 4; }
  .reviews-section { display: block; padding-block: 64px; }
  .reviews-heading { max-width: 650px; padding-top: 0; margin-bottom: 40px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 30px; }
  .review { min-height: 0; }
  .review blockquote { font-size: 21px; }
  .review figcaption a, .footer-links a, .social-text-link, .contact-link { display: inline-flex; align-items: center; min-height: 44px; }
  .visit-section { padding-block: 88px; }
  .map-frame { height: 380px; }
  .site-footer { grid-template-columns: 1fr; gap: 30px; padding: 42px 24px; }
  .rating-link { justify-self: start; }
  .lightbox-inner { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr auto; gap: 12px; padding: 68px 16px 20px; }
  .lightbox figure { grid-column: 1 / -1; grid-row: 1; }
  .lightbox-prev { justify-self: start; }
  .lightbox-next { justify-self: end; }
}

@media (max-width: 390px) {
  .section-shell { width: min(100% - 32px, 1180px); }
  .language-toggle { min-width: 68px; padding-inline: 10px; }
  .hero-actions { gap: 10px; }
  .button { padding-inline: 14px; }
}
