:root {
  --ivory: #f8f4ee;
  --soft-beige: #e8ddd0;
  --sand: #d5c2ac;
  --taupe: #b8a28c;
  --brown: #5a4638;
  --charcoal: #2f2925;
  --text: #332c27;
  --muted: #7a6d63;
  --white: #ffffff;
  --line: #e6ddd3;

  /* maroon accents */
  --maroon: #7f2333;
  --maroon-deep: #651b29;
  --maroon-soft: #f3e7ea;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--ivory);
  color: var(--text);
  font-weight: 300;
  line-height: 1.5;
}

/* NAVIGATION */
.site-nav {
  background: rgba(248, 244, 238, 0.96);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 48px;
  flex-wrap: wrap;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  color: var(--charcoal);
  letter-spacing: 0.18em;
  font-weight: 400;
}

.nav-logo-img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a,
.nav-cart a {
  color: var(--brown);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
}

.nav-links a:hover,
.nav-cart a:hover {
  color: var(--maroon);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  min-height: 620px;
  background: linear-gradient(to right, #f7f1e9 0%, #efe5d8 100%);
}

.hero-content {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-image {
  min-height: 420px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 560px;
}

.hero-title em {
  color: var(--maroon);
  font-style: italic;
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 470px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
  display: inline-block;
  padding: 13px 28px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--maroon);
  color: var(--ivory);
  font-weight: 400;
}

.btn-primary:hover {
  background: var(--maroon-deep);
}

.btn-outline {
  border: 1px solid var(--maroon);
  color: var(--maroon);
}

.btn-outline:hover {
  background: var(--maroon-soft);
}

/* MARQUEE */
.marquee {
  background: var(--maroon-soft);
  border-top: 1px solid #ead2d8;
  border-bottom: 1px solid #ead2d8;
  padding: 12px 24px;
  text-align: center;
}

.marquee p {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--maroon-deep);
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  margin-bottom: 42px;
}

.eyebrow {
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 12px;
  font-weight: 400;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}

/* CATEGORIES */
.categories,
.products {
  padding: 72px 60px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cat-card {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 3 / 4;
  text-decoration: none;
  border-radius: 2px;
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}

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

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(70, 28, 37, 0.62) 0%, transparent 58%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 28px;
}

.cat-overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--ivory);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
}

/* FEATURED STRIP */
.featured-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(210px, 1fr));
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.featured-strip::-webkit-scrollbar {
  height: 8px;
}

.featured-strip::-webkit-scrollbar-thumb {
  background: #c7a2ab;
  border-radius: 20px;
}

.product-card {
  background: var(--white);
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  min-width: 210px;
}

.product-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.product-info {
  padding: 16px 16px 18px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.product-price {
  font-size: 0.8rem;
  color: var(--maroon);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* FOOTER */
.site-footer {
  background: #f1e8de;
  border-top: 1px solid var(--line);
  padding: 48px 60px 28px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--charcoal);
  letter-spacing: 0.16em;
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-links {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.72rem;
  color: var(--brown);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--maroon);
}

.footer-copy {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* TABLET */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: 2;
    min-height: 380px;
  }

  .hero-content {
    order: 1;
    padding: 56px 40px;
  }

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

  .categories,
  .products,
  .site-footer {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .site-nav {
    padding: 16px 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-logo {
    font-size: 1.3rem;
    letter-spacing: 0.12em;
  }

  .nav-logo-img {
    width: 36px;
    height: 36px;
  }

  .nav-links {
    width: 100%;
    gap: 14px 18px;
    justify-content: flex-start;
  }

  .nav-links a,
  .nav-cart a {
    font-size: 0.68rem;
  }

  .hero-content {
    padding: 42px 20px 34px;
  }

  .hero-title {
    font-size: 2.7rem;
    max-width: 100%;
  }

  .hero-sub {
    font-size: 0.92rem;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-outline {
    text-align: center;
    width: 100%;
  }

  .hero-image {
    min-height: 320px;
  }

  .marquee {
    padding: 12px 14px;
  }

  .marquee p {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    line-height: 1.6;
  }

  .categories,
  .products,
  .site-footer {
    padding: 42px 20px;
  }

  .cat-grid {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 2rem;
  }

  .featured-strip {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .product-card {
    min-width: 72%;
    scroll-snap-align: start;
  }

  .footer-links {
    flex-direction: column;
    gap: 14px;
  }

  .footer-copy {
    line-height: 1.6;
  }
}