/* la doctora — master stylesheet
 * Editorial warm + Valentine's palette, Fraunces display + Inter body.
 * Base carries 90% of surface; candy-heart accents used sparingly.
 */

/* ---- Tokens ---------------------------------------------------------- */
:root {
  /* Base palette */
  --cream: #fbf6f4;
  --cream-2: #f5ece7;
  --sand: #e8ddd0;
  --ink: #2a1f1f;
  --ink-soft: #4a3838;
  --ink-mute: #756060;
  --rose: #c98a8a;
  --rose-deep: #8b5a5a;
  --rose-pale: #f2dcdc;
  --peach: #f5c8a8;

  /* Candy heart accents — used only for tags/dots/dividers */
  --heart-pink: #f8b8c8;
  --heart-butter: #f5e6a3;
  --heart-mint: #c8e6b8;
  --heart-peach: #f5c8a8;
  --heart-lavender: #d8c0e0;
  --heart-sky: #b8d0e8;

  /* Type */
  --serif: 'Fraunces', 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Scale */
  --step--1: clamp(0.83rem, 0.79rem + 0.19vw, 0.94rem);
  --step-0:  clamp(1rem, 0.95rem + 0.24vw, 1.13rem);
  --step-1:  clamp(1.2rem, 1.14rem + 0.31vw, 1.38rem);
  --step-2:  clamp(1.44rem, 1.35rem + 0.44vw, 1.69rem);
  --step-3:  clamp(1.73rem, 1.6rem + 0.65vw, 2.11rem);
  --step-4:  clamp(2.07rem, 1.87rem + 0.99vw, 2.64rem);
  --step-5:  clamp(2.49rem, 2.19rem + 1.51vw, 3.3rem);
  --step-6:  clamp(2.99rem, 2.53rem + 2.28vw, 4.13rem);

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4.5rem;
  --sp-9: 6rem;

  /* Layout */
  --wide: 1240px;
  --measure: 68ch;
  --measure-narrow: 44ch;
  --radius: 4px;
  --radius-lg: 12px;
  --radius-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---- Reset ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  font-feature-settings: 'ss01', 'cv11';
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
a { color: var(--rose-deep); text-decoration: none; }
a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }

/* ---- Type ------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 var(--sp-4);
  font-variation-settings: 'SOFT' 40, 'WONK' 0;
}
h1 { font-size: var(--step-6); line-height: 1.05; letter-spacing: -0.025em; }
h2 { font-size: var(--step-4); line-height: 1.1; }
h3 { font-size: var(--step-2); line-height: 1.25; }
h4 { font-size: var(--step-1); line-height: 1.3; }
p { margin: 0 0 var(--sp-4); max-width: var(--measure); }
p.lead { font-size: var(--step-1); line-height: 1.55; color: var(--ink-soft); }
em, .italic { font-family: var(--serif); font-style: italic; }
.serif { font-family: var(--serif); }

/* Focus */
:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Skip link */
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--cream);
  padding: var(--sp-3) var(--sp-4);
  z-index: 100; border-radius: 0 0 var(--radius) 0;
}
.skip:focus { left: 0; }

/* ---- Layout helpers -------------------------------------------------- */
.wrap { width: min(100% - 2.5rem, var(--wide)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, 780px); margin-inline: auto; }
.stack > * + * { margin-top: var(--sp-4); }
.stack-lg > * + * { margin-top: var(--sp-6); }
.section { padding-block: var(--sp-9); }
.section-sm { padding-block: var(--sp-8); }
.section-tight { padding-block: var(--sp-7); }

/* Section backgrounds */
.bg-cream { background: var(--cream); }
.bg-cream-2 { background: var(--cream-2); }
.bg-sand { background: var(--sand); }
.bg-rose-pale { background: var(--rose-pale); }
.bg-ink { background: var(--ink); color: var(--cream); }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: var(--cream); }

