/* ═══════════════════════════════════════
   NOHRD ARGENTINA — Hoja de estilos global
   Estética basada en nohrd.com
   ═══════════════════════════════════════ */

:root {
  --ink:        #1A1A1A;
  --ink-soft:   #2A2A2A;
  --white:      #FFFFFF;
  --paper:      #F5F0E8;
  --sand:       #EAE2D6;
  --wood:       #A6784F;
  --wood-dark:  #8A5F3C;
  --gray:       #8F8778;
  --gray-dark:  #55503F;
  --line:       rgba(26,26,26,.12);
  --line-light: rgba(255,255,255,.16);

  --font-body: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --nav-h: 84px;
  --max:   1340px;
  --pad:   clamp(1.5rem, 5vw, 4.5rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  font-size: 15px; font-weight: 400; line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─────────── NAV: logo centrado + burger ─────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 0 var(--pad);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background .3s, border-color .3s;
}
.nav-left { display: flex; align-items: center; }
.nav-right { display: flex; align-items: center; justify-content: flex-end; gap: 1.5rem; }
.nav-logo { justify-self: center; display: block; }
.nav-logo img { height: 46px; width: auto; }

.burger {
  display: flex; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 6px 0;
}
.burger span {
  width: 26px; height: 1.5px; background: var(--ink);
  transition: transform .35s ease, opacity .25s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-tag {
  font-size: 10px; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gray);
}
.nav-contact {
  font-size: 10px; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink);
  border-bottom: 1px solid var(--ink); padding-bottom: 3px;
  transition: opacity .2s;
}
.nav-contact:hover { opacity: .55; }

/* Panel del menú */
/* Fondo semitransparente detrás del panel */
.menu-scrim {
  position: fixed; inset: 0; z-index: 98;
  background: rgba(26,26,26,.35); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s;
}
.menu-scrim.open { opacity: 1; visibility: visible; }

.menu-panel {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 99;
  width: 22%; min-width: 320px; max-width: 420px;
  background: var(--paper);
  border-right: 1px solid var(--line);
  padding: calc(var(--nav-h) + 2rem) 2.4rem 2.4rem;
  display: flex; flex-direction: column;
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; overscroll-behavior: contain;
}
.menu-panel.open { transform: translateX(0); }
.menu-list { display: flex; flex-direction: column; gap: .1rem; flex: 0 0 auto; }
.menu-list a {
  font-size: 1.05rem;
  font-weight: 400; letter-spacing: .06em; line-height: 1.4;
  text-transform: uppercase; color: var(--ink);
  display: flex; align-items: baseline; gap: .9rem;
  padding: .75rem 0; border-bottom: 1px solid var(--line);
  transition: color .2s, padding-left .25s;
}
.menu-list a:last-child { border-bottom: none; }
.menu-list a:hover { color: var(--wood); padding-left: 8px; }
.menu-list .num {
  font-size: 10px; font-weight: 500; letter-spacing: .16em;
  color: var(--gray); min-width: 24px;
}
.menu-foot {
  margin-top: auto; padding-top: 1.8rem; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 1.1rem; flex-shrink: 0;
}
.menu-foot-item { }
.menu-foot-label { font-size: 9px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gray); margin-bottom: 5px; }
.menu-foot-val { font-size: 13px; color: var(--ink); }

/* ─────────── BOTONES ─────────── */
.btn {
  display: inline-block; font-family: var(--font-body);
  font-size: 11px; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; padding: 15px 34px;
  transition: all .25s; cursor: pointer; border: none;
}
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--ink-soft); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--sand); }
.btn-outline { border: 1px solid var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-outline-light { border: 1px solid rgba(255,255,255,.45); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-wood { background: var(--wood); color: var(--white); }
.btn-wood:hover { background: var(--wood-dark); }

/* ─────────── TIPOGRAFÍA ─────────── */
.eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gray); margin-bottom: 1rem;
}
.eyebrow.light { color: rgba(255,255,255,.65); }
.title {
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  font-weight: 300; line-height: 1.18; letter-spacing: -.015em;
  text-transform: uppercase;
}
.title.light { color: var(--white); }
.lead {
  font-size: 15.5px; line-height: 1.85; color: var(--gray-dark); max-width: 620px;
}
.lead.light { color: rgba(255,255,255,.68); }

section { padding: clamp(4rem, 10vh, 8rem) var(--pad); }
.wrap { max-width: var(--max); margin: 0 auto; }

/* ─────────── PAGE HEADER ─────────── */
.page-head {
  padding: calc(var(--nav-h) + clamp(3.5rem,9vh,6.5rem)) var(--pad) clamp(3rem,7vh,5rem);
  background: var(--paper);
}
.page-head .wrap { max-width: var(--max); }
.page-head h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.1; letter-spacing: -.02em;
  text-transform: uppercase;
}
.page-head p { margin-top: 1.4rem; font-size: 15.5px; line-height: 1.85; color: var(--gray-dark); max-width: 600px; }
.crumb { font-size: 10px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gray); margin-bottom: 1.4rem; }

/* ─────────── FOOTER ─────────── */
footer { background: var(--ink); color: var(--white); padding: 4rem var(--pad) 2rem; }
.foot-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem; max-width: var(--max); margin: 0 auto 3rem;
}
.foot-brand img { height: 62px; width: auto; margin-bottom: 1.3rem; }
.foot-brand p { font-size: 13px; color: rgba(255,255,255,.42); line-height: 1.85; max-width: 280px; }
.foot-col h4 { font-size: 10px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 1.1rem; }
.foot-col a, .foot-col span { display: block; font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: .65rem; transition: color .2s; }
.foot-col a:hover { color: var(--white); }
.foot-bottom {
  max-width: var(--max); margin: 0 auto; padding-top: 1.6rem;
  border-top: 1px solid var(--line-light);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 11.5px; color: rgba(255,255,255,.28);
}

/* ─────────── ANIMACIONES ─────────── */
@media (prefers-reduced-motion: no-preference) {
  .rise { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
  .rise.seen { opacity: 1; transform: none; }
}

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 940px) {
  .menu-panel {
    width: 100%; min-width: 0; max-width: none;
    border-right: none; padding: calc(var(--nav-h) + 2rem) var(--pad) 2rem;
  }
  .menu-list a { font-size: 1.25rem; padding: .95rem 0; }
  .menu-scrim { display: none; }
  .nav-tag { display: none; }
  .nav-logo img { height: 38px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .rise { opacity: 1 !important; transform: none !important; }
}
@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; }
  .nav-contact { display: none; }
  .menu-foot { gap: 1.5rem; flex-direction: column; }
}

/* Imagen con fondo neutro mientras carga */
img { background-color: var(--sand); }
.nav-logo img, .foot-brand img { background-color: transparent; }
