:root {
  --azul: #061f35;
  --azul-claro: #0b3c56;
  --dorado: #e9ad32;
  --dorado-claro: #f5c760;
  --crema: #f6f0e6;
  --papel: #fffaf1;
  --texto: #102638;
  --texto-suave: #5e6c75;
  --borde: rgba(16, 38, 56, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 24px;
}

body {
  margin: 0;
  background: var(--crema);
  color: var(--texto);
  font-family: Arial, Helvetica, sans-serif;
}

body.menu-abierto {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button,
select,
input[type="date"] {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--dorado-claro);
  outline-offset: 4px;
}

img {
  display: block;
  max-width: 100%;
}

.encabezado {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: grid;
  width: 100%;
  min-height: 105px;
  padding: 0 clamp(24px, 5vw, 76px);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(233, 173, 50, 0.65);
  color: white;
}

.marca {
  display: flex;
  align-items: center;
  gap: 12px;
}

.marca-icono {
  color: var(--dorado-claro);
  font-size: 34px;
  transform: rotate(45deg);
}

.marca strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 35px;
  line-height: 1;
}

.marca small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu {
  display: flex;
  gap: clamp(25px, 4vw, 60px);
  font-size: 14px;
}

.menu a {
  transition: color 0.2s ease;
}

.menu a:hover {
  color: var(--dorado-claro);
}

.boton-empresa {
  justify-self: end;
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  font-size: 13px;
  transition: background 0.2s ease, color 0.2s ease;
}

.boton-empresa:hover {
  background: white;
  color: var(--azul);
}

.boton-menu {
  display: none;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.boton-menu span {
  display: block;
  width: 27px;
  height: 2px;
  margin: 5px 0;
  background: white;
}

.hero {
  position: relative;
  display: flex;
  min-height: 850px;
  height: 100vh;
  align-items: center;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, #061f35 0%, rgba(6, 31, 53, 0.72) 44%, transparent 80%),
    url("hero-norte.png") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(transparent 60%, rgba(3, 20, 34, 0.55));
}

.hero-contenido {
  position: relative;
  z-index: 2;
  width: min(800px, calc(100% - 48px));
  margin-left: clamp(24px, 5vw, 76px);
  padding-top: 80px;
}

.etiqueta {
  margin: 0 0 22px;
  color: var(--dorado-claro);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.etiqueta-oscura {
  color: #996710;
}

.hero h1,
h2,
h3,
blockquote {
  font-family: Georgia, "Times New Roman", serif;
}

.hero h1 {
  margin: 0;
  font-size: clamp(58px, 8vw, 112px);
  font-weight: normal;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.hero-descripcion {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.6;
}

.hero-acciones {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 38px;
}

.boton {
  display: inline-flex;
  min-height: 60px;
  padding: 0 30px;
  align-items: center;
  justify-content: center;
  gap: 25px;
  border-radius: 6px;
  font-weight: bold;
  transition: transform 0.2s ease, background 0.2s ease;
}

.boton:hover {
  transform: translateY(-2px);
}

.boton-dorado {
  background: var(--dorado);
  color: var(--azul);
}

.boton-dorado:hover {
  background: var(--dorado-claro);
}

.boton-transparente {
  border: 1px solid var(--dorado-claro);
  background: rgba(6, 31, 53, 0.35);
  color: white;
}

.linea-confianza {
  margin-top: 35px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.bajar {
  position: absolute;
  right: clamp(24px, 5vw, 76px);
  bottom: 40px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.seccion {
  padding: 110px clamp(24px, 6vw, 95px);
}

.titulo-seccion {
  max-width: 800px;
}

.titulo-seccion h2,
.territorio h2,
.empresas h2,
.nosotros h2 {
  margin: 0;
  font-size: clamp(47px, 6vw, 82px);
  font-weight: normal;
  line-height: 1;
  letter-spacing: -0.04em;
}

.titulo-seccion > p:last-child {
  max-width: 650px;
  color: var(--texto-suave);
  font-size: 17px;
  line-height: 1.7;
}

.buscador {
  display: grid;
  max-width: 1240px;
  margin-top: 50px;
  grid-template-columns: 1.3fr 1fr 1fr auto;
  align-items: stretch;
  border: 1px solid var(--borde);
  border-radius: 10px;
  background: var(--papel);
  box-shadow: 0 18px 65px rgba(6, 31, 53, 0.08);
  overflow: hidden;
}

.buscador label {
  display: flex;
  min-height: 94px;
  padding: 18px 24px;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid var(--borde);
}

.buscador label span {
  color: #87705b;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.buscador select,
.buscador input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--texto);
  font-weight: bold;
}

.boton-buscar {
  min-width: 155px;
  border: 0;
  background: var(--azul);
  color: white;
  cursor: pointer;
  font-weight: bold;
}

.boton-buscar:hover {
  background: var(--azul-claro);
}

.mensaje-busqueda {
  min-height: 24px;
  margin-top: 18px;
  color: var(--texto-suave);
}

.categorias {
  display: grid;
  max-width: 1240px;
  margin-top: 30px;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--borde);
  border-bottom: 1px solid var(--borde);
}

.categorias a {
  display: flex;
  min-height: 75px;
  padding: 12px;
  align-items: center;
  gap: 10px;
  border-right: 1px solid var(--borde);
  font-size: 13px;
  font-weight: bold;
}

.categorias a:last-child {
  border-right: 0;
}

.categorias a:hover {
  background: var(--papel);
  color: #996710;
}

.categorias span {
  color: #a47932;
  font-family: Georgia, "Times New Roman", serif;
}

.seleccion {
  background: var(--papel);
}

.grilla-propuestas {
  display: grid;
  max-width: 1240px;
  margin-top: 55px;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, 310px);
  gap: 18px;
}

.tarjeta {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--azul);
  color: white;
}

.tarjeta-grande {
  grid-row: 1 / 3;
}

.tarjeta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.tarjeta:hover img {
  transform: scale(1.04);
}

.tarjeta-sombra {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 25%, rgba(3, 20, 34, 0.9));
}

