:root {
  --ink: #20251f;
  --muted: #5e685a;
  --paper: #f4f7f1;
  --paper-deep: #e7ede2;
  --sage-pale: #97a780;
  --sage: #738b65;
  --sage-dark: #40543b;
  --line: rgba(32, 37, 31, 0.17);
  --shadow: 0 22px 58px rgba(64, 84, 59, 0.15);
  --radius: 14px;
  --header-height: 70px;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Aptos, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body.menu-open, body.lightbox-open { overflow: hidden; }
img { max-width: 100%; }
figure { margin: 0; }
a { color: inherit; text-underline-offset: 0.2em; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.container { width: min(100% - 40px, 1240px); margin-inline: auto; }
.section { padding-block: clamp(86px, 9vw, 138px); }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(20px, calc((100vw - 1240px) / 2));
  color: #fbfcfa;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 260ms ease, border-color 260ms ease, color 260ms ease, box-shadow 260ms ease, backdrop-filter 260ms ease;
}
.site-header:not(.is-solid) :is(.brand, .desktop-nav, .menu-toggle) { text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34); }
.site-header.is-solid {
  color: var(--ink);
  background: rgba(244, 247, 241, 0.93);
  border-bottom-color: rgba(32, 37, 31, 0.11);
  box-shadow: 0 8px 28px rgba(32, 37, 31, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand img { width: 48px; height: 48px; object-fit: cover; border-radius: 50%; }
.desktop-nav { display: flex; align-items: center; gap: 28px; font-size: 0.91rem; font-weight: 650; }
.desktop-nav > a { text-decoration: none; }
.desktop-nav > a:not(.social-link) { position: relative; }
.desktop-nav > a:not(.social-link)::after {
  content: "";
  position: absolute;
  inset: auto 0 -6px;
  height: 2px;
  background: var(--sage-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}
.desktop-nav > a:not(.social-link):hover::after,
.desktop-nav > a:not(.social-link):focus-visible::after,
.desktop-nav > a[aria-current="true"]::after { transform: scaleX(1); transform-origin: left; }
.social-link { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; }
.social-link:hover { background: var(--paper-deep); }
.social-link svg { width: 21px; height: 21px; fill: currentColor; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 23px; height: 2px; margin: 6px auto; background: currentColor; transition: transform 180ms ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  z-index: 35;
  inset: var(--header-height) 0 auto;
  display: grid;
  padding: 14px 20px 24px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: 15px 2px; border-bottom: 1px solid var(--line); text-decoration: none; font-weight: 650; }

.hero {
  position: relative;
  isolation: isolate;
  contain: paint;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fbfcfa;
}
.header-sentinel { position: absolute; inset: 0 0 auto; height: 1px; }
.hero-image, .hero-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { z-index: -2; display: block; object-fit: cover; object-position: 50% 48%; animation: hero-settle 1100ms cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-scrim { z-index: -1; background: linear-gradient(to bottom, rgba(0, 0, 0, 0.06) 18%, rgba(0, 0, 0, 0.1) 48%, rgba(0, 0, 0, 0.28) 100%); }
.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 310px);
  grid-template-areas: "brand ." "headline summary" "headline actions";
  column-gap: clamp(36px, 7vw, 110px);
  align-items: end;
  padding-top: calc(var(--header-height) + 36px);
  padding-bottom: clamp(30px, 4vw, 52px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.46);
}
.hero-brand { grid-area: brand; margin: 0 0 16px; font-size: clamp(0.88rem, 1.55vw, 1.06rem); font-weight: 750; letter-spacing: 0.07em; text-transform: uppercase; }
.hero h1 {
  grid-area: headline;
  max-width: 720px;
  margin: 0;
  font-family: "Aptos Display", "Segoe UI", Arial, sans-serif;
  font-size: clamp(3.85rem, 6.25vw, 6.45rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.16);
}
.hero-summary { grid-area: summary; max-width: 26ch; margin: 0 0 18px; font-size: clamp(1.04rem, 1.42vw, 1.18rem); font-weight: 650; line-height: 1.42; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.22); }
.hero-actions { grid-area: actions; margin-top: 0; }
.hero-actions .button { min-height: 52px; padding-inline: 22px; }
.hero-actions, .visit-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}
.button-light { background: #fbfcfa; color: #243022; }
.button-light:hover { background: var(--paper-deep); }
.button-ghost { color: #fbfcfa; border-color: rgba(255, 255, 255, 0.72); background: rgba(0, 0, 0, 0.08); }
.button-ghost:hover { background: rgba(255, 255, 255, 0.14); }
.button-solid { background: var(--sage-dark); color: var(--paper); }
.button-solid:hover { background: #30442d; }
.button-outline { border-color: var(--sage-dark); color: var(--sage-dark); }
.button-outline:hover { background: var(--sage-pale); }

.fact-band { background: var(--sage-pale); color: var(--ink); border-bottom: 1px solid var(--line); }
.fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact-grid p { min-height: 124px; margin: 0; padding: 27px 26px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--line); }
.fact-grid p:last-child { border-right: 1px solid var(--line); }
.fact-grid strong { font-size: clamp(1.45rem, 3vw, 2.2rem); line-height: 1; letter-spacing: -0.045em; }
.fact-grid span { margin-top: 8px; color: var(--ink); font-size: 0.9rem; }

h2 { margin: 0; font-size: clamp(2.3rem, 5vw, 4.7rem); line-height: 0.98; letter-spacing: -0.055em; text-wrap: balance; }
.section-heading, .experience-heading, .visit-intro { max-width: 760px; margin-bottom: clamp(42px, 6vw, 74px); }
.section-heading p, .experience-heading p, .visit-intro p { max-width: 620px; margin: 20px 0 0; color: var(--muted); font-size: 1.05rem; }
.ratio-3x4 { position: relative; aspect-ratio: 3 / 4; overflow: hidden; }
.ratio-3x4 img { width: 100%; height: 100%; display: block; object-fit: cover; }

.story { display: grid; grid-template-columns: minmax(0, 5fr) minmax(350px, 4fr); gap: clamp(60px, 10vw, 132px); align-items: center; }
.story-copy { max-width: 610px; }
.story-copy > p { max-width: 58ch; color: var(--muted); font-size: 1.06rem; }
.story-copy > p:first-of-type { margin-top: 30px; }
.service-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 36px; border-top: 1px solid var(--line); }
.service-list > div { min-height: 104px; padding: 18px 18px 18px 0; border-bottom: 1px solid var(--line); }
.service-list > div:nth-child(odd) { border-right: 1px solid var(--line); }
.service-list > div:nth-child(even) { padding-left: 18px; }
.service-list strong, .service-list span { display: block; }
.service-list strong { font-size: 0.98rem; }
.service-list span { max-width: 24ch; margin-top: 5px; color: var(--muted); font-size: 0.88rem; line-height: 1.4; }
.story-visual { position: relative; padding: 0 0 46px 42px; }
.story-image { border-radius: var(--radius); box-shadow: var(--shadow); }
.story-image img { object-position: 50% 50%; }
.story-inset { position: absolute; left: 0; bottom: 0; width: 37%; aspect-ratio: 1; overflow: hidden; border: 7px solid var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); }
.story-inset img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }

