/* ============================================================
   Home & Pet Deco — sistema de diseño
   Mobile-first. Paleta cálida, tipografía serif + sans.
   ============================================================ */

:root {
  /* Color */
  --cream:      #FBF8F3;
  --cream-2:    #F3ECE2;
  --sand:       #E7DCCC;
  --ink:        #211E1A;
  --ink-soft:   #5C554C;
  --ink-mute:   #8B8378;
  --clay:       #B4643E;
  --naranja:    #E47416;   /* naranja del logo */
  --clay-dark:  #97502E;
  --sage:       #7C8B72;
  --white:      #FFFFFF;
  --line:       rgba(33, 30, 26, .10);

  /* Tipografía */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Espaciado y formas */
  --pad: 20px;
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 24px;
  --radius-pill: 999px;

  --shadow-s: 0 1px 2px rgba(33,30,26,.05), 0 4px 14px rgba(33,30,26,.05);
  --shadow-m: 0 2px 6px rgba(33,30,26,.06), 0 16px 40px rgba(33,30,26,.10);
  --shadow-l: 0 -8px 40px rgba(33,30,26,.14);

  --header-h: 92px;
  --max: 1120px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; letter-spacing: -.01em; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Tipografía utilitaria ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--clay);
}
.lead { color: var(--ink-soft); font-size: 15px; }
.h-xl { font-size: clamp(34px, 9vw, 60px); }
.h-l  { font-size: clamp(26px, 6.5vw, 40px); }
.h-m  { font-size: clamp(20px, 5vw, 28px); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px;
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600; letter-spacing: .01em;
  transition: transform .18s var(--ease), background-color .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
  text-align: center;
}
.btn:active { transform: scale(.97); }
.btn--primary { background: var(--ink); color: var(--cream); }
.btn--primary:hover { background: #000; }
.btn--clay { background: var(--clay); color: #fff; box-shadow: var(--shadow-s); }
.btn--clay:hover { background: var(--clay-dark); }
.btn--ghost { border: 1px solid var(--line); background: transparent; }
.btn--ghost:hover { background: var(--cream-2); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 60;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(251,248,243,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.header.is-stuck { border-bottom-color: var(--line); }
.header__inner {
  width: 100%; max-width: var(--max); margin-inline: auto;
  padding-inline: var(--pad);
  display: flex; align-items: center; gap: 12px;
}
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand__logo { height: 64px; width: auto; flex: none; }
.brand__name {
  font-family: var(--font-display); font-weight: 600;
  font-size: 20px; line-height: 1.04; letter-spacing: -.015em; white-space: nowrap;
}
/* el ampersand de Fraunces se empasta a este tamaño: se usa el del cuerpo */
.brand__name em {
  font-style: normal; color: var(--naranja);
  font-family: var(--font-body); font-size: .84em; font-weight: 600;
}
.footer .brand__logo { height: 82px; }
.footer .brand__name { font-size: 24px; }

.nav-desktop { display: none; }

.icon-btn {
  position: relative;
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border-radius: var(--radius-pill);
  transition: background-color .18s var(--ease);
}
.icon-btn:hover { background: var(--cream-2); }
.icon-btn svg { width: 21px; height: 21px; stroke: var(--ink); stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.cart-count {
  position: absolute; top: 4px; right: 3px;
  min-width: 17px; height: 17px; padding: 0 4px;
  display: grid; place-items: center;
  background: var(--clay); color: #fff;
  font-size: 10px; font-weight: 700; line-height: 1;
  border-radius: var(--radius-pill);
  transform: scale(0); transition: transform .22s var(--ease);
}
.cart-count.is-visible { transform: scale(1); }

/* Menú móvil */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--cream);
  padding: var(--pad);
  display: flex; flex-direction: column;
  transform: translateY(-100%);
  transition: transform .38s var(--ease);
  visibility: hidden;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu__top { display: flex; align-items: center; min-height: var(--header-h); margin-bottom: 18px; }
.mobile-menu__top .brand { margin-right: auto; }
.mobile-menu a.mobile-link {
  display: block; padding: 14px 0;
  font-family: var(--font-display); font-size: 30px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a.mobile-link small {
  display: block; font-family: var(--font-body);
  font-size: 12px; color: var(--ink-mute); letter-spacing: .02em; margin-top: 2px;
}
.mobile-menu__foot { margin-top: auto; padding-top: 24px; display: grid; gap: 10px; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding: 22px 0 12px; overflow: hidden; }
.hero__blob {
  position: absolute; z-index: 0; border-radius: 50%;
  filter: blur(46px); opacity: .5; pointer-events: none;
}
.hero__blob--a { width: 300px; height: 300px; background: #E8C9B4; top: -90px; right: -110px; }
.hero__blob--b { width: 260px; height: 260px; background: #CFD8C6; bottom: -120px; left: -110px; }
.hero__inner { position: relative; z-index: 1; }
.hero h1 { margin: 0; }
.hero h1 em { font-style: italic; color: var(--clay); }
.hero .lead { margin-top: 14px; max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero__art { margin-top: 34px; position: relative; }
.hero__art img {
  width: 100%; border-radius: var(--radius-l);
  background: var(--cream-2); box-shadow: var(--shadow-m);
}
.hero__badge {
  position: absolute; left: 12px; bottom: 12px;
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px 9px 10px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-s);
  font-size: 12px; font-weight: 600;
}
.hero__badge span.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); flex: none; }

/* Tira de valores */
.values {
  margin-top: 30px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.value {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-m); padding: 14px;
}
.value svg { width: 20px; height: 20px; stroke: var(--clay); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 8px; }
.value b { display: block; font-size: 13px; }
.value small { color: var(--ink-mute); font-size: 12px; line-height: 1.45; display: block; margin-top: 2px; }

/* ============================================================
   Secciones
   ============================================================ */
.section { padding: 56px 0; }
.section--tint { background: var(--cream-2); }
.section__head { margin-bottom: 22px; }
.section__head h2 { margin-top: 8px; }
.section__head p { margin-top: 10px; color: var(--ink-soft); max-width: 52ch; }
.section__head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--clay); white-space: nowrap;
}
.link-arrow svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(3px); }

/* Categorías */
.cats { display: grid; gap: 12px; }
.cat {
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  min-height: 190px; padding: 18px;
  border-radius: var(--radius-l);
  background: var(--sand);
  box-shadow: var(--shadow-s);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cat:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); }
.cat--home { background: linear-gradient(150deg, #EFE1D2, #E3D2BE); }
.cat--pet  { background: linear-gradient(150deg, #DFE6D9, #CBD7C3); }
.cat__art { position: absolute; right: -14px; top: -10px; width: 168px; opacity: .95; pointer-events: none; }
.cat__body { position: relative; z-index: 1; }
.cat h3 { font-size: 24px; }
.cat p { font-size: 13px; color: var(--ink-soft); margin-top: 4px; max-width: 22ch; }
.cat .link-arrow { margin-top: 10px; color: var(--ink); }

/* ============================================================
   Grilla de productos
   ============================================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 12px;
}
.card { display: flex; flex-direction: column; height: 100%; }
.card__top { position: relative; }
.card__media {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--cream-2);
  aspect-ratio: 1 / 1;
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.card:hover .card__media img { transform: scale(1.04); }
.card__tag {
  position: absolute; top: 9px; left: 9px;
  padding: 4px 9px;
  background: rgba(255,255,255,.94);
  border-radius: var(--radius-pill);
  font-size: 10px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}
.card__tag--clay { background: var(--clay); color: #fff; }
.card__add {
  position: absolute; right: 8px; bottom: 8px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--white); color: var(--ink);
  border-radius: 50%;
  box-shadow: var(--shadow-s);
  transition: background-color .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}
.card__add svg { width: 17px; height: 17px; stroke: currentColor; stroke-width: 1.9; fill: none; stroke-linecap: round; }
.card__add:hover { background: var(--ink); color: var(--cream); }
.card__add:active { transform: scale(.9); }
.card__add.is-done { background: var(--sage); color: #fff; }
.card__body { padding: 10px 2px 0; display: flex; flex-direction: column; flex: 1; }
.card__name { font-family: var(--font-body); font-size: 13.5px; font-weight: 600; line-height: 1.35; }
.card__meta { font-size: 11.5px; color: var(--ink-mute); margin-top: 2px; }
.card__price { font-size: 14px; font-weight: 700; margin-top: auto; padding-top: 6px; }

/* Filtros */
.toolbar {
  position: sticky; top: var(--header-h); z-index: 40;
  background: var(--cream);
  padding: 12px 0;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.chips {
  display: flex; gap: 8px; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
  padding-bottom: 2px;
}
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: none;
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 500; white-space: nowrap;
  background: var(--white);
  transition: all .18s var(--ease);
}
.chip[aria-pressed="true"] { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.toolbar__row { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.count { font-size: 12px; color: var(--ink-mute); margin-right: auto; }
.select {
  appearance: none;
  padding: 8px 30px 8px 12px;
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235C554C' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 11px center;
  font-size: 13px;
}
.empty { text-align: center; padding: 50px 0; color: var(--ink-mute); }

/* ============================================================
   Producto (detalle)
   ============================================================ */
.pd { padding: 16px 0 110px; }
.crumbs { font-size: 12px; color: var(--ink-mute); margin-bottom: 14px; }
.crumbs a:hover { color: var(--ink); }
.pd__media {
  border-radius: var(--radius-l); overflow: hidden;
  background: var(--cream-2); aspect-ratio: 1 / 1;
}
.pd__media img { width: 100%; height: 100%; object-fit: cover; }
.pd__head { margin-top: 20px; }
.pd__head h1 { font-size: clamp(26px, 7vw, 38px); margin-top: 8px; }
.pd__price { font-size: 22px; font-weight: 700; margin-top: 12px; }
.pd__desc { margin-top: 14px; color: var(--ink-soft); }
.pd__block { margin-top: 26px; }
.pd__block h3 { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 10px; }
.swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid transparent; box-shadow: inset 0 0 0 1px var(--line);
  transition: border-color .18s var(--ease);
}
.swatch[aria-pressed="true"] { border-color: var(--ink); }
.specs { border-top: 1px solid var(--line); }
.specs div {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 0; border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.specs dt { color: var(--ink-mute); }
.specs dd { margin: 0; font-weight: 500; text-align: right; }

.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-pill); background: var(--white); }
.qty button { width: 40px; height: 44px; display: grid; place-items: center; font-size: 18px; color: var(--ink-soft); }
.qty button:hover { color: var(--ink); }
.qty span { min-width: 26px; text-align: center; font-weight: 600; font-size: 14px; }

.buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: flex; gap: 10px; align-items: center;
  padding: 12px var(--pad) calc(12px + env(safe-area-inset-bottom));
  background: rgba(251,248,243,.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.buybar .btn { flex: 1; }

/* ============================================================
   Carrito (drawer)
   ============================================================ */
.overlay {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(33,30,26,.42);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.overlay.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; z-index: 85; right: 0; bottom: 0; left: 0;
  max-height: 88vh;
  display: flex; flex-direction: column;
  background: var(--cream);
  border-radius: var(--radius-l) var(--radius-l) 0 0;
  box-shadow: var(--shadow-l);
  transform: translateY(101%);
  transition: transform .38s var(--ease);
  visibility: hidden;
}
.drawer.is-open { transform: translateY(0); visibility: visible; }
.drawer__head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px var(--pad) 12px;
  border-bottom: 1px solid var(--line);
}
.drawer__head h2 { font-size: 19px; margin-right: auto; }
.drawer__body { overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 6px var(--pad); flex: 1; }
.drawer__foot {
  padding: 14px var(--pad) calc(16px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.drawer__total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 4px; }
.drawer__total b { font-size: 20px; font-family: var(--font-display); }
.drawer__note { font-size: 11.5px; color: var(--ink-mute); margin: 6px 0 12px; }

.line { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.line__img { width: 66px; height: 66px; flex: none; border-radius: var(--radius-s); overflow: hidden; background: var(--cream-2); }
.line__img img { width: 100%; height: 100%; object-fit: cover; }
.line__body { flex: 1; min-width: 0; }
.line__name { font-size: 13.5px; font-weight: 600; line-height: 1.3; }
.line__meta { font-size: 11.5px; color: var(--ink-mute); margin-top: 2px; }
.line__row { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; gap: 10px; }
.line .qty button { width: 32px; height: 32px; font-size: 15px; }
.line .qty span { min-width: 20px; font-size: 13px; }
.line__price { font-size: 13.5px; font-weight: 700; }
.line__del { font-size: 11.5px; color: var(--ink-mute); text-decoration: underline; }
.line__del:hover { color: var(--clay); }
.cart-empty { text-align: center; padding: 46px 10px; }
.cart-empty p { color: var(--ink-mute); margin: 8px 0 18px; font-size: 13.5px; }

/* ============================================================
   Proceso / Nosotros / Contacto
   ============================================================ */
.steps { display: grid; gap: 12px; counter-reset: s; }
.step {
  position: relative;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-m); padding: 18px 18px 18px 58px;
}
.step::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  position: absolute; left: 18px; top: 17px;
  font-family: var(--font-display); font-size: 17px; color: var(--clay);
}
.step b { display: block; font-size: 14.5px; }
.step p { font-size: 13px; color: var(--ink-soft); margin-top: 3px; }

.quote {
  background: var(--white); border-radius: var(--radius-l);
  padding: 26px 22px; box-shadow: var(--shadow-s);
}
.quote p { font-family: var(--font-display); font-size: 19px; line-height: 1.4; }
.quote footer { margin-top: 14px; font-size: 12.5px; color: var(--ink-mute); }

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq summary {
  list-style: none; cursor: pointer;
  padding: 14px 30px 14px 0; position: relative;
  font-weight: 600; font-size: 14.5px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%;
  width: 9px; height: 9px; margin-top: -6px;
  border-right: 1.8px solid var(--ink-mute); border-bottom: 1.8px solid var(--ink-mute);
  transform: rotate(45deg); transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq p { padding: 0 0 16px; color: var(--ink-soft); font-size: 13.5px; }

.contact-card {
  background: var(--ink); color: var(--cream);
  border-radius: var(--radius-l); padding: 30px 22px;
}
.contact-card h2 { color: var(--cream); }
.contact-card p { color: rgba(251,248,243,.72); margin-top: 10px; font-size: 14px; }
.contact-card .btn--clay { margin-top: 20px; }
.contact-list { margin-top: 22px; display: grid; gap: 12px; }
.contact-list a { display: flex; align-items: center; gap: 10px; font-size: 13.5px; }
.contact-list svg { width: 17px; height: 17px; stroke: var(--clay); stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--cream-2); padding: 44px 0 86px; margin-top: 10px; }
.footer .brand { margin-bottom: 12px; }
.footer__about { font-size: 13px; color: var(--ink-soft); max-width: 34ch; }
.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 30px; }
.footer h4 { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 10px; }
.footer li { margin-bottom: 8px; font-size: 13px; }
.footer li a:hover { color: var(--clay); }
.footer__bottom {
  margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between;
  font-size: 11.5px; color: var(--ink-mute);
}

/* WhatsApp flotante */
.fab {
  position: fixed; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 45;
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  transition: transform .2s var(--ease);
}
.fab:hover { transform: scale(1.06); }
.fab svg { width: 25px; height: 25px; fill: currentColor; }

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: 104px; z-index: 95;
  transform: translate(-50%, 20px);
  padding: 11px 18px; border-radius: var(--radius-pill);
  background: var(--ink); color: var(--cream);
  font-size: 13px; font-weight: 500;
  box-shadow: var(--shadow-m);
  opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  max-width: calc(100vw - 40px); text-align: center;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* Animación de entrada */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }

body.is-locked { overflow: hidden; }

/* ============================================================
   Tablet / Desktop
   ============================================================ */
@media (min-width: 700px) {
  :root { --pad: 32px; --header-h: 108px; }
  body { font-size: 16px; }
  .brand__logo { height: 78px; }
  .brand__name { font-size: 24px; }
  .footer .brand__logo { height: 96px; }
  .footer .brand__name { font-size: 28px; }
  .values { grid-template-columns: repeat(4, 1fr); }
  .cats { grid-template-columns: 1fr 1fr; }
  .cat { min-height: 260px; padding: 24px; }
  .cat__art { width: 210px; }
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px 20px; }
  .card__name { font-size: 15px; }
  .card__price { font-size: 15px; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .footer { padding-bottom: 40px; }
  .section { padding: 76px 0; }
  .hero { padding: 30px 0 20px; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
  .drawer {
    left: auto; top: 0; width: 420px; max-height: none;
    border-radius: 0;
    transform: translateX(101%);
  }
  .drawer.is-open { transform: translateX(0); }
  .quote { padding: 40px; }
  .quote p { font-size: 24px; }
  .contact-card { padding: 48px; }
}

@media (min-width: 900px) {
  .nav-desktop { display: flex; align-items: center; gap: 30px; margin-right: 26px; }
  .nav-desktop a { font-size: 14px; font-weight: 500; position: relative; }
  .nav-desktop a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 1.5px;
    background: var(--clay); transform: scaleX(0); transform-origin: left;
    transition: transform .25s var(--ease);
  }
  .nav-desktop a:hover::after, .nav-desktop a.is-active::after { transform: scaleX(1); }
  .burger { display: none; }
  .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
  .hero__art { margin-top: 0; }
  .pd__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: start; }
  .pd { padding-bottom: 60px; }
  .pd__head { margin-top: 0; }
  .buybar {
    position: static; background: none; border: 0; padding: 22px 0 0;
    backdrop-filter: none; -webkit-backdrop-filter: none;
  }
  .fab { bottom: 24px; right: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
