/* ============================================
   HERO
   ============================================ */
.hero { padding: var(--s-5xl) 0 var(--s-6xl); border-bottom: 1px solid var(--c-hairline); position: relative; }
@media (min-width: 768px) { .hero { padding: var(--s-6xl) 0 120px; } }
.hero-inner { display: grid; grid-template-columns: 1fr; gap: var(--s-4xl); align-items: end; }
@media (min-width: 900px) { .hero-inner { grid-template-columns: 1.6fr 1fr; gap: var(--s-5xl); } }
.hero-content { max-width: 900px; }
.hero-eyebrow { display: flex; align-items: center; gap: var(--s-md); margin-bottom: var(--s-2xl); color: var(--c-body); }
.hero-eyebrow-dot { width: 32px; height: 1.5px; background: var(--c-ink); border-radius: 0; flex-shrink: 0; }
.hero-headline { margin-bottom: var(--s-2xl); }
.hero-sub { max-width: 580px; color: var(--c-ink-soft); margin-bottom: var(--s-4xl); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-md); }
.hero-image {
  background: var(--c-canvas-soft);
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--c-hairline);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

@media (max-width: 899px) {
  .hero {
    padding: var(--s-xl) 0 var(--s-5xl);
    position: relative;
    overflow: visible;
    border-bottom: 1px solid var(--c-hairline);
    min-height: 0;
  }
  .hero-inner {
    position: static;
    display: flex;
    flex-direction: column;
    gap: var(--s-3xl);
    padding-bottom: 0;
  }
  .hero-image {
    position: relative;
    inset: auto;
    width: 70%;
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--c-hairline);
    z-index: 0;
  }
  .hero-image img { object-position: center 18%; }
  .hero-image::before { content: none; }
  .hero-content {
    position: static;
    z-index: auto;
    color: var(--c-ink);
    padding: 0;
    max-width: none;
  }
  .hero-eyebrow { display: none; }
  .hero-image { display: none; }
  .hero-headline { margin-bottom: var(--s-xl); }
  .hero-sub { margin-bottom: var(--s-3xl); }
  .hero-actions { gap: var(--s-md); }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .hero-actions .btn-outline { display: none; }
}

/* ============================================
   PAGE HEADER (interior pages)
   ============================================ */
.page-header { padding: var(--s-5xl) 0 var(--s-4xl); border-bottom: 1px solid var(--c-hairline); }
@media (min-width: 768px) { .page-header { padding: var(--s-6xl) 0 var(--s-5xl); } }
.page-header-eyebrow { display: flex; align-items: center; gap: var(--s-md); color: var(--c-body); margin-bottom: var(--s-2xl); }
.page-header-eyebrow-dot { width: 32px; height: 1.5px; background: var(--c-ink); border-radius: 0; flex-shrink: 0; }
.page-header-title { margin-bottom: var(--s-2xl); max-width: 900px; }
.page-header-sub { color: var(--c-ink-soft); max-width: 700px; }

@media (min-width: 768px) {
  .page-header--centered .container { text-align: center; }
  .page-header--centered .page-header-eyebrow { justify-content: center; }
  .page-header--centered .page-header-title,
  .page-header--centered .page-header-sub { margin-left: auto; margin-right: auto; }
  .page-header--centered .page-header-title { max-width: none; }
}

/* ============================================
   ABOUT
   ============================================ */
