@font-face {
  font-family: aArtinya;
  src: url("../fonts/aArtinya.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --wood: #4a2e26;
  --forest: #243f34;
  --cream: #f4eee4;
  --gold: #c4a574;
  --ink: #1c1917;
  --muted: #6b635c;
  --white: #fffcf7;
  --busy: #b85c4a;
  --free: #3d7a5a;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Outfit, system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}
a { color: var(--forest); }
img { max-width: 100%; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .7rem 1.4rem;
  background-color: #56322a;
  background-image: url("/images/header_bg.jpg");
  color: #fff;
}
.logo, .logo-title {
  font-family: aArtinya, serif;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
}
.logo { font-size: 1.75rem; }
.logo-title { font-size: clamp(2.4rem, 6vw, 4.6rem); margin: 0; }
.nav { display: flex; flex-wrap: wrap; gap: .9rem 1.1rem; align-items: center; }
.nav a { color: #f3e6d6; text-decoration: none; font-size: .92rem; }
.nav a:hover, .nav a.on { color: var(--gold); }
.nav-drop { position: relative; }
.nav-drop-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background-color: #56322a;
  background-image: url("/images/header_bg.jpg");
  min-width: 14rem; padding: .5rem 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.nav-drop:hover .nav-drop-menu { display: block; }
.nav-drop-menu a { display: block; padding: .4rem 1rem; }
.langs { margin-left: .5rem; display: flex; gap: .4rem; }
.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 1.4rem; }
.hero {
  min-height: 78vh; background-size: cover; background-position: center;
  display: grid; place-items: end stretch; color: #fff;
}
.hero.slim { min-height: 42vh; }
.hero-carousel {
  position: relative;
  overflow: hidden;
  background: #1c1917;
  color: #fff;
}
.hero-carousel__slides { position: relative; }
.hero-carousel__slide {
  margin: 0;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
}
.hero-carousel__slide.is-active {
  position: relative;
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
.hero-carousel__slide img {
  display: block;
  width: 100%;
  height: 82vh;
  object-fit: cover;
  object-position: 50% 20%;
}
.hero-carousel.slim .hero-carousel__slide img { height: 72vh; }
.hero-carousel .hero-inner {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-carousel .hero-inner .btn { pointer-events: auto; }
.hero-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.6rem; height: 2.6rem;
  border: 0; border-radius: 50%;
  background: rgba(28,25,23,.45);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}
.hero-carousel__btn.prev { left: .8rem; }
.hero-carousel__btn.next { right: .8rem; }
.hero-carousel__dots {
  position: absolute;
  left: 0; right: 0; top: .9rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: .4rem;
}
.hero-carousel__dots button {
  width: .7rem; height: .7rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  cursor: pointer;
}
.hero-carousel__dots button.is-active { background: #fff; }
.hero-inner {
  background: linear-gradient(transparent, rgba(28,25,23,.72));
  padding: 4rem 8vw 2.4rem;
}
.hero h1, .hero-carousel h1 { font-family: "Cormorant Garamond", serif; font-size: clamp(2.4rem, 6vw, 4.6rem); margin: 0; font-weight: 500; }
.hero h1.logo-title, .hero-carousel h1.logo-title { font-family: aArtinya, serif; font-weight: 400; }
.kicker { letter-spacing: .18em; text-transform: uppercase; font-size: .78rem; color: var(--gold); }
.lead { font-size: 1.15rem; max-width: 36rem; }
.btn {
  display: inline-block; background: var(--gold); color: var(--ink); text-decoration: none;
  border: 0; padding: .7rem 1.2rem; font: inherit; cursor: pointer;
}
.btn.ghost { background: transparent; border: 1px solid currentColor; color: inherit; }
.wrap { width: min(1120px, calc(100% - 2.4rem)); margin: 2.4rem auto; }
.section-title { font-family: "Cormorant Garamond", serif; font-size: 2rem; text-align: center; }
.prose { max-width: 46rem; }
.prose.legal { max-width: 52rem; line-height: 1.65; }
.prose.legal h2 { margin-top: 2rem; scroll-margin-top: 5rem; }
.prose.legal h3 { margin-top: 1.2rem; }
.prose.legal ul { padding-left: 1.2rem; }
.prose.legal table { width: 100%; border-collapse: collapse; font-size: .92rem; margin: .8rem 0 1.2rem; }
.prose.legal th, .prose.legal td { border-bottom: 1px solid #eee; padding: .45rem .5rem; text-align: left; vertical-align: top; }
.legal-toc { background: #fff; padding: 1rem 1.2rem; margin: 1.2rem 0 1.6rem; }
.legal-toc a { display: block; margin: .2rem 0; }
.legal-updated { color: var(--muted); font-size: .9rem; }
.prose h1,.prose h2,.prose h4 { font-family: "Cormorant Garamond", serif; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.card { background: var(--white); box-shadow: 0 10px 30px rgba(74,46,38,.08); overflow: hidden; }
.card-img { display: block; height: 220px; background-size: cover; background-position: center; }
.card-body { padding: 1.1rem 1.2rem 1.4rem; }
.card-body h3 { font-family: "Cormorant Garamond", serif; margin: 0 0 .3rem; font-size: 1.6rem; }
.meta { color: var(--muted); font-size: .92rem; }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: start; }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: .6rem; }
.gallery img { height: 180px; width: 100%; object-fit: cover; }
.site-footer {
  background-color: #56322a;
  background-image: url("/images/header_bg.jpg");
  color: #f3e6d6; padding: 2rem 8vw;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.site-footer a { color: var(--gold); }
.cookie {
  position: fixed; inset: auto 1rem 1rem 1rem; max-width: 36rem; margin: auto;
  background: #fff; padding: 1.2rem; box-shadow: 0 16px 50px rgba(0,0,0,.2); z-index: 40;
}
.cookie-actions { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: flex-end; }
.cal-table { width: 100%; border-collapse: collapse; background: #fff; margin-bottom: 1rem; }
.cal-table th, .cal-table td { width: 14.28%; text-align: center; padding: .35rem 0; font-size: .85rem; }
.cal-table caption { padding: .5rem; font-weight: 600; }
.day.free { background: #cfe8d4; }
.day.busy { background: #f0b4aa; color: #7a2e22; }
.day.arrive {
  background: linear-gradient(90deg, #cfe8d4 0%, #cfe8d4 50%, #f0b4aa 50%, #f0b4aa 100%);
  color: #7a2e22;
}
.day.depart {
  background: linear-gradient(90deg, #f0b4aa 0%, #f0b4aa 50%, #cfe8d4 50%, #cfe8d4 100%);
  color: #7a2e22;
}
.day.past { background: #ece8e2; color: #999; }
.legend { font-size: .85rem; color: var(--muted); }
.dot { display: inline-block; width: .7rem; height: .7rem; margin: 0 .3rem 0 .8rem; vertical-align: middle; }
.dot.free { background: #cfe8d4; }
.dot.busy { background: #f0b4aa; }
.dot.arrive { background: linear-gradient(90deg, #cfe8d4 50%, #f0b4aa 50%); }
.dot.depart { background: linear-gradient(90deg, #f0b4aa 50%, #cfe8d4 50%); }
.dot.past { background: #bbb; }
.request-form label, .request-form .grid3 label { display: flex; flex-direction: column; gap: .3rem; margin-bottom: .8rem; font-size: .92rem; }
.request-form input, .request-form select, .request-form textarea {
  font: inherit; padding: .55rem .7rem; border: 1px solid #d7cfc4; background: #fff;
}
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.quote-box { background: #fff; padding: 1rem; margin: 1rem 0; border-left: 4px solid var(--gold); }
.quote-box.is-busy { border-left-color: var(--busy); }
.quote-avail { background: #f8e6e1; color: #7a2e22; padding: .85rem 1rem; margin: 0 0 1rem; }
.quote-avail strong { display: block; margin-bottom: .25rem; }
.quote-avail p { margin: 0; font-size: .92rem; }
.data { width: 100%; border-collapse: collapse; background: #fff; }
.data th, .data td { padding: .55rem .7rem; border-bottom: 1px solid #eee; text-align: left; }
.alert.ok { background: #e5f2ea; padding: 1rem; }
.disc-list { line-height: 1.8; }
.disc-cards { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: .8rem; }
.disc-cards li { background: #fff; padding: 1rem 1.1rem; box-shadow: 0 8px 24px rgba(74,46,38,.06); display: grid; gap: .25rem; }
.disc-cards small { color: var(--muted); }
.price-tabs { display: none; flex-wrap: wrap; gap: .4rem; margin: 1.2rem 0 1rem; }
.price-tab { font: inherit; border: 1px solid #d7cfc4; background: #fff; padding: .45rem .8rem; cursor: pointer; }
.price-tab.is-on { background: var(--wood); color: #fff; border-color: var(--wood); }
.price-board { background: #fff; padding: 1.2rem 1.3rem 1.4rem; margin-bottom: 1.2rem; box-shadow: 0 10px 30px rgba(74,46,38,.06); }
.price-board header h2 { font-family: "Cormorant Garamond", serif; margin: 0 0 .2rem; }
.price-period { display: flex; justify-content: space-between; gap: 1rem; align-items: center; padding: .75rem 0; border-bottom: 1px solid #eee; }
.price-period:last-child { border-bottom: 0; }
.price-period.is-now { background: #f3faf6; margin: 0 -.5rem; padding-left: .5rem; padding-right: .5rem; }
.price-period small { display: block; color: var(--muted); }
.price-amount { font-size: 1.15rem; font-weight: 600; white-space: nowrap; text-align: right; }
.price-amount small { display: block; font-weight: 400; font-size: .8rem; color: var(--muted); }
.badge.now { display: inline-block; background: #e5f2ea; color: #243f34; font-size: .75rem; padding: .1rem .4rem; margin-left: .4rem; }
.check { flex-direction: row !important; align-items: center; gap: .5rem !important; }
@media (max-width: 860px) {
  .split, .grid3 { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; top: 56px; left: 0; right: 0; background-color: #56322a; background-image: url("/images/header_bg.jpg"); padding: 1rem; flex-direction: column; align-items: flex-start; }
  .nav.open { display: flex; }
  .nav-drop {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: .25rem;
  }
  .nav-drop-menu {
    display: flex;
    flex-direction: column;
    position: static;
    min-width: 0;
    padding: 0 0 .35rem 1.1rem;
    box-shadow: none;
    background: transparent;
    background-image: none;
  }
  .nav-drop-menu a { padding: .3rem 0; }
  .hero { min-height: 52vh; }
  .hero-carousel__slide img { height: 42vh; }
  .hero-carousel.slim .hero-carousel__slide img { height: 32vh; }
  .price-tabs { display: flex; }
  .price-board { display: none; }
  .price-board.is-on { display: block; }
  .price-period { flex-direction: column; align-items: flex-start; gap: .3rem; }
}