/* ---- Header ---------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 246, 244, 0.88);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: rgba(42, 31, 31, 0.08); }
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: var(--sp-4);
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand svg { height: 32px; width: auto; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  font-family: var(--serif);
  font-size: 1.02rem;
  font-style: italic;
}
.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  padding: var(--sp-2) 0;
  position: relative;
}
.nav a:hover, .nav a[aria-current] { color: var(--ink); text-decoration: none; }
.nav a[aria-current]::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--rose);
}
.nav-right { display: flex; align-items: center; gap: var(--sp-5); }
.lang-switch {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: var(--sp-2) var(--sp-3);
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
}
.lang-switch:hover { color: var(--ink); border-color: rgba(42, 31, 31, 0.12); text-decoration: none; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(42, 31, 31, 0.15);
  border-radius: var(--radius-pill);
  padding: 0.55rem 0.85rem;
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: 0.4rem; }
  .nav-collapsible {
    position: fixed;
    inset: 74px 0 0 0;
    background: var(--cream);
    padding: var(--sp-6);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-5);
    font-size: var(--step-2);
    overflow-y: auto;
  }
  .nav-collapsible.is-open { display: flex; }
  .nav-right {
    flex-direction: row;
    width: 100%;
    margin-top: var(--sp-6);
    padding-top: var(--sp-5);
    border-top: 1px solid rgba(42, 31, 31, 0.08);
  }
}

/* ---- Buttons --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.95rem 1.65rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--rose);
  color: #fff;
}
.btn-primary:hover { background: var(--rose-deep); color: #fff; }

.btn-ink {
  background: var(--ink);
  color: var(--cream);
}
.btn-ink:hover { background: var(--ink-soft); color: var(--cream); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(42, 31, 31, 0.2);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(42, 31, 31, 0.03); }

.btn-lg { padding: 1.1rem 2rem; font-size: 1.05rem; }

/* WhatsApp icon in button */
.btn .icon { width: 1.15em; height: 1.15em; }

/* ---- Eyebrow --------------------------------------------------------- */
.eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--rose-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 var(--sp-4);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--rose);
}

/* ---- Hero ------------------------------------------------------------ */
.hero {
  padding-block: var(--sp-8) var(--sp-9);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.hero-text h1 { margin-bottom: var(--sp-5); }
.hero-text h1 em { color: var(--rose-deep); font-style: italic; }
.hero-text .lead { max-width: 40ch; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--sand);
  box-shadow: 0 30px 60px -30px rgba(42, 31, 31, 0.25);
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--sp-7); }
  .hero { padding-block: var(--sp-7); }
}

/* ---- Portrait slot (Category B swap placeholder) --------------------- */
.portrait-slot {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, rgba(201, 138, 138, 0.25), rgba(242, 220, 220, 0.55)),
    url('/assets/img/portrait-linen-bg.jpg') center/cover;
  box-shadow: 0 20px 40px -20px rgba(42, 31, 31, 0.2);
}
.portrait-slot-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-6);
  color: var(--ink);
}
.portrait-slot-inner .name {
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--step-3);
  line-height: 1.1;
  margin: 0;
}
.portrait-slot-inner .role {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: var(--sp-1);
}
.portrait-slot .tag {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  background: rgba(251, 246, 244, 0.9);
  color: var(--rose-deep);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.82rem;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}

/* ---- Section headings ------------------------------------------------ */
.section-head {
  max-width: 640px;
  margin-bottom: var(--sp-7);
}
.section-head h2 { margin-bottom: var(--sp-3); }
.section-head p { color: var(--ink-soft); font-size: var(--step-1); }

/* ---- Values / mini feature list ------------------------------------- */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-7);
}
.value h3 {
  font-size: var(--step-1);
  font-style: italic;
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}
.value h3::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose);
  transform: translateY(-1px);
  flex-shrink: 0;
}
.value:nth-child(2) h3::before { background: var(--heart-mint); }
.value:nth-child(3) h3::before { background: var(--heart-butter); }
.value p { color: var(--ink-soft); font-size: 0.98rem; }
@media (max-width: 800px) {
  .values { grid-template-columns: 1fr; gap: var(--sp-6); }
}

