:root{
  /* Core palette */
  --bg: #F2EFEA;        /* bone */
  --ink: #1E1E1C;       /* charcoal */
  --muted: #5E625B;     /* muted gray */
  --sage: #6F8B77;      /* sage green */

  --line: rgba(30,30,28,.12);

  /* Layout */
  --max: 980px;
  --pad: clamp(18px, 3vw, 28px);
  --r: 14px;
  --shadow: 0 10px 30px rgba(30,30,28,.06);
  .hero-logo img{
  width: clamp(140px, 18vw, 200px);
}


  /* Typography */
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}


  /* Fonts */
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;


*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--sans);
  background:var(--bg);
  color:var(--ink);
  line-height:1.55;
  letter-spacing:.2px;
}
h1, h2, h3{
    font-family: var(--serif);
  color: var(--sage);
  font-weight: 700;
  letter-spacing: -0.3px;
  margin: 0 0 .6rem;
}



p{
  color: var(--muted);
  font-size: 16px;
}


h1{
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 600;
  color: var(--sage);
}

h2{
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.12;
  font-weight: 600;
  color: var(--sage);
}

h3{
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.18;
  font-weight: 600;
  color: var(--sage);
}



@media (min-width: 700px){
  p{ font-size: 17px; }
}


img{max-width:100%;height:auto;display:block}

.container{
  width:min(var(--max), 100% - (var(--pad) * 2));
  margin-inline:auto;
}

a{color:inherit}
.text-link{
  color:var(--sage);
  text-decoration:none;
  font-weight:550;
}
.text-link:hover{ text-decoration:underline; }

.site-header{
  position:sticky;
  top:0;
  background:rgba(242,239,234,.82);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
  z-index:10;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand img{
  width: clamp(120px, 18vw, 170px);
}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav a{
  text-decoration:none;
  color:var(--muted);
  font-size:14px;
}
.nav a:hover{ color:var(--ink); }

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(70,99,79,.35);
  background:rgba(70,99,79,.10);
  color:var(--ink);
  text-decoration:none;
  font-weight:650;
  font-size:14px;
  letter-spacing:.1px;
  white-space:nowrap;
}
.button:hover{
  background:rgba(70,99,79,.14);
  border-color:rgba(70,99,79,.50);
}
.button.ghost{
  background:transparent;
  border-color:var(--line);
  color:var(--ink);
}
.button.ghost:hover{
  background:rgba(255,255,255,.28);
}

.hero{
  padding: clamp(44px, 7vw, 80px) 0;
}

.hero-inner{
  padding: clamp(22px, 4vw, 34px);
  border:1px solid var(--line);
  border-radius:var(--r);
  background:rgba(255,255,255,.26);
  box-shadow:var(--shadow);
}


.hero h1{
  margin:0 0 12px;
  color: var(--sage);
  font-size: clamp(32px, 4.6vw, 52px);
  line-height:1.05;
  letter-spacing:-.7px;
   font-weight:700;              /* Cormorant weight */
  letter-spacing:-0.6px;        /* slightly softer */
}
.accent{ color:var(--sage); }

.hero p{
  margin:0;
  color:var(--muted);
  font-size: clamp(16px, 2.2vw, 18px);
  max-width: 68ch;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}
.featured{
  padding: clamp(22px, 4vw, 40px) 0;
}

 .featured-inner{
  display:flex;                 /* switch from grid to flex */
  gap: 18px;
  align-items:flex-start;
  padding: clamp(16px, 3vw, 26px);
}

.featured-media{
  width: 160px;                 /* keeps it boutique-small */
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0,0,0,.03);
  flex-shrink: 0;
}


.featured-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  filter: saturate(0.95);
}


.eyebrow{
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--sans);
}

.featured-content h2{
  margin: 0 0 10px;
}

.featured-content p{
  margin: 0 0 12px;
  color: var(--muted);
}

.featured-notes{
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--muted);
}

.featured-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 700px){
  .featured-inner{
    align-items:center;
  }
  .featured-media{
    width: 120px;
  }
}

.section{
  padding: clamp(26px, 3.5vw, 44px) 0; /* tighter */
  border-top: none;                   /* no lines */
}

.section-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.section p{
  margin: 10px 0 0;
}
.section p:first-of-type{
  margin-top: 0;
}

.section p{
  max-width: 70ch;
}


h2{
  margin:0;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing:-.3px;
}

.empty-state{
  padding:22px;
  border:1px dashed rgba(30,30,28,.20);
  border-radius:var(--r);
  background:rgba(255,255,255,.18);
  color:var(--muted);
}

.split{
  display:grid;
  grid-template-columns: 1.4fr .9fr;
  gap:18px;
  align-items:start;
}

.split p{
  color:var(--muted);
  font-size:16px;
  margin: 12px 0 0;
}

.about-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}.page{
  padding-bottom: 30px;
}

.page-hero{
  padding: clamp(26px, 4vw, 44px) 0;
}

.page-subhead{
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 70ch;
}

.prose{
  max-width: 78ch;
}

.prose h2{
  margin-top: 0;
}

.prose p{
  margin: 10px 0 0;
}
.prose p:first-of-type{
  margin-top: 0;
}


.callout{
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:18px;
  background:rgba(255,255,255,.28);
  box-shadow:var(--shadow);
}
.callout p{ margin:0 0 10px; }
.callout .small{
  margin:0;
  font-size:13px;
  color:var(--muted);
}

.site-footer{
  border-top:1px solid var(--line);
  padding:26px 0;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
}

.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.footer-links a{
  color:var(--muted);
  text-decoration:none;
}
.footer-links a:hover{ color:var(--ink); }

/* Mobile */
@media (max-width: 860px){
  .split{ grid-template-columns: 1fr; }
  .header-inner{ align-items:flex-start; }
}
