:root {
  --forest: #18352d;
  --forest-2: #244b3f;
  --sage: #7d9372;
  --sand: #e9dec9;
  --clay: #a35f3d;
  --sun: #d6a84f;
  --ink: #1d2622;
  --muted: #65716b;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: #d9d2c5;
  --shadow: 0 18px 50px rgba(20, 48, 39, 0.14);
  --radius: 18px;
  --max: 1180px;
}

* { 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: var(--paper);
  line-height: 1.65;
}
a { color: var(--forest-2); text-decoration: none; }
a:hover { color: var(--clay); }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 38px)); margin: 0 auto; }

.skip-link { position:absolute; left:-999px; top:auto; }
.skip-link:focus { left: 16px; top: 16px; z-index: 1000; background: white; padding: 10px 14px; border-radius: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,253,248,.94);
  border-bottom: 1px solid rgba(217,210,197,.8);
  backdrop-filter: blur(14px);
}
.nav-wrap { display:flex; align-items:center; justify-content:space-between; min-height:76px; gap:24px; }
.brand { display:flex; align-items:center; gap:12px; font-weight:800; letter-spacing:.02em; color:var(--forest); }
.brand-mark { width:42px; height:42px; border-radius:50% 50% 46% 54%; background:linear-gradient(145deg,var(--forest-2),var(--sage)); display:grid; place-items:center; color:white; font-size:20px; box-shadow:0 6px 18px rgba(24,53,45,.25); }
.brand small { display:block; color:var(--muted); font-weight:600; font-size:.72rem; letter-spacing:.11em; text-transform:uppercase; margin-top:-2px; }
.nav-links { display:flex; align-items:center; gap:20px; font-size:.95rem; font-weight:700; }
.nav-links a { color:var(--ink); }
.nav-links a.active, .nav-links a:hover { color:var(--clay); }
.nav-toggle { display:none; border:0; background:none; font-size:1.5rem; color:var(--forest); }

.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; border-radius:999px; padding:13px 20px; font-weight:800; border:1px solid transparent; transition:.2s ease; cursor:pointer; }
.btn-primary { background:var(--forest); color:white; box-shadow:0 10px 25px rgba(24,53,45,.2); }
.btn-primary:hover { background:var(--clay); color:white; transform:translateY(-1px); }
.btn-secondary { background:transparent; color:var(--forest); border-color:var(--forest); }
.btn-secondary:hover { background:var(--forest); color:white; }
.btn-light { background:white; color:var(--forest); }