.menu-section { background: var(--paper-deep); }
.menu-composition { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.3vw, 30px); align-items: start; }
.menu-feature { padding-right: 0; }
.menu-side { display: contents; }
.menu-item { min-width: 0; }
.menu-item .ratio-3x4 { border-radius: var(--radius); background: #d4ddd0; }
.menu-item img { transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1); }
@media (hover: hover) and (pointer: fine) { .menu-item:hover img { transform: scale(1.02); } }
.menu-item:nth-child(1) img { object-position: 50% 42%; }
.menu-copy { padding-top: 20px; }
.menu-copy h3 { margin: 0; font-size: clamp(1.3rem, 2.3vw, 1.8rem); line-height: 1.05; letter-spacing: -0.035em; }
.menu-copy p { max-width: 34ch; margin: 9px 0 0; color: var(--muted); }
.menu-index { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: clamp(56px, 8vw, 100px); border-top: 1px solid var(--line); }
.menu-index > div { min-height: 154px; padding: 24px 24px 20px 0; border-bottom: 1px solid var(--line); }
.menu-index > div + div { padding-left: 24px; border-left: 1px solid var(--line); }
.menu-index h3 { margin: 0; font-size: 1.05rem; }
.menu-index p { margin: 9px 0 0; color: var(--muted); font-size: 0.92rem; }

