/* ── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #262053;
  --white:  #ffffff;
  --cream:  #f8f5f1;
  --border: #e9e3e0;
  --text:   #262053;
  --gray:   #8a8a8a;
  --font-sans: 'Jost', Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 13px 28px;
  border: 1.5px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn-outline-white  { border-color: #fff; color: #fff; background: transparent; }
.btn-outline-white:hover { background: #fff; color: var(--navy); }

.btn-solid-white    { background: #fff; color: var(--navy); border-color: #fff; }
.btn-solid-white:hover { background: rgba(255,255,255,0.85); }

.btn-outline-dark   { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline-dark:hover { background: var(--navy); color: #fff; }

.btn-outline-dark-sm { border-color: var(--navy); color: var(--navy); background: transparent; font-size: 11px; padding: 9px 20px; }
.btn-outline-dark-sm:hover { background: var(--navy); color: #fff; }

.btn-outline-white-sm { border-color: #fff; color: #fff; background: transparent; font-size: 11px; padding: 10px 24px; }
.btn-outline-white-sm:hover { background: #fff; color: var(--navy); }

.btn-solid-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-solid-navy:hover { opacity: 0.85; }

.btn-text { color: var(--navy); font-size: 12px; font-weight: 500; letter-spacing: 0.08em; border: none; padding: 0; background: none; }
.btn-text:hover { opacity: 0.65; }

/* ── Header ─────────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s;
}

.site-header.scrolled { box-shadow: 0 2px 16px rgba(38,32,83,0.08); }

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo { flex-shrink: 0; display: flex; align-items: center; gap: 10px; }
.logo-img { height: 36px; width: auto; }

/* ── Nav ────────────────────────────────────────────────────────────────────── */
.site-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.nav-item { position: relative; }

.nav-item > a {
  display: block;
  padding: 0 14px;
  line-height: 64px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--navy);
  transition: opacity 0.2s;
}

.nav-item > a:hover { opacity: 0.6; }

.chevron { font-size: 10px; margin-left: 3px; }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(38,32,83,0.1);
  padding: 24px 32px;
  gap: 32px;
  min-width: 480px;
  flex-direction: row;
  z-index: 999;
}

.nav-item:hover .dropdown { display: flex; }

.dropdown-col { display: flex; flex-direction: column; gap: 8px; min-width: 140px; }

.dropdown-heading {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.dropdown a {
  font-size: 13px;
  color: var(--navy);
  transition: opacity 0.2s;
}

.dropdown a:hover { opacity: 0.55; }
.dropdown-featured { font-weight: 500; }

/* Utilities */
.header-utils {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.currency-sel {
  font-size: 11px;
  letter-spacing: 0.06em;
  cursor: pointer;
  color: var(--navy);
}

.util-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--navy);
}

.util-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
}

.cart-count {
  position: absolute;
  top: -6px; right: -7px;
  width: 16px; height: 16px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
}

/* ── Hero ───────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 64px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.45));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  margin-bottom: 16px;
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 36px;
  opacity: 0.9;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}
.dot.active { background: #fff; }

/* ── Eyebrow ────────────────────────────────────────────────────────────────── */
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.eyebrow-light {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.center { text-align: center; }

/* ── Section titles ─────────────────────────────────────────────────────────── */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--navy);
}

.section-title-light {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #fff;
}

.section-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #35302e;
  margin-bottom: 32px;
  max-width: 520px;
}

