/* Ranchers Got Shorted, Site A.
   Light layout: warm off-white ground, dark ink, dry-grass gold accent,
   rust for data marks, muted blue only for the water rate comparison.
   Mobile first. Breakpoints at 720px and 1040px. */

:root{
 --ground:#F7F3EA; --ground2:#FFFCF5; --panel:#EFE7D7; --panel2:#E7DCC6;
 --line:#DFD5BF; --line2:#C7B99C;
 --ink:#1B1613; --ink2:#4A4139; --mute:#6B6052;
 --gold:#C8912E; --goldDeep:#8A6110; --goldPale:#F6E9CC;
 --rust:#A8401C; --rustDeep:#8C3315; --rustPale:#F8E5DB;
 --water:#2F6FA3;
 --shadow:0 1px 2px rgba(60,40,16,.05), 0 10px 26px rgba(60,40,16,.07);
 --maxw:1120px;
 color-scheme:light;
}

*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
html,body{margin:0}
body{
 background:var(--ground); color:var(--ink);
 font:400 17px/1.55 Barlow,"Helvetica Neue",Arial,sans-serif;
 -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
h1,h2,h3,.disp{
 font-family:"Barlow Condensed","Arial Narrow",Impact,sans-serif;
 font-weight:800; line-height:.95; letter-spacing:-.005em;
 text-wrap:balance; margin:0;
}
h2{font-size:clamp(34px,8vw,54px); text-transform:uppercase}
h3{font-size:clamp(21px,4.6vw,26px); font-weight:600; line-height:1.08}
p{margin:0}
a{color:inherit}
img{max-width:100%}
.wrap{max-width:var(--maxw); margin:0 auto; padding-inline:20px}
@media(min-width:720px){.wrap{padding-inline:32px}}
.eyebrow{
 font:600 12px/1 Barlow,Arial,sans-serif; letter-spacing:.16em;
 text-transform:uppercase; color:var(--mute);
}
.eyebrow.accent{color:var(--goldDeep)}
.num{font-variant-numeric:tabular-nums}
.lead{font-size:clamp(17px,4vw,20px); color:var(--ink2); line-height:1.45}
:focus-visible{outline:3px solid var(--rust); outline-offset:2px}

/* Buttons */
.btn{
 display:inline-block; background:var(--gold); color:var(--ink);
 font:800 18px/1 "Barlow Condensed",Impact,sans-serif;
 letter-spacing:.04em; text-transform:uppercase;
 padding:16px 24px; text-decoration:none; border:0; border-radius:2px;
 cursor:pointer; box-shadow:0 1px 0 var(--goldDeep);
}
.btn:hover{background:#D79D33}
.btn:active{transform:translateY(1px)}
.btn.sm{font-size:15px; padding:11px 15px}

/* Masthead */
.nav{
 position:sticky; top:0; z-index:20;
 background:var(--ground); border-bottom:1px solid var(--line2);
}
.nav .wrap{display:flex; align-items:center; justify-content:space-between; gap:14px; min-height:64px; padding-block:6px}
.brand{
 font-family:"Barlow Condensed",Impact,sans-serif; font-weight:800;
 font-size:20px; letter-spacing:.01em; text-transform:uppercase;
 text-decoration:none; display:flex; align-items:center; gap:9px; color:var(--ink);
}
.brand i{display:block; width:10px; height:10px; background:var(--gold); transform:rotate(45deg); flex:none}
.brand picture,.brand img{display:block; height:56px; width:auto}
@media(min-width:720px){.brand picture,.brand img{height:80px}}
.nav nav{display:flex; align-items:center; gap:22px; font-size:15px}
.nav nav a{text-decoration:none; color:var(--ink2)}
.nav nav a:hover{color:var(--ink)}
/* Menu button: phones only */
.menu{
 display:none; align-items:center; gap:9px; min-height:44px; padding:0 12px 0 10px;
 background:var(--ground2); color:var(--ink); border:1px solid var(--line2); border-radius:2px;
 font:800 15px/1 "Barlow Condensed",Impact,sans-serif; letter-spacing:.06em; text-transform:uppercase; cursor:pointer;
}
.menu .bars{display:grid; gap:4px}
.menu .bars i{display:block; width:20px; height:2.5px; background:var(--ink); border-radius:1px}
@media(max-width:759px){
 .has-menu .menu{display:flex}
 .has-menu nav{
  display:none; position:absolute; left:0; right:0; top:100%;
  background:var(--ground); border-bottom:1px solid var(--line2); box-shadow:var(--shadow);
  padding:8px 20px 18px; gap:2px;
 }
 .has-menu.open nav{display:grid}
 .has-menu nav a{display:block; padding:13px 0; font-size:18px; border-bottom:1px solid var(--line); color:var(--ink)}
 .has-menu nav a.btn{margin-top:12px; border:0; text-align:center; padding:15px 18px; font-size:17px}
}
@media(max-width:519px){
 .brand{font-size:16.5px; gap:7px}
 .brand i{width:9px; height:9px}
 .btn.sm{font-size:13px; padding:10px 12px}
}
@media(min-width:720px){.brand{font-size:23px}}

/* Image slots. A slot holds its space whether or not the file exists yet. */
.slot{position:relative; display:block; margin:0; background:var(--panel); overflow:hidden}
.slot img{display:block; width:100%; height:100%; object-fit:cover}
.slot-note{
 display:none; position:absolute; inset:0; margin:0; z-index:1;
 align-content:center; padding:18px 20px;
 font:400 12px/1.5 Barlow,Arial,sans-serif; color:var(--mute);
 background:repeating-linear-gradient(135deg,var(--panel) 0 14px,var(--panel2) 14px 28px);
 border:1px dashed var(--line2);
}
.slot-note b{display:block; font-size:13px; color:var(--ink2); letter-spacing:.06em; text-transform:uppercase; margin-bottom:6px}
.slot.is-missing img{display:none}
.slot.is-missing .slot-note{display:grid}
.band{aspect-ratio:8/5; max-height:380px; border-block:1px solid var(--line2)}
@media(min-width:720px){.band{aspect-ratio:21/8; max-height:420px}}

/* Hero */
.hero{position:relative; isolation:isolate; overflow:hidden; padding-block:0; border-bottom:1px solid var(--line2)}
.hero-media{position:absolute; inset:0; z-index:-1; background:var(--panel)}
.hero-media .slot-note{
 inset:auto 0 0 0; z-index:2; align-content:end;
 padding:10px 14px; font-size:11px; line-height:1.45; background:var(--panel2);
 border:0; border-top:1px dashed var(--line2);
}
.hero-media .slot-note b{font-size:11px; margin-bottom:3px}
/* Only while the hero image is still missing, reserve room for the slot note. */
@media(max-width:899px){.hero-media.is-missing ~ .hero-body{padding-bottom:88px}}
@media(min-width:900px){.hero-media .slot-note{max-width:440px; inset:auto auto 0 0}}
.hero-media picture,.hero-media img{display:block; width:100%; height:100%; object-fit:cover; object-position:50% 62%}
.hero-media::after{
 content:""; position:absolute; inset:0;
 background:linear-gradient(180deg,rgba(247,243,234,.72) 0%,rgba(247,243,234,.66) 50%,rgba(247,243,234,.80) 82%,rgba(247,243,234,.95) 100%);
}
.hero-body{position:relative; padding-block:20px 22px; display:grid; gap:12px}
.hero h1{
 font-size:clamp(44px,11.6vw,92px); line-height:.85; text-transform:uppercase;
 letter-spacing:-.015em;
}
.hero h1 em{font-style:normal; color:var(--rust)}
.hero .sub{font-size:clamp(17px,4.3vw,24px); line-height:1.3; color:var(--ink2); max-width:36ch}
.hero .sub b{color:var(--ink); font-weight:600}
.hero .cta{display:flex; gap:12px; flex-wrap:wrap; align-items:center}
.hero .cta small{font-size:13px; line-height:1.35; color:var(--mute); max-width:26ch}
@media(min-width:900px){
 .hero-media{left:44%}
 .hero-media::after{background:linear-gradient(90deg,var(--ground) 0%,rgba(247,243,234,.90) 22%,rgba(247,243,234,.18) 62%,rgba(247,243,234,.06) 100%)}
 .hero-body{min-height:520px; align-content:center; padding-block:44px; gap:18px}
 .hero h1{font-size:clamp(92px,9.2vw,120px)}
 .hero-body>*{max-width:min(660px,58%)}
 .hero .cta{max-width:none}
}

/* Deadline warning */
.deadline{background:var(--rustPale); border-top:2px solid var(--rust); border-bottom:2px solid var(--rust)}
.deadline .wrap{padding-block:14px; display:grid; gap:4px}
.deadline p{font-size:14.5px; line-height:1.45; color:var(--ink); max-width:78ch}
.deadline strong{color:var(--rustDeep); font-weight:600}
.deadline a{color:var(--rustDeep); text-underline-offset:3px}
@media(min-width:720px){.deadline p{font-size:15.5px}}

/* Sections */
section{padding-block:52px}
@media(min-width:720px){section{padding-block:76px}}
.sec-head{display:grid; gap:12px; margin-bottom:26px; max-width:62ch}
.split{display:grid; gap:24px}
@media(min-width:900px){
 .split{grid-template-columns:1.02fr .98fr; gap:40px; align-items:center; margin-bottom:40px}
 .split .sec-head{margin-bottom:0}
 .split .slot{aspect-ratio:8/5; max-height:none; border:1px solid var(--line2)}
}

/* Does this sound like you */
.hooks{display:grid; gap:14px; margin-top:26px}
@media(min-width:720px){.hooks{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1040px){.hooks{grid-template-columns:repeat(3,1fr)}}
.hook{
 background:var(--ground2); border:1px solid var(--line);
 border-left:5px solid var(--rust); padding:18px 18px 16px;
 box-shadow:var(--shadow);
}
.hook summary{list-style:none; cursor:pointer; display:grid; gap:9px}
.hook summary::-webkit-details-marker{display:none}
.hook .q{
 font-family:"Barlow Condensed",Impact,sans-serif; font-weight:800;
 font-size:clamp(23px,5.2vw,27px); line-height:1.02; color:var(--ink);
}
.hook .tap{font:600 12px/1 Barlow,Arial,sans-serif; letter-spacing:.11em; text-transform:uppercase; color:var(--goldDeep)}
.hook[open] .tap{display:none}
.hook .a{
 display:grid; gap:9px; margin-top:12px; padding-top:12px;
 border-top:1px solid var(--line); font-size:16px; color:var(--ink2); line-height:1.5;
}
.hook .src{font-size:13px; color:var(--mute); line-height:1.4}

/* The record */
.record{background:var(--panel); border-block:1px solid var(--line2)}
.grid2{display:grid; gap:16px}
@media(min-width:860px){.grid2{grid-template-columns:1fr 1fr; gap:20px}}
.fig{
 background:var(--ground2); border:1px solid var(--line);
 padding:20px 18px 16px; display:grid; gap:12px; align-content:start;
 box-shadow:var(--shadow);
}
.fig h3{font-size:clamp(20px,4.4vw,23px); color:var(--ink)}
.fig .cap{font-size:13px; color:var(--mute); line-height:1.45}
.fig svg{width:100%; height:auto; display:block; overflow:visible}
.fig svg text.v{font-variant-numeric:tabular-nums}
.fig .legend{display:flex; gap:16px; flex-wrap:wrap; font-size:14px; color:var(--ink2)}
.legend i{display:inline-block; width:12px; height:12px; border-radius:2px; margin-right:7px; vertical-align:-1px}
.legend .sw-water{background:var(--water)}
.legend .sw-rust{background:var(--rust)}
.tiles{display:grid; gap:14px; margin-top:22px}
@media(min-width:560px){.tiles{grid-template-columns:1fr 1fr}}
@media(min-width:1040px){.tiles{grid-template-columns:repeat(4,1fr)}}
.tile{
 background:var(--ground2); border:1px solid var(--line); border-top:3px solid var(--rust);
 padding:20px 18px; display:grid; gap:7px; align-content:start;
}
.tile .big{
 font-family:"Barlow Condensed",Impact,sans-serif; font-weight:800;
 font-size:clamp(46px,9vw,60px); line-height:.88; color:var(--rust);
}
.tile .lbl{font-size:15px; line-height:1.35; color:var(--ink2)}
.tile .src{font-size:12px; color:var(--mute)}
.tip{
 position:fixed; z-index:40; pointer-events:none; display:none;
 background:var(--ink); color:var(--ground); font-size:13px; line-height:1.3;
 padding:7px 10px; border-radius:3px; white-space:nowrap;
 transform:translate(-50%,-125%); box-shadow:0 6px 18px rgba(30,20,8,.25);
}

/* Appeal rights */
.rights .steps{display:grid; gap:22px}
@media(min-width:620px){.rights .steps{grid-template-columns:1fr 1fr}}
@media(min-width:1040px){.rights .steps{grid-template-columns:repeat(4,1fr); gap:24px}}
.step{border-top:4px solid var(--rust); padding-top:13px; display:grid; gap:8px}
.step h3{font-size:clamp(20px,4.4vw,22px)}
.step p{font-size:16px; color:var(--ink2); line-height:1.5}

/* Form */
.tell{background:var(--panel); border-block:1px solid var(--line2)}
.tell .form-wrap{display:grid; gap:26px}
@media(min-width:1040px){
 .tell .form-wrap{grid-template-columns:minmax(0,1fr) minmax(0,.72fr); gap:44px; align-items:start}
 .tell .form-wrap .slot{position:sticky; top:86px; aspect-ratio:8/5; max-height:none; border:1px solid var(--line2)}
}
form{display:grid; gap:17px; max-width:640px}
.f{display:grid; gap:6px}
label{font-weight:600; font-size:15px; color:var(--ink)}
input,select{
 width:100%; font:inherit; font-size:17px; padding:13px 14px;
 background:var(--ground2); color:var(--ink);
 border:1px solid var(--line2); border-radius:2px;
}
input:hover,select:hover{border-color:var(--mute)}
input::placeholder{color:var(--mute)}
select{appearance:none; background-image:linear-gradient(45deg,transparent 50%,var(--ink2) 50%),linear-gradient(135deg,var(--ink2) 50%,transparent 50%); background-position:calc(100% - 19px) calc(50% + 2px),calc(100% - 13px) calc(50% + 2px); background-size:6px 6px,6px 6px; background-repeat:no-repeat; padding-right:40px}
.row{display:grid; gap:14px}
@media(min-width:560px){.row{grid-template-columns:1fr 1fr}}
.check{display:flex; gap:12px; align-items:flex-start; font-size:15px; line-height:1.45; color:var(--ink2)}
.check input{width:20px; height:20px; margin:2px 0 0; padding:0; flex:none; accent-color:var(--rust)}
.turnstile{min-height:65px}
.err{
 display:none; background:var(--rustPale); color:var(--ink);
 border-left:5px solid var(--rust); padding:13px 15px; font-size:15px; line-height:1.45;
}
.err.show{display:block}
.alert{
 display:none; background:var(--rustPale); color:var(--ink);
 border-left:5px solid var(--rust); padding:14px 16px; font-size:15px; line-height:1.45;
}
.alert strong{color:var(--rustDeep)}
.alert a{color:var(--rustDeep)}
.alert.show{display:block}
.fine{font-size:13px; color:var(--mute); line-height:1.5; max-width:62ch}
.ok{display:none; background:#E6EFDD; border-left:5px solid #4A6B33; color:#22331A; padding:16px; font-size:15px; line-height:1.5}

/* Who we are */
.who .cols{display:grid; gap:26px; margin-top:26px}
@media(min-width:720px){.who .cols{grid-template-columns:repeat(3,1fr); gap:32px}}
.who h3{font-size:clamp(20px,4.4vw,22px); margin-bottom:9px}
.who p,.who li{color:var(--ink2); font-size:16px; line-height:1.5}
.who ul{margin:0; padding-left:18px; display:grid; gap:5px}

/* Text pages (privacy) */
.page-head{padding-block:40px 0}
@media(min-width:720px){.page-head{padding-block:56px 0}}
.prose{padding-block:28px 56px}
.prose .wrap{max-width:74ch}
.prose h3{
 font-size:clamp(21px,4.6vw,25px); margin:34px 0 10px;
 padding-top:16px; border-top:2px solid var(--rust);
}
.prose h3:first-child{margin-top:0}
.prose p{color:var(--ink2); font-size:17px; line-height:1.55; margin-bottom:12px}
.prose p b{color:var(--ink)}
.prose ul{margin:0 0 16px; padding-left:20px; display:grid; gap:7px}
.prose li{color:var(--ink2); font-size:17px; line-height:1.5}
.prose a{color:var(--ink); text-underline-offset:3px}
.prose .note{
 margin-top:34px; background:var(--rustPale); border-left:5px solid var(--rust);
 padding:14px 16px; font-size:15px; color:var(--ink);
}
.prose .note a{color:var(--rustDeep)}

/* Photo crops: keep heads in frame when the wide band cuts a 16:9 photo. */
.who .slot img{object-position:50% 12%}

/* Footer */
footer{background:var(--panel2); border-top:1px solid var(--line2); color:var(--ink2); font-size:13px; line-height:1.55}
footer .wrap{padding-block:28px; display:grid; gap:9px; max-width:var(--maxw)}
footer p{max-width:86ch}

@media (prefers-reduced-motion:no-preference){
 .hook[open] .a{animation:fade .22s ease}
 @keyframes fade{from{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:none}}
}
