:root {
  --bg: #f8f1db;
  --bg-soft: #fff8ea;
  --surface: rgba(255, 251, 240, 0.92);
  --text: #2f2715;
  --muted: #746645;
  --line: rgba(96, 78, 31, 0.16);
  --brand: #d7a920;
  --brand-strong: #bf8f00;
  --brand-soft: #f2dd98;
  --green: #7f9442;
  --shadow: 0 18px 40px rgba(81, 58, 10, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 242, 183, 0.7), transparent 38%),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(255, 249, 235, 0.84);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.75);
  padding: 4px;
}

.brand strong,
#footerSiteName {
  display: block;
  font-size: 1rem;
}

.brand span,
.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero {
  position: relative;
  min-height: calc(92vh - 72px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(78, 59, 20, 0.45), rgba(53, 40, 14, 0.18)),
    linear-gradient(180deg, rgba(245, 215, 108, 0.75), rgba(235, 190, 62, 0.5));
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 16, 10, 0.12), rgba(20, 16, 10, 0.5)),
    linear-gradient(90deg, rgba(32, 23, 7, 0.54), rgba(32, 23, 7, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 30px 0 34px;
  color: #fffdf7;
}

.hero-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-shortcuts a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 230, 0.28);
  background: rgba(255, 251, 241, 0.12);
  color: #fff7de;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-content h1 {
  margin: 12px 0 16px;
  max-width: 720px;
  font-size: clamp(2.3rem, 5.2vw, 4.5rem);
  line-height: 1.02;
}

.hero-content p {
  max-width: 640px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 251, 243, 0.92);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f7e39a;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--brand-strong);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.primary-btn {
  background: var(--brand);
  color: #2f2201;
}

.secondary-btn,
.ghost-btn {
  border-color: rgba(255, 248, 230, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #fffdf7;
}

.ghost-btn {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.primary-btn:hover,
.secondary-btn:hover,
.ghost-btn:hover,
.carousel-btn:hover,
.lightbox-close:hover,
.lightbox-nav:hover {
  transform: translateY(-1px);
}

.content-section {
  padding: 44px 0;
}

.content-section.tint {
  background: rgba(255, 248, 229, 0.72);
}

.offer-band {
  padding: 20px 0 2px;
  background: linear-gradient(180deg, rgba(255, 247, 220, 0.98), rgba(250, 239, 203, 0.72));
}

.compact-head {
  margin-bottom: 18px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.offer-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.92);
  box-shadow: var(--shadow);
}

.offer-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.offer-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.availability-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: start;
}

.section-head {
  max-width: 780px;
  margin-bottom: 18px;
}

.section-head h2,
.copy-block h2,
.contact-card h3,
.footer-grid h3 {
  margin: 12px 0;
  font-size: clamp(1.65rem, 2.7vw, 2.5rem);
  line-height: 1.08;
}

.section-head p,
.copy-block p,
.contact-card p,
.contact-item,
.structure-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.feature-card,
.contact-card,
.gallery-card,
.info-card,
.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feature-image {
  min-height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35, 25, 10, 0.04), rgba(35, 25, 10, 0.28));
}

.fallback-card {
  display: flex;
  align-items: end;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 227, 130, 0.25), rgba(191, 143, 0, 0.42)),
    linear-gradient(135deg, rgba(127, 148, 66, 0.55), rgba(255, 252, 244, 0.72));
}

.fallback-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.carousel-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding: 6px 2px 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.96);
  color: var(--brand-strong);
  font-size: 1.45rem;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.gallery-card,
.video-card {
  min-height: 280px;
  position: relative;
  background: #efe3bc;
  scroll-snap-align: start;
}

.gallery-card {
  cursor: pointer;
}

.gallery-card img,
.gallery-card video,
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card .caption,
.video-card .caption,
.info-card .card-copy {
  padding: 14px;
}

.gallery-card .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(24, 18, 10, 0.74));
  color: #fff8ea;
}

.info-card {
  padding: 18px;
}

.info-card h3,
.video-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: #654903;
  font-size: 0.82rem;
  font-weight: 700;
}

.structure-copy {
  margin-top: 8px;
}

.inline-link,
.map-link {
  color: var(--brand-strong);
  font-weight: 700;
}

.contact-band {
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.96), rgba(244, 229, 188, 0.96)),
    linear-gradient(135deg, rgba(127, 148, 66, 0.1), rgba(255, 255, 255, 0.2));
}

.info-card img,
.info-card video {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}

.contact-card {
  padding: 22px;
}

.availability-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.availability-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.availability-toolbar strong {
  flex: 1;
  text-align: center;
  font-size: 1rem;
}

.availability-calendar {
  display: block;
}

.availability-calendar.single {
  min-height: 308px;
}

.availability-month {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  padding: 12px;
}

.availability-month h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.availability-weekdays,
.availability-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.availability-weekdays span {
  text-align: center;
  font-size: 0.74rem;
  color: var(--muted);
}

.availability-empty,
.availability-day {
  min-height: 34px;
  border-radius: 8px;
}

.availability-day {
  border: 1px solid var(--line);
  background: #fffdf8;
  color: var(--text);
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
}

.availability-day.disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.availability-day.unavailable {
  background: rgba(126, 116, 96, 0.16);
  color: #766648;
}

.availability-day.available {
  background: rgba(215, 169, 32, 0.14);
  color: #6f5306;
}

.availability-day.selected {
  border-color: var(--brand-strong);
  box-shadow: 0 0 0 2px rgba(191, 143, 0, 0.16);
}

.availability-result {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
}

.availability-result strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.availability-result p {
  margin: 0;
}

.availability-result .primary-btn,
.availability-result .ghost-btn {
  margin-top: 14px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.contact-item {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.social-actions {
  margin-top: 12px;
}

.social-actions .ghost-btn {
  color: var(--text);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #191816;
  color: #fff7de;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 38px 0 24px;
}

.footer-grid h3 {
  color: #ffb326;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p,
.footer-bottom span {
  color: rgba(255, 247, 222, 0.88);
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
}

.footer-eyebrow {
  display: block;
  margin-bottom: 14px;
  color: #9bb1e0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#footerDescription {
  max-width: 360px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: rgba(12, 10, 7, 0.86);
}

.lightbox.hidden {
  display: none;
}

.lightbox-content {
  max-width: min(1080px, 100%);
  margin: 0 auto;
}

.lightbox-content img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-caption {
  margin-top: 14px;
  color: #fff7de;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff7de;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  font-size: 1.8rem;
}

.lightbox-nav {
  width: 48px;
  height: 48px;
  font-size: 2rem;
}

.empty-state {
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.42);
}

@media (max-width: 1024px) {
  .offer-grid,
  .card-grid,
  .section-grid,
  .contact-grid,
  .availability-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 100%);
  }

  .header-inner {
    min-height: 66px;
  }

  .site-nav {
    gap: 10px;
  }

  .site-nav a:not(.ghost-btn) {
    display: none;
  }

  .hero {
    min-height: calc(86vh - 66px);
  }

  .hero-content {
    padding: 24px 0 26px;
  }

  .content-section {
    padding: 36px 0;
  }

  .offer-band {
    padding-top: 20px;
  }

  .carousel-shell {
    grid-template-columns: 1fr;
  }

  .carousel-track {
    grid-auto-columns: 86%;
  }

  .feature-image {
    min-height: 220px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .lightbox {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .lightbox-nav {
    display: none;
  }
}