.hero {
  position:relative;
  overflow:hidden;
  color:white;
  background:
    linear-gradient(90deg, rgba(16,42,35,.94) 0%, rgba(16,42,35,.78) 48%, rgba(16,42,35,.3) 100%),
    url('images/rv_aerial_solar.jpg') center 48%/cover no-repeat;
}
.hero::after { content:""; position:absolute; inset:auto 0 0; height:120px; background:linear-gradient(transparent,var(--paper)); }
.hero-inner { position:relative; z-index:2; min-height:690px; display:flex; align-items:center; padding:110px 0 150px; }
.hero-copy { max-width:760px; }
.eyebrow { display:inline-flex; align-items:center; gap:9px; padding:7px 12px; border-radius:999px; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.28); font-weight:800; font-size:.82rem; text-transform:uppercase; letter-spacing:.11em; }
.hero h1 { font-family: Georgia, 'Times New Roman', serif; font-size:clamp(3rem,7vw,6.3rem); line-height:.98; margin:24px 0 22px; max-width:930px; letter-spacing:-.04em; }
.hero p { font-size:clamp(1.08rem,2vw,1.35rem); max-width:720px; color:#f7f2e8; }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; }
.hero-note { margin-top:22px; font-size:.9rem; color:#e9dec9; }

.section { padding:88px 0; }
.section-sm { padding:58px 0; }
.section-dark { background:var(--forest); color:white; }
.section-sand { background:#f4eddf; }
.section-title { max-width:790px; margin-bottom:38px; }
.section-title.center { margin-left:auto; margin-right:auto; text-align:center; }
.kicker { color:var(--clay); text-transform:uppercase; letter-spacing:.14em; font-size:.78rem; font-weight:900; }
h1,h2,h3,h4 { line-height:1.17; }
h2 { font-family:Georgia,'Times New Roman',serif; font-size:clamp(2.25rem,4.5vw,4rem); margin:.5rem 0 1rem; color:var(--forest); letter-spacing:-.025em; }
.section-dark h2 { color:white; }
h3 { color:var(--forest); font-size:1.3rem; margin:.25rem 0 .65rem; }
.section-dark h3 { color:white; }
.lede { font-size:1.15rem; color:var(--muted); }
.section-dark .lede { color:#d9e4de; }

.grid { display:grid; gap:24px; }
.grid-2 { grid-template-columns:repeat(2,minmax(0,1fr)); }
.grid-3 { grid-template-columns:repeat(3,minmax(0,1fr)); }
.grid-4 { grid-template-columns:repeat(4,minmax(0,1fr)); }
.card { background:white; border:1px solid var(--line); border-radius:var(--radius); padding:26px; box-shadow:0 8px 30px rgba(24,53,45,.06); }
.card.soft { background:#fbf7ef; }
.card h3 { margin-top:0; }
.card .icon { width:46px; height:46px; border-radius:14px; display:grid; place-items:center; background:#e6eee8; color:var(--forest); font-size:1.35rem; margin-bottom:16px; }
.card ul { margin:.7rem 0 0; padding-left:1.1rem; }
.card li { margin-bottom:.36rem; }
.card .price { font-size:1.18rem; font-weight:900; color:var(--clay); margin-top:16px; }
.card .status { display:inline-block; margin-top:14px; font-size:.78rem; font-weight:900; text-transform:uppercase; letter-spacing:.08em; padding:6px 10px; border-radius:999px; background:#eef3ed; color:var(--forest); }

.pill-row { display:flex; flex-wrap:wrap; gap:10px; }
.pill { background:#e8efe9; color:var(--forest); border-radius:999px; padding:8px 13px; font-weight:800; font-size:.88rem; }

.split { display:grid; grid-template-columns:1.05fr .95fr; gap:58px; align-items:center; }
.split.reverse { grid-template-columns:.95fr 1.05fr; }
.image-frame { border-radius:26px; overflow:hidden; box-shadow:var(--shadow); position:relative; }
.image-frame img { width:100%; height:100%; object-fit:cover; min-height:420px; }
.image-caption { position:absolute; left:18px; bottom:18px; padding:9px 13px; border-radius:999px; background:rgba(255,255,255,.88); color:var(--forest); font-weight:800; font-size:.83rem; }

.stats { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:40px; }
.stat { padding:20px; border-radius:16px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16); }
.stat strong { display:block; font-size:1.45rem; }
.stat span { color:#d9e4de; font-size:.9rem; }

.banner { border-radius:28px; padding:42px; background:linear-gradient(125deg,var(--forest),var(--forest-2)); color:white; box-shadow:var(--shadow); }
.banner h2 { color:white; margin-top:0; }
.banner p { color:#e2ebe6; }

.travel-table { width:100%; border-collapse:collapse; background:white; border-radius:16px; overflow:hidden; border:1px solid var(--line); }
.travel-table th, .travel-table td { padding:14px 16px; border-bottom:1px solid var(--line); text-align:left; }
.travel-table th { background:var(--forest); color:white; }
.travel-table tr:last-child td { border-bottom:0; }

.notice { border-left:5px solid var(--sun); background:#fff8e7; padding:18px 20px; border-radius:12px; }
.notice strong { color:#6b4e12; }

.page-hero { background:linear-gradient(135deg,var(--forest),#31584a); color:white; padding:115px 0 80px; }
.page-hero h1 { font-family:Georgia,'Times New Roman',serif; font-size:clamp(2.8rem,6vw,5.4rem); margin:0 0 18px; letter-spacing:-.035em; }
.page-hero p { max-width:760px; font-size:1.18rem; color:#e2ebe6; }

.form-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.form-group { display:flex; flex-direction:column; gap:7px; }
.form-group.full { grid-column:1/-1; }
label { font-weight:800; }
input, select, textarea { width:100%; border:1px solid #b9b4aa; border-radius:12px; padding:13px 14px; background:white; color:var(--ink); font:inherit; }
textarea { min-height:160px; resize:vertical; }
input:focus, select:focus, textarea:focus { outline:3px solid rgba(163,95,61,.18); border-color:var(--clay); }

.footer { background:#0f241e; color:#d6e1db; padding:54px 0 26px; }
.footer-grid { display:grid; grid-template-columns:1.4fr .8fr .8fr 1fr; gap:34px; }
.footer h3 { color:white; margin-top:0; }
.footer a { color:#d6e1db; }
.footer a:hover { color:white; }
.footer ul { list-style:none; padding:0; margin:0; }
.footer li { margin-bottom:.5rem; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.13); margin-top:35px; padding-top:20px; font-size:.86rem; color:#aebeb6; display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.social { display:flex; flex-wrap:wrap; gap:12px; }
.social a { border:1px solid rgba(255,255,255,.2); border-radius:999px; padding:7px 11px; font-weight:700; }

.muted { color:var(--muted); }
.small { font-size:.88rem; }
.check-list { list-style:none; padding:0; }
.check-list li { position:relative; padding-left:28px; margin-bottom:10px; }
.check-list li::before { content:'✓'; position:absolute; left:0; top:0; color:var(--clay); font-weight:900; }

@media (max-width: 900px) {
  .nav-toggle { display:block; }
  .nav-links { display:none; position:absolute; top:76px; left:0; right:0; background:var(--paper); padding:20px; border-bottom:1px solid var(--line); flex-direction:column; align-items:flex-start; }
  .nav-links.open { display:flex; }
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .grid-3 { grid-template-columns:repeat(2,1fr); }
  .split, .split.reverse { grid-template-columns:1fr; gap:35px; }
  .stats { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 620px) {
  .container { width:min(100% - 26px,var(--max)); }
  .hero-inner { min-height:620px; padding:90px 0 120px; }
  .hero h1 { font-size:3.25rem; }
  .section { padding:68px 0; }
  .grid-2, .grid-3, .grid-4, .form-grid, .footer-grid { grid-template-columns:1fr; }
  .form-group.full { grid-column:auto; }
  .stats { grid-template-columns:1fr 1fr; }
  .banner { padding:30px 24px; }
  .image-frame img { min-height:300px; }
}


/* v2 pricing + field notes refinements */
.nav-links { gap: 16px; }
.price-highlight { display:inline-block; padding:10px 14px; border-radius:999px; background:#fff3d8; color:#6b4e12; font-weight:900; border:1px solid #ecd6a7; }
.price-example { background:#fbf7ef; border:1px solid var(--line); border-radius:16px; padding:18px 20px; }
.price-example strong { color:var(--clay); }
.table-wrap { overflow-x:auto; border-radius:16px; box-shadow:0 8px 30px rgba(24,53,45,.04); }
.table-wrap .travel-table { min-width:650px; }
.badge { display:inline-block; margin:.2rem .3rem .2rem 0; padding:5px 10px; border-radius:999px; background:#eef3ed; color:var(--forest); font-weight:800; font-size:.78rem; letter-spacing:.04em; text-transform:uppercase; }
.badge-warning { background:#fff4dc; color:#714f0f; }
.article-list { display:grid; gap:22px; }
.article-card { background:white; border:1px solid var(--line); border-radius:var(--radius); padding:28px; box-shadow:0 8px 30px rgba(24,53,45,.06); }
.article-card h3 { font-size:1.55rem; }
.article-meta { color:var(--muted); font-weight:800; font-size:.86rem; text-transform:uppercase; letter-spacing:.08em; }
.callout-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.callout { background:#fbf7ef; border:1px solid var(--line); border-radius:16px; padding:20px; }
.callout strong { color:var(--forest); display:block; margin-bottom:6px; }
@media (max-width: 900px) { .callout-grid { grid-template-columns:1fr; } }
@media (max-width: 620px) { .brand small { font-size:.62rem; } .brand-mark { width:38px; height:38px; } }