.experience { overflow: hidden; padding-block: clamp(70px, 7vw, 104px); }
.experience-heading { margin-left: max(20px, calc((100vw - 1240px) / 2)); margin-bottom: clamp(32px, 4vw, 44px); }
.experience-media {
  height: clamp(330px, 34vw, 430px);
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(260px, 0.78fr);
  gap: clamp(14px, 1.6vw, 20px);
}
.experience-main, .experience-secondary { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.experience-main, .experience-secondary { width: 100%; height: 100%; }
.experience-media img { width: 100%; height: 100%; display: block; object-fit: cover; }
.experience-main img { object-position: 50% 53%; }
.experience-secondary img { object-position: 50% 50%; }
.experience-points { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 32px; border-top: 1px solid var(--line); }
.experience-points div { padding: 18px 20px 0 0; }
.experience-points div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.experience-points strong, .experience-points span { display: block; }
.experience-points span { margin-top: 7px; color: var(--muted); font-size: 0.91rem; }

.gallery-section { padding-top: 80px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 24px); align-items: start; }
.gallery-item { appearance: none; width: 100%; padding: 0; border: 0; border-radius: var(--radius); background: #dbe3d6; cursor: zoom-in; box-shadow: none; }
.gallery-item:nth-child(n) { grid-column: auto; margin-top: 0; }
.gallery-item img { transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1); }
@media (hover: hover) and (pointer: fine) { .gallery-item:hover img { transform: scale(1.025); } }
.gallery-item:focus-visible { outline: 3px solid var(--sage-dark); outline-offset: 4px; }
.gallery-item:nth-child(1) img, .gallery-item:nth-child(2) img, .gallery-item:nth-child(5) img { object-position: 50% 48%; }
.gallery-item:nth-child(3) img { object-position: 50% 52%; }
.gallery-item:nth-child(4) img { object-position: 50% 56%; }

.reviews { background: var(--sage-pale); border-block: 1px solid var(--line); }
.reviews-layout { display: grid; grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.55fr); gap: clamp(42px, 7vw, 92px); align-items: start; }
.review-score { position: sticky; top: calc(var(--header-height) + 40px); }
.score-number { margin: 0; font-size: clamp(5.4rem, 11vw, 9rem); line-height: 0.8; letter-spacing: -0.08em; font-weight: 750; }
.score-stars { margin: 26px 0 38px; color: var(--sage-dark); letter-spacing: 0.16em; }
.review-score h2 { font-size: clamp(2.3rem, 4vw, 4rem); }
.review-score > p:last-child { color: var(--muted); }
.reviews-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(270px, 0.85fr); gap: 18px; }
.review-stack { display: grid; gap: 18px; }
.review { display: flex; flex-direction: column; min-height: 260px; padding: clamp(24px, 3vw, 36px); border: 1px solid rgba(32, 37, 31, 0.18); border-radius: var(--radius); background: rgba(255, 255, 255, 0.34); }
.review-primary { min-height: 100%; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.review-author h3 { margin: 0; font-size: 1rem; }
.review-author p { margin: 4px 0 0; color: var(--ink); letter-spacing: 0.08em; font-size: 0.84rem; }
.review blockquote { margin: 32px 0 28px; font-size: clamp(1.06rem, 2vw, 1.42rem); line-height: 1.38; letter-spacing: -0.02em; }
.review-primary blockquote { font-size: clamp(1.5rem, 3vw, 2.35rem); line-height: 1.18; }
.review a { margin-top: auto; font-weight: 700; font-size: 0.9rem; }

.visit { background: #edf2e9; }
.visit-intro { margin-left: auto; margin-right: auto; text-align: center; }
.visit-intro p { margin-inline: auto; }
.visit-grid { display: grid; grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1.3fr); gap: clamp(36px, 6vw, 76px); align-items: stretch; }
.visit-details { padding: clamp(26px, 4vw, 44px); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, 0.34); }
.visit-actions { margin-top: 0; }
.visit-actions .button { flex: 1 1 150px; }
.detail-block { margin-top: 34px; }
.detail-block h3 { margin: 0 0 8px; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; }
.detail-block p { margin: 0; color: var(--muted); }
.hours dl { margin: 0; }
.hours dl > div { display: grid; grid-template-columns: 96px 1fr; gap: 14px; padding: 5px 0; }
.hours dt { font-weight: 680; }
.hours dd { margin: 0; color: var(--muted); }
.visit-services { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); }
.visit-services span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 0.82rem; }
.map-wrap { min-height: 650px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); background: #dce3d7; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 650px; display: block; border: 0; }

