/* Steadyhand Studio — Slate Utility & Soft Coral */
:root {
  --primary: #334155;
  --secondary: #475569;
  --accent: #E2725B;
  --accent-deep: #C85A44;
  --bg: #F5F5F0;
  --bg-warm: #F1ECE4;
  --fg: #1A1A1A;
  --paper: #FBFBF8;
  --line: #DCD9D0;
  --line-soft: #E6E3DA;
  --slate-100: #E7EAEE;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --maxw: 1180px;
  --readw: 720px;
  --shadow-card: 0 1px 2px rgba(26,26,26,.04), 0 8px 24px rgba(51,65,85,.07);
  --shadow-lift: 0 2px 6px rgba(26,26,26,.05), 0 18px 48px rgba(51,65,85,.12);
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: "Sarala", system-ui, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.7;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Scroll-driven gradient ground: warms toward coral as you descend */
.bg-ground {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1100px 700px at 12% -8%, rgba(226,114,91,.07), transparent 60%),
    radial-gradient(900px 600px at 100% 6%, rgba(71,85,105,.08), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg) 40%, var(--bg-warm) 100%);
  transition: background-position .2s linear;
}
.bg-warmth {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(1200px 900px at 50% 120%, rgba(226,114,91,.10), transparent 60%);
  opacity: var(--warmth, 0);
  transition: opacity .4s linear;
}

h1, h2, h3, h4, .display {
  font-family: "Wix Madefor Display", system-ui, sans-serif;
  color: var(--primary);
  line-height: 1.12;
  letter-spacing: -0.015em;
  font-weight: 700;
  margin: 0 0 .5em;
}

a { color: var(--accent-deep); text-decoration: none; }
p a, .prose a, .blogroll a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-decoration-color: rgba(226,114,91,.45);
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: text-decoration-color .2s var(--ease), color .2s var(--ease);
}
p a:hover, .prose a:hover, .blogroll a:hover {
  color: var(--accent-deep);
  text-decoration-color: var(--accent);
}

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

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--primary); color: #fff; padding: 10px 16px; border-radius: var(--radius-sm);
}
.skip-link:focus { left: 16px; top: 16px; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: saturate(1.4) blur(10px);
  background: rgba(245,245,240,.82);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: "Wix Madefor Display", sans-serif; font-weight: 800; font-size: 20px; color: var(--primary); letter-spacing: -0.02em; }
.brand:hover { color: var(--primary); }
.brand .mark {
  width: 30px; height: 30px; border-radius: 9px; flex: 0 0 auto;
  background: linear-gradient(150deg, var(--primary), var(--secondary));
  position: relative;
}
.brand .mark::after {
  content: ""; position: absolute; inset: 0; border-radius: 9px;
  background: radial-gradient(circle at 70% 70%, var(--accent) 0 26%, transparent 30%);
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-family: "Wix Madefor Display", sans-serif; font-weight: 500; font-size: 15.5px; color: var(--secondary); position: relative; }
.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 2px;
  background: var(--accent); border-radius: 2px;
}
.nav-cta {
  font-family: "Wix Madefor Display", sans-serif; font-weight: 600; font-size: 15px;
  background: var(--accent); color: #fff !important; padding: 10px 18px; border-radius: 999px;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.nav-cta:hover { background: var(--accent-deep); transform: translateY(-1px); }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px;
    background: var(--paper); color: var(--primary); cursor: pointer;
  }
  .mobile-menu { display: none; border-top: 1px solid var(--line-soft); background: var(--bg); }
  .mobile-menu.open { display: block; }
  .mobile-menu a { display: block; padding: 14px 24px; font-family: "Wix Madefor Display", sans-serif; color: var(--primary); border-bottom: 1px solid var(--line-soft); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  font-family: "Wix Madefor Display", sans-serif; font-weight: 600; font-size: 16px;
  padding: 15px 28px; border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 22px rgba(226,114,91,.28); }
.btn-primary:hover { background: var(--accent-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(226,114,91,.34); }
.btn-ghost { background: transparent; color: var(--primary); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--secondary); background: var(--paper); transform: translateY(-2px); }
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-family: "Ubuntu Mono", ui-monospace, monospace;
  text-transform: uppercase; letter-spacing: .16em; font-size: 13px;
  color: var(--accent-deep); font-weight: 700; margin: 0 0 18px;
  display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--accent); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 86px 0 72px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(40px, 5.6vw, 68px); letter-spacing: -0.03em; margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--accent-deep); }
