:root {
  --cream: #f4f1e9;
  --cream-light: #fbfaf6;
  --ink: #29312d;
  --muted: #69716c;
  --green: #6e806f;
  --green-dark: #435548;
  --sage: #dce3d8;
  --sand: #e8e0d3;
  --white: #ffffff;
  --line: rgba(41, 49, 45, .14);
  --shadow: 0 24px 70px rgba(31, 39, 34, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream-light);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  transition: background .35s ease, border .35s ease, backdrop-filter .35s ease;
}
.site-header.scrolled {
  background: rgba(251, 250, 246, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.brand img {
  width: 54px; height: 54px; object-fit: contain;
  filter: none;
}
.site-header:not(.scrolled) .brand,
.site-header:not(.scrolled) .nav-links { color: var(--white); }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 600; }
.nav-links a { opacity: .9; }
.nav-links a:hover { opacity: 1; }
.nav-contact { border: 1px solid currentColor; padding: 10px 16px; border-radius: 999px; }
.menu-button { display: none; }

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(25,33,29,.72) 0%, rgba(25,33,29,.34) 52%, rgba(25,33,29,.10) 100%),
              linear-gradient(0deg, rgba(25,33,29,.48), transparent 55%);
}
.hero-content {
  position: relative; color: var(--white);
  padding-block: 180px 100px;
  max-width: 760px;
  margin-left: max(20px, calc((100vw - 1160px)/2));
  margin-right: 20px;
}
.hero-logo { width: 150px; margin-bottom: 26px; opacity: 1; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .18em;
  font-size: 12px; font-weight: 700; margin: 0 0 18px;
}
.eyebrow.dark { color: var(--green-dark); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.03; letter-spacing: -.045em;
  margin-bottom: 24px;
}
h2 { font-size: clamp(36px, 5vw, 58px); line-height: 1.1; letter-spacing: -.04em; margin-bottom: 20px; }
h3 { font-size: 25px; line-height: 1.25; letter-spacing: -.02em; }
.hero-text { max-width: 600px; font-size: 19px; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.button {
  min-height: 52px; padding: 0 22px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--white); color: var(--green-dark); }
.button-ghost { border: 1px solid rgba(255,255,255,.7); color: var(--white); }

