/* =========================================================
   NACAR — Hoja de estilos
   Elegancia silenciosa · Alta confección · Buenos Aires
   ========================================================= */

/* Tipografías */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@200;300;400;500&display=swap');

/* ---------- Variables ---------- */
:root {
  --blanco-perlado: #F8F5F0;
  --greige: #EDE8E0;
  --arena: #C8BDB0;
  --pizarra: #5A5350;
  --carbon: #2A2724;
  --champagne-claro: #E0D0A8;
  --champagne: #C8A96E;
  --champagne-oscuro: #9A7840;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Jost', 'Helvetica Neue', sans-serif;

  --tracking-logo: 0.55em;
  --tracking-label: 0.32em;
  --tracking-nav: 0.22em;

  --max: 1440px;
  --pad-x: clamp(20px, 4vw, 64px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
  color: var(--carbon);
  background: var(--blanco-perlado);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

/* ---------- Tipografía ---------- */
.serif { font-family: var(--serif); font-weight: 300; }
.label {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--champagne-oscuro);
}
.body-large { font-size: 16px; line-height: 1.7; }
.italic { font-style: italic; }

/* ---------- Patrón Twill ---------- */
.pattern-twill {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 7px,
    rgba(154, 120, 64, 0.10) 7px,
    rgba(154, 120, 64, 0.10) 8px
  );
}
.pattern-twill-dark {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 7px,
    rgba(232, 219, 188, 0.05) 7px,
    rgba(232, 219, 188, 0.05) 8px
  );
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px var(--pad-x);
  background: rgba(42, 39, 36, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--greige);
  transition: background .4s ease, color .4s ease;
}
.site-header.light {
  background: rgba(248, 245, 240, 0.92);
  color: var(--carbon);
}
.site-header.light .nav a { color: var(--carbon); }
.site-header.light .nav a.active { color: var(--champagne-oscuro); }

.logo {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  letter-spacing: var(--tracking-logo);
  color: inherit;
}
.nav {
  display: flex;
  gap: 44px;
  justify-self: center;
}
.nav a {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: var(--tracking-nav);
  text-transform: uppercase;
  color: var(--greige);
  position: relative;
  transition: color .3s;
}
.nav a:hover { color: var(--champagne); }
.nav a.active { color: var(--champagne); }

.header-utils {
  justify-self: end;
  display: flex;
  gap: 22px;
  font-size: 11px;
  letter-spacing: var(--tracking-nav);
  text-transform: uppercase;
}
.header-utils a:hover { color: var(--champagne); }

/* Mobile menu toggle */
.menu-toggle { display: none; background: none; border: none; color: inherit; }

/* ---------- HERO (Inicio) ---------- */
.hero {
  min-height: 100vh;
  background: var(--carbon);
  color: var(--greige);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 140px var(--pad-x) 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 9px,
    rgba(232, 219, 188, 0.025) 9px,
    rgba(232, 219, 188, 0.025) 10px
  );
  pointer-events: none;
}
.hero-photo {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.hero-photo .photo-placeholder {
  position: absolute;
  width: 56%;
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, #1f1c1a 0%, #36322e 100%);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(232, 219, 188, 0.06);
}
.hero-photo .photo-tag {
  font-size: 10px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: rgba(232, 219, 188, 0.45);
  text-align: center;
  padding: 0 24px;
  background: rgba(42, 39, 36, 0.55);
  padding: 10px 18px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 32px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--blanco-perlado);
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--champagne);
  font-weight: 300;
}
.hero-sub {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  color: rgba(248, 245, 240, 0.75);
  max-width: 520px;
  margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 18px 36px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s ease;
  text-align: center;
}
.btn-primary {
  background: var(--blanco-perlado);
  color: var(--carbon);
  border-color: var(--blanco-perlado);
}
.btn-primary:hover { background: var(--champagne); border-color: var(--champagne); color: var(--carbon); }
.btn-ghost-light {
  background: transparent;
  color: var(--blanco-perlado);
  border-color: rgba(248, 245, 240, 0.4);
}
.btn-ghost-light:hover { border-color: var(--champagne); color: var(--champagne); }
.btn-dark {
  background: var(--carbon);
  color: var(--blanco-perlado);
  border-color: var(--carbon);
  width: 100%;
}
.btn-dark:hover { background: var(--champagne-oscuro); border-color: var(--champagne-oscuro); }
.btn-ghost-dark {
  background: transparent;
  color: var(--carbon);
  border-color: var(--arena);
  width: 100%;
}
.btn-ghost-dark:hover { border-color: var(--champagne); color: var(--champagne-oscuro); }

