/* ===========================================================================
   Roubenka 42 — visual style
   Brand colors: --sage #7C8A6E, --forest #3D4A3A, --cream #F4EDE0
   Font: Inter (Google Fonts), weights 200/300/400/500/600
   =========================================================================== */

:root {
  --sage: #7C8A6E;
  --sage-light: #97A48B;
  --forest: #3D4A3A;
  --cream: #F4EDE0;
  --cream-warm: #ECE3D2;
  --stone: #BFB8A8;
  --wood: #8B6F4E;
  --charcoal: #2C2A26;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* HEADER */
header.site {
  background: linear-gradient(180deg, rgba(28,24,22,0.45) 0%, rgba(28,24,22,0) 100%);
  color: var(--cream);
  padding: 24px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease;
}
body.scrolled header.site,
body:not(.is-home) header.site {
  background: var(--sage);
}
header.site .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
header.site .logo { display: flex; align-items: center; gap: 14px; color: var(--cream); text-decoration: none; }
header.site .logo svg { width: 42px; height: auto; }
header.site .logo .name { font-size: 18px; font-weight: 300; letter-spacing: 0.06em; }
header.site nav { display: flex; gap: 36px; align-items: center; }
header.site nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  opacity: 0.9;
}
header.site nav a:hover { opacity: 1; }
header.site .cta {
  background: var(--cream);
  color: var(--charcoal);
  padding: 9px 22px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.2s;
}
header.site .cta:hover { background: var(--forest); color: var(--cream); }

/* HERO — fullscreen */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  color: var(--cream);
  overflow: hidden;
}
.hero .bg { position: absolute; inset: 0; z-index: 1; }
.hero .bg picture,
.hero .bg img {
  width: 100%;
  height: 100%;
  display: block;
}
.hero .bg img { object-fit: cover; }
.hero .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(124,138,110,0.55) 0%, rgba(124,138,110,0.18) 18%, rgba(28,24,22,0) 40%, rgba(28,24,22,0.35) 65%, rgba(28,24,22,0.85) 100%);
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 0 32px 90px;
  max-width: 900px;
  margin: 0 auto;
}
.hero .label { text-transform: uppercase; letter-spacing: 0.5em; font-size: 11px; opacity: 0.95; margin-bottom: 22px; text-shadow: 0 2px 14px rgba(0,0,0,0.7); }
.hero h1 { font-weight: 300; font-size: 64px; line-height: 1.05; margin: 0 0 26px; letter-spacing: 0.01em; text-shadow: 0 3px 24px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.4); }
.hero h1 em { font-style: italic; font-weight: 200; }
.hero p.lead { font-size: 18px; opacity: 1; margin: 0 auto 38px; max-width: 560px; line-height: 1.55; text-shadow: 0 2px 14px rgba(0,0,0,0.85), 0 1px 4px rgba(0,0,0,0.5); }
.hero .buttons { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero .btn-primary {
  background: var(--cream);
  color: var(--charcoal);
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.2s;
}
.hero .btn-primary:hover { background: var(--sage); color: var(--cream); }
.hero .btn-ghost {
  color: var(--cream);
  border: 1px solid rgba(244, 237, 224, 0.55);
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.2s;
}
.hero .btn-ghost:hover { background: rgba(244, 237, 224, 0.15); }
.hero .scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.7;
}
.hero .scroll-hint::after {
  content: "↓";
  display: block;
  margin-top: 6px;
  font-size: 14px;
  animation: bounce 2.4s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* SECTIONS */
section.s { padding: 100px 0; }
section.s.alt { background: var(--cream-warm); }
section.s.dark { background: var(--forest); color: var(--cream); }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 11px;
  color: var(--sage);
  margin-bottom: 18px;
}
section.s.dark .eyebrow { color: var(--sage-light); }
h2.s-title {
  font-weight: 200;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0 0 24px;
  color: var(--charcoal);
}
section.s.dark h2.s-title { color: var(--cream); }
p.s-lead { font-size: 17px; max-width: 680px; margin: 0 0 40px; line-height: 1.55; }

