/*
Theme Name: Tata Salida
Description: Warm neomorphic classic theme for Tata Salida, bespoke quiche and pie makers. Every word and colour on the front page is editable under Appearance → Customize.
Author: Dusk Engineering
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: tata-salida
*/

/* =========================================================================
   Tata Salida — warm neomorphism.
   Soft baked surfaces: everything is pressed out of, or into, one warm
   pastry-coloured sheet. No borders, no cards floating on white.
   The surface, shadow, highlight, ink and accent tones below are overridden
   at runtime by the Customizer (see tsalida_palette_css() in functions.php).
   ====================================================================== */

:root {
  --surface: #EDE3D5;
  --sd: #CFC0A9;              /* shadow — the side away from the light */
  --sl: #FFF8EC;              /* highlight — the side facing the light */
  --ink: #3A2A20;
  --accent: #8F4B16;          /* crust */
  --berry: #93303F;           /* filling */
  --berry-ink: #FFF6E9;
  --fill-hi: #E9B96B;
  --fill-lo: #C87A33;

  /* Derived, so recolouring the three surface tones stays coherent. */
  --sd-strong: #BEAB90;
  --sd-strong: color-mix(in srgb, var(--sd) 78%, #000);
  --ink-soft: #6B5648;
  --ink-soft: color-mix(in srgb, var(--ink) 78%, var(--surface));
  --muted: #957F6D;
  --muted: color-mix(in srgb, var(--ink) 56%, var(--surface));
  --hairline: color-mix(in srgb, var(--sd) 70%, var(--surface));
  --focus: 0 0 0 3px rgba(143, 75, 22, .45);
  --focus: 0 0 0 3px color-mix(in srgb, var(--accent) 48%, transparent);

  --radius: 30px;
  --serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "Karla", "Segoe UI", system-ui, -apple-system, sans-serif;
}
:root:not([data-theme="light"]) { color-scheme: light; }

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --surface: #2A2320;
    --sd: #1D1815;
    --sl: #3B322C;
    --ink: #F4E8D8;
    --accent: #E0A45F;
    --berry: #C4596A;
    --berry-ink: #241B18;
    --fill-hi: #D8A155;
    --fill-lo: #A95F27;
    --sd-strong: color-mix(in srgb, var(--sd) 70%, #000);
    --ink-soft: color-mix(in srgb, var(--ink) 74%, var(--surface));
    --muted: color-mix(in srgb, var(--ink) 52%, var(--surface));
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --surface: #2A2320;
  --sd: #1D1815;
  --sl: #3B322C;
  --ink: #F4E8D8;
  --accent: #E0A45F;
  --berry: #C4596A;
  --berry-ink: #241B18;
  --fill-hi: #D8A155;
  --fill-lo: #A95F27;
  --sd-strong: color-mix(in srgb, var(--sd) 70%, #000);
  --ink-soft: color-mix(in srgb, var(--ink) 74%, var(--surface));
  --muted: color-mix(in srgb, var(--ink) 52%, var(--surface));
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--surface);
  background-image:
    radial-gradient(60rem 40rem at 12% -10%, color-mix(in srgb, var(--sl) 70%, transparent), transparent 70%),
    radial-gradient(50rem 40rem at 105% 8%, color-mix(in srgb, var(--sd) 45%, transparent), transparent 70%);
  background-attachment: fixed;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 40;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.012em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 5.6vw, 4.2rem); line-height: 1.02; }
