/* ==============================================
   Print Robin — main stylesheet
   White-dominant canvas with CMYK brand accents:
   cyan, magenta, yellow, and black (the K).
   ============================================== */

:root {
  /* Surface */
  --bg:           #ffffff;
  --bg-soft:      #f7f9fb;        /* subtle off-white for table headers / hovers */
  --panel:        #ffffff;
  --border:       #e6e8ec;
  --border-strong:#d4d7dd;

  /* Text */
  --text:         #101015;
  --text-soft:    #3a3d44;
  --text-gray:    #6b7280;
  --text-mute:    #9aa0aa;

  /* Brand — CMYK */
  --cyan:         #06B7E4;
  --cyan-deep:    #0395bb;
  --cyan-tint:    #e3f6fc;
  --magenta:      #E0117A;
  --magenta-deep: #b30c61;
  --magenta-tint: #fde4ef;
  --yellow:       #FAD300;
  --yellow-deep:  #d8b500;
  --black:        #101015;
  --white:        #ffffff;

  /* Backwards-compat aliases used by existing inline styles */
  --pink:         var(--magenta);
  --pink-light:   var(--magenta-tint);
  --blue:         var(--cyan);
  --purple:       var(--black);

  /* Geometry */
  --radius-xs:    4px;
  --radius:       8px;
  --radius-lg:    14px;
  --radius-xl:    20px;
  --shadow-sm:    0 1px 2px rgba(16,16,21,.04), 0 1px 3px rgba(16,16,21,.06);
  --shadow:       0 4px 14px rgba(16,16,21,.06), 0 2px 4px rgba(16,16,21,.04);
  --shadow-lg:    0 14px 40px rgba(16,16,21,.10), 0 6px 14px rgba(16,16,21,.06);
  --shadow-magenta:0 8px 24px rgba(224,17,122,.18);
  --transition:   all .18s cubic-bezier(.2,.7,.3,1);
  --container-w:  1280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: var(--text); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--magenta); }
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Lato', sans-serif;
  font-weight: 700; line-height: 1.18; letter-spacing: -0.01em;
  margin: 0 0 .5em; color: var(--text);
}
h1 { font-size: 2.25rem; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.15rem; }
p  { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--magenta); color: var(--white); }

.container { max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }

