/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Calibri, -apple-system, sans-serif;
  color: #2D2D2D;
  background: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ========== BRAND TOKENS ========== */
:root {
  --gold: #F9AE17;
  --navy: #1E3A5F;
  --gray: #9B9B9B;
  --dark: #2D2D2D;
  --cream: #FDF8F0;
  --green: #2D6A4F;
  --coral: #E07A5F;
  --white: #FFFFFF;
  --font-display: 'Josefin Sans', sans-serif;
  --font-body: 'Segoe UI', Calibri, -apple-system, sans-serif;
}

/* ========== ANNOUNCEMENT BAR ========== */
.announcement-bar {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.5px;
}
.announcement-bar span { color: var(--gold); font-weight: 600; }

/* ========== NAVIGATION ========== */
.nav-wrapper {
  background: var(--white);
  border-bottom: 1px solid #ECECEC;
  position: sticky;
  top: 0;
  z-index: 1000;
}
nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.nav-logo-img {
  height: 48px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  background: var(--white);
  border: 1px solid #ECECEC;
  min-width: 220px;
  padding: 12px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0.3px;
}
.dropdown-menu a:hover { background: var(--cream); }
.dropdown-menu a::after { display: none; }

/* Cart icon */
.nav-cart {
  position: relative;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--font-display);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -14px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: 0.3s;
}

/* ========== HERO ========== */
.hero {
  background: var(--gold);
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--green);
  opacity: 0.6;
}
.hero::after {
  content: '';
  position: absolute;
  left: 52px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--white);
  opacity: 0.4;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 80px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-monogram {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 2;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-text h1 strong {
  font-weight: 600;
  display: block;
}
.hero-text p {
  font-size: 18px;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 440px;
  line-height: 1.7;
}
.hero-cta {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 40px;
  transition: all 0.3s;
}
.hero-cta:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  object-fit: cover;
}

/* ========== SECTION SHARED ========== */
section { padding: 80px 24px; }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 16px;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ========== SUBPAGE HERO ========== */
.subpage-hero {
  background: var(--navy);
  padding: 60px 24px 48px;
  position: relative;
  overflow: hidden;
}
.subpage-hero::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--green);
  opacity: 0.4;
}
.subpage-hero .section-label { color: var(--gold); }
.subpage-hero .section-title { color: var(--white); }
.subpage-hero .section-subtitle { color: rgba(255,255,255,0.7); }

/* ========== HOW IT WORKS ========== */
.how-it-works { background: var(--cream); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.step {
  text-align: center;
  padding: 40px 24px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.step p {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.7;
  max-width: 300px;
  margin: 0 auto;
}

/* ========== SHOP BY COLLECTION ========== */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.collection-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--cream);
  transition: transform 0.3s;
}
.collection-card:hover { transform: translateY(-4px); }
.collection-card:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.collection-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}
.collection-card:hover .collection-card-bg { transform: scale(1.05); }
.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,58,95,0.85) 0%, rgba(30,58,95,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.collection-card-overlay h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.collection-card-overlay p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* ========== FEATURED PRODUCTS ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.product-card {
  cursor: pointer;
  transition: transform 0.3s;
}
.product-card:hover { transform: translateY(-4px); }
.product-image {
  aspect-ratio: 1;
  background: var(--cream);
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-image img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 2;
}
.product-card h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.product-card .product-collection {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-card .product-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

/* ========== SOCIAL / BRAND STORY ========== */
.brand-story {
  background: var(--gold);
  position: relative;
  overflow: hidden;
}
.brand-story::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--green);
  opacity: 0.5;
}
.brand-story .section-inner {
  padding-left: 76px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.brand-story .section-label { color: var(--navy); }
.brand-story .section-title {
  color: var(--white);
  font-size: 36px;
  max-width: 700px;
}
.brand-story p {
  color: var(--white);
  opacity: 0.9;
  max-width: 600px;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.brand-story-cta {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  margin-top: 16px;
  transition: all 0.3s;
}
.brand-story-cta:hover {
  background: var(--dark);
  transform: translateY(-2px);
}
.brand-story-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

/* ========== NEWSLETTER ========== */
.newsletter {
  background: var(--cream);
  text-align: center;
}
.newsletter .section-title { margin-left: auto; margin-right: auto; }
.newsletter .section-subtitle { margin-left: auto; margin-right: auto; }
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid #ECECEC;
  border-right: none;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-form input[type="email"]:focus { border-color: var(--gold); }
.newsletter-form button {
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--navy); }

/* ========== FOOTER ========== */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 24px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand-logo {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-display);
  letter-spacing: 1px;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--gold); }

/* ========== ROXIE EASTER EGG ========== */
.roxie-easter-egg {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 64px;
  height: 64px;
  opacity: 0.25;
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: auto;
  cursor: pointer;
  z-index: 999;
  filter: brightness(0) invert(1) drop-shadow(0 0 1px rgba(255,255,255,0.3));
}
.roxie-easter-egg:hover {
  opacity: 0.7;
  transform: scale(1.3);
}
.roxie-easter-egg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ========== CONTENT PAGES ========== */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.page-content h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin: 40px 0 16px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p {
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 16px;
}
.page-content ul {
  margin: 0 0 16px 24px;
  color: var(--dark);
  line-height: 1.8;
}
.page-content a { color: var(--gold); text-decoration: underline; }

/* ========== CONTACT FORM ========== */
.contact-form {
  max-width: 600px;
}
.contact-form .form-group {
  margin-bottom: 24px;
}
.contact-form label {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ECECEC;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button {
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 40px;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form button:hover { background: var(--navy); }

/* ========== FAQ ========== */
.faq-item {
  border-bottom: 1px solid #ECECEC;
  padding: 24px 0;
}
.faq-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  cursor: pointer;
}
.faq-item p {
  color: var(--dark);
  line-height: 1.8;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding-left: 80px; }
  .hero-image { display: none; }
  .hero-monogram { left: 50%; width: 300px; height: 300px; opacity: 0.15; }
  .hero-text h1 { font-size: 44px; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-card:nth-child(1) { grid-column: span 2; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-story .section-inner { grid-template-columns: 1fr; }
  .brand-story-image { max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid #ECECEC;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 1001;
    gap: 16px;
  }
  .nav-links.mobile-open .dropdown { position: static; }
  .nav-links.mobile-open .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    padding: 8px 0 0 16px;
    min-width: unset;
    background: transparent;
  }
  .nav-links.mobile-open .dropdown:hover .dropdown-menu,
  .nav-links.mobile-open .dropdown:focus-within .dropdown-menu {
    display: block;
  }
  .nav-links.mobile-open .dropdown-menu a {
    padding: 8px 0;
    color: var(--gray);
  }
  .mobile-toggle { display: block; }
  .hero { min-height: 70vh; }
  .hero-inner { padding: 60px 24px 60px 60px; }
  .hero-text h1 { font-size: 36px; }
  .hero-monogram { left: 50%; width: 200px; height: 200px; opacity: 0.12; }
  .section-title { font-size: 32px; }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .collections-grid { grid-template-columns: 1fr; }
  .collection-card:nth-child(1) { grid-column: span 1; grid-row: span 1; aspect-ratio: 16/9; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-story .section-inner { padding-left: 60px; }
}