/* INTRO TWO-COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col .photo {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  background: #B8AE9A;
}
.two-col .photo picture,
.two-col .photo img { width: 100%; height: 100%; display: block; }
.two-col .photo img { object-fit: cover; }

/* AMENITIES GRID */
.amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.amenity { text-align: left; }
.amenity svg { width: 36px; height: 36px; color: var(--sage); margin-bottom: 16px; }
.amenity h3 { font-weight: 400; font-size: 17px; margin: 0 0 6px; }
.amenity p { font-size: 14px; margin: 0; opacity: 0.85; line-height: 1.55; }

/* AVAILABILITY */
.calendar-card {
  background: white;
  border-radius: 8px;
  padding: 40px 36px;
  margin-top: 40px;
  border: 1px solid rgba(44,42,38,0.08);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 50px;
  align-items: center;
}
.calendar-card .calendar-mock {
  background: var(--cream);
  border-radius: 6px;
  padding: 24px;
}
.calendar-mock .month {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.calendar-mock .days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar-mock .day {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border-radius: 4px;
  color: var(--charcoal);
  background: white;
}
.calendar-mock .day.head { background: transparent; font-size: 10px; opacity: 0.5; text-transform: uppercase; letter-spacing: 0.1em; }
.calendar-mock .day.empty { background: transparent; }
.calendar-mock .day.past { background: white; color: rgba(44,42,38,0.25); }
.calendar-mock .day.reno { background: repeating-linear-gradient(45deg, #C9B89A, #C9B89A 4px, #D8C9AE 4px, #D8C9AE 8px); color: rgba(44,42,38,0.55); }
.calendar-mock .day.booked { background: var(--stone); color: rgba(44,42,38,0.45); text-decoration: line-through; }
.calendar-mock .day.weekend { background: var(--sage); color: var(--cream); }
.calendar-mock .day.today { box-shadow: inset 0 0 0 2px var(--forest); font-weight: 500; }
.calendar-mock .day.today.reno { box-shadow: inset 0 0 0 2px var(--forest); }
.cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-nav button { background: transparent; border: 1px solid rgba(44,42,38,0.15); width: 30px; height: 30px; border-radius: 50%; cursor: pointer; color: var(--charcoal); font-size: 14px; line-height: 1; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.cal-nav button:hover { background: var(--sage); color: var(--cream); border-color: var(--sage); }
.cal-nav button:disabled { opacity: 0.3; cursor: not-allowed; }
.cal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 700px) { .cal-grid { grid-template-columns: 1fr; } }
.cal-status { display: inline-block; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; margin-bottom: 12px; }
.cal-status.reno { background: #C9B89A; color: var(--charcoal); }
.cal-status.open { background: var(--sage); color: var(--cream); }
.cal-source { font-size: 11px; opacity: 0.5; margin-top: 14px; }
.calendar-card .cal-text h3 { font-weight: 300; font-size: 28px; margin: 0 0 14px; line-height: 1.2; }
.calendar-card .cal-text p { margin: 0 0 20px; font-size: 15px; opacity: 0.85; }
.calendar-card .cal-text .legend { font-size: 12px; opacity: 0.7; display: flex; gap: 18px; margin-bottom: 24px; flex-wrap: wrap; }
.legend-item { display: flex; align-items: center; gap: 6px; }
.legend-swatch { width: 12px; height: 12px; border-radius: 3px; }
.calendar-card .btn-primary-dark {
  background: var(--forest);
  color: var(--cream);
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  display: inline-block;
}

/* INTERIOR */
.interior-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
  aspect-ratio: 3 / 2;
}
.i-cell {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--stone);
}
.i-cell.big { grid-column: span 2; grid-row: span 2; }
.i-cell picture,
.i-cell img { width: 100%; height: 100%; display: block; }
.i-cell img { object-fit: cover; transition: transform 0.5s ease; }
.i-cell:hover img { transform: scale(1.03); }
.i-cell .caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(60, 74, 58, 0.85);
  color: var(--cream);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
}
@media (max-width: 700px) {
  .interior-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; aspect-ratio: auto; }
  .i-cell.big { grid-row: span 1; grid-column: span 2; aspect-ratio: 16/10; }
  .i-cell { aspect-ratio: 1/1; }
}
@media (max-width: 950px) and (min-width: 701px) {
  .interior-grid { aspect-ratio: 4/3; }
}

