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

html {
  scroll-behavior: smooth;
}

body {
  background: #f7f1ea;
  color: #111;
  font-family: Georgia, serif;
  line-height: 1.6;
}

/* --- NAVIGATION --- */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8% 10px;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-size: 15px;
}

/* --- HERO SECTION (DESKTOP) --- */
.hero {
  padding-bottom: 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10px;
  align-items: start;
  padding: 24px 8% 20px;
}

.hero-content {
  width: 100%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 14px;
  color: #8d3c3c;
  font-size: 13px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

h1 {
  font-size: clamp(58px, 8vw, 104px);
  line-height: 0.9;
  margin-bottom: 24px;
}

.subtitle {
  font-size: 22px;
  line-height: 1.5;
  max-width: 600px;
  margin-bottom: 34px;
}

.button {
  display: inline-block;
  background: #111;
  color: #fff;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 40px;
  font-size: 15px;
  transition: opacity 0.3s ease;
}

.hero-photo-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: -35px;
}

.hero-image {
  width: 100%;
  max-width: 430px;
  height: 590px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

/* --- CONTENT SECTIONS --- */
.section {
  padding: 45px 8% 70px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  margin-bottom: 24px;
}

.section p {
  font-size: 22px;
  line-height: 1.65;
  max-width: 800px;
  margin-bottom: 24px;
}

blockquote {
  margin-top: 38px;
  padding-left: 24px;
  border-left: 4px solid #8d3c3c;
  font-size: 32px;
  line-height: 1.25;
  font-style: italic;
}

.dark {
  background: #111;
  color: #f7f1ea;
  max-width: none;
}

.dark .eyebrow {
  color: #d8aaa0;
}

footer {
  text-align: center;
  padding: 40px 8%;
  font-size: 14px;
}

/* --- MOBILE STYLES --- */
@media (max-width: 800px) {
  nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    flex-direction: column;
    gap: 8px;
    padding: 22px 7% 12px;
  }

  .logo, .nav-links a {
    color: white;
  }

  .hero {
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
  }

  .hero-grid {
    display: block;
    padding: 0;
  }

  .hero-photo-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
    margin: 0;
  }

  .hero-image {
    width: 100%;
    height: 100%;
    min-height: 80vh;
    object-fit: cover;
    object-position: center top;
    border-radius: 0;
    max-width: none;
    box-shadow: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    min-height: 80vh;
    padding: 100px 7% 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    color: white;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.35) 0%,
      rgba(0,0,0,0.0) 30%,
      rgba(0,0,0,0.0) 50%,
      rgba(0,0,0,0.75) 75%,
      rgba(0,0,0,0.88) 100%
    );
  }

  .eyebrow {
    align-self: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 12px;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 900;
    margin-bottom: auto;
    color: #f7d6d6;
  }

  h1 {
    font-size: 34px;
    max-width: 100%;
    margin-bottom: 14px;
    margin-top: 160px;
  }

  .subtitle {
    font-size: 18px;
    max-width: 100%;
    margin-bottom: 0;
  }

  .button {
    width: 90%;
    background: #8d3c3c;
    font-weight: bold;
  }

  .section .eyebrow {
    color: #8d3c3c;
    margin-bottom: 10px;
    justify-content: flex-start;
  }

  .dark .eyebrow {
    color: #d8aaa0;
    justify-content: flex-start;
  }

  h2 {
    font-size: 36px;
    text-align: left;
  }

  .section p {
    font-size: 18px;
    text-align: left;
  }

  blockquote {
    font-size: 24px;
  }
}
