:root {
  --spruce-950: #14261d;
  --spruce-900: #1e3a2f;
  --spruce-800: #2a4d3e;
  --granite-700: #3f4a4e;
  --granite-600: #556065;
  --granite-300: #aab2b4;
  --copper-700: #9d5c2c;
  --copper-600: #c17a3d;
  --copper-500: #d08a48;
  --amber-300: #e8c39a;
  --cream-50: #faf9f4;
  --cream-100: #f3f1e9;
  --cream-200: #e5dfcf;
  --ink: #1b211d;
  --line: rgba(30, 58, 47, .14);
  --radius: 8px;
  --shadow: 0 14px 34px rgba(30, 58, 47, .1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--cream-50);
  color: var(--ink);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 {
  font-family: Fraunces, Georgia, serif;
  line-height: 1.13;
  color: var(--spruce-950);
  letter-spacing: 0;
}
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.alertbar {
  background: var(--spruce-900);
  color: var(--cream-100);
  font-size: .88rem;
  text-align: center;
  padding: 9px 16px;
}
.alertbar a { color: var(--amber-300); font-weight: 800; text-decoration: underline; }

.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 244, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.navrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: Fraunces, serif;
  font-weight: 800;
  font-size: 1.16rem;
  color: var(--spruce-950);
  min-width: 0;
}
.brand span { white-space: nowrap; overflow-wrap: normal; }
.brand small {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: .62rem;
  text-transform: uppercase;
  color: var(--granite-600);
  letter-spacing: .08em;
}
.mountain-mark {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--copper-600);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.foot-brand .mountain-mark { stroke: var(--amber-300); }

.mainnav ul { display: flex; gap: 26px; font-weight: 650; font-size: .94rem; }
.mainnav a { padding: 7px 0; position: relative; }
.mainnav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--copper-600);
  transform: scaleX(0);
  transition: .2s;
}
.mainnav a:hover:after, .mainnav a[aria-current=page]:after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle {
  font-family: "JetBrains Mono", monospace;
  font-size: .76rem;
  color: var(--granite-600);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
  display: flex;
  gap: 4px;
}
.lang-toggle a, .lang-toggle span { padding: 2px 6px; border-radius: 999px; }
.lang-toggle .active { background: var(--spruce-900); color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 800;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--copper-600);
  color: #fff;
  box-shadow: 0 8px 18px rgba(193, 122, 61, .24);
}
.btn-primary:hover { background: var(--copper-700); }
.btn-ghost { border-color: var(--spruce-900); color: var(--spruce-900); }
.btn-small { padding: 8px 13px; font-size: .8rem; }
.menu-toggle { display: none; font-size: 1.35rem; background: none; border: 0; }

