:root {
  --forest: #13231a;
  --forest-2: #1e3427;
  --leaf: #607156;
  --rust: #a55b38;
  --hay: #d1a86c;
  --paper: #f3ecdf;
  --paper-2: #e9dfd0;
  --ink: #171612;
  --muted: #625e55;
  --white: #fffaf2;
  --line-dark: rgba(23,22,18,.15);
  --line-light: rgba(255,250,242,.16);
  --shell: min(100% - 56px, 1480px);
  --header-h: 90px;
  --ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

.skip-link { position: fixed; left: -999px; top: 12px; z-index: 999; }
.skip-link:focus { left: 12px; padding: 12px 16px; color: var(--white); background: var(--forest); }

.scroll-progress { position: fixed; inset: 0 0 auto; z-index: 90; height: 3px; background: rgba(255,255,255,.08); }
.scroll-progress span { display: block; width: 0; height: 100%; background: var(--hay); }

.section-shell { width: var(--shell); margin-inline: auto; }
.light-section { background: var(--paper); }
.dark-section { color: var(--white); background: var(--forest); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  transition: background .45s ease, border-color .45s ease, backdrop-filter .45s ease;
}
.site-header.is-scrolled {
  background: rgba(19,35,26,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-shell {
  width: var(--shell);
  min-height: var(--header-h);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 260px 1fr 220px;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); }
.brand img { width: 54px; height: 54px; object-fit: contain; border-radius: 50%; background: rgba(255,255,255,.92); padding: 4px; }
.brand span { display: grid; gap: 1px; }
.brand b { font-family: "Playfair Display", serif; font-size: 22px; font-weight: 600; line-height: 1; }
.brand small { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,250,242,.62); }
.main-nav { display: flex; justify-content: center; gap: 26px; }
.main-nav a { position: relative; padding: 9px 0; color: rgba(255,250,242,.75); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--hay); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.main-nav a:hover::after { transform: scaleX(1); }
.header-cta,
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .35s var(--ease), background .35s ease, color .35s ease, border-color .35s ease;
}
.header-cta { justify-self: end; color: var(--white); border-color: rgba(255,255,255,.24); }
.header-cta:hover { color: var(--forest); background: var(--white); border-color: var(--white); }
.header-cta svg,
.button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.nav-toggle { display: none; }
.button--light { color: var(--forest); background: var(--white); border-color: var(--white); }
.button--light:hover { background: #e9dfd0; border-color: #e9dfd0; }
.button--dark { color: var(--white); background: var(--forest); border-color: var(--forest); }
.button--dark:hover { background: var(--rust); border-color: var(--rust); }
.text-link,
.line-link { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.text-link:hover,
.line-link:hover { color: var(--rust); }

.hero { position: relative; min-height: 100svh; display: grid; align-items: end; overflow: hidden; color: var(--white); background: var(--forest); }
.hero-media,
.hero-media img,
.hero-overlay,
.hero-grain { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.03); }
.hero-overlay { background: linear-gradient(180deg, rgba(5,12,8,.58) 0%, rgba(5,12,8,.15) 42%, rgba(5,12,8,.78) 100%); }
.hero-grain { opacity: .18; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; }
.hero-coordinate { position: absolute; z-index: 2; top: calc(var(--header-h) + 26px); color: rgba(255,250,242,.54); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.hero-coordinate--left { left: 28px; }
.hero-coordinate--right { right: 28px; }
.hero-content { position: relative; z-index: 3; width: var(--shell); margin-inline: auto; padding: 25vh 0 50px; }
.hero-kicker { margin: 0 0 26px; color: rgba(255,250,242,.75); font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.hero h1 { margin: 0; display: grid; font-size: clamp(72px, 11vw, 168px); line-height: .79; letter-spacing: -.065em; font-weight: 300; }
.hero-line--serif { padding-left: 10vw; font-family: "Playfair Display", serif; font-style: italic; font-weight: 500; letter-spacing: -.045em; }
.hero-bottom { margin-top: 42px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.22); display: grid; grid-template-columns: minmax(280px, 560px) 1fr; gap: 40px; align-items: end; }
.hero-bottom > p { margin: 0; color: rgba(255,250,242,.8); font-size: 15px; line-height: 1.75; }
.hero-actions { display: flex; justify-content: flex-end; align-items: center; gap: 24px; }
.hero-orbit { position: absolute; z-index: 4; right: 3vw; bottom: 25%; width: 126px; height: 126px; display: grid; place-items: center; color: var(--white); }
.hero-orbit svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: orbit 18s linear infinite; }
.hero-orbit text { fill: currentColor; font-size: 8px; font-family: Manrope, sans-serif; letter-spacing: 1.8px; }
.hero-orbit span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(8px); }
@keyframes orbit { to { transform: rotate(360deg); } }