.scroll-indicator {
  position: absolute;
  bottom: 60px; right: var(--pad-x);
  font-size: 10px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: rgba(232, 219, 188, 0.5);
  writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 14px;
  z-index: 2;
}
.scroll-indicator::after {
  content: '';
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, var(--champagne), transparent);
}

/* ---------- HOME GRID ---------- */
.home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.home-card {
  padding: 56px 36px;
  border-right: 1px solid rgba(42, 39, 36, 0.08);
  min-height: 280px;
}
.home-card:last-child { border-right: none; }
.home-card.dark {
  background: var(--carbon);
  color: var(--greige);
  border-right-color: rgba(232, 219, 188, 0.08);
}
.home-card .label { display: block; margin-bottom: 18px; }
.home-card.dark .label { color: var(--champagne); }
.home-card h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.home-card h3 em { font-style: italic; color: var(--champagne); }
.home-card p { font-size: 13px; line-height: 1.65; opacity: 0.85; }
.home-card .small-label {
  font-size: 10px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--champagne);
  margin-top: 12px;
  display: block;
}

.newsletter-form {
  display: flex;
  margin-top: 18px;
  border-bottom: 1px solid rgba(232, 219, 188, 0.25);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 0;
  font-size: 13px;
  color: var(--greige);
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(232, 219, 188, 0.4); }
.newsletter-form button {
  font-size: 10px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--champagne);
  padding: 0 4px;
}
.newsletter-form button:hover { color: var(--blanco-perlado); }

/* ---------- COLECCIÓN ---------- */
.shop-header {
  padding: 140px var(--pad-x) 32px;
  background: var(--blanco-perlado);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid rgba(42, 39, 36, 0.08);
  flex-wrap: wrap;
  gap: 20px;
}
.shop-header .label { display: block; margin-bottom: 12px; }
.shop-header h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1;
}
.shop-header h2 em { font-style: italic; color: var(--champagne); }
.shop-count {
  font-size: 12px;
  letter-spacing: var(--tracking-nav);
  text-transform: uppercase;
  color: var(--pizarra);
}

.shop-filters {
  display: flex;
  border-bottom: 1px solid rgba(42, 39, 36, 0.08);
  padding: 0 var(--pad-x);
  background: var(--blanco-perlado);
  overflow-x: auto;
}
.shop-filters button {
  padding: 22px 32px;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--pizarra);
  border-right: 1px solid rgba(42, 39, 36, 0.08);
  white-space: nowrap;
  transition: color .3s;
}
.shop-filters button:first-child { border-left: 1px solid rgba(42, 39, 36, 0.08); }
.shop-filters button:hover,
.shop-filters button.active {
  color: var(--champagne-oscuro);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--blanco-perlado);
}
.product-card {
  display: block;
  border-right: 1px solid rgba(42, 39, 36, 0.06);
  border-bottom: 1px solid rgba(42, 39, 36, 0.06);
  background: var(--blanco-perlado);
  transition: background .35s ease;
}
.product-card:hover { background: var(--greige); }
.product-card:nth-child(3n) { border-right: none; }

.product-image {
  aspect-ratio: 3/4;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background: var(--greige);
  overflow: hidden;
}
.product-image.dark {
  background: var(--carbon);
}
.product-image .photo-tag {
  font-size: 10px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  background: rgba(42, 39, 36, 0.65);
  color: rgba(232, 219, 188, 0.6);
  padding: 8px 16px;
  z-index: 2;
}
.product-image.dark .photo-tag { background: rgba(248, 245, 240, 0.08); }

.product-info { padding: 22px 28px 28px; }
.product-info .label { color: var(--pizarra); display: block; margin-bottom: 8px; }
.product-info h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.product-info .price {
  font-size: 14px;
  font-weight: 300;
  color: var(--carbon);
}