h2 { font-size: clamp(2rem, 3.7vw, 2.9rem); }
h3 { font-size: 1.36rem; }
p { margin: 0 0 1.05em; max-width: 62ch; }
a { color: var(--accent); }
strong { color: var(--ink); font-weight: 600; }
img { max-width: 100%; height: auto; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
section { padding: 96px 0; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: .85em;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
}
.eyebrow::before {
  content: "";
  flex: none;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.section-intro { font-size: 1.06rem; max-width: 58ch; }

/* ---- neumorphic primitives ------------------------------------------- */
.raised {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 13px 13px 28px var(--sd), -13px -13px 28px var(--sl);
}
.well {
  background: var(--surface);
  border-radius: 24px;
  box-shadow: inset 6px 6px 14px var(--sd), inset -6px -6px 14px var(--sl);
}
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 17px 36px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 8px 8px 18px var(--sd), -8px -8px 18px var(--sl);
  transition: box-shadow .2s ease, transform .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 11px 11px 22px var(--sd-strong), -10px -10px 22px var(--sl); }
.btn:active { transform: translateY(0); box-shadow: inset 6px 6px 12px var(--sd), inset -6px -6px 12px var(--sl); }
.btn.primary { background: var(--berry); color: var(--berry-ink); box-shadow: 8px 8px 18px var(--sd-strong), -8px -8px 18px var(--sl); }
.btn.primary:active { box-shadow: inset 6px 6px 14px rgba(0, 0, 0, .38); }
.btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

/* A row of pressed dots — the crimped edge of a pastry case. */
.crimp {
  height: 9px;
  width: 118px;
  background-image: radial-gradient(circle at 50% 50%, var(--accent) 34%, transparent 36%);
  background-size: 15px 9px;
  background-repeat: repeat-x;
  opacity: .62;
}

/* ---- brand lockup ----------------------------------------------------- */
.lockup { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.lockup .mark {
  display: grid;
  place-items: center;
  width: 3.6em;
  height: 3.6em;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1em;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--accent);
  background: var(--surface);
  box-shadow: inset 4px 4px 10px var(--sd), inset -4px -4px 10px var(--sl);
}
.lockup .mark span { font-size: 1.3em; line-height: 1; }
.lockup .name {
  font-family: var(--serif);
  font-size: 1.75em;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--ink);
  line-height: 1.1;
}
.lockup .tag {
  font-family: var(--sans);
  font-size: .68em;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  text-indent: .28em;
}

/* ---- header ----------------------------------------------------------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--surface);
  box-shadow: 0 8px 22px -12px var(--sd);
}
body.admin-bar .site-head { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-head { top: 46px; } }
.nav {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.nav-brand .mini-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex: none;
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--surface);
  box-shadow: 5px 5px 11px var(--sd), -5px -5px 11px var(--sl);
}
.nav-brand .brand-text {
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .005em;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a,
.nav-links .nav-menu a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 11px 17px;
  border-radius: 999px;
  transition: box-shadow .16s ease, color .16s ease;
}
.nav-links a:hover { color: var(--ink); box-shadow: inset 3px 3px 8px var(--sd), inset -3px -3px 8px var(--sl); }
.nav-links a.cta { color: var(--accent); }
.nav-links .nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.theme-toggle {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-left: 8px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--accent);
  background: var(--surface);
  box-shadow: 5px 5px 12px var(--sd), -5px -5px 12px var(--sl);
  transition: box-shadow .18s ease;
}
.theme-toggle:hover { box-shadow: 7px 7px 15px var(--sd-strong), -7px -7px 15px var(--sl); }
.theme-toggle:active { box-shadow: inset 4px 4px 9px var(--sd), inset -4px -4px 9px var(--sl); }
.theme-toggle svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.theme-toggle .icon-sun { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .icon-sun { display: block; }
  :root:not([data-theme="light"]) .theme-toggle .icon-moon { display: none; }
}
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
@media (max-width: 860px) {
  .nav-links a:not(.cta) { display: none; }
  .nav-links .nav-menu { display: none; }
  .nav-brand .brand-text { font-size: 1.08rem; }
}

/* ---- hero ------------------------------------------------------------- */
.hero { padding: 76px 0 92px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 68px;
  align-items: center;
}
.hero-grid > * { min-width: 0; }
.hero-copy .lede { font-size: 1.14rem; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 32px; }
.hero-note {
  margin: 30px 0 0;
  padding: 15px 22px;
  border-radius: 18px;
  font-size: .88rem;
  color: var(--muted);
  max-width: 44ch;
}

