/* ===================================================================
   Superior Powder Coating — styles
   Molten Workshop: charcoal/steel base, molten-orange primary accent,
   amber secondary (oven glow), bold grotesque headlines
   =================================================================== */

:root {
  /* Molten Workshop palette (aliases kept for backward compat) */
  --magenta:   #ff6a00;  /* mapped: molten orange (primary) */
  --sunset:    #ff8c1a;
  --cyan:      #ff9e2c;  /* mapped: amber (secondary) */
  --neon:      #d4500a;  /* mapped: deep ember */

  --bg:        #141518;
  --bg-alt:    #1a1b1f;
  --surface:   #1f2025;
  --surface-2: #292b31;
  --line:      #32343b;
  --text:      #f1f2f4;
  --muted:     #9aa0a9;
  --accent:    #ff6a00;
  --accent-2:  #ff9e2c;
  --accent-dk: #d4500a;
  --white:     #ffffff;
  --metal:     linear-gradient(135deg, #ffb24d 0%, #ff6a00 46%, #d4500a 100%);
  --radius:    14px;
  --radius-sm: 9px;
  --maxw:      1140px;
  --shadow:    0 18px 40px rgba(0, 0, 0, 0.45);
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: 86px; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Bold grotesque display headlines */
h1, h2 {
  font-family: "Archivo Black", "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.05;
  margin: 0;
}
/* Condensed industrial sub-labels & smaller headings */
h3, .brand-mark {
  font-family: "Oswald", "Inter", sans-serif;
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin: 0;
}

a { color: inherit; text-decoration: none; }

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.eyebrow {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--accent-2);
  margin: 0 0 14px;
}

/* Gradient headline accent (with solid fallback) */
.hl {
  color: var(--accent);
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== Icon system (thin-line SVG via <use>) ===== */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ico {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.18em;
}
.ic-inline { width: 0.95em; height: 0.95em; vertical-align: -0.1em; }

/* ===== Film-grain texture overlay ===== */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease), background 0.2s, box-shadow 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-lg { padding: 15px 30px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-accent {
  background: linear-gradient(135deg, #ff8a2b 0%, #e85d08 100%);
  color: #1f1206;
  box-shadow: 0 10px 24px rgba(255, 106, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.btn-accent:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 16px 32px rgba(255, 106, 0, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
/* Trailing arrow micro-interaction on large primary CTAs */
.btn-accent.btn-lg::after {
  content: "";
  width: 1.05em; height: 1.05em;
  margin-left: 2px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.2s var(--ease);
}
.btn-accent.btn-lg:hover::after { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-2); transform: translateY(-2px); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 21, 24, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  background: var(--accent);
  color: #1f1206;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 10px;
  letter-spacing: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 1.02rem; font-family: "Oswald", sans-serif; letter-spacing: 0.4px; }
.brand-text small { color: var(--muted); font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-weight: 600; font-size: 0.94rem; color: var(--muted); transition: color 0.18s; }
.nav a:hover { color: var(--white); }
.nav .nav-cta { color: #1f1206; }
.nav .nav-cta:hover { color: #1f1206; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 560px at 82% -10%, rgba(255, 106, 0, 0.26), transparent 60%),
    radial-gradient(900px 520px at 8% 110%, rgba(255, 158, 44, 0.14), transparent 60%),
    radial-gradient(700px 420px at 50% 130%, rgba(212, 80, 10, 0.20), transparent 65%),
    linear-gradient(180deg, #1c1d22 0%, #141518 100%);
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(900px 500px at 70% 0%, #000, transparent 75%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  padding: 92px 22px 84px;
  max-width: 760px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.3rem);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.lede {
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  color: var(--muted);
  max-width: 600px;
  margin: 0 0 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  list-style: none;
  margin: 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: "Oswald", sans-serif;
  font-size: 1.9rem;
  color: var(--white);
}
.hero-stats span { color: var(--muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }

/* ===== Trust bar ===== */
.trustbar { background: linear-gradient(90deg, var(--magenta) 0%, var(--neon) 100%); color: #1f1206; }
.trustbar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
  padding: 14px 22px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== Sections ===== */
.section { padding: 86px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 4.2vw, 2.6rem); font-weight: 400; text-transform: uppercase; }
.section-sub { color: var(--muted); margin: 14px 0 0; font-size: 1.05rem; }

/* ===== Cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 22px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s var(--ease), border-color 0.2s, box-shadow 0.2s;
}
.card { box-shadow: inset 0 1px 0 rgba(255, 236, 214, 0.04); }
.card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 236, 214, 0.07); }
.card-icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 18px;
  color: var(--accent);
}
.card-icon .ico { width: 26px; height: 26px; stroke-width: 1.5; }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--muted); margin: 0; font-size: 0.97rem; }

/* ===== What We Coat ===== */
.coat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0 0 44px;
}
.coat-grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-weight: 600;
  transition: border-color 0.2s, transform 0.15s var(--ease);
}
.coat-grid li:hover { border-color: var(--accent); transform: translateY(-3px); }
.coat-grid li:hover .coat-ico { color: var(--accent-2); }
.coat-ico { width: 22px; height: 22px; color: var(--accent); transition: color 0.2s; }

.materials { text-align: center; }
.materials-label { color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.8rem; margin: 0 0 14px; }
.material-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.material-tags span {
  border: 1px solid var(--cyan);
  color: var(--cyan);
  border-radius: 999px;
  padding: 7px 18px;
  font-weight: 600;
  font-size: 0.9rem;
}
.coat-note {
  max-width: 760px;
  margin: 34px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
}
.coat-note strong { color: var(--text); }

/* ===== Process ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.step-num {
  font-family: "Oswald", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(120deg, var(--magenta), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--magenta);
  display: block;
  margin-bottom: 8px;
}
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* ===== Gallery ===== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 30px;
}
.gf-btn {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: color 0.18s, background 0.18s, border-color 0.18s, transform 0.12s var(--ease);
}
.gf-btn:hover { color: var(--text); border-color: var(--accent); transform: translateY(-1px); }
.gf-btn.is-active {
  color: #1f1206;
  background: linear-gradient(135deg, #ff8a2b 0%, #e85d08 100%);
  border-color: transparent;
}
.gallery-empty { text-align: center; color: var(--muted); margin: 10px 0 0; }
.gallery-empty a { color: var(--accent-2); font-weight: 600; }
.shot[hidden] { display: none; }

.gallery {
  column-count: 3;
  column-gap: 20px;
}
.shot {
  break-inside: avoid;
  margin: 0 0 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s var(--ease), border-color 0.2s, box-shadow 0.2s;
}
.shot:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow); }
.shot img { width: 100%; height: auto; display: block; }
.shot figcaption {
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  border-top: 1px solid var(--line);
}
.shot-pair .ba { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--line); }
.ba-img { position: relative; display: block; }
.ba-img::after {
  content: attr(data-label);
  position: absolute;
  top: 8px; left: 8px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 5px;
}
.ba-img:last-child::after { background: var(--cyan); color: #04181d; }
.gallery-cta { text-align: center; margin: 34px 0 0; color: var(--muted); }
.gallery-cta a { color: var(--accent-2); font-weight: 600; }
.gallery-cta a:hover { color: var(--accent); }

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 44px;
  align-items: start;
}
.about-text p { color: var(--muted); }
.about-text h2 { font-size: clamp(1.7rem, 3.8vw, 2.4rem); text-transform: uppercase; margin-bottom: 18px; }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.about-pills span {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.85rem;
  font-weight: 600;
}
.about-card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
}
.about-card h3 { font-size: 1.3rem; margin-bottom: 18px; color: var(--white); }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative;
  padding: 8px 0 8px 30px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 16px; height: 16px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.7rem, 3.8vw, 2.4rem); text-transform: uppercase; margin-bottom: 14px; }
.contact-list { list-style: none; padding: 0; margin: 28px 0 0; }
.contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.ci-label {
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 1.5px;
  color: var(--accent-2);
  font-weight: 700;
}
.contact-list a:hover { color: var(--accent); }

.quote-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--muted);
}
.field input, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.96rem;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.30);
}
.field textarea { resize: vertical; }
.form-status {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 14px 0 0;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}
.form-status.is-ok { color: #ffffff; background: #1f8a4c; }
.form-status.is-err { color: #fff; background: #b3402f; }
.form-note { text-align: center; color: var(--muted); font-size: 0.88rem; margin: 14px 0 0; }
.form-note a { color: var(--accent-2); font-weight: 600; }

/* ===== Map ===== */
.map-wrap { line-height: 0; border-top: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; filter: grayscale(0.25) contrast(1.05); }

/* ===== Footer ===== */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--line); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 30px;
  padding: 46px 22px;
  align-items: start;
}
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand strong { font-family: "Oswald", sans-serif; font-size: 1.1rem; }
.footer-brand p { color: var(--muted); margin: 4px 0 0; font-size: 0.88rem; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: var(--muted); font-weight: 600; font-size: 0.92rem; }
.footer-nav a:hover { color: var(--accent); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { color: var(--muted); }
.footer-contact a:first-child { color: var(--white); font-weight: 700; font-size: 1.15rem; font-family: "Oswald", sans-serif; }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding: 18px 22px;
  color: var(--muted);
  font-size: 0.84rem;
}

/* ===== Back to top ===== */
.back-to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--accent);
  color: #1f1206;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(255, 106, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 40;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ===== Reveal animation ===== */
.section, .hero-content { will-change: opacity, transform; }
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

/* Staggered child reveal (cards, coat items, steps, gallery) */
.r-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  transition-delay: var(--d, 0ms);
}
.r-item.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], .r-item { opacity: 1; transform: none; transition: none; }
  .grain { display: none; }
  html { scroll-behavior: auto; }
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .gallery { column-count: 2; }
}
@media (max-width: 720px) {
  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--line);
    padding: 8px 22px 22px;
    transform: translateY(-130%);
    transition: transform 0.3s var(--ease);
    box-shadow: var(--shadow);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); color: var(--text); }
  .nav .nav-cta { margin-top: 12px; border-bottom: 0; text-align: center; }
  .nav-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 26px; }
  .gallery { column-count: 1; }
}

