/* ==========================================================================
   Self-hosted fonts. Previously loaded from Google Fonts; hosting them here
   removes the third-party request (no visitor IP disclosed to Google), drops
   two DNS lookups and a render-blocking stylesheet, and lets the CSP forbid
   external font and style origins entirely.

   Bagel Fat One and Fredoka are both SIL Open Font License 1.1.
   Licenses: assets/fonts/OFL-BagelFatOne.txt, assets/fonts/OFL-Fredoka.txt
   Only the latin and latin-ext subsets are shipped (the site is English).
   ========================================================================== */

@font-face {
  font-family: 'Bagel Fat One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/bagel-fat-one-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Bagel Fat One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/bagel-fat-one-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Fredoka is a variable font: one file serves the whole 400-600 range. */
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/fredoka-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/fredoka-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ==========================================================================
   NailsByAsh, Albuquerque NM
   Brand colors sampled directly from Main_Logo_700x700.png
   ========================================================================== */

:root {
  /* Brand */
  --coral:      #F88982;
  --coral-deep: #E8655C;
  --mauve:      #D6B1BF;
  --mauve-soft: #EBD8E0;
  --plum:       #581B3C;
  --plum-ink:   #3E1029;
  --butter:     #EEDC97;
  --butter-soft:#F8EFC9;
  --cream:      #FFF8F3;
  --white:      #FFFFFF;

  /* Roles */
  --bg:         var(--cream);
  --ink:        var(--plum-ink);
  --ink-soft:   #6B3A54;
  --rule:       rgba(88, 27, 60, .15);

  /* Type */
  --display: "Bagel Fat One", "Fredoka", system-ui, sans-serif;
  --body: "Fredoka", ui-rounded, "Segoe UI", system-ui, sans-serif;

  /* Signature: the logo's stacked triple-offset shadow */
  --sticker: 4px 4px 0 var(--plum), 8px 8px 0 var(--mauve), 12px 12px 0 var(--butter);
  --sticker-sm: 3px 3px 0 var(--plum), 6px 6px 0 var(--mauve);

  --radius: 22px;
  --radius-lg: 34px;
  --wrap: 1140px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--plum); text-underline-offset: 3px; text-decoration-thickness: 2px; }
a:hover { color: var(--coral-deep); }

:focus-visible {
  outline: 3px solid var(--plum);
  outline-offset: 3px;
  border-radius: 6px;
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 1.05; margin: 0 0 .5em; letter-spacing: .01em; }
h1 { font-size: clamp(2.5rem, 7vw, 4.4rem); }
h2 { font-size: clamp(2rem, 5vw, 3.1rem); }
h3 { font-family: var(--body); font-weight: 600; font-size: 1.3rem; line-height: 1.25; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.narrow { width: min(100% - 2.5rem, 760px); margin-inline: auto; }

section { padding: clamp(3.5rem, 8vw, 6rem) 0; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--plum); color: var(--white); padding: .8rem 1.2rem; border-radius: 0 0 12px 0;
}
.skip:focus { left: 0; }