/* ---------- PRODUCTO (detalle) ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 80px;
}
.product-gallery {
  background: var(--carbon);
  display: flex; align-items: center; justify-content: center;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}
.product-gallery::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 9px,
    rgba(232, 219, 188, 0.025) 9px,
    rgba(232, 219, 188, 0.025) 10px
  );
}
.product-gallery .photo-tag {
  position: relative; z-index: 2;
  font-size: 10px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  background: rgba(232, 219, 188, 0.06);
  color: rgba(232, 219, 188, 0.55);
  padding: 10px 22px;
}

.product-side {
  padding: 80px clamp(32px, 5vw, 88px);
  background: var(--blanco-perlado);
}
.breadcrumb {
  font-size: 11px;
  letter-spacing: var(--tracking-nav);
  text-transform: uppercase;
  color: var(--champagne-oscuro);
  margin-bottom: 22px;
}
.breadcrumb span { color: var(--pizarra); }
.product-side .label { display: block; margin-bottom: 12px; }
.product-side h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 4.5vw, 56px);
  line-height: 1.05;
  margin-bottom: 22px;
}
.product-price {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(42, 39, 36, 0.12);
}
.option-group { margin-bottom: 26px; }
.option-group .label { color: var(--pizarra); display: block; margin-bottom: 12px; }

.color-swatches { display: flex; gap: 14px; }
.swatch {
  width: 26px; height: 26px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid rgba(42, 39, 36, 0.15);
  position: relative;
  transition: transform .2s;
}
.swatch:hover { transform: scale(1.08); }
.swatch.active::after {
  content: '';
  position: absolute;
  inset: -5px;
  border: 1px solid var(--carbon);
  border-radius: 50%;
}
.swatch.s-carbon { background: var(--carbon); }
.swatch.s-cocoa { background: #4d3a30; }
.swatch.s-arena { background: var(--arena); }

.size-options { display: flex; gap: 10px; flex-wrap: wrap; }
.size-options button {
  width: 56px; height: 44px;
  border: 1px solid rgba(42, 39, 36, 0.2);
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 300;
  color: var(--pizarra);
  transition: all .2s;
}
.size-options button:hover { border-color: var(--carbon); color: var(--carbon); }
.size-options button.active {
  background: var(--carbon);
  color: var(--blanco-perlado);
  border-color: var(--carbon);
}

.product-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.product-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--pizarra);
  margin: 36px 0;
}

.accordion-item {
  border-top: 1px solid rgba(42, 39, 36, 0.12);
}
.accordion-item:last-child { border-bottom: 1px solid rgba(42, 39, 36, 0.12); }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--carbon);
}
.accordion-trigger span:last-child {
  color: var(--champagne-oscuro);
  font-size: 14px;
  transition: transform .3s;
}
.accordion-trigger.open span:last-child { transform: rotate(180deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  font-size: 13px;
  line-height: 1.7;
  color: var(--pizarra);
}
.accordion-panel.open { max-height: 320px; padding-bottom: 22px; }

/* ---------- NOSOTROS ---------- */
.about-hero {
  padding: 160px var(--pad-x) 80px;
  background: var(--carbon);
  color: var(--greige);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 60vh;
}
.about-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 9px,
    rgba(232, 219, 188, 0.025) 9px,
    rgba(232, 219, 188, 0.025) 10px
  );
  pointer-events: none;
}
.about-hero > * { position: relative; z-index: 1; }
.about-hero .label { color: var(--champagne); display: block; margin-bottom: 22px; }
.about-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 7vw, 92px);
  line-height: 1.05;
  color: var(--blanco-perlado);
}
.about-hero h1 em { font-style: italic; color: var(--champagne); }
.about-hero .photo-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(180deg, #1f1c1a 0%, #36322e 100%);
  border: 1px solid rgba(232, 219, 188, 0.08);
  display: flex; align-items: center; justify-content: center;
}
.about-hero .photo-tag {
  font-size: 10px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: rgba(232, 219, 188, 0.55);
  padding: 10px 18px;
  background: rgba(248, 245, 240, 0.04);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  background: var(--blanco-perlado);
}
.about-block {
  padding: 60px 40px;
  border-right: 1px solid rgba(42, 39, 36, 0.08);
  min-height: 320px;
}
.about-block:last-child { border-right: none; }
.about-block.dark { background: var(--carbon); color: var(--greige); border-right-color: rgba(232, 219, 188, 0.08); }
.about-block .label { display: block; margin-bottom: 18px; }
.about-block.dark .label { color: var(--champagne); }
.about-block .year {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 44px;
  margin-bottom: 18px;
  color: var(--champagne);
}
.about-block.dark .year { color: var(--champagne); }
.about-block p { font-size: 13px; line-height: 1.7; opacity: 0.9; }
.manifesto-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.55;
  color: var(--carbon);
  margin-bottom: 22px;
}
.manifesto-line {
  width: 32px; height: 1px;
  background: var(--champagne);
  margin-bottom: 12px;
}
.manifesto-author {
  font-size: 10px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--champagne-oscuro);
}