.about-band { padding: var(--s-6xl) 0; border-bottom: 1px solid var(--c-hairline); }
.about-inner { display: grid; grid-template-columns: 1fr; gap: var(--s-4xl); align-items: center; }
@media (min-width: 900px) { .about-inner { grid-template-columns: 1fr 1.5fr; gap: var(--s-6xl); } }
@media (min-width: 900px) { .about-inner.about-inner--reverse { grid-template-columns: 1.5fr 1fr; } }
@media (max-width: 899px) {
  .about-band--preview .about-image {
    width: 70%;
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
  }
  .about-band--preview .about-image img { object-position: center 18%; }
}
.about-image { background: var(--c-canvas-soft); aspect-ratio: 4 / 5; position: relative; border: 1px solid var(--c-hairline); overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-title { margin-bottom: var(--s-2xl); max-width: 600px; }
.about-text { color: var(--c-ink-soft); margin-bottom: var(--s-2xl); max-width: 580px; }
.about-text p + p { margin-top: var(--s-lg); }

/* About credentials list */
.creds-list { list-style: none; margin-top: var(--s-3xl); border-top: 1px solid var(--c-hairline); }
.creds-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--s-2xl);
  padding: var(--s-lg) 0;
  border-bottom: 1px solid var(--c-hairline);
  align-items: baseline;
}
.creds-year { font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--c-body); }
.creds-body { font-family: var(--font-serif); font-size: 16px; line-height: 1.5; color: var(--c-ink); }

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  gap: 0;
  border-top: 1px solid var(--c-hairline);
  border-bottom: 1px solid var(--c-hairline);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(to right, #000 0, #000 95%, transparent 100%);
          mask-image: linear-gradient(to right, #000 0, #000 95%, transparent 100%);
}
.services-grid::-webkit-scrollbar { display: none; }
.services-grid > .service-card {
  flex: 0 0 85%;
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .services-grid > .service-card { flex: 0 0 calc(100% / 3.5); }
}

.services-scroll {
  margin: var(--s-2xl) 0 0;
  padding: 0;
}
.services-scroll-track {
  position: relative;
  height: 36px;
  display: flex;
  align-items: center;
}
.services-scroll-track::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--c-hairline);
}
.services-scroll-handle {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-ink);
  color: var(--c-on-primary);
  border: none;
  cursor: grab;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 1;
  transition: background 0.15s ease;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}
.services-scroll-handle:hover { background: var(--c-ink-soft); }
.services-scroll-handle.is-dragging,
.services-scroll-handle:active { cursor: grabbing; }
.services-scroll-handle svg { display: block; pointer-events: none; }

.services-detail { padding: var(--s-5xl) 0; border-bottom: 1px solid var(--c-hairline); }
.services-detail:last-child { border-bottom: none; }
.services-detail-inner { display: grid; grid-template-columns: 1fr; gap: var(--s-3xl); }
@media (min-width: 900px) { .services-detail-inner { grid-template-columns: 1fr 2fr; gap: var(--s-5xl); } }
.services-detail-meta { font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: var(--c-body); }
.services-detail-title { margin: var(--s-md) 0 var(--s-2xl); }
.services-detail-body { color: var(--c-ink-soft); }
.services-detail-body p + p { margin-top: var(--s-lg); }
.services-detail-list { list-style: none; margin-top: var(--s-2xl); }
.services-detail-list li {
  padding: var(--s-md) 0;
  border-top: 1px solid var(--c-hairline);
  font-family: var(--font-serif);
  font-size: 16px;
  display: flex;
  gap: var(--s-md);
}
.services-detail-list li::before { content: '→'; color: var(--c-body); }

/* ============================================
   BLOG GRID
   ============================================ */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-4xl); }
@media (min-width: 768px) { .blog-grid { grid-template-columns: 1fr 1fr; gap: var(--s-3xl); } }

.blog-list { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--c-hairline); }
.blog-list .blog-list-item {
  padding: var(--s-2xl) 0;
  border-bottom: 1px solid var(--c-hairline);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-md);
}
@media (min-width: 768px) {
  .blog-list .blog-list-item { grid-template-columns: 140px 1fr 120px; gap: var(--s-2xl); align-items: baseline; }
}
.blog-list-date { font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--c-body); text-transform: uppercase; }
.blog-list-title { font-family: var(--font-display); font-size: 24px; font-weight: 400; line-height: 1.15; transition: opacity 0.15s ease; }
.blog-list-item:hover .blog-list-title { opacity: 0.6; }
.blog-list-tag { font-family: var(--font-sans); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--c-body); text-transform: uppercase; text-align: left; }
@media (min-width: 768px) { .blog-list-tag { text-align: right; } }

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-xl);
  margin-top: var(--s-3xl);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-ink);
}
.blog-pagination[hidden] { display: none; }
.blog-pagination-btn {
  background: none;
  border: none;
  padding: var(--s-sm) var(--s-md);
  font: inherit;
  color: var(--c-ink);
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.blog-pagination-btn:hover:not(:disabled) { opacity: 0.6; }
.blog-pagination-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.blog-pagination-info {
  color: var(--c-body);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
}

/* ============================================
   ARTICLE (single post)
   ============================================ */
.article { padding: var(--s-5xl) 0 var(--s-6xl); }

/* 3-column layout: left aside | centered body | right aside */
.article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3xl);
}
@media (min-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr 680px 1fr;
    column-gap: var(--s-2xl);
    align-items: start;
  }
  .article-aside { position: sticky; top: 100px; max-width: 220px; justify-self: start; }
  .article-aside--right { justify-self: end; max-width: 260px; }
  .article-layout > .article-body { max-width: none; margin: 0; }
}