/* ---------- Eyebrow / lead ---------- */
.eyebrow {
  display: inline-block;
  font-weight: 600; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--plum); background: var(--butter);
  padding: .45rem 1rem; border-radius: 999px; margin-bottom: 1.1rem;
  border: 2px solid var(--plum);
}
.lead { font-size: clamp(1.1rem, 2.2vw, 1.3rem); color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--body); font-weight: 600; font-size: 1.05rem;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  border: 3px solid var(--plum);
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn--primary { background: var(--plum); color: var(--white); box-shadow: 5px 5px 0 var(--butter); }
.btn--primary:hover { background: var(--plum-ink); color: var(--white); transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--butter); }
.btn--secondary { background: var(--white); color: var(--plum); box-shadow: 5px 5px 0 var(--mauve); }
.btn--secondary:hover { background: var(--butter-soft); color: var(--plum); transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--mauve); }
.btn--onColor { background: var(--white); color: var(--plum); box-shadow: 5px 5px 0 var(--plum); }
.btn--onColor:hover { background: var(--butter); color: var(--plum); transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--plum); }
.btn:active { transform: translate(1px,1px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream);
  border-bottom: 3px solid var(--plum);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .7rem 0;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand img { width: 52px; height: 52px; border-radius: 14px; border: 2.5px solid var(--plum); }
.brand__name { font-family: var(--display); font-size: 1.35rem; color: var(--plum); line-height: 1; }
.brand__sub { display: block; font-family: var(--body); font-size: .68rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-top: .2rem; }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a:not(.btn) {
  font-weight: 500; font-size: .98rem; text-decoration: none; color: var(--plum);
  padding: .5rem .85rem; border-radius: 999px;
}
.nav a:not(.btn):hover { background: var(--mauve-soft); }
.nav a:not(.btn)[aria-current="page"] { background: var(--coral); color: var(--plum); font-weight: 600; }
.nav .btn { margin-left: .5rem; padding: .6rem 1.3rem; font-size: .95rem; }

.nav-toggle {
  display: none;
  background: var(--white); border: 3px solid var(--plum); border-radius: 14px;
  width: 48px; height: 48px; cursor: pointer; color: var(--plum);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; inset: 100% 0 auto 0;
    flex-direction: column; align-items: stretch;
    background: var(--cream); border-bottom: 3px solid var(--plum);
    padding: 1rem 1.25rem 1.4rem; gap: .2rem;
  }
  .nav[hidden] { display: none; }
  .nav a { padding: .8rem 1rem; font-size: 1.05rem; }
  .nav .btn { margin: .6rem 0 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--coral);
  border-bottom: 3px solid var(--plum);
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(4.5rem, 9vw, 7rem);
  overflow: hidden;
}
.hero__grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
  position: relative; z-index: 2;
}
.hero h1 { color: var(--white); text-shadow: var(--sticker); margin-bottom: .45em; }
.hero p { color: var(--plum); font-size: clamp(1.1rem, 2.3vw, 1.35rem); font-weight: 500; max-width: 34ch; }
.hero .btn-row { margin-top: 1.9rem; }
.hero__art {
  border-radius: var(--radius-lg);
  border: 4px solid var(--plum);
  box-shadow: 10px 10px 0 var(--plum);
  overflow: hidden;
  background: var(--coral);
}
.hero__note {
  display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; margin-top: 1.8rem;
  font-size: .95rem; font-weight: 500; color: var(--plum);
}
/* Each icon lives inside its span so the pair is one flex item. Siblings
   would wrap independently and an icon could land on a different line
   from the words it belongs to. */
.hero__note > span { display: inline-flex; align-items: center; gap: .45rem; }

@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { max-width: 340px; margin-inline: auto; order: -1; }
  .hero p { max-width: none; }
}
/* The triple-stack shadow gets muddy at small type sizes */
@media (max-width: 640px) {
  .hero h1 { text-shadow: 3px 3px 0 var(--plum), 6px 6px 0 var(--mauve); }
  .page-hero h1 { text-shadow: 2px 2px 0 var(--white), 4px 4px 0 var(--coral); }
}

/* Wavy divider */
.wave { display: block; width: 100%; height: auto; margin-bottom: -6px; }

/* ---------- Sections ---------- */
.section--mauve { background: var(--mauve-soft); border-block: 3px solid var(--plum); }
.section--butter { background: var(--butter-soft); border-block: 3px solid var(--plum); }
.section--plum { background: var(--plum); color: var(--butter-soft); border-block: 3px solid var(--plum); }
.section--plum h2 { color: var(--white); }
.section--plum .lead { color: var(--mauve); }
.section--plum a { color: var(--butter); }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
  background: var(--white);
  border: 3px solid var(--plum);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: var(--sticker-sm);
}
.card h3 { color: var(--plum); margin-bottom: .5rem; }
.card p { color: var(--ink-soft); font-size: 1rem; }
.card__icon {
  width: 54px; height: 54px; border-radius: 16px;
  background: var(--coral); border: 3px solid var(--plum);
  display: grid; place-items: center; margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* ---------- Service / price list ---------- */
.menu { display: grid; gap: 1.2rem; }
.menu__item {
  background: var(--white);
  border: 3px solid var(--plum);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  display: grid; grid-template-columns: 1fr auto; gap: .4rem 1.5rem; align-items: start;
  box-shadow: var(--sticker-sm);
}
.menu__item h3 { grid-column: 1; margin: 0; color: var(--plum); font-size: 1.2rem; }
.menu__price {
  grid-column: 2; grid-row: 1 / span 2;
  font-family: var(--display); font-size: 1.9rem; color: var(--plum);
  background: var(--butter); border: 3px solid var(--plum); border-radius: 16px;
  padding: .25rem .85rem; line-height: 1.25; white-space: nowrap;
}
.menu__meta { grid-column: 1; font-size: .85rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--coral-deep); }
.menu__desc { grid-column: 1; color: var(--ink-soft); font-size: 1rem; margin: .35rem 0 0; }