.home-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(20, 38, 29, .95), rgba(30, 58, 47, .98)),
    var(--spruce-900);
  color: var(--cream-100);
  padding: 74px 0 52px;
}
.home-hero:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  background:
    linear-gradient(135deg, transparent 0 24%, rgba(193, 122, 61, .22) 24% 25%, transparent 25% 49%, rgba(193, 122, 61, .18) 49% 50%, transparent 50% 74%, rgba(193, 122, 61, .14) 74% 75%, transparent 75%);
  opacity: .7;
}
.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 46px;
  align-items: center;
}
.home-hero h1 {
  color: var(--cream-50);
  font-size: clamp(2.5rem, 5.2vw, 4.65rem);
  max-width: 11.5ch;
  margin: 16px 0 18px;
}
.home-hero .lead {
  color: #d8dfd4;
  font-size: 1.14rem;
  max-width: 58ch;
}
.home-hero .eyebrow { color: var(--amber-300); }
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 28px;
}
.home-hero .btn-ghost {
  color: var(--cream-50);
  border-color: rgba(243, 241, 233, .56);
}
.home-hero .btn-ghost:hover {
  background: rgba(243, 241, 233, .1);
}
.hero-stats {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-stats div {
  border-left: 2px solid var(--copper-600);
  padding-left: 12px;
}
.hero-stats strong {
  display: block;
  color: var(--cream-50);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.28rem;
}
.hero-stats span {
  display: block;
  color: #bdc8bb;
  font-size: .84rem;
}
.home-hero-art {
  min-height: 360px;
  display: grid;
  place-items: center;
}
.wang-hero-mark {
  width: min(440px, 100%);
  height: auto;
  overflow: visible;
}
.wang-hero-mark .wang-roof {
  fill: none;
  stroke: var(--cream-100);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .92;
}
.wang-hero-mark .copper-fill {
  fill: rgba(193, 122, 61, .28);
  stroke: none;
}
.wang-hero-mark .mist {
  fill: none;
  stroke: var(--granite-300);
  stroke-width: 3;
  stroke-linecap: round;
  opacity: .28;
}
.wang-hero-mark .mist-2 { opacity: .2; }
.wang-hero-mark .mist-3 { opacity: .16; }
.home-main { padding-top: 48px; }

.article { padding: 12px 0 56px; }
.home-section {
  margin: 0 0 58px;
}
.section-head {
  max-width: none;
  margin: 0 0 24px;
}
.section-head h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  margin: 8px 0 10px;
}
.section-head p {
  color: var(--granite-700);
  font-size: 1rem;
}
.feature-grid {
  margin-top: 0;
}
.home-lodging,
.home-blog {
  position: relative;
}
.weather-planner,
.official-links {
  background:
    linear-gradient(180deg, rgba(85, 96, 101, .07), transparent 48%),
    var(--cream-100);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px;
}
.official-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.official-grid a {
  display: flex;
  align-items: center;
  min-height: 78px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  color: var(--spruce-900);
  font-weight: 800;
  box-shadow: var(--shadow);
}
.official-grid a:hover {
  border-color: rgba(193, 122, 61, .55);
  color: var(--copper-700);
}
.breadcrumb {
  font-size: .83rem;
  color: var(--granite-600);
  padding: 16px 0;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.breadcrumb a { text-decoration: underline; }
.article-hero {
  position: relative;
  overflow: hidden;
  padding: 26px 0 36px;
}
.article-hero:before {
  content: "";
  position: absolute;
  inset: 0 -12vw auto auto;
  height: 100%;
  width: min(520px, 65vw);
  pointer-events: none;
  opacity: .28;
  background:
    repeating-linear-gradient(172deg, transparent 0 18px, rgba(85, 96, 101, .18) 19px, transparent 21px);
}
.article-hero > * { position: relative; }
.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper-600);
  font-weight: 800;
}
.article-hero h1 { font-size: clamp(2rem, 4vw, 3.55rem); max-width: none; margin: 14px 0 16px; }
.lead { font-size: 1.12rem; color: var(--granite-700); max-width: none; }
.article-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.article-meta span, .price-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: .74rem;
  background: var(--cream-100);
  color: var(--granite-600);
  border-radius: 999px;
  padding: 6px 10px;
}

.content { max-width: none; width: 100%; }
.content h2 { font-size: 1.45rem; margin: 36px 0 12px; }
.content p { margin-bottom: 15px; color: #354033; }
.content a { color: var(--copper-600); font-weight: 800; text-decoration: underline; }
.article-image {
  margin: 0 0 30px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.article-image picture {
  display: block;
}
.article-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.article-image figcaption {
  padding: 10px 14px;
  background: var(--cream-100);
  color: var(--granite-600);
  font-size: .78rem;
}
.callout {
  background: var(--cream-100);
  border-left: 4px solid var(--copper-600);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 26px 0;
}
.callout p { margin-bottom: 0; }
.source-links {
  margin: 26px 0;
  padding: 18px 20px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-left: 4px solid var(--copper-600);
  border-radius: var(--radius);
}
.source-links h2 {
  margin-top: 0;
}

.decision-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 24px 0 36px; }
.decision-card, .card, .price-card, .weather-card {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.decision-card { display: flex; flex-direction: column; gap: 8px; }
.decision-card .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: .68rem;
  text-transform: uppercase;
  color: var(--copper-600);
  font-weight: 800;
}
.decision-card h3 { font-size: 1.04rem; }
.decision-card p { font-size: .9rem; color: var(--granite-600); flex: 1; }
.decision-card a { font-weight: 800; color: var(--copper-600); }
.camera-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 24px 0 36px;
}
.camera-card {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-height: 100%;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.camera-card .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: .68rem;
  text-transform: uppercase;
  color: var(--copper-600);
  font-weight: 800;
}
.camera-card h3 { font-size: 1.04rem; }
.camera-card p {
  flex: 1;
  color: var(--granite-600);
  font-size: .9rem;
}
.camera-card a {
  color: var(--copper-600);
  font-weight: 800;
}

