:root {
  --bg: #f7f4ee;
  --paper: #fffdf9;
  --ink: #17211b;
  --muted: #607067;
  --accent: #2f5b46;
  --accent-dark: #214232;
  --line: #dfe5df;
  --warm: #d6b98c;
  --shadow: 0 20px 50px rgba(23, 33, 27, 0.10);
  --radius: 22px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(214,185,140,.16), transparent 28%),
    linear-gradient(180deg, #fbfaf6 0%, var(--bg) 100%);
  line-height: 1.6;
}

a { color: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(251,250,246,.84);
  border-bottom: 1px solid rgba(223,229,223,.9);
}
.nav {
  min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { text-decoration: none; display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(145deg, var(--accent), #6b8c79);
  position: relative; box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.brand-mark::before, .brand-mark::after {
  content: ""; position: absolute; bottom: 8px; width: 0; height: 0;
  border-left: 9px solid transparent; border-right: 9px solid transparent;
  border-bottom: 17px solid rgba(255,255,255,.94);
}
.brand-mark::before { left: 4px; transform: scale(.85); }
.brand-mark::after { right: 3px; transform: scale(1.05); }
.brand strong { display: block; font-size: .98rem; letter-spacing: .02em; }
.brand span { display: block; color: var(--muted); font-size: .78rem; margin-top: -2px; }

.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { text-decoration: none; font-weight: 600; font-size: .92rem; color: #34443a; }
.nav-links a:hover { color: var(--accent); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 18px; border-radius: 999px; text-decoration: none; font-weight: 750;
  border: 1px solid transparent; transition: .2s ease;
}
.btn-primary { background: var(--accent); color: white; box-shadow: 0 10px 24px rgba(47,91,70,.18); }
.btn-primary:hover { transform: translateY(-1px); background: var(--accent-dark); }
.btn-secondary { border-color: var(--line); background: rgba(255,255,255,.72); }
.btn-secondary:hover { border-color: #c8d2cb; background: white; }

.hero {
  min-height: 690px; display: grid; align-items: center; padding: 80px 0 70px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px;
  background: #eef4ef; border: 1px solid #d7e4da; border-radius: 999px;
  color: var(--accent-dark); font-weight: 800; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em;
}
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.6rem); line-height: .98; margin: 22px 0 24px;
  letter-spacing: -.045em; font-weight: 600;
}
.hero p { font-size: 1.14rem; color: var(--muted); max-width: 650px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-note { margin-top: 24px; font-size: .9rem; color: #748078; }

.hero-card {
  position: relative; min-height: 500px; border-radius: 30px; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(18,37,29,.08), rgba(18,37,29,.42)),
    linear-gradient(135deg, #8fa999 0%, #d9cfb6 52%, #5d7567 100%);
  box-shadow: var(--shadow);
}
.mountain {
  position: absolute; inset: auto -8% -1px -8%; height: 56%;
  background: #254534; clip-path: polygon(0 78%, 15% 62%, 27% 69%, 44% 33%, 55% 50%, 69% 17%, 84% 48%, 100% 35%, 100% 100%, 0 100%);
}
.mountain.second {
  background: #547060; height: 42%; opacity: .95;
  clip-path: polygon(0 76%, 12% 46%, 22% 58%, 38% 30%, 49% 60%, 62% 38%, 74% 61%, 89% 28%, 100% 55%, 100% 100%, 0 100%);
}
.cabin {
  position: absolute; left: 13%; bottom: 12%; width: 42%; height: 29%; background: #d4c3a7;
  clip-path: polygon(0 28%, 50% 0, 100% 28%, 100% 100%, 0 100%);
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}
.cabin::before {
  content:""; position:absolute; width: 18%; height: 38%; left: 15%; bottom: 0; background:#725c44;
}
.cabin::after {
  content:""; position:absolute; width: 23%; height: 26%; right: 15%; bottom: 28%; background:#f6e7bc;
  box-shadow: inset 0 0 0 6px rgba(77,66,48,.2);
}
.hero-card-copy {
  position: absolute; top: 26px; right: 26px; max-width: 220px;
  padding: 16px 18px; border-radius: 16px; background: rgba(255,255,255,.88); backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.hero-card-copy strong { display: block; font-size: .95rem; }
.hero-card-copy span { color: var(--muted); font-size: .83rem; }

.section { padding: 92px 0; }
.section.alt { background: rgba(255,255,255,.62); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 720px; margin-bottom: 38px; }
.section-head h2 {
  font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08; margin: 0 0 14px; letter-spacing: -.025em;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: 0 10px 30px rgba(23,33,27,.05);
}
.icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: #edf3ee; color: var(--accent); font-weight: 900; margin-bottom: 18px;
}
.card h3 { margin: 0 0 8px; font-size: 1.08rem; }
.card p { color: var(--muted); margin: 0; }

.contact-panel {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 26px;
  padding: 38px; border-radius: 28px; background: var(--accent); color: white;
  box-shadow: var(--shadow);
}
.contact-panel h2 { font-family: Georgia, "Times New Roman", serif; font-size: 2.5rem; margin: 0 0 10px; }
.contact-panel p { color: rgba(255,255,255,.78); }
.contact-list { display: grid; gap: 12px; align-content: center; }
.contact-item {
  display: flex; justify-content: space-between; gap: 20px; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.contact-item:last-child { border-bottom: 0; }
.contact-item span { color: rgba(255,255,255,.68); }
.contact-item a { color: white; font-weight: 700; text-decoration: none; }

.sms-box {
  margin-top: 32px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: #fbfcfa;
  color: #415047; font-size: .92rem;
}

.legal {
  max-width: 850px; margin: 0 auto; padding: 74px 0 100px;
}
.legal h1 { font-family: Georgia, "Times New Roman", serif; font-size: 3.2rem; margin-bottom: 10px; }
.legal h2 { margin-top: 34px; }
.legal p, .legal li { color: #526159; }
.legal .updated { color: #7c8880; margin-bottom: 38px; }

footer { padding: 34px 0 48px; }
.footer-grid {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 30px;
  border-top: 1px solid var(--line); padding-top: 28px; color: var(--muted); font-size: .9rem;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; }

@media (max-width: 900px) {
  .nav-links a:not(.btn) { display: none; }
  .hero { padding-top: 52px; }
  .hero-grid, .contact-panel { grid-template-columns: 1fr; }
  .hero-card { min-height: 420px; }
  .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 24px, var(--max)); }
  .brand span { display: none; }
  .hero h1 { font-size: 3.05rem; }
  .hero-card { min-height: 340px; }
  .contact-panel { padding: 26px; }
  .contact-item { flex-direction: column; gap: 3px; }
  .footer-grid { flex-direction: column; }
}
