@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Libre+Caslon+Display&display=swap');

:root {
  --paper: #f4efe4;
  --white: #fffdf7;
  --wine: #702c2b;
  --ink: #242722;
  --olive: #68715a;
  --sun: #ef7b36;
  --line: rgba(36,39,34,.19);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "DM Sans", sans-serif; font-weight: 300; }
::selection { background: var(--sun); color: white; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { width: 100%; display: block; }
h1, h2, h3, p { margin-top: 0; }

.site-grain {
  position: fixed; z-index: 100; inset: 0; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed; z-index: 60; top: 0; left: 0; right: 0; min-height: 84px;
  display: grid; grid-template-columns: 220px 1fr 165px; align-items: center;
  padding: 0 3vw; color: var(--ink); background: var(--paper); border-bottom: 1px solid var(--line);
  transition: min-height .3s, box-shadow .3s;
}
.site-header.scrolled { min-height: 68px; box-shadow: 0 10px 40px rgba(43,35,27,.09); }
.wordmark, .footer-mark { font-weight: 600; font-size: 1.45rem; letter-spacing: -.06em; }
.wordmark span, .footer-mark span { color: var(--sun); }
.nav { display: flex; justify-content: center; gap: clamp(12px,1.65vw,28px); }
.nav a { position: relative; padding: 31px 0 26px; white-space: nowrap; font-size: .66rem; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }
.nav a::before { content: ""; position: absolute; left: 0; bottom: 19px; width: 100%; height: 5px; border-radius: 5px; background: var(--sun); transform: scaleX(0); transition: transform .25s; }
.nav a:hover::before, .nav a.active::before { transform: scaleX(1); }
.nav small { display: none; }
.header-book {
  justify-self: end; background: var(--wine); color: white; border-radius: 999px;
  padding: 13px 17px; font-size: .65rem; text-transform: uppercase; letter-spacing: .12em;
  display: flex; align-items: center; gap: 12px; transition: background .25s, transform .25s;
}
.header-book:hover { background: var(--sun); transform: translateY(-2px); }
.menu-toggle { display: none; }

.floating-book {
  position: fixed; z-index: 40; right: 22px; bottom: 22px; width: 86px; height: 86px;
  display: flex; align-items: center; justify-content: center; gap: 5px; border-radius: 50%;
  color: white; background: var(--sun); font-size: .58rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; box-shadow: 0 12px 35px rgba(92,41,21,.25); transition: transform .25s;
}
.floating-book:hover { transform: scale(1.07) rotate(5deg); }

.hero {
  --pointer-x: 35%; --pointer-y: 40%;
  min-height: 100svh; position: relative; overflow: hidden; padding-top: 84px;
  display: grid; grid-template-columns: 58% 42%; background: var(--wine); color: white;
}
.hero::after { content: ""; position: absolute; z-index: 2; inset: 84px 0 0; pointer-events: none; background: radial-gradient(380px circle at var(--pointer-x) var(--pointer-y),rgba(239,123,54,.22),transparent 72%); }
.hero-image { position: absolute; z-index: 0; top: 84px; bottom: 0; left: 43%; right: 0; background: url("/images/hero.jpeg") center/cover; clip-path: polygon(18% 0,100% 0,100% 100%,0 100%); animation: reveal-image 1.1s ease both; }
@keyframes reveal-image { from { clip-path: polygon(100% 0,100% 0,100% 100%,100% 100%); } to { clip-path: polygon(18% 0,100% 0,100% 100%,0 100%); } }
.hero-shade { position: absolute; z-index: 1; top: 84px; bottom: 0; left: 43%; right: 0; background: linear-gradient(90deg,rgba(112,44,43,.38),transparent 42%),linear-gradient(0deg,rgba(40,20,18,.48),transparent 55%); }
.hero-frame { position: absolute; z-index: 3; left: 18px; right: 18px; top: 102px; bottom: 18px; border: 1px solid rgba(255,255,255,.24); }
.hero-copy { position: relative; z-index: 6; grid-column: 1; align-self: end; padding: 7vw 5vw 7vh 6.5vw; }
.eyebrow, .section-number { font-size: .64rem; font-weight: 600; text-transform: uppercase; letter-spacing: .2em; }
.eyebrow.light { color: #ffbd8c; }
.hero h1, .page-hero h1 {
  font-family: "Libre Caslon Display", serif; font-weight: 400; letter-spacing: -.055em;
  font-size: clamp(4.3rem,8.3vw,8rem); line-height: .82; margin: 28px 0 42px;
}
.hero h1 { font-size: clamp(4.7rem,9vw,8.8rem); text-shadow: 0 8px 35px rgba(50,16,16,.18); }
.hero h1 em { color: #ffae71; font-weight: 400; }
.round-link {
  width: auto; height: auto; border: 0; display: inline-flex; align-items: center; gap: 13px;
  padding: 16px 21px; border-radius: 999px; background: var(--wine); color: white;
  font-size: .66rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; transition: .25s;
}
.round-link:hover { background: var(--sun); transform: translateX(5px); }
.hero-note { z-index: 6; position: absolute; right: 3.5vw; bottom: 48px; color: white; font-family: "Libre Caslon Display",serif; font-size: 1.25rem; line-height: 1.35; text-align: right; }
.scroll-note { z-index: 4; position: absolute; right: 40px; top: 50%; color: white; transform: rotate(90deg) translateX(50%); transform-origin: right; font-size: .55rem; text-transform: uppercase; letter-spacing: .2em; }
.hero-stamp {
  z-index: 7; position: absolute; right: 42px; top: 125px; width: 95px; height: 95px; padding: 17px;
  border-radius: 50%; color: white; background: var(--sun); display: grid; grid-template-columns: 1fr 1fr; place-items: center; transform: rotate(8deg);
}
.hero-stamp strong { font-family: "Libre Caslon Display",serif; font-size: 2rem; font-weight: 400; }
.hero-stamp span { font-size: .45rem; line-height: 1.4; text-transform: uppercase; letter-spacing: .1em; }
.hero-ghost { position: absolute; z-index: 1; left: -1vw; bottom: -3vw; color: rgba(255,255,255,.035); font: 400 15vw/.75 "Libre Caslon Display",serif; letter-spacing: -.08em; white-space: nowrap; pointer-events: none; }
.hero-dish-card { position: absolute; z-index: 7; object-fit: cover; border: 8px solid var(--paper); box-shadow: 0 25px 65px rgba(36,15,14,.3); pointer-events: none; }
.hero-dish-card.one { width: 170px; height: 220px; right: 18vw; top: 19%; transform: rotate(-7deg); border-radius: 90px 90px 8px 8px; }
.hero-dish-card.two { width: 135px; height: 165px; right: 7vw; top: 42%; transform: rotate(7deg); }

.ticker { overflow: hidden; padding: 17px 0; background: var(--wine); color: white; }
.ticker > div { width: max-content; display: flex; gap: 26px; align-items: center; animation: ticker 28s linear infinite; }
.ticker span { font-family: "Libre Caslon Display",serif; font-size: 1rem; }
.ticker i { color: var(--sun); font-size: .65rem; font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.intro {
  position: relative; display: grid; grid-template-columns: .6fr 1.6fr 1.25fr; gap: 6vw;
  padding: 11vw 7vw 10vw; background: var(--white); border-bottom: 1px solid var(--line); overflow: hidden;
}
.intro::before { content: ""; position: absolute; width: 190px; height: 190px; border: 45px solid var(--sun); border-radius: 50%; right: -90px; top: -90px; opacity: .8; }
.intro h2, .feature h2, .home-gallery h2, .editorial h2, .voucher h2, .contact h2 {
  font-family: "Libre Caslon Display",serif; font-size: clamp(2.7rem,5vw,5.2rem); line-height: .96; font-weight: 400; letter-spacing: -.045em;
}
.intro h2 { color: var(--wine); position: relative; }
.intro h2::after { content: ""; display: block; width: 72px; height: 8px; margin-top: 32px; border-radius: 8px; background: var(--sun); }
.intro-copy { padding-top: 6px; max-width: 620px; }
.intro-copy p { font-size: .88rem; line-height: 1.8; margin-bottom: .5rem; }

.feature {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 0;
  min-height: 850px; background: var(--ink); color: white; overflow: hidden;
}
.feature::before { content: "MENU"; position: absolute; left: -1vw; top: -1vw; color: rgba(255,255,255,.035); font: 400 15vw/1 "Libre Caslon Display",serif; }
.feature-photo { padding: 6vw 0 6vw 6vw; position: relative; z-index: 1; }
.feature-photo::after { content: ""; position: absolute; left: 3vw; bottom: 3vw; width: 45%; height: 38%; border: 1px solid var(--sun); border-radius: 50%; pointer-events: none; }
.feature-photo img { height: 100%; object-fit: cover; border-radius: 220px 220px 10px 10px; filter: saturate(.9) contrast(1.03); }
.feature-copy { align-self: center; padding: 9vw 8vw; }
.feature-copy h2 { margin: 38px 0; }
.feature-copy h2 em { font-weight: 400; color: #ffd0ab; }
.feature-copy p { color: rgba(255,255,255,.74); font-size: .88rem; margin-bottom: .5rem; }
.text-link { display: inline-flex; align-items: center; gap: 16px; margin-top: 30px; padding-bottom: 7px; border-bottom: 2px solid currentColor; font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .15em; }
.text-link span { transition: transform .25s; }
.text-link:hover span { transform: translate(4px,-4px); }
.feature-orbit { position: absolute; right: 25px; bottom: 24px; display: flex; gap: 8px; font-size: .48rem; letter-spacing: .15em; transform: rotate(-8deg); }
.feature-orbit b { color: #ffd0ab; }

.experience-strip { display: grid; grid-template-columns: repeat(3,1fr); background: var(--sun); color: var(--wine); }
.experience-strip > div { min-height: 180px; padding: 38px 4vw; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid rgba(112,44,43,.28); }
.experience-strip span { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--wine); border-radius: 50%; font-size: .6rem; }
.experience-strip strong { max-width: 260px; font: 400 clamp(1.6rem,2.4vw,2.8rem)/1 "Libre Caslon Display",serif; }

.home-gallery {
  display: grid; grid-template-columns: .8fr 1.2fr 1fr; gap: 24px; align-items: end;
  padding: 11vw 5vw; background: var(--paper); position: relative; overflow: hidden;
}
.home-gallery::before { content: "MOMENTS"; position: absolute; right: -2vw; top: 1vw; color: rgba(112,44,43,.055); font: 400 13vw/1 "Libre Caslon Display",serif; }
.gallery-heading { padding: 0 2vw 3vw; }
.gallery-heading h2 { color: var(--wine); margin: 34px 0; }
.home-gallery img { position: relative; z-index: 1; height: 590px; object-fit: cover; border-radius: 8px; box-shadow: 0 26px 60px rgba(47,35,27,.14); }
.home-gallery img:last-child { height: 430px; border-radius: 190px 190px 8px 8px; transform: translateY(45px); }

.page-hero {
  min-height: 69vh; position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 150px 7vw 5vw; color: white; background-size: cover; background-position: center; background-color: var(--wine); background-blend-mode: multiply; overflow: hidden;
}
.page-hero::before { content: ""; position: absolute; inset: 110px 24px 24px; border: 1px solid rgba(255,255,255,.45); }
.page-hero::after { content: ""; position: absolute; width: 330px; height: 330px; right: -70px; bottom: -120px; border: 65px solid var(--sun); border-radius: 50%; mix-blend-mode: screen; opacity: .85; }
.page-hero > * { position: relative; z-index: 1; }
.page-hero .eyebrow { color: #ffbe8d; }
.page-hero h1 { max-width: 1050px; margin-bottom: 0; font-size: clamp(4.2rem,8vw,8rem); }

.menu-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; padding: 5vw 7vw;
  background: var(--white); border-bottom: 1px solid var(--line);
}
.menu-intro p { max-width: 570px; line-height: 1.75; }
.menu-filter {
  position: sticky; z-index: 30; top: 68px; display: flex; overflow-x: auto; scrollbar-width: none;
  padding: 0 5vw; background: rgba(244,239,228,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px);
}
.menu-filter button { flex: 0 0 auto; border: 0; background: none; padding: 23px 20px; cursor: pointer; color: var(--ink); font-size: .64rem; font-weight: 500; letter-spacing: .12em; }
.menu-filter button.selected { color: white; background: var(--wine); }
.menu-list { padding: 2vw 7vw 9vw; }
.menu-section { display: grid; grid-template-columns: .68fr 2fr; gap: 8vw; padding: 7vw 0; border-bottom: 1px solid var(--line); }
.menu-section:nth-child(even) { background: var(--white); margin-inline: -7vw; padding-inline: 7vw; }
.menu-section header { display: flex; gap: 24px; align-items: flex-start; }
.menu-section header span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--sun); color: white; font-size: .65rem; }
.menu-section h2 { color: var(--wine); font: 400 clamp(2.7rem,4vw,4.5rem)/.95 "Libre Caslon Display",serif; }
.menu-items { display: grid; grid-template-columns: 1fr 1fr; column-gap: 5vw; }
.menu-item { padding: 0 0 26px; margin-bottom: 26px; border-bottom: 1px solid rgba(36,39,34,.12); transition: border-color .25s, transform .25s; }
.menu-item:hover { transform: translateX(6px); border-color: var(--sun); }
.menu-item h3 { font: 400 1.48rem/1.2 "Libre Caslon Display",serif; margin-bottom: 8px; }
.menu-item p { color: #67695f; font-size: .78rem; line-height: 1.65; margin-bottom: 0; }

.gallery-grid { padding: 18px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; background: var(--paper); }
.gallery-grid button { position: relative; overflow: hidden; padding: 0; border: 0; border-radius: 8px; background: var(--wine); cursor: zoom-in; }
.gallery-grid button:nth-child(3n+1) { grid-row: span 2; border-radius: 200px 200px 8px 8px; }
.gallery-grid img { height: 50vw; min-height: 350px; max-height: 720px; object-fit: cover; transition: transform .6s, opacity .4s; }
.gallery-grid button:not(:nth-child(3n+1)) img { height: 25vw; min-height: 250px; }
.gallery-grid button:hover img { transform: scale(1.035); opacity: .84; }
.gallery-grid button > span { position: absolute; left: 20px; bottom: 20px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--sun); color: white; font-size: .6rem; }
.lightbox { position: fixed; z-index: 110; inset: 0; padding: 6vh 8vw; display: grid; place-items: center; color: white; background: rgba(61,25,24,.97); }
.lightbox > button { position: absolute; top: 3vh; right: 3vw; border: 0; background: none; color: white; cursor: pointer; }
.lightbox img { width: auto; max-width: 100%; max-height: 75vh; object-fit: contain; }
.lightbox div { width: min(620px,80vw); display: flex; justify-content: space-between; align-items: center; }
.lightbox div button { padding: 20px; border: 0; color: white; background: none; cursor: pointer; }

.editorial { padding: 10vw 7vw; background: var(--white); }
.editorial.split { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; }
.editorial h2 { color: var(--wine); margin-top: 32px; }
.prose { border-left: 1px solid var(--line); padding-left: 4vw; }
.prose p { line-height: 1.8; margin-bottom: 1.15rem; }
.voucher { min-height: 650px; display: grid; grid-template-columns: .78fr 1.3fr; gap: 7vw; align-items: center; padding: 8vw 7vw; background: var(--wine); color: white; }
.voucher > span { font: 400 clamp(8rem,20vw,18rem)/.7 "Libre Caslon Display",serif; color: var(--sun); }
.voucher h2 { max-width: 730px; }
.voucher p { margin-bottom: .45rem; color: rgba(255,255,255,.78); }
.quiet-image { padding: 0 7vw 10vw; background: var(--white); }
.quiet-image img { height: 60vh; object-fit: cover; border-radius: 160px 160px 8px 8px; }

.contact { display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; padding: 9vw 7vw; background: var(--white); }
.contact-lead h2, .contact-form h2 { color: var(--wine); }
.contact-lead > p { max-width: 680px; line-height: 1.8; }
.contact-details { margin-top: 5vw; padding-top: 3vw; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 4vw; }
.contact-details small { color: var(--wine); font-weight: 600; text-transform: uppercase; letter-spacing: .15em; }
.contact-details p { margin-top: 17px; line-height: 1.7; }
.contact-form { padding: 4vw; border: 1px solid var(--line); border-radius: 160px 160px 8px 8px; background: var(--paper); }
.contact-form h2 { font-size: 3.2rem; padding-top: 2vw; }
.contact-form label { display: block; margin: 21px 0; color: var(--wine); font-size: .63rem; font-weight: 600; text-transform: uppercase; letter-spacing: .13em; }
.contact-form input, .contact-form textarea { display: block; width: 100%; padding: 11px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; outline: none; resize: vertical; color: var(--ink); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--sun); }
.contact-form button { padding: 15px 20px; border: 0; border-radius: 999px; background: var(--wine); color: white; cursor: pointer; font-size: .64rem; font-weight: 600; text-transform: uppercase; letter-spacing: .13em; }

footer {
  position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 1.5fr .7fr; gap: 4vw;
  align-items: start; padding: 6vw 7vw 3vw; background: var(--wine); color: white;
}
footer::after { content: "M"; position: absolute; right: -2vw; bottom: -8vw; color: rgba(255,255,255,.04); font: 25vw/.7 "Libre Caslon Display",serif; }
footer p { margin: 0; color: rgba(255,255,255,.72); font-size: .75rem; line-height: 1.8; }
.footer-links { display: flex; flex-direction: column; gap: 11px; align-items: flex-start; font-size: .68rem; font-weight: 500; text-transform: uppercase; letter-spacing: .14em; }
.copyright { grid-column: 1/-1; margin-top: 4vw; padding-top: 27px; border-top: 1px solid rgba(255,255,255,.2); }
.footer-mark span { color: #ffae75; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.22,.75,.2,1); }
.reveal.revealed { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr auto 1fr; }
  .menu-toggle { z-index: 2; display: flex; flex-direction: column; gap: 6px; padding: 14px; border: 0; background: none; }
  .menu-toggle i { width: 26px; height: 1px; background: var(--ink); }
  .nav { position: fixed; z-index: 1; inset: 0; padding: 14vh 9vw; display: flex; flex-direction: column; align-items: stretch; justify-content: center; background: var(--wine); color: white; transform: translateY(-100%); transition: transform .45s cubic-bezier(.7,0,.2,1); }
  .nav.open { transform: translateY(0); }
  .nav a { display: flex; gap: 28px; padding: 8px 0; font: 400 clamp(2.2rem,6vw,4.5rem)/1 "Libre Caslon Display",serif; text-transform: none; }
  .nav a::before { display: none; }
  .nav small { width: 24px; display: inline-block; color: #ffae75; font: 500 .6rem "DM Sans",sans-serif; }
  .site-header.menu-open .menu-toggle i { background: white; }
  .site-header.menu-open .wordmark { color: white; z-index: 2; }
  .intro { grid-template-columns: 1fr 2fr; }.intro-copy { grid-column: 2; }
  .menu-section { grid-template-columns: 1fr; gap: 3vw; }
}

@media (max-width: 720px) {
  .site-header { min-height: 70px; padding: 0 18px; grid-template-columns: 1fr auto; }
  .site-header.scrolled { min-height: 64px; }.header-book { display: none; }.wordmark { font-size: 1.22rem; }.menu-toggle { justify-self: end; }
  .hero { min-height: 100svh; padding-top: 70px; display: block; }
  .hero::after { inset: 70px 0 0; }
  .hero-image { top: 46%; left: 0; clip-path: polygon(0 8%,100% 0,100% 100%,0 100%); }.hero-shade { top: 46%; left: 0; background: linear-gradient(0deg,rgba(40,20,18,.55),transparent 65%); }
  .hero-frame { left: 12px; right: 12px; top: calc(42% + 12px); bottom: 12px; }
  .hero-copy { position: relative; z-index: 8; padding: 9vh 22px 0; }
  .hero h1 { font-size: 19vw; margin-bottom: 28px; }.hero-note { left: 32px; right: auto; bottom: 30px; font-size: 1.02rem; text-align: left; }.scroll-note { display: none; }
  .hero-stamp { width: 72px; height: 72px; right: 24px; top: calc(46% + 34px); padding: 12px; }.hero-stamp strong { font-size: 1.5rem; }.hero-stamp span { font-size: .38rem; }
  .hero-dish-card.one { width: 92px; height: 118px; right: 28px; top: 64%; border-width: 5px; }
  .hero-dish-card.two { display: none; }.hero-ghost { font-size: 28vw; bottom: 5%; }
  .round-link { padding: 13px 17px; font-size: .58rem; }
  .intro { grid-template-columns: 1fr; padding: 21vw 22px; }.intro h2,.intro-copy { grid-column: 1; }
  .feature { grid-template-columns: 1fr; }.feature-photo { height: 70vh; padding: 22px; }.feature-photo img { border-radius: 120px 120px 8px 8px; }.feature-copy { padding: 18vw 22px; }
  .experience-strip { grid-template-columns: 1fr; }.experience-strip > div { min-height: 150px; padding: 30px 22px; border-right: 0; border-bottom: 1px solid rgba(112,44,43,.28); }
  .home-gallery { grid-template-columns: 1fr 1fr; padding: 19vw 22px; }.gallery-heading { grid-column: 1/-1; }.home-gallery img { height: 350px; }.home-gallery img:last-child { height: 280px; transform: translateY(24px); }
  .page-hero { min-height: 64vh; padding: 120px 22px 42px; }.page-hero::before { inset: 90px 12px 12px; }.page-hero::after { width: 110px; height: 110px; border-width: 22px; right: -18px; bottom: -25px; }
  .page-hero h1 { font-size: 17vw; overflow-wrap: anywhere; }
  .menu-intro { grid-template-columns: 1fr; gap: 14px; padding: 15vw 22px; }.menu-filter { top: 64px; padding-left: 4px; }
  .menu-list { padding: 0 22px 18vw; }.menu-section { padding: 18vw 0; }.menu-section:nth-child(even) { margin-inline: -22px; padding-inline: 22px; }.menu-items { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; padding: 8px; gap: 8px; }.gallery-grid button:nth-child(3n+1) { grid-row: auto; border-radius: 120px 120px 8px 8px; }
  .gallery-grid img,.gallery-grid button:not(:nth-child(3n+1)) img { height: 70vh; min-height: 380px; }
  .editorial.split,.voucher,.contact { grid-template-columns: 1fr; padding: 19vw 22px; }.prose { padding-left: 0; border-left: 0; }.voucher { gap: 65px; }.voucher > span { font-size: 39vw; }
  .contact-details { grid-template-columns: 1fr; }.contact-form { padding: 12vw 22px 10vw; border-radius: 100px 100px 8px 8px; }
  footer { grid-template-columns: 1fr; padding: 17vw 22px 8vw; }.copyright { grid-column: 1; }
  .floating-book { width: 72px; height: 72px; right: 13px; bottom: 13px; font-size: .49rem; }
}

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

/* Static HTML state helpers (no visual changes to the original design). */
[hidden] { display: none !important; }
body.lightbox-open { overflow: hidden; }
