
:root{
  --bg:#f4ede0;
  --bg-alt:#efe5d2;
  --card:#faf6ef;
  --ink:#24221d;
  --muted:#605b4d;
  --sage:#6f7142;
  --sage-dark:#5f6139;
  --line:rgba(36,34,29,.09);
  --shadow:0 12px 35px rgba(36,34,29,.08);
  --radius:28px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
}
img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
.container{width:min(1180px, calc(100% - 2rem)); margin:0 auto}
.site-header{
  position:sticky; top:0; z-index:40;
  backdrop-filter: blur(12px);
  background:rgba(244,237,224,.9);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:1rem; padding:1rem 0;
}
.brand{display:flex; align-items:center; gap:.9rem; min-width:0}
.logo{width:62px; height:auto; flex:none}
.brand-name{
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing:.14em; text-transform:uppercase; font-size:.98rem;
}
.brand-sub{
  font-size:.72rem; letter-spacing:.22em; text-transform:uppercase;
  color:#7a735f; margin-top:.2rem;
}
.topnav{display:flex; gap:1.15rem; font-size:.95rem; color:#5a5548}
.topnav a{padding:.3rem 0}
.topnav a:hover{color:var(--sage)}
.mobile-menu{display:none; position:relative}
.mobile-menu summary{
  list-style:none; cursor:pointer; padding:.55rem .85rem; border:1px solid var(--line);
  border-radius:999px; background:rgba(255,255,255,.35);
}
.mobile-menu summary::-webkit-details-marker{display:none}
.mobile-menu-panel{
  position:absolute; right:0; top:calc(100% + .5rem);
  background:#fff; border:1px solid var(--line); border-radius:18px; box-shadow:var(--shadow);
  padding:.5rem; min-width:220px;
}
.mobile-menu-panel a{display:block; padding:.75rem .8rem; border-radius:12px}
.mobile-menu-panel a:hover{background:rgba(111,113,66,.08)}
.hero{
  position:relative; overflow:hidden;
  min-height:calc(100vh - 86px);
  display:flex; align-items:center;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(244,237,224,0.98) 0%,
    rgba(244,237,224,0.96) 20%,
    rgba(244,237,224,0.82) 30%,
    rgba(244,237,224,0.45) 40%,
    rgba(244,237,224,0.12) 52%,
    rgba(244,237,224,0.00) 62%
  );
  z-index:1;
}
.hero img.bg{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center;
}
.hero-inner{position:relative; z-index:2; padding:7rem 0 4.25rem 0;}
.kicker{
  display:inline-flex; align-items:center; gap:.4rem;
  border:1px solid rgba(111,113,66,.16); background:rgba(255,255,255,.45);
  color:var(--sage); padding:.55rem .95rem; border-radius:999px;
  letter-spacing:.22em; text-transform:uppercase; font-size:.72rem; font-weight:700;
}
h1,h2,h3{
  font-family: Georgia, "Times New Roman", serif; line-height:1.08; margin:0;
}
h1{font-size:clamp(2.5rem, 5vw, 4.5rem); max-width:10ch; margin-top:1rem}
h2{font-size:clamp(2rem, 3vw, 3rem)}
h3{font-size:1.38rem}
.lead{font-size:1.1rem; color:#2f2b24; max-width:26rem; margin-top:1.3rem}
.actions{display:flex; flex-wrap:wrap; gap:.75rem; margin-top:1.8rem}
.btn{
  display:inline-flex; align-items:center; gap:.5rem;
  border-radius:999px; padding:.88rem 1.3rem; font-weight:700; font-size:.95rem;
  border:1px solid transparent; transition:.15s ease;
}
.btn.primary{background:var(--sage); color:#fff}
.btn.primary:hover{background:var(--sage-dark)}
.btn.secondary{background:rgba(255,255,255,.4); border-color:rgba(111,113,66,.25)}
.btn.secondary:hover{background:rgba(255,255,255,.68)}
.section{padding:4.5rem 0}
.section.alt{background:var(--bg-alt)}
.section-grid{
  display:grid; gap:2rem; align-items:center;
}
.grid-2{grid-template-columns:1fr 1fr}
.grid-3{grid-template-columns:repeat(3, 1fr)}
.grid-4{grid-template-columns:repeat(4, 1fr)}
.section p{margin:0}
.eyebrow{
  margin:0 0 .75rem; color:#7e7a57;
  letter-spacing:.24em; text-transform:uppercase; font-size:.74rem; font-weight:700;
}
.copy{color:var(--muted); font-size:1rem; margin-top:1rem}
.card-grid{display:grid; gap:1.1rem}
.card{
  background:var(--card); border-radius:1.7rem; overflow:hidden; box-shadow:var(--shadow);
  border:1px solid rgba(36,34,29,.05)
}
.card .pad{padding:1.2rem}
.card .meta{display:flex; align-items:center; gap:.8rem; margin-bottom:.8rem}
.icon-badge{
  width:2.6rem; height:2.6rem; border-radius:999px; display:grid; place-items:center;
  background:#e7dcc7; color:var(--sage)
}
.image-box{height:240px; overflow:hidden}
.image-box img{width:100%; height:100%; object-fit:cover}
.image-box.tall{height:300px}
.pill{
  display:inline-flex; padding:.3rem .65rem; border-radius:999px; background:rgba(111,113,66,.09); color:var(--sage);
  font-size:.75rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
}
.list{padding-left:1.1rem; margin:.8rem 0 0}
.list li{margin:.35rem 0}
.split{
  display:grid; grid-template-columns:1fr 1fr; gap:2rem; align-items:center
}
.note{
  background:#2f2c26; color:#f4ede0; border-radius:2rem; padding:1.4rem; box-shadow:var(--shadow)
}
.note h3{font-family:Inter, system-ui, sans-serif; font-size:1rem; letter-spacing:.12em; text-transform:uppercase; color:#cbbf9b}
.note p{color:#e0d8c8}
.site-footer{
  background:#24221d; color:#f4ede0; padding:3rem 0; margin-top:0
}
.footer-grid{display:grid; grid-template-columns:1.2fr .7fr .7fr; gap:2rem; align-items:start}
.site-footer h3{
  font-family:Inter, system-ui, sans-serif; text-transform:uppercase; letter-spacing:.18em; font-size:.85rem; color:#cbbf9b;
  margin-bottom:.85rem
}
.site-footer ul{list-style:none; padding:0; margin:0}
.site-footer li{margin:.45rem 0; color:#ddd3c1}
.site-footer a:hover{color:#fff}
.footer-tag{margin:.75rem 0 0; color:#d8d0c0}
.footer-brand .logo{width:58px}
.subpage-hero{
  padding:4rem 0 2rem;
  border-bottom:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,0));
}
.subpage-hero .hero-grid{
  display:grid; gap:2rem; grid-template-columns:1.1fr .9fr; align-items:center;
}
.subpage-hero .portrait{
  border-radius:2rem; overflow:hidden; box-shadow:var(--shadow); min-height:320px
}
.subpage-hero .portrait img{width:100%; height:100%; object-fit:cover}
.page-content{padding:3rem 0 4.5rem}
.article{
  background:var(--card); border-radius:2rem; box-shadow:var(--shadow); padding:1.5rem; border:1px solid rgba(36,34,29,.05)
}
.article + .article{margin-top:1rem}
.small{font-size:.95rem; color:var(--muted)}
.hr{height:1px; background:var(--line); margin:1rem 0}
@media (max-width: 980px){
  .topnav.desktop-nav{display:none}
  .mobile-menu{display:block}
  .hero{min-height:auto}
  .hero-inner{padding:3.5rem 0 4rem}
  .grid-2,.grid-3,.grid-4,.split,.subpage-hero .hero-grid,.footer-grid{grid-template-columns:1fr}
  h1{max-width:none}
}
@media (max-width: 640px){
  .container{width:min(100% - 1.2rem, 1180px)}
  .header-inner{padding:.8rem 0}
  .brand-sub{letter-spacing:.14em}
  .brand-name{font-size:.88rem}
  .logo{width:52px}
  .hero::before{background:linear-gradient(180deg, rgba(244,237,224,.98) 0%, rgba(244,237,224,.86) 42%, rgba(244,237,224,.28) 100%)}
  .lead{font-size:1rem}
  .section{padding:3.5rem 0}
  .image-box{height:210px}
  .image-box.tall{height:240px}
}
