:root {
  --bg: #f4f1ea;
  --bg-alt: #ebe6db;
  --ink: #1c1a16;
  --muted: #5c574e;
  --line: #d4cec2;
  --accent: #2f5d50;
  --accent-2: #c46b3a;
  --card: #fffcf6;
  --shadow: 0 18px 40px rgba(28, 26, 22, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Serif 4", Georgia, serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 18px;
}

.sans { font-family: "Outfit", system-ui, sans-serif; }

a { color: var(--accent); }
img { max-width: 100%; display: block; }

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 241, 234, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
}
.nav { display: flex; gap: 22px; flex-wrap: wrap; }
.nav a {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
}
.nav a:hover { color: var(--ink); }

.hero {
  padding: 72px 0 36px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.kicker {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 12px;
}
h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.12;
  font-weight: 600;
  margin-bottom: 18px;
}
.lede { color: var(--muted); font-size: 20px; max-width: 620px; }
.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 18px;
  transform: rotate(-1.2deg);
}
.hero-card img { width: 100%; height: 340px; object-fit: cover; }

.disclaimer {
  margin: 28px 0 8px;
  padding: 16px 18px;
  border-left: 3px solid var(--accent-2);
  background: #f8efe6;
  font-size: 15px;
  color: #4a433a;
}

.grid-3, .grid-2 {
  display: grid;
  gap: 22px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }

.section { padding: 56px 0; }
.section h2 {
  font-size: 32px;
  margin-bottom: 14px;
}
.section p + p { margin-top: 14px; }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 22px;
  box-shadow: var(--shadow);
}
.card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  margin-bottom: 8px;
}
.card p { color: var(--muted); font-size: 16px; }

.photo-row img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 14px 16px;
  margin-bottom: 10px;
}
.faq summary {
  font-family: "Outfit", sans-serif;
  cursor: pointer;
  font-weight: 600;
}

.contact-box {
  background: var(--ink);
  color: #f4f1ea;
  padding: 36px;
}
.contact-box h2 { color: #fff; }
.contact-box a { color: #e8c4a8; }

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 48px;
  color: var(--muted);
  font-size: 14px;
}
.foot-links { display: flex; gap: 18px; margin-bottom: 12px; flex-wrap: wrap; }
.foot-links a { color: var(--muted); text-decoration: none; font-family: "Outfit", sans-serif; font-size: 13px; }

.legal { padding: 80px 0 60px; }
.legal h1 { font-size: 40px; margin-bottom: 20px; }
.legal h2 { margin: 28px 0 10px; font-size: 24px; }
.legal p { margin-bottom: 12px; color: #3f3b35; }

.reveal { opacity: 0; transform: translateY(16px); animation: up 0.8s ease forwards; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.25s; }
.d3 { animation-delay: 0.4s; }

@keyframes up {
  to { opacity: 1; transform: none; }
}

@media (max-width: 860px) {
  .hero, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero-card img { height: 240px; }
  .nav { display: none; }
}