.hero-sub { font-size: 20px; color: var(--fg); max-width: 30ch; margin: 0 0 32px; line-height: 1.6; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-figure {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lift); border: 1px solid var(--line-soft);
  aspect-ratio: 4/3.1;
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }
.hero-figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(51,65,85,.28));
}
.hero-badge {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  background: rgba(251,251,248,.94); border-radius: 14px; padding: 12px 16px;
  display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-card);
}
.hero-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(226,114,91,.18); }
.hero-badge b { font-family: "Wix Madefor Display", sans-serif; color: var(--primary); font-size: 15px; }
.hero-badge span { display: block; font-size: 13px; color: var(--secondary); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 56px 0 48px; }
}

/* ---------- Sections ---------- */
.section { padding: 78px 0; }
.section-tight { padding: 56px 0; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); }
.section-head p { color: var(--secondary); font-size: 18px; margin: 14px 0 0; }
.lead { font-size: 21px; color: var(--fg); line-height: 1.6; }

.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat { background: var(--paper); padding: 30px 24px; }
.stat .num { font-family: "Wix Madefor Display", sans-serif; font-weight: 800; font-size: clamp(30px,4vw,44px); color: var(--primary); letter-spacing: -0.02em; }
.stat .num span { color: var(--accent-deep); }
.stat .lab { color: var(--secondary); font-size: 15px; margin-top: 4px; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2,1fr); } }

/* ---------- Cards / Services ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-card);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--line); }
.card .ico {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(226,114,91,.12); color: var(--accent-deep); margin-bottom: 18px;
}
.card .ico svg { width: 24px; height: 24px; }
.card h3 { font-size: 21px; margin-bottom: 9px; }
.card p { color: var(--secondary); margin: 0 0 14px; font-size: 16.5px; }
.card .card-link { font-family: "Wix Madefor Display", sans-serif; font-weight: 600; font-size: 15px; color: var(--accent-deep); display: inline-flex; gap: 7px; align-items: center; }
.card .card-link .arrow { transition: transform .2s var(--ease); }
.card:hover .card-link .arrow { transform: translateX(3px); }

/* ---------- Pillar feature ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.feature.flip .feature-media { order: 2; }
.feature-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift); border: 1px solid var(--line-soft); aspect-ratio: 16/11; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature ul { list-style: none; padding: 0; margin: 22px 0 0; }
.feature li { display: flex; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line-soft); color: var(--fg); }
.feature li:first-child { border-top: 0; }
.feature li .tick { flex: 0 0 auto; color: var(--accent-deep); margin-top: 3px; }
@media (max-width: 900px) { .feature { grid-template-columns: 1fr; gap: 28px; } .feature.flip .feature-media { order: 0; } }

/* ---------- Blogroll / Resources ---------- */
.blogroll { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
@media (max-width: 820px) { .blogroll { grid-template-columns: 1fr; } }
.post-card {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-card); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.post-card .thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--slate-100); }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .thumb img { transform: scale(1.04); }
.post-card .pc-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card .pc-meta { font-family: "Ubuntu Mono", monospace; font-size: 12.5px; letter-spacing: .04em; color: var(--secondary); text-transform: uppercase; }
.post-card h3 { font-size: 20px; margin: 0; line-height: 1.22; }
.post-card h3 a { color: var(--primary); text-decoration: none; }
.post-card h3 a:hover { color: var(--accent-deep); }
.post-card p { color: var(--secondary); font-size: 15.5px; margin: 0; }
.post-card .pc-foot { margin-top: auto; padding-top: 6px; }
.post-card .pc-read { font-family: "Wix Madefor Display", sans-serif; font-weight: 600; font-size: 14.5px; color: var(--accent-deep); display: inline-flex; gap: 7px; align-items: center; }