.hero-stage {
  position: relative;
  padding: 56px 38px 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.hero-stage .lockup { font-size: clamp(13px, 1.5vw, 17px); }

/* the pie */
.pie {
  position: relative;
  width: min(330px, 68vw);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface);
  box-shadow: 15px 15px 32px var(--sd), -15px -15px 32px var(--sl);
}
.pie-crust {
  position: relative;
  width: 89%;
  height: 89%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface);
  box-shadow: inset 9px 9px 20px var(--sd), inset -9px -9px 20px var(--sl);
}
.pie-crust::before {                       /* crimped pastry edge */
  content: "";
  position: absolute;
  inset: 2%;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, var(--sl) 0deg 6deg, var(--sd) 6deg 12deg);
  opacity: .8;
  -webkit-mask: radial-gradient(closest-side, transparent 0 78%, #000 80%);
  mask: radial-gradient(closest-side, transparent 0 78%, #000 80%);
}
.pie-inner {
  position: relative;
  width: 74%;
  height: 74%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 20px -6px rgba(0, 0, 0, .28), inset 0 -8px 16px rgba(0, 0, 0, .16);
}
.pie-inner svg { display: block; width: 100%; height: 100%; }
.pie-inner .strips rect { fill: var(--surface); }

.steam {
  position: absolute;
  left: 50%;
  top: -34px;
  width: 96px;
  height: 60px;
  transform: translateX(-50%);
  pointer-events: none;
}
.steam path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3.2;
  stroke-linecap: round;
  opacity: .35;
  animation: steam-rise 4.4s ease-in-out infinite;
}
.steam path:nth-child(2) { animation-delay: .7s; }
.steam path:nth-child(3) { animation-delay: 1.4s; }
@keyframes steam-rise {
  0%, 100% { opacity: .16; transform: translateY(5px); }
  50%      { opacity: .48; transform: translateY(-5px); }
}

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-stage { order: -1; }
}
@media (max-width: 520px) {
  .hero-stage { padding: 52px 20px 34px; }
}

/* ---- what we bake ----------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}
@media (max-width: 940px) { .cards { grid-template-columns: 1fr; } }
.card { padding: 40px 34px 34px; transition: box-shadow .22s ease, transform .22s ease; }
.card:hover { transform: translateY(-5px); box-shadow: 17px 17px 34px var(--sd-strong), -14px -14px 30px var(--sl); }
.card .icon-well {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}
.card .icon-well svg { width: 33px; height: 33px; fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin-bottom: .35em; }
.card p { font-size: .97rem; margin-bottom: 0; }
.card ul { list-style: none; margin: 20px 0 0; padding: 0; }
.card li { position: relative; padding: 7px 0 7px 26px; font-size: .93rem; }
.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: inset 2px 2px 4px var(--sd), inset -2px -2px 4px var(--sl), 0 0 0 1.5px var(--accent);
}

/* ---- assurance strip -------------------------------------------------- */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 52px;
}
@media (max-width: 940px) { .strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .strip { grid-template-columns: 1fr; } }
.tile { padding: 30px 24px; text-align: center; }
.tile b {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 8px;
}
.tile span { font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* ---- ordering steps --------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 52px;
  position: relative;
}
@media (max-width: 940px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 34px 28px 30px; position: relative; }
.step .num {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}
.step h3 { font-size: 1.2rem; }
.step p { font-size: .93rem; margin: 0; }

