/* ============================================================
   Far From Idle — shared styles for every page
   Change a color or font here and it updates the whole site.
   ============================================================ */

:root{
  --sandstone:#F2EADB; --card:#FAF5EC; --canyon:#32291E; --canyon-soft:#6E6152;
  --rust:#A55A34; --rust-deep:#8A4826; --sage:#7F8567; --dusk:#6D7C82; --line:#E1D6C1;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0; background:var(--sandstone); color:var(--canyon);
  font-family:"Bitter",Georgia,serif; font-size:18px; line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
.wrap{max-width:1080px; margin:0 auto; padding:0 24px}
h1,h2,h3{font-family:"Fraunces",Georgia,serif; font-weight:600; line-height:1.1; margin:0}
a{color:var(--rust); text-decoration:none}
a:hover{color:var(--rust-deep); text-decoration:underline}
a:focus-visible{outline:2px solid var(--rust); outline-offset:3px; border-radius:3px}
img{max-width:100%; height:auto}

/* --- top menu --- */
.nav{border-bottom:1px solid var(--line); background:var(--sandstone)}
.navwrap{display:flex; align-items:center; justify-content:space-between; gap:16px;
         flex-wrap:wrap; padding-top:16px; padding-bottom:16px}
.brand{font-family:"Fraunces",serif; font-weight:600; font-size:21px; color:var(--canyon)}
.brand:hover{text-decoration:none; color:var(--rust)}
.menu{display:flex; gap:20px; flex-wrap:wrap; font-size:16px}
.menu a{color:var(--canyon-soft); font-weight:500}
.menu a:hover{color:var(--rust); text-decoration:none}
.menu a.current{color:var(--canyon); text-decoration:underline;
                text-decoration-color:var(--rust); text-underline-offset:6px}

/* --- hero --- */
header.hero{padding:60px 0 34px; text-align:center}
header.hero h1{font-size:clamp(40px,9vw,68px); letter-spacing:-0.01em}
header.hero .tag{font-size:clamp(17px,3.4vw,21px); color:var(--canyon-soft); margin:16px auto 0; max-width:30ch}
.cta-row{display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:28px}
.btn{display:inline-block; font-weight:500; padding:12px 22px; border-radius:8px; font-size:16px; cursor:pointer}
.btn.primary{background:var(--rust); color:#F7EEE6}
.btn.primary:hover{background:var(--rust-deep); color:#fff; text-decoration:none}
.btn.ghost{border:1px solid var(--line); color:var(--canyon); background:var(--card)}
.btn.ghost:hover{border-color:var(--canyon-soft); text-decoration:none}

/* --- page title (non-home pages) --- */
.pagehead{padding:52px 0 8px}
.pagehead h1{font-size:clamp(34px,7vw,52px); letter-spacing:-0.01em}
.pagehead .tag{color:var(--canyon-soft); font-size:clamp(17px,3.2vw,20px); margin-top:12px; max-width:44ch}

/* --- generic section --- */
section{padding:46px 0; border-top:0}
section:first-of-type{border-top:0}
section h2{font-size:clamp(26px,5vw,34px); margin-bottom:6px}
section .lede{color:var(--canyon-soft); margin:0 0 22px}
.eyebrow{font-family:"Bitter",serif; text-transform:uppercase; letter-spacing:0.14em;
         font-size:12px; font-weight:600; color:var(--sage); margin-bottom:8px}

/* --- prose (About, intros) --- */
.prose p{font-size:19px; margin:0 0 18px; max-width:68ch}
.prose p:last-child{margin-bottom:0}

/* --- essay + generic cards --- */
.cards{display:grid; grid-template-columns:1fr; gap:14px}
@media(min-width:620px){.cards{grid-template-columns:1fr 1fr}}
@media(min-width:900px){.cards{grid-template-columns:1fr 1fr 1fr}}
.card{display:block; background:var(--card); border:1px solid var(--line); border-radius:12px;
      padding:18px 20px; color:var(--canyon)}
.card:hover{border-color:var(--rust); text-decoration:none; transform:translateY(-2px);
            transition:transform .12s ease, border-color .12s ease}
.card .t{font-family:"Fraunces",serif; font-weight:600; font-size:21px; line-height:1.15}
.card .s{color:var(--canyon-soft); font-size:15.5px; margin-top:6px; line-height:1.5}
.more{margin-top:20px; font-weight:500; font-size:17px}

/* --- socials --- */
.socials{display:flex; gap:12px; flex-wrap:wrap}
.social{display:flex; align-items:center; gap:9px; background:var(--card); border:1px solid var(--line);
        border-radius:10px; padding:13px 18px; color:var(--canyon); font-weight:500; font-size:16px}
.social:hover{border-color:var(--rust); text-decoration:none}
.social .dot{width:9px; height:9px; border-radius:50%; flex:none}

/* --- tool feature --- */
.tool{background:var(--card); border:1px solid var(--line); border-radius:14px; padding:26px 24px}
.tool h3{font-size:25px; margin-bottom:8px}
.tool p{color:var(--canyon-soft); margin:0 0 18px; font-size:17px; max-width:70ch}

/* --- images + placeholders ---
   A .ph box marks where a photo goes. To use a real photo, replace the
   whole <div class="ph">…</div> with:  <img src="your-file.jpg" alt="describe it">
*/
.photo{display:block; width:100%; border-radius:12px; border:1px solid var(--line)}
.ph{display:flex; align-items:center; justify-content:center; text-align:center;
    background:#EDE2CE; border:1px dashed #C9B99B; border-radius:12px;
    color:#9A8A72; font-size:14px; padding:24px; min-height:200px}
.ph.wide{min-height:280px}
.ph.portrait{min-height:340px}
.about-grid{display:grid; grid-template-columns:1fr; gap:24px; align-items:start}
@media(min-width:680px){.about-grid{grid-template-columns:300px 1fr}}

/* --- footer --- */
footer{border-top:0; padding:34px 0 54px; text-align:center;
       color:var(--canyon-soft); font-size:15px; margin-top:0; background:#E7DCC5}
footer .name{font-family:"Fraunces",serif; font-weight:600; color:var(--canyon); font-size:17px}
footer .fmenu{display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-top:10px}
footer .fmenu a{color:var(--canyon-soft)}

/* --- photos --- */
.hero-photo{display:block; width:100%; max-height:520px; object-fit:cover; border-radius:12px; border:1px solid var(--line)}
.gallery{display:grid; grid-template-columns:1fr; gap:12px; margin-top:4px}
@media(min-width:560px){.gallery{grid-template-columns:1fr 1fr 1fr}}
.gallery img{width:100%; height:220px; object-fit:cover; border-radius:12px; border:1px solid var(--line); display:block}
@media(min-width:900px){.gallery img{height:260px}}

/* --- cookie notice --- */
.cookie-notice{position:fixed; left:16px; right:16px; bottom:16px; max-width:540px; margin:0 auto;
  background:var(--canyon); color:#F3EADB; border-radius:10px; padding:12px 16px;
  display:flex; align-items:center; gap:14px; font-size:14px; line-height:1.45;
  box-shadow:0 10px 34px rgba(50,41,30,.30); z-index:9999}
.cookie-notice button{flex:none; background:var(--rust); color:#F7EEE6; border:0; border-radius:6px;
  padding:8px 16px; font-family:inherit; font-size:14px; font-weight:500; cursor:pointer}
.cookie-notice button:hover{background:var(--rust-deep)}
@media(max-width:560px){.cookie-notice{flex-direction:column; align-items:stretch; text-align:center; bottom:12px}}

/* --- section zones (rhythm so sections read as their own space) --- */
header.hero, .pagehead{background:#EFE4CF}
main > section:nth-of-type(even){background:#ECE1CB}

/* --- full-width photo band (home) --- */
.photoband{height:620px; background:url("images/band-redrock.jpg") center/cover no-repeat}
@media(max-width:700px){.photoband{height:420px}}