/* ---- Services cards ------------------------------------------------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(42, 31, 31, 0.06);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -25px rgba(42, 31, 31, 0.25);
}
.service-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.service-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.service-card:hover .service-card-media img { transform: scale(1.04); }
.service-card-body {
  padding: var(--sp-6) var(--sp-5) var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card h3 {
  font-size: var(--step-2);
  margin-bottom: var(--sp-3);
}
.service-card .service-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: var(--sp-4);
}
.service-card .service-tag::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--heart-pink);
}
.service-card:nth-child(2) .service-tag::before { background: var(--heart-mint); }
.service-card:nth-child(3) .service-tag::before { background: var(--heart-lavender); }
.service-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: var(--sp-5); }
.service-card .service-cta {
  margin-top: auto;
  font-family: var(--serif);
  font-style: italic;
  color: var(--rose-deep);
  font-size: 1.02rem;
  border-bottom: 1px solid rgba(139, 90, 90, 0.3);
  align-self: flex-start;
  padding-bottom: 2px;
}
.service-card .service-cta:hover { text-decoration: none; border-bottom-color: var(--rose-deep); }
@media (max-width: 900px) {
  .services { grid-template-columns: 1fr; gap: var(--sp-6); }
}

/* ---- Full-bleed image band ------------------------------------------ */
.image-band {
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--sand);
}
.image-band img {
  width: 100%; height: 100%; object-fit: cover;
}
@media (max-width: 700px) { .image-band { aspect-ratio: 4 / 3; } }

/* ---- Quote / testimonial slot -------------------------------------- */
.quote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding-block: var(--sp-8);
}
.quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--step-3);
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 var(--sp-5);
  quotes: '“' '”' '‘' '’';
}
.quote blockquote::before { content: open-quote; color: var(--rose); margin-right: 0.1em; }
.quote blockquote::after { content: close-quote; color: var(--rose); margin-left: 0.05em; }
.quote cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
}

/* ---- Split (image + copy) ------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--sand);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-body h2 { margin-bottom: var(--sp-5); }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: var(--sp-6); }
  .split.reverse .split-media { order: 0; }
}

/* ---- CTA band ------------------------------------------------------- */
.cta-band {
  background: var(--rose-pale);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-7);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { margin-bottom: var(--sp-4); max-width: 22ch; margin-inline: auto; }
.cta-band p { margin-inline: auto; color: var(--ink-soft); }
.cta-band .btn { margin-top: var(--sp-5); }

/* Candy heart dots as subtle decor on CTA band */
.cta-band::before,
.cta-band::after {
  content: '';
  position: absolute;
  width: 22px; height: 20px;
  background:
    radial-gradient(circle at 30% 30%, var(--heart-butter) 20%, transparent 21%),
    radial-gradient(circle at 70% 30%, var(--heart-butter) 20%, transparent 21%);
  opacity: 0.45;
}
.cta-band::before { top: 26px; left: 32px; background-color: var(--heart-mint); border-radius: 50%; height: 12px; width: 12px; background-image: none; }
.cta-band::after { bottom: 30px; right: 40px; background-color: var(--heart-lavender); border-radius: 50%; height: 12px; width: 12px; background-image: none; }

/* ---- Blog cards ----------------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  gap: var(--sp-4);
  transition: transform .3s var(--ease);
}
.blog-card:hover { text-decoration: none; transform: translateY(-2px); }
.blog-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--sand);
}
.blog-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.blog-card:hover .blog-card-media img { transform: scale(1.03); }
.blog-card h3 {
  font-size: var(--step-2);
  line-height: 1.2;
  margin-bottom: var(--sp-2);
}
.blog-card:hover h3 { color: var(--rose-deep); }
.blog-card .meta {
  font-size: 0.82rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.blog-card .meta .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--heart-pink);
}
.blog-card:nth-child(2) .meta .dot { background: var(--heart-mint); }
.blog-card:nth-child(3) .meta .dot { background: var(--heart-lavender); }
.blog-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; gap: var(--sp-7); }
}

/* ---- Contact / forms ------------------------------------------------ */
.form {
  display: grid;
  gap: var(--sp-4);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 700px) { .form-row { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.35rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.85rem 0.95rem;
  background: var(--cream);
  border: 1px solid rgba(42, 31, 31, 0.15);
  border-radius: var(--radius);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--rose);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.85rem; color: var(--ink-mute); }

