/* ---------------------------------------------------------
   Confecciones Soledad — hoja de estilos
   --------------------------------------------------------- */

:root {
  --navy: #1B2A4A;
  --navy-soft: #2C3E63;
  --cream: #F7F3EA;
  --cream-2: #EFE9DA;
  --wine: #8B2635;
  --gold: #C9A227;
  --ink: #2A2A28;
  --slate: #6B7280;
  --paper-shadow: 0 1px 2px rgba(27,42,74,0.06), 0 4px 14px rgba(27,42,74,0.07);
  --radius: 4px;

  --font-display: "Fraunces", serif;
  --font-body: "Work Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --wrap: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection { background: var(--rose); color: var(--cream); }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .wrap { padding: 0 3rem; }
}
@media (min-width: 1200px) {
  .wrap { padding: 0 5rem; }
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 1rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0;
  font-weight: 600;
}

h1 { font-size: 3rem; line-height: 1.08; }
h1 em { font-style: italic; color: var(--wine); }

h2 { font-size: 2.2rem; }
h2 em { font-style: italic; color: var(--wine); }

h3 { font-size: 1.15rem; }

p { line-height: 1.6; margin: 0; }
.lead { color: var(--slate); max-width: 32rem; margin-top: 1.25rem; }

.btn {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.btn-primary {
  background: var(--navy);
  color: var(--cream);
}
.btn-primary:hover { background: var(--navy-light); }
.btn-small { padding: 0.85rem 1.3rem; }

.btn-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--rose);
  text-underline-offset: 4px;
}

/* ---------------- Header ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(27, 42, 70, 0.1);
}

.header-inner {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.brand-logo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(27,42,70,0.1);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.1;
}

.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
  margin-top: 0.3rem;
}

.nav {
  display: none;
  gap: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav a {
  color: rgba(27,42,70,0.8);
  text-decoration: none;
}
.nav a:hover { color: var(--rose-deep); }

@media (min-width: 1024px) {
  .nav { display: flex; }
}

/* ---------------- Hero ---------------- */

.hero {
  padding: 3.5rem 1.5rem 5rem;
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 767px) {
  .hero {
    padding: 2.5rem 1.25rem 3.5rem;
    gap: 2rem;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .hero-actions .btn-link {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .hero { grid-template-columns: 1fr 1fr; padding: 3.5rem 5rem 5rem; }
}

.hero-actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
}

.hero-art {
  aspect-ratio: 4 / 5;
  max-width: 26rem;
  margin: 0 auto;
}
@media (min-width: 1024px) { .hero-art { max-width: none; } }
.hero-art svg { width: 100%; height: 100%; }

/* ---------------- Stats ---------------- */

.stats-bar {
  border-top: 1px solid rgba(27,42,70,0.1);
  border-bottom: 1px solid rgba(27,42,70,0.1);
  background: rgba(27,42,70,0.03);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2.5rem 1.5rem;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); padding: 2.5rem 3rem; }
}
.stat-value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.9rem;
  color: var(--navy);
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 0.5rem;
}

/* ---------------- Sections ---------------- */

.section { padding: 5.5rem 1.5rem; }
@media (min-width: 768px) { .section { padding: 6rem 3rem; } }
@media (min-width: 1200px) { .section { padding: 6rem 5rem; } }

.section-alt {
  background: rgba(27,42,70,0.03);
  border-top: 1px solid rgba(27,42,70,0.1);
  border-bottom: 1px solid rgba(27,42,70,0.1);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.section-note { color: var(--stone); font-size: 0.9rem; max-width: 22rem; }

/* ---------------- Santa Cruz price board ---------------- */

.catalog-shell {
  border: 1px solid var(--cream-2);
  background: #fff;
  padding: 1.4rem;
  border-radius: var(--radius);
  box-shadow: var(--paper-shadow);
  position: relative;
  overflow: hidden;
}

.catalog-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14px;
  right: 14px;
  height: 0;
  border-top: 2px dashed var(--gold);
}

.catalog-tabs {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding-bottom: 0.25rem;
}

.catalog-tab {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  background: none;
  border: none;
  padding: 0.6rem 1.1rem 0.75rem;
  color: var(--slate);
  cursor: pointer;
  position: relative;
  border-radius: var(--radius) var(--radius) 0 0;
}

.catalog-tab.active {
  color: var(--navy);
}

.catalog-tab.active::after {
  content: "";
  position: absolute;
  left: 0.4rem;
  right: 0.4rem;
  bottom: 0;
  height: 3px;
  background: var(--wine);
  border-radius: 2px 2px 0 0;
}