.lead-form-card {
  margin: 34px 0;
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.lead-form-sub { color: var(--granite-600); margin: 6px 0 20px; }
.lead-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.field label { display: block; font-size: .82rem; font-weight: 800; color: var(--spruce-900); margin-bottom: 6px; }
.field input, .field select, .field textarea, .nform input {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: var(--cream-50);
  font: inherit;
}
.field.wide { margin: 16px 0; }
.consent-row { display: flex; gap: 9px; align-items: flex-start; font-size: .84rem; color: var(--granite-600); margin: 14px 0; }
.consent-row input { margin-top: 4px; }

.faq-item { border-bottom: 1px solid var(--line); padding: 14px 0; }
.faq-item summary { font-weight: 800; cursor: pointer; }
.related {
  background: var(--spruce-900);
  border-radius: 12px;
  padding: 28px;
  margin-top: 42px;
}
.related h2 { color: #fff; font-size: 1.2rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 16px; }
.related a {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 14px;
  color: var(--cream-100);
  font-weight: 800;
  text-decoration: none;
}

.newsletter-band {
  padding: 52px 0;
  background:
    linear-gradient(180deg, rgba(85, 96, 101, .08), transparent 42%),
    var(--cream-100);
}
.newsletter { display: grid; grid-template-columns: 1.2fr 1fr; gap: 34px; align-items: center; }
.newsletter h2 { font-size: 2rem; margin: 8px 0; }
.nform { display: grid; gap: 12px; }
.nform button { background: var(--spruce-900); color: #fff; border: 0; border-radius: 8px; padding: 12px; font-weight: 800; }

.weather-widget { padding: 28px 0; }
.weather-panel {
  background: var(--spruce-900);
  color: #e8f0e6;
  border-radius: 14px;
  padding: 28px;
}
.weather-panel h2 { color: #fff; }
.weather-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 20px; }
.weather-card strong, .weather-card span, .weather-card small { display: block; }
.weather-card span { font-size: 1.1rem; font-weight: 800; color: var(--spruce-900); }

footer { background: var(--spruce-950); color: #b9c6b6; padding: 54px 0 24px; }
.foot-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr; gap: 32px; }
.foot-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Fraunces, serif;
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.foot-col h5 {
  font-family: "JetBrains Mono", monospace;
  color: #fff;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .08em;
  margin-bottom: 13px;
}
.foot-col li { margin-bottom: 8px; font-size: .9rem; }
.foot-col a:hover { color: var(--amber-300); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 34px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: .82rem;
}

#cookie-consent-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  max-width: 880px;
  margin: auto;
  background: #fffdf8;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(30, 58, 47, .22);
  border-radius: 8px;
  padding: 18px;
}
.cookie-consent-title { font-weight: 900; margin-bottom: 6px; }
.cookie-consent-actions { display: flex; gap: 10px; margin-top: 14px; }
.cookie-consent-actions button, .cookie-consent-settings {
  border: 0;
  border-radius: 6px;
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
}
.cookie-consent-accept { background: var(--copper-600); color: #fff; }
.cookie-consent-reject { background: var(--cream-200); }
.cookie-consent-settings {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--spruce-900);
  color: #fff;
  z-index: 9998;
}

@media (max-width: 980px) {
  .mainnav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--cream-50);
    border-bottom: 1px solid var(--line);
  }
  .mainnav.mobile-open { display: block; }
  .mainnav ul { flex-direction: column; gap: 0; padding: 8px 24px 16px; }
  .mainnav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .navrow { position: relative; }
  .menu-toggle { display: block; }
  .decision-grid, .weather-grid, .camera-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-grid, .newsletter, .foot-grid { grid-template-columns: 1fr 1fr; }
  .official-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: 1fr; }
  .home-hero { padding: 54px 0 42px; }
  .home-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .home-hero h1 { max-width: 14ch; }
  .home-hero-art { min-height: 250px; order: -1; }
  .wang-hero-mark { width: min(340px, 88vw); }
}
@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .navrow { gap: 8px; padding: 12px 14px; }
  .brand { gap: 6px; font-size: clamp(.72rem, 3vw, .92rem); line-height: 1.05; }
  .brand .mountain-mark { width: 27px; height: 27px; }
  .brand small, .nav-actions .btn-small { display: none; }
  .nav-actions { gap: 7px; }
  .lang-toggle { padding: 3px; gap: 2px; font-size: .72rem; }
  .lang-toggle a, .lang-toggle span { padding: 2px 5px; }
  .lead-grid, .decision-grid, .weather-grid, .camera-grid, .newsletter, .foot-grid { grid-template-columns: 1fr; }
  .official-grid { grid-template-columns: 1fr; }
  .weather-planner, .official-links { padding: 20px; }
  .home-hero { padding: 28px 0 34px; }
  .home-hero h1 { font-size: 2.35rem; max-width: 12ch; }
  .home-hero .lead { font-size: 1rem; }
  .home-hero-art { min-height: 150px; }
  .wang-hero-mark { width: min(240px, 72vw); }
  .hero-stats { gap: 14px; }
  .article-hero h1 { font-size: 2rem; }
  .cookie-consent-actions { display: grid; }
  .foot-bottom { display: block; }
}