.section { padding-block: 110px; }
.intro { background: var(--cream-light); }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
.section-heading p, .lead { color: var(--muted); font-size: 18px; }
.centered { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.facts-grid {
  margin-top: 70px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.fact { padding: 28px 22px; border-right: 1px solid var(--line); }
.fact:last-child { border-right: 0; }
.fact strong { display: block; font-size: 17px; margin-bottom: 7px; }
.fact span { color: var(--muted); font-size: 13px; }
.amenities {
  margin-top: 60px; background: var(--cream);
  border-radius: 26px; padding: 42px;
}
.amenities-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 30px; color: var(--muted); }
.amenities-list span::before { content: "—"; margin-right: 10px; color: var(--green); }

.price-section { background: var(--cream); }
.price-card {
  max-width: 900px; margin: auto; background: var(--white);
  border-radius: 28px; padding: 16px 34px; box-shadow: var(--shadow);
}
.price-row {
  display: flex; justify-content: space-between; gap: 30px; align-items: center;
  padding: 23px 4px; border-bottom: 1px solid var(--line);
}
.price-row:last-child { border: 0; }
.price-row strong, .price-row span { display: block; }
.price-row span { color: var(--muted); font-size: 13px; margin-top: 4px; }
.price-row b { white-space: nowrap; font-size: 18px; color: var(--green-dark); }
.price-note { max-width: 900px; margin: 20px auto 0; color: var(--muted); font-size: 13px; }
.service-card {
  margin-top: 42px; padding: 42px; border-radius: 28px;
  background: var(--green-dark); color: var(--white);
  display: flex; justify-content: space-between; gap: 40px; align-items: center;
}
.service-card p { color: rgba(255,255,255,.76); max-width: 650px; }
.service-price { text-align: right; }
.service-price span, .service-price strong { display: block; }
.service-price span { opacity: .7; font-size: 13px; }
.service-price strong { font-size: 28px; }

.gallery-section { background: var(--cream-light); }
.gallery {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  grid-auto-rows: 230px; gap: 16px; margin-top: 40px;
}
.gallery-item, .gallery-placeholder {
  border: 0; border-radius: 22px; overflow: hidden; padding: 0;
  background: var(--sage); position: relative;
}
.gallery-item.large { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-placeholder { display: grid; place-items: center; color: var(--green-dark); font-weight: 700; }
.gallery-placeholder:nth-child(3), .gallery-placeholder:nth-child(5) { background: var(--sand); }

.bechyne-section { background: #edf1eb; }
.places article {
  display: grid; grid-template-columns: 46px 1fr; gap: 18px;
  padding: 23px 0; border-bottom: 1px solid var(--line);
}
.places article > span { color: var(--green); font-weight: 700; }
.places p { color: var(--muted); margin: 4px 0 0; font-size: 14px; }
.events-panel {
  margin-top: 70px; background: var(--white);
  border-radius: 28px; padding: 42px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.event-list article { padding: 16px 0; border-bottom: 1px solid var(--line); }
.event-list time { display: block; color: var(--green); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 5px; }

.contact-section { background: var(--cream-light); }
.contact-card {
  background: var(--green-dark); color: var(--white);
  padding: 64px; border-radius: 34px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}
.contact-card p { color: rgba(255,255,255,.72); }
.contact-details a, .contact-details div {
  display: block; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.16);
}
.contact-details span, .contact-details strong { display: block; }
.contact-details span { font-size: 12px; text-transform: uppercase; letter-spacing: .13em; opacity: .66; margin-bottom: 4px; }
.contact-details strong { font-size: 18px; }

footer { background: #222a26; color: rgba(255,255,255,.68); padding: 30px 0; font-size: 12px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-brand { color: var(--white); }
.footer-brand img { width: 42px; height: 42px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

.lightbox { padding: 0; border: 0; background: transparent; max-width: min(1100px, 92vw); }
.lightbox::backdrop { background: rgba(15,20,17,.9); }
.lightbox img { max-height: 88vh; border-radius: 18px; }
.lightbox-close {
  position: fixed; right: 25px; top: 20px; border: 0; background: transparent;
  color: white; font-size: 42px; cursor: pointer;
}

@media (max-width: 850px) {
  .site-header:not(.scrolled) .menu-button { color: white; border-color: rgba(255,255,255,.5); }
  .menu-button { display: block; background: transparent; border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px; color: var(--ink); }
  .nav-links {
    display: none; position: absolute; left: 20px; right: 20px; top: 76px;
    background: var(--cream-light); color: var(--ink) !important;
    padding: 22px; border-radius: 18px; box-shadow: var(--shadow);
    flex-direction: column; align-items: stretch; gap: 16px;
  }
  .nav-links.open { display: flex; }
  .two-column, .events-panel, .contact-card { grid-template-columns: 1fr; gap: 36px; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; grid-row: auto; }
  .service-card { flex-direction: column; align-items: flex-start; }
  .service-price { text-align: left; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding-block: 78px; }
  .hero { min-height: 88vh; }
  .hero-content { padding-block: 140px 70px; }
  .hero-logo { width: 116px; }
  .facts-grid { grid-template-columns: 1fr; }
  .fact { border-right: 0; border-bottom: 1px solid var(--line); }
  .amenities { padding: 28px 22px; }
  .amenities-list { grid-template-columns: 1fr; }
  .price-card { padding: 8px 20px; border-radius: 22px; }
  .price-row { align-items: flex-start; }
  .service-card, .events-panel, .contact-card { padding: 28px 22px; border-radius: 22px; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item.large { grid-column: auto; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Animated SVG logo */
.brand img, .hero-logo { animation: logo-arrive .9s ease-out both; }
.brand:hover img { transform: scale(1.04); }
@keyframes logo-arrive { from { opacity: 0; transform: translateY(6px) scale(.97); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .brand img, .hero-logo { animation: none; } }


.event-list article a {
  display: block;
  transition: color .2s ease, transform .2s ease;
}

.event-list article a:hover {
  color: var(--green-dark);
  transform: translateX(4px);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-left: 1rem;
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 2.1rem;
  padding: 0 .45rem;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.language-switcher a:hover,
.language-switcher a[aria-current="page"] {
  background: #fff;
  color: var(--green-dark);
  border-color: #fff;
}

@media (max-width: 900px) {
  .language-switcher {
    margin: .75rem 0 0;
  }
}

/* Final gallery image protection */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