/* ============ CMYK accent strip (decorative) ============ */
.cmyk-strip {
  display: flex; height: 4px; width: 100%;
}
.cmyk-strip > span { flex: 1; }
.cmyk-strip > span:nth-child(1) { background: var(--cyan); }
.cmyk-strip > span:nth-child(2) { background: var(--magenta); }
.cmyk-strip > span:nth-child(3) { background: var(--yellow); }
.cmyk-strip > span:nth-child(4) { background: var(--black); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  background: var(--black); color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: .01em;
  cursor: pointer; text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn:hover { background: #000; color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--pink, .btn--magenta {
  background: var(--magenta); color: var(--white);
}
.btn--pink:hover, .btn--magenta:hover {
  background: var(--magenta-deep); color: var(--white);
  box-shadow: var(--shadow-magenta);
}
.btn--blue, .btn--cyan {
  background: var(--cyan); color: var(--white);
}
.btn--blue:hover, .btn--cyan:hover {
  background: var(--cyan-deep); color: var(--white);
}
.btn--yellow {
  background: var(--yellow); color: var(--black);
}
.btn--yellow:hover { background: var(--yellow-deep); color: var(--black); }
.btn--outline {
  background: transparent; color: var(--text);
  border-color: var(--border-strong);
}
.btn--outline:hover {
  background: var(--text); color: var(--white);
  border-color: var(--text); box-shadow: var(--shadow);
}
.btn--ghost {
  background: transparent; color: var(--text); border-color: transparent;
}
.btn--ghost:hover { background: var(--bg-soft); color: var(--magenta); }
.btn--small { padding: 8px 14px; font-size: 13px; }
.btn--large { padding: 16px 28px; font-size: 15px; }
.btn--block { width: 100%; }

/* ============ Forms ============ */
input[type=text], input[type=email], input[type=password], input[type=tel],
input[type=number], input[type=search], select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px; font-family: inherit;
  background: var(--white); color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 4px var(--magenta-tint);
}
textarea { min-height: 110px; resize: vertical; }
label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ============ Alerts ============ */
.alert {
  padding: 13px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 14px;
  border-left: 4px solid;
}
.alert--success { background: #ecfdf3; color: #066942; border-color: #16a34a; }
.alert--error   { background: #fef1f1; color: #a01530; border-color: #dc2626; }
.alert--info    { background: var(--cyan-tint); color: var(--cyan-deep); border-color: var(--cyan); }

/* ============ Header ============ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}

/* Top utility bar — clean black with white text */
.utility-bar {
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  letter-spacing: .01em;
}
.utility-bar__inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 24px;
}
.utility-bar a {
  color: rgba(255,255,255,.85);
  padding: 0 6px;
}
.utility-bar a:hover { color: var(--yellow); }
.utility-bar__left, .utility-bar__right {
  display: flex; align-items: center; gap: 4px;
}
.utility-bar .dot { color: rgba(255,255,255,.35); }

.main-header { padding: 18px 0; }
.main-header__inner {
  display: flex; align-items: center; gap: 24px;
  padding: 0 24px;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 44px; width: auto; }

.search { flex: 1; display: flex; max-width: 620px; position: relative; }
.search input {
  border-radius: var(--radius) 0 0 var(--radius);
  border-right: 0;
  padding-right: 14px;
}
.search button {
  background: var(--magenta); color: var(--white); border: 0;
  padding: 0 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  transition: background .15s;
}
.search button:hover { background: var(--magenta-deep); }

.cart-link {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: var(--radius);
  color: var(--text);
  transition: var(--transition);
}
.cart-link:hover { background: var(--bg-soft); color: var(--magenta); }
.cart-badge {
  position: absolute; top: -2px; right: -2px;
  background: var(--magenta); color: var(--white);
  font-size: 11px; font-weight: 800; line-height: 1;
  min-width: 19px; height: 19px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 5px;
  border: 2px solid var(--white);
}

.mobile-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 10px;
}
.mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); margin: 4px 0;
  transition: transform .2s;
}

/* Category navigation */
.main-nav {
  background: var(--white);
  border-top: 1px solid var(--border);
}
.main-nav ul {
  display: flex; gap: 2px; flex-wrap: wrap;
}
.main-nav li a {
  display: block;
  padding: 14px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--text-soft);
  letter-spacing: .01em;
  position: relative;
}
.main-nav li a:hover {
  color: var(--magenta);
}
.main-nav li a::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; bottom: 8px;
  height: 2px;
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.main-nav li a:hover::after { transform: scaleX(1); }

@media (max-width: 900px) {
  .mobile-toggle { display: block; order: 4; }
  .search { order: 5; flex-basis: 100%; max-width: none; }
  .main-header__inner { flex-wrap: wrap; }
  .main-nav { display: none; }
  body.nav-open .main-nav { display: block; }
  body.nav-open .main-nav ul { flex-direction: column; }
  body.nav-open .main-nav li a {
    border-bottom: 1px solid var(--border);
  }
  body.nav-open .main-nav li a::after { display: none; }
}

/* ============ Main ============ */
.site-main { min-height: 50vh; padding-bottom: 60px; }

