
/* Google Fonts: Ropa */
/* ropa-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Ropa Sans';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/ropa-sans-v16-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* Google Fonts: Viga */
/* viga-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Viga';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/viga-v15-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #f7f5f0;
  color: #2d2520;
  font-family: 'Ropa Sans', sans-serif;
  font-size: 100%;
}

/* ── Nav ── */
nav {
  display: flex;
  /* align-items: flex-end; */
  justify-content: space-between;
  padding-top: 28px;
  padding-left: 60px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.logo {
  width: 30rem;
  margin-right: 12px;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 1.6rem;
  /* color: #f7f5f0;
  letter-spacing: .04em; */
}

nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
}

nav ul a {
  text-decoration: none;
  color: #ff8a00;
  font-size: 1.2rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s;
}

nav ul a:hover { color: #f7f5f0; }

nav li a img {
  width: 25px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
}

.hero-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
	to top,
	rgba(54, 56, 62, 0.96) 12%,
	rgba(54, 56, 62, .30) 40%,
	rgba(54, 56, 62, 0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-family: 'Viga', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 5rem;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: #f7f5f0;
  margin-bottom: 24px;
}

.lead {
  font-size: 1.2rem;
  letter-spacing: .01em;
  line-height: 1.75;
  color: #f7f5f0;
}

.lead a {
  color: #ff8a00;
}

.lead a:hover { 
  color: #f7f5f0; 
}

img.insta {
  width: 26px;
  padding-top: 5px;
}

/* ── Section base ── */
section { 
  padding: 60px 60px; 
}

/* ── MEDIA QUERIES ── */

@media (max-width:1100px) {
  .logo {
    width: 28rem;
  }
  .hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
  }
}

@media (max-width:900px) {
  nav, section {
   padding-left: 40px;
  }
}

@media (max-width:800px) {
  .logo {
    width: 26rem;
  }
  nav, section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
  }
}

@media (max-width:600px) {
    .logo {
    width: 22rem;
  }
    .lead {
      font-size: 1rem;
  }
  .hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
  }
}

@media (max-width:400px) {
  nav, section {
    padding-left: 12px;
    padding-right: 12px;
  }
  nav {
    padding-top: 12px;
  }
    .logo {
    width: 22rem;
  }
  /* .lead {
      font-size: .9rem;
  } */
}