.fact-strip { overflow: hidden; background: var(--rust); color: var(--white); }
.fact-track { width: max-content; display: flex; align-items: center; gap: 25px; padding: 15px 0; animation: marquee 36s linear infinite; }
.fact-track span { font-size: 10px; font-weight: 700; letter-spacing: .16em; white-space: nowrap; }
.fact-track i { font-style: normal; color: var(--hay); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-index { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: center; color: rgba(23,22,18,.5); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.section-index span:first-child { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; letter-spacing: 0; }
.section-index--light { color: rgba(255,250,242,.58); }
.eyebrow { margin: 0; color: var(--rust); font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.display-title { margin: 0; font-size: clamp(58px, 8vw, 128px); font-weight: 300; line-height: .93; letter-spacing: -.06em; }
.display-title em { font-family: "Playfair Display", serif; font-style: italic; font-weight: 500; }

.manifesto { padding: clamp(110px, 11vw, 180px) 0; }
.manifesto-grid { display: grid; grid-template-columns: 200px minmax(0, 1fr) minmax(290px, .55fr); gap: 36px 50px; align-items: start; }
.manifesto-main { display: grid; gap: 28px; }
.manifesto-side { padding-top: 50px; }
.manifesto-side > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.manifesto-data { margin: 40px 0 0; display: grid; gap: 0; border-top: 1px solid var(--line-dark); }
.manifesto-data div { display: grid; grid-template-columns: 92px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line-dark); }
.manifesto-data dt { color: var(--rust); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.manifesto-data dd { margin: 0; font-size: 13px; line-height: 1.5; }

.experiences { padding: 0; }
.experience-shell { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr); min-height: 100svh; }
.experience-media { position: sticky; top: 0; height: 100svh; overflow: hidden; background: #0a140e; }
.experience-image { position: absolute; inset: 0; margin: 0; opacity: 0; transform: scale(1.04); transition: opacity .7s ease, transform 1.1s var(--ease); }
.experience-image.is-active { opacity: 1; transform: scale(1); }
.experience-image img { width: 100%; height: 100%; object-fit: cover; }
.experience-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,11,8,.1), rgba(5,11,8,.58)); }
.experience-media-caption { position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 28px; display: flex; align-items: center; gap: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.28); color: rgba(255,255,255,.85); }
.experience-media-caption span { font-size: 11px; color: var(--hay); }
.experience-media-caption b { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.experience-content { padding: 100px clamp(32px, 6vw, 94px); }
.experience-content > .section-index { margin-bottom: 80px; }
.experience-step { min-height: 78vh; display: grid; align-content: center; opacity: .34; transition: opacity .45s ease; }
.experience-step.is-active { opacity: 1; }
.experience-step > span { color: var(--hay); font-size: 10px; letter-spacing: .16em; }
.experience-step h2 { margin: 20px 0 26px; font-size: clamp(42px, 5.2vw, 82px); line-height: .98; letter-spacing: -.05em; font-weight: 300; }
.experience-step p { margin: 0; max-width: 570px; color: rgba(255,250,242,.65); font-size: 16px; line-height: 1.8; }

.gastronomy { padding: clamp(110px, 11vw, 180px) 0 0; overflow: hidden; }
.gastronomy-head { display: grid; grid-template-columns: 200px minmax(0, 1fr) minmax(260px, .5fr); gap: 36px 50px; align-items: end; padding-bottom: 70px; }
.gastronomy-head > p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.gastronomy-stage { position: relative; width: min(100% - 36px, 1700px); margin-inline: auto; min-height: 82svh; overflow: hidden; border-radius: 28px 28px 0 0; }
.gastronomy-image,
.gastronomy-image img { position: absolute; inset: -5% 0; width: 100%; height: 110%; }
.gastronomy-image img { object-fit: cover; }
.gastronomy-stage::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,10,7,.12), rgba(5,10,7,.18) 45%, rgba(5,10,7,.74)); }
.gastronomy-panel { position: absolute; z-index: 2; right: clamp(24px, 6vw, 92px); top: 50%; width: min(500px, calc(100% - 48px)); transform: translateY(-50%); padding: 34px; border-radius: 22px; background: rgba(243,236,223,.93); backdrop-filter: blur(16px); box-shadow: 0 28px 80px rgba(0,0,0,.22); }
.gastronomy-panel > span { color: var(--rust); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.gastronomy-panel ul { list-style: none; margin: 24px 0 28px; padding: 0; display: grid; gap: 0; border-top: 1px solid var(--line-dark); }
.gastronomy-panel li { display: grid; gap: 6px; padding: 17px 0; border-bottom: 1px solid var(--line-dark); }
.gastronomy-panel b { font-family: "Playfair Display", serif; font-size: 28px; font-weight: 500; }
.gastronomy-panel small { color: var(--muted); font-size: 13px; line-height: 1.6; }

.events { padding: clamp(110px, 11vw, 180px) 0; }
.events-grid { display: grid; grid-template-columns: minmax(360px, .8fr) minmax(0, 1.1fr); gap: clamp(40px, 7vw, 100px); align-items: center; }
.events-copy { display: grid; gap: 24px; }
.events-lead { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.event-data { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.event-data article { padding: 20px 16px 20px 0; border-right: 1px solid var(--line-dark); }
.event-data article:last-child { border-right: 0; padding-left: 16px; }
.event-data article:nth-child(2) { padding-left: 16px; }
.event-data strong { display: block; font-size: 34px; font-weight: 400; }
.event-data span { color: var(--muted); font-size: 10px; line-height: 1.5; }
.events-gallery { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: repeat(2, minmax(220px, 1fr)); gap: 16px; }
.gallery-item { position: relative; padding: 0; border: 0; overflow: hidden; cursor: zoom-in; background: #d8cebf; }
.gallery-item--large { grid-row: 1 / span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery-item:hover img { transform: scale(1.045); }

.nature-band { position: relative; min-height: 90svh; display: grid; place-items: center; overflow: hidden; }
.nature-band-media,
.nature-band-media img,
.nature-band-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.nature-band-media img { object-fit: cover; }
.nature-band-overlay { background: linear-gradient(180deg, rgba(5,11,8,.28), rgba(5,11,8,.76)); }
.nature-band-content { position: relative; z-index: 2; width: min(1000px, calc(100% - 40px)); text-align: center; }
.nature-band-content p { margin: 0 0 20px; color: var(--hay); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.nature-band-content h2 { margin: 0; font-size: clamp(54px, 8vw, 118px); line-height: .93; font-weight: 300; letter-spacing: -.06em; }


.photo-gallery { padding: clamp(110px, 11vw, 170px) 0; }
.gallery-heading { display: grid; grid-template-columns: 160px minmax(0, 1fr); gap: 24px clamp(28px, 6vw, 70px); align-items: start; margin-bottom: 56px; }
.gallery-heading-copy { display: grid; gap: 18px; max-width: 980px; }
.gallery-heading-copy p { margin: 0; max-width: 720px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.gallery-bento { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 16px; }
.gallery-shot { position: relative; grid-column: span 4; min-height: 320px; padding: 0; border: 0; overflow: hidden; border-radius: 24px; background: #d7cebf; cursor: zoom-in; box-shadow: 0 22px 70px rgba(10,16,12,.08); }
.gallery-shot--tall { grid-column: span 3; grid-row: span 2; min-height: 680px; }
.gallery-shot--wide { grid-column: span 6; }
.gallery-shot--square { min-height: 330px; }
.gallery-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .85s var(--ease), filter .6s ease; }
.gallery-shot::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,10,8,0) 40%, rgba(6,10,8,.64) 100%); }
.gallery-shot span { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2; color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.gallery-shot:hover img { transform: scale(1.04); filter: saturate(1.03); }

.visit { padding: clamp(110px, 11vw, 180px) 0; }
.visit-title { margin-top: 60px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.visit-title h2 { max-width: 1080px; }
.visit-list { margin-top: 90px; border-top: 1px solid var(--line-dark); }
.visit-row { min-height: 190px; display: grid; grid-template-columns: 64px minmax(200px, .8fr) 1.2fr 160px; gap: 24px; align-items: center; border-bottom: 1px solid var(--line-dark); }
.visit-row > span { color: var(--rust); font-size: 10px; letter-spacing: .15em; }
.visit-row h3 { margin: 0; font-size: clamp(28px, 3vw, 48px); font-weight: 400; letter-spacing: -.04em; }
.visit-row p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.visit-row > a { justify-self: end; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.visit-row > a:hover { color: var(--rust); }

.final-cta { position: relative; min-height: 68svh; display: grid; place-items: center; overflow: hidden; }
.final-cta-media,
.final-cta-media img,
.final-cta-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.final-cta-media img { object-fit: cover; object-position: center; filter: saturate(.82) brightness(.64); }
.final-cta-overlay { background: linear-gradient(180deg, rgba(8,17,12,.4), rgba(8,17,12,.82)); }
.final-cta-content { position: relative; z-index: 2; width: min(980px, calc(100% - 40px)); display: grid; justify-items: center; text-align: center; gap: 12px; }
.final-cta-content img { width: 106px; height: 106px; margin-bottom: 18px; border-radius: 50%; background: rgba(255,255,255,.94); padding: 8px; }
.final-cta-content > p { margin: 0 0 20px; color: var(--hay); font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.final-cta-content h2 { margin: 0; max-width: 900px; font-size: clamp(40px, 6vw, 82px); line-height: .96; letter-spacing: -.05em; font-weight: 300; }
.final-cta-subline { max-width: 860px; color: rgba(255,250,242,.82); font-size: 15px; line-height: 1.8; font-weight: 500; }

.site-footer { position: relative; padding: 72px 0 28px; overflow: hidden; background: transparent; }
.site-footer::before,
.site-footer::after { content: ''; position: absolute; inset: 0; }
.site-footer::before { background: url("../img/trilha-cavalo-wide.jpg") center center / cover no-repeat; filter: saturate(.82) brightness(.64); }
.site-footer::after { background: linear-gradient(180deg, rgba(8,17,12,.82), rgba(8,17,12,.94)); }
.footer-shell { position: relative; z-index: 2; width: var(--shell); margin-inline: auto; }
.footer-brand { display: grid; grid-template-columns: minmax(280px, .8fr) 1fr; gap: 48px; padding-bottom: 50px; }
.brand--footer { color: var(--white); }
.footer-brand > p { margin: 8px 0 0; max-width: 680px; color: rgba(255,250,242,.66); font-size: 14px; line-height: 1.8; }
.footer-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding: 34px 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.footer-columns > div { display: grid; align-content: start; gap: 10px; }
.footer-columns span { margin-bottom: 7px; color: var(--hay); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.footer-columns a,
.footer-columns p { margin: 0; color: rgba(255,250,242,.7); font-size: 13px; line-height: 1.65; }
.footer-columns a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; color: rgba(255,250,242,.42); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

.lightbox { width: 100%; height: 100%; max-width: none; max-height: none; margin: 0; padding: 50px; border: 0; color: var(--white); background: rgba(5,11,8,.96); }
.lightbox::backdrop { background: rgba(0,0,0,.82); }
.lightbox[open] { display: grid; place-items: center; }
.lightbox figure { width: min(1100px, 100%); height: calc(100dvh - 100px); margin: 0; display: grid; grid-template-rows: minmax(0, 1fr) auto; gap: 14px; }
.lightbox img { width: 100%; height: 100%; object-fit: contain; }
.lightbox figcaption { padding-top: 12px; border-top: 1px solid var(--line-light); color: rgba(255,250,242,.62); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.lightbox-close { position: absolute; right: 24px; top: 20px; width: 50px; height: 50px; border: 1px solid var(--line-light); border-radius: 50%; color: var(--white); background: transparent; font-size: 30px; cursor: pointer; }

.reveal,
.reveal-text { opacity: 0; transform: translateY(42px); transition: opacity .9s ease, transform 1s var(--ease); }
.reveal.is-visible,
.reveal-text.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 42px, 1480px); }
  .header-shell { grid-template-columns: 220px 1fr 190px; }
  .main-nav { gap: 18px; }
  .manifesto-grid,
  .gastronomy-head,
  .gallery-heading { grid-template-columns: 160px 1fr; }
  .manifesto-side,
  .gastronomy-head > p { grid-column: 2; padding-top: 0; }
  .events-grid { grid-template-columns: 1fr; }
  .events-copy { max-width: 850px; }
  .gallery-shot--tall { grid-column: span 4; min-height: 520px; }
  .gallery-shot--wide { grid-column: span 8; }
}

@media (max-width: 900px) {
  :root { --header-h: 78px; --shell: calc(100% - 36px); }
  .header-shell { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .nav-toggle { position: relative; display: grid; place-items: center; width: 48px; height: 48px; padding: 0; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--white); background: rgba(255,255,255,.05); }
  .nav-toggle span { position: absolute; width: 18px; height: 1px; background: currentColor; transition: transform .35s var(--ease); }
  .nav-toggle span:first-child { transform: translateY(-4px); }
  .nav-toggle span:last-child { transform: translateY(4px); }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
  .main-nav { position: fixed; inset: var(--header-h) 18px auto; z-index: 5; padding: 24px; display: grid; justify-content: stretch; gap: 6px; border: 1px solid rgba(255,255,255,.1); border-radius: 24px; background: rgba(19,35,26,.98); box-shadow: 0 20px 70px rgba(0,0,0,.24); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .3s ease, visibility .3s ease, transform .4s var(--ease); }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { font-size: 17px; letter-spacing: .03em; text-transform: none; }
  .hero-coordinate--right { display: none; }
  .hero-content { padding-bottom: 36px; }
  .hero h1 { font-size: clamp(64px, 14vw, 116px); }
  .hero-line--serif { padding-left: 0; }
  .hero-bottom { grid-template-columns: 1fr; gap: 25px; }
  .hero-actions { justify-content: flex-start; }
  .hero-orbit { display: none; }
  .experience-shell { grid-template-columns: 1fr; }
  .experience-media { position: relative; height: 72svh; }
  .experience-content { padding: 90px var(--shell); width: 100%; }
  .experience-step { min-height: auto; padding: 30px 0 100px; opacity: 1; }
  .experience-step:last-child { padding-bottom: 20px; }
  .experience-image:not(:first-child) { display: none; }
  .events-gallery { min-height: 650px; }
  .gallery-bento { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .gallery-shot { grid-column: span 4; }
  .gallery-shot--wide, .gallery-shot--tall { grid-column: span 8; }
  .gallery-shot--tall { min-height: 460px; }
  .visit-title { grid-template-columns: 1fr; align-items: start; }
  .visit-title .button { justify-self: start; }
  .visit-row { grid-template-columns: 40px 1fr; padding: 32px 0; }
  .visit-row p,
  .visit-row > a { grid-column: 2; justify-self: start; }
  .footer-brand { grid-template-columns: 1fr; gap: 25px; }
  .gallery-heading { grid-template-columns: 1fr; margin-bottom: 36px; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); --header-h: 72px; }
  .brand img { width: 46px; height: 46px; }
  .brand b { font-size: 19px; }
  .brand small { font-size: 8px; }
  .hero { min-height: 100svh; }
  .gallery-bento { grid-template-columns: 1fr; }
  .gallery-shot, .gallery-shot--wide, .gallery-shot--tall { grid-column: auto; min-height: 260px; }
  .gallery-shot--tall { min-height: 380px; }
  .hero-media img { object-position: 58% center; }
  .hero-coordinate--left { left: 14px; }
  .hero-content { padding-top: 20vh; }
  .hero-kicker { font-size: 9px; line-height: 1.5; }
  .hero h1 { font-size: clamp(52px, 17vw, 78px); line-height: .82; }
  .hero-bottom { margin-top: 28px; padding-top: 18px; }
  .hero-bottom > p { font-size: 13px; line-height: 1.65; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .button { min-height: 50px; padding-inline: 20px; }
  .manifesto,
  .gastronomy,
  .photo-gallery,
  .events,
  .visit { padding: 90px 0; }
  .manifesto-grid,
  .gastronomy-head { grid-template-columns: 1fr; }
  .manifesto-side,
  .gastronomy-head > p { grid-column: auto; }
  .display-title { font-size: clamp(46px, 13vw, 70px); }
  .manifesto-side { padding-top: 10px; }
  .experience-media { height: 66svh; }
  .experience-content { padding: 74px 14px; }
  .experience-content > .section-index { margin-bottom: 55px; }
  .experience-step h2 { font-size: clamp(40px, 12vw, 58px); }
  .gastronomy-stage { min-height: auto; padding: 58vh 14px 14px; border-radius: 22px 22px 0 0; }
  .gastronomy-panel { position: relative; inset: auto; width: 100%; transform: none; padding: 25px; }
  .gastronomy-image,
  .gastronomy-image img { height: 62vh; }
  .events-gallery { min-height: 0; display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-item,
  .gallery-item--large { grid-row: auto; min-height: 280px; }
  .event-data { grid-template-columns: 1fr; }
  .event-data article { border-right: 0; border-bottom: 1px solid var(--line-dark); padding-left: 0 !important; }
  .event-data article:last-child { border-bottom: 0; }
  .nature-band { min-height: 78svh; }
  .nature-band-content h2 { font-size: clamp(46px, 13vw, 70px); }
  .visit-list { margin-top: 65px; }
  .visit-row { grid-template-columns: 30px 1fr; gap: 12px 16px; }
  .final-cta { min-height: 62svh; }
  .final-cta-content h2 { font-size: clamp(34px, 10vw, 56px); }
  .final-cta-subline { font-size: 13px; line-height: 1.7; }
  .footer-columns { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .lightbox { padding: 18px; }
  .lightbox figure { height: calc(100dvh - 70px); }
}

@media (hover: none), (pointer: coarse) {
  .magnetic { transform: none !important; }
}

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

/* ===== Refinamento profissional: galeria cinematográfica, fechamento e rodapé ===== */
.recanto-facts {
  padding: clamp(90px, 9vw, 150px) 0;
  background: linear-gradient(135deg, #172b20 0%, #102017 100%);
}
.recanto-facts__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: end;
}
.recanto-facts__title span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--hay);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.recanto-facts__title h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 5.4vw, 82px);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.055em;
}
.recanto-facts__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}
.recanto-facts__list article {
  min-height: 142px;
  padding: 24px;
  display: grid;
  align-content: space-between;
  gap: 26px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.recanto-facts__list strong {
  color: var(--hay);
  font-size: 11px;
  letter-spacing: .15em;
}
.recanto-facts__list span {
  max-width: 230px;
  color: rgba(255,250,242,.82);
  font-size: 15px;
  line-height: 1.55;
}

.gallery-cinema {
  padding: clamp(105px, 10vw, 165px) 0 clamp(90px, 9vw, 145px);
  overflow: hidden;
  background: #0d1d15;
}
.gallery-cinema__head {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px clamp(34px, 6vw, 90px);
  align-items: start;
  margin-bottom: 58px;
}
.gallery-cinema__title {
  display: grid;
  gap: 22px;
  max-width: 980px;
}
.gallery-cinema__title .display-title {
  color: var(--white);
}
.gallery-cinema__title p {
  margin: 0;
  max-width: 720px;
  color: rgba(255,250,242,.64);
  font-size: 15px;
  line-height: 1.8;
}
.gallery-cinema__stage {
  position: relative;
  width: min(100% - 24px, 1700px);
  margin-inline: auto;
}
.gallery-cinema__viewport {
  overflow: hidden;
}
.gallery-cinema__track {
  display: flex;
  gap: 20px;
  padding: 0 max(0px, calc((100vw - 1480px) / 2));
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  cursor: grab;
}
.gallery-cinema__track::-webkit-scrollbar { display: none; }
.gallery-cinema__track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.gallery-slide {
  position: relative;
  flex: 0 0 min(72vw, 1040px);
  height: min(68svh, 720px);
  padding: 0;
  border: 0;
  overflow: hidden;
  scroll-snap-align: center;
  background: #1a2b22;
  cursor: zoom-in;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease), filter .7s ease;
}
.gallery-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,15,11,.02) 40%, rgba(7,15,11,.86) 100%);
}
.gallery-slide__meta {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 3vw, 42px);
  right: clamp(22px, 3vw, 42px);
  bottom: clamp(22px, 3vw, 38px);
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 8px 18px;
  align-items: end;
  text-align: left;
}
.gallery-slide__meta span {
  grid-row: span 2;
  color: var(--hay);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}
.gallery-slide__meta h3 {
  margin: 0;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 500;
  line-height: 1;
}
.gallery-slide__meta p {
  margin: 0;
  max-width: 620px;
  color: rgba(255,250,242,.72);
  font-size: 13px;
  line-height: 1.6;
}
.gallery-slide:hover img { transform: scale(1.025); filter: saturate(1.05); }
.gallery-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 50%;
  color: var(--white);
  background: rgba(10,24,17,.72);
  backdrop-filter: blur(14px);
  transform: translateY(-50%);
  cursor: pointer;
  transition: background .3s ease, border-color .3s ease, transform .3s var(--ease);
}
.gallery-arrow:hover {
  background: rgba(255,250,242,.16);
  border-color: rgba(255,255,255,.48);
  transform: translateY(-50%) scale(1.05);
}
.gallery-arrow--prev { left: 24px; }
.gallery-arrow--next { right: 24px; }
.gallery-cinema__status {
  margin-top: 28px;
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr) auto;
  gap: 18px;
  align-items: center;
  color: rgba(255,250,242,.54);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.gallery-cinema__status b { color: var(--white); font-size: 14px; }
.gallery-cinema__progress {
  height: 1px;
  background: rgba(255,255,255,.16);
  overflow: hidden;
}
.gallery-cinema__progress i {
  display: block;
  width: 16.666%;
  height: 100%;
  background: var(--hay);
  transition: width .35s ease;
}

.booking-panel {
  padding: 62px 0;
  background: #183024;
}
.booking-panel__grid {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.1fr) auto;
  gap: 34px;
  align-items: center;
}
.booking-panel__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.booking-panel__brand img {
  width: 74px;
  height: 74px;
  padding: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
}
.booking-panel__brand div { display: grid; gap: 4px; }
.booking-panel__brand span {
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 23px;
  line-height: 1;
}
.booking-panel__brand strong {
  color: rgba(255,250,242,.54);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.booking-panel__content h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -.035em;
}
.booking-panel__content p {
  margin: 0;
  max-width: 640px;
  color: rgba(255,250,242,.66);
  font-size: 14px;
  line-height: 1.7;
}

