:root {
  --paper: #fbf8ef;
  --ink: #171411;
  --muted: #766d61;
  --saffron: #dc9b25;
  --rose: #ba4d54;
  --indigo: #233d5c;
  --line: rgba(23, 20, 17, 0.15);
  --serif: "Bodoni Moda", Didot, Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  overflow-x: hidden;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 10px clamp(18px, 4vw, 54px);
  background: rgba(251, 248, 239, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: min-height 260ms ease, background 260ms ease, box-shadow 260ms ease;
}
.header.is-scrolled {
  min-height: 64px;
  background: rgba(251, 248, 239, .96);
  box-shadow: 0 18px 50px rgba(23,20,17,.08);
}
.header nav { display: flex; gap: 22px; align-items: center; }
.header a { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; }
.header nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(23,20,17,.72);
}
.header nav a::after {
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
.header nav a:hover::after,
.header nav a.is-active::after { transform: scaleX(1); }
.header nav a.is-active { color: var(--ink); }
.brand img { width: 172px; max-height: 58px; object-fit: contain; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}
.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(420px, 1.18fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: clamp(42px, 6vw, 78px) clamp(20px, 6vw, 86px) clamp(46px, 6vw, 82px);
}

.hero-banner {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  overflow: hidden;
  padding: 120px clamp(20px, 6vw, 86px) 42px;
  color: white;
}

.hero-banner::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(12, 10, 8, .72), rgba(12, 10, 8, .18) 58%, rgba(12, 10, 8, .4)),
    linear-gradient(0deg, rgba(12, 10, 8, .6), transparent 46%);
}

.motion-bg {
  position: absolute;
  inset: 0;
  display: flex;
  width: 300%;
  animation: bannerPan 22s infinite ease-in-out;
}

.motion-bg img {
  width: 33.333%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-banner .hero-copy p,
.hero-banner .kicker {
  color: rgba(255,255,255,.82);
}

.hero-banner .link {
  color: white;
}

.banner-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(920px, 100%);
  margin-top: clamp(46px, 8vw, 86px);
  background: rgba(255,255,255,.34);
}

.banner-cards article {
  min-height: 118px;
  padding: 22px;
  background: rgba(251, 248, 239, .14);
  backdrop-filter: blur(10px);
}

.banner-cards span {
  display: block;
  margin-bottom: 18px;
  color: #ffd37a;
  font-family: var(--serif);
  font-size: 24px;
}

.banner-cards strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
}

@keyframes bannerPan {
  0%, 26% { transform: translateX(0); }
  36%, 62% { transform: translateX(-33.333%); }
  72%, 100% { transform: translateX(-66.666%); }
}
.kicker, .section-label {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 500; line-height: 1.03; }
h1 { margin-bottom: 22px; font-size: clamp(42px, 5.2vw, 76px); letter-spacing: -.01em; }
h2 { margin-bottom: 18px; font-size: clamp(30px, 3.8vw, 52px); letter-spacing: -.01em; }
h3 { margin-bottom: 6px; font-size: 15px; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }
p { color: var(--muted); line-height: 1.65; }
.link { display: inline-block; margin-top: 8px; padding-bottom: 5px; border-bottom: 1px solid currentColor; color: var(--ink); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; }
.link.dark { color: var(--ink); }

.hero-collage {
  display: grid;
  grid-template-columns: .74fr .52fr;
  grid-auto-rows: 200px;
  gap: 16px;
}
.tile { min-height: 180px; object-fit: cover; }
.wide { grid-column: 1 / -1; }
.look-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  min-height: 100%;
  background: var(--ink);
}

.look-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.look-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(17, 14, 11, .72));
}

.look-card:hover img {
  transform: scale(1.04);
}

.look-card span {
  position: relative;
  z-index: 1;
  padding: 20px;
  color: white;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.look-one img { object-position: center top; }
.look-two img { object-position: center 18%; }
.look-three img { object-position: center 12%; }
.look-card.wide img { object-position: center 16%; }

.rituals, .wardrobe, .journal, .category-showcase, .blog-section, .social { padding: clamp(54px, 7vw, 96px) clamp(20px, 6vw, 86px); }
.ritual-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ritual-grid article { padding: clamp(28px, 4vw, 52px); border-left: 1px solid var(--line); }
.ritual-grid article:first-child { border-left: 0; }
.ritual-grid span { color: var(--saffron); font-family: var(--serif); font-size: 26px; }

.category-showcase {
  background: #fffdf8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 28px; }
.section-head.compact {
  margin-bottom: 34px;
}

.section-head.compact h2 {
  max-width: 720px;
}

.category-grid {
  display: grid;
  grid-template-columns: 1.25fr .82fr .82fr;
  gap: 22px;
}

.category-card {
  position: relative;
  min-height: 520px;
  display: grid;
  align-content: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.category-card.large {
  min-height: 650px;
}

.category-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: .82;
  transition: transform 500ms ease;
}

.category-card:hover img {
  transform: scale(1.04);
}

.category-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 38%, rgba(16, 13, 10, .78));
}

