:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --surface-soft: #f4efe6;
  --text: #1f1f1f;
  --muted: #66615a;
  --border: #e6ded2;
  --accent: #8a5a2b;
  --accent-dark: #5f3c1c;
  --shadow: 0 14px 40px rgba(31, 31, 31, 0.08);
  --radius: 22px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-soft { background: var(--surface-soft); }
.section-label, .eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 0; font-size: clamp(2.1rem, 6vw, 4.4rem); line-height: 1.12; letter-spacing: -0.045em; }
h2 { margin: 0; font-size: clamp(1.8rem, 3.5vw, 3rem); line-height: 1.2; letter-spacing: -0.035em; }
h3 { margin: 0 0 12px; font-size: 1.2rem; }
p { margin: 0 0 1rem; }
.lead { margin-top: 24px; font-size: 1.08rem; color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(230, 222, 210, 0.9);
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; color: #fff; background: var(--accent); }
.site-nav { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 0.94rem; }
.site-nav a { text-decoration: none; }
.site-nav a:hover { color: var(--accent-dark); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); }
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--text); }

.hero { padding-top: 72px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr); gap: 48px; align-items: center; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-actions.center { justify-content: center; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 12px 20px; border-radius: 999px; border: 1px solid var(--accent); font-weight: 700; text-decoration: none; }
.button.primary { color: #fff; background: var(--accent); }
.button.primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.button.secondary { color: var(--accent-dark); background: transparent; }
.hero-card { padding: 18px; border-radius: calc(var(--radius) + 10px); background: var(--surface); box-shadow: var(--shadow); }
.image-placeholder, .map-placeholder { min-height: 420px; display: grid; place-items: center; border: 1px dashed #b9aa98; border-radius: var(--radius); color: var(--muted); background: linear-gradient(135deg, rgba(138, 90, 43, 0.08), rgba(138, 90, 43, 0)), var(--surface-soft); text-align: center; }
.image-placeholder.small { min-height: 210px; }
.map-placeholder { min-height: 360px; align-content: center; gap: 8px; }
.map-placeholder small { display: block; max-width: 260px; font-size: 0.8rem; }

.two-column { display: grid; grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr); gap: 44px; }
.text-block { font-size: 1.05rem; color: var(--muted); }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading p:last-child { color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 26px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); box-shadow: 0 8px 26px rgba(31, 31, 31, 0.04); }
.card p { color: var(--muted); }
.price { margin-top: 18px; font-weight: 800; color: var(--accent-dark) !important; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.access-grid { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr); gap: 34px; align-items: start; }
.info-list { margin: 28px 0 0; border-top: 1px solid var(--border); }
.info-list div { display: grid; grid-template-columns: 120px 1fr; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--border); }
.info-list dt { font-weight: 800; }
.info-list dd { margin: 0; color: var(--muted); }
.map-card { padding: 16px; border-radius: calc(var(--radius) + 8px); background: var(--surface); box-shadow: var(--shadow); }

.cta-section { background: var(--accent-dark); color: #fff; }
.cta-box { max-width: 760px; text-align: center; }
.cta-box .section-label { color: #e8d0b5; }
.cta-box p { color: rgba(255, 255, 255, 0.8); }
.cta-box .button.secondary { color: #fff; border-color: rgba(255, 255, 255, 0.7); }

.narrow { max-width: 820px; }
details { border-bottom: 1px solid var(--border); padding: 18px 0; }
summary { cursor: pointer; font-weight: 800; }
details p { margin-top: 10px; color: var(--muted); }

.site-footer { padding: 34px 0 96px; color: var(--muted); background: var(--bg); }
.footer-inner { display: flex; justify-content: space-between; gap: 16px; }
.footer-inner p { margin: 0; }
.footer-inner a { text-decoration: none; color: var(--accent-dark); }
.fixed-cta { position: fixed; left: 50%; bottom: 18px; z-index: 60; display: none; width: min(calc(100% - 24px), 480px); transform: translateX(-50%); grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: 999px; box-shadow: var(--shadow); }
.fixed-cta a { padding: 13px 16px; text-align: center; text-decoration: none; font-weight: 800; color: #fff; background: var(--accent); }
.fixed-cta a + a { border-left: 1px solid rgba(255, 255, 255, 0.28); }

@media (max-width: 860px) {
  .site-nav { position: fixed; inset: 72px 16px auto; display: none; flex-direction: column; align-items: stretch; padding: 18px; border: 1px solid var(--border); border-radius: 18px; background: var(--surface); box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 10px 4px; }
  .nav-toggle { display: block; }
  .hero-grid, .two-column, .access-grid { grid-template-columns: 1fr; }
  .card-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
  .fixed-cta { display: grid; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .card-grid, .gallery-grid { grid-template-columns: 1fr; }
  .info-list div { grid-template-columns: 1fr; gap: 4px; }
  .footer-inner { flex-direction: column; }
  .image-placeholder, .map-placeholder { min-height: 280px; }
}