.site-footer,
.site-footer.dark-section {
  position: relative;
  padding: 64px 0 26px;
  overflow: visible;
  background: #0c1a13;
}
.site-footer::before,
.site-footer::after { display: none !important; }
.footer-shell {
  position: relative;
  z-index: 1;
  width: var(--shell);
  margin-inline: auto;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, .6fr);
  gap: 48px;
  align-items: start;
  padding-bottom: 42px;
}
.footer-brand-pro {
  display: grid;
  gap: 20px;
}
.footer-brand-pro > p {
  margin: 0;
  max-width: 560px;
  color: rgba(255,250,242,.58);
  font-size: 14px;
  line-height: 1.75;
}
.footer-contact-card {
  padding: 24px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.12);
}
.footer-contact-card span {
  margin-bottom: 4px;
  color: var(--hay);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.footer-contact-card a:first-of-type {
  color: var(--white);
  font-size: 26px;
  font-weight: 300;
  letter-spacing: -.03em;
}
.footer-contact-card a:last-child {
  color: rgba(255,250,242,.64);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-bottom {
  padding-top: 22px;
}

@media (max-width: 980px) {
  .recanto-facts__grid,
  .gallery-cinema__head,
  .booking-panel__grid,
  .footer-main {
    grid-template-columns: 1fr;
  }
  .gallery-slide { flex-basis: 86vw; height: min(64svh, 650px); }
  .booking-panel__grid .button { justify-self: start; }
}

@media (max-width: 700px) {
  .recanto-facts { padding: 78px 0; }
  .recanto-facts__list { grid-template-columns: 1fr; }
  .recanto-facts__list article { min-height: 110px; }
  .gallery-cinema { padding: 84px 0 76px; }
  .gallery-cinema__head { margin-bottom: 38px; }
  .gallery-slide { flex-basis: calc(100vw - 46px); height: 66svh; }
  .gallery-arrow { display: none; }
  .gallery-cinema__status { grid-template-columns: auto 1fr; }
  .gallery-cinema__status small { display: none; }
  .gallery-slide__meta { grid-template-columns: 32px minmax(0, 1fr); }
  .gallery-slide__meta h3 { font-size: 34px; }
  .booking-panel { padding: 50px 0; }
  .booking-panel__brand img { width: 62px; height: 62px; }
  .footer-columns { grid-template-columns: 1fr; }
  .footer-contact-card a:first-of-type { font-size: 22px; }
}

/* Interactive Bento Gallery — adapted from the interaction model requested */
.interactive-bento-section {
  position: relative;
  padding: clamp(108px, 10vw, 168px) 0 clamp(96px, 9vw, 148px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(197,156,91,.09), transparent 28%),
    linear-gradient(180deg, #0c1b14 0%, #10251b 100%);
}
.interactive-bento-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  background-image: radial-gradient(rgba(255,255,255,.36) .55px, transparent .55px);
  background-size: 8px 8px;
}
.interactive-bento-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px clamp(34px, 6vw, 90px);
  align-items: start;
  margin-bottom: 54px;
}
.interactive-bento-copy {
  max-width: 980px;
  display: grid;
  gap: 20px;
}
.interactive-bento-copy .display-title { color: var(--white); }
.interactive-bento-copy p {
  margin: 0;
  max-width: 720px;
  color: rgba(255,250,242,.65);
  font-size: 15px;
  line-height: 1.8;
}
.interactive-bento-wrap {
  position: relative;
  z-index: 2;
}
.interactive-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 138px;
  grid-auto-flow: dense;
  gap: 12px;
  min-height: 888px;
}
.bento-media {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: #183024;
  box-shadow: 0 18px 60px rgba(0,0,0,.2);
  cursor: grab;
  user-select: none;
  touch-action: none;
  transform-origin: center;
  transition: transform .42s var(--ease), border-color .35s ease, box-shadow .35s ease, opacity .25s ease;
}
.bento-media:focus-visible {
  outline: 2px solid var(--hay);
  outline-offset: 4px;
}
.bento-media:hover {
  transform: scale(1.015);
  border-color: rgba(255,255,255,.24);
  box-shadow: 0 24px 74px rgba(0,0,0,.28);
}
.bento-media.is-dragging {
  z-index: 30;
  cursor: grabbing;
  opacity: .92;
  box-shadow: 0 30px 100px rgba(0,0,0,.45);
  transition: none;
}
.bento-media.is-drop-target {
  border-color: var(--hay);
  box-shadow: 0 0 0 3px rgba(203,169,102,.18), 0 24px 74px rgba(0,0,0,.28);
}
.bento-media--a,
.bento-media--c,
.bento-media--e,
.bento-media--g { grid-column: span 1; grid-row: span 3; }
.bento-media--b,
.bento-media--d,
.bento-media--f { grid-column: span 2; grid-row: span 2; }
.bento-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform .8s var(--ease), filter .65s ease;
}
.bento-media:hover > img { transform: scale(1.04); filter: saturate(1.05) contrast(1.02); }
.bento-media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6,12,9,.04) 34%, rgba(5,12,8,.82) 100%);
}
.bento-media__overlay {
  position: absolute;
  z-index: 2;
  inset: auto 18px 16px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: end;
  color: var(--white);
  pointer-events: none;
}
.bento-media__overlay > span {
  align-self: start;
  color: var(--hay);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}