@media (max-width: 520px) {
  .menu__item { grid-template-columns: 1fr; }
  .menu__price { grid-column: 1; grid-row: auto; justify-self: start; order: 3; margin-top: .6rem; }
}

/* ---------- Shade wall ---------- */
.shades { display: grid; grid-template-columns: repeat(auto-fit, minmax(96px, 1fr)); gap: 1.4rem 1rem; }
.shade { text-align: center; }
.shade__chip {
  width: min(100%, 72px); aspect-ratio: 0.6;
  margin: 0 auto .7rem;
  border-radius: 48% 48% 20% 20% / 36% 36% 8% 8%;
  border: 3px solid var(--plum); box-shadow: 4px 4px 0 var(--plum);
  position: relative; overflow: hidden;
}
.shade__chip::after {
  content: ""; position: absolute; left: 20%; top: 14%; width: 15%; height: 42%;
  border-radius: 999px; background: rgba(255,255,255,.5);
  transform: rotate(8deg);
}
.shade span { font-size: .88rem; font-weight: 600; color: var(--plum); }

/* ---------- Testimonials ---------- */
.quote {
  background: var(--white); border: 3px solid var(--plum); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--sticker-sm);
  display: flex; flex-direction: column; gap: 1rem;
}
.quote blockquote { margin: 0; font-size: 1.1rem; color: var(--ink); font-weight: 500; }
.quote figcaption { font-size: .95rem; color: var(--ink-soft); font-weight: 600; margin-top: auto; }
.stars { color: var(--coral-deep); font-size: 1.15rem; letter-spacing: .1em; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 1rem; }
.faq details {
  background: var(--white); border: 3px solid var(--plum); border-radius: var(--radius);
  padding: 1.2rem 1.5rem; box-shadow: var(--sticker-sm);
}
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 1.1rem; color: var(--plum);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--display); font-size: 1.6rem; line-height: 1; color: var(--coral-deep); flex: none;
  transition: transform .2s ease;
}
/* Rotate the plus into an X instead of swapping in a dash character. */
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] summary { margin-bottom: .8rem; }
.faq p { color: var(--ink-soft); font-size: 1rem; }

/* ---------- Info / location ---------- */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.info {
  background: var(--white); border: 3px solid var(--plum); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--sticker-sm);
}
.info h3 { color: var(--plum); font-size: 1.05rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .6rem; }
.info p, .info address { font-style: normal; color: var(--ink-soft); font-size: 1.02rem; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 1.3rem; }
.steps li {
  counter-increment: step; list-style: none;
  background: var(--white); border: 3px solid var(--plum); border-radius: var(--radius);
  padding: 1.5rem 1.6rem 1.5rem 4.6rem; position: relative; box-shadow: var(--sticker-sm);
}
.steps li::before {
  content: counter(step);
  position: absolute; left: 1.3rem; top: 1.35rem;
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: var(--coral); border: 3px solid var(--plum); color: var(--plum);
  font-family: var(--display); font-size: 1.2rem;
  display: grid; place-items: center;
}
.steps h3 { color: var(--plum); margin-bottom: .3rem; }
.steps p { color: var(--ink-soft); font-size: 1rem; }
.steps ul { padding-left: 0; margin: 0; }

/* ---------- Prose ---------- */
.prose h2 { margin-top: 2.2em; }
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-left: 1.3rem; }
.prose li { margin-bottom: .55rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--coral); border-block: 3px solid var(--plum); text-align: center; }
.cta-band h2 { color: var(--white); text-shadow: var(--sticker-sm); }
.cta-band p { color: var(--plum); font-weight: 500; font-size: 1.15rem; max-width: 48ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 2rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--plum); color: var(--mauve); padding: clamp(3rem,6vw,4.5rem) 0 2rem; }
.site-footer a { color: var(--butter); }
.site-footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.site-footer h3 { color: var(--white); font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .9rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer address { font-style: normal; }
.site-footer__brand img { width: 84px; height: 84px; border-radius: 20px; border: 3px solid var(--butter); margin-bottom: 1rem; }
.site-footer__bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 2px solid rgba(238,220,151,.28);
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: .9rem;
}

