:root {
  --red: #c1121f;
  --red-deep: #7a0b12;
  --sand: #f4efe7;
  --forest: #0b3d2e;
  --ink: #111214;
  --muted: #4d5056;
  --cream: #fff7ec;
  --line: rgba(17, 18, 20, 0.12);
  --shadow: 0 22px 60px rgba(12, 16, 26, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --space-xl: 96px;
  --space-lg: 64px;
  --space-md: 40px;
  --space-sm: 20px;
  --space-xs: 12px;
  --headline: "Playfair Display", "Times New Roman", serif;
  --body: "Space Grotesk", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: radial-gradient(circle at top, #fff, #f8f1e5 45%, #f0e6d8 70%, #e9dfd3 100%);
  min-height: 100vh;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1160px, 90vw);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 247, 236, 0.88);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  color: var(--muted);
}

.nav-links a.active {
  color: var(--ink);
  font-weight: 600;
}

.actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 26px rgba(193, 18, 31, 0.3);
}

.btn-secondary {
  border-color: var(--line);
  background: #fff;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.lang-toggle {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  display: flex;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
}

.lang-toggle span {
  padding: 2px 8px;
  border-radius: 999px;
  color: var(--muted);
}

.lang-toggle span.active {
  background: var(--forest);
  color: #fff;
}

.hero {
  position: relative;
  padding: var(--space-xl) 0 var(--space-lg);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.35;
  z-index: 0;
}

.hero::before {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(193, 18, 31, 0.55), rgba(193, 18, 31, 0));
  top: -120px;
  left: -60px;
}

.hero::after {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(11, 61, 46, 0.5), rgba(11, 61, 46, 0));
  bottom: -160px;
  right: -80px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-family: var(--headline);
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(193, 18, 31, 0.1);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.meta-tile {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  border: 1px solid rgba(17, 18, 20, 0.08);
}

.meta-tile h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.meta-tile span {
  font-size: 0.85rem;
  color: var(--muted);
}

section {
  padding: var(--space-lg) 0;
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.section-title h2 {
  font-family: var(--headline);
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.section-title p {
  color: var(--muted);
  max-width: 420px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  box-shadow: 0 14px 32px rgba(8, 15, 26, 0.08);
  min-height: 170px;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.band {
  background: linear-gradient(120deg, rgba(11, 61, 46, 0.1), rgba(193, 18, 31, 0.08));
  border-top: 1px solid rgba(17, 18, 20, 0.08);
  border-bottom: 1px solid rgba(17, 18, 20, 0.08);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(193, 18, 31, 0.1);
  color: var(--red-deep);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(17, 18, 20, 0.1);
}

.table th,
.table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(17, 18, 20, 0.08);
  font-size: 0.96rem;
}

.table th {
  background: var(--cream);
  font-weight: 600;
}

.table tr:last-child td {
  border-bottom: none;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.photo-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(17, 18, 20, 0.1);
  background: #fff;
  box-shadow: 0 12px 26px rgba(8, 15, 26, 0.1);
}

.photo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.photo-card span {
  display: block;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.map-card {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(17, 18, 20, 0.1);
  background: #fff;
  box-shadow: 0 12px 26px rgba(8, 15, 26, 0.1);
}

.map-thumb {
  height: 180px;
  background: linear-gradient(130deg, rgba(11, 61, 46, 0.18), rgba(193, 18, 31, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 600;
}

.map-card span {
  display: block;
  padding: 12px 14px;
  color: var(--ink);
  font-weight: 600;
}

footer {
  padding: var(--space-md) 0 var(--space-lg);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-grid h4 {
  color: var(--ink);
  margin-bottom: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(17, 18, 20, 0.1);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s ease forwards;
}

.fade-delay-1 { animation-delay: 0.1s; }
.fade-delay-2 { animation-delay: 0.25s; }
.fade-delay-3 { animation-delay: 0.4s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 70px 0 50px;
  }

  .actions {
    flex-direction: column;
    align-items: flex-end;
  }

  .hero-card {
    padding: 20px;
  }
}