/* ===== Hero additions ===== */
.hero-kw {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  font-weight: 600;
  color: var(--cyan);
  margin: 6px 0 18px;
  letter-spacing: 0.3px;
}
.hero-microcopy {
  font-size: 0.92rem;
  color: var(--muted);
  margin: -28px 0 30px;
  max-width: 560px;
}
.hero-microcopy strong { color: var(--text); }
.hero-microcopy a { color: var(--accent-2); font-weight: 600; }

/* ===== Contact actions + Facebook badge ===== */
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 22px 0 8px;
}
.fb-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--cyan);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  transition: border-color 0.2s, color 0.2s;
}
.fb-badge:hover { border-color: var(--cyan); color: var(--white); }

/* ===== Sticky mobile action bar ===== */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: none;
  background: rgba(20, 21, 24, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
}
.mobile-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 4px calc(10px + env(safe-area-inset-bottom));
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
}
.mobile-bar .ico { width: 22px; height: 22px; color: var(--accent-2); }
.mobile-bar a:active { background: var(--surface-2); }
.mobile-bar a + a { border-left: 1px solid var(--line); }

/* ===== Lightbox ===== */
.lb { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 4, 12, 0.92);
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}
.lightbox-close {
  position: absolute;
  top: 16px; right: 20px;
  width: 44px; height: 44px;
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}
.lightbox-close:hover { background: var(--accent); }

