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

/* BASE */
body {
  font-family:'Inter', sans-serif;
  background:#0a0a0a;
  color:white;
}

/* NAV */
.nav {
  position:fixed;
  top:0;
  width:100%;
  z-index:100;

  display:flex;
  justify-content:center;

  padding:22px 0;

  background:rgba(0,0,0,0.4);
  backdrop-filter:blur(8px);

  border-bottom:1px solid rgba(255,255,255,0.08);
}

.menu {
  display:flex;
  gap:50px;
}

.menu a {
  color:white;
  text-decoration:none;
  font-size:11px;
  letter-spacing:3px;
  text-transform:uppercase;
  opacity:0.85;
  transition:0.3s;
}

.menu a:hover { opacity:1; }

/* HERO */
.hero {
  position:relative;
  height:60vh;
  background-size:cover;
  background-position:center;
}

.overlay {
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.55);
}

.hero-center {
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  transform: translateY(120px);
}

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  text-align:center;
  padding:20px;
}

.hero-center h1 {
  font-family:'Playfair Display', sans-seri !important;
  font-size:90px;
  font-weight:500;
}

.hero-line {
  width:60px;
  height:1px;
  background:white;
  margin:25px 0;
}

.hero-center p {
  max-width:600px;
  font-size:16px;
  line-height:1.8;
  opacity:0.85;
}

/* SMALL HERO */
.hero.small { height:60vh; }

/* INTRO */
.intro {
  padding:140px 20px;
  text-align:center;
}

.intro-inner {
  max-width:700px;
  margin:auto;
}

.intro h2 {
  font-family:'Playfair Display', sans-serif;
  font-size:42px;
  margin-bottom:20px;
}

.intro p {
  font-size:16px;
  line-height:1.8;
  opacity:0.7;
}

/* SPLIT */
.split {
  display:flex;
  min-height:500px;
}

.split.reverse { flex-direction:row-reverse; }

.split-img {
  flex:1;
  background-size:cover;
  background-position:center;
}

.split-text {
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:80px;
}

.split-text h3 {
  font-family:'Playfair Display', serif;
  font-size:32px;
  margin-bottom:20px;
}

.split-text p {
  opacity:0.7;
  line-height:1.8;
}

/* GRID */
.grid {
  display:flex;
  height:400px;
}

.grid.large {
  flex-wrap:wrap;
  height:auto;
}

.grid-item {
  flex:1;
  background-size:cover;
  background-position:center;
}

.grid.large .grid-item {
  width:50%;
  height:300px;
}

/* CONTACT */
.contact {
  padding:100px 20px;
  display:flex;
  justify-content:center;
}

.contact form {
  display:flex;
  flex-direction:column;
  gap:20px;
  width:400px;
}

.contact input,
.contact textarea {
  padding:14px;
  background:transparent;
  border:1px solid rgba(255,255,255,0.2);
  color:white;
}

.contact button {
  padding:14px;
  border:1px solid white;
  background:none;
  color:white;
  cursor:pointer;
}