/* Sidebar — share buttons */
.article-aside { display: flex; flex-direction: column; gap: var(--s-2xl); }
.article-share-label,
.article-toc-label,
.article-aside-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-body);
  margin-bottom: var(--s-md);
}
.article-share-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-sm);
  margin: 0;
  padding: 0;
}
.article-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--c-hairline);
  background: transparent;
  color: var(--c-ink);
  cursor: pointer;
  padding: 0;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.article-share-btn:hover {
  background: var(--c-ink);
  color: var(--c-on-primary);
  border-color: var(--c-ink);
}
.article-share-btn svg { width: 14px; height: 14px; display: block; pointer-events: none; }

/* Sidebar — table of contents */
.article-toc[hidden] { display: none; }
.article-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc;
}
.article-toc li {
  counter-increment: toc;
  margin-bottom: var(--s-sm);
}
.article-toc a {
  display: flex;
  gap: var(--s-sm);
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.4;
  color: var(--c-ink-soft);
  transition: color 0.15s ease;
}
.article-toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-weight: 700;
  color: var(--c-body);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.article-toc a:hover,
.article-toc a.is-active { color: var(--c-ink); }
.article-toc li.is-sub { padding-left: var(--s-lg); margin-bottom: var(--s-xs); }
.article-toc li.is-sub a { font-size: 12px; }
.article-toc li.is-sub a::before { content: ''; display: none; }
.article-toc li.is-sub { counter-increment: none; }

/* Right aside — newsletter + related */
.article-aside--right { display: flex; flex-direction: column; gap: var(--s-3xl); }
.article-newsletter-title {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.4;
  color: var(--c-ink);
  margin-bottom: var(--s-lg);
}
.article-newsletter-form { display: flex; flex-direction: column; gap: var(--s-sm); }
.article-newsletter-form .newsletter-input { width: 100%; box-sizing: border-box; }
.article-newsletter-form .btn { width: 100%; justify-content: center; }

.article-related-list { list-style: none; margin: 0; padding: 0; }
.article-related-list li { margin-bottom: var(--s-md); padding-bottom: var(--s-md); border-bottom: 1px solid var(--c-hairline); }
.article-related-list li:last-child { border-bottom: 0; padding-bottom: 0; margin-bottom: 0; }
.article-related-list a {
  display: block;
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.35;
  color: var(--c-ink);
  transition: opacity 0.15s ease;
}
.article-related-list a:hover { opacity: 0.6; }

/* Below-article share band */
.post-share-band {
  padding: var(--s-3xl) 0;
  border-top: 1px solid var(--c-hairline);
  text-align: center;
}
.post-share-band-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-body);
  margin-bottom: var(--s-lg);
}
.post-share-band-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: var(--s-md);
  margin: 0;
  padding: 0;
}

/* Below-article "Read next" — uses existing .section + .blog-grid */
.post-read-next { border-top: 0; }

.article-header { max-width: 760px; margin: 0 auto; padding-bottom: var(--s-4xl); border-bottom: 1px solid var(--c-hairline); }

/* Breadcrumb trail above the meta line */
.article-breadcrumbs { margin-bottom: var(--s-lg); }
.article-breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-body);
}
.article-breadcrumbs li { display: inline-flex; align-items: center; }
.article-breadcrumbs li + li::before {
  content: '›';
  margin: 0 var(--s-sm);
  opacity: 0.5;
  font-weight: 400;
}
.article-breadcrumbs a { color: var(--c-body); transition: color 0.15s ease; }
.article-breadcrumbs a:hover { color: var(--c-ink); }
.article-breadcrumbs li[aria-current="page"] { color: var(--c-ink); }

