:root {
  --dark: #1e2e24;
  --light: #fef5e3;
  --soft: #f8ead0;
  --muted: #efe3cc;
  --accent: #c9a668;
  --serif: "Cormorant Garamond", serif;
  --sans: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--light);
  color: var(--dark);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

figure {
  margin: 0;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 74px;
  padding: 1rem 2rem;
  background: var(--dark);
  border-bottom: 1px solid rgba(201, 166, 104, 0.28);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand,
.site-header a {
  color: var(--light);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.site-header nav {
  display: flex;
  gap: 1.6rem;
}

.site-header nav a {
  position: relative;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.35s ease;
}

.site-header nav a:hover::after {
  width: 100%;
}

/* TYPOGRAPHY */

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(4rem, 8.5vw, 9rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

h2 {
  font-family: var(--sans);
  font-size: clamp(0.78rem, 0.95vw, 0.95rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
  color: var(--accent);
}

h3 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

p {
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  max-width: 620px;
  line-height: 1.85;
}

p + p {
  margin-top: 1.25rem;
}

/* HERO */

.hero {
  position: relative;
  height: 78vh;
  min-height: 600px;
  max-height: 820px;
  overflow: hidden;
  background: var(--dark);
}

.hero img {
  position: absolute;
  inset: 0;
  z-index: 0;
  object-position: center 42%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(30, 46, 36, 0.88) 0%,
    rgba(30, 46, 36, 0.64) 45%,
    rgba(30, 46, 36, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 0 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--light);
  max-width: 980px;
}

.hero-content h1 {
  margin-bottom: 2rem;
}

.hero-content p {
  color: var(--light);
  margin-bottom: 2.4rem;
}

/* SECTIONS */

.section {
  padding: clamp(7rem, 13vw, 14rem) 7vw;
}

.soft {
  background: linear-gradient(
    180deg,
    var(--light) 0%,
    var(--soft) 48%,
    var(--light) 100%
  );
}

.dark {
  background: var(--dark);
  color: var(--light);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.text-left {
  max-width: 720px;
  margin-right: auto;
}

.text-right {
  max-width: 720px;
  margin-left: auto;
}

.statement,
.cta {
  padding: clamp(8rem, 14vw, 15rem) 7vw;
  text-align: center;
}

.statement h3,
.cta h3 {
  max-width: 1000px;
  margin: 0 auto;
}

.cta .btn {
  margin-top: 2.6rem;
}

/* IMAGES */

.image-card {
  position: relative;
  padding: 0.75rem;
  border: 1px solid rgba(201, 166, 104, 0.48);
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0.75rem;
  border: 1px solid rgba(30, 46, 36, 0.12);
  pointer-events: none;
}

.image-card.tall {
  height: clamp(500px, 62vw, 760px);
  transform: translateY(-2.5rem);
}

.image-card.wide {
  height: clamp(360px, 42vw, 540px);
  transform: translateY(2.5rem);
}

/* BUTTON */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 148px;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--light);
  color: var(--dark);
  border: 1px solid var(--light);
  transition:
    background 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease,
    transform 0.4s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: transparent;
  color: var(--light);
  border-color: var(--accent);
}

.section .btn,
.soft .btn {
  background: var(--dark);
  color: var(--light);
  border-color: var(--dark);
}

.section .btn:hover,
.soft .btn:hover {
  background: transparent;
  color: var(--dark);
  border-color: var(--accent);
}

/* FOOTER */

.site-footer {
  background: var(--dark);
  color: var(--light);
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  justify-content: center;
  border-top: 1px solid rgba(201, 166, 104, 0.35);
}

.site-footer a {
  color: var(--light);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1rem;
  opacity: 0.78;
}

.site-footer a:hover {
  color: var(--accent);
  opacity: 1;
}

/* MOBILE */

@media (max-width: 860px) {
  .site-header {
    min-height: 70px;
    padding: 0.9rem 1.1rem;
  }

  .site-header nav {
    gap: 0.9rem;
  }

  .brand,
  .site-header a {
    font-size: 0.95rem;
  }

  .hero {
    height: 82vh;
    min-height: 620px;
  }

  .hero::after {
    background: linear-gradient(
      to top,
      rgba(30, 46, 36, 0.88),
      rgba(30, 46, 36, 0.35),
      transparent
    );
  }

  .hero-content {
    justify-content: flex-end;
    padding: 0 1.2rem 5rem;
  }

  .section,
  .statement,
  .cta {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .image-card.tall,
  .image-card.wide {
    height: 520px;
    transform: none;
  }

  h1 {
    font-size: clamp(4rem, 17vw, 6.8rem);
  }

  h3 {
    font-size: clamp(2.6rem, 12vw, 4.8rem);
  }

  p {
    font-size: 1.03rem;
  }
}