.tarjeta-contenido {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(22px, 3vw, 38px);
}

.tarjeta-contenido p {
  color: var(--dorado-claro);
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tarjeta-contenido h3 {
  margin: 10px 0;
  font-size: clamp(27px, 3vw, 46px);
  font-weight: normal;
}

.proximamente {
  display: inline-block;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.territorio {
  display: grid;
  padding: 120px clamp(24px, 7vw, 120px);
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(55px, 9vw, 145px);
  background: var(--azul);
  color: white;
}

.territorio > div:first-child > p:not(.etiqueta) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.enlace-dorado {
  display: inline-block;
  margin-top: 25px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--dorado);
  color: var(--dorado-claro);
  font-weight: bold;
}

.lista-provincias {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.lista-provincias div {
  display: grid;
  min-height: 78px;
  grid-template-columns: 55px 1fr auto;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.lista-provincias span {
  color: var(--dorado);
}

.lista-provincias strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: normal;
}

.lista-provincias small {
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.titulo-centrado {
  margin: 0 auto;
  text-align: center;
}

.pasos {
  display: grid;
  max-width: 1180px;
  margin: 65px auto 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--borde);
  border-bottom: 1px solid var(--borde);
}

.pasos article {
  min-height: 290px;
  padding: 36px;
  border-right: 1px solid var(--borde);
}

.pasos article:last-child {
  border-right: 0;
}

.pasos article > span {
  color: #a47932;
}

.pasos h3 {
  margin: 65px 0 12px;
  font-size: 29px;
  font-weight: normal;
}

.pasos p {
  color: var(--texto-suave);
  line-height: 1.7;
}

.aviso {
  max-width: 760px;
  margin: 30px auto 0;
  color: #7b6e60;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.empresas {
  display: grid;
  min-height: 720px;
  grid-template-columns: 1fr 1fr;
  background: var(--azul);
  color: white;
}

.empresas-imagen {
  min-height: 650px;
  background:
    linear-gradient(transparent 45%, rgba(3, 20, 34, 0.65)),
    url("gastronomia-norte.png") center / cover no-repeat;
}

.empresas-contenido {
  padding: clamp(60px, 7vw, 110px);
  align-self: center;
}

.empresas-contenido > p:not(.etiqueta) {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.empresas-contenido ul {
  margin: 35px 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.82);
}

.empresas-contenido li {
  margin: 17px 0;
  line-height: 1.5;
}

.nosotros {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(45px, 8vw, 130px);
  align-items: center;
}

.nosotros p:not(.etiqueta) {
  color: var(--texto-suave);
  font-size: 17px;
  line-height: 1.7;
}

blockquote {
  margin: 0;
  padding-left: 40px;
  border-left: 3px solid var(--dorado);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.35;
}

blockquote cite {
  display: block;
  margin-top: 22px;
  color: var(--texto-suave);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-style: normal;
}

.pie {
  padding: 70px clamp(24px, 6vw, 95px) 35px;
  background: #031725;
  color: white;
}

.pie > div strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
}

.pie > div span,
.pie p,
.pie small {
  color: rgba(255, 255, 255, 0.58);
}

.pie nav {
  display: flex;
  gap: 30px;
  margin: 35px 0;
}

.pie nav a:hover {
  color: var(--dorado-claro);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 1000px) {
  .encabezado {
    grid-template-columns: 1fr auto;
  }

  .boton-menu {
    display: block;
    justify-self: end;
  }

  .boton-empresa {
    display: none;
  }

  .menu {
    position: absolute;
    top: 105px;
    right: 0;
    left: 0;
    display: none;
    padding: 28px;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    background: var(--azul);
  }

  .menu.activo {
    display: flex;
  }

  .buscador {
    grid-template-columns: 1fr 1fr;
  }

  .boton-buscar {
    min-height: 75px;
  }

  .categorias {
    grid-template-columns: repeat(3, 1fr);
  }

  .territorio,
  .nosotros {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .encabezado {
    min-height: 85px;
  }

  .menu {
    top: 85px;
  }

  .hero {
    min-height: 760px;
    background:
      linear-gradient(rgba(6, 31, 53, 0.42), rgba(6, 31, 53, 0.9)),
      url("hero-norte.png") 65% center / cover no-repeat;
  }

  .hero h1 {
    font-size: clamp(52px, 17vw, 76px);
  }

  .hero-acciones,
  .hero-acciones .boton {
    width: 100%;
  }

  .buscador,
  .categorias,
  .grilla-propuestas,
  .pasos,
  .empresas {
    grid-template-columns: 1fr;
  }

  .buscador label {
    border-right: 0;
    border-bottom: 1px solid var(--borde);
  }

  .categorias a {
    border-right: 0;
    border-bottom: 1px solid var(--borde);
  }

  .grilla-propuestas {
    grid-template-rows: none;
  }

  .tarjeta,
  .tarjeta-grande {
    min-height: 390px;
    grid-row: auto;
  }

  .lista-provincias div {
    grid-template-columns: 42px 1fr;
  }

  .lista-provincias small {
    display: none;
  }

  .pasos article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--borde);
  }

  .pasos h3 {
    margin-top: 35px;
  }

  .empresas-imagen {
    min-height: 420px;
  }

  .pie nav {
    flex-direction: column;
  }
}