/* ============ Hero (homepage) ============
   White-dominant, two-column layout. The brand artwork
   on the right brings the cyan accent without overwhelming.
*/
.hero {
  background: var(--white);
  color: var(--text);
  padding: 56px 0 64px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 48px;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 18px;
}
.hero__eyebrow::before {
  content: ''; display: inline-block;
  width: 24px; height: 2px; background: var(--magenta);
}
.hero h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 20px;
}
.hero h1 .accent { color: var(--magenta); }
.hero h1 .underline {
  background-image: linear-gradient(transparent 70%, var(--yellow) 70%);
  background-size: 100% 100%;
  padding: 0 .08em;
}
.hero p {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 540px;
  margin: 0 0 28px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__art {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero__art img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
/* Decorative offset blocks behind the hero artwork */
.hero__art::before,
.hero__art::after {
  content: '';
  position: absolute;
  border-radius: var(--radius-xl);
  z-index: -1;
}
.hero__art::before {
  inset: -14px -14px auto auto;
  width: 80%; aspect-ratio: 1;
  background: var(--yellow);
}
.hero__art::after {
  inset: auto auto -14px -14px;
  width: 60%; aspect-ratio: 1;
  background: var(--magenta);
}
.hero__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 36px;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.hero__stat .num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1.6rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
.hero__stat .lbl {
  font-size: 13px; color: var(--text-gray);
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__art { order: -1; max-width: 380px; margin: 0 auto; }
}

/* ============ Section heading ============ */
.section-head {
  display: flex; align-items: baseline;
  justify-content: space-between;
  margin: 56px 0 24px;
  gap: 16px;
}
.section-head h2 {
  margin: 0;
  font-size: 1.75rem; font-weight: 800;
  letter-spacing: -0.02em;
}
.section-head h2::after {
  content: '';
  display: block; width: 40px; height: 3px;
  background: var(--magenta);
  margin-top: 10px;
}
.section-head a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--magenta);
  text-transform: uppercase; letter-spacing: .08em;
}
.section-head a:hover { color: var(--magenta-deep); }
.section-head a::after { content: ' →'; }

/* ============ Category cards on homepage ============ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) { .category-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .category-grid { grid-template-columns: 1fr; } }

.category-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
  color: var(--text);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute; left: 0; top: 0; right: 0;
  height: 3px;
  background: var(--magenta);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--text);
  box-shadow: var(--shadow);
  color: var(--text);
}
.category-card:hover::before { transform: scaleX(1); }
.category-card .icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--magenta-tint); color: var(--magenta);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  transition: var(--transition);
}
.category-card:hover .icon { background: var(--magenta); color: var(--white); }
.category-card h3 { margin: 0; font-size: 1rem; }
.category-card p  {
  color: var(--text-gray); font-size: 13px; margin: 0; line-height: 1.4;
}

/* ============ Product grid ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--text);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--text);
  color: var(--text);
}
.product-card__image {
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease;
}
.product-card:hover .product-card__image img { transform: scale(1.04); }
.product-card__body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-card__body h3 {
  font-size: 1rem; margin: 0 0 6px; font-weight: 700;
}
.product-card__desc {
  color: var(--text-gray); font-size: 13px; flex: 1; line-height: 1.45;
}
.product-card__footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px;
}
.product-card__price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--text);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.product-card__badge {
  display: inline-block; align-self: flex-start;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 800;
  background: var(--magenta-tint); color: var(--magenta);
  padding: 4px 9px; border-radius: 10px;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 8px;
}

/* ============ Breadcrumbs ============ */
.breadcrumb { font-size: 13px; color: var(--text-gray); margin: 24px 0; }
.breadcrumb a { color: var(--text-gray); }
.breadcrumb a:hover { color: var(--magenta); }
.breadcrumb .sep { margin: 0 8px; color: var(--text-mute); }

/* ============ Product detail ============ */
.product-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin: 24px 0;
}
@media (max-width: 800px) { .product-detail { grid-template-columns: 1fr; } }
.product-detail__image {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-detail__image img { width: 100%; height: 100%; object-fit: cover; }
.product-detail h1 { font-size: 2rem; }
.product-detail .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem; font-weight: 800; color: var(--text);
  margin: 16px 0; letter-spacing: -0.02em;
}
.product-detail .qty-add {
  display: flex; gap: 12px; align-items: center; margin: 24px 0;
}
.product-detail .qty-add input { width: 80px; text-align: center; }
.product-detail .description {
  padding: 16px 0; border-top: 1px solid var(--border);
  color: var(--text-soft);
}