.site-footer { padding-block: 58px; background: #dfe7da; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 2fr 1.35fr 1fr; gap: 40px; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 14px; font-weight: 750; }
.footer-brand img { width: 66px; height: 66px; border-radius: 50%; }
.footer-brand p, .footer-address p { margin: 0; }
.footer-brand span { display: block; margin-top: 3px; color: var(--muted); font-size: 0.88rem; font-weight: 500; }
.footer-address a { display: inline-block; margin-top: 10px; font-weight: 700; }
.footer-links { display: grid; gap: 8px; }
.mobile-actions { display: none; }

.lightbox {
  width: min(94vw, 1050px);
  height: min(92vh, 900px);
  padding: 28px 76px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #171a17;
  color: #f7f9f5;
  overflow: hidden;
}
.lightbox::backdrop { background: rgba(9, 11, 9, 0.88); }
.lightbox figure { width: 100%; height: 100%; display: grid; place-items: center; }
.lightbox figure img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.lightbox button { position: absolute; z-index: 2; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, 0.28); color: #f7f9f5; background: rgba(23, 26, 23, 0.8); cursor: pointer; }
.lightbox-close { top: 14px; right: 14px; width: 44px; height: 44px; border-radius: 50%; font-size: 1.7rem; }
.lightbox-nav { top: 50%; width: 48px; height: 48px; border-radius: 50%; transform: translateY(-50%); font-size: 1.35rem; }
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }

@keyframes hero-settle { from { transform: scale(1.025); } to { transform: scale(1); } }

@media (max-width: 1000px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .story { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr); gap: 44px; }
  .menu-composition { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .menu-side { display: contents; }
  .reviews-layout { grid-template-columns: 1fr; }
  .review-score { position: static; display: grid; grid-template-columns: auto 1fr; gap: 8px 28px; align-items: end; }
  .review-score .score-number { grid-row: span 3; }
  .review-score .score-stars { margin: 0; }
  .review-score h2 { font-size: clamp(2.3rem, 5vw, 4rem); }
  .visit-grid { grid-template-columns: 1fr; }
  .map-wrap, .map-wrap iframe { min-height: 540px; }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .hero h1 { font-size: clamp(3.55rem, 5.7vw, 5.7rem); }
}

