@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; border: none; background: none; }
button { cursor: pointer; }

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --clay:        #C96B3A;
  --clay-light:  #E08455;
  --clay-dark:   #A0522A;
  --amber:       #D4922E;
  --amber-light: #F2C46D;
  --cream:       #FAF5EE;
  --cream-dark:  #F0E8D8;
  --sage:        #7A9E7E;
  --sage-light:  #A8C5AC;
  --sage-dark:   #4E7A52;
  --bark:        #3D2B1F;
  --bark-mid:    #6B4C38;
  --stone:       #9C8272;
  --white:       #FFFFFF;

  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'Nunito', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  28px;
  --radius-xl:  48px;

  --shadow-sm:  0 2px 8px rgba(61,43,31,.08);
  --shadow-md:  0 6px 24px rgba(61,43,31,.12);
  --shadow-lg:  0 16px 48px rgba(61,43,31,.15);

  --ease-out: cubic-bezier(.22,.61,.36,1);

  --sp-1: clamp(.25rem,.5vw,.375rem);
  --sp-2: clamp(.5rem,1vw,.75rem);
  --sp-3: clamp(.75rem,1.5vw,1rem);
  --sp-4: clamp(1rem,2vw,1.5rem);
  --sp-5: clamp(1.5rem,3vw,2rem);
  --sp-6: clamp(2rem,4vw,3rem);
  --sp-7: clamp(3rem,6vw,4.5rem);
  --sp-8: clamp(4rem,8vw,6rem);
}

/* ─── BASE ───────────────────────────────────────────────── */
body {
  font-family: var(--ff-sans);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.7;
  color: var(--bark);
  background-color: var(--cream);
  overflow-x: hidden;
}

/* ─── CONTAINER ──────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-serif);
  line-height: 1.2;
  color: var(--bark);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 600; }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); font-weight: 600; }
h5 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

p { max-width: 68ch; color: var(--bark-mid); }
p.wide { max-width: 80ch; }
p.center { margin-inline: auto; }

strong { font-weight: 700; color: var(--bark); }
em { font-style: italic; }

a:not([class]) {
  color: var(--clay);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
a:not([class]):hover { color: var(--clay-dark); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-sans);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .75em 1.8em;
  border-radius: var(--radius-xl);
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), background-color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--clay);
  color: var(--white);
}
.btn-primary:hover { background: var(--clay-dark); }

.btn-secondary {
  background: transparent;
  color: var(--clay);
  border: 2px solid var(--clay);
}
.btn-secondary:hover { background: var(--clay); color: var(--white); }

.btn-amber {
  background: var(--amber);
  color: var(--white);
}
.btn-amber:hover { background: #b87d22; }

.btn-sage {
  background: var(--sage);
  color: var(--white);
}
.btn-sage:hover { background: var(--sage-dark); }

.btn-ghost {
  background: rgba(255,255,255,.18);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.32); }

/* ─── EYEBROW LABEL ──────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clay);
  background: rgba(201,107,58,.1);
  padding: .35em 1em;
  border-radius: var(--radius-xl);
  margin-bottom: var(--sp-3);
}
.eyebrow--sage { color: var(--sage-dark); background: rgba(122,158,126,.15); }
.eyebrow--amber { color: #7a5200; background: rgba(212,146,46,.15); }

/* ─── SECTION SPACING ────────────────────────────────────── */
.section { padding-block: var(--sp-8); }
.section--sm { padding-block: var(--sp-6); }
.section--lg { padding-block: clamp(5rem, 10vw, 8rem); }

/* ─── SECTION HEADING CLUSTER ────────────────────────────── */
.heading-cluster { margin-bottom: var(--sp-6); }
.heading-cluster--center { text-align: center; }
.heading-cluster--center p { margin-inline: auto; }
.heading-cluster h2 { margin-bottom: var(--sp-3); }
.heading-cluster p { font-size: clamp(1rem, 1.3vw, 1.15rem); }

