/* ============================================================
   Samikshya Kafle, Direction A "Hireable Hygienist"
   Palette: warm cream + soft sage + deep teal, copper accent
   Type: Fraunces (display) + Inter (body)
   Layout: single-column, mobile-first, generous whitespace
   ============================================================ */

:root {
  /* Color */
  --paper:        #fbf8f2;   /* warm cream, page bg */
  --paper-2:      #f5f1e8;   /* slightly deeper cream */
  --sage:         #e7efe7;   /* soft sage panel */
  --sage-2:       #dde7dd;   /* sage hover */
  --teal:         #0d3b3c;   /* deep teal, primary ink/headlines */
  --teal-2:       #144b4c;   /* hover */
  --ink:          #1d2b2a;   /* body text */
  --muted:        #586664;   /* secondary copy */
  --line:         #d8ddd2;   /* hairline rules */
  --line-strong:  #b9c2b3;
  --copper:       #bf6b55;   /* tiny accent, kickers, hover */
  --copper-soft:  #e9d6cd;
  --white:        #ffffff;
  --shadow-sm:    0 1px 2px rgba(13, 59, 60, 0.04), 0 2px 6px rgba(13, 59, 60, 0.04);
  --shadow-md:    0 6px 18px rgba(13, 59, 60, 0.06), 0 2px 6px rgba(13, 59, 60, 0.04);
  --shadow-lg:    0 24px 60px rgba(13, 59, 60, 0.10);

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Spacing scale */
  --pad-x:        clamp(20px, 5vw, 76px);
  --pad-y:        clamp(64px, 9vw, 120px);
  --gap-sm:       12px;
  --gap-md:       24px;
  --gap-lg:       clamp(32px, 5vw, 64px);

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
}

/* ---------- Base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 160ms ease, opacity 160ms ease;
}

a:hover { color: var(--copper); }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--copper-soft); color: var(--teal); }

h1, h2, h3, h4 {
  margin: 0 0 0.4em;
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

p { margin: 0 0 1em; }

ul, ol { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 16px;
  background: var(--teal);
  color: var(--paper);
  font-weight: 600;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  outline: 2px solid var(--copper);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px var(--pad-x);
  background: rgba(251, 248, 242, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, background 160ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 600;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-name {
  font-size: 17px;
  letter-spacing: 0.005em;
}

.nav {
  display: flex;
  gap: clamp(14px, 2.2vw, 28px);
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.nav a:hover { color: var(--copper); }

.header-cta {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--paper);
  font-size: 14px;
  font-weight: 600;
}

.header-cta:hover {
  background: var(--teal-2);
  color: var(--paper);
}

@media (max-width: 760px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .site-header { padding: 12px 18px; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: transform 140ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--teal);
  color: var(--paper);
  border: 1px solid var(--teal);
}
.btn-primary:hover {
  background: var(--teal-2);
  color: var(--paper);
}

.btn-ghost {
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--teal);
}
.btn-ghost:hover {
  background: var(--teal);
  color: var(--paper);
}

.link-tertiary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid transparent;
}
.link-tertiary:hover {
  color: var(--copper);
  border-bottom-color: var(--copper);
}

/* ---------- Section primitives ---------- */

main > section {
  padding: var(--pad-y) var(--pad-x);
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--copper);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

main h2 {
  font-size: clamp(32px, 4.6vw, 56px);
  max-width: 22ch;
  margin-bottom: 0.6em;
}

/* ---------- Hero ---------- */

.hero {
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(56px, 9vw, 112px);
  background:
    radial-gradient(120% 80% at 100% 0%, var(--sage) 0%, transparent 55%),
    var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: var(--gap-lg);
  max-width: 1280px;
  margin: 0 auto;
}

