@font-face {
  font-family: 'Cardo';
  src: url('fonts/Cardo/Cardo-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Cardo';
  src: url('fonts/Cardo/Cardo-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Cardo';
  src: url('fonts/Cardo/Cardo-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Syncopate';
  src: url('fonts/Syncopate/Syncopate-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Syncopate';
  src: url('fonts/Syncopate/Syncopate-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

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

html, body {
  height: 100%;
  background: #0a0a0a;
  color: #f0ede8;
  font-family: 'Cardo', serif;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45) saturate(0.6);
}

/* Dark gradient layer to deepen the bottom and edges */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, transparent 30%, rgba(0,0,0,0.55) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 30%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

/* Nav */
nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.5rem;
}

.nav-brand,
a.nav-brand,
a.nav-brand:link,
a.nav-brand:visited {
  font-family: 'Syncopate', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: none;
  color: #f0ede8;
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

nav a {
  text-decoration: none;
  font-family: 'Syncopate', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.65);
  transition: color 0.2s;
}

nav a:hover {
  color: #f0ede8;
}

/* Hero Content */
.hero-content {
  position: absolute;
  z-index: 10;
  bottom: 13%;
  right: 6%;
  max-width: 580px;
  text-align: left;
}

.hero-text {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  line-height: 1.25;
  font-weight: 400;
  color: #f0ede8;
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: 'Syncopate', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.7);
  border-bottom: 1px solid rgba(240, 237, 232, 0.3);
  padding-bottom: 0.4rem;
  transition: color 0.2s, border-color 0.2s;
}

.hero-cta:hover {
  color: #f0ede8;
  border-color: rgba(240, 237, 232, 0.8);
}

.arrow {
  font-size: 1rem;
  line-height: 1;
}