.values-section {
  padding: 100px var(--pad-x);
  background: var(--greige);
  text-align: center;
}
.values-section .label { display: inline-block; margin-bottom: 20px; }
.values-section h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  margin-bottom: 60px;
  max-width: 760px;
  margin-left: auto; margin-right: auto;
}
.values-section h2 em { font-style: italic; color: var(--champagne); }
.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
}
.pillars span {
  padding: 14px 28px;
  background: var(--blanco-perlado);
  border: 1px solid rgba(42, 39, 36, 0.08);
  font-size: 11px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--carbon);
}

/* ---------- CONTACTO ---------- */
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 80px;
}
.contact-side {
  background: var(--carbon);
  color: var(--greige);
  padding: 80px clamp(32px, 5vw, 80px);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-side::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 9px,
    rgba(232, 219, 188, 0.025) 9px,
    rgba(232, 219, 188, 0.025) 10px
  );
  pointer-events: none;
}
.contact-side > * { position: relative; z-index: 1; }
.contact-side .label { color: var(--champagne); display: block; margin-bottom: 22px; }
.contact-side h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.05;
  color: var(--blanco-perlado);
  margin-bottom: 60px;
}
.contact-side h1 em { font-style: italic; color: var(--champagne); }
.contact-info-block { margin-bottom: 32px; }
.contact-info-block .label { color: var(--champagne); margin-bottom: 10px; font-size: 10px; }
.contact-info-block p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: var(--blanco-perlado);
}
.contact-social { display: flex; gap: 24px; margin-top: 36px; }
.contact-social a {
  font-size: 11px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--champagne);
}
.contact-social a:hover { color: var(--blanco-perlado); }

.contact-form-side {
  padding: 80px clamp(32px, 5vw, 80px);
  background: var(--blanco-perlado);
  display: flex; flex-direction: column; justify-content: center;
}
.contact-form-side .label { color: var(--champagne-oscuro); display: block; margin-bottom: 14px; }
.contact-form-side h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  margin-bottom: 44px;
  color: var(--carbon);
}
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-size: 10px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--pizarra);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: 1px solid rgba(42, 39, 36, 0.18);
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 300;
  color: var(--carbon);
  outline: none;
  transition: border-color .3s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--champagne); }
.form-field textarea { resize: vertical; min-height: 110px; font-family: inherit; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(42, 39, 36, 0.35); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--carbon);
  color: rgba(232, 219, 188, 0.65);
  padding: 80px var(--pad-x) 40px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 9px,
    rgba(232, 219, 188, 0.025) 9px,
    rgba(232, 219, 188, 0.025) 10px
  );
  pointer-events: none;
}
.footer-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .logo { color: var(--blanco-perlado); display: inline-block; margin-bottom: 18px; }
.footer-brand p { font-size: 12px; line-height: 1.7; max-width: 320px; }
.footer-col h4 {
  font-size: 10px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 22px;
  font-weight: 400;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(232, 219, 188, 0.7);
  transition: color .3s;
}
.footer-col a:hover { color: var(--champagne); }
.footer-bottom {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(232, 219, 188, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  letter-spacing: var(--tracking-nav);
  text-transform: uppercase;
  color: rgba(232, 219, 188, 0.45);
}

/* ---------- Page footer note ---------- */
.page-footnote {
  text-align: right;
  padding: 28px var(--pad-x);
  font-size: 10px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--champagne-oscuro);
  background: var(--blanco-perlado);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav { display: none; position: fixed; top: 70px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--carbon); padding: 20px 0; }
  .nav.open { display: flex; }
  .nav a { padding: 16px var(--pad-x); border-bottom: 1px solid rgba(232, 219, 188, 0.06); }
  .menu-toggle { display: block; font-size: 20px; }
  .site-header { grid-template-columns: 1fr auto; }
  .header-utils { display: none; }

  .home-grid { grid-template-columns: repeat(2, 1fr); }
  .home-card { border-bottom: 1px solid rgba(42, 39, 36, 0.08); }
  .home-card.dark { border-bottom-color: rgba(232, 219, 188, 0.08); }

  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card:nth-child(3n) { border-right: 1px solid rgba(42, 39, 36, 0.06); }
  .product-card:nth-child(2n) { border-right: none; }

  .product-detail { grid-template-columns: 1fr; }
  .product-gallery { min-height: 480px; }

  .about-hero { grid-template-columns: 1fr; padding-top: 130px; }
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .about-block { border-bottom: 1px solid rgba(42, 39, 36, 0.08); }

  .contact-page { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .shop-grid { grid-template-columns: 1fr; }
  .product-card { border-right: none !important; }
  .home-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-photo .photo-placeholder { width: 80%; }
}
