:root {
  /* Brand Colors */
  --bg-100: #faf6f0;       
  --bg-200: #f1ece4;       
  --bg-300: #e7e1d8;      
  --card-bg: #f5eadb;       
  --navy: #0e1e33;         
  --gold: #d6a95c;        
  --shadow: rgba(14, 30, 51, 0.15);
}


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

body {
  background: linear-gradient(to bottom,
    var(--bg-100) 0%,
    var(--bg-200) 50%,
    var(--bg-300) 100%
  );
  color: var(--navy);
  font-family: "Inter", sans-serif;
  line-height: 1.5;
}

h1, h2 {
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
}

h1 {
  font-size: 4rem;
  letter-spacing: -0.05rem;
}

h2 {
  font-size: 3rem;
  letter-spacing: -0.03rem;
  position: relative;
}

h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: var(--gold);
  display: block;
  margin-top: 0.5rem;
  border-radius: 2px;
}

p {
  font-size: 1.35rem;
  font-weight: 400;
  text-align: left;
  color: var(--navy);
}

.text-area p {
  word-spacing: 3px;
}


.main-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 8px 22px var(--shadow);
  background-color: #f9f5ef;
}


.intro,
.outro {
  position: relative;
  width: 100%;
  height: 100svh;
  background: var(--card-bg);
  border-radius: 1.5rem;
  display: flex;
  justify-content: center;
  margin: auto;
  max-width: 1700px;
  align-items: center;
  box-shadow: 0 12px 32px var(--shadow);
}

.intro h1,
.outro h1 {
  width: 70%;
  text-align: center;
}

.main-content {
  width: 100%;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 12rem;
}

.text-area h2 {
  white-space: nowrap;
}
.main-content .row {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  align-items: center;
}

.main-content .col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-content .text-area {
  width: 100%;
  padding: 2.5rem;
  background-color: var(--card-bg);
  border-radius: 1.25rem;
  box-shadow: 0 10px 26px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border-left: 8px solid var(--gold);
}

.intro,
.outro,
.main-content .row {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1s ease, transform 1.5s ease;
}

.intro.show,
.outro.show,
.main-content .row.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1350px) {
  .text-area h2 {
    white-space: normal;
  }
}

@media (max-width: 900px) {
  .main-content .row {
    flex-direction: column;
  }

  .main-content .row:nth-child(even) {
    flex-direction: column-reverse;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  p {
    font-size: 1.15rem;
  }

  img {
    height: 280px;
  }
}
