/* Mercury — structure stylesheet. Colors come ONLY from var(--m-*) set in seasoning.css. */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--m-bg);
  color: var(--m-text);
  font-family: var(--m-font-body), system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--m-font-display), Georgia, serif; font-weight: 700; }

a { color: inherit; text-decoration: none; transition: color 0.18s ease; }

.wrap { max-width: 940px; margin: 0 auto; padding: 0 28px; }

/* ---- Navigation ----
   Seasonings may opt into a solid header bar via optional palette roles
   nav_bg / nav_text / nav_hover; without them the bar is transparent. */
.topbar { background: var(--m-nav_bg, transparent); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; }
.logo { font-family: var(--m-font-display), Georgia, serif; font-size: 1.45rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--m-nav_text, var(--m-heading)); }
.logo:hover { color: var(--m-nav_hover, var(--m-accent)); }
.links { display: flex; gap: 22px; }
.links a { font-size: 0.88rem; font-weight: 600; color: var(--m-nav_text, var(--m-soft)); }
.links a:hover { color: var(--m-nav_hover, var(--m-accent)); }
.links a[aria-current="page"] { color: var(--m-nav_text, var(--m-heading)); border-bottom: 2px solid var(--m-nav_hover, var(--m-accent)); padding-bottom: 3px; }

/* ---- Prominent hero with dial ---- */
.hero { position: relative; min-height: 70vh; display: flex; align-items: flex-end; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 32%, var(--m-bg) 98%),
              linear-gradient(100deg, var(--m-bg) 0%, transparent 48%);
  opacity: 0.92;
}
.hero-copy { position: relative; width: 100%; padding-bottom: 52px; }
.hero-flex { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.hero-copy h1 { font-size: clamp(2.3rem, 5.6vw, 3.6rem); color: var(--m-heading); line-height: 1.06; max-width: 560px; }
.hero-copy .intro { margin-top: 14px; color: var(--m-soft); max-width: 520px; }
.dial { flex-shrink: 0; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.18)); }

/* ---- Seasons split ---- */
.seasons { border-top: 1px solid var(--m-line); border-bottom: 1px solid var(--m-line); }
.seasons-grid { display: grid; grid-template-columns: 1fr 1fr; }
.season { padding: 40px 34px 44px; }
.season h2 { font-size: 1.4rem; color: var(--m-heading); margin-bottom: 10px; }
.season p { font-size: 0.95rem; color: var(--m-soft); max-width: 420px; }
.season.heat { border-top: 5px solid var(--m-accent); background: var(--m-surface); }
.season.cool { border-top: 5px solid var(--m-heading); }

/* ---- Honest note ---- */
.block { padding: 50px 28px 14px; }
.honest-note { max-width: 680px; padding: 22px 26px; border-left: 5px solid var(--m-accent); background: var(--m-surface); }
.honest-note h3 { font-size: 1.15rem; color: var(--m-heading); margin-bottom: 8px; }
.honest-note p { font-size: 0.95rem; color: var(--m-text); }

/* ---- Punch card ---- */
.sec-title { font-size: 1.7rem; color: var(--m-heading); }
.punch-card {
  margin-top: 24px; max-width: 560px; padding: 20px 24px;
  border: 2px solid var(--m-heading); border-radius: 10px;
  background: var(--m-surface);
  box-shadow: 4px 4px 0 var(--m-line);
}
.pc-head { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 2px solid var(--m-heading); padding-bottom: 8px; margin-bottom: 10px; }
.pc-head span:first-child { font-weight: 700; letter-spacing: 0.12em; font-size: 0.82rem; color: var(--m-heading); }
.pc-price { font-family: var(--m-font-display), Georgia, serif; font-weight: 700; font-size: 1.3rem; color: var(--m-accent); }
.punch-card p { font-size: 0.92rem; color: var(--m-text); }
.pc-holes { display: flex; gap: 14px; margin: 14px 0 8px; }
.hole {
  width: 62px; height: 62px; border-radius: 50%;
  border: 2px dashed var(--m-faint);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; color: var(--m-faint);
}
.hole.punched {
  border-style: solid; border-color: var(--m-accent); color: var(--m-bg);
  background: radial-gradient(circle at 50% 50%, var(--m-accent) 0 62%, transparent 63%);
}
.pc-note { font-size: 0.82rem !important; font-style: italic; color: var(--m-faint) !important; }

/* ---- Filter chip ---- */
.filter-chip {
  margin-top: 26px; max-width: 560px; padding: 12px 16px;
  border: 1px dashed var(--m-heading); background: var(--m-bg);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; color: var(--m-soft);
}
.quiet-link { display: inline-block; margin-top: 24px; font-weight: 600; font-size: 0.92rem; color: var(--m-accent); text-decoration: underline; text-underline-offset: 4px; }

/* ---- Inner pages ---- */
.page { padding: 50px 0 80px; }
.wrap.page { padding-left: 28px; padding-right: 28px; }
.page-title { font-size: clamp(1.9rem, 4.2vw, 2.6rem); color: var(--m-heading); line-height: 1.15; }
.page-lede { margin-top: 14px; color: var(--m-soft); max-width: 580px; }
.svc-block { margin-top: 34px; max-width: 660px; }
.svc-block h2 { font-size: 1.25rem; color: var(--m-heading); margin-bottom: 6px; }
.svc-block p { font-size: 0.96rem; color: var(--m-text); }
.price-note { font-family: var(--m-font-display), Georgia, serif; color: var(--m-accent); font-weight: 700; }
.page .punch-card { margin-top: 40px; }
.fine-note { margin-top: 32px; font-size: 0.88rem; font-style: italic; color: var(--m-faint); max-width: 640px; }

.c-item { padding: 20px 0; border-top: 1px solid var(--m-line); max-width: 620px; }
.c-item h3 { font-size: 1.1rem; color: var(--m-heading); margin-bottom: 4px; }
.c-item p { font-size: 0.94rem; color: var(--m-soft); }
.c-item .big-line { font-family: var(--m-font-display), Georgia, serif; font-size: 1.7rem; font-weight: 700; color: var(--m-accent); }

/* ---- Footer ---- */
footer { border-top: 3px solid var(--m-heading); padding: 26px 0 34px; margin-top: 30px; }
.foot-row { display: flex; justify-content: space-between; gap: 20px; font-size: 0.85rem; color: var(--m-soft); flex-wrap: wrap; }
.foot-legal { margin-top: 8px; font-size: 0.78rem; color: var(--m-faint); }

@media (max-width: 760px) {
  .hero { min-height: 58vh; }
  .hero-flex { flex-direction: column; align-items: flex-start; gap: 20px; }
  .dial { width: 110px; height: 110px; }
  .seasons-grid { grid-template-columns: 1fr; }
  .pc-holes { flex-wrap: wrap; }
  .links { gap: 14px; }
  .links a { font-size: 0.78rem; }
  .foot-row { flex-direction: column; gap: 6px; }
}
