:root{
  --ink:#12150F;
  --ink-2:#1B1F17;
  --paper:#EDE6D6;
  --muted:#9A9585;
  --gold:#C98A3B;
  --ice:#7FA9B0;
  --line:#33362B;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--ink);
  color:var(--paper);
  font-family:'Public Sans', sans-serif;
  font-weight:400;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit; text-decoration:none;}
.mono{font-family:'IBM Plex Mono', monospace; letter-spacing:0.04em;}
.wrap{max-width:1180px; margin:0 auto; padding:0 32px;}

/* Field-log tag — the signature element */
.taglabel{
  font-family:'IBM Plex Mono', monospace;
  font-size:11px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--gold);
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
}
.taglabel .dim{color:var(--muted);}
.taglabel .ice{color:var(--ice);}
.taglabel::before{
  content:"";
  width:6px; height:6px;
  background:var(--gold);
  border-radius:50%;
  flex-shrink:0;
}
.taglabel.ice-tag::before{background:var(--ice);}
.taglabel.ice-tag{color:var(--ice);}

/* NAV */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(18,21,15,0.92);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--line);
}
nav.wrap{
  display:flex; justify-content:space-between; align-items:center;
  height:76px;
}
.brand{
  font-family:'Fraunces', serif;
  font-weight:600;
  font-size:19px;
  letter-spacing:0.01em;
}
.navlinks{display:flex; gap:36px; font-size:14px; font-weight:500; color:var(--muted);}
.navlinks a:hover{color:var(--paper);}
.navlinks a.active{color:var(--paper);}
.nav-instagram{display:flex; align-items:center; color:var(--muted);}
.nav-instagram:hover{color:var(--paper);}
.nav-instagram svg{width:18px; height:18px; display:block;}
.navlinks a.cta{
  color:var(--ink);
  background:var(--gold);
  padding:9px 18px;
  border-radius:2px;
  font-weight:600;
}
@media(max-width:780px){ .navlinks{display:none;} }

/* HERO (homepage) */
.hero{
  position:relative;
  min-height:88vh;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  background:
    linear-gradient(180deg, rgba(18,21,15,0.25) 0%, rgba(18,21,15,0.6) 55%, rgba(18,21,15,0.97) 100%),
    url('../images/wildlife/Male_Lion-Shamwari-SouthAfrica-2014.jpg');
  background-size:cover;
  background-position:center 30%;
  background-repeat:no-repeat;
  padding-bottom:56px;
}
.hero-inner{padding-top:120px;}
.eyebrow{
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:22px;
}
h1.display{
  font-family:'Fraunces', serif;
  font-weight:500;
  font-style:italic;
  font-size:clamp(48px, 8vw, 108px);
  line-height:0.98;
  letter-spacing:-0.01em;
  max-width:900px;
}
.hero p.sub{
  font-size:18px;
  color:var(--muted);
  max-width:480px;
  margin-top:22px;
}
.hero .taglabel{margin-top:44px;}

/* PAGE HERO (gallery / prints sub-pages) */
.page-hero{
  padding:150px 0 64px;
  border-bottom:1px solid var(--line);
}
.page-hero .eyebrow{margin-bottom:18px;}
.page-hero h1{
  font-family:'Fraunces', serif;
  font-weight:500;
  font-style:italic;
  font-size:clamp(40px,6vw,72px);
  line-height:1.03;
  max-width:820px;
}
.page-hero p{
  font-size:17px;
  color:var(--muted);
  max-width:520px;
  margin-top:18px;
}
.page-gallery{padding-top:64px;}

/* STATUS BAND */
.status{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:var(--ink-2);
  padding:16px 0;
}
.status .wrap{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px;}
.pulse{
  width:8px; height:8px; border-radius:50%;
  background:var(--gold);
  display:inline-block;
  animation:pulse 2s infinite ease-in-out;
  margin-right:10px;
}
@keyframes pulse{
  0%,100%{opacity:1; box-shadow:0 0 0 0 rgba(201,138,59,0.5);}
  50%{opacity:0.6; box-shadow:0 0 0 6px rgba(201,138,59,0);}
}
.status-text{font-family:'IBM Plex Mono', monospace; font-size:13px; letter-spacing:0.03em;}
.status-text b{color:var(--paper); font-weight:500;}

/* SECTION HEADER */
section{padding:110px 0;}
.section-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  margin-bottom:56px; gap:24px; flex-wrap:wrap;
  border-bottom:1px solid var(--line);
  padding-bottom:28px;
}
.section-head h2{
  font-family:'Fraunces', serif;
  font-weight:500;
  font-size:clamp(30px,4vw,44px);
}
.section-head p{color:var(--muted); max-width:380px; font-size:15px;}
.section-head .view-all{
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--gold);
  white-space:nowrap;
}
.section-head .view-all:hover{color:var(--paper);}

