:root {
  --bg: #f4f1ea;
  --bg-soft: #ece6da;
  --ink: #181818;
  --muted: #4a4a4a;
  --line: #d5ccbb;
  --brand: #22322b;
  --brand-soft: #30483d;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.45;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 5%, #ffffff 0%, transparent 30%),
    radial-gradient(circle at 85% 22%, #e4dac5 0%, transparent 25%),
    linear-gradient(135deg, #f7f3eb 0%, #efe8d9 100%);
}

.shell {
  width: min(var(--max), calc(100% - 3rem));
  margin: 0 auto;
}

.topbar {
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1rem;
  color: #fbfbfb;
  background: linear-gradient(90deg, #1f2c27, #2e4338);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  letter-spacing: 0.09em;
  text-decoration: none;
  color: var(--ink);
}

.menu,
.icons {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu {
  justify-content: center;
}

.icons {
  justify-content: flex-end;
}

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

.menu a,
.icons a {
  font-size: 0.9rem;
  color: var(--muted);
}

.menu-btn,
.mobile-menu {
  display: none;
}

.hero {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  padding: 3rem 0;
}

.eyebrow {
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: #5e5648;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.hero-copy p {
  max-width: 52ch;
  color: var(--muted);
}

.cta-row {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.btn.solid {
  background: var(--brand);
  color: #fff;
}

.btn.ghost {
  border: 1px solid var(--brand);
  color: var(--brand);
}

.hero-media img,
.split-media img,
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media {
  min-height: 540px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(32, 28, 19, 0.15);
}

.feature-band {
  margin: 1rem auto 4rem;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-band article {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 1rem;
}

.feature-band h3 {
  font-size: 1.06rem;
  margin-bottom: 0.45rem;
}

.feature-band p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.collections,
.split,
.products,
.newsletter {
  margin-bottom: 4.5rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
}

.card img {
  aspect-ratio: 3 / 4;
}

.card-meta {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-meta a {
  font-size: 0.85rem;
  color: var(--brand-soft);
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.6rem;
}

.split-media {
  border-radius: 1rem;
  overflow: hidden;
  min-height: 420px;
}

.split-copy {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.5);
  padding: clamp(1.2rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-copy p {
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.product {
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
}

.product h3 {
  font-size: 1.03rem;
  margin-bottom: 0.35rem;
}

.product p {
  margin: 0 0 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.newsletter {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.7), rgba(225, 213, 188, 0.5));
  padding: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.newsletter form {
  display: flex;
  gap: 0.6rem;
}

input,
button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font: inherit;
}

input {
  min-width: 240px;
  background: rgba(255, 255, 255, 0.8);
}

button {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  cursor: pointer;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 1.6rem 0 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #5c5548;
  font-size: 0.9rem;
}

.footer div {
  display: flex;
  gap: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.fade-in,
.fade-in-delayed,
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible,
.fade-in-delayed.visible,
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delayed {
  transition-delay: 0.15s;
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: 1fr auto auto;
  }

  .menu,
  .icons {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    cursor: pointer;
  }

  .mobile-menu {
    display: grid;
    gap: 0.8rem;
    border-bottom: 1px solid var(--line);
    padding: 0.7rem 0 1rem;
  }

  .hero,
  .split,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 1.8rem;
  }

  .hero-media {
    min-height: 380px;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter form {
    width: 100%;
  }

  input {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(var(--max), calc(100% - 1.5rem));
  }

  .feature-band,
  .card-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 330px;
  }

  .footer {
    flex-direction: column;
  }

  .newsletter form {
    flex-direction: column;
  }
}