@media (max-width: 760px) {
  :root { --header-height: 64px; }
  body { padding-bottom: 64px; }
  .container { width: min(100% - 32px, 1240px); }
  .brand span { max-width: 160px; line-height: 1.1; }
  .brand img { width: 44px; height: 44px; }
  .hero-content { display: block; padding-bottom: 38px; border-bottom: 0; }
  .hero-brand { margin-bottom: 12px; font-size: 0.92rem; letter-spacing: 0.03em; text-transform: none; }
  .hero h1 { max-width: 350px; font-size: clamp(3.3rem, 17vw, 4.8rem); }
  .hero-summary { max-width: 330px; margin: 18px 0 0; font-size: 1.04rem; }
  .hero-actions { margin-top: 22px; }
  .button { flex: 1 1 132px; }
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
  .fact-grid p { min-height: 108px; padding: 21px 18px; }
  .fact-grid p:nth-child(3), .fact-grid p:nth-child(4) { border-top: 1px solid var(--line); }
  .fact-grid p:nth-child(even) { border-right: 1px solid var(--line); }
  .fact-grid strong { font-size: 1.48rem; }
  .section { padding-block: 82px; }
  .story { display: flex; flex-direction: column; align-items: stretch; }
  .story-visual { width: 100%; order: -1; padding: 0 0 34px 26px; }
  .story-inset { width: 34%; border-width: 5px; }
  .service-list { grid-template-columns: 1fr; }
  .service-list > div, .service-list > div:nth-child(even) { padding: 17px 0; border-right: 0; }
  .menu-composition { grid-template-columns: 1fr; gap: 34px; }
  .menu-feature { width: auto; }
  .menu-side { display: contents; }
  .menu-copy { padding-top: 15px; }
  .menu-copy h3 { font-size: 1.2rem; }
  .menu-copy p { font-size: 0.9rem; }
  .menu-index { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 60px; }
  .menu-index > div { min-height: 148px; padding: 20px 16px 18px 0; }
  .menu-index > div + div { padding-left: 16px; }
  .menu-index > div:nth-child(3) { padding-left: 0; border-left: 0; }
  .experience { padding-block: 64px; }
  .experience-heading { margin-left: 16px; margin-bottom: 28px; }
  .experience-media { height: auto; grid-template-columns: 1fr; gap: 10px; }
  .experience-main { height: auto; aspect-ratio: 16 / 9; }
  .experience-secondary { height: 96px; }
  .experience-points { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 28px; }
  .experience-points div { padding: 15px 12px 15px 0; border-bottom: 1px solid var(--line); }
  .experience-points div + div { padding-left: 14px; }
  .experience-points div:nth-child(3) { padding-left: 0; border-left: 0; }
  .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-item:nth-child(n) { grid-column: auto; margin-top: 0; transform: none; }
  .reviews-layout { gap: 42px; }
  .review-score { display: block; }
  .score-number { font-size: 6.6rem; }
  .review-score .score-stars { margin: 20px 0 30px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review, .review-primary { min-height: 0; }
  .review-stack { grid-template-columns: 1fr; }
  .review-primary blockquote { font-size: 1.48rem; }
  .visit-intro { text-align: left; }
  .visit-intro p { margin-inline: 0; }
  .visit-details { padding: 24px 20px; }
  .map-wrap, .map-wrap iframe { min-height: 430px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .mobile-actions {
    position: fixed;
    z-index: 30;
    inset: auto 0 0;
    height: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8px;
    gap: 8px;
    background: rgba(244, 247, 241, 0.94);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(110%);
    transition: opacity 220ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  .mobile-actions.is-visible { opacity: 1; pointer-events: auto; transform: none; }
  .mobile-actions a { display: grid; place-items: center; border-radius: 999px; background: var(--sage-dark); color: var(--paper); text-decoration: none; font-weight: 750; }
  .mobile-actions a + a { border: 1px solid var(--sage-dark); background: transparent; color: var(--sage-dark); }
  .lightbox { width: 100vw; height: 100dvh; max-width: none; max-height: none; padding: 68px 12px; border: 0; border-radius: 0; }
  .lightbox-nav { top: auto; bottom: 12px; transform: none; }
  .lightbox-prev { left: calc(50% - 62px); }
  .lightbox-next { right: calc(50% - 62px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header, .mobile-actions { background: var(--paper); backdrop-filter: none; -webkit-backdrop-filter: none; }
}