/* ---- promise band ----------------------------------------------------- */
.promise { padding: 68px 52px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.promise blockquote {
  margin: 26px 0 0;
  max-width: 42ch;
  font-family: var(--serif);
  font-variation-settings: "SOFT" 60, "WONK" 1;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  line-height: 1.32;
}
.promise cite {
  display: block;
  margin-top: 24px;
  font-family: var(--sans);
  font-style: normal;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 560px) { .promise { padding: 48px 26px; } }

/* ---- contact ---------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 44px;
  margin-top: 50px;
  align-items: start;
}
@media (max-width: 940px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { padding: 40px 36px; }
.contact-info dl { margin: 0; }
.contact-info dt {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 24px;
}
.contact-info dt:first-of-type { margin-top: 0; }
.contact-info dd { margin: 5px 0 0; color: var(--ink); font-size: 1.03rem; line-height: 1.5; }
.contact-info dd a { color: var(--ink); text-decoration-color: var(--accent); text-underline-offset: 3px; }

.card-form { padding: 40px 36px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface);
  border: none;
  border-radius: 16px;
  padding: 15px 18px;
  box-shadow: inset 5px 5px 11px var(--sd), inset -5px -5px 11px var(--sl);
}
.field textarea { resize: vertical; min-height: 128px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: .84rem; color: var(--muted); margin: 16px 0 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.notice {
  margin: 0 0 28px;
  padding: 16px 24px;
  border-radius: 18px;
  max-width: none;
  font-size: .95rem;
  color: var(--ink);
  background: var(--surface);
  box-shadow: inset 5px 5px 12px var(--sd), inset -5px -5px 12px var(--sl);
}
.notice.is-error { color: var(--berry); }

/* ---- footer ----------------------------------------------------------- */
.site-foot { padding: 72px 0 40px; }
.foot-inner { display: flex; flex-wrap: wrap; gap: 46px; justify-content: space-between; align-items: flex-start; }
.foot-brand { max-width: 34ch; }
.foot-brand .lockup { align-items: flex-start; text-align: left; font-size: 12px; }
.foot-brand p { font-size: .92rem; margin: 18px 0 0; }
.foot-links { display: flex; gap: 64px; flex-wrap: wrap; }
.foot-links div { min-width: 145px; }
.foot-links h4 {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.foot-links a { display: block; text-decoration: none; color: var(--ink-soft); font-size: .92rem; padding: 5px 0; }
.foot-links a:hover { color: var(--ink); }
.foot-links ul { list-style: none; margin: 0; padding: 0; }
.foot-base {
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--muted);
}

/* ---- secondary pages & posts ------------------------------------------ */
main.prose { padding: 72px 0 96px; }
main.prose .wrap { max-width: 860px; }
main.prose .page-shell { padding: 56px 52px; }
@media (max-width: 640px) { main.prose .page-shell { padding: 38px 26px; } }
main.prose h1 { font-size: clamp(2.2rem, 4.6vw, 3.2rem); margin-bottom: .4em; }
main.prose h2 { font-size: clamp(1.45rem, 2.6vw, 1.85rem); margin-top: 1.7em; }
main.prose h3 { font-size: 1.2rem; margin-top: 1.5em; }
main.prose p, main.prose li { max-width: 68ch; }
main.prose .lede { font-size: 1.12rem; color: var(--ink); }
main.prose ul, main.prose ol { padding-left: 0; margin: 0 0 1.3em; list-style: none; }
main.prose ol { counter-reset: prose-ol; }
main.prose li { position: relative; padding: 6px 0 6px 28px; }
main.prose ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: inset 2px 2px 4px var(--sd), inset -2px -2px 4px var(--sl), 0 0 0 1.5px var(--accent);
}
main.prose ol > li { counter-increment: prose-ol; }
main.prose ol > li::before {
  content: counter(prose-ol) ".";
  position: absolute;
  left: 0;
  top: 6px;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--accent);
}
main.prose blockquote {
  margin: 1.6em 0;
  padding: 26px 30px;
  border-radius: 22px;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  background: var(--surface);
  box-shadow: inset 5px 5px 12px var(--sd), inset -5px -5px 12px var(--sl);
}
main.prose blockquote p:last-child { margin-bottom: 0; }
main.prose .meta { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
main.prose article + article { margin-top: 44px; padding-top: 34px; border-top: 1px solid var(--hairline); }
main.prose .pagination, main.prose .nav-links { margin-top: 40px; }
main.prose .page-numbers {
  display: inline-block;
  margin-right: 8px;
  padding: 8px 15px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink-soft);
  box-shadow: 5px 5px 11px var(--sd), -5px -5px 11px var(--sl);
}
main.prose .page-numbers.current { color: var(--accent); box-shadow: inset 4px 4px 9px var(--sd), inset -4px -4px 9px var(--sl); }
.back-home { margin-top: 40px; }

/* WordPress editor & accessibility helpers */
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .84rem; color: var(--muted); }
main.prose img { border-radius: 20px; box-shadow: 10px 10px 24px var(--sd), -10px -10px 24px var(--sl); }

/* ---- reveal ----------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card:hover, .btn:hover { transform: none; }
  .steam path { animation: none; opacity: .32; }
}