.article-meta { display: flex; align-items: center; flex-wrap: wrap; gap: var(--s-md); color: var(--c-body); margin-bottom: var(--s-lg); }
.article-headline { margin-bottom: var(--s-2xl); }
.article-deck { font-family: var(--font-serif); font-size: 20px; line-height: 1.4; color: var(--c-ink-soft); max-width: 640px; }
.article-cover-full {
  margin: var(--s-4xl) auto;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
  background: var(--c-canvas-soft);
  border: 1px solid var(--c-hairline);
  overflow: hidden;
}
.article-cover-full img { width: 100%; height: 100%; object-fit: cover; }
.article-body { max-width: 680px; margin: 0 auto; font-family: var(--font-serif); font-size: 19px; line-height: 1.6; color: var(--c-ink); }
.article-body p { margin-bottom: var(--s-2xl); }
.article-body h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  margin: var(--s-5xl) 0 var(--s-2xl);
}
.article-body h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin: var(--s-3xl) 0 var(--s-md);
}
.article-body a { color: var(--c-link); border-bottom: 1px solid currentColor; }
.article-body blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  line-height: 1.25;
  margin: var(--s-4xl) 0;
  padding-left: var(--s-2xl);
  border-left: 2px solid var(--c-ink);
  color: var(--c-ink);
}
.article-body ul, .article-body ol { margin: 0 0 var(--s-2xl) var(--s-2xl); }
.article-body li { margin-bottom: var(--s-sm); }
.article-body img { margin: var(--s-3xl) 0; }

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial-band { padding: var(--s-6xl) 0; border-bottom: 1px solid var(--c-hairline); background: var(--c-canvas-soft); }
.testimonial-quote {
  max-width: 880px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-2xl);
}
.testimonial-quote::before { content: '"'; display: block; font-size: 1em; line-height: 0; margin-bottom: 0.2em; }
.testimonial-meta { display: flex; align-items: center; gap: var(--s-md); color: var(--c-ink-soft); }
.testimonial-name { font-weight: 700; }
.testimonial-dot { width: 3px; height: 3px; background: var(--c-body); border-radius: 50%; }
.testimonial-company { color: var(--c-body); }

/* ============================================
   NEWSLETTER BAND
   ============================================ */
.newsletter-band { padding: var(--s-6xl) 0; border-bottom: 1px solid var(--c-hairline); }
.newsletter-inner { display: grid; grid-template-columns: 1fr; gap: var(--s-3xl); align-items: center; }
@media (min-width: 900px) { .newsletter-inner { grid-template-columns: 1.2fr 1fr; gap: var(--s-5xl); } }
.newsletter-title { margin-bottom: var(--s-lg); }
.newsletter-desc { color: var(--c-ink-soft); margin-bottom: var(--s-2xl); max-width: 500px; }

/* ============================================
   FINAL CTA BAND
   ============================================ */
.cta-band { padding: 120px 0; background: var(--c-ink); color: var(--c-on-primary); text-align: center; }
@media (max-width: 768px) { .cta-band { padding: var(--s-6xl) 0; } }
.cta-eyebrow { display: inline-flex; align-items: center; gap: var(--s-md); color: var(--c-on-primary); opacity: 0.7; margin-bottom: var(--s-2xl); }
.cta-eyebrow-dot { width: 32px; height: 1.5px; background: var(--c-on-primary); border-radius: 0; flex-shrink: 0; }
.cta-title { margin-bottom: var(--s-4xl); max-width: 800px; margin-left: auto; margin-right: auto; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-5xl); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.4fr; gap: var(--s-6xl); } }
.contact-meta { font-family: var(--font-serif); font-size: 17px; line-height: 1.5; color: var(--c-ink-soft); }
.contact-meta dl { margin-top: var(--s-2xl); border-top: 1px solid var(--c-hairline); }
.contact-meta dt {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-body);
  padding-top: var(--s-lg);
}
.contact-meta dd { padding: var(--s-xs) 0 var(--s-lg); border-bottom: 1px solid var(--c-hairline); font-family: var(--font-serif); }
.contact-meta dd a { color: var(--c-link); border-bottom: 1px solid currentColor; }

/* ============================================
   PROPOSAL FORM (long form)
   ============================================ */
