:root {
  --ink: #26231f;
  --muted: #696158;
  --paper: #fffdf9;
  --sand: #f4eee5;
  --sand-2: #e9dfd2;
  --terracotta: #b84f35;
  --terracotta-dark: #8d3825;
  --sage: #65735d;
  --night: #272b28;
  --white: #ffffff;
  --shadow: 0 0 0 1px rgba(50,35,22,.035), 0 8px 24px rgba(50,35,22,.09), 0 24px 60px rgba(50,35,22,.07);
  --radius: 20px;
  --wrap: min(1180px, calc(100vw - 48px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: 'DM Sans', system-ui, sans-serif; line-height: 1.55; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a, input, select, textarea, summary { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(184,79,53,.45); outline-offset: 4px; }
.wrap { width: var(--wrap); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 1000; background: var(--ink); color: white; padding: 12px 16px; border-radius: 8px; }
.skip-link:focus { top: 12px; }
.site-header { height: 78px; padding: 0 max(24px, calc((100vw - 1320px)/2)); display: flex; align-items: center; justify-content: space-between; gap: 28px; background: rgba(255,253,249,.94); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(38,35,31,.08); position: sticky; top: 0; z-index: 100; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 210px; }
.brand-mark { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--terracotta); color: white; font-family: 'Newsreader', serif; font-size: 16px; font-weight: 600; letter-spacing: -.04em; }
.brand span:last-child { display: flex; flex-direction: column; line-height: 1.05; }
.brand strong { font-family: 'Newsreader', serif; font-size: 19px; letter-spacing: -.02em; }
.brand small { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .09em; margin-top: 4px; }
nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 600; }
nav a { position: relative; padding: 10px 0; }
nav a::after { content: ''; position: absolute; height: 2px; left: 0; right: 100%; bottom: 3px; background: var(--terracotta); transition: right .2s ease; }
nav a:hover::after { right: 0; }
.button { min-height: 50px; border: 0; border-radius: 10px; padding: 0 22px; display: inline-flex; justify-content: center; align-items: center; background: var(--terracotta); color: white; font-weight: 700; cursor: pointer; box-shadow: 0 5px 15px rgba(141,56,37,.2); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: 0 9px 22px rgba(141,56,37,.27); }
.button:active { transform: translateY(0); }
.button-small { min-height: 44px; padding-inline: 18px; font-size: 14px; }
.hero { position: relative; height: min(770px, calc(100svh - 78px)); min-height: 620px; overflow: hidden; color: white; }
.hero > img { height: 100%; object-fit: cover; object-position: center 58%; transform: scale(1.015); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(25,27,25,.67) 0%, rgba(25,27,25,.32) 48%, rgba(25,27,25,.06) 78%), linear-gradient(0deg, rgba(20,20,18,.28), transparent 50%); }
.hero-copy { position: absolute; left: max(24px, calc((100vw - 1180px)/2)); top: 50%; transform: translateY(-48%); max-width: 710px; }
.eyebrow { margin: 0 0 17px; text-transform: uppercase; letter-spacing: .17em; font-size: 12px; font-weight: 700; }
.eyebrow.terracotta { color: var(--terracotta); }
.hero h1, h2 { font-family: 'Newsreader', Georgia, serif; font-weight: 600; letter-spacing: -.035em; line-height: .95; text-wrap: balance; }
.hero h1 { font-size: clamp(58px, 7.2vw, 104px); margin: 0; text-shadow: 0 3px 28px rgba(0,0,0,.2); }
.hero-sub { max-width: 600px; font-size: 20px; line-height: 1.5; margin: 26px 0 30px; text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.hero-actions { display: flex; gap: 24px; align-items: center; }
.text-link { display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid currentColor; padding-bottom: 4px; font-weight: 700; font-size: 14px; }
.text-link.light { color: white; }
.proof-chip { position: absolute; right: max(24px, calc((100vw - 1180px)/2)); bottom: 34px; display: grid; grid-template-columns: auto auto; gap: 0 8px; align-items: center; background: rgba(255,253,249,.92); color: var(--ink); padding: 14px 18px; border-radius: 16px; box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.proof-chip .star { color: var(--terracotta); grid-row: 1 / span 2; font-size: 22px; }
.proof-chip strong { line-height: 1; font-size: 18px; }
.proof-chip span:last-child { color: var(--muted); font-size: 11px; }
.facts { min-height: 132px; display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; background: white; border-bottom: 1px solid rgba(38,35,31,.08); padding-inline: max(24px, calc((100vw - 1180px)/2)); }
.facts div { text-align: center; padding: 18px 12px; border-right: 1px solid rgba(38,35,31,.1); }
.facts div:last-child { border: 0; }
.facts strong { display: block; font-family: 'Newsreader', serif; font-size: 30px; line-height: 1; }
.facts span { display: block; color: var(--muted); font-size: 13px; margin-top: 8px; }
.story, .amenities, .policies, .faq { padding-block: 118px; display: grid; grid-template-columns: minmax(280px, .75fr) minmax(480px, 1.25fr); gap: clamp(50px, 8vw, 120px); }
.section-heading h2, .gallery-head h2, .booking-panel h2, .final-cta h2 { font-size: clamp(44px, 5vw, 70px); margin: 0; }
.section-heading > p:not(.eyebrow) { color: var(--muted); max-width: 410px; font-size: 17px; }
.story-copy { padding-top: 28px; }
.story-copy p { color: var(--muted); font-size: 16px; max-width: 660px; }
.story-copy .lead { color: var(--ink); font-family: 'Newsreader', serif; font-size: 28px; line-height: 1.35; margin-top: 0; }
.check-list { list-style: none; padding: 18px 0 0; margin: 28px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 13px 30px; border-top: 1px solid var(--sand-2); }
.check-list li { position: relative; padding-left: 24px; font-size: 14px; font-weight: 600; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--terracotta); font-weight: 700; }
.gallery-section { padding-block: 100px; background: var(--sand); }
.gallery-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 40px; }
.gallery-head h2 { font-size: clamp(42px, 4.8vw, 64px); }
.text-button { appearance: none; border: 0; border-bottom: 1px solid var(--ink); background: none; padding: 5px 0; font-weight: 700; color: var(--ink); cursor: pointer; }
.photo-grid { display: grid; grid-template-columns: 1.65fr 1fr 1fr; grid-template-rows: 250px 250px; gap: 12px; }
.photo { padding: 0; border: 0; border-radius: 14px; overflow: hidden; cursor: zoom-in; background: #ddd; }
.photo-main { grid-row: 1 / span 2; }
.photo:last-child { grid-column: 2 / span 2; }
.photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.photo:hover img { transform: scale(1.035); }
.amenity-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 44px; }
.amenity-list article { padding: 25px 0 28px; border-top: 1px solid var(--sand-2); }
.amenity-list h3 { margin: 0 0 8px; font-size: 17px; }
.amenity-list p { margin: 0; color: var(--muted); font-size: 14px; }
.review-band { background: var(--night); color: white; padding-block: 80px; }
.review-inner { display: grid; grid-template-columns: 180px 1fr 240px; gap: 55px; align-items: center; }
.rating-lockup { display: grid; grid-template-columns: auto auto; width: max-content; column-gap: 10px; align-items: center; }
.rating-lockup > span { color: #e7a35e; font-size: 28px; grid-row: 1 / span 2; }
.rating-lockup strong { font-family: 'Newsreader', serif; font-size: 42px; line-height: 1; }
.rating-lockup small { color: rgba(255,255,255,.65); font-size: 11px; }
blockquote { margin: 0; font-family: 'Newsreader', serif; font-size: clamp(24px, 2.6vw, 36px); line-height: 1.25; }
.review-inner .text-link { justify-self: end; text-align: right; }
.policy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.policy-grid div { padding: 24px; background: white; border-radius: 14px; box-shadow: 0 0 0 1px rgba(50,35,22,.07); }
.policy-grid span { display: block; color: var(--terracotta); text-transform: uppercase; font-size: 10px; letter-spacing: .13em; font-weight: 700; }
.policy-grid strong { display: block; margin: 8px 0 5px; font-size: 16px; }
.policy-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.license { grid-column: 2; text-align: right; color: var(--muted); font-size: 12px; margin: -80px 0 0; align-self: end; }
.booking-section { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(500px, .94fr); min-height: 850px; background: var(--sand); }
.booking-image img { height: 100%; object-fit: cover; }
.booking-panel { padding: clamp(60px, 7vw, 110px); align-self: center; }
.booking-panel h2 { font-size: clamp(48px, 5.1vw, 72px); }
.booking-panel > p:not(.eyebrow) { color: var(--muted); max-width: 620px; }
form { margin-top: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row-three { grid-template-columns: 1fr 1fr 1fr; }
label { display: block; color: var(--muted); font-size: 12px; font-weight: 700; margin-bottom: 14px; }
input, select, textarea { width: 100%; min-height: 52px; border: 1px solid #cfc3b5; border-radius: 9px; background: var(--paper); color: var(--ink); padding: 12px 13px; margin-top: 6px; font-weight: 500; }
textarea { min-height: 84px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--terracotta); outline: 2px solid rgba(184,79,53,.14); }
.check-control { min-height: 75px; border: 1px solid #cfc3b5; border-radius: 9px; background: var(--paper); display: flex; align-items: center; gap: 9px; padding: 17px 13px 10px; margin-bottom: 14px; }
.check-control input, .consent input { width: 18px; min-height: 18px; margin: 0; accent-color: var(--terracotta); }
.check-control span { color: var(--ink); }
.optional { font-weight: 400; }
.consent { display: flex; gap: 10px; align-items: flex-start; line-height: 1.4; margin: 8px 0 18px; }
.consent span { font-weight: 500; }
.honey { position: absolute; left: -9999px; }
.button-wide { width: 100%; }
.form-note { text-align: center; color: var(--muted); font-size: 11px; }
#form-status { min-height: 25px; margin-top: 10px; font-size: 14px; font-weight: 600; }
#form-status.error { color: #9d231b; }
#form-status.success { color: #30623a; }
.faq-list details { border-top: 1px solid var(--sand-2); }
.faq-list details:last-child { border-bottom: 1px solid var(--sand-2); }
summary { list-style: none; cursor: pointer; font-size: 17px; font-weight: 700; padding: 22px 42px 22px 0; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; position: absolute; right: 8px; top: 16px; font-family: 'Newsreader', serif; font-size: 28px; color: var(--terracotta); }
details[open] summary::after { content: '−'; }
details p { color: var(--muted); margin: -4px 45px 24px 0; font-size: 14px; }
.final-cta { height: 600px; position: relative; display: grid; place-items: center; color: white; text-align: center; overflow: hidden; }
.final-cta img { position: absolute; inset: 0; height: 100%; object-fit: cover; filter: brightness(.56); }
.final-cta div { z-index: 1; }
.final-cta h2 { font-size: clamp(56px, 7vw, 92px); margin-bottom: 25px; }
footer { background: #1f211f; color: white; padding-block: 70px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.35fr; gap: 55px; }
.footer-grid > div:not(.brand) { display: flex; flex-direction: column; gap: 8px; font-size: 12px; color: rgba(255,255,255,.63); }
.footer-grid > div:not(.brand) strong { color: white; margin-bottom: 8px; font-size: 13px; }
.footer-brand { align-self: start; }
.footer-brand small { color: rgba(255,255,255,.55); }
#gallery-dialog { width: 100vw; max-width: none; height: 100vh; max-height: none; border: 0; padding: 0; background: rgba(16,17,16,.97); color: white; }
#gallery-dialog::backdrop { background: rgba(0,0,0,.8); }
#gallery-dialog figure { width: min(1100px, 80vw); height: 82vh; margin: 9vh auto; display: grid; place-items: center; }
#gallery-dialog figure img { width: 100%; height: calc(100% - 35px); object-fit: contain; }
#gallery-dialog figcaption { font-size: 12px; color: rgba(255,255,255,.7); padding-top: 12px; }
.dialog-close, .gallery-prev, .gallery-next { position: fixed; z-index: 2; border: 1px solid rgba(255,255,255,.35); background: rgba(0,0,0,.25); color: white; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; }
.dialog-close { right: 24px; top: 24px; font-size: 28px; }
.gallery-prev, .gallery-next { top: 50%; transform: translateY(-50%); font-size: 22px; }
.gallery-prev { left: 24px; }.gallery-next { right: 24px; }
@media (max-width: 950px) {
  nav { display: none; }
  .hero { min-height: 640px; }
  .facts { grid-template-columns: repeat(5, minmax(120px,1fr)); overflow-x: auto; padding-inline: 0; }
  .story, .amenities, .policies, .faq { grid-template-columns: 1fr; gap: 45px; padding-block: 85px; }
  .story-copy { padding-top: 0; }
  .review-inner { grid-template-columns: 160px 1fr; }
  .review-inner .text-link { grid-column: 2; justify-self: start; }
  .license { grid-column: 1; margin: 0; text-align: left; }
  .booking-section { grid-template-columns: 1fr; }
  .booking-image { height: 500px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / span 2; }
}

.legal-page { background: var(--paper); }
.legal-copy { max-width: 820px; padding-block: 132px 90px; }
.legal-copy h1 { font-size: clamp(48px, 7vw, 78px); margin: 0 0 8px; }
.legal-copy h2 { font-family: 'DM Sans', sans-serif; font-size: 20px; margin: 38px 0 8px; }
.legal-copy p { color: var(--muted); line-height: 1.75; }
.legal-copy .legal-date { font-size: 14px; margin-bottom: 48px; }
.guide-hero { height: 620px; position: relative; overflow: hidden; }
.guide-hero > img { width: 100%; height: 100%; object-fit: cover; }
.guide-hero-copy { position: absolute; z-index: 2; left: max(24px, calc((100vw - var(--wrap)) / 2)); bottom: 72px; max-width: 790px; color: white; }
.guide-hero-copy h1 { font-size: clamp(48px, 6vw, 82px); margin: 8px 0 18px; line-height: .96; }
.guide-hero-copy > p:last-child { max-width: 640px; font-size: 18px; line-height: 1.6; }
.guide-copy { padding-top: 80px; }
.guide-intro { font-family: 'Newsreader', serif; font-size: 27px; line-height: 1.45 !important; color: var(--ink) !important; }
.guide-cta { margin: 64px 0; padding: 46px; background: var(--ink); color: white; border-radius: 4px; }
.guide-cta h2 { font-family: 'Newsreader', serif; font-size: clamp(32px, 4vw, 48px); margin: 8px 0 28px; }

@media (max-width: 700px) {
  :root { --wrap: calc(100vw - 32px); }
  .site-header { height: 68px; padding-inline: 16px; }
  .brand { min-width: 0; }
  .brand small { display: none; }
  .brand-mark { width: 36px; height: 36px; }
  .site-header .button { min-height: 42px; padding-inline: 14px; }
  .hero { height: 710px; min-height: 0; }
  .hero-copy { left: 20px; right: 20px; top: auto; bottom: 96px; transform: none; }
  .hero h1 { font-size: clamp(52px, 15vw, 70px); }
  .hero-sub { font-size: 16px; margin-block: 20px 25px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .proof-chip { right: 16px; bottom: 16px; transform: scale(.88); transform-origin: bottom right; }
  .facts { min-height: 112px; grid-template-columns: 1fr 1fr; overflow: visible; padding-inline: 16px; }
  .facts div { min-height: 94px; display: grid; place-content: center; border-right: 1px solid rgba(38,35,31,.1); border-bottom: 1px solid rgba(38,35,31,.1); }
  .facts div:nth-child(2n) { border-right: 0; }
  .facts div:last-child { grid-column: 1 / span 2; border-bottom: 0; }
  .facts strong { font-size: 26px; }
  .section-heading h2, .gallery-head h2, .booking-panel h2 { font-size: 44px; }
  .check-list { grid-template-columns: 1fr; }
  .gallery-section { padding-block: 75px; }
  .gallery-head { align-items: start; flex-direction: column; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 290px 180px 180px; }
  .photo-main { grid-column: 1 / span 2; grid-row: auto; }
  .photo:last-child { grid-column: auto; }
  .amenity-list, .policy-grid { grid-template-columns: 1fr; }
  .review-inner { grid-template-columns: 1fr; gap: 28px; }
  .review-inner .text-link { grid-column: 1; }
  .booking-image { height: 350px; }
  .booking-panel { padding: 65px 20px; }
  .form-row, .form-row-three { grid-template-columns: 1fr; gap: 0; }
  .check-control { min-height: 54px; padding: 9px 13px; }
  .faq { gap: 25px; }
  .final-cta { height: 500px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / span 2; margin-bottom: 25px; }
  .footer-grid > div:last-child { grid-column: 1 / span 2; margin-top: 20px; }
  .guide-hero { height: 590px; }
  .guide-hero-copy { left: 20px; right: 20px; bottom: 44px; }
  .guide-hero-copy h1 { font-size: 48px; }
  .guide-hero-copy > p:last-child { font-size: 16px; }
  .guide-intro { font-size: 23px; }
  .guide-cta { padding: 32px 24px; }
  #gallery-dialog figure { width: 94vw; }
  .gallery-prev { left: 10px; }.gallery-next { right: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
