/* Identidad y estilos compartidos. */
@font-face {
  font-family: Hanken;
  src: url('../assets/HankenGrotesk.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --cream: #f4f0e8;
  --paper: #faf8f3;
  --ink: #181818;
  --clay: #c66a3d;
  --accent: #a94e2c;
  --muted: #53514c;
  --white: #fffaf1;
  --content-width: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 28px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Hanken, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
a:focus-visible { outline: 3px solid currentColor; outline-offset: 6px; }
::selection { background: var(--clay); color: white; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 500; }
h2 { font-size: clamp(40px, 4.45vw, 65px); letter-spacing: -.045em; line-height: 1.08; margin-bottom: 26px; }
.wrap { width: min(var(--content-width), 88%); margin-inline: auto; }
.section { padding: 110px 0; }
.section-heading { display: flex; justify-content: space-between; align-items: center; gap: 70px; }
.section-heading > p { font-size: 18px; line-height: 1.65; max-width: 365px; margin: 0 0 22px; color: #585650; }
.eyebrow { display: flex; align-items: center; gap: 18px; font-size: 14px; font-weight: 500; line-height: 1.5; letter-spacing: .025em; margin: 0 0 32px; color: var(--accent); }
.skip { position: absolute; left: 20px; top: -100px; z-index: 10; background: var(--ink); color: white; padding: 16px; }
.skip:focus { top: 12px; }

/* Componentes reutilizables: botones y logotipo original. */
.button { display: inline-flex; align-items: center; justify-content: center; gap: 22px; padding: 19px 27px; border-radius: 3px; background: var(--ink); color: white; text-decoration: none; font-size: 15px; line-height: 1.35; font-weight: 500; transition: background .2s, transform .2s; }
.button:hover { background: #a54823; transform: translateY(-2px); }
.button span { font-size: 20px; line-height: 1; }
.button.small { padding: 13px 23px; background: transparent; color: var(--ink); }
.button.small:hover { background: #eae4d9; }
.button.light { background: var(--white); color: var(--ink); margin-top: 8px; }
.button.light:hover { background: #e9ddcb; }
.text-link { font-size: 14px; text-decoration: none; padding: 8px 0; }
.text-link:hover { color: var(--accent); }
.brand { position: relative; width: 172px; height: 69px; overflow: hidden; flex-shrink: 0; mix-blend-mode: multiply; }
/* Recorte visual del margen de la imagen original: no se redibuja el logo. */
.brand img { position: absolute; width: 260px; height: 260px; max-width: none; left: -44px; top: -97px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
  .button:hover { transform: none; }
}
