:root {
  --ivory: #f8f1e6;
  --ivory-light: #fffaf2;
  --sand: #eadbc4;
  --gold: #b98a47;
  --gold-soft: #d9bd85;
  --brown: #2f2118;
  --brown-soft: #6b5748;
  --muted: #8c7968;
  --shadow: 0 24px 70px rgba(47, 33, 24, 0.13);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(217, 189, 133, 0.22), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(185, 138, 71, 0.12), transparent 24%),
    linear-gradient(180deg, var(--ivory-light), var(--ivory) 34%, #f4eadb);
  color: var(--brown);
  font-family: var(--sans);
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(185, 138, 71, 0.18);
  background: rgba(248, 241, 230, 0.9);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(185, 138, 71, 0.28);
  border-radius: 50%;
  object-fit: cover;
  background: var(--sand);
}

.brand-mark span,
.footer strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  place-content: center;
  gap: 6px;
  border: 1px solid rgba(47, 33, 24, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.52);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--brown);
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(34deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-34deg);
}

.site-nav {
  position: fixed;
  inset: 84px 16px auto;
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(185, 138, 71, 0.24);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.97);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  padding: 13px 10px;
  color: var(--brown-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  gap: 28px;
  padding: 24px 18px 54px;
}

.hero-media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 30px 30px 8px 8px;
  background: var(--sand);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(47, 33, 24, 0.02), rgba(47, 33, 24, 0.36)),
    radial-gradient(circle at 72% 8%, rgba(217, 189, 133, 0.3), transparent 36%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(58px, 17vw, 126px);
  line-height: 0.88;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(39px, 10vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 8px;
  font-size: 28px;
  line-height: 1;
}

.hero-headline {
  margin-bottom: 10px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(34px, 10vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.slogan {
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(23px, 6vw, 38px);
  line-height: 1.08;
}

.hero-copy p,
.story p,
.section-heading p,
.collection-card p,
.symbol-grid p,
.raw-copy p,
.process-list p,
.contact p,
.women-panel p {
  color: var(--brown-soft);
  font-size: 16px;
  line-height: 1.76;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button-primary {
  background: var(--brown);
  color: var(--ivory-light);
  box-shadow: 0 18px 38px rgba(47, 33, 24, 0.24);
}

.button-secondary {
  border: 1px solid rgba(185, 138, 71, 0.44);
  color: var(--brown);
  background: rgba(255, 250, 242, 0.48);
}

.brand-notes {
  display: grid;
  gap: 1px;
  margin: 0 18px;
  overflow: hidden;
  border: 1px solid rgba(185, 138, 71, 0.18);
  border-radius: 18px;
}

.brand-notes span {
  padding: 16px;
  background: rgba(255, 250, 242, 0.6);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.section,
.raw-refined,
.contact {
  padding: 78px 18px;
}

.story {
  max-width: 820px;
}

.story p {
  font-size: 18px;
}

.section-heading {
  margin-bottom: 28px;
}

.collection-grid,
.symbol-grid,
.earth-grid,
.process-list {
  display: grid;
  gap: 16px;
}

.collection-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.collection-card,
.symbol-grid article,
.earth-grid article {
  align-self: start;
  height: auto;
  overflow: hidden;
  border: 1px solid rgba(185, 138, 71, 0.2);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.76);
  box-shadow: 0 18px 48px rgba(47, 33, 24, 0.1);
}

.card-carousel {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 26%, rgba(217, 189, 133, 0.24), transparent 34%),
    var(--sand);
}

.carousel-track {
  position: relative;
  width: 100%;
  block-size: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  block-size: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 360ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-dots {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dots:empty {
  display: none;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 1px solid rgba(255, 250, 242, 0.82);
  border-radius: 999px;
  background: rgba(47, 33, 24, 0.32);
  box-shadow: 0 2px 8px rgba(47, 33, 24, 0.22);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: var(--ivory-light);
}

.carousel-placeholder {
  display: grid;
  width: 100%;
  block-size: 100%;
  place-items: center;
  padding: 24px;
  color: var(--brown);
  text-align: center;
}

.carousel-placeholder strong {
  display: block;
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 500;
  line-height: 1;
}

.carousel-placeholder span {
  display: block;
  margin-top: 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card-content,
.symbol-grid article,
.earth-grid article {
  padding: 18px;
}

.collection-card span,
.symbol-grid span,
.earth-grid span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.collection-card h3,
.symbol-grid h3 {
  margin-top: 8px;
  font-size: 31px;
}

.collection-card h3::after,
.symbol-grid h3::after {
  content: "";
  display: block;
  width: 38px;
  height: 1px;
  margin-top: 14px;
  background: rgba(185, 138, 71, 0.5);
}

.collection-card p,
.symbol-grid p {
  margin-bottom: 0;
}

.earth-grid p {
  margin: 0;
  color: var(--brown-soft);
  font-size: 14px;
  line-height: 1.6;
}

.becoming {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.46), rgba(234, 219, 196, 0.42)),
    var(--ivory);
}

.symbol-grid article {
  min-height: 210px;
}

.african-earth {
  background: rgba(47, 33, 24, 0.035);
}

.earth-grid article {
  min-height: 136px;
  display: grid;
  align-content: center;
  gap: 8px;
}

.earth-grid strong {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.women {
  padding-top: 0;
}

.women-panel {
  padding: 34px 22px;
  border: 1px solid rgba(185, 138, 71, 0.22);
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 189, 133, 0.22), transparent 32%),
    rgba(255, 250, 242, 0.74);
  box-shadow: var(--shadow);
}

.women-panel .button {
  margin-top: 8px;
}

.raw-refined {
  background:
    radial-gradient(circle at 90% 0%, rgba(217, 189, 133, 0.2), transparent 34%),
    var(--brown);
  color: var(--ivory-light);
}

.raw-refined .section-kicker {
  color: var(--gold-soft);
}

.raw-copy p,
.process-list p {
  color: rgba(255, 250, 242, 0.72);
}

.process-list article {
  padding: 22px;
  border: 1px solid rgba(217, 189, 133, 0.24);
  border-radius: 10px;
  background: rgba(255, 250, 242, 0.06);
}

.process-list span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.contact {
  text-align: center;
}

.contact p {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.contact .button {
  margin-top: 8px;
}

.footer {
  display: grid;
  gap: 20px;
  padding: 34px 18px 98px;
  border-top: 1px solid rgba(185, 138, 71, 0.18);
  text-align: center;
}

.footer p {
  margin: 6px 0 0;
  color: var(--brown-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 18px;
}

.footer a {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  background: #1f8f55;
  color: white;
  box-shadow: 0 18px 36px rgba(31, 143, 85, 0.28);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .site-header {
    padding: 16px 42px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    gap: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    padding: 0;
  }

  .hero {
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
    align-items: center;
    min-height: calc(100svh - 75px);
    padding: 42px;
  }

  .hero-copy {
    order: 2;
  }

  .hero-media {
    order: 1;
    min-height: 600px;
  }

  .hero-media img {
    min-height: 600px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .brand-notes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 42px;
  }

  .section,
  .raw-refined,
  .contact {
    padding: 104px 42px;
  }

  .collection-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
  }

  .symbol-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .earth-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .raw-refined {
    display: grid;
    grid-template-columns: 0.78fr 1fr;
    gap: 42px;
    align-items: start;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .site-header,
  .hero,
  .section,
  .raw-refined,
  .contact,
  .footer {
    padding-left: max(64px, calc((100vw - 1180px) / 2));
    padding-right: max(64px, calc((100vw - 1180px) / 2));
  }

  .brand-notes {
    margin-left: max(64px, calc((100vw - 1180px) / 2));
    margin-right: max(64px, calc((100vw - 1180px) / 2));
  }

  .process-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