.bento-media__overlay h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 2.2vw, 38px);
  font-weight: 500;
  line-height: 1;
}
.bento-media__overlay p {
  margin: 6px 0 0;
  color: rgba(255,250,242,.7);
  font-size: 11px;
  line-height: 1.5;
}
.interactive-bento-hint {
  margin: 20px 0 0;
  color: rgba(255,250,242,.46);
  font-size: 9px;
  letter-spacing: .14em;
  text-align: right;
  text-transform: uppercase;
}

.bento-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--white);
  background: rgba(3,8,5,.97);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .32s ease, visibility .32s ease;
}
.bento-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.bento-modal__stage {
  position: relative;
  width: min(1440px, 100%);
  height: min(82dvh, 900px);
  overflow: hidden;
  border-radius: 24px;
  background: #0b1811;
  box-shadow: 0 30px 110px rgba(0,0,0,.54);
}
.bento-modal__stage > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #08110c;
  transition: opacity .22s ease, transform .55s var(--ease);
}
.bento-modal__stage.is-changing > img { opacity: .2; transform: scale(.985); }
.bento-modal__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 56%, rgba(0,0,0,.82) 100%);
}
.bento-modal__caption {
  position: absolute;
  left: clamp(22px, 4vw, 58px);
  right: clamp(22px, 4vw, 58px);
  bottom: clamp(58px, 8vw, 88px);
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 8px 18px;
  align-items: end;
}
.bento-modal__caption > span {
  grid-row: span 2;
  align-self: start;
  color: var(--hay);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}