/* ---- Contact info block --------------------------------------------- */
.contact-info {
  display: grid;
  gap: var(--sp-4);
}
.contact-item {
  display: flex;
  align-items: baseline;
  gap: var(--sp-4);
  padding-block: var(--sp-3);
  border-bottom: 1px solid rgba(42, 31, 31, 0.08);
}
.contact-item:last-child { border-bottom: none; }
.contact-item .label {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rose-deep);
  font-size: 1rem;
  min-width: 100px;
}
.contact-item .value { font-size: 1.02rem; color: var(--ink); }

/* ---- Footer --------------------------------------------------------- */
.site-footer {
  background: var(--cream-2);
  padding-block: var(--sp-8) var(--sp-6);
  border-top: 1px solid rgba(42, 31, 31, 0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-7);
  margin-bottom: var(--sp-7);
}
.footer-brand p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 32ch;
  margin-top: var(--sp-4);
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: var(--sp-4);
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-2); }
.footer-col a { color: var(--ink); font-size: 0.96rem; }
.footer-col a:hover { color: var(--rose-deep); text-decoration: none; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(42, 31, 31, 0.08);
  font-size: 0.85rem;
  color: var(--ink-mute);
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.footer-bottom a { color: var(--ink-mute); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---- WhatsApp float button ------------------------------------------ */
.wa-float {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.55);
  z-index: 50;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-float:hover { transform: scale(1.06); text-decoration: none; color: #fff; }
.wa-float svg { width: 30px; height: 30px; }

/* ---- Article (blog post) styles ------------------------------------- */
.article {
  padding-block: var(--sp-8);
}
.article-header { max-width: 720px; margin: 0 auto var(--sp-7); text-align: center; }
.article-header h1 { margin-bottom: var(--sp-4); }
.article-meta {
  font-size: 0.85rem;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
}
.article-meta .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--rose); }
.article-hero {
  max-width: 1000px;
  margin: 0 auto var(--sp-8);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--sand);
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-body {
  max-width: 680px;
  margin: 0 auto;
}
.article-body p { font-size: 1.08rem; line-height: 1.75; margin-bottom: var(--sp-5); max-width: none; }
.article-body h2 { margin-top: var(--sp-8); margin-bottom: var(--sp-4); font-size: var(--step-3); }
.article-body h3 { margin-top: var(--sp-7); margin-bottom: var(--sp-3); font-size: var(--step-2); font-style: italic; color: var(--rose-deep); }
.article-body ul, .article-body ol { padding-left: 1.4rem; margin-bottom: var(--sp-5); }
.article-body li { margin-bottom: var(--sp-2); line-height: 1.7; }
.article-body blockquote {
  border-left: 3px solid var(--rose);
  padding: var(--sp-2) var(--sp-5);
  margin: var(--sp-6) 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
  background: var(--rose-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ---- 404 ------------------------------------------------------------ */
.notfound {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: var(--sp-8) var(--sp-5);
  text-align: center;
}
.notfound .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(6rem, 20vw, 12rem);
  color: var(--rose);
  line-height: 1;
  margin: 0 0 var(--sp-4);
}

/* ---- Utility -------------------------------------------------------- */
.text-center { text-align: center; }
.text-mute { color: var(--ink-mute); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.divider {
  display: flex; align-items: center; gap: var(--sp-4);
  color: var(--ink-mute);
  font-family: var(--serif); font-style: italic; font-size: 0.95rem;
  margin: var(--sp-6) 0;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(42, 31, 31, 0.12);
}

/* ---- Reduced motion ------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