/* ============ Cart / checkout layouts ============ */
.cart-layout, .checkout-layout {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 32px; margin: 24px 0;
}
@media (max-width: 800px) {
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
}

.cart-table {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%; overflow: hidden;
}
.cart-table table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td {
  padding: 14px 16px; text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.cart-table th {
  background: var(--bg-soft);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-gray);
}
.cart-table tr:last-child td { border-bottom: 0; }
.cart-table .item { display: flex; gap: 12px; align-items: center; }
.cart-table .item img {
  width: 56px; height: 56px;
  object-fit: cover; border-radius: var(--radius);
  border: 1px solid var(--border);
}
.cart-table input[type=number] { width: 70px; text-align: center; }

.summary {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: fit-content;
  position: sticky; top: 100px;
}
.summary h3 { margin-top: 0; font-size: 1.25rem; }
.summary .line { display: flex; justify-content: space-between; padding: 8px 0; }
.summary .line.total {
  border-top: 1.5px solid var(--border);
  margin-top: 8px; padding-top: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem; font-weight: 800;
  color: var(--text);
}

/* ============ Auth pages (login/register) ============ */
.auth-card {
  max-width: 460px; margin: 56px auto;
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.auth-card h1 { text-align: center; margin-bottom: 24px; }
.auth-card .small {
  text-align: center; font-size: 13px;
  color: var(--text-gray); margin-top: 16px;
}

/* ============ Empty state ============ */
.empty {
  text-align: center; padding: 64px 24px;
  background: var(--white);
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius-lg);
}
.empty h2 { margin-top: 0; }

/* ============ Footer ============ */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 56px 0 24px;
  margin-top: 72px;
  position: relative;
}
.site-footer::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: linear-gradient(90deg,
    var(--cyan) 0 25%,
    var(--magenta) 25% 50%,
    var(--yellow) 50% 75%,
    var(--white) 75% 100%);
}
.site-footer h3 {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 16px;
}
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: var(--yellow); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px; margin-bottom: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col ul li { margin-bottom: 8px; font-size: 14px; }
.footer-col p { font-size: 14px; color: rgba(255,255,255,.78); line-height: 1.55; }
.footer-logo { display: inline-block; margin-bottom: 18px; }
.footer-logo img { height: 48px; width: auto; }
.footer-contact li { margin-bottom: 6px; }
.hours {
  font-size: 13px; color: rgba(255,255,255,.7);
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hours strong { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 20px;
  font-size: 13px; color: rgba(255,255,255,.6);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom em { color: var(--magenta); font-style: normal; font-weight: 600; }

/* ============ About strip (homepage) ============ */
.about-strip {
  margin-top: 64px;
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.about-strip::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: linear-gradient(180deg,
    var(--cyan) 0 25%,
    var(--magenta) 25% 50%,
    var(--yellow) 50% 75%,
    var(--black) 75% 100%);
}
.about-strip__copy h2 { font-size: 1.75rem; }
.about-strip__copy p { color: var(--text-soft); }
.about-strip__tagline {
  font-style: italic;
  color: var(--magenta);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 16px !important;
}
.about-strip__visual {
  text-align: center;
}
.about-strip__visual img {
  margin: 0 auto 16px;
  width: 220px; height: auto;
}
@media (max-width: 800px) {
  .about-strip { grid-template-columns: 1fr; padding: 32px; }
  .about-strip__visual img { width: 160px; }
}

/* ============ Utilities ============ */
.text-center { text-align: center; }
.muted { color: var(--text-gray); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.accent-magenta { color: var(--magenta); }
.accent-cyan    { color: var(--cyan); }
.accent-yellow  { color: var(--yellow); }