/* ===== Show mobile bar + lift back-to-top on small screens ===== */
@media (max-width: 720px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 64px; }
  .back-to-top { bottom: 78px; }
}

/* ===== Before/After drag slider ===== */
.ba-feature { margin: 0 0 42px; }
.ba-feature-label {
  text-align: center;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-2);
  margin: 0 0 16px;
}
.ba-sliders { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ba-slide { margin: 0; }
.bas {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  --pos: 50%;
  touch-action: pan-y;
}
.bas-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.bas-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.bas-tag {
  position: absolute; top: 10px;
  font-family: "Oswald", sans-serif; font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  padding: 3px 9px; border-radius: 5px; color: #fff; pointer-events: none;
}
.bas-tag-before { left: 10px; background: rgba(20, 24, 29, 0.78); }
.bas-tag-after { right: 10px; background: linear-gradient(135deg, #ff8a2b, #e85d08); color: #1f1206; }
.bas-divider {
  position: absolute; top: 0; bottom: 0; left: var(--pos);
  width: 2px; background: #fff; transform: translateX(-1px);
  pointer-events: none; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}
.bas-knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 38px; height: 38px; border-radius: 50%; background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45); display: grid; place-items: center;
}
.bas-knob::before {
  content: ""; width: 18px; height: 18px; background: #d4500a;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l-4 6 4 6M15 6l4 6-4 6'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l-4 6 4 6M15 6l4 6-4 6'/%3E%3C/svg%3E") center/contain no-repeat;
}
.bas-range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.bas:focus-within { outline: 2px solid var(--accent); outline-offset: 2px; }
.ba-slide figcaption { padding: 12px 4px 0; font-weight: 600; font-size: 0.95rem; color: var(--text); }

/* ===== Colors & Finishes ===== */
.finish-types { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 0 0 30px; }
.finish-chip {
  font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.5px;
  font-weight: 600; font-size: 0.82rem; color: var(--text);
  border: 1px solid var(--line); background: var(--surface); border-radius: 999px; padding: 8px 16px;
}
.swatches {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px;
}
.sw-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 10px 12px; font-weight: 600; font-size: 0.9rem;
  transition: border-color 0.2s, transform 0.12s var(--ease);
}
.sw-chip:hover { border-color: var(--accent); transform: translateY(-2px); }
.sw-chip span {
  width: 26px; height: 26px; border-radius: 50%; background: var(--c);
  border: 1px solid rgba(255, 255, 255, 0.2); flex: 0 0 auto;
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.3);
}
.swatch-note { text-align: center; color: var(--muted); margin: 26px 0 0; }
.swatch-note a { color: var(--accent-2); font-weight: 600; }