/* GALLERY GRID — masonry, native aspect ratio so nothing gets cropped */
.gallery{
  column-count:3;
  column-gap:2px;
  background:var(--line);
}
@media(max-width:980px){ .gallery{column-count:2;} }
@media(max-width:600px){ .gallery{column-count:1;} }
.plate{
  position:relative;
  display:block;
  break-inside:avoid;
  margin-bottom:2px;
  overflow:hidden;
  background-color:var(--ink);
}
.plate img{
  display:block;
  width:100%;
  height:auto;
}
.plate-overlay{
  position:absolute; left:0; right:0; bottom:0;
  padding:20px;
  background:linear-gradient(180deg, rgba(18,21,15,0) 0%, rgba(18,21,15,0.92) 100%);
}
.plate-cat{
  font-family:'IBM Plex Mono', monospace;
  font-size:10px; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--paper); opacity:0.6; margin-bottom:8px;
}
.plate .taglabel{font-size:10px; gap:10px;}

/* CWS BAND */
.cws{
  background:linear-gradient(120deg, #1C2410 0%, #241B0E 100%);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.cws .wrap{
  padding:88px 32px;
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:60px;
  align-items:center;
}
@media(max-width:780px){ .cws .wrap{grid-template-columns:1fr;} }
.cws h3{
  font-family:'Fraunces', serif;
  font-style:italic;
  font-weight:500;
  font-size:clamp(26px,3.4vw,36px);
  line-height:1.15;
}
.cws p{color:var(--muted); font-size:15px; margin-top:18px; max-width:460px;}
.cws .taglabel{margin-top:26px;}

/* JOURNAL */
.log-list{display:flex; flex-direction:column;}
.log-row{
  display:grid;
  grid-template-columns:140px 1fr auto;
  gap:28px;
  align-items:baseline;
  padding:24px 0;
  border-bottom:1px solid var(--line);
}
@media(max-width:700px){ .log-row{grid-template-columns:1fr; gap:8px;} }
.log-row:first-child{border-top:1px solid var(--line);}
.log-date{font-family:'IBM Plex Mono', monospace; font-size:12px; color:var(--muted);}
.log-title{font-family:'Fraunces', serif; font-size:20px; font-weight:500;}
.log-loc{font-family:'IBM Plex Mono', monospace; font-size:11px; color:var(--gold); text-transform:uppercase; letter-spacing:0.08em; text-align:right;}
@media(max-width:700px){ .log-loc{text-align:left;} }

/* PRINTS — fixed-height letterbox so the full frame stays visible, tiles stay tidy */
.prints-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:32px;}
@media(max-width:820px){ .prints-grid{grid-template-columns:1fr;} }
.print-card .plate{
  height:280px;
  margin-bottom:14px;
  background-color:var(--ink-2);
  display:flex;
  align-items:center;
  justify-content:center;
}
.print-card .plate img{
  width:auto;
  height:auto;
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}
.print-name{font-family:'Fraunces',serif; font-size:18px;}
.print-price{font-family:'IBM Plex Mono', monospace; font-size:13px; color:var(--gold); margin-top:4px;}
.print-size-note{font-family:'IBM Plex Mono', monospace; font-size:11px; color:var(--muted); margin-top:4px;}
.print-buy{
  display:inline-block;
  margin-top:8px;
  font-family:'IBM Plex Mono', monospace;
  font-size:11px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--gold);
}
.print-buy:hover{color:var(--paper);}

/* LIGHTBOX */
.plate{cursor:zoom-in;}
.lightbox{
  position:fixed; inset:0;
  background:rgba(10,12,8,0.96);
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  z-index:100;
  padding:40px;
}
.lightbox.open{display:flex;}
.lightbox img{
  max-width:100%;
  max-height:80vh;
  object-fit:contain;
  box-shadow:0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-caption{
  margin-top:20px;
  color:var(--paper);
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  text-align:center;
}
.lightbox-close{
  position:absolute;
  top:24px; right:32px;
  font-family:'IBM Plex Mono', monospace;
  font-size:13px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--paper);
  background:none;
  border:1px solid var(--line);
  padding:8px 16px;
  cursor:pointer;
  border-radius:2px;
}
.lightbox-close:hover{border-color:var(--gold); color:var(--gold);}

/* ARTICLE BODY (About bio, Journal posts) */
.bio{max-width:680px; font-size:17px;}
.bio p{margin-bottom:22px;}
.bio p:last-child{margin-bottom:0;}
.log-title a:hover{color:var(--gold);}

/* BIO LAYOUT (About page portrait + text) */
.bio-layout{display:flex; gap:48px; align-items:flex-start; flex-wrap:wrap;}
.bio-portrait{width:280px; flex-shrink:0;}
.bio-portrait .plate{aspect-ratio:3/4;}
.bio-layout .bio{flex:1; min-width:280px;}

footer{
  border-top:1px solid var(--line);
  padding:64px 0 40px;
}
footer .wrap{display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:24px;}
.foot-brand{font-family:'Fraunces', serif; font-style:italic; font-size:22px;}
.foot-links{display:flex; gap:28px; font-size:13px; color:var(--muted);}
.foot-links a:hover{color:var(--paper);}
.foot-copy{font-family:'IBM Plex Mono', monospace; font-size:11px; color:var(--muted); margin-top:40px;}
