:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #5f6f6a;
  --paper: #f7f3eb;
  --surface: #ffffff;
  --line: #d8ddd6;
  --accent: #0f6b5f;
  --accent-strong: #094a42;
  --warm: #c87941;
  --shadow: 0 18px 50px rgba(23, 33, 31, 0.13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  background: rgba(247, 243, 235, 0.88);
  border-bottom: 1px solid rgba(216, 221, 214, 0.8);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.language-select,
.hero-actions,
.contact-section {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-logo {
  width: auto;
  height: 40px;
  object-fit: contain;
}

.nav {
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.language-select {
  position: relative;
  gap: 8px;
  min-height: 38px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
}

.language-flag {
  font-size: 1.05rem;
  line-height: 1;
}

.language-select select {
  min-width: 112px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  outline: 0;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 18, 16, 0.78), rgba(9, 18, 16, 0.26) 54%, rgba(9, 18, 16, 0.08));
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(60px, 10vh, 110px) clamp(18px, 6vw, 80px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 7.6vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.primary:hover {
  background: var(--accent-strong);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-facts div {
  min-height: 112px;
  padding: clamp(18px, 3vw, 28px);
  background: var(--surface);
}

.quick-facts span,
.detail-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-facts strong,
.detail-card strong {
  font-size: clamp(1rem, 2vw, 1.24rem);
}

.section {
  padding: clamp(58px, 9vw, 108px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

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

.detail-card,
.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.detail-card {
  padding: clamp(18px, 3vw, 28px);
}

.detail-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.gallery-section {
  background: #e9eee9;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

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

.gallery-preview {
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.panel {
  padding: clamp(22px, 4vw, 40px);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.feature-list li {
  position: relative;
  padding-left: 24px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.contact-section {
  justify-content: space-between;
  gap: 24px;
  padding: clamp(40px, 7vw, 72px);
  background: var(--ink);
  color: #fff;
}

.contact-section p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .site-header {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px 18px;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-content: space-between;
  }

  .language-select {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .gallery-item {
    cursor: default;
  }

  .quick-facts,
  .details-grid,
  .split-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .contact-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    gap: 18px;
  }

  .language-select {
    justify-content: flex-end;
  }

  .brand-logo {
    height: 34px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(9, 18, 16, 0.28), rgba(9, 18, 16, 0.82));
  }

  .hero-overlay {
    width: calc(100% - 32px);
    margin: 0 16px 46px;
  }

  h1 {
    max-width: 11ch;
  }

  .quick-facts,
  .details-grid,
  .gallery,
  .split-section {
    grid-template-columns: 1fr;
  }

  .gallery-preview {
    aspect-ratio: 4 / 3;
  }
}
