:root {
  --ink: #22302d;
  --cream: #f6f0e7;
  --paper: #fffdf9;
  --terracotta: #b9533a;
  --terracotta-dark: #8d3c2b;
  --sage: #667c6d;
  --line: rgba(34, 48, 45, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
main { overflow: hidden; }

.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.96);
}
.brand { display: flex; align-items: center; gap: 11px; font-family: Georgia, serif; font-size: 21px; line-height: 1; }
.brand small { display: block; margin-top: 5px; font-family: Arial, sans-serif; font-size: 9px; letter-spacing: .19em; text-transform: uppercase; }
.brand-mark {
  width: 39px; height: 39px; border-radius: 50% 50% 44% 56%;
  display: grid; place-items: center; background: var(--terracotta); color: white;
  font-style: italic; font-size: 24px;
}
nav { display: flex; gap: 34px; font-size: 13px; font-weight: 700; letter-spacing: .04em; }
nav a:hover, .footer-links a:hover { color: var(--terracotta); }
.header-cta { padding: 12px 19px; border: 1px solid var(--ink); border-radius: 2px; font-size: 13px; font-weight: 700; }
.header-cta span, .text-link span, .read-link span { margin-left: 8px; }

.hero { min-height: 690px; display: grid; grid-template-columns: 56% 44%; background: var(--cream); }
.hero-copy { padding: 105px 6vw 90px 9vw; position: relative; z-index: 2; }
.eyebrow { color: var(--terracotta); font-size: 11px; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
h1, h2, h3, blockquote { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
h1 { font-size: clamp(64px, 7vw, 108px); line-height: .93; letter-spacing: -.055em; margin: 23px 0 31px; }
.hero-intro { max-width: 560px; font-family: Georgia, serif; font-size: 21px; line-height: 1.6; color: #52605c; }
.hero-actions { display: flex; align-items: center; gap: 32px; margin-top: 42px; }
.button { display: inline-flex; align-items: center; gap: 20px; padding: 16px 23px; font-size: 13px; font-weight: 800; }
.primary { background: var(--terracotta); color: white; }
.primary:hover { background: var(--terracotta-dark); }
.text-link { font-size: 13px; font-weight: 800; border-bottom: 1px solid var(--ink); padding-bottom: 3px; }

.hero-art { min-height: 690px; }
.image-slot { background-color: #d8dfd5; background-image: linear-gradient(135deg, rgba(255,255,255,.22) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.22) 50%, rgba(255,255,255,.22) 75%, transparent 75%); background-size: 32px 32px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; text-align: center; color: #4f615b; }
.image-slot-icon { width: 52px; height: 42px; border: 2px solid currentColor; display: grid; place-items: center; font-size: 25px; background: rgba(255,255,255,.28); }
.image-slot strong { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.image-slot small { font-size: 11px; opacity: .8; }
.replaceable-image { width: 100%; height: 100%; display: block; object-fit: cover; }
.image-label { position: absolute; left: 12px; bottom: 12px; z-index: 2; padding: 7px 10px; background: rgba(34,48,45,.84); color: white; font-size: 10px; font-weight: 700; letter-spacing: .04em; }
.hero-image-slot, .about-art, .post-hero, .post-inline-image { position: relative; }

.trust-strip { min-height: 74px; display: flex; justify-content: center; align-items: center; gap: 34px; color: #68736f; font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; border-bottom: 1px solid var(--line); }
.trust-strip i { width: 5px; height: 5px; background: var(--terracotta); border-radius: 50%; }
.section { padding: 110px 7vw; }
.section-heading { display: grid; grid-template-columns: 1fr .72fr; align-items: end; gap: 12%; max-width: 1180px; margin: 0 auto 64px; }
.section-heading h2, .about h2, .final-cta h2 { font-size: clamp(46px, 5vw, 72px); line-height: 1.02; letter-spacing: -.035em; margin: 16px 0 0; }
.section-heading > p { color: #62706c; max-width: 430px; }
.article-grid { max-width: 1180px; margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.article-visual { height: 245px; position: relative; overflow: hidden; }
.article-visual.peach { background: #e8b99b; }
.article-visual.sage { background: #aebfae; }
.article-visual.blue { background: #a8c0c3; }
.visual-number { position: absolute; top: 17px; left: 19px; font: italic 16px Georgia; color: rgba(34,48,45,.65); }
.article-meta { display: flex; justify-content: space-between; margin-top: 20px; color: var(--terracotta); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.article-meta span:last-child { color: #7c8783; }
.article-card h3 { font-size: 29px; line-height: 1.15; margin: 16px 0 13px; }
.article-card h3 a:hover { color: var(--terracotta); }
.article-card > p { color: #65716e; font-size: 15px; }
.read-link { display: inline-block; margin-top: 8px; font-size: 12px; font-weight: 800; border-bottom: 1px solid; }

.quote-block { background: var(--terracotta); color: white; text-align: center; padding: 98px 20px 90px; }
.quote-mark { margin: 0; color: #efc5ae; font: 80px/0.55 Georgia; }
blockquote { max-width: 900px; margin: 30px auto; font-size: clamp(38px, 5vw, 68px); line-height: 1.08; }
.quote-note { color: #f3d9ce; font-size: 12px; letter-spacing: .08em; }
.topics { background: #f3eee6; }
.section-heading.compact { margin-bottom: 48px; }
.topic-list { max-width: 1180px; margin: auto; border-top: 1px solid var(--line); }
.topic-row { display: grid; grid-template-columns: 55px 1fr 1.2fr 30px; align-items: center; gap: 20px; padding: 26px 8px; border-bottom: 1px solid var(--line); transition: padding .2s, background .2s; }
.topic-row:hover { padding-left: 18px; background: rgba(255,255,255,.45); }
.topic-number { color: var(--terracotta); font: italic 13px Georgia; }
.topic-row strong { font: 32px Georgia; }
.topic-row > span:nth-child(3) { color: #6b7773; font-size: 14px; }

.about { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.about-art { background-color: #d9cdbb; overflow: hidden; }
.about-copy { padding: 95px 9vw 80px 8vw; display: flex; flex-direction: column; justify-content: center; }
.about-copy > p:not(.eyebrow) { color: #63706c; max-width: 530px; margin: 16px 0 0; }
.text-link.dark { align-self: flex-start; margin-top: 32px; }
.final-cta { padding: 100px 20px; text-align: center; background: #354f48; color: white; }
.final-cta .eyebrow { color: #efad91; }
.final-cta p:not(.eyebrow) { color: #d3ddd9; }
.button.light { margin-top: 22px; background: #fffaf2; color: var(--ink); }
footer { padding: 60px 6vw 28px; display: grid; grid-template-columns: 1.2fr 1.2fr 1fr; gap: 30px; align-items: start; background: #f7f2ea; }
footer > p { margin: 0; max-width: 360px; color: #64706c; font-size: 13px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; font-size: 12px; font-weight: 700; }
.copyright { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 22px; margin-top: 26px; color: #85908c; font-size: 10px; }

/* Blog article template */
.blog-post { overflow: visible; }
.post-header { max-width: 970px; margin: 0 auto; padding: 88px 24px 52px; text-align: center; }
.back-link { display: inline-block; margin-bottom: 42px; color: #67736f; font-size: 12px; font-weight: 700; }
.post-header h1 { max-width: 900px; margin: 18px auto 28px; font-size: clamp(54px, 6.5vw, 92px); line-height: .98; }
.post-deck { max-width: 720px; margin: 0 auto; color: #5e6c68; font: 21px/1.55 Georgia, serif; }
.post-byline { margin-top: 36px; display: flex; align-items: center; justify-content: center; gap: 12px; text-align: left; font-size: 12px; }
.author-avatar { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; background: var(--terracotta); color: white; font: 15px Georgia; }
.post-byline strong, .post-byline small { display: block; }
.post-byline small { color: #77827e; margin-top: 2px; }
.post-hero { max-width: 1180px; height: min(55vw, 620px); min-height: 420px; margin: 0 auto; background-color: #d6dfd4; }
.post-layout { max-width: 1040px; margin: 80px auto 110px; padding: 0 24px; display: grid; grid-template-columns: 190px minmax(0, 700px); gap: 80px; align-items: start; }
.post-toc { position: sticky; top: 30px; display: flex; flex-direction: column; gap: 13px; padding-top: 6px; font-size: 12px; border-top: 2px solid var(--terracotta); }
.post-toc strong { margin: 14px 0 5px; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.post-toc a { color: #6c7874; }
.post-toc a:hover { color: var(--terracotta); }
.post-content { min-width: 0; }
.post-content > p { color: #46534f; font: 18px/1.85 Georgia, serif; }
.post-content .post-lead { color: var(--ink); font-size: 25px; line-height: 1.55; }
.post-content h2 { scroll-margin-top: 30px; margin: 60px 0 20px; font-size: 43px; line-height: 1.08; }
.post-quote { margin: 54px 0; padding: 38px 44px; max-width: none; background: #f2e6da; color: var(--terracotta-dark); font-size: 31px; line-height: 1.35; }
.post-inline-image { height: 390px; margin: 50px 0; background-color: #d7cbbb; }
.tip-box { display: grid; grid-template-columns: 60px 1fr; gap: 22px; margin: 42px 0; padding: 28px; background: #edf0eb; }
.tip-box > span { color: var(--terracotta); font: italic 20px Georgia; }
.tip-box strong { font-family: Georgia, serif; font-size: 21px; }
.tip-box p { margin: 7px 0 0; color: #64716d; font-size: 14px; }
.post-cta { margin-top: 66px; padding: 52px; background: #354f48; color: white; }
.post-cta .eyebrow { color: #efad91; }
.post-cta h3 { margin: 14px 0; font-size: 38px; line-height: 1.1; }
.post-cta > p:not(.eyebrow) { color: #d4dfdb; font: 15px/1.6 Arial, sans-serif; }
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; }
.post-tags span { padding: 7px 12px; border: 1px solid var(--line); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

@media (max-width: 900px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 80px 7vw; }
  .hero-art { min-height: 520px; }
  .article-grid { grid-template-columns: 1fr; gap: 55px; }
  .article-visual { height: 330px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .topic-row { grid-template-columns: 40px 1fr 25px; }
  .topic-row > span:nth-child(3) { display: none; }
  .about { grid-template-columns: 1fr; }
  .about-art { min-height: 450px; }
  .post-layout { grid-template-columns: 1fr; gap: 30px; }
  .post-toc { position: static; display: none; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .site-header { height: 76px; padding: 0 18px; }
  .header-cta { display: none; }
  .brand { font-size: 18px; }
  .hero-copy { padding: 65px 22px; }
  h1 { font-size: 57px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-art { min-height: 420px; }
  .trust-strip { padding: 20px; flex-wrap: wrap; gap: 12px; }
  .section { padding: 75px 22px; }
  .article-visual { height: 250px; }
  .topic-row strong { font-size: 25px; }
  .about-copy { padding: 75px 22px; }
  .final-cta { padding: 75px 22px; }
  footer { grid-template-columns: 1fr; padding: 48px 22px 25px; }
  .post-header { padding: 55px 20px 38px; }
  .post-header h1 { font-size: 48px; }
  .post-hero { width: calc(100% - 40px); min-height: 260px; height: 64vw; }
  .post-layout { margin: 55px auto 80px; padding: 0 20px; }
  .post-content .post-lead { font-size: 22px; }
  .post-content h2 { font-size: 34px; }
  .post-quote { padding: 28px; font-size: 25px; }
  .post-inline-image { height: 260px; }
  .post-cta { padding: 34px 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