.category-card div {
  position: relative;
  z-index: 1;
  padding: 26px;
}

.category-card span {
  display: block;
  margin-bottom: 10px;
  color: #f3c974;
  font-family: var(--serif);
  font-size: 24px;
}

.category-card p {
  max-width: 330px;
  margin-bottom: 0;
  color: rgba(251, 248, 239, .75);
}

.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-photo {
  aspect-ratio: 3 / 4;
  margin-bottom: 16px;
  object-fit: cover;
  background: #e5ded0;
  transition: filter 260ms ease, transform 260ms ease;
}

.products article:hover .product-photo {
  filter: saturate(1.06) contrast(1.02);
  transform: translateY(-3px);
}

.festival-banner {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  text-align: center;
}

.festival-banner img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

.festival-banner::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(22, 18, 13, .58), rgba(22, 18, 13, .18));
}

.festival-banner div {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 40px));
}

.festival-banner .section-label,
.festival-banner p {
  color: rgba(255,255,255,.82);
}

.craft {
  display: grid;
  grid-template-columns: minmax(300px, .95fr) minmax(280px, .72fr);
  gap: clamp(34px, 7vw, 94px);
  align-items: center;
  padding: clamp(58px, 8vw, 110px) clamp(20px, 6vw, 86px);
  background: white;
}
.craft img { aspect-ratio: 5 / 4; object-fit: cover; }

.journal { text-align: center; }
.journal h2 { max-width: 680px; margin-inline: auto; }
.journal-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 34px; border: 1px solid var(--line); }
.journal-strip span { padding: 22px 12px; border-left: 1px solid var(--line); font-family: var(--serif); font-size: 24px; }
.journal-strip span:first-child { border-left: 0; }

.blog-section {
  background: white;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr .72fr;
  gap: 24px;
}

.blog-grid article {
  min-width: 0;
}

.blog-grid img {
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
  object-fit: cover;
}

.blog-grid h3,
.text-blog h3 {
  max-width: 440px;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.05;
  text-transform: none;
  letter-spacing: 0;
}

.text-blog {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.text-blog span {
  margin-bottom: 28px;
  color: var(--saffron);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.social {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  background: #f4efe3;
}

.testimonials {
  padding: clamp(58px, 8vw, 110px) clamp(20px, 6vw, 86px);
  background: #171411;
  color: var(--paper);
  text-align: center;
}

.testimonials .section-label,
.testimonials p {
  color: rgba(251,248,239,.74);
}

.testimonials h2 {
  max-width: 880px;
  margin-inline: auto;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1120px;
  margin: 38px auto 0;
  background: rgba(251,248,239,.18);
}

.quote-grid article {
  padding: 34px;
  background: #211c18;
  text-align: left;
}

.quote-grid p {
  color: rgba(251,248,239,.84);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.18;
}

.quote-grid span {
  color: var(--saffron);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.social-copy {
  max-width: 430px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.social-grid img,
.social-card {
  aspect-ratio: 1;
}

.social-grid img {
  height: 100%;
  object-fit: cover;
}

.social-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background: linear-gradient(145deg, var(--rose), var(--saffron));
  color: white;
}

.social-card span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.social-card strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
}

.footer {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: 34px;
  padding: 44px clamp(20px, 6vw, 86px);
  background: #191411;
  color: var(--paper);
}
.footer p { color: rgba(251,248,239,.72); }
form { display: grid; grid-template-columns: 1fr 140px; gap: 12px; align-self: center; }
input, button { height: 44px; border: 1px solid rgba(251,248,239,.42); background: transparent; color: inherit; font: inherit; }
input { padding: 0 14px; }
button { text-transform: uppercase; letter-spacing: .12em; font-size: 11px; }

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

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 900px) {
  .header { display: flex; }
  .menu-toggle { display: block; }
  .header nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: grid;
    gap: 0;
    padding: 12px 18px;
    background: rgba(251,248,239,.98);
    border: 1px solid var(--line);
    box-shadow: 0 24px 70px rgba(23,20,17,.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms ease;
  }
  .header nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .header nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }
  .header nav a:last-child { border-bottom: 0; }
  .hero, .craft { grid-template-columns: 1fr; }
  .hero-collage, .ritual-grid, .products, .journal-strip, .category-grid, .blog-grid, .social, .social-grid, .banner-cards, .quote-grid { grid-template-columns: 1fr 1fr; }
  .category-card.large { min-height: 520px; }
  .social-copy { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .brand img { width: 138px; }
  .hero-collage, .ritual-grid, .products, .journal-strip, .footer, .category-grid, .blog-grid, .social, .social-grid, .banner-cards, .quote-grid { grid-template-columns: 1fr; }
  .hero-banner { min-height: 760px; padding-top: 90px; }
  .ritual-grid article, .journal-strip span { border-left: 0; border-top: 1px solid var(--line); }
  .category-card, .category-card.large { min-height: 430px; }
  form { grid-template-columns: 1fr; }
}