/* Outbound resource references block */
.refs { margin-top: 30px; border-top: 1px solid var(--line); padding-top: 26px; }
.refs h3 { font-size: 18px; margin-bottom: 14px; }
.refs ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.refs li { display: flex; gap: 12px; align-items: baseline; }
.refs li .src { font-family: "Ubuntu Mono", monospace; font-size: 12px; color: var(--secondary); }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }
.quote {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 18px;
}
.quote .stars { color: var(--accent); letter-spacing: 3px; font-size: 14px; }
.quote blockquote { margin: 0; font-size: 17px; color: var(--fg); line-height: 1.6; }
.quote .who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.quote .av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(150deg,var(--primary),var(--secondary)); color: #fff; display: grid; place-items: center; font-family: "Wix Madefor Display",sans-serif; font-weight: 700; font-size: 16px; }
.quote .who b { font-family: "Wix Madefor Display",sans-serif; color: var(--primary); font-size: 15.5px; display: block; }
.quote .who span { color: var(--secondary); font-size: 13.5px; }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 820px) { .team { grid-template-columns: 1fr; } }
.member { text-align: left; }
.member .ph { aspect-ratio: 1; border-radius: var(--radius); background: linear-gradient(150deg, var(--slate-100), var(--bg-warm)); display: grid; place-items: center; border: 1px solid var(--line-soft); margin-bottom: 16px; overflow:hidden; }
.member .ph span { font-family: "Wix Madefor Display",sans-serif; font-weight: 800; font-size: 40px; color: var(--secondary); opacity: .55; }
.member h3 { font-size: 19px; margin: 0; }
.member .role { color: var(--accent-deep); font-family: "Ubuntu Mono",monospace; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin: 4px 0 8px; }
.member p { color: var(--secondary); font-size: 15px; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; padding: 64px 56px; }
.cta-band::after { content:""; position:absolute; inset:0; background: radial-gradient(600px 400px at 90% 120%, rgba(226,114,91,.4), transparent 60%); pointer-events:none; }
.cta-band h2 { color: #fff; font-size: clamp(28px,3.6vw,40px); margin-bottom: 14px; position: relative; }
.cta-band p { color: rgba(255,255,255,.85); font-size: 18px; max-width: 52ch; position: relative; margin: 0 0 28px; }
.cta-band .btn-primary { position: relative; }
.cta-band .btn-ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.35); color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.16); }
@media (max-width: 700px) { .cta-band { padding: 44px 28px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--primary); color: rgba(255,255,255,.78); margin-top: 90px; padding: 64px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.site-footer .brand { color: #fff; }
.site-footer .brand .mark { background: linear-gradient(150deg,#fff,#cdd4dd); }
.footer-about { margin: 16px 0 0; font-size: 15.5px; color: rgba(255,255,255,.7); max-width: 32ch; }
.footer-col h4 { color: #fff; font-size: 14px; font-family: "Ubuntu Mono",monospace; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.footer-col a, .footer-col p { color: rgba(255,255,255,.74); font-size: 15px; display: block; margin-bottom: 10px; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 44px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14px; color: rgba(255,255,255,.6); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Breadcrumb ---------- */
.crumb { font-family: "Ubuntu Mono", monospace; font-size: 13.5px; color: var(--secondary); padding: 22px 0 0; display: flex; gap: 9px; flex-wrap: wrap; align-items: center; }
.crumb a { color: var(--secondary); text-decoration: none; }
.crumb a:hover { color: var(--accent-deep); }
.crumb .sep { color: var(--line); }
.crumb [aria-current] { color: var(--primary); }

/* ---------- Article ---------- */
.article-hero { padding: 8px 0 30px; }
.article-hero .kicker { font-family: "Ubuntu Mono",monospace; text-transform: uppercase; letter-spacing: .12em; font-size: 13px; color: var(--accent-deep); font-weight: 700; }
.article-hero h1 { font-size: clamp(32px,4.6vw,52px); margin: 14px 0 16px; max-width: 16ch; }
.article-meta { display: flex; gap: 18px; flex-wrap: wrap; color: var(--secondary); font-size: 15px; font-family: "Ubuntu Mono",monospace; }
.article-cover { border-radius: var(--radius-lg); overflow: hidden; margin: 30px 0 8px; box-shadow: var(--shadow-lift); border: 1px solid var(--line-soft); aspect-ratio: 16/8; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 260px; gap: 56px; align-items: start; padding: 18px 0 0; }
@media (max-width: 1000px) { .article-layout { grid-template-columns: 1fr; } .toc { display: none; } }

.prose { max-width: var(--readw); font-size: 18.5px; line-height: 1.72; color: var(--fg); }
.prose > p { margin: 0 0 20px; }
.prose h2 { font-size: clamp(25px,3vw,33px); margin: 46px 0 16px; padding-top: 8px; }
.prose h3 { font-size: 21px; color: var(--secondary); margin: 30px 0 10px; }
.prose ul, .prose ol { margin: 0 0 22px; padding-left: 24px; }
.prose li { margin: 8px 0; }
.prose strong { color: var(--primary); }
.prose img { border-radius: var(--radius); margin: 12px 0 8px; border: 1px solid var(--line-soft); box-shadow: var(--shadow-card); }
.prose figure { margin: 24px 0; }
.prose blockquote {
  margin: 26px 0; padding: 20px 26px; border-left: 3px solid var(--accent);
  background: var(--paper); border-radius: 0 var(--radius) var(--radius) 0; color: var(--fg);
  font-size: 19px; box-shadow: var(--shadow-card);
}
.prose blockquote p { margin: 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 24px 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; font-size: 16px; }
.prose th { background: var(--slate-100); color: var(--primary); text-align: left; font-family: "Wix Madefor Display",sans-serif; }
.prose th, .prose td { padding: 13px 18px; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.prose tr:last-child td { border-bottom: 0; }
.prose section { margin: 0 0 14px; }

/* FAQ schema styling — group bare sections readably */
.prose section h2 { margin-top: 40px; }
.prose [itemprop="name"] { font-size: 20px; color: var(--primary); }

/* TOC sidebar */
.toc { position: sticky; top: 96px; }
.toc h4 { font-family: "Ubuntu Mono",monospace; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--secondary); margin-bottom: 14px; }
.toc ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 2px; }
.toc a { display: block; padding: 7px 12px; font-size: 14.5px; color: var(--secondary); border-left: 2px solid var(--line); border-radius: 0 8px 8px 0; }
.toc a:hover { color: var(--primary); background: var(--paper); border-left-color: var(--accent); }
.share-card { margin-top: 26px; padding: 20px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--paper); }
.share-card p { margin: 0 0 12px; font-size: 14.5px; color: var(--secondary); }

/* article footer outbound source */
.source-note { margin-top: 36px; padding: 22px 26px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line-soft); display: flex; gap: 16px; align-items: flex-start; box-shadow: var(--shadow-card); }
.source-note .si { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 11px; background: rgba(226,114,91,.12); color: var(--accent-deep); display: grid; place-items: center; }
.source-note p { margin: 0; font-size: 15px; color: var(--secondary); }

/* ---------- Contact form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 34px; } }
.form-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-lift); }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: "Wix Madefor Display",sans-serif; font-weight: 600; font-size: 15px; color: var(--primary); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; font-family: "Sarala",sans-serif; font-size: 16px; color: var(--fg);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 16px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(226,114,91,.16); }
.field input::placeholder, .field textarea::placeholder { color: #8a8a82; }
.form-card .btn-primary { width: 100%; }
.contact-info .info-item { display: flex; gap: 14px; padding: 18px 0; border-top: 1px solid var(--line-soft); }
.contact-info .info-item:first-of-type { border-top: 0; }
.contact-info .info-item .ii { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 11px; background: rgba(51,65,85,.08); color: var(--primary); display: grid; place-items: center; }
.contact-info .info-item b { font-family: "Wix Madefor Display",sans-serif; color: var(--primary); display: block; font-size: 15.5px; }
.contact-info .info-item a, .contact-info .info-item span { color: var(--secondary); font-size: 15.5px; }
.form-note { font-size: 13.5px; color: var(--secondary); margin-top: 4px; }
.form-success { display: none; padding: 16px 18px; border-radius: var(--radius-sm); background: rgba(226,114,91,.1); border: 1px solid rgba(226,114,91,.3); color: var(--accent-deep); font-size: 15px; margin-bottom: 20px; }
.form-success.show { display: block; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px) scale(.985); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .06s; }
.reveal-d2 { transition-delay: .12s; }
.reveal-d3 { transition-delay: .18s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-d1, .reveal-d2, .reveal-d3 { opacity: 1 !important; transform: none !important; transition: none !important; }
  .bg-warmth { transition: none; }
  .post-card:hover .thumb img { transform: none; }
}

/* page intro mask reveal */
.mask-reveal > * { animation: maskUp .8s var(--ease) both; }
@keyframes maskUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .mask-reveal > * { animation: none; } }

.muted { color: var(--secondary); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.tag { font-family: "Ubuntu Mono",monospace; font-size: 12.5px; color: var(--secondary); background: var(--paper); border: 1px solid var(--line-soft); padding: 5px 11px; border-radius: 999px; }