/* ---------- Breadcrumb ---------- */
.crumbs { font-size: .9rem; color: var(--ink-soft); padding-top: 1.6rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; padding: 0; margin: 0; }
.crumbs li + li::before { content: "›"; margin-right: .45rem; color: var(--coral-deep); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--mauve-soft); border-bottom: 3px solid var(--plum); padding: clamp(2rem,5vw,3.5rem) 0 clamp(3rem,6vw,4.5rem); }
.page-hero h1 { color: var(--plum); text-shadow: 3px 3px 0 var(--white), 6px 6px 0 var(--coral); }
.page-hero .lead { max-width: 62ch; }

.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;
}

/* ---------- Booking page ---------- */
.booking-shell {
  background: var(--white);
  border: 3px solid var(--plum);
  border-radius: var(--radius-lg);
  box-shadow: var(--sticker-sm);
  padding: clamp(.6rem, 2vw, 1.2rem);
  overflow: hidden;
}
.booking-shell__note {
  font-size: .9rem; font-weight: 500; color: var(--ink-soft);
  text-align: center; margin: 0 0 .8rem;
}

/* Booksy injects a fixed width="770" iframe. Force it responsive so the
   page never scrolls sideways on mobile. Booksy's own widget.css is appended
   to <head> after ours, so these need !important to win. */
.booksy-widget-container,
.booksy-widget-container-inline {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}
.booksy-widget-container-inline iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  border: 0;
  display: block;
  border-radius: 18px;
}

/* Fallback shown only if the widget script is blocked or fails to load */
.booking-fallback {
  text-align: center; padding: 2.5rem 1.5rem;
}
.booking-fallback p { color: var(--ink-soft); }

/* Reassurance row under the widget */
.assure { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; }
.assure__item {
  background: var(--white); border: 3px solid var(--plum); border-radius: var(--radius);
  padding: 1.3rem 1.4rem; box-shadow: var(--sticker-sm);
}
.assure__item h3 { color: var(--plum); font-size: 1.05rem; margin-bottom: .4rem; }
.assure__item p { color: var(--ink-soft); font-size: .98rem; }

/* Trust strip */
.trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 2rem;
  font-weight: 600; color: var(--plum); font-size: 1rem;
  padding: 1.2rem 1.4rem; margin-bottom: 2rem;
  background: var(--butter); border: 3px solid var(--plum); border-radius: 999px;
}
.trust span { display: inline-flex; align-items: center; gap: .45rem; }

@media (max-width: 620px) {
  /* Stacked rows in a fully-rounded pill read as a blob; square it off. */
  .trust { border-radius: var(--radius); flex-direction: column; align-items: center; gap: .7rem; }
}

/* ---------- Comparison table ----------
   The card treatment lives on the wrapper, not the <table>. A table cannot
   clip its own cell backgrounds with border-radius + overflow:hidden, which
   left the plum header painting into the rounded corners, and overflow:hidden
   on the table was also clipping its own <caption>. */
.table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  background: var(--white);
  border: 3px solid var(--plum);
  border-radius: var(--radius);
  box-shadow: var(--sticker-sm);
}
.table-note {
  font-weight: 600; color: var(--ink-soft); font-size: 1rem; margin: 0 0 .9rem;
}
table.compare { width: 100%; border-collapse: collapse; min-width: 520px; }
table.compare th, table.compare td { padding: .95rem 1.1rem; text-align: left; }
table.compare thead th {
  background: var(--plum); color: var(--white);
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
}
table.compare tbody tr + tr th, table.compare tbody tr + tr td { border-top: 2px solid var(--rule); }
table.compare tbody th { font-weight: 600; color: var(--plum); }
table.compare td { color: var(--ink-soft); font-size: 1rem; }
table.compare tbody tr:nth-child(even) { background: var(--butter-soft); }

/* ---------- Work gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; }
.shot {
  width: 100%; height: auto; aspect-ratio: 1; object-fit: cover;
  border: 3px solid var(--plum); border-radius: var(--radius);
  box-shadow: var(--sticker-sm);
  background: var(--mauve-soft); /* holds the space while the image decodes */
}

/* ---------- Inline icons ----------
   Replaces emoji, which render in full colour on some platforms and as
   monochrome glyphs on others, so a row of them never matched the plum text. */
.ico { width: 1.1em; height: 1.1em; flex: none; vertical-align: -.16em; stroke: currentColor; fill: none;
       stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ico--fill { fill: currentColor; stroke: none; }
.card__icon .ico { width: 27px; height: 27px; color: var(--plum); }