.section-body-light {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

.section-body-light--narrow { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }

/* ── Split section (image + text) ───────────────────────────────────────────── */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.split-image { overflow: hidden; }
.split-image img { width: 100%; height: 100%; object-fit: cover; }

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

.cta-group { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

/* ── Dark section ───────────────────────────────────────────────────────────── */
.section-dark {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.section-dark--centered {
  display: block;
  text-align: center;
  padding: 100px 32px;
}

.dark-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}

.dark-image { overflow: hidden; }
.dark-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Collections ────────────────────────────────────────────────────────────── */
.section-collections {
  padding: 96px 0;
  background: var(--cream);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.collections-grid--6 {
  grid-template-columns: repeat(3, 1fr);
}

.collection-card { display: flex; flex-direction: column; gap: 14px; }

.collection-img-wrap {
  overflow: hidden;
  border-radius: 2px;
}

.collection-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.collection-name { font-size: 15px; font-weight: 500; }
.collection-from { font-size: 13px; color: var(--gray); font-weight: 300; }

/* ── Engagement Guide ───────────────────────────────────────────────────────── */
.section-guide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.guide-image { overflow: hidden; }
.guide-image img { width: 100%; height: 100%; object-fit: cover; }

.guide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  background: var(--white);
}

/* ── Blog ───────────────────────────────────────────────────────────────────── */
.section-blog { padding: 96px 0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.blog-card { display: flex; flex-direction: column; gap: 16px; }

.blog-img-wrap { overflow: hidden; border-radius: 2px; }
.blog-img-wrap img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.03); }

.blog-title {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  font-family: var(--font-serif);
}

/* ── Footer ─────────────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: #fff; }

.footer-newsletter {
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 56px 0;
  text-align: center;
}

.footer-newsletter-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.footer-newsletter-sub {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 13px 16px;
  font-size: 13px;
  font-family: var(--font-sans);
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.07);
  color: #fff;
  outline: none;
  border-right: none;
  border-radius: 3px 0 0 3px;
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }

.newsletter-form .btn-solid-navy {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
  border-radius: 0 3px 3px 0;
  font-size: 11px;
}

.footer-main { padding: 64px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo { height: 32px; width: auto; filter: brightness(0) invert(1); margin-bottom: 20px; }

.footer-social { display: flex; gap: 16px; }
.footer-social a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-social a:hover { color: #fff; }

.footer-heading {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-link:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ── Shop Product Grids ──────────────────────────────────────────────────────── */
.section-shop {
  padding: 80px 0;
  background: var(--white);
}

.section-shop--cream { background: var(--cream); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-img-wrap {
  overflow: hidden;
  border-radius: 2px;
  background: #f5f2ee;
}

.product-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}

.product-detail {
  font-size: 12px;
  color: var(--gray);
  font-weight: 300;
  margin: 0;
  letter-spacing: 0.02em;
}

.product-price {
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
  margin: 0;
}

/* ── Mobile nav toggle ──────────────────────────────────────────────────────── */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.25s, opacity 0.25s;
  border-radius: 1px;
}

.mobile-menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 998;
  padding: 0 20px 16px;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(38,32,83,0.08);
}

.mobile-nav.is-open { display: flex; }

.mobile-nav a {
  display: block;
  padding: 15px 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
}

.mobile-nav a:last-child { border-bottom: none; }

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .collections-grid--6 { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Header */
  .site-nav { display: none; }
  .currency-sel { display: none; }
  .util-link { display: none; }
  .mobile-menu-toggle { display: flex; }
  .header-inner { gap: 12px; }

  /* Hero */
  .hero { min-height: 80vh; height: 80vh; margin-top: 64px; }
  .hero-subtitle { font-size: 14px; margin-bottom: 28px; }
  .hero-ctas { gap: 12px; }

  /* Sections */
  .section-collections { padding: 56px 0; }
  .section-blog { padding: 56px 0; }
  .section-shop { padding: 56px 0; }
  .section-dark--centered { padding: 64px 24px; }

  /* Split layouts → single column */
  .section-split,
  .section-guide,
  .section-dark:not(.section-dark--centered) { grid-template-columns: 1fr; }
  .split-content, .guide-content, .dark-inner { padding: 48px 24px; }
  .dark-image { min-height: 280px; }

  /* Grids */
  .collections-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .collections-grid--6 { grid-template-columns: 1fr 1fr; gap: 16px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* Images */
  .collection-img-wrap img { height: 220px; }
  .product-img-wrap img { height: 200px; }

  /* Newsletter */
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid rgba(255,255,255,0.25); border-bottom: none; border-radius: 3px 3px 0 0; }
  .newsletter-form .btn-solid-navy { border-radius: 0 0 3px 3px; text-align: center; padding: 14px; }

  /* Footer */
  .footer-main { padding: 48px 0 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Header */
  .header-inner { padding: 0 16px; height: 56px; }
  .logo-img { height: 28px; }
  .mobile-nav { top: 56px; }

  /* Hero */
  .hero { min-height: 88vh; height: 88vh; margin-top: 56px; }
  .hero-content { padding: 0 16px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 280px; text-align: center; }

  /* Section titles */
  .section-body { font-size: 14px; }

  /* Sections */
  .section-collections { padding: 44px 0; }
  .section-blog { padding: 44px 0; }
  .section-shop { padding: 44px 0; }
  .section-dark--centered { padding: 52px 16px; }
  .split-content, .guide-content, .dark-inner { padding: 40px 16px; }

  /* Grids */
  .collections-grid { grid-template-columns: 1fr; }
  .collections-grid--6 { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Images */
  .collection-img-wrap img { height: 180px; }
  .product-img-wrap img { height: 170px; }
  .blog-img-wrap img { height: 200px; }

  /* Footer */
  .footer-main { padding: 40px 0 28px; }
  .footer-newsletter { padding: 40px 0; }
}
