@import url('https://fonts.googleapis.com/css2?family=Lora:wght@500;600&family=Work+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@500&display=swap');

:root{
  --cream: #E1E3DC;
  --cream-2: #D3D7CC;
  --ink: #23241F;
  --ink-soft: #56584E;
  --line: #C1C5B8;
  --green: #33513C;
  --green-tint: #DEE5D6;
  --oak: #B0742A;
  --oak-tint: #EFDFC7;
  --navy: #223F66;
  --navy-tint: #D9E1E7;
  --font-display: 'Lora', serif;
  --font-body: 'Work Sans', sans-serif;
  --font-tag: 'IBM Plex Mono', monospace;
}
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
a{ color: inherit; text-decoration: none; }
.wrap{ max-width: 1080px; margin: 0 auto; padding: 0 32px; }
.narrow{ max-width: 1080px; margin: 0 auto; padding: 0 32px; }

.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 28px 0; border-bottom: 1px solid var(--line);
}
.logo-mark{ display:flex; align-items:center; }
.logo-mark img{ display:block; width: 80px; height: 80px; border-radius: 14px; }
.wordmark{ font-family: var(--font-display); font-size: 20px; font-weight: 500; letter-spacing: 0.01em; }
.nav-links{ display:flex; gap: 32px; font-size: 17px; color: var(--ink-soft); }
.nav-links a:hover{ color: var(--ink); }

.hero-band{ width: 100%; background: var(--cream-2); border-bottom: 1px solid var(--line); }
.hero{
  padding: 56px 0 64px;
}
.hero h1{
  font-family: var(--font-display); font-weight: 600; font-style: normal;
  font-size: 72px; line-height: 1.06; margin: 0 0 28px; letter-spacing: -0.01em;
}
.hero h1 em{ font-style: normal; font-weight: 600; }
.hero p{ font-size: 19px; line-height: 1.6; color: var(--ink-soft); max-width: 52ch; margin: 0; }

.page-header{ padding: 72px 0 48px; }
.page-header h1{
  font-family: var(--font-display); font-weight: 600; font-style: normal;
  font-size: 44px; line-height: 1.12; margin: 0 0 16px;
}
.page-header p{ font-size: 16px; color: var(--ink-soft); max-width: 50ch; margin:0; }

.eyebrow{
  font-family: var(--font-tag); font-size: 12px; letter-spacing: 0.06em;
  color: var(--ink-soft); text-transform: lowercase; margin: 0 0 20px;
}