/* ─── HEADER / NAV ───────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,245,238,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,107,58,.12);
  box-shadow: 0 2px 16px rgba(61,43,31,.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--sp-3);
  gap: var(--sp-4);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  text-decoration: none;
  flex-shrink: 0;
}
.brand__mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.brand__name {
  font-family: var(--ff-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--clay);
  letter-spacing: -.01em;
  line-height: 1;
}
.brand__tagline {
  display: block;
  font-family: var(--ff-sans);
  font-size: .65rem;
  font-weight: 500;
  color: var(--stone);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.site-nav__link {
  font-size: .9rem;
  font-weight: 600;
  color: var(--bark-mid);
  padding: .45em .85em;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  color: var(--clay);
  background: rgba(201,107,58,.08);
}

.site-nav__cta {
  margin-left: var(--sp-2);
  font-size: .85rem;
  padding: .55em 1.4em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  border-radius: var(--radius-sm);
  background: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bark);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(135deg, #f7ede0 0%, #faf5ee 60%, #f0e8d8 100%);
  padding-block: clamp(3.5rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(212,146,46,.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(122,158,126,.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  position: relative;
}

.hero-content { order: 1; }
.hero-image-slot { order: 2; }

.hero-content h1 {
  margin-bottom: var(--sp-4);
  color: var(--bark);
}
.hero-content h1 em {
  color: var(--clay);
  font-style: italic;
}
.hero-content .hero-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--bark-mid);
  margin-bottom: var(--sp-5);
  max-width: 52ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

.hero-image-slot img {
  width: 100%;
  height: clamp(320px, 45vw, 520px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-image-placeholder {
  width: 100%;
  height: clamp(320px, 45vw, 520px);
  background: linear-gradient(135deg, var(--cream-dark), var(--amber-light));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: var(--bark-mid);
  font-style: italic;
}

/* ─── CARDS ──────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--sp-4);
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,107,58,.08);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 52px;
  height: 52px;
  background: rgba(201,107,58,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  font-size: 1.5rem;
}
.card__icon--sage { background: rgba(122,158,126,.15); }
.card__icon--amber { background: rgba(212,146,46,.15); }

.card h3 { font-size: 1.25rem; margin-bottom: var(--sp-2); }
.card p { font-size: .95rem; max-width: none; }

/* Product card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,107,58,.08);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.product-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--cream-dark);
}
.product-card__body { padding: var(--sp-4); }
.product-card__tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: var(--sp-1);
}
.product-card h4 { margin-bottom: var(--sp-2); }
.product-card p { font-size: .9rem; margin-bottom: var(--sp-3); }
.product-card__price {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clay);
  margin-bottom: var(--sp-3);
}

/* ─── STATS ROW ──────────────────────────────────────────── */
.stats-band {
  background: var(--clay);
  padding-block: var(--sp-7);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--sp-5);
  text-align: center;
}
.stat-item__number {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-item__label {
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.78);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: var(--sp-1);
  display: block;
}

/* ─── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--bark) 0%, #5a3520 100%);
  padding-block: var(--sp-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(212,146,46,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band__inner { position: relative; }
.cta-band h2 { color: var(--cream); margin-bottom: var(--sp-3); }
.cta-band p { color: rgba(250,245,238,.75); margin-inline: auto; margin-bottom: var(--sp-5); }
.cta-band .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(201,107,58,.12);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-4) var(--sp-5);
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 1rem;
  color: var(--bark);
  cursor: pointer;
  list-style: none;
  gap: var(--sp-3);
  transition: background .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(201,107,58,.04); }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--clay);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body {
  padding: 0 var(--sp-5) var(--sp-4);
  color: var(--bark-mid);
  font-size: .95rem;
}
.faq-item__body p { max-width: 72ch; }

/* ─── CONTENT SECTION ────────────────────────────────────── */
.content-section { background: var(--white); }
.content-section--cream { background: var(--cream); }
.content-section--sage { background: rgba(122,158,126,.08); }

.content-body { max-width: 72ch; }
.content-body p + p { margin-top: var(--sp-4); }
.lead-para {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-weight: 500;
  color: var(--bark);
  line-height: 1.6;
  margin-bottom: var(--sp-4);
}

/* ─── TESTIMONIAL ────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: var(--sp-4);
}
.testimonial-card {
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  border-left: 4px solid var(--clay);
  position: relative;
}
.testimonial-card__quote {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--bark);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
  max-width: none;
}
.testimonial-card__author {
  font-size: .85rem;
  font-weight: 700;
  color: var(--clay);
  letter-spacing: .04em;
}
.testimonial-card__location {
  font-size: .8rem;
  color: var(--stone);
}

/* ─── MAKER SPOTLIGHT ────────────────────────────────────── */
.maker-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-4);
  align-items: start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  box-shadow: var(--shadow-sm);
}
.maker-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream-dark);
  border: 3px solid var(--amber-light);
}
.maker-card__name { font-size: 1.1rem; font-weight: 700; color: var(--bark); }
.maker-card__craft { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--clay); font-weight: 700; margin-bottom: var(--sp-2); }
.maker-card__bio { font-size: .9rem; color: var(--bark-mid); max-width: none; }