/* ===== FAQ ===== */
.container-narrow { max-width: 820px; }
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 16px 18px;
  font-family: "Oswald", sans-serif; font-weight: 600; font-size: 1.02rem; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; line-height: 1; color: var(--accent); transition: transform 0.2s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 18px 16px; color: var(--muted); }
.faq-a p { margin: 0; }
.faq-a a { color: var(--accent-2); font-weight: 600; }

/* ===== Keyboard focus visibility (accessibility) ===== */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 3px; }
.btn:focus-visible { outline-offset: 3px; }

@media (max-width: 680px) {
  .ba-sliders { grid-template-columns: 1fr; }
}

/* ===== Audience pathway cards ===== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.audience-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: inset 0 1px 0 rgba(255, 236, 214, 0.03);
  transition: transform 0.2s var(--ease), border-color 0.2s, box-shadow 0.2s;
}
.audience-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: var(--shadow); }
.audience-ico {
  width: 52px; height: 52px; display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px;
  color: var(--accent); margin-bottom: 16px;
}
.audience-ico .ico { width: 26px; height: 26px; stroke-width: 1.5; }
.audience-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.audience-card p { color: var(--muted); margin: 0 0 16px; font-size: 0.95rem; flex: 1; }
.audience-link {
  font-family: "Oswald", sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.5px; font-size: 0.85rem; color: var(--accent-2);
  display: inline-flex; align-items: center; gap: 6px;
}
.audience-link::after {
  content: ""; width: 1em; height: 1em; background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.2s var(--ease);
}
.audience-card:hover .audience-link::after { transform: translateX(4px); }

/* ===== 25-ft capacity scale ===== */
.scale-module { max-width: 860px; margin: 0 auto; }
.scale-bar {
  position: relative; height: 16px; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--line); margin: 30px 0 56px;
}
.scale-fill {
  position: absolute; inset: 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-dk), var(--accent) 55%, var(--accent-2));
  box-shadow: 0 0 22px rgba(255, 106, 0, 0.4);
}
.scale-tick { position: absolute; top: 50%; left: var(--p); transform: translate(-50%, -50%); }
.scale-tick::before {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 12px; height: 12px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 3px var(--bg);
}
.scale-tick b {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  font-family: "Oswald", sans-serif; font-size: 0.82rem; color: var(--muted); white-space: nowrap;
}
.scale-tick-end b { color: var(--accent); font-size: 1.1rem; font-weight: 700; }
.scale-note { text-align: center; color: var(--muted); margin: 0; }
.scale-note strong { color: var(--text); }

/* ===== Powder vs Paint table ===== */
.vs-table { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.vs-head, .vs-row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; align-items: center; }
.vs-head {
  background: var(--surface-2);
  font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.5px; font-size: 0.82rem;
}
.vs-head span { padding: 14px 16px; }
.vs-col-pc { color: var(--accent); font-weight: 700; }
.vs-col-paint { color: var(--muted); }
.vs-row { border-top: 1px solid var(--line); font-size: 0.95rem; }
.vs-row span { padding: 13px 16px; }
.vs-row:nth-child(odd) { background: var(--surface); }
.vs-feat { color: var(--text); font-weight: 600; }
.vs-yes, .vs-no { position: relative; padding-left: 40px !important; color: var(--muted); }
.vs-yes { color: var(--text); }
.vs-yes::before, .vs-no::before {
  content: ""; position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px;
}
.vs-yes::before {
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}
.vs-no::before {
  background: #8a6b5e;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E") center/contain no-repeat;
}
.vs-note { text-align: center; color: var(--muted); margin: 22px 0 0; }
.vs-note strong { color: var(--text); }
.vs-note a { color: var(--accent-2); font-weight: 600; }

@media (max-width: 560px) {
  .vs-head, .vs-row { grid-template-columns: 1fr; }
  .vs-head span, .vs-row span { padding: 8px 14px; }
  .vs-head span:first-child { display: none; }
  .vs-feat { background: var(--surface-2); font-family: "Oswald", sans-serif; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.5px; }
  .vs-row { border-top: 2px solid var(--line); }
}