/* GALLERY */
section.s.gallery-sec { background: var(--sage); color: var(--cream); }
section.s.gallery-sec .eyebrow { color: var(--cream); opacity: 0.7; }
section.s.gallery-sec h2.s-title { color: var(--cream); }
section.s.gallery-sec p.s-lead { color: var(--cream); opacity: 0.9; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
  gap: 14px;
  margin-top: 40px;
}
.g-cell {
  overflow: hidden;
  border-radius: 4px;
  background: rgba(0,0,0,0.15);
}
.g-cell.tall { grid-row: span 2; }
.g-cell picture,
.g-cell img { width: 100%; height: 100%; display: block; }
.g-cell img { object-fit: cover; transition: transform 0.5s ease; }
.g-cell:hover img { transform: scale(1.04); }

/* TRIPS / MAP */
.map-area {
  background: var(--cream-warm);
  border-radius: 8px;
  padding: 40px;
  margin-top: 40px;
  border: 1px solid rgba(44,42,38,0.06);
}
.map-mock {
  aspect-ratio: 16 / 10;
  background: var(--cream);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.map-mock svg { width: 100%; height: 100%; display: block; }
.map-mock-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(0.78) contrast(0.96);
}
.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  z-index: 5;
}
.map-pin svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 4px 12px rgba(28,24,22,0.35));
}
.map-pin-label {
  background: var(--forest);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(28,24,22,0.25);
}
.trip-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}
@media (max-width: 1050px) { .trip-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .trip-list { grid-template-columns: 1fr; } }
.trip-card {
  background: white;
  border-radius: 6px;
  padding: 24px;
  border: 1px solid rgba(44,42,38,0.06);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.trip-card .icon { width: 38px; height: 38px; color: var(--sage); flex-shrink: 0; }
.trip-card h3 { font-weight: 400; font-size: 16px; margin: 0 0 4px; }
.trip-card p { margin: 0; font-size: 13.5px; opacity: 0.8; line-height: 1.5; }
.trip-card .distance { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-top: 6px; }

/* TESTIMONIAL */
.testimonial { text-align: center; max-width: 680px; margin: 0 auto; }
.testimonial .quote {
  font-weight: 200;
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  margin: 0 0 24px;
  color: var(--cream);
}
.testimonial .author {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage-light);
}

/* CONTACT / RESERVATION */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info h3 { font-weight: 300; font-size: 22px; margin: 0 0 16px; }
.contact-info p { font-size: 15px; margin: 0 0 14px; }
.contact-info .row { margin-bottom: 24px; }
.contact-info .label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--sage); margin-bottom: 4px; }
.contact-info a.inline { color: var(--sage); font-size: 12px; letter-spacing: 0.1em; text-decoration: none; }
.contact-info a.plain { color: var(--charcoal); text-decoration: none; }
.contact-info a.under { color: var(--sage); text-decoration: underline; }
.contact-form {
  background: white;
  padding: 36px;
  border-radius: 8px;
  border: 1px solid rgba(44,42,38,0.06);
}
.contact-form h3 { font-weight: 300; font-size: 22px; margin: 0 0 22px; }
.contact-form .field { margin-bottom: 16px; }
.contact-form .field label { display: block; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 6px; }
.contact-form .field input,
.contact-form .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(44,42,38,0.15);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background: var(--cream);
  color: var(--charcoal);
}
.contact-form .field textarea { resize: vertical; min-height: 80px; }
.contact-form .btn-submit {
  background: var(--sage);
  color: var(--cream);
  padding: 12px 28px;
  border: none;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}