/* ─── BANNER / NOTICE ────────────────────────────────────── */
.notice-banner {
  background: var(--amber-light);
  color: var(--bark);
  text-align: center;
  padding: var(--sp-2) var(--sp-4);
  font-size: .875rem;
  font-weight: 600;
}
.notice-banner a { color: var(--clay-dark); text-decoration: underline; }

/* ─── FORM ───────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.form-label { font-size: .875rem; font-weight: 700; color: var(--bark); letter-spacing: .03em; }
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: .75em 1em;
  border: 1.5px solid rgba(61,43,31,.2);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--bark);
  font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(201,107,58,.15);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-hint { font-size: .8rem; color: var(--stone); }

/* Newsletter inline */
.newsletter-form {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  max-width: 520px;
}
.newsletter-form .form-input { flex: 1 1 220px; }

/* ─── DIVIDER ────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid rgba(201,107,58,.15);
  margin-block: var(--sp-6);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--bark);
  color: rgba(250,245,238,.75);
  padding-top: var(--sp-8);
}
.site-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid rgba(250,245,238,.1);
}
.footer-brand__name {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: var(--sp-2);
}
.footer-brand__tagline {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--amber-light);
  margin-bottom: var(--sp-4);
}
.footer-brand__desc {
  font-size: .9rem;
  line-height: 1.7;
  max-width: 34ch;
  color: rgba(250,245,238,.65);
}
.footer-brand__newsletter { margin-top: var(--sp-5); }
.footer-brand__newsletter p {
  font-size: .875rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: var(--sp-2);
  max-width: none;
}
.footer-newsletter-form {
  display: flex;
  gap: var(--sp-1);
  flex-wrap: wrap;
}
.footer-newsletter-form .form-input {
  flex: 1 1 160px;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
  color: var(--cream);
  font-size: .875rem;
}
.footer-newsletter-form .form-input::placeholder { color: rgba(250,245,238,.45); }
.footer-newsletter-form .form-input:focus { border-color: var(--amber-light); box-shadow: 0 0 0 3px rgba(212,146,46,.2); }
.footer-newsletter-form .btn { font-size: .8rem; padding: .6em 1.2em; }

.footer-col__heading {
  font-family: var(--ff-sans);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: var(--sp-4);
}
.footer-col__links { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-col__links a {
  font-size: .9rem;
  color: rgba(250,245,238,.65);
  transition: color .2s;
}
.footer-col__links a:hover { color: var(--cream); }

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
  padding-block: var(--sp-4);
}
.footer-legal {
  font-size: .8rem;
  color: rgba(250,245,238,.4);
}
.footer-social {
  display: flex;
  gap: var(--sp-3);
}
.footer-social a {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(250,245,238,.5);
  text-transform: uppercase;
  transition: color .2s;
}
.footer-social a:hover { color: var(--amber-light); }

/* ─── UTILITY ────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-clay { color: var(--clay); }
.text-sage { color: var(--sage-dark); }
.mt-1 { margin-top: var(--sp-1); }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mb-2 { margin-bottom: var(--sp-2); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-5 { margin-bottom: var(--sp-5); }
.flex-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-slot { order: -1; }
  .hero-image-slot img, .hero-image-placeholder { height: clamp(240px, 55vw, 380px); }
}

@media (max-width: 720px) {
  .site-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid rgba(201,107,58,.12); padding: var(--sp-4); gap: var(--sp-1); box-shadow: var(--shadow-md); }
  .site-nav.is-open { display: flex; }
  .site-header__inner { position: relative; }
  .nav-toggle { display: flex; }
  .site-footer__top { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .card-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-band .btn-row { flex-direction: column; align-items: center; }
  .stats-row { grid-template-columns: 1fr; }
  .maker-card { grid-template-columns: 1fr; }
  .maker-card__avatar { width: 64px; height: 64px; }
}img,svg,video{max-width:100%;height:auto}*{box-sizing:border-box}