/* ===== Multi-step quote wizard ===== */
.quote-wizard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
}
.qw-progress { height: 6px; background: var(--surface-2); border-radius: 999px; overflow: hidden; }
.qw-progress-fill {
  display: block; height: 100%; width: 25%;
  background: linear-gradient(90deg, var(--accent-dk), var(--accent), var(--accent-2));
  transition: width 0.3s var(--ease);
}
.qw-steplabel { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 0.78rem; color: var(--muted); margin: 12px 0 18px; }
.qw-steplabel span { color: var(--accent-2); font-weight: 600; }
.qw-step { border: 0; margin: 0; padding: 0; min-inline-size: auto; display: none; }
.qw-step.is-active { display: block; }
.qw-step legend { font-family: "Oswald", sans-serif; font-weight: 600; font-size: 1.15rem; color: var(--text); margin: 0 0 16px; padding: 0; }
.qw-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.qw-opt { position: relative; cursor: pointer; }
.qw-opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.qw-opt span { display: block; text-align: center; padding: 14px 8px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); font-weight: 600; font-size: 0.9rem; transition: border-color 0.18s, background 0.18s, color 0.18s; }
.qw-opt input:checked + span { border-color: var(--accent); background: rgba(255, 106, 0, 0.12); color: var(--text); }
.qw-opt input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.qw-hint { color: var(--muted); font-size: 0.92rem; margin: 0 0 14px; }
.qw-drop {
  display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center;
  padding: 28px 18px; border: 2px dashed var(--line); border-radius: var(--radius-sm);
  cursor: pointer; color: var(--muted); transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.qw-drop:hover { border-color: var(--accent); color: var(--text); background: var(--bg); }
.qw-drop .ico { width: 30px; height: 30px; color: var(--accent); }
.qw-drop small { font-size: 0.78rem; }
.qw-thumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.qw-thumb { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; border: 1px solid var(--line); }
.qw-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.qw-nav { display: flex; gap: 10px; margin-top: 20px; }
.qw-grow { flex: 1; }
.field select {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; color: var(--text); font-family: inherit; font-size: 0.96rem;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.18); }
.qw-done { text-align: center; padding: 12px 0; }
.qw-done .ico { width: 48px; height: 48px; color: var(--accent); }
.qw-done h3 { font-family: "Oswald", sans-serif; margin: 12px 0 8px; }
.qw-done p { color: var(--muted); margin: 0; }
@media (max-width: 520px) { .qw-options { grid-template-columns: 1fr; } }

/* ===== Service pages ===== */
.hero-svc .hero-content { padding-top: 58px; padding-bottom: 54px; max-width: 820px; }
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 1px;
  font-size: 0.74rem; color: var(--muted); margin-bottom: 18px;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent-2); }
.breadcrumb span { opacity: 0.5; }
.breadcrumb b { color: var(--accent-2); font-weight: 600; }

.benefit-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 30px;
}
.benefit-list li { position: relative; padding-left: 32px; color: var(--muted); line-height: 1.6; }
.benefit-list li strong { color: var(--text); font-family: "Oswald", sans-serif; font-weight: 600; }
.benefit-list li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}
.svc-examples { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-examples .shot { margin: 0; }
.svc-examples + .gallery-cta { text-align: center; margin-top: 26px; }

.cta-band {
  text-align: center; padding: 66px 0;
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(255, 106, 0, 0.14), transparent 70%),
    var(--bg-alt);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.cta-band h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); text-transform: uppercase; }
.cta-band p { color: var(--muted); margin: 12px 0 0; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

.footer-h { display: block; font-family: "Oswald", sans-serif; text-transform: uppercase; font-size: 0.74rem; letter-spacing: 1px; color: var(--accent-2); margin-bottom: 6px; }

@media (max-width: 720px) {
  .benefit-list { grid-template-columns: 1fr; }
  .svc-examples { grid-template-columns: 1fr; }
}

/* "Learn more" link on service cards */
.card-link {
  margin-top: 14px;
  font-family: "Oswald", sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.5px; font-size: 0.82rem; color: var(--accent-2);
  display: inline-flex; align-items: center; gap: 6px;
}
.card-link::after {
  content: ""; width: 1em; height: 1em; background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.2s var(--ease);
}
.card:hover .card-link::after { transform: translateX(4px); }
.card { display: flex; flex-direction: column; }
.card > p { flex: 1; }