.bento-modal__caption h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 5vw, 74px);
  font-weight: 500;
  line-height: .95;
}
.bento-modal__caption p {
  margin: 0;
  max-width: 680px;
  color: rgba(255,250,242,.74);
  font-size: 13px;
  line-height: 1.65;
}
.bento-modal__close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 205;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  color: var(--white);
  background: rgba(9,22,15,.72);
  backdrop-filter: blur(14px);
  font-size: 28px;
  cursor: pointer;
  transition: transform .3s var(--ease), background .3s ease;
}
.bento-modal__close:hover { transform: rotate(8deg) scale(1.04); background: rgba(255,255,255,.12); }
.bento-modal__dock {
  position: fixed;
  z-index: 204;
  left: 50%;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(12,29,20,.78);
  box-shadow: 0 18px 60px rgba(0,0,0,.38);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  cursor: move;
  touch-action: none;
}
.bento-dock-thumb {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: #183024;
  cursor: pointer;
  transform: rotate(var(--thumb-rotate, 0deg));
  transition: transform .34s var(--ease), border-color .3s ease, box-shadow .3s ease;
}
.bento-dock-thumb:nth-child(odd) { --thumb-rotate: -8deg; }
.bento-dock-thumb:nth-child(even) { --thumb-rotate: 8deg; }
.bento-dock-thumb:hover {
  z-index: 3;
  transform: translateY(-8px) scale(1.16) rotate(0deg);
  border-color: rgba(255,255,255,.4);
}
.bento-dock-thumb.is-active {
  z-index: 4;
  transform: translateY(-9px) scale(1.16) rotate(0deg);
  border-color: rgba(255,255,255,.7);
  box-shadow: 0 10px 26px rgba(0,0,0,.38), 0 0 0 2px rgba(255,255,255,.12);
}
.bento-dock-thumb img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
body.bento-modal-open { overflow: hidden; }