.stories{ padding: 8px 0 88px; }
.story-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card{
  background: #fff; border: 1px solid var(--line); border-radius: 2px;
  padding: 0; position: relative; overflow: hidden;
  transition: transform 0.15s ease;
  display: block; text-decoration: none; color: inherit;
}
.card:hover{ transform: translateY(-2px); }
.card-rim{ height: 8px; width: 100%; }
.rim-green{ background: var(--green); }
.rim-oak{ background: var(--oak); }
.rim-navy{ background: var(--navy); }
.rim-wishlist{
  background: repeating-linear-gradient(45deg, var(--line), var(--line) 6px, var(--cream) 6px, var(--cream) 12px);
}
.card-wishlist{ border-style: dashed; border-color: #9A9A8E; }
.card-art{ display:flex; align-items:center; justify-content:center; padding: 40px 24px 8px; }
.card-art svg{ width: 100%; max-width: 140px; height: auto; }
.card-photo{ width: 100%; height: 190px; object-fit: cover; display: block; }
.card-body{ padding: 20px 24px 28px; position: relative; }
.tag{
  position:absolute; top: -16px; left: 24px;
  font-family: var(--font-tag); font-size: 11.5px; font-weight: 500;
  color: #fff; padding: 5px 10px; border-radius: 3px; letter-spacing: 0.02em;
}
.tag-green{ background: var(--green); }
.tag-oak{ background: var(--oak); }
.tag-navy{ background: var(--navy); }
.tag-wishlist{
  background: #fff; color: var(--ink-soft); border: 1px dashed #9A9A8E;
  font-family: var(--font-tag); font-size: 11.5px; font-weight: 500;
  padding: 4px 9px; border-radius: 3px; letter-spacing: 0.02em;
}
.card h3{ font-family: var(--font-display); font-weight: 500; font-size: 21px; margin: 14px 0 10px; line-height: 1.25; }
.card p{ font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; margin: 0 0 16px; }
.card .read{ font-size: 13px; font-weight: 500; color: var(--ink); border-top: 1px solid var(--line); padding-top: 14px; display:block; }

.about-band{ background: var(--cream-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-inner{ padding: 80px 0; max-width: 640px; margin: 0 auto; text-align: center; }
.about-inner p.quote{
  font-family: var(--font-display); font-style: normal; font-weight: 500;
  font-size: 27px; line-height: 1.5; color: var(--ink); margin: 0 0 28px;
}
.about-inner a.cta{ font-size: 14px; font-weight: 600; border-bottom: 1px solid var(--ink); padding-bottom: 3px; }

.article-header{ padding: 56px 0 8px; }
.article-header .tag-inline{
  display:inline-block; font-family: var(--font-tag); font-size: 12px; font-weight: 500;
  color: #fff; padding: 5px 10px; border-radius: 3px; margin-bottom: 20px; letter-spacing: 0.02em;
}
.article-header .tag-inline-wishlist{
  display:inline-block; font-family: var(--font-tag); font-size: 12px; font-weight: 500;
  color: var(--ink-soft); background: #fff; border: 1px dashed #9A9A8E;
  padding: 4px 9px; border-radius: 3px; margin-bottom: 20px; letter-spacing: 0.02em;
}
.article-header h1{
  font-family: var(--font-display); font-weight: 500; font-size: 40px;
  line-height: 1.15; margin: 0 0 40px;
}
.article-body{ padding-bottom: 32px; font-size: 17px; line-height: 1.7; color: var(--ink); }
.article-body h2{
  font-family: var(--font-display); font-weight: 500; font-size: 26px;
  margin: 48px 0 18px; line-height: 1.25;
}
.article-body h3{
  font-family: var(--font-display); font-weight: 500; font-size: 20px;
  margin: 32px 0 12px;
}
.article-body p{ margin: 0 0 20px; }
.article-body strong{ font-weight: 600; }
.article-body em{ font-style: italic; }
.article-body hr{ border: none; border-top: 1px solid var(--line); margin: 48px 0; }
.article-hero-photo{ width: 100%; border-radius: 2px; display: block; margin: 0 0 40px; }
.article-hero-photo img{ width: 100%; height: auto; display: block; border-radius: 2px; }
.article-inline-photo{ margin: 32px 0; }
.article-inline-photo img{ width: 100%; height: auto; display: block; border-radius: 2px; }
.photo-caption{
  font-family: var(--font-tag); font-size: 12px; color: var(--ink-soft);
  margin: 10px 0 0; letter-spacing: 0.01em;
}

.verdict{
  background: #fff; border: 1px solid var(--line); border-radius: 4px;
  padding: 28px 28px 8px; margin: 40px 0;
}
.verdict-title{ font-family: var(--font-display); font-weight: 500; font-size: 19px; margin: 0 0 18px; }
.verdict dl{ margin: 0; }
.verdict dt{ font-family: var(--font-tag); font-size: 12px; color: var(--ink-soft); margin: 0 0 4px; }
.verdict dd{ margin: 0 0 18px; font-size: 15px; }

.footer-note-block{
  font-family: var(--font-display); font-style: normal; font-size: 15px;
  color: var(--ink-soft); line-height: 1.6; padding: 8px 0 8px; border-top: 1px solid var(--line);
}

.more-stories{ padding: 24px 0 80px; }
.more-stories .story-grid{ grid-template-columns: repeat(2, 1fr); }

footer{ padding: 56px 0 48px; }
.foot-row{ display:flex; justify-content:space-between; align-items:flex-start; flex-wrap: wrap; gap: 24px; }
.foot-links{ display:flex; gap: 28px; font-size: 14px; color: var(--ink-soft); }
.foot-note{ font-family: var(--font-tag); font-size: 11.5px; color: var(--ink-soft); max-width: 40ch; line-height: 1.6; }

.newsletter-band{ background: var(--cream-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.newsletter-inner{
  padding-top: 48px; padding-bottom: 48px; display:flex; align-items:center; justify-content:space-between;
  gap: 32px; flex-wrap: wrap;
}
.newsletter-title{ font-family: var(--font-display); font-weight: 600; font-size: 21px; margin: 0 0 6px; color: var(--ink); }
.newsletter-sub{ font-size: 14px; color: var(--ink-soft); margin: 0; max-width: 42ch; }
.newsletter-form{ display:flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input[type="email"]{
  font-family: var(--font-body); font-size: 14px; padding: 11px 14px;
  border: 1px solid var(--line); border-radius: 3px; min-width: 230px; background: #fff;
}
.newsletter-form button{
  font-family: var(--font-body); font-size: 14px; font-weight: 600; color: #fff;
  background: var(--green); border: none; padding: 11px 20px; border-radius: 3px; cursor: pointer;
}
.newsletter-form button:hover{ opacity: 0.9; }
.newsletter-success{ font-size: 14px; color: var(--ink-soft); margin: 0; }

@media (max-width: 760px){
  .hero{ padding: 56px 0 64px; }
  .hero h1{ font-size: 40px; max-width: 100%; }
  .story-grid{ grid-template-columns: 1fr; }
  .more-stories .story-grid{ grid-template-columns: 1fr; }
  .nav-links{ gap: 18px; font-size: 13px; }
  .article-header h1{ font-size: 30px; }
  .newsletter-inner{ flex-direction: column; align-items: flex-start; }
  .newsletter-form{ width: 100%; }
  .newsletter-form input[type="email"]{ flex: 1; min-width: 0; }
}