.proposal-form { max-width: 720px; }
.proposal-page .proposal-form { margin-left: auto; margin-right: auto; }
.proposal-page .proposal-form > .btn { display: block; margin-left: auto; margin-right: auto; }
.proposal-page .proposal-form > .form-fineprint { text-align: center; }
.form-row { display: grid; grid-template-columns: 1fr; gap: var(--s-lg); }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-checkbox-group { display: grid; grid-template-columns: 1fr; gap: var(--s-md); }
@media (min-width: 600px) { .form-checkbox-group { grid-template-columns: 1fr 1fr; } }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--s-md);
  padding: var(--s-lg);
  border: 1px solid var(--c-hairline);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.form-checkbox:hover { border-color: var(--c-ink); }
.form-checkbox input { margin-top: 4px; }
.form-checkbox-label { font-family: var(--font-serif); font-size: 15px; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-body {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--s-5xl) var(--s-xl);
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-ink-soft);
}
.legal-body h1 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 48px); font-weight: 400; line-height: 1.05; margin-bottom: var(--s-lg); color: var(--c-ink); }
.legal-body h2 { font-family: var(--font-display); font-size: 26px; font-weight: 400; margin: var(--s-4xl) 0 var(--s-lg); color: var(--c-ink); }
.legal-body h3 { font-family: var(--font-sans); font-size: 16px; font-weight: 700; margin: var(--s-2xl) 0 var(--s-md); color: var(--c-ink); }
.legal-body p { margin-bottom: var(--s-lg); }
.legal-body ul, .legal-body ol { margin: 0 0 var(--s-lg) var(--s-2xl); }
.legal-body li { margin-bottom: var(--s-sm); }
.legal-body a { color: var(--c-link); border-bottom: 1px solid currentColor; }
.legal-updated { font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-body); margin-bottom: var(--s-3xl); }

/* ============================================
   404 PAGE
   ============================================ */
.notfound { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: var(--s-5xl) var(--s-xl); }
.notfound-inner { max-width: 600px; }
.notfound-code { font-family: var(--font-display); font-size: clamp(80px, 14vw, 160px); line-height: 1; margin-bottom: var(--s-2xl); }
.notfound-title { margin-bottom: var(--s-2xl); }
.notfound-text { color: var(--c-ink-soft); margin-bottom: var(--s-3xl); }

/* ============================================
   THANK-YOU PAGE
   ============================================ */
.thankyou { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: var(--s-5xl) var(--s-xl); }
.thankyou-inner { max-width: 640px; }
.thankyou-eyebrow { display: inline-flex; align-items: center; gap: var(--s-md); color: var(--c-body); margin-bottom: var(--s-2xl); }
.thankyou-title { margin-bottom: var(--s-2xl); }
.thankyou-text { color: var(--c-ink-soft); margin-bottom: var(--s-3xl); }

/* ============================================
   PRINT STYLES — print just the article
   ============================================ */
@media print {
  /* Hide everything that isn't article content */
  .masthead,
  .mobile-nav,
  .nav-toggle,
  .sticky-cta,
  .footer,
  .article-aside,
  .article-aside--right,
  .post-share-band,
  .post-read-next,
  .newsletter-band {
    display: none !important;
  }

  /* Reset page chrome */
  body { background: #fff; color: #000; margin: 0; padding: 0; }
  .article { padding: 1cm 0; }
  .container { max-width: none; padding: 0; margin: 0; }

  /* Collapse the article layout grid back to a single flowing column */
  .article-layout { display: block; }
  .article-body {
    max-width: 100% !important;
    margin: 0 !important;
    font-size: 11pt;
    line-height: 1.55;
    color: #000;
  }
  .article-header { max-width: none; padding-bottom: 0.5cm; }
  .article-headline { font-size: 22pt; line-height: 1.15; }
  .article-deck { font-size: 12pt; }
  .article-body h2 { font-size: 16pt; page-break-after: avoid; }
  .article-body h3 { font-size: 13pt; page-break-after: avoid; }
  .article-body p, .article-body li { page-break-inside: avoid; }

  /* Keep the cover image reasonable on paper */
  .article-cover-full { margin: 0.5cm 0; page-break-inside: avoid; }
  .article-cover-full img { max-height: 9cm; width: 100%; object-fit: cover; }

  /* Print link URLs inline after the text */
  .article-body a[href^="http"]::after,
  .article-body a[href^="mailto"]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #555;
    word-break: break-all;
  }
}