.catalog-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.catalog-chip {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.catalog-chip:hover {
  background: var(--navy);
  color: var(--cream);
}

.catalog-chip.active {
  background: var(--navy);
  color: var(--cream);
}

.catalog-panel[hidden] {
  display: none;
}

.catalog-group {
  margin-bottom: 1.4rem;
}

.catalog-group:last-child {
  margin-bottom: 0;
}

.catalog-group-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--wine);
  margin: 0 0 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px dotted var(--gold);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.catalog-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 720px) {
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1000px) {
  .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.catalog-grid-single {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .catalog-grid-single { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.catalog-card {
  background: #fff;
  border: 1px solid var(--cream-2);
  border-radius: var(--radius);
  box-shadow: var(--paper-shadow);
  position: relative;
  padding: 1.1rem 1.15rem 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.catalog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,42,74,0.12);
}

.catalog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14px;
  right: 14px;
  height: 0;
  border-top: 2px dashed var(--gold);
}

.catalog-card-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0.35rem 0 0.85rem;
}

.catalog-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.36rem 0;
  border-bottom: 1px dotted #D8D2C2;
}

.catalog-price-row:last-child {
  border-bottom: none;
}

.catalog-price-label {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--slate);
  white-space: nowrap;
}

.catalog-price-value {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  white-space: nowrap;
}

.stock-note {
  font-size: 0.8rem;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.producto-stock-detail {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--stone);
}

.badge-disponible { background: rgba(27,42,70,0.1); color: var(--navy); }
.badge-bajo { background: rgba(192,138,147,0.16); color: var(--rose-deep); }
.stock-empty {
  color: var(--stone);
  font-style: italic;
}

/* ---------------- Colegios ---------------- */

.colegios-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .colegios-grid { grid-template-columns: 1fr 1fr; } }

.colegio-card {
  border: 1px solid rgba(27,42,70,0.1);
  background: rgba(255,255,255,0.4);
}
.colegio-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2rem 2rem 0;
}
.colegio-card-head .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.9rem;
  color: var(--rose-soft);
}
.colegio-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
}
.colegio-colores {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--stone);
  margin-top: 0.25rem;
}

.prendas-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(27,42,70,0.1);
}
.prendas-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(27,42,70,0.1);
}

@media (max-width: 640px) {
  .prendas-list li {
    flex-wrap: wrap;
    padding: 1rem 1.25rem;
  }
}
.prendas-list .nombre { font-size: 0.9rem; }
.prendas-list .nota { font-size: 0.75rem; font-style: italic; color: var(--stone); margin-top: 0.15rem; }
.prendas-list .precio { font-size: 0.9rem; font-weight: 600; color: var(--navy); white-space: nowrap; }

.colegio-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
}
.colegio-card-foot a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--rose-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------------- Productos con stock ---------------- */

.filtros {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 1.5rem;
  border: 1px solid rgba(27,42,70,0.08);
  border-radius: 1rem;
  background: rgba(255,255,255,0.92);
}
.filtros-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.filtro-group {
  display: flex;
  flex-direction: column;
  min-width: 13rem;
  flex: 1 1 160px;
}
.filtro-group label {
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--stone);
}
.select-filtro {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(27,42,70,0.18);
  background: #fff;
  color: var(--navy);
  font-size: 0.95rem;
  appearance: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.select-filtro:focus {
  outline: none;
  border-color: rgba(27,42,70,0.45);
  box-shadow: 0 0 0 4px rgba(27,42,70,0.04);
}
.filtro-btn {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(27,42,70,0.2);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition: all .2s ease;
  border-radius: 999px;
  flex-shrink: 0;
}
.filtro-btn:hover { border-color: rgba(27,42,70,0.5); }
.filtro-reset {
  background: rgba(27,42,70,0.05);
}

.stock-note {
  font-size: 0.85rem;
  color: var(--stone);
  margin-left: auto;
  min-width: 12rem;
}

.stock-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 640px) { .stock-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .stock-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .stock-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 640px) { .stock-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .stock-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .stock-grid { grid-template-columns: repeat(4, 1fr); } }

