:root {
  --bg: #f6f4f0;
  --surface: #ffffff;
  --surface-soft: rgba(255,255,255,0.9);
  --text: #1f2a33;
  --muted: #66727b;
  --accent: #ab6e3e;
  --accent-dark: #6c4121;
  --line: rgba(108, 65, 33, 0.12);
  --shadow: 0 24px 60px rgba(20, 20, 20, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #faf8f4 0%, #f3ece3 100%);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: 1160px; margin: 0 auto; }

.hero {
  position: relative;
  min-height: 92vh;
  padding: 6rem 1.2rem 6rem;
  color: white;
  background: url('assets/hero.jpg') center/cover no-repeat;
}
.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(26, 22, 18, 0.35), rgba(26, 22, 18, 0.7)),
    radial-gradient(circle at top left, rgba(255,255,255,0.16), transparent 30%);
}
.nav, .hero-inner { position: relative; z-index: 2; }
.nav {
  position: fixed;
  top: 0.9rem;
  left: 0.75rem;
  right: 0.75rem;
  max-width: 1160px;
  margin: 0 auto;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 20px;
  background: rgba(24, 24, 24, 0.34);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
  backdrop-filter: blur(12px);
}
.brand {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
.brand:hover {
  opacity: 0.82;
}
.nav-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.links { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.links a, .btn { text-decoration: none; }
.links a { color: rgba(255,255,255,0.92); font-size: 0.96rem; }
.language-switcher {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.28rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  background: transparent;
  color: white;
  cursor: pointer;
  font-weight: 700;
}
.lang-btn.active {
  background: white;
  color: var(--accent-dark);
}
.lang-flag {
  font-size: 0.95rem;
  line-height: 1;
}
.lang-code {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}
.hero-inner {
  max-width: 820px;
  padding-top: 5.5rem;
}
.eyebrow, .kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}
h1, h2, h3 { margin: 0; text-wrap: balance; }
h1 {
  margin-top: 0.85rem;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.98;
  max-width: 900px;
}
.lead {
  max-width: 720px;
  font-size: 1.12rem;
  color: rgba(255,255,255,0.92);
  margin-top: 1.2rem;
}
.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: white; color: var(--accent-dark); }
.btn.secondary { color: white; border: 1px solid rgba(255,255,255,0.55); background: rgba(255,255,255,0.08); }
.btn.ghost { color: var(--accent-dark); border: 1px solid var(--line); background: transparent; }

.statement-section {
  margin-top: -2.5rem;
  position: relative;
  z-index: 3;
  padding: 0 1.2rem;
}
.statement-card {
  background: var(--surface-soft);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 30px;
  padding: 1.8rem 2rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.statement-card h2 { margin-top: 0.35rem; font-size: clamp(1.8rem, 3.5vw, 2.9rem); }
.hero-small {
  min-height: 56vh;
  padding-top: 6rem;
}
.hero-small-inner {
  padding-top: 3.5rem;
}
.kicker { color: var(--accent); }
.section { padding: 5rem 1.2rem; scroll-margin-top: 110px; }
.split-layout, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.content-block h2, .section-heading h2, .highlight-grid h2, .contact-grid h2 {
  margin-top: 0.45rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
}
p, li, .section-heading p { color: var(--muted); }
.visual-card, .card, .feature-card, .gallery-card, .contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.visual-card, .gallery-card { overflow: hidden; }
.gallery-trigger {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.visual-card img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.gallery-preview-section {
  padding-top: 4rem;
}
.gallery-preview-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.gallery-preview-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.gallery-preview-copy {
  padding: 2rem;
}
.gallery-page-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1.2rem;
}
.center-cta {
  justify-content: center;
}
.alt { background: rgba(255,255,255,0.38); }
.section-heading { max-width: 760px; margin: 0 auto 2rem; }
.center { text-align: center; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  padding: 1.5rem;
  min-height: 220px;
}
.feature-number {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.12em;
}
.masonry-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1.2rem;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-card:hover img { transform: scale(1.03); }
.tall { grid-row: span 2; }
.wide { grid-column: span 2; }
.highlight-band {
  background: linear-gradient(180deg, #efe2d2 0%, #ead7c2 100%);
}
.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.contact-section {
  background: linear-gradient(180deg, #fff 0%, #f7efe5 100%);
}
.contact-card { padding: 1.5rem; }
.contact-card p + p { margin-top: 1rem; }
.contact-link {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: none;
}
.contact-link:hover {
  text-decoration: underline;
}
.lightbox-open {
  overflow: hidden;
}
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(12, 12, 12, 0.88);
  z-index: 9999;
}
.lightbox.open {
  display: flex;
}
.lightbox-stage {
  max-width: min(1100px, 80vw);
  max-height: 86vh;
  text-align: center;
}
.lightbox-stage img {
  max-width: 100%;
  max-height: 76vh;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.lightbox-stage p {
  color: rgba(255,255,255,0.88);
  margin-top: 0.9rem;
}
.lightbox-close,
.lightbox-nav {
  border: 0;
  cursor: pointer;
  color: white;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}
.lightbox-nav {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  font-size: 2rem;
  flex: 0 0 auto;
}
.map-embed {
  margin: 1rem 0 1.2rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}
.hover-lift { transition: transform 0.26s ease, box-shadow 0.26s ease; }
.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(20,20,20,0.12);
}
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.85s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .fade-up { opacity: 1; transform: none; }
}
@media (max-width: 980px) {
  .split-layout, .contact-grid, .highlight-grid, .masonry-grid, .statement-card, .gallery-preview-card, .gallery-page-grid { grid-template-columns: 1fr; }
  .wide, .tall { grid-column: auto; grid-row: auto; }
}
@media (max-width: 760px) {
  .nav, .nav-controls { flex-direction: column; align-items: flex-start; }
  .hero-inner { padding-top: 4rem; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .lightbox {
    padding: 1rem 0.5rem;
    gap: 0.5rem;
  }
  .lightbox-stage {
    max-width: 100%;
  }
  .lightbox-nav {
    width: 44px;
    height: 44px;
  }
}
