:root {
  --ink: #1a1f1c;
  --muted: #5c675f;
  --paper: #f7f4ef;
  --card: #ffffff;
  --line: #e4ddd2;
  --accent: #2f5d50;
  --shadow: 0 12px 40px rgba(26, 31, 28, 0.08);
  --radius: 18px;
  --max: 1080px;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, #efe6d6 0%, transparent 55%),
    radial-gradient(900px 400px at 100% 0%, #dfece6 0%, transparent 50%),
    var(--paper);
  line-height: 1.55;
}
a { color: var(--accent); }
img, video { max-width: 100%; display: block; }
code { font-size: 0.9em; }
.wrap { width: min(100% - 2rem, var(--max)); margin: 0 auto; }

.topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 0 0.4rem; gap: 1rem; flex-wrap: wrap;
}
.brand { font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.badge {
  background: var(--accent); color: #fff; border-radius: 999px;
  padding: 0.35rem 0.85rem; font-size: 0.8rem; letter-spacing: 0.03em;
}

.hero {
  display: grid; gap: 1.5rem; padding: 1.5rem 0 2.5rem;
  grid-template-columns: 1.2fr 0.8fr;
}
@media (max-width: 860px) { .hero { grid-template-columns: 1fr; } }
.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12; margin: 0.2rem 0 0.8rem; font-weight: 600;
}
.addr { font-size: 1.15rem; color: var(--muted); margin: 0 0 1.2rem; }
.lede { font-size: 1.05rem; max-width: 40ch; color: #2b322e; margin: 0; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.4rem; }
.btn {
  appearance: none; border: none; cursor: pointer; text-decoration: none;
  border-radius: 999px; padding: 0.75rem 1.2rem; font: inherit; font-size: 0.95rem;
  display: inline-block;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-secondary { background: transparent; color: var(--ink); border: 1px solid var(--line); }

.hero-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1.25rem 1.35rem;
}
.hero-card h2 {
  margin: 0 0 0.9rem; font-size: 1rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted); font-weight: 600;
}
.terms { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; }
.terms li {
  display: flex; justify-content: space-between; gap: 1rem;
  border-bottom: 1px dashed var(--line); padding-bottom: 0.65rem;
}
.terms li:last-child { border-bottom: none; padding-bottom: 0; }
.terms .k { color: var(--muted); }
.terms .v { font-weight: 600; text-align: right; }
.placeholder-pill {
  display: inline-block; background: #f1e7d5; color: #7a5b28;
  border-radius: 8px; padding: 0.15rem 0.45rem; font-size: 0.92em;
}

.section { padding: 0.5rem 0 2.5rem; }
.section h2 { font-size: 1.55rem; margin: 0 0 1rem; }

.gallery {
  display: grid; gap: 0.85rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 720px) { .gallery { grid-template-columns: 1fr; } }
.shot {
  background: #ebe4d8; border-radius: 14px; overflow: hidden;
  aspect-ratio: 4/3; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--muted); text-align: center; padding: 1rem;
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot.empty { font-size: 0.95rem; }

.video-frame {
  background: #111; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 16/9;
  display: grid; place-items: center; color: #d7d7d7;
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; }
.video-empty { text-align: center; padding: 2rem; }

.grid-facts {
  display: grid; gap: 0.85rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 720px) { .grid-facts { grid-template-columns: 1fr; } }
.fact {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 1rem 1.1rem; box-shadow: var(--shadow);
}
.fact .label { color: var(--muted); font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; }
.fact .value { font-size: 1.1rem; margin-top: 0.25rem; font-weight: 600; }

.contact {
  background: linear-gradient(135deg, #2f5d50, #3f7363);
  color: #fff; border-radius: var(--radius); padding: 1.6rem 1.5rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; align-items: center;
}
.contact a { color: #fff; }
.contact .sub { opacity: 0.85; margin-top: 0.25rem; }

footer {
  padding: 1.5rem 0 2.5rem; color: var(--muted); font-size: 0.9rem;
  border-top: 1px solid var(--line); margin-top: 1rem;
}

.contact-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 0.9fr 1.1fr;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: linear-gradient(135deg, #2f5d50, #3f7363);
  color: #fff; border-radius: var(--radius); padding: 1.4rem 1.35rem;
}
.contact-card a { color: #fff; text-decoration: underline; }
.inquiry-form {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1.25rem 1.3rem;
  display: grid; gap: 0.85rem;
}
.inquiry-form label { display: grid; gap: 0.35rem; font-size: 0.92rem; color: var(--muted); }
.inquiry-form input, .inquiry-form textarea {
  font: inherit; color: var(--ink); border: 1px solid var(--line);
  border-radius: 10px; padding: 0.65rem 0.75rem; background: #fff;
}
.inquiry-form button { justify-self: start; }
.form-note { margin: 0; font-size: 0.82rem; color: var(--muted); }
