:root {
  --ink: #171614;
  --muted: #66615a;
  --line: #e7e2dc;
  --soft: #f7f5f1;
  --panel: #ffffff;
  --accent: #111111;
  --green: #315f4d;
  --amber: #f1bc6d;
  --red: #e15d4f;
  --blue: #286fd2;
  --shadow: 0 18px 45px rgba(40, 35, 28, .1);
  --deep-shadow: 0 26px 70px rgba(15, 15, 15, .18);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
  opacity: 0;
  animation: pageIn .34s ease forwards;
  -webkit-tap-highlight-color: transparent;
}
body.page-leaving { opacity: 0; transition: opacity .22s ease; }
@keyframes pageIn { to { opacity: 1; } }

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 3px solid rgba(40,111,210,.35); outline-offset: 3px; }
img { max-width: 100%; display: block; }
.site-nav a, .nav-button, .nav-toggle, .button, .book-btn, .cookie-actions button, .gallery-item, .calendar-header button { touch-action: manipulation; }
.container { width: calc(100% - 40px); max-width: var(--max); margin: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 32px rgba(30,25,20,.045);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; text-transform: uppercase; font-size: 13px; }
.brand img { width: 86px; height: 50px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; }
.site-nav > a, .nav-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  background: none;
  color: #27231f;
  font: inherit;
  cursor: pointer;
}
.site-nav > a:hover, .site-nav > a.active, .nav-button:hover, .nav-button.active, .nav-group.open .nav-button { background: var(--soft); }
.nav-group { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 260px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.dropdown a { display: block; padding: 11px 12px; border-radius: 6px; color: #292520; }
.dropdown a:hover, .dropdown a.active { background: var(--soft); }
.nav-group:hover .dropdown, .nav-group:focus-within .dropdown, .nav-group.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
  min-height: 42px;
  border: 1px solid #111;
  border-radius: 6px;
  background: #111;
  color: #fff;
  padding: 0 14px;
  font-weight: 800;
}
.book-btn, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  padding: 0 20px;
  font-weight: 800;
  border-radius: 6px;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.book-btn:hover, .button:hover { background: #2c2925; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,.13); }
.button.light { background: #fff; color: #111; }
.button.light:hover { background: var(--soft); }

.hero { position: relative; min-height: 620px; overflow: hidden; background: #111; isolation: isolate; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 2; background: radial-gradient(circle at 18% 28%, rgba(255,255,255,.18), transparent 28%); pointer-events: none; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.22) 55%, rgba(0,0,0,.5)); z-index: 2; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 8s ease; }
.hero-slide.active img { transform: scale(1); }
.hero-copy {
  position: relative;
  z-index: 3;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  color: #fff;
  padding: 78px 20px;
}
.hero-copy h1 { max-width: 820px; font-size: 78px; line-height: 1.04; margin: 0 0 18px; text-wrap: balance; }
.hero-copy p { width: 100%; max-width: 560px; font-size: 24px; margin: 0 0 30px; }
.hero-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; gap: 8px; }
.hero-dot { width: 10px; height: 10px; border: 1px solid #fff; background: transparent; border-radius: 50%; cursor: pointer; }
.hero-dot.active { background: #fff; }

.section { padding: 72px 0; }
.section.grey { background: var(--soft); }
.section-title { text-align: center; margin-bottom: 38px; }
.section-title h1, .section-title h2 { font-size: 54px; line-height: 1.12; margin: 0 0 12px; }
.rule { width: 72px; height: 2px; background: var(--green); margin: 18px auto; }
.lead { font-size: 20px; color: #333; max-width: 760px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split img { width: 100%; min-height: 390px; object-fit: cover; border-radius: 8px; box-shadow: var(--deep-shadow); }
.content h2 { font-size: 42px; line-height: 1.18; margin: 0 0 18px; }
.content h3 { font-size: 23px; margin: 28px 0 8px; }
.content p { font-size: 18px; margin: 0 0 18px; }
.center { text-align: center; }

.cards, .contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card, .contact-card, .price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(40,35,28,.05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover, .contact-card:hover, .price-card:hover { transform: translateY(-3px); border-color: #d8d0c7; box-shadow: 0 18px 42px rgba(40,35,28,.11); }
.card h3 { margin: 0 0 10px; font-size: 23px; }
.card p { margin: 0; color: #444; }
.review-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.booking-info-section { padding-top: 46px; }
.booking-info-grid { display: grid; grid-template-columns: minmax(0, 560px); justify-content: center; gap: 16px; margin-bottom: 28px; }
.booking-info-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(40,35,28,.05);
}
.booking-info-card strong { display: block; font-size: 21px; margin-bottom: 8px; }
.booking-info-card p { margin: 0; color: #4b4640; }

.page-hero { padding: 66px 0 32px; text-align: center; background: linear-gradient(180deg, #fff, var(--soft)); overflow: hidden; }
.page-hero h1 { font-size: 64px; line-height: 1.08; margin: 0; }
.page-hero p { max-width: 780px; margin: 16px auto 0; font-size: 20px; color: #4b4640; }

.gallery-hero { background: #111; color: #fff; }
.gallery-hero .rule { background: #fff; }
.gallery-hero p { color: rgba(255,255,255,.78); }
.gallery-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); grid-auto-flow: dense; gap: 12px; }
.gallery-item { grid-column: span 2; border: 0; padding: 0; background: none; cursor: pointer; overflow: hidden; border-radius: 8px; box-shadow: 0 12px 34px rgba(0,0,0,.08); }
.gallery-item:nth-child(1), .gallery-item:nth-child(10), .gallery-item:nth-child(19) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(6), .gallery-item:nth-child(15), .gallery-item:nth-child(24) { grid-column: span 3; }
.gallery-item img { width: 100%; height: 260px; object-fit: cover; transition: transform .5s ease, filter .5s ease; }
.gallery-item:nth-child(1) img, .gallery-item:nth-child(10) img, .gallery-item:nth-child(19) img { height: 532px; }
.gallery-item:hover img { transform: scale(1.045); filter: saturate(1.08) contrast(1.04); }
.gallery-item.hidden { display: none; }
.show-more { display: block; margin: 34px auto 0; }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 100; display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 6px; }
.lightbox-close { position: absolute; top: 18px; right: 22px; border: 0; background: none; color: #fff; font-size: 42px; cursor: pointer; }

.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin: 30px 0; }
.price { font-size: 48px; font-weight: 800; line-height: 1; margin: 10px 0; }
.feature-list { columns: 2; column-gap: 36px; padding-left: 22px; }
.feature-list li { margin-bottom: 10px; break-inside: avoid; }
.faq { max-width: 920px; margin: auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 0; }
.faq summary { font-size: 20px; font-weight: 800; cursor: pointer; padding: 20px 0; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:after { content: "+"; float: right; color: var(--green); }
.faq details[open] summary:after { content: "-"; }
.faq .answer { padding: 0 0 24px; color: #333; font-size: 17px; }

.falcon-block { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: center; padding: 36px 0; border-bottom: 1px solid var(--line); }
.falcon-block:nth-child(even) .falcon-image { order: 2; }
.falcon-image img { width: 100%; height: 330px; object-fit: cover; border-radius: 8px; box-shadow: var(--deep-shadow); }
.falcon-copy h2 { font-size: 34px; margin: 0 0 12px; }
.falcon-copy p { font-size: 18px; }
.contact-card { text-align: center; }
.contact-card img { height: 220px; width: 100%; object-fit: cover; margin-bottom: 18px; border-radius: 6px; }

.article { max-width: 850px; margin: auto; }
.article h2 { font-size: 36px; margin: 42px 0 12px; line-height: 1.16; }
.article h3 { font-size: 24px; margin: 32px 0 10px; }
.article p, .article li { font-size: 18px; }
.article img { width: 100%; max-height: 520px; object-fit: cover; margin: 30px 0; border-radius: 8px; box-shadow: var(--deep-shadow); }
.article ul { padding-left: 24px; }

.calendar-shell { max-width: 900px; margin: auto; }
.calendar-container { width: 100%; background: #fff; border: 1px solid #111; border-radius: 8px; box-shadow: var(--shadow); overflow: hidden; }
.calendar-header { display: flex; align-items: center; justify-content: center; position: relative; padding: 16px 64px; background: #fff; border-bottom: 1px solid #111; }
.calendar-header button { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: var(--soft); font-size: 17px; cursor: pointer; }
.prev-button { left: 14px; }
.next-button { right: 14px; }
#calendar-title { font-size: 24px; font-weight: 800; text-align: center; }
.calendar-days { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); text-align: center; font-size: 13px; font-weight: 800; border-bottom: 1px solid #111; }
.calendar-days div { padding: 10px 2px; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); }
.calendar-days div, .calendar-cell { min-width: 0; }
.calendar-cell { min-height: 74px; display: flex; align-items: center; justify-content: center; border: 1px solid #111; margin: -1px; font-size: 18px; font-weight: 800; background: #fff; cursor: pointer; position: relative; }
.calendar-cell.empty { border: 0; background: transparent; cursor: default; }
.calendar-cell.past-date { background: #eee; color: #999; cursor: default; }
.calendar-cell.today { outline: 3px solid var(--blue); z-index: 1; }
.calendar-key { width: 100%; border-collapse: collapse; margin-top: 18px; }
.calendar-key td { padding: 14px; text-align: center; font-weight: 800; border: 1px solid #111; }
.available { background: #fff; }
.provisionally-booked { background: var(--amber); }
.half-day { background: linear-gradient(135deg, var(--red) 0 49%, #fff 50%, var(--amber) 51% 100%); }
.unavailable { background: var(--red); color: #111; }
.booking-popover { position: fixed; z-index: 110; width: 230px; padding: 14px; background: #fff; border: 1px solid #111; border-radius: 8px; box-shadow: var(--shadow); opacity: 0; pointer-events: none; }
.booking-popover.active { opacity: 1; pointer-events: auto; }
.popover-close { position: absolute; right: 8px; top: 5px; border: 0; background: none; font-size: 22px; cursor: pointer; }
.popover-status { text-align: center; font-weight: 800; padding: 10px; }

.site-footer { border-top: 1px solid var(--line); padding: 38px 0; text-align: center; color: #4d4842; background: #fff; }
.footer-links { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin: 14px 0; }
.footer-links a:hover { text-decoration: underline; }
.powered { font-size: 13px; color: #777; }
.cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 120; max-width: 520px; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); display: none; overflow-wrap: anywhere; }
.cookie-banner.show { display: block; }
.cookie-actions { display: flex; gap: 10px; margin-top: 12px; }
.cookie-actions button { border: 1px solid #111; border-radius: 6px; padding: 10px 16px; background: #111; color: #fff; font-weight: 800; cursor: pointer; }
.cookie-actions button.secondary { background: #fff; color: #111; }

.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero-copy h1 { font-size: 58px; }
  .hero-copy p { font-size: 21px; }
  .section-title h1, .section-title h2 { font-size: 44px; }
  .page-hero h1 { font-size: 52px; }
  .site-header { background: rgba(255,255,255,.96); }
  .site-nav { display: flex; position: absolute; top: 100%; left: 0; right: 0; max-height: calc(100dvh - 70px); overflow-y: auto; overscroll-behavior: contain; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line); padding: 10px 20px 16px; flex-direction: column; align-items: stretch; gap: 2px; box-shadow: 0 18px 40px rgba(0,0,0,.08); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-10px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; backdrop-filter: blur(14px); }
  .site-nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .site-nav > a, .nav-button { justify-content: space-between; width: 100%; min-height: 44px; padding: 0 8px; text-align: left; }
  .nav-group { width: 100%; }
  .dropdown { position: static; min-width: 0; transform: none; box-shadow: none; border: 0; border-left: 2px solid var(--line); border-radius: 0; padding: 4px 0 8px 12px; display: none; opacity: 1; visibility: visible; }
  .nav-group.open .dropdown { display: block; }
  .nav-group:hover .dropdown { transform: none; }
  .nav-toggle { display: inline-flex; }
  .book-btn { display: none; }
  .split, .falcon-block { grid-template-columns: 1fr; }
  .falcon-block:nth-child(even) .falcon-image { order: 0; }
  .cards, .contact-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-item, .gallery-item:nth-child(1), .gallery-item:nth-child(6), .gallery-item:nth-child(10), .gallery-item:nth-child(15), .gallery-item:nth-child(19), .gallery-item:nth-child(24) { grid-column: span 1; grid-row: span 1; }
  .gallery-item img, .gallery-item:nth-child(1) img, .gallery-item:nth-child(10) img, .gallery-item:nth-child(19) img { height: 240px; }
  .feature-list { columns: 1; }
  .price-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1120px) {
  .book-btn { display: none; }
}

@media (max-width: 620px) {
  .container { width: calc(100% - 24px); }
  .container.header-inner { width: 100%; padding: 0 12px; }
  .header-inner { position: relative; min-height: 64px; gap: 10px; }
  .brand img { width: 66px; height: 44px; }
  .brand span { display: none; }
  .nav-toggle { display: inline-flex !important; position: absolute; top: 50%; right: 12px; z-index: 4; width: 42px; min-width: 42px; height: 42px; min-height: 42px; padding: 0; justify-content: center; font-size: 0; overflow: hidden; border-radius: 50%; transform: translateY(-50%); }
  .nav-toggle::before { content: "☰"; font-size: 20px; line-height: 1; transform: translateY(-1px); }
  .hero, .hero-copy { min-height: 500px; }
  .hero::before { display: none; }
  .hero::after { background: linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.76)); }
  .hero-slide img, .hero-slide.active img { transform: none; transition: opacity .6s ease; }
  .hero-copy { align-items: flex-start; justify-content: flex-end; padding: 56px 12px 64px; }
  .hero-copy h1 { font-size: 31px; line-height: 1.08; max-width: 100%; margin-bottom: 12px; overflow-wrap: break-word; }
  .hero-copy p { font-size: 16px; line-height: 1.5; margin-bottom: 18px; }
  .hero-dots { bottom: 14px; }
  .section-title { margin-bottom: 28px; }
  .section-title h1, .section-title h2 { font-size: 32px; }
  .page-hero h1 { font-size: 32px; overflow-wrap: break-word; }
  .page-hero p { width: 100%; max-width: 100%; font-size: 18px; }
  .content h2 { font-size: 32px; }
  .article h2 { font-size: 30px; }
  .section { padding: 42px 0; }
  .split { gap: 28px; }
  .split img { min-height: 250px; }
  .cards, .contact-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img, .gallery-item:nth-child(1) img, .gallery-item:nth-child(10) img, .gallery-item:nth-child(19) img, .falcon-image img { height: 250px; }
  .calendar-container { border-radius: 6px; box-shadow: none; }
  .calendar-header { padding: 12px 48px; }
  .calendar-header button { width: 36px; height: 36px; }
  .prev-button { left: 8px; }
  .next-button { right: 8px; }
  .calendar-cell { min-height: 42px; font-size: 13px; }
  .calendar-days { font-size: 10px; }
  #calendar-title { font-size: 18px; }
  .calendar-key td { padding: 11px 6px; font-size: 13px; }
  .page-hero { padding: 46px 0 22px; }
  .article p, .article li, .content p { font-size: 17px; }
  .booking-info-section { padding-top: 34px; }
  .booking-info-grid { gap: 12px; margin-bottom: 20px; }
  .booking-info-card { min-height: 0; padding: 22px; box-shadow: 0 8px 22px rgba(40,35,28,.045); }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; width: auto; max-height: 42dvh; overflow-y: auto; padding: 10px; gap: 8px; box-shadow: 0 12px 32px rgba(0,0,0,.12); }
  .cookie-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
  .cookie-actions button { width: 100%; min-width: 0; min-height: 40px; padding: 8px; font-size: 13px; white-space: nowrap; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

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