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

/* ---------- BASE ---------- */
html, body {
  width: 100%;
  min-height: 100vh;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  color: #3b2a1a;
}

/* ---------- STATIC CINEMATIC GRADIENT ---------- */
body {
  background:
    radial-gradient(
      circle at 30% 40%,
      #ffd9a3 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 70% 60%,
      #ffb347 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 85% 20%,
      #f5b041 0%,
      transparent 60%
    ),
    linear-gradient(
      135deg,
      #f5b041 0%,
      #ffe6c7 60%,
      #fffaf3 100%
    );

  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* ---------- NAV ---------- */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

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

nav a {
  text-decoration: none;
  color: inherit;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: currentColor;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 4vw 4rem;
  position: relative;
}

.hero-content {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ---------- TYPOGRAPHY ---------- */
.hero h1,
.glass h2 {
  font-family: "Playfair Display", "Didot", serif;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 1.05;
}

.hero p {
  margin-top: 1.5rem;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ---------- SECTIONS ---------- */
.section,
.page {
  min-height: 100vh;
  padding: 10rem 8vw 6rem;
}

.center {
  text-align: center;
}

/* ---------- SPLIT LAYOUT ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.split.reverse {
  grid-template-columns: 1.2fr 1fr;
}

/* ---------- IMAGES ---------- */
.split img,
.about-block img,
.blog-block img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

/* ---------- ABOUT / BLOG BLOCKS ---------- */
.about-block,
.blog-block {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
}

.about-block img,
.blog-block img {
  width: 40%;
}

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

/* ---------- GLASS SYSTEM ---------- */
.glass,
.glass-card,
.project-card {
  background: rgba(255, 200, 120, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* ---------- GLASS HOVER ---------- */
.glass:hover,
.glass-card:hover,
.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

/* ---------- GLASS CONTENT ---------- */
.glass {
  padding: 3rem;
}

.glass h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.glass p {
  line-height: 1.7;
  opacity: 0.85;
}

/* ---------- CARDS ---------- */
.cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 4rem 0;
  flex-wrap: wrap;
}

.project-card {
  width: 260px;
  padding: 1.5rem;
}

.project-card img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 1rem;
}

/* ---------- STATEMENT ---------- */
.statement {
  max-width: 700px;
  margin: 4rem auto 0;
  text-align: center;
}

/* ---------- SCROLL CUE ---------- */
.scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  opacity: 0.6;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }

  .about-block,
  .blog-block {
    flex-direction: column;
  }

  .about-block img,
  .blog-block img {
    width: 100%;
  }

  .projects {
    grid-template-columns: 1fr;
  }
}