.hero .eyebrow {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(44px, 6.4vw, 80px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.02;
}

.hero-name {
  display: block;
  color: var(--teal);
}

.hero-creds {
  display: block;
  margin-top: 6px;
  color: var(--copper);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0;
}

.hero-headline {
  max-width: 28ch;
  margin: 0 0 18px;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  line-height: 1.25;
}

.hero-value {
  max-width: 52ch;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-availability {
  margin: 0 0 28px;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-portrait {
  position: relative;
  margin: 0;
  justify-self: end;
  width: 100%;
  max-width: 460px;
}

.hero-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: var(--r-xl);
  background: var(--sage);
  box-shadow: var(--shadow-lg);
}

.portrait-cap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.cap-label {
  color: var(--teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.cap-rule {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.cap-detail {
  color: var(--copper);
  font-weight: 500;
}

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-portrait {
    order: -1;
    justify-self: center;
    max-width: 320px;
  }
}

/* ---------- Trust strip ---------- */

.trust {
  background: var(--sage);
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.trust .section-kicker {
  max-width: 1280px;
  margin: 0 auto 22px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.trust-cell {
  padding: 22px 18px;
  border-right: 1px solid var(--line-strong);
}

.trust-cell:last-child { border-right: none; }

.trust-cell .label {
  display: block;
  margin-bottom: 6px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-cell .value {
  display: block;
  margin-bottom: 4px;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  line-height: 1.2;
}

.trust-cell .detail {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-cell:nth-child(3n) { border-right: none; }
  .trust-cell:nth-child(-n+3) { border-bottom: 1px solid var(--line-strong); }
}

@media (max-width: 560px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-cell { border-right: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
  .trust-cell:nth-child(2n) { border-right: none; }
  .trust-cell:nth-last-child(-n+2) { border-bottom: none; }
}

/* ---------- About ---------- */

.about {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.about h2 {
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 500;
}

.about-copy p {
  margin-bottom: 1.2em;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.78;
}

.about-copy p:first-of-type::first-letter {
  /* subtle drop cap */
  font-family: var(--font-display);
  font-size: 1.2em;
  font-weight: 600;
  color: var(--teal);
}

.about-signature {
  margin-top: 32px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--copper);
  font-size: 18px;
}

/* ---------- Experience timeline ---------- */

.experience {
  background: var(--paper);
}

.experience h2 { margin-bottom: 36px; }

.timeline {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  display: grid;
  gap: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 11px;
  width: 1px;
  background: var(--line-strong);
}

.timeline-item {
  position: relative;
  padding-left: 44px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 4px var(--paper);
}

.timeline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 6px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.timeline-meta .sep { color: var(--line-strong); }

.timeline-item h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 600;
  color: var(--teal);
}

.timeline-item .org {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.timeline-item .summary {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}

/* ---------- Capabilities grid ---------- */

.capabilities {
  background: var(--paper-2);
}

.capabilities h2 { margin-bottom: 36px; }

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.capability-card {
  padding: 26px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.capability-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.capability-card h3 {
  margin: 0 0 10px;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 800px) {
  .capability-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .capability-grid { grid-template-columns: 1fr; }
}

/* ---------- Notes ---------- */

.notes {
  background: var(--paper);
}

.notes-head {
  max-width: 880px;
  margin: 0 auto 38px;
}

.notes-intro {
  max-width: 60ch;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.note-card {
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  text-decoration: none;
  color: var(--ink);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.note-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
  color: var(--ink);
}

.note-card .meta {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.note-card h3 {
  margin: 0 0 12px;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.18;
}

.note-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.note-card .read-more {
  margin-top: auto;
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
}

.note-card:hover .read-more { color: var(--copper); }

.notes-all {
  margin: 36px auto 0;
  max-width: 1100px;
  text-align: right;
}

.notes-all a {
  color: var(--teal);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.notes-all a:hover { color: var(--copper); }

@media (max-width: 880px) {
  .notes-grid { grid-template-columns: 1fr; }
  .notes-all { text-align: left; }
}

/* ---------- Contact ---------- */

.contact {
  background: var(--teal);
  color: var(--paper);
  text-align: center;
}

.contact .section-kicker { color: var(--copper-soft); }

.contact h2 {
  color: var(--paper);
  margin: 0 auto 16px;
  max-width: 22ch;
}

.contact-intro {
  max-width: 56ch;
  margin: 0 auto 36px;
  color: rgba(251, 248, 242, 0.84);
  font-size: 17px;
  line-height: 1.75;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.contact .btn-primary {
  background: var(--paper);
  color: var(--teal);
  border-color: var(--paper);
}
.contact .btn-primary:hover {
  background: var(--copper);
  color: var(--paper);
  border-color: var(--copper);
}

.contact .btn-ghost {
  color: var(--paper);
  border-color: rgba(251, 248, 242, 0.6);
}
.contact .btn-ghost:hover {
  background: var(--paper);
  color: var(--teal);
  border-color: var(--paper);
}

.contact-meta {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 24px;
  max-width: 480px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(251, 248, 242, 0.18);
  text-align: left;
}

.contact-meta dt {
  color: var(--copper-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-top: 4px;
}

.contact-meta dd {
  margin: 0;
  color: var(--paper);
  font-size: 16px;
}

.contact-meta a {
  color: var(--paper);
  border-bottom: 1px solid rgba(251, 248, 242, 0.4);
  padding-bottom: 2px;
}

.contact-meta a:hover { color: var(--copper-soft); border-bottom-color: var(--copper-soft); }

/* ---------- Footer ---------- */

.site-footer {
  padding: 32px var(--pad-x);
  background: var(--paper-2);
  color: var(--muted);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.site-footer p { margin: 0; }

.footer-meta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-meta a {
  color: var(--teal);
  font-weight: 500;
}

.footer-meta a:hover { color: var(--copper); }

/* ---------- Mobile sticky CTA ---------- */

.mobile-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 25;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(251, 248, 242, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.mobile-cta .btn {
  flex: 1;
  min-height: 44px;
  font-size: 14px;
  padding: 10px 14px;
}

@media (max-width: 760px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 76px; }
}

/* ---------- Journal page (journal.html) ---------- */

.journal-page main > section { padding-top: clamp(48px, 6vw, 80px); }

.journal-head {
  max-width: 880px;
  margin: 0 auto 36px;
}

.journal-head .section-kicker { margin-bottom: 12px; }

.journal-head h1 {
  margin: 0 0 14px;
  font-size: clamp(38px, 5vw, 60px);
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--teal);
  letter-spacing: -0.01em;
}

.journal-head p {
  max-width: 60ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.journal-list {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 760px) {
  .journal-list { grid-template-columns: 1fr; }
}

/* ---------- Article (post.html) ---------- */

.post-page .site-header { background: rgba(251, 248, 242, 0.92); border-bottom: 1px solid var(--line); }

.article-shell {
  padding: clamp(32px, 5vw, 56px) var(--pad-x) clamp(48px, 7vw, 80px);
  background:
    linear-gradient(180deg, var(--sage) 0, var(--paper) 320px);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
}

.back-link:hover { color: var(--copper); }

.article {
  max-width: 760px;
  margin: 0 auto;
}

.article-hero { margin-bottom: 36px; }

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.article-hero h1 {
  margin: 0 0 14px;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: clamp(34px, 5.2vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.article-summary {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.article-visual {
  display: none;
}

.article-body { margin-top: 28px; }

.article-body section { margin-bottom: 32px; }

.article-body h2 {
  margin: 0 0 14px;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
}

.article-body p {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.78;
  margin-bottom: 1.1em;
}

.takeaway-box,
.reference-box {
  margin: 32px 0;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
}

.takeaway-box { border-top: 4px solid var(--copper); }

.takeaway-box h2,
.reference-box h2 {
  margin: 0 0 14px;
  font-size: 20px;
  color: var(--teal);
}

.takeaway-box ul,
.reference-box ol {
  margin: 0;
  padding-left: 22px;
  list-style: disc;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}

.reference-box ol { list-style: decimal; }

.takeaway-box li,
.reference-box li { margin-bottom: 8px; }

.reference-box a {
  color: var(--teal);
  font-weight: 600;
  border-bottom: 1px solid var(--line-strong);
}
.reference-box a:hover { color: var(--copper); border-bottom-color: var(--copper); }

/* ---------- Reveal motion ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Print ---------- */

@media print {
  .site-header,
  .mobile-cta,
  .hero-actions,
  .contact-actions,
  .notes-all,
  .footer-meta { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; }
  main > section { padding: 24px 0; }
}