.contact-form .form-status { font-size: 13px; margin-top: 14px; min-height: 1.2em; }
.contact-form .form-status.ok { color: var(--forest); }
.contact-form .form-status.err { color: #B5441E; }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28, 24, 22, 0.96);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
  border-radius: 4px;
}
.lightbox button {
  position: absolute;
  background: rgba(244, 237, 224, 0.1);
  color: var(--cream);
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  transition: background 0.2s;
  line-height: 1;
}
.lightbox button:hover { background: rgba(244, 237, 224, 0.25); }
.lightbox-close { top: 24px; right: 24px; font-size: 30px; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); font-size: 34px; }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  opacity: 0.7;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.lightbox-caption {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  opacity: 0.85;
  font-size: 14px;
  max-width: 600px;
  text-align: center;
  padding: 0 20px;
}
[data-lightbox] { cursor: zoom-in; }
@media (max-width: 700px) {
  .lightbox { padding: 40px 8px; }
  .lightbox-close { top: 14px; right: 14px; width: 44px; height: 44px; font-size: 24px; }
  .lightbox-prev, .lightbox-next { width: 44px; height: 44px; font-size: 26px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* MAP SECTION */
.map-section {
  position: relative;
  height: 480px;
  background: var(--cream-warm);
  overflow: hidden;
}
.map-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(60%) saturate(0.85) brightness(0.97);
}
.map-overlay {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 5;
  pointer-events: none;
}
.map-label {
  background: var(--forest);
  color: var(--cream);
  padding: 28px 34px;
  border-radius: 6px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.4);
  max-width: 320px;
  pointer-events: auto;
}
.map-label-small {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 8px;
}
.map-label-small.alt { margin-bottom: 18px; margin-top: 8px; opacity: 0.65; letter-spacing: 0.18em; }
.map-label-text { margin: 18px 0 22px; padding: 14px 0 0; border-top: 1px solid rgba(244, 237, 224, 0.18); font-size: 13px; line-height: 1.5; opacity: 0.9; }
.map-label-big { font-size: 30px; font-weight: 300; letter-spacing: 0.04em; line-height: 1.1; }
.map-link {
  display: inline-block;
  color: var(--cream);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 10px 20px;
  border: 1px solid rgba(244, 237, 224, 0.4);
  border-radius: 100px;
  transition: all 0.2s;
}
.map-link:hover { background: var(--cream); color: var(--charcoal); border-color: var(--cream); }
@media (max-width: 700px) {
  .map-section { height: 540px; }
  .map-overlay { left: 5%; right: 5%; transform: translateY(-50%); }
  .map-label { max-width: 100%; padding: 22px 26px; }
  .map-label-big { font-size: 24px; }
}

/* FOOTER */
footer.site {
  background: var(--forest);
  color: var(--cream);
  padding: 60px 32px 36px;
}
footer.site .container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; align-items: start; }
footer.site .logo { display: flex; align-items: center; gap: 14px; }
footer.site .logo svg { width: 44px; }
footer.site .logo .name { font-size: 18px; font-weight: 300; letter-spacing: 0.06em; }
footer.site p { color: rgba(244,237,224,0.8); font-size: 14px; margin: 20px 0 0; max-width: 320px; line-height: 1.55; }
footer.site .col-head { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(244,237,224,0.5); margin-bottom: 14px; }
footer.site .col a { color: var(--cream); text-decoration: none; font-size: 14px; display: block; padding: 4px 0; opacity: 0.85; }
footer.site .col a:hover { opacity: 1; }
footer.site .bottom {
  max-width: 1100px;
  margin: 50px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(244,237,224,0.15);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(244,237,224,0.5);
}

@media (max-width: 950px) {
  .hero .container, .two-col, .calendar-card, .contact-grid, footer.site .container { grid-template-columns: 1fr; }
  .amenities { grid-template-columns: 1fr 1fr; }
  .trip-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  header.site nav { display: none; }
  .hero h1 { font-size: 38px; }
  h2.s-title { font-size: 32px; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .g-cell.tall { grid-row: span 1; }
}
