@charset "utf-8";
/* viticulture.css — landing page styles.
   Loads AFTER 2026styles.css and reuses its :root brand tokens. */

.vt-shell { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.vt-section { padding: 54px 20px 46px; }
.vt-section-lead { padding-top: 42px; }
.vt-section-lead .vt-sec-head { max-width: 68ch; }
.vt-section-lead .vt-sec-head h2 { font-size: 2rem; }
.vt-alt { background: var(--ua-mid-gray); border-top: 1px solid var(--ua-border); border-bottom: 1px solid var(--ua-border); }

.page-header .subtitle { margin-top: 6px; color: var(--ua-muted); }

/* ── Nav ─────────────────────────────────────────────── */
.vt-nav { background: var(--ua-blue); position: sticky; top: 0; z-index: 50; box-shadow: var(--shadow-sm); }
.vt-nav-inner { display: flex; justify-content: center; align-items: stretch; gap: 4px;
  flex-wrap: wrap; list-style: none; max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.vt-nav-inner > li { position: relative; }
.vt-nav a { display: block; color: rgba(255,255,255,.78); text-decoration: none; font-size: .82rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase; padding: 14px 16px 12px; border-bottom: 3px solid transparent; }
.vt-nav a:hover, .vt-nav a:focus-visible { color: #fff; border-bottom-color: var(--ua-red); }
.vt-caret { font-size: .7em; margin-left: 3px; opacity: .8; }

/* Dropdown */
.vt-subnav { list-style: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-6px);
  min-width: 260px; background: var(--ua-white); border-radius: 0 0 5px 5px; border-top: 3px solid var(--ua-red);
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transition: opacity .15s, transform .15s; z-index: 60; }
.vt-has-sub:hover .vt-subnav, .vt-has-sub:focus-within .vt-subnav, .vt-subnav.is-open {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.vt-subnav li + li { border-top: 1px solid var(--ua-mid-gray); }
.vt-subnav a { color: var(--ua-blue); text-transform: none; letter-spacing: 0; padding: 12px 18px; border-bottom: none; }
.vt-subnav a:hover, .vt-subnav a:focus-visible { background: var(--ua-info-bg); color: var(--ua-blue); border-bottom: none; }
.vt-subnav strong { display: block; font-size: .95rem; }
.vt-subnav span { display: block; font-size: .8rem; font-weight: 400; color: var(--ua-muted); text-transform: none; margin-top: 1px; }
.vt-has-sub:hover > a, .vt-has-sub:focus-within > a { color: #fff; border-bottom-color: var(--ua-red); }
.vt-nav-inner > li > a.is-current { color: #fff; border-bottom-color: var(--ua-red); }
.vt-subnav a.is-current { background: var(--ua-info-bg); color: var(--ua-blue); font-weight: 700; }

/* ── Hero ────────────────────────────────────────────── */
.vt-hero { background: var(--ua-white); border-bottom: 1px solid var(--ua-border); padding: 46px 0 44px; }
.vt-hero-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 40px; align-items: start; }
.vt-eyebrow { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ua-red); margin-bottom: 10px; }
.vt-hero-title { font-size: 2.35rem; line-height: 1.15; color: var(--ua-blue); font-weight: 700; letter-spacing: -.01em; }
.vt-hero-lede { margin-top: 14px; max-width: 46ch; color: var(--ua-text); }
.vt-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.vt-btn-ghost { background: transparent; color: var(--ua-blue); border: 2px solid var(--ua-blue); padding: 8px 18px; }
.vt-btn-ghost:hover { background: var(--ua-blue); color: #fff; }

.vt-hero-stats { border-left: 4px solid var(--ua-red); background: var(--ua-warm-gray); padding: 20px 22px; border-radius: 0 6px 6px 0; }
.vt-stats-head { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ua-muted); margin-bottom: 14px; }
.vt-stat { display: flex; flex-direction: column; padding: 8px 0; border-bottom: 1px solid var(--ua-border); }
.vt-stat:last-of-type { border-bottom: none; }
.vt-stat-num { font-size: 1.7rem; font-weight: 700; color: var(--ua-blue); line-height: 1.1; }
.vt-stat-lbl { font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ua-muted); }
.vt-stats-note { font-size: .78rem; font-style: italic; color: var(--ua-muted); margin-top: 12px; }

/* ── Section headings ────────────────────────────────── */
.vt-sec-head { margin-bottom: 26px; max-width: 90ch; }
.vt-sec-head h2 { color: var(--ua-blue); font-size: 1.65rem; line-height: 1.2; }
.vt-sec-head h2::after { content: ''; display: block; width: 54px; height: 3px; background: var(--ua-red); margin: 10px 0 12px; }
.vt-sec-head p { color: var(--ua-muted); font-size: 1.05rem; }
.vt-sec-head-light h2, .vt-sec-head-light p { color: #fff; }
.vt-sec-head-light p { color: rgba(255,255,255,.75); }

/* ── Buckets ─────────────────────────────────────────── */
.vt-buckets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.vt-bucket { display: flex; flex-direction: column; background: var(--ua-white); border: 1px solid var(--ua-border);
  border-top: 4px solid var(--ua-blue); border-radius: var(--section-radius); padding: 22px 22px 20px;
  text-decoration: none; color: var(--ua-text); box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s, border-color .15s; }
.vt-bucket:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--ua-text); }
.vt-bucket h3 { color: var(--ua-blue); font-size: 1.2rem; margin: 8px 0 8px; }
.vt-bucket p { font-size: .98rem; color: var(--ua-muted); flex: 1; }
.vt-bucket-tag { align-self: flex-start; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ua-muted); border: 1px solid var(--ua-border); border-radius: 999px; padding: 3px 9px; }
.vt-bucket-feature { border-top-color: var(--ua-red); }
.vt-bucket-feature .vt-bucket-tag { color: #fff; background: var(--ua-red); border-color: var(--ua-red); }
.vt-bucket-go { margin-top: 14px; font-weight: 700; font-size: .9rem; color: var(--ua-red); }

/* ── Live conditions ─────────────────────────────────── */
.vt-conditions { background: var(--ua-blue); padding: 50px 0 46px; color: #fff; }
.vt-station-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.vt-station-tab { display: flex; flex-direction: column; gap: 2px; text-align: left; cursor: pointer;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.22); border-radius: 5px;
  padding: 10px 16px; color: rgba(255,255,255,.75); font-family: inherit; transition: all .15s; }
.vt-station-tab:hover { background: rgba(255,255,255,.14); color: #fff; }
.vt-station-tab.is-active { background: var(--ua-red); border-color: var(--ua-red); color: #fff; }
.vt-st-name { font-weight: 700; font-size: .98rem; }
.vt-st-sub { font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; opacity: .8; }

.vt-wx-panel { background: var(--ua-white); border-radius: var(--section-radius); padding: 26px 26px 20px;
  color: var(--ua-text); box-shadow: var(--shadow-md); display: grid; gap: 24px;
  grid-template-columns: 300px 1fr; grid-template-areas: "now chart" "season chart" "credit credit"; }
.vt-wx-panel.is-loading { opacity: .55; transition: opacity .2s; }

.vt-wx-now { grid-area: now; }
.vt-wx-temp { font-size: 3.6rem; font-weight: 700; color: var(--ua-blue); line-height: 1; }
.vt-deg { font-size: 1.4rem; vertical-align: super; color: var(--ua-red); margin-left: 2px; }
.vt-wx-meta { font-size: 1.05rem; color: var(--ua-muted); font-weight: 400; margin-top: 8px; line-height: 1.4; }
.vt-wx-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 18px;
  background: var(--ua-border); border: 1px solid var(--ua-border); border-radius: 4px; overflow: hidden; }
.vt-tile { background: var(--ua-warm-gray); padding: 9px 11px; }
.vt-tile dt { font-size: .66rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--ua-muted); }
.vt-tile dd { font-size: 1.05rem; font-weight: 700; color: var(--ua-blue); margin-top: 2px; }

.vt-wx-chart-wrap { grid-area: chart; display: flex; flex-direction: column; }
.vt-metric-switch { display: flex; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.vt-metric { cursor: pointer; font-family: inherit; font-size: .78rem; font-weight: 600; letter-spacing: .03em;
  padding: 5px 12px; border-radius: 999px; border: 1px solid var(--ua-border); background: #fff; color: var(--ua-muted); transition: all .15s; }
.vt-metric:hover { border-color: var(--ua-blue); color: var(--ua-blue); }
.vt-metric.is-active { background: var(--ua-blue); border-color: var(--ua-blue); color: #fff; }
.vt-chart { position: relative; flex: 1; background: var(--ua-warm-gray);
  border: 1px solid var(--ua-border); border-radius: 4px; overflow: hidden; padding: 15px 10px 15px 0; }
.vt-chart svg { width: 100%; height: auto; display: block; }
.wx-ylab, .wx-xlab { fill: var(--ua-muted); font-size: 11px; font-family: var(--font-ui); }
.wx-ylab { text-anchor: end; }
.wx-xlab { text-anchor: middle; }
.wx-axis-title { fill: var(--ua-blue); font-size: 11.5px; font-weight: 700; font-family: var(--font-ui);
  letter-spacing: .03em; text-transform: uppercase;}
.wx-legend { fill: var(--ua-muted); font-size: 11px; font-family: var(--font-ui); }
.wx-callout { fill: var(--ua-blue); font-size: 12px; font-weight: 700; font-family: var(--font-ui); }
.wx-axis { stroke: var(--ua-border); stroke-width: 1.5; }
.wx-tick { stroke: var(--ua-border); stroke-width: 1; }
.wx-ref { stroke: var(--ua-info-border); stroke-width: 1.5; stroke-dasharray: 5 4; }
.wx-ref-lab { fill: var(--ua-info-border); font-size: 10.5px; font-weight: 600; font-family: var(--font-ui); }
.wx-line { fill: none; stroke: var(--ua-red); stroke-width: 2.5; stroke-linejoin: round; stroke-linecap: round;
  vector-effect: non-scaling-stroke; }
.wx-grid { stroke: var(--ua-border); stroke-width: 1; opacity: .75; }
.wx-dot { fill: var(--ua-blue); stroke: #fff; stroke-width: 2; }
.vt-chart-tip { position: absolute; top: 8px; transform: translateX(-50%); background: var(--ua-blue); color: #fff;
  font-size: .75rem; font-weight: 600; padding: 4px 9px; border-radius: 3px; pointer-events: none; white-space: nowrap; }
.vt-chart-axis { display: flex; justify-content: space-between; gap: 10px; font-size: .74rem; color: var(--ua-muted);
  margin-top: 6px; text-transform: uppercase; letter-spacing: .04em; }

.vt-season { grid-area: season; display: flex; align-items: center; gap: 14px; background: var(--ua-warm-gray);
  border-left: 4px solid var(--ua-red); border-radius: 0 4px 4px 0; padding: 14px 16px; }
.vt-season-num { font-size: 1.75rem; font-weight: 700; color: var(--ua-blue); line-height: 1; white-space: nowrap; }
.vt-season-num span:last-child { font-size: .85rem; color: var(--ua-red); }
.vt-season-lbl { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--ua-blue); }
.vt-season-sub { font-size: .78rem; color: var(--ua-muted); line-height: 1.35; }
.vt-wx-credit { grid-area: credit; font-size: .78rem; color: var(--ua-muted); border-top: 1px solid var(--ua-border); padding-top: 12px; }

/* ── Date range explorer ─────────────────────────────── */
.vt-explorer { background: var(--ua-white); border-radius: var(--section-radius); padding: 24px 26px 22px;
  margin-top: 16px; box-shadow: var(--shadow-md); color: var(--ua-text); }
.vt-exp-head h3 { color: var(--ua-blue); font-size: 1.2rem; }
.vt-exp-head p { font-size: .95rem; color: var(--ua-muted); margin-bottom: 16px; }
.vt-exp-head span { color: var(--ua-red); font-weight: 700; }
.vt-exp-controls { display: flex; justify-content: space-between; align-items: flex-end; gap: 18px;
  flex-wrap: wrap; padding-bottom: 16px; border-bottom: 1px solid var(--ua-border); margin-bottom: 16px; }
.vt-exp-dates { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.vt-exp-dates label { margin-bottom: 0; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ua-muted); }
.vt-exp-dates input[type="date"] { width: auto; font-size: .85rem; }
.vt-exp-presets { display: flex; gap: 6px; flex-wrap: wrap; }
.vt-preset { cursor: pointer; font-family: inherit; font-size: .78rem; font-weight: 600; padding: 6px 12px;
  border-radius: 999px; border: 1px solid var(--ua-border); background: #fff; color: var(--ua-muted); transition: all .15s; }
.vt-preset:hover { border-color: var(--ua-blue); color: var(--ua-blue); }
.vt-preset.is-active { background: var(--ua-red); border-color: var(--ua-red); color: #fff; }
.vt-exp-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px;
  background: var(--ua-border); border: 1px solid var(--ua-border); border-radius: 4px; overflow: hidden; margin-bottom: 18px; }
.vt-exp-stats .vt-tile dd { font-size: 1.15rem; }

.wx-bar-range { fill: var(--ua-blue); opacity: .75; }
.wx-bar-rain { fill: var(--ua-info-border); }
.wx-bar-eto { fill: var(--ua-amber); opacity: .8; }
.vt-exp-note { font-size: .8rem; color: var(--ua-muted); margin-top: 8px; }

/* ── Harvest report ──────────────────────────────────── */
.vt-report-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 34px; align-items: start; }
.vt-report-main p { margin-bottom: 12px; }
.vt-check { list-style: none; margin: 6px 0 4px; }
.vt-check li { position: relative; padding-left: 26px; margin-bottom: 7px; font-size: 1rem; }
.vt-check li::before { content: '✓'; position: absolute; left: 0; color: var(--ua-green); font-weight: 700; }

.vt-timeline { list-style: none; border-left: 2px solid var(--ua-border); padding-left: 20px; }
.vt-timeline li { position: relative; padding-bottom: 20px; }
.vt-timeline li::before { content: ''; position: absolute; left: -27px; top: 4px; width: 12px; height: 12px;
  border-radius: 50%; background: #fff; border: 2px solid var(--ua-border); }
.vt-timeline li.is-now::before { background: var(--ua-red); border-color: var(--ua-red); }
.vt-tl-date { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ua-red); }
.vt-tl-txt { display: block; color: var(--ua-text); font-size: .98rem; }

/* ── Events ──────────────────────────────────────────── */
.vt-events { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.vt-event { display: grid; grid-template-columns: 78px 1fr auto; gap: 18px; align-items: center;
  background: var(--ua-white); border: 1px solid var(--ua-border); border-radius: var(--section-radius);
  padding: 16px 18px; box-shadow: var(--shadow-sm); }
.vt-event-date { text-align: center; background: var(--ua-blue); color: #fff; border-radius: 4px; padding: 8px 4px; }
.vt-ev-mo { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.vt-ev-dy { display: block; font-size: 1.55rem; font-weight: 700; line-height: 1.1; }
.vt-event-body h3 { color: var(--ua-blue); font-size: 1.1rem; }
.vt-event-meta { font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ua-red); font-weight: 600; margin: 3px 0 5px; }
.vt-event-body p { font-size: .95rem; color: var(--ua-muted); }
.vt-more { margin-top: 18px; font-weight: 600; }

/* ── Publications ────────────────────────────────────── */
.vt-pubs { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 18px; }
.vt-pub { display: flex; flex-direction: column; background: var(--ua-white); border: 1px solid var(--ua-border);
  border-radius: var(--section-radius); padding: 22px; text-decoration: none; color: var(--ua-text);
  box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s; }
.vt-pub:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--ua-text); }
.vt-pub h3 { color: var(--ua-blue); font-size: 1.15rem; margin: 8px 0; }
.vt-pub p { font-size: .95rem; color: var(--ua-muted); flex: 1; }
.vt-pub-kind { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ua-red); }
.vt-pub-lead { background: var(--ua-blue); border-color: var(--ua-blue); color: #fff; }
.vt-pub-lead h3, .vt-pub-lead:hover { color: #fff; }
.vt-pub-lead p { color: rgba(255,255,255,.8); }
.vt-pub-lead .vt-pub-kind { color: #fff; }
.vt-pub-lead .vt-bucket-go { color: #fff; }

.vt-newsletter { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-top: 22px; padding: 16px 20px; background: var(--ua-info-bg); border: 1px solid var(--ua-info-border); border-radius: 4px; }
.vt-newsletter p { font-size: .98rem; margin: 0; }
.vt-newsletter a { font-weight: 700; white-space: nowrap; }

/* Newsletter box on the dark conditions panel (merged from viticultureaddition.css) */
.vt-newsletter-dark { margin-top: 18px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.85); }
.vt-newsletter-dark p { color: rgba(255,255,255,.85); }
.vt-newsletter-dark strong { color: #fff; }
.vt-newsletter-dark a { color: #fff; text-decoration: underline; }
.vt-newsletter-dark a:hover { color: #fff; opacity: .8; }

/* ── Contact ─────────────────────────────────────────── */
.vt-contact { text-align: center; border: none;}
#contact.vt-alt { text-align: center; border: none; box-sizing: inherit;}
.vt-contact h2 { color: var(--ua-blue); font-size: 1.5rem; }
.vt-contact p { color: var(--ua-muted); }
.vt-contact-people { margin-top: 14px; line-height: 1.9; }

/* ── Accessibility & motion ──────────────────────────── */
a:focus-visible, button:focus-visible { outline: 3px solid var(--ua-red); outline-offset: 2px; }
.vt-nav a:focus-visible { outline-color: #fff; }
@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; } }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .vt-hero-grid, .vt-report-grid { grid-template-columns: 1fr; }
  .vt-buckets, .vt-pubs { grid-template-columns: 1fr; }
  .vt-wx-panel { grid-template-columns: 1fr; grid-template-areas: "now" "chart" "season" "credit"; }
  .vt-hero-title { font-size: 1.9rem; }
}
@media (max-width: 600px) {
  .vt-event { grid-template-columns: 62px 1fr; }
  .vt-event-cta { grid-column: 1 / -1; }
  .vt-nav-inner { gap: 0; }
  .vt-nav a { padding: 12px 10px 10px; font-size: .74rem; }
  .vt-station-tab { flex: 1 1 100%; }
}
