:root {
  --ink: #1f1612;
  --copper: #7a2f1a;
  --clay: #b88364;
  --sand: #f7f1ea;
  --linen: #f1e6dc;
  --olive: #6b6d50;
  --thread: rgba(122, 47, 26, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Figtree", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--sand), var(--linen));
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  padding: 80px 8vw;
  color: #fff;
  background-image: url("../img/IMG_2062-web.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/IMG_2062-web.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(8px) saturate(115%);
  transform: scale(1.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(10, 6, 4, 0.82), rgba(10, 6, 4, 0.25)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.2'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: 0.8;
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.hero-logo {
  width: min(340px, 80vw);
  margin-bottom: 24px;
  opacity: 0;
  animation: rise 1s ease forwards;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  margin: 0 0 12px;
  opacity: 0;
  animation: rise 1s ease 0.15s forwards;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.15rem;
  margin: 0 0 28px;
  opacity: 0;
  animation: rise 1s ease 0.3s forwards;
}

.btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 999px;
  background: var(--copper);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 0;
  animation: rise 1s ease 0.45s forwards;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.section {
  padding: 80px 8vw;
}

.section-title {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  margin-bottom: 24px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--olive);
  margin-bottom: 18px;
}

.badge::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--thread);
}

.feature {
  background: #fff;
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 30px 60px rgba(31, 22, 18, 0.08);
  border: 1px solid rgba(122, 47, 26, 0.08);
  position: relative;
}

.feature::after {
  content: "";
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 36px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  opacity: 0.35;
}

.location {
  color: #fff;
  background-image: linear-gradient(180deg, rgba(18, 14, 12, 0.65), rgba(18, 14, 12, 0.2)),
    url("../img/manitou.jpg");
  background-size: cover;
  background-position: center;
}

.stitch {
  width: min(520px, 70vw);
  margin: 0 auto;
  margin-bottom: 60px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.stitch span {
  height: 1px;
  flex: 1;
  background: var(--thread);
}

.stitch::after,
.stitch::before {
  content: "•";
  color: var(--thread);
  font-size: 1.2rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.gallery figure {
  margin: 0;
  position: relative;
}

.gallery figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 14px;
  background: rgba(31, 22, 18, 0.75);
  color: #fff;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact {
  background: #fff;
  border-radius: 36px;
  padding: 56px;
  box-shadow: 0 30px 60px rgba(31, 22, 18, 0.08);
  border: 1px solid rgba(122, 47, 26, 0.08);
}

.contact-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  font-size: 1.05rem;
}

.footer {
  padding: 40px 8vw 60px;
  font-size: 0.95rem;
  color: rgba(31, 22, 18, 0.7);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="1"] {
  transition-delay: 0.12s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.24s;
}

.reveal[data-delay="3"] {
  transition-delay: 0.36s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {

  .hero-logo,
  .hero h1,
  .hero p,
  .btn,
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 70px 6vw;
  }

  .feature,
  .contact {
    padding: 32px;
  }
}