:root {
	--cream: #f5eddf;
	--paper: #fbf7ef;
	--beige: #e7d7c1;
	--brown: #2b1b16;
	--brown-2: #4a3028;
	--red: #8c3138;
	--red-dark: #662128;
	--rose: #c98e91;
	--green: #263f35;
	--gold: #b18a47;
	--muted: #76665e;
	--line: rgba(62,39,31,.16);
	--white: #fffdfa;
	--shadow: 0 25px 70px rgba(65,39,26,.13);
	--radius: 24px;
	--shell: min(1200px, calc(100% - 44px));
	--serif: Georgia, "Times New Roman", serif;
	--sans: Inter, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 132px; }
body { margin: 0; color: var(--brown); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
body::before { position: fixed; z-index: -1; inset: 0; content: ""; opacity: .18; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%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='.16'/%3E%3C/svg%3E"); pointer-events: none; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a, input, select, textarea, summary { outline-offset: 4px; }
:focus-visible { outline: 3px solid var(--gold); }
.shell { width: var(--shell); margin-inline: auto; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: fixed; z-index: 999; left: 14px; top: -100px; padding: 10px 15px; background: var(--gold); color: var(--brown); }
.skip-link:focus { top: 74px; }

.demo-notice { position: fixed; z-index: 200; top: 0; left: 0; right: 0; display: flex; min-height: 44px; align-items: center; justify-content: center; gap: 10px; padding: 7px 20px; color: #fff; background: var(--brown); font-size: 11px; letter-spacing: .01em; text-align: center; }
.demo-notice strong { color: #f2c878; text-transform: uppercase; letter-spacing: .1em; }
.demo-notice a { margin-left: 8px; color: #fff; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.demo-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 4px rgba(140,49,56,.28); }
.site-header { position: fixed; z-index: 100; top: 44px; left: 0; right: 0; color: #fff; transition: .3s; }
.site-header.is-scrolled { color: var(--brown); background: rgba(245,237,223,.92); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.nav-wrap { display: flex; min-height: 84px; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-ornament { display: grid; width: 45px; height: 45px; place-items: center; border: 1px solid rgba(177,138,71,.6); border-radius: 50%; color: var(--gold); font-family: var(--serif); font-size: 23px; }
.brand > span:last-child { display: flex; flex-direction: column; line-height: 1.05; }
.brand strong { font-family: var(--serif); font-size: 20px; font-style: italic; }
.brand small { margin-top: 5px; color: rgba(255,255,255,.65); font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.site-header.is-scrolled .brand small { color: var(--muted); }
.primary-nav { display: flex; align-items: center; gap: 22px; }
.primary-nav a { font-size: 11px; font-weight: 700; }
.primary-nav a:hover { color: var(--red); }
.primary-nav .nav-cta { padding: 11px 16px; border-radius: 99px; color: #fff; background: var(--red); }
.nav-toggle { display: none; padding: 10px; border: 0; color: inherit; background: none; }

.section { position: relative; padding: 120px 0; overflow: clip; }
.eyebrow { margin: 0 0 18px; color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { display: inline-block; width: 28px; height: 1px; margin: 0 10px 3px 0; content: ""; background: currentColor; }
h1, h2, h3 { margin-top: 0; font-family: var(--serif); font-weight: 500; line-height: 1.02; letter-spacing: -.035em; }
h1 { font-size: clamp(58px,7.5vw,108px); }
h2 { margin-bottom: 27px; font-size: clamp(46px,5.5vw,75px); }
h3 { font-size: 25px; }
h1 em, h2 em { color: var(--red); font-weight: 400; }
.lead { font-family: var(--serif); font-size: 23px; line-height: 1.5; }
.section-heading { max-width: 820px; margin-bottom: 58px; }
.section-heading > p:last-child { color: var(--muted); }
.centered { margin-inline: auto; text-align: center; }
.split-heading { display: grid; grid-template-columns: 1.15fr .85fr; max-width: none; align-items: end; gap: 70px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; min-height: 55px; align-items: center; justify-content: center; padding: 0 22px; border: 1px solid transparent; border-radius: 99px; font-size: 12px; font-weight: 800; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(43,27,22,.18); }
.button-red { color: #fff; background: var(--red); }
.button-green { color: #fff; background: var(--green); }
.button-light { color: var(--brown); background: var(--cream); border-color: rgba(255,255,255,.35); }
.button-gold { color: var(--brown); background: #d5b16d; }
.button-disabled { opacity: .55; cursor: not-allowed; }
.button-full { width: 100%; }
.text-link { display: inline-block; margin-top: 22px; padding-bottom: 3px; border-bottom: 1px solid var(--red); color: var(--red); font-size: 12px; font-weight: 800; }
.sample-note, .warning-box { display: inline-block; margin-top: 18px; padding: 10px 14px; border: 1px solid rgba(140,49,56,.25); border-radius: 6px; color: var(--red-dark); background: rgba(140,49,56,.07); font-size: 11px; font-weight: 700; }

.hero { position: relative; display: flex; min-height: 930px; align-items: center; overflow: hidden; color: #fff; background: var(--brown); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(30,16,12,.9) 0%,rgba(30,16,12,.72) 44%,rgba(30,16,12,.12) 75%),linear-gradient(0deg,rgba(28,14,10,.5),transparent 55%); }
.hero-content { position: relative; z-index: 2; padding-top: 120px; }
.hero-content > * { max-width: 720px; }
.hero .eyebrow { color: #e3bf7c; }
.hero h1 { margin-bottom: 25px; }
.hero h1 em { color: #f0cfd0; }
.hero-subtitle { margin: 0 0 12px; font-family: var(--serif); font-size: 22px; }
.hero-content > p:not(.eyebrow):not(.hero-subtitle):not(.trust-line) { color: #e7dbcf; }
.hero .button-row { margin-top: 30px; }
.trust-line { margin-top: 25px; color: #c8b8ac; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.hero-seal { position: absolute; z-index: 3; right: 6vw; bottom: 7vh; display: flex; width: 165px; height: 165px; align-items: center; justify-content: center; flex-direction: column; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; text-align: center; transform: rotate(7deg); backdrop-filter: blur(9px); }
.hero-seal span, .hero-seal small { font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.hero-seal strong { margin: 5px 0; font-family: var(--serif); font-size: 22px; font-style: italic; line-height: 1; }

.intro { background: var(--cream); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
.intro-copy > p:not(.lead) { color: var(--muted); }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 70px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.value-grid article { min-height: 250px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-grid article > span { color: var(--gold); font-family: var(--serif); font-style: italic; }
.value-grid h3 { margin: 55px 0 12px; }
.value-grid p { color: var(--muted); font-size: 13px; }

.menu-section { background: var(--paper); }
.menu-tabs { display: flex; justify-content: center; gap: 7px; margin-bottom: 35px; flex-wrap: wrap; }
.menu-tab { padding: 10px 16px; border: 1px solid var(--line); border-radius: 99px; color: var(--brown); background: transparent; font-size: 11px; cursor: pointer; }
.menu-tab.active { color: #fff; background: var(--green); border-color: var(--green); }
.menu-panels { width: min(930px,100%); margin: auto; }
.menu-panel { display: none; grid-template-columns: 1fr 1fr; gap: 0 40px; padding: 32px 42px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.menu-panel.active { display: grid; }
.menu-panel article { display: flex; align-items: start; justify-content: space-between; gap: 15px; padding: 18px 0; border-bottom: 1px dotted rgba(43,27,22,.25); }
.menu-panel h3 { margin: 0 0 4px; font-size: 19px; }
.menu-panel p { margin: 0; color: var(--muted); font-size: 11px; }
.menu-panel strong { flex: 0 0 auto; color: var(--red); font-family: var(--serif); font-size: 16px; }
.price-note { color: var(--muted); font-size: 10px; text-align: center; }
.menu-button { display: flex; width: max-content; margin: 24px auto 0; }

.favorites { background: var(--cream); }
.favorite-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.favorite-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.favorite-image { height: 310px; overflow: hidden; }
.favorite-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.favorite-card:hover img { transform: scale(1.04); }
.crop-coffee img { object-position: left bottom; }
.crop-breakfast img { object-position: center center; }
.crop-tart img { object-position: right center; }
.favorite-card > div:last-child { padding: 25px; }
.favorite-card span { color: var(--red); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.favorite-card h3 { margin: 14px 0 10px; }
.favorite-card p { color: var(--muted); font-size: 13px; }
.favorite-card strong { color: var(--red); font-family: var(--serif); }

.atmosphere { background: var(--green); color: #fff; }
.atmosphere-grid { display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 80px; }
.atmosphere-media { position: relative; }
.atmosphere-media img { width: 100%; height: 690px; object-fit: cover; border-radius: 180px 180px 14px 14px; }
.image-caption { position: absolute; left: 20px; bottom: 20px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.2); border-radius: 6px; background: rgba(24,40,33,.78); font-size: 9px; }
.atmosphere .eyebrow { color: #dfbf7d; }
.atmosphere h2 em { color: #e8c3c5; }
.atmosphere-copy > p:not(.eyebrow):not(.lead) { color: #c2cec7; }
.place-list { margin-top: 30px; border-top: 1px solid rgba(255,255,255,.15); }
.place-list div { display: grid; grid-template-columns: 55px 1fr; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.place-list span { color: #d4b56f; font-family: var(--serif); font-size: 11px; }

.seasons { background: var(--paper); }
.season-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.season-grid article { position: relative; min-height: 340px; padding: 28px; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); color: #fff; background: var(--brown); }
.season-grid article::after { position: absolute; z-index: 0; inset: 0; content: ""; background: linear-gradient(180deg,rgba(31,18,13,.14) 0%,rgba(31,18,13,.38) 42%,rgba(31,18,13,.9) 100%); }
.season-grid article > :not(.season-image) { position: relative; z-index: 1; }
.season-image { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.season-grid article:hover .season-image { transform: scale(1.035); }
.season-image-spring { object-position: 38% center; }
.season-image-summer { object-position: 62% center; }
.season-image-autumn { object-position: center; }
.season-image-winter { object-position: 52% center; }
.season-grid article > span { color: #f0cf8e; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.season-grid h3 { margin: 130px 0 15px; text-shadow: 0 2px 18px rgba(0,0,0,.25); }
.season-grid p { color: #eee3d9; font-size: 12px; }
.season-current i { position: absolute !important; z-index: 2 !important; right: 15px; top: 15px; padding: 6px 8px; border-radius: 5px; color: var(--brown); background: #efd79f; font-size: 8px; font-style: normal; }

.events { background: var(--cream); }
.event-list { border-top: 1px solid var(--line); }
.event-list article { display: grid; grid-template-columns: 70px .8fr 1.2fr; padding: 27px 0; border-bottom: 1px solid var(--line); }
.event-list article > span { color: var(--red); font-family: var(--serif); font-style: italic; }
.event-list h3, .event-list p { margin: 0; }
.event-list p { color: var(--muted); font-size: 13px; }
.demo-action { margin-top: 35px; }
.demo-action p { color: var(--red); font-size: 10px; font-weight: 700; }

.story { background: var(--red-dark); color: #fff; }
.story-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 100px; }
.story .eyebrow { color: #e6c47f; }
.story h2 em { color: #e7bbbe; }
.story-copy > p:not(.eyebrow):not(.lead) { color: #d6c1bc; }
.story .sample-note { color: #f3d79c; border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.06); }
.story-values { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.story-values span { display: grid; min-height: 125px; place-items: center; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); font-family: var(--serif); font-size: 18px; font-style: italic; }

.gallery { background: var(--paper); }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 300px; gap: 12px; }
.gallery-item { position: relative; padding: 0; overflow: hidden; border: 0; border-radius: 18px; background: var(--beige); cursor: zoom-in; }
.gallery-wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item span { position: absolute; left: 13px; bottom: 13px; padding: 7px 10px; border-radius: 4px; color: #fff; background: rgba(43,27,22,.72); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.portfolio-inline { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 25px; padding: 22px 25px; border: 1px solid var(--line); border-radius: 12px; background: var(--cream); font-family: var(--serif); font-style: italic; }
.portfolio-inline a { color: var(--red); font-family: var(--sans); font-size: 11px; font-style: normal; font-weight: 800; }
.lightbox { width: min(1000px,calc(100% - 30px)); padding: 10px; border: 0; border-radius: 16px; background: var(--brown); }
.lightbox::backdrop { background: rgba(24,14,10,.84); backdrop-filter: blur(5px); }
.lightbox img { width: 100%; max-height: 80vh; object-fit: contain; }
.lightbox-close { position: absolute; z-index: 2; right: 18px; top: 18px; display: grid; width: 38px; height: 38px; place-items: center; border: 0; border-radius: 50%; color: #fff; background: var(--red); font-size: 24px; cursor: pointer; }

.visit { background: var(--cream); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.map-demo { position: relative; min-height: 570px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #e9dfd0; }
.map-streets { position: absolute; inset: -20%; background-image: linear-gradient(28deg,transparent 47%,rgba(73,58,47,.15) 48%,rgba(73,58,47,.15) 51%,transparent 52%),linear-gradient(-35deg,transparent 47%,rgba(73,58,47,.12) 48%,rgba(73,58,47,.12) 51%,transparent 52%); background-size: 150px 130px; transform: rotate(5deg); }
.map-pin { position: absolute; left: 50%; top: 43%; display: grid; width: 68px; height: 68px; place-items: center; color: #fff; background: var(--red); border-radius: 50% 50% 50% 10%; font-size: 28px; transform: translate(-50%,-50%) rotate(-45deg); }
.map-pin::first-letter { transform: rotate(45deg); }
.map-demo strong, .map-demo small { position: absolute; left: 50%; transform: translateX(-50%); }
.map-demo strong { top: 58%; }
.map-demo small { top: 63%; color: var(--muted); }
.visit-details { display: grid; grid-template-columns: 1fr 1.35fr; gap: 30px; margin: 32px 0; padding-top: 26px; border-top: 1px solid var(--line); }
.visit-details small, .visit-details strong, .visit-details span { display: block; }
.visit-details small { color: var(--red); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.visit-details strong { margin: 10px 0; font-family: var(--serif); font-size: 21px; }
.visit-details span, .visit-details ul { color: var(--muted); font-size: 11px; }
.visit-details ul { margin: 10px 0 0; padding: 0; list-style: none; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: 90px; }
.faq .section-heading { position: sticky; top: 150px; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 22px 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 19px; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary i { color: var(--red); font-size: 22px; font-style: normal; transition: transform .2s; }
.accordion details[open] summary i { transform: rotate(45deg); }
.accordion details p { margin: -3px 45px 22px 0; color: var(--muted); font-size: 13px; }

.contact { background: var(--green); color: #fff; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 90px; }
.contact-copy { position: sticky; top: 150px; }
.contact .eyebrow { color: #dfbd78; }
.contact h2 em { color: #efc7c9; }
.contact-copy > p:not(.eyebrow) { color: #c2cec7; }
.contact-fact { display: flex; flex-direction: column; margin-top: 30px; padding: 20px; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; background: rgba(255,255,255,.05); }
.contact-fact strong { color: #e2bf78; font-size: 10px; text-transform: uppercase; letter-spacing: .15em; }
.contact-fact span { margin-top: 5px; font-size: 13px; }
.demo-form-card { padding: 35px; border-radius: var(--radius); color: var(--brown); background: var(--paper); box-shadow: 0 28px 80px rgba(0,0,0,.18); }
.form-warning { margin-bottom: 25px; padding: 13px; border: 1px solid rgba(140,49,56,.28); border-radius: 6px; color: var(--red-dark); background: rgba(140,49,56,.08); font-size: 11px; font-weight: 800; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.field-full { grid-column: 1 / -1; }
.demo-form label > span:first-child { display: block; margin-bottom: 6px; font-size: 10px; font-weight: 700; }
.demo-form input:not([type="checkbox"]), .demo-form select, .demo-form textarea { width: 100%; margin-bottom: 12px; padding: 12px 13px; border: 1px solid var(--line); border-radius: 6px; color: var(--brown); background: #fffdfa; }
.demo-form input:focus, .demo-form select:focus, .demo-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(177,138,71,.15); }
.demo-consent { display: grid; grid-template-columns: 17px 1fr; gap: 9px; align-items: start; margin: 5px 0 20px; color: var(--muted); font-size: 10px; }
.demo-consent input { margin-top: 3px; accent-color: var(--red); }
.demo-consent span { margin: 0 !important; font-size: inherit !important; }
.demo-success { margin-top: 18px; padding: 14px; border: 1px solid #6b8c74; border-radius: 6px; color: #24452f; background: #e1eee3; font-size: 12px; }

.final-cta { min-height: 720px; display: flex; align-items: center; color: #fff; text-align: center; background: linear-gradient(rgba(42,25,19,.62),rgba(42,25,19,.78)),url("../images/courtyard.webp") center/cover; }
.final-inner { max-width: 930px; }
.final-cta .ornament { display: block; margin-bottom: 18px; color: #e1bd78; font-size: 40px; }
.final-cta .eyebrow { color: #e1bd78; }
.final-cta .eyebrow::before { display: none; }
.final-cta h2 em { color: #f0c7c9; }
.final-cta p { max-width: 680px; margin: 0 auto 30px; color: #e8ddd3; }
.centered-buttons { justify-content: center; }
.final-cta small { display: block; margin-top: 20px; color: #cdbeb2; }

.site-footer { padding: 75px 0 25px; color: #d1c5b9; background: #211713; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr .9fr; gap: 55px; }
.footer-brand h2 { margin: 12px 0; color: #fff; font-size: 28px; font-style: italic; }
.footer-brand p, .footer-column p { color: #9f9186; font-size: 11px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; font-size: 11px; }
.footer-column > strong { margin-bottom: 7px; color: #ddb977; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.footer-column button { padding: 0; border: 0; color: inherit; background: none; cursor: pointer; }
.footer-project-link { color: #fff; border-bottom: 1px solid var(--gold); font-weight: 800; }
.fiction-notice { margin-top: 50px; padding: 16px; border: 1px solid rgba(221,185,119,.35); border-radius: 8px; color: #e5d0aa; background: rgba(221,185,119,.06); font-size: 11px; text-align: center; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #81756c; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.footer-bottom a { color: #c9ab73; }
.portfolio-cta { position: fixed; z-index: 190; right: 20px; bottom: 20px; display: grid; min-width: 275px; grid-template-columns: 1fr auto; padding: 13px 15px 13px 17px; border: 1px solid rgba(177,138,71,.72); border-radius: 12px; color: #fff; background: rgba(43,27,22,.93); box-shadow: 0 18px 55px rgba(43,27,22,.35),0 0 30px rgba(177,138,71,.12); backdrop-filter: blur(16px); transition: transform .2s,border-color .2s; }
.portfolio-cta:hover { border-color: #e0bd79; transform: translateY(-3px); }
.portfolio-cta-kicker { grid-column: 1; color: #e0bd79; font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.portfolio-cta strong { grid-column: 1; margin-top: 2px; font-size: 12px; }
.portfolio-cta-arrow { display: grid; width: 34px; height: 34px; grid-row: 1 / 3; grid-column: 2; align-self: center; place-items: center; margin-left: 18px; border-radius: 50%; background: var(--red); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease,transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.content-shell { width: min(820px,calc(100% - 40px)); margin: 0 auto; padding: 190px 0 100px; }
.content-shell h1 { font-size: clamp(48px,7vw,75px); }

@media (max-width: 1020px) {
	:root { --shell: min(100% - 38px,820px); }
	.primary-nav { gap: 13px; }
	.primary-nav a:not(.nav-cta) { display: none; }
	.intro-grid, .atmosphere-grid, .story-grid, .visit-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 55px; }
	.favorite-grid { grid-template-columns: 1fr 1fr; }
	.favorite-card:last-child { grid-column: 1 / -1; }
	.season-grid { grid-template-columns: 1fr 1fr; }
	.faq .section-heading, .contact-copy { position: static; }
	.footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
	.footer-project { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
	:root { --shell: calc(100% - 30px); }
	html { scroll-padding-top: 136px; }
	.demo-notice { min-height: 68px; align-content: center; flex-wrap: wrap; gap: 4px 8px; padding: 8px 12px; font-size: 9px; line-height: 1.35; }
	.demo-notice > span:not(.demo-dot) { flex: 1 0 70%; }
	.demo-notice a { margin-left: 0; }
	.site-header { top: 68px; }
	.nav-wrap { min-height: 66px; }
	.nav-toggle { display: grid; gap: 6px; }
	.nav-toggle > span:not(.screen-reader-text) { width: 24px; height: 1px; background: currentColor; }
	.primary-nav { position: absolute; display: none; top: 66px; left: 0; right: 0; padding: 18px 15px 25px; flex-direction: column; align-items: stretch; color: var(--brown); background: rgba(245,237,223,.98); border-top: 1px solid var(--line); box-shadow: 0 20px 40px rgba(43,27,22,.12); }
	.primary-nav.is-open { display: flex; }
	.primary-nav a:not(.nav-cta) { display: block; padding: 8px; }
	.primary-nav .nav-cta { text-align: center; }
	.section { padding: 88px 0; }
	h1 { font-size: clamp(50px,14vw,70px); }
	h2 { font-size: clamp(41px,12vw,55px); }
	.hero { min-height: 1030px; align-items: flex-end; }
	.hero-image { object-position: 62% center; }
	.hero-shade { background: linear-gradient(0deg,rgba(30,16,12,.96) 8%,rgba(30,16,12,.78) 63%,rgba(30,16,12,.22)); }
	.hero-content { padding: 0 0 120px; }
	.hero-content > * { max-width: 100%; }
	.hero-subtitle { font-size: 19px; }
	.hero-seal { right: 20px; top: 160px; bottom: auto; width: 125px; height: 125px; }
	.hero-seal strong { font-size: 17px; }
	.button-row { flex-direction: column; }
	.button { width: 100%; }
	.split-heading { grid-template-columns: 1fr; gap: 8px; }
	.value-grid, .favorite-grid, .season-grid { grid-template-columns: 1fr; }
	.favorite-card:last-child { grid-column: auto; }
	.menu-panel { grid-template-columns: 1fr; padding: 22px 20px; }
	.menu-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 5px; scrollbar-width: none; }
	.menu-tab { flex: 0 0 auto; }
	.favorite-image { height: 280px; }
	.atmosphere-media img { height: 520px; border-radius: 120px 120px 12px 12px; }
	.event-list article { grid-template-columns: 45px 1fr; gap: 10px; }
	.event-list p { grid-column: 2; }
	.story-values { grid-template-columns: 1fr 1fr; }
	.gallery-grid { display: flex; margin-right: -15px; overflow-x: auto; gap: 10px; padding: 0 15px 18px 0; scroll-snap-type: x mandatory; }
	.gallery-item, .gallery-wide { flex: 0 0 82vw; height: 360px; grid-column: auto; scroll-snap-align: start; }
	.portfolio-inline { align-items: flex-start; flex-direction: column; }
	.map-demo { min-height: 430px; }
	.visit-details, .form-grid { grid-template-columns: 1fr; }
	.field-full { grid-column: auto; }
	.demo-form-card { padding: 24px 18px; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.footer-brand, .footer-project { grid-column: 1 / -1; }
	.portfolio-cta { right: 15px; bottom: 12px; left: 15px; min-width: 0; }
	body { padding-bottom: 67px; }
}

@media (max-width: 430px) {
	.demo-dot { display: none; }
	.brand small { display: none; }
	.footer-grid { grid-template-columns: 1fr; }
	.footer-brand, .footer-project { grid-column: auto; }
	.footer-bottom { flex-direction: column; gap: 7px; }
}

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