:root {
  --sand: #e8e4d7;
  --sand-soft: #f2efe7;
  --paper: #fbfaf6;
  --ink: #1f211d;
  --muted: #66685e;
  --sage: #9da18d;
  --forest: #283d2e;
  --lime: #d5ed72;
  --white: #fff;
  --line: rgba(31, 33, 29, .13);
  --shadow: 0 24px 70px rgba(28, 31, 25, .14);
  --serif: "Newsreader", Georgia, serif;
  --sans: "Instrument Sans", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--sand); color: var(--ink); font-family: var(--sans); overflow-x: hidden; }
body.lightbox-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
.container { width: min(1220px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 120px 0; }
.section-soft { background: var(--sand-soft); border-block: 1px solid rgba(31,33,29,.05); }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 300; background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow::before { width: 8px; height: 8px; background: #4a7757; border-radius: 50%; box-shadow: 0 0 0 5px rgba(74,119,87,.12); content: ""; }
.eyebrow-light { color: rgba(255,255,255,.68); }
.eyebrow-light::before { background: var(--lime); box-shadow: 0 0 0 5px rgba(213,237,114,.15); }
.display-title { margin: 17px 0 25px; max-width: 830px; font: 300 clamp(48px, 6vw, 82px)/.98 var(--serif); letter-spacing: -.045em; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 46px; }
.section-heading p { max-width: 430px; margin: 0 0 6px; color: var(--muted); font-size: 17px; line-height: 1.65; }

.button { min-height: 55px; padding: 0 25px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; border: 1px solid transparent; border-radius: 999px; font-weight: 500; transition: transform .25s ease, background .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding-inline: 19px; font-size: 13px; }
.button-dark { background: var(--ink); color: var(--sand-soft); }
.button-accent { background: var(--lime); color: var(--ink); box-shadow: 0 13px 30px rgba(125,151,38,.18); }
.button-accent:hover { background: #c8e75b; }
.button-ghost { background: transparent; border-color: rgba(31,33,29,.2); }
.button-ghost:hover { background: rgba(31,33,29,.05); }
.button-light { background: var(--paper); color: var(--ink); }
.text-link { display: inline-block; border-bottom: 1px solid currentColor; padding-bottom: 3px; font-weight: 500; }

.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(31,33,29,.08); background: rgba(232,228,215,.9); backdrop-filter: blur(15px); }
.nav { min-height: 76px; display: flex; align-items: center; gap: 34px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark { width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid rgba(31,33,29,.3); border-radius: 50% 50% 44% 44%; font: 400 21px var(--serif); }
.brand strong, .brand small { display: block; }
.brand strong { line-height: 1; }
.brand small { margin-top: 5px; color: var(--muted); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.nav-links { display: flex; gap: 27px; color: var(--muted); font-size: 13px; }
.nav-links a { position: relative; }
.nav-links a::after { position: absolute; right: 0; bottom: -6px; left: 0; height: 1px; background: var(--ink); content: ""; transform: scaleX(0); transition: transform .25s; }
.nav-links a:hover::after { transform: scaleX(1); }
.menu-button { width: 44px; height: 44px; display: none; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
.menu-button span { position: absolute; width: 17px; height: 1px; background: var(--ink); transition: transform .25s; }
.menu-button span:first-child { transform: translateY(-3px); }
.menu-button span:last-child { transform: translateY(3px); }
.menu-button[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

.hero { padding: 72px 0 116px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 76px; }
.hero-copy h1 { margin: 22px 0 30px; max-width: 720px; font: 300 clamp(72px, 8vw, 116px)/.84 var(--serif); letter-spacing: -.055em; }
.hero-copy h1 em { display: block; color: #6e7165; font-weight: 300; }
.hero-copy > p { max-width: 620px; color: var(--muted); font-size: 19px; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 33px; }
.hero-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; margin: 46px 0 0; padding: 25px 0 0; border-top: 1px solid var(--line); list-style: none; }
.hero-facts strong, .hero-facts span { display: block; }
.hero-facts strong { font: 400 25px var(--serif); }
.hero-facts span { margin-top: 3px; color: var(--muted); font-size: 11px; }
.hero-visual { position: relative; min-height: 675px; display: flex; align-items: center; justify-content: end; padding-block: 26px 50px; }
.hero-arch { position: relative; width: min(100%, 465px); aspect-ratio: .74; margin: 0; overflow: hidden; border-radius: 240px 240px 32px 32px; box-shadow: var(--shadow); }
.hero-arch::after { position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,22,16,.67), transparent 55%); content: ""; }
.hero-arch img { height: 100%; object-fit: cover; }
.hero-arch figcaption { position: absolute; right: 28px; bottom: 27px; left: 28px; z-index: 1; color: #fff; }
.hero-arch figcaption span, .hero-arch figcaption strong { display: block; }
.hero-arch figcaption span { margin-bottom: 4px; color: rgba(255,255,255,.7); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.hero-arch figcaption strong { font: 300 29px var(--serif); }
.hero-postcard { position: absolute; bottom: 7px; left: -22px; z-index: 3; width: 220px; margin: 0; padding: 10px 10px 17px; background: var(--paper); box-shadow: 0 22px 55px rgba(27,31,24,.22); transform: rotate(-5deg); transition: transform .35s; }
.hero-postcard:hover { transform: rotate(-1deg) translateY(-4px); }
.hero-postcard img { height: 150px; object-fit: cover; }
.hero-postcard figcaption { padding-top: 12px; font: 400 19px var(--serif); text-align: center; }
.rating-card { position: absolute; top: 90px; right: -34px; z-index: 2; width: 175px; padding: 18px; border-radius: 17px; background: var(--forest); color: #fff; box-shadow: 0 20px 45px rgba(23,39,27,.25); transform: rotate(3deg); }
.rating-card strong, .rating-card small { display: block; }
.rating-card strong { margin-top: 5px; font: 300 35px var(--serif); }
.rating-card small { color: rgba(255,255,255,.67); font-size: 10px; }
.stars, .review-stars { color: #e6c866; letter-spacing: .06em; }

.booking-ribbon { position: relative; z-index: 5; margin-top: -41px; }
.booking-panel { display: grid; grid-template-columns: 1fr 1fr .8fr auto; align-items: center; padding: 9px; border: 1px solid rgba(31,33,29,.1); border-radius: 24px; background: var(--paper); box-shadow: 0 20px 55px rgba(31,33,29,.1); }
.booking-panel > div { padding: 12px 23px; border-right: 1px solid var(--line); }
.booking-panel span, .booking-panel strong { display: block; }
.booking-panel span { margin-bottom: 6px; color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.booking-panel strong { font-size: 14px; font-weight: 500; }

.intro-grid { display: grid; grid-template-columns: .34fr 1fr; gap: 80px; align-items: start; }
.intro-grid .display-title { margin-top: 0; }
.intro-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.intro-columns p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.72; }
.panorama { position: relative; margin-top: 70px; }
.panorama img { height: min(56vw, 620px); object-fit: cover; border-radius: 30px 200px 30px 30px; }
.panorama-note { position: absolute; bottom: 24px; left: 24px; min-width: 235px; padding: 19px 22px; border: 1px solid rgba(255,255,255,.22); border-radius: 16px; background: rgba(21,31,22,.68); color: #fff; backdrop-filter: blur(12px); }
.panorama-note strong, .panorama-note span { display: block; }
.panorama-note strong { font: 300 24px var(--serif); }
.panorama-note span { margin-top: 4px; color: rgba(255,255,255,.7); font-size: 11px; }

.experience-grid { display: grid; grid-template-columns: 1.1fr .9fr; grid-template-rows: 360px 360px 430px; gap: 18px; }
.experience-card { position: relative; overflow: hidden; border-radius: 27px; background: #304533; color: #fff; }
.experience-card img { height: 100%; object-fit: cover; transition: transform .7s ease; }
.experience-card:hover img { transform: scale(1.035); }
.experience-card::after { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,20,13,.8), transparent 62%); content: ""; }
.experience-card > div { position: absolute; right: 27px; bottom: 25px; left: 27px; z-index: 1; }
.experience-card span { color: rgba(255,255,255,.66); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.experience-card h3 { margin: 7px 0 6px; font: 300 34px/1.02 var(--serif); }
.experience-card p { max-width: 520px; margin: 0; color: rgba(255,255,255,.76); font-size: 13px; line-height: 1.5; }
.experience-large { grid-row: 1 / 3; }
.experience-wide { grid-column: 1 / 3; }

.gallery-section { background: var(--ink); color: var(--sand-soft); }
.gallery-section .eyebrow { color: #a8aa9e; }
.gallery-section .button-ghost { border-color: rgba(255,255,255,.26); }
.gallery-section .button-ghost:hover { background: rgba(255,255,255,.08); }
.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 280px 280px 250px; gap: 15px; }
.gallery-item { position: relative; min-width: 0; overflow: hidden; padding: 0; border: 0; border-radius: 22px; background: #354338; color: #fff; }
.gallery-item::after { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,18,12,.55), transparent 52%); content: ""; }
.gallery-item img { height: 100%; object-fit: cover; transition: transform .6s; }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item span { position: absolute; bottom: 17px; left: 19px; z-index: 1; font-size: 12px; }
.gallery-tall { grid-row: span 2; border-radius: 150px 150px 22px 22px; }
.gallery-wide { grid-column: span 2; }

.amenities-section { background: var(--paper); }
.amenities-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 85px; }
.amenities-copy { position: sticky; top: 115px; align-self: start; }
.amenities-copy p { max-width: 470px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.amenities-copy .text-link { margin-top: 17px; }
.amenities-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.amenities-list > div { display: grid; grid-template-columns: 45px 1fr; padding: 22px 0; border-bottom: 1px solid var(--line); }
.amenities-list > div:nth-child(odd) { padding-right: 24px; }
.amenities-list > div:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line); }
.amenities-list > div > span { grid-row: 1 / 3; color: #64715c; font: 300 23px var(--serif); }
.amenities-list strong { font-weight: 500; }
.amenities-list small { margin-top: 5px; color: var(--muted); line-height: 1.4; }

.reviews-section { background: var(--forest); color: #f5f2e8; }
.reviews-summary { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 70px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.14); }
.reviews-summary > div { display: grid; grid-template-columns: auto 1fr; align-items: center; column-gap: 20px; }
.reviews-summary > div .stars { grid-column: 1 / 3; }
.reviews-summary > div strong { font: 300 80px var(--serif); }
.reviews-summary > div small { color: rgba(255,255,255,.62); line-height: 1.5; }
.reviews-summary ul { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 36px; margin: 0; padding: 0; list-style: none; }
.reviews-summary li { display: flex; justify-content: space-between; gap: 18px; padding-bottom: 11px; border-bottom: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.66); font-size: 13px; }
.reviews-summary li strong { color: #fff; }
.review-intro { margin-top: 75px; }
.review-intro .eyebrow { color: rgba(255,255,255,.58); }
.review-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-cards article { min-height: 285px; display: flex; flex-direction: column; padding: 28px; border: 1px solid rgba(255,255,255,.11); border-radius: 24px; background: rgba(255,255,255,.055); }
.review-cards p { margin: 24px 0 30px; color: rgba(255,255,255,.83); font: 300 24px/1.25 var(--serif); }
.review-cards footer { display: flex; justify-content: space-between; gap: 15px; margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; }
.review-cards footer span { color: rgba(255,255,255,.48); }
.reviews-source { margin: 25px 0 0; color: rgba(255,255,255,.54); font-size: 11px; }
.reviews-source a { border-bottom: 1px solid rgba(255,255,255,.45); }

.location-section { background: var(--sand-soft); }
.location-grid { display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: 85px; }
.location-photo { position: relative; }
.location-photo img { height: 690px; object-fit: cover; border-radius: 230px 230px 26px 26px; }
.location-stamp { position: absolute; right: -35px; bottom: 55px; width: 160px; height: 160px; display: grid; place-content: center; border-radius: 50%; background: var(--lime); text-align: center; box-shadow: 0 20px 45px rgba(50,67,33,.18); transform: rotate(5deg); }
.location-stamp span { font: 300 43px var(--serif); }
.location-stamp small { max-width: 100px; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.location-copy > p { color: var(--muted); font-size: 17px; line-height: 1.7; }
.location-facts { margin: 34px 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.location-facts li { display: grid; grid-template-columns: 120px 1fr; gap: 25px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.location-facts strong { font: 400 20px var(--serif); }
.location-facts span { color: var(--muted); font-size: 13px; line-height: 1.45; }
.location-note { padding-left: 17px; border-left: 3px solid var(--sage); font-size: 12px !important; }

.practical-section { background: var(--paper); }
.practical-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.practical-grid article { min-height: 285px; padding: 27px; border: 1px solid var(--line); border-radius: 24px; }
.practical-grid article > span { color: var(--muted); font: 400 13px var(--serif); }
.practical-grid h3 { margin: 70px 0 12px; font: 400 28px var(--serif); }
.practical-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.instagram-band { padding: 72px 0; background: #8f9581; color: #fff; }
.instagram-grid { display: grid; grid-template-columns: 1.05fr 1fr auto; align-items: center; gap: 50px; }
.instagram-grid h2 { margin: 8px 0 0; font: 300 clamp(55px, 7vw, 86px)/1 var(--serif); letter-spacing: -.05em; }
.instagram-grid p { max-width: 410px; color: rgba(255,255,255,.72); line-height: 1.6; }

.contact-section { background: var(--sand); }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: start; }
.contact-copy { position: sticky; top: 115px; }
.contact-copy > p { max-width: 470px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.contact-points { display: grid; gap: 12px; margin-top: 30px; color: var(--muted); font-size: 13px; }
.airbnb-link { display: inline-block; margin-top: 35px; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 600; }
.contact-form { padding: 38px; border: 1px solid rgba(31,33,29,.1); border-radius: 30px; background: var(--paper); box-shadow: 0 25px 65px rgba(31,33,29,.09); }
.form-heading { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.form-heading span { font: 400 27px var(--serif); }
.form-heading small { color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.form-grid label { display: flex; flex-direction: column; gap: 8px; }
.form-grid label > span { color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; border: 1px solid rgba(31,33,29,.15); border-radius: 12px; outline: none; background: #fff; padding: 13px 14px; transition: border-color .2s, box-shadow .2s; }
.form-grid input, .form-grid select { min-height: 49px; }
.form-grid textarea { resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: #6a735f; box-shadow: 0 0 0 4px rgba(106,115,95,.1); }
.form-grid .consent { display: grid; grid-template-columns: 20px 1fr; align-items: start; margin-top: 3px; }
.form-grid .consent input { width: 17px; min-height: 17px; margin: 1px 0 0; accent-color: var(--forest); }
.form-grid .consent span { font-weight: 400; letter-spacing: 0; line-height: 1.5; text-transform: none; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.submit-button { width: 100%; margin-top: 22px; border-radius: 14px; }
.submit-button[disabled] { cursor: wait; opacity: .7; transform: none; }
.form-status { display: none; margin-top: 15px; padding: 13px 15px; border-radius: 12px; font-size: 13px; line-height: 1.5; }
.form-status.success { display: block; border: 1px solid rgba(58,112,67,.2); background: #edf6ea; color: #2d6937; }
.form-status.error { display: block; border: 1px solid rgba(145,62,48,.2); background: #fff0ed; color: #914030; }

.faq-section { background: var(--sand-soft); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 85px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; cursor: pointer; font: 400 23px var(--serif); list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { transition: transform .25s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list p { max-width: 660px; margin: -4px 0 24px; color: var(--muted); line-height: 1.65; }

.site-footer { padding: 75px 0 25px; background: var(--ink); color: #f4f1e7; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 60px; }
.footer-brand { font: 300 42px var(--serif); }
.footer-grid > div:first-child p { max-width: 310px; color: #8e9188; line-height: 1.6; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: start; gap: 12px; color: #a4a79e; font-size: 13px; }
.footer-grid strong { margin-bottom: 7px; color: #fff; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 65px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #777a72; font-size: 11px; }

.lightbox { width: 100vw; max-width: none; height: 100vh; max-height: none; margin: 0; padding: 60px 85px; border: 0; background: rgba(17,20,17,.97); color: #fff; }
.lightbox::backdrop { background: rgba(17,20,17,.97); }
.lightbox[open] { display: grid; grid-template-columns: 58px 1fr 58px; align-items: center; gap: 25px; }
.lightbox figure { min-width: 0; height: calc(100vh - 120px); display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0; }
.lightbox figure img { width: auto; max-width: 100%; height: auto; max-height: calc(100vh - 185px); object-fit: contain; }
.lightbox figcaption { width: min(900px, 100%); display: flex; justify-content: space-between; gap: 20px; margin-top: 16px; color: #d9d9d1; font-size: 13px; }
.lightbox figcaption small { color: #858980; }
.lightbox button { width: 50px; height: 50px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: rgba(255,255,255,.07); color: #fff; font-size: 20px; }
.lightbox-close { position: absolute; top: 22px; right: 25px; z-index: 2; }

@media (max-width: 1080px) {
  .nav-links { gap: 17px; }
  .hero-grid { gap: 35px; }
  .rating-card { right: -5px; }
  .hero-postcard { left: -5px; }
  .practical-grid { grid-template-columns: 1fr 1fr; }
  .review-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .container { width: min(100% - 36px, 720px); }
  .section { padding: 90px 0; }
  .nav { min-height: 70px; }
  .nav-cta { display: none; }
  .menu-button { position: relative; display: grid; }
  .nav-links { position: absolute; top: 70px; right: 0; left: 0; display: none; flex-direction: column; gap: 0; padding: 12px 18px 20px; border-bottom: 1px solid var(--line); background: var(--sand-soft); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: 0; }
  .hero-grid, .intro-grid, .amenities-grid, .location-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .hero-copy h1 { font-size: clamp(70px, 14vw, 100px); }
  .hero-visual { max-width: 600px; margin: auto; }
  .booking-panel { grid-template-columns: 1fr 1fr; gap: 1px; padding: 12px; }
  .booking-panel > div { border-right: 0; }
  .booking-panel .button { grid-column: 1 / -1; margin-top: 5px; }
  .section-heading { align-items: start; flex-direction: column; gap: 15px; }
  .intro-grid { gap: 30px; }
  .experience-grid { grid-template-rows: 420px 310px 310px 360px; }
  .experience-large, .experience-wide { grid-column: 1 / 3; grid-row: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 230px 230px 230px; }
  .gallery-tall { grid-row: auto; grid-column: 1 / 3; border-radius: 130px 130px 22px 22px; }
  .gallery-wide { grid-column: 1 / 3; }
  .amenities-grid, .contact-grid { gap: 50px; }
  .amenities-copy, .contact-copy { position: static; }
  .reviews-summary { grid-template-columns: 1fr; gap: 35px; }
  .location-photo { max-width: 580px; }
  .location-photo img { height: 620px; }
  .location-stamp { right: -10px; }
  .instagram-grid { grid-template-columns: 1fr auto; }
  .instagram-grid p { grid-column: 1 / 3; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 540px); }
  .section { padding: 72px 0; }
  .display-title { font-size: 50px; }
  .hero { padding-bottom: 90px; }
  .hero-copy h1 { font-size: 66px; }
  .hero-copy > p { font-size: 17px; }
  .hero-actions { display: grid; }
  .hero-facts { grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 535px; padding-bottom: 38px; }
  .hero-arch { width: calc(100% - 35px); }
  .hero-arch figcaption { right: 18px; bottom: 18px; left: 18px; }
  .hero-arch figcaption strong { font-size: 21px; }
  .hero-postcard { width: 155px; left: 0; }
  .hero-postcard img { height: 105px; }
  .hero-postcard figcaption { font-size: 15px; }
  .rating-card { top: 55px; right: -5px; width: 145px; padding: 14px; }
  .booking-ribbon { margin-top: -25px; }
  .booking-panel { grid-template-columns: 1fr; }
  .booking-panel > div { padding: 10px 14px; border-bottom: 1px solid var(--line); }
  .booking-panel .button { grid-column: auto; }
  .intro-columns { grid-template-columns: 1fr; gap: 18px; }
  .panorama { margin-top: 45px; }
  .panorama img { height: 470px; border-radius: 22px 120px 22px 22px; }
  .experience-grid { display: flex; flex-direction: column; }
  .experience-card { height: 360px; }
  .experience-card h3 { font-size: 30px; }
  .gallery-heading .button { width: 100%; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(6, 250px); }
  .gallery-tall, .gallery-wide { grid-column: auto; border-radius: 90px 90px 22px 22px; }
  .amenities-list { grid-template-columns: 1fr; }
  .amenities-list > div:nth-child(odd), .amenities-list > div:nth-child(even) { padding-inline: 0; border-left: 0; }
  .reviews-summary ul, .review-cards { grid-template-columns: 1fr; }
  .review-cards article { min-height: 245px; }
  .location-photo img { height: 500px; border-radius: 150px 150px 22px 22px; }
  .location-stamp { width: 120px; height: 120px; bottom: 30px; }
  .location-stamp span { font-size: 35px; }
  .location-facts li { grid-template-columns: 95px 1fr; }
  .practical-grid { grid-template-columns: 1fr; }
  .practical-grid article { min-height: 230px; }
  .practical-grid h3 { margin-top: 42px; }
  .instagram-grid { grid-template-columns: 1fr; gap: 25px; }
  .instagram-grid p { grid-column: auto; }
  .instagram-grid .button { width: 100%; }
  .contact-form { padding: 25px 19px; }
  .form-heading { flex-direction: column; gap: 4px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: start; flex-direction: column; }
  .lightbox { padding: 65px 15px 25px; }
  .lightbox[open] { grid-template-columns: 45px 1fr 45px; gap: 5px; }
  .lightbox figure { height: calc(100vh - 100px); }
  .lightbox button { width: 42px; height: 42px; }
  .lightbox figcaption { align-items: start; flex-direction: column; gap: 4px; }
}

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