@media (max-width: 1120px) {
  .interactive-bento-head { grid-template-columns: 150px minmax(0, 1fr); }
  .interactive-bento-grid { grid-auto-rows: 120px; min-height: 780px; }
}

@media (max-width: 900px) {
  .interactive-bento-head { grid-template-columns: 1fr; }
  .interactive-bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 160px;
    min-height: auto;
  }
  .bento-media--a,
  .bento-media--c,
  .bento-media--e,
  .bento-media--g { grid-column: span 1; grid-row: span 2; }
  .bento-media--b,
  .bento-media--d,
  .bento-media--f { grid-column: span 2; grid-row: span 2; }
  .bento-modal { padding: 12px; }
  .bento-modal__stage { height: 78dvh; border-radius: 18px; }
  .bento-modal__caption { bottom: 82px; }
}

@media (max-width: 640px) {
  .interactive-bento-section { padding: 84px 0 76px; }
  .interactive-bento-head { margin-bottom: 34px; }
  .interactive-bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
    gap: 10px;
  }
  .bento-media,
  .bento-media--a,
  .bento-media--b,
  .bento-media--c,
  .bento-media--d,
  .bento-media--e,
  .bento-media--f,
  .bento-media--g { grid-column: 1; grid-row: span 1; min-height: 260px; touch-action: pan-y; }
  .bento-media__overlay h3 { font-size: 30px; }
  .interactive-bento-hint { text-align: left; line-height: 1.6; }
  .bento-modal { padding: 0; }
  .bento-modal__stage { width: 100%; height: 100dvh; border-radius: 0; }
  .bento-modal__stage > img { object-fit: contain; }
  .bento-modal__caption { left: 18px; right: 18px; bottom: 106px; grid-template-columns: 46px 1fr; }
  .bento-modal__caption h3 { font-size: 38px; }
  .bento-modal__caption p { font-size: 12px; }
  .bento-modal__close { top: 14px; right: 14px; width: 48px; height: 48px; }
  .bento-modal__dock { bottom: 14px; max-width: calc(100vw - 24px); overflow-x: auto; cursor: default; }
  .bento-dock-thumb { width: 42px; height: 42px; }
}