.producto-card {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(27,42,70,0.1);
  display: flex;
  flex-direction: column;
}
.producto-img {
  aspect-ratio: 4 / 5;
  background: rgba(27,42,70,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.producto-img img { width: 100%; height: 100%; object-fit: cover; }
.producto-img span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(27,42,70,0.3);
}

.producto-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.producto-colegio {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
}
.producto-nombre {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  margin-top: 0.25rem;
  line-height: 1.3;
}
.producto-talla { font-size: 0.78rem; color: var(--stone); margin-top: 0.25rem; }

.producto-foot {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.producto-precio { font-size: 0.9rem; font-weight: 600; color: var(--navy); }

.badge {
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.3rem 0.55rem;
  white-space: nowrap;
}
.badge-disponible { background: rgba(27,42,70,0.1); color: var(--navy); }
.badge-bajo { background: rgba(192,138,147,0.18); color: var(--rose-deep); }
.badge-agotado { background: rgba(122,127,140,0.15); color: var(--stone); }

.producto-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  width: 100%;
  border: none;
  padding: 0.95rem 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  background: var(--navy);
  color: var(--cream);
  transition: background-color .2s ease, transform .2s ease;
  border-radius: 0.85rem;
  text-decoration: none;
}
.producto-cta:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}
.producto-cta svg {
  display: block;
  width: 1rem;
  height: 1rem;
}
.producto-cta:disabled {
  background: rgba(27,42,70,0.1);
  color: var(--stone);
  cursor: not-allowed;
}

.stock-empty { color: var(--stone); font-size: 0.9rem; }

/* ---------------- Confeccion especial ---------------- */

.especial-grid {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .especial-grid { grid-template-columns: 1fr 1fr; } }

.especial-art {
  aspect-ratio: 4 / 5;
  background: var(--navy);
  overflow: hidden;
  order: 2;
}
@media (min-width: 1024px) { .especial-art { order: 1; } }
.especial-art svg { width: 100%; height: 100%; }

.especial-copy { order: 1; }
@media (min-width: 1024px) { .especial-copy { order: 2; } }

.especial-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.especial-items h3 { font-size: 0.95rem; color: var(--navy); }
.especial-items p { font-size: 0.88rem; color: var(--stone); margin-top: 0.4rem; }

/* ---------------- Proceso ---------------- */

.proceso-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 3.5rem;
}
@media (min-width: 768px) { .proceso-grid { grid-template-columns: repeat(3, 1fr); } }
.proceso-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.9rem;
  color: var(--rose-soft);
}
.proceso-grid h3 { margin-top: 0.75rem; }
.proceso-grid p { color: var(--stone); font-size: 0.9rem; margin-top: 0.5rem; }

/* ---------------- Contacto ---------------- */

.contacto-grid {
  display: grid;
  gap: 3.5rem;
}
@media (min-width: 1024px) { .contacto-grid { grid-template-columns: 1fr 1fr; } }

.contacto-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 0;
  align-content: start;
}

@media (max-width: 640px) {
  .contacto-list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.contacto-list dt {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
}
.contacto-list dd {
  margin: 0.5rem 0 0;
  color: var(--navy);
  font-weight: 500;
}

.contacto-form-card {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--paper-shadow);
  border-top: 3px dotted var(--gold);
  max-width: 40rem;
  min-width: 0;
}

.contacto-card-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 1.5rem;
}

.contacto-form {
  display: grid;
  gap: 1.25rem;
}

.contacto-field {
  display: grid;
  gap: 0.75rem;
}

.contacto-label {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--ink);
}

.contacto-input,
.contacto-textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(27, 42, 70, 0.16);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.9rem 0;
  outline: none;
}

.contacto-input::placeholder,
.contacto-textarea::placeholder {
  color: rgba(43, 45, 45, 0.45);
}

.contacto-input:focus,
.contacto-textarea:focus {
  border-bottom-color: var(--wine);
}

.contacto-textarea {
  /* min-height: 12rem; */
  resize: vertical;
}

.contacto-motivo-chips {
  margin-top: 0.25rem;
}

.contacto-form-note {
  margin: 0;
  text-align: center;
  color: var(--slate);
  font-size: 0.85rem;
}

.btn-whatsapp {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #25d366;
  color: #fff;
  border-color: transparent;
}

.btn-whatsapp:hover {
  background: #1ebe5c;
}

.btn-whatsapp .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .contacto-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .contacto-form-card {
    padding: 1.25rem;
  }
}

/* ---------------- Contacto: mapa ---------------- */
.contacto-map {
  margin-top: 1.25rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(27,42,70,0.06);
  width: 100%;
  min-width: 0;
}
.contacto-map iframe {
  width: 100%;
  height: 18.75rem; /* 300px */
  border: 0;
  display: block;
  min-width: 0;
}

@media (min-width: 1024px) {
  .contacto-map iframe {
    height: 28.125rem; /* 450px */
  }
}

/* ---------------- Footer ---------------- */

.site-footer { background: var(--navy); color: var(--cream); }
.footer-inner {
  padding: 2.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .footer-inner { flex-direction: row; align-items: center; justify-content: space-between; padding: 2.25rem 3rem; }
}
.footer-brand { font-family: var(--font-display); font-size: 1.05rem; }
.footer-mid, .footer-copy {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.6);
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
