/* ============================================================
   AURELIA GEMS — style.css
   Luxury Jewelry Brand | US Market
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --gold-dark: #a07830;
  --white: #fdfaf6;
  --off-white: #f5f0e8;
  --beige: #ede8de;
  --light-gray: #e8e4dc;
  --mid-gray: #b0a898;
  --text-dark: #1a1714;
  --text-mid: #4a4540;
  --text-light: #8a8078;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', 'Helvetica Neue', sans-serif;
  --transition: 0.35s ease;
  --shadow-soft: 0 4px 30px rgba(0,0,0,0.06);
  --shadow-mid: 0 8px 50px rgba(0,0,0,0.1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--white);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 500px;
  line-height: 1.8;
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.section-pad {
  padding: 100px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ---------- Divider ---------- */
.divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}

.divider-left {
  margin-left: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 250, 246, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--light-gray);
  transition: box-shadow var(--transition);
}

#site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.6vw, 1.55rem);
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.04em;
}

.logo span {
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.main-nav a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-dark);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1617038260897-41a1f14a8ca0?w=1800&auto=format&fit=crop&q=90');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.03);
  transition: transform 8s ease;
}

.hero:hover .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 8, 6, 0.55) 0%,
    rgba(10, 8, 6, 0.2) 60%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 600px;
  padding: 0 5%;
  animation: heroFadeUp 1.2s ease both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-tagline {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  max-width: 380px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 36px;
  transition: all var(--transition);
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
}

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

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--text-dark);
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 0 3rem;
}

.marquee-track .dot {
  color: var(--gold);
  padding: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   FEATURED COLLECTION
   ============================================================ */
.featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2.5rem;
}

.product-card {
  cursor: pointer;
  group: true;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
  aspect-ratio: 3/4;
  margin-bottom: 1.25rem;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

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

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--text-dark);
  color: var(--gold-light);
}

.quick-view-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 23, 20, 0.88);
  color: var(--gold-light);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.product-card:hover .quick-view-btn {
  transform: translateY(0);
}

.product-info {}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-dark);
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories-section {
  background: var(--off-white);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.category-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  cursor: pointer;
  display: block;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

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

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,8,6,0.7) 100%);
}

.category-label {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  white-space: nowrap;
}

.category-label h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.25rem;
}

.category-label span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ============================================================
   WHY CHOOSE AURELIA
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.why-item {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--light-gray);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.why-item:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-soft);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.why-item h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.why-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================================
   BRAND STORY (SPLIT)
   ============================================================ */
.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.brand-story-img {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}

.brand-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-story-text {
  background: var(--beige);
  display: flex;
  align-items: center;
  padding: 80px 70px;
}

.brand-story-text-inner {}

.brand-story-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.brand-story-text p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--text-dark);
}

.testimonials-section .section-label { color: var(--gold-light); }
.testimonials-section .section-title { color: var(--white); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem;
  transition: border-color var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-weight: 300;
}

.testimonial-author {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: var(--beige);
  text-align: center;
}

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

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid var(--light-gray);
  border-right: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  background: #fff;
  outline: none;
  color: var(--text-dark);
}

.newsletter-form input::placeholder {
  color: var(--mid-gray);
}

.newsletter-form button {
  padding: 14px 28px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: background var(--transition);
}

.newsletter-form button:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.65);
  padding: 70px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .logo {
  color: #fff;
  font-size: 1.4rem;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 260px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
  text-transform: uppercase;
  font-weight: 500;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-contact-item .icon {
  color: var(--gold);
  font-style: normal;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--gold-light);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--beige);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--light-gray);
}

.page-hero .section-label { margin-bottom: 0.5rem; }

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
}

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.shop-filter {
  position: sticky;
  top: 100px;
}

.filter-group {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--light-gray);
}

.filter-group:last-child {
  border-bottom: none;
}

.filter-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.filter-group ul li {
  margin-bottom: 0.6rem;
}

.filter-group ul li a {
  font-size: 0.85rem;
  color: var(--text-light);
  transition: color var(--transition);
  cursor: pointer;
}

.filter-group ul li a:hover,
.filter-group ul li a.active {
  color: var(--gold-dark);
}

.shop-products {}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--light-gray);
}

.shop-count {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-intro-img {
  position: relative;
}

.about-intro-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-intro-img::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--gold-light);
  z-index: -1;
}

.about-values {
  background: var(--beige);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.value-item {
  padding: 2rem;
}

.value-item h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.value-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.team-card {}

.team-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-bottom: 1.25rem;
  filter: grayscale(20%);
  transition: filter var(--transition);
}

.team-card:hover img {
  filter: grayscale(0%);
}

.team-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.team-card span {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
}

.contact-info {}

.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

.contact-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail .icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail div h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  color: var(--text-mid);
}

.contact-detail div p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

.contact-form-wrap {}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--light-gray);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-success {
  display: none;
  padding: 1rem 1.5rem;
  background: #f0ede7;
  border-left: 3px solid var(--gold);
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-top: 1rem;
}

/* ============================================================
   STATIC PAGES (Privacy, Terms)
   ============================================================ */
.static-content {
  max-width: 820px;
  margin: 0 auto;
}

.static-content h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  font-weight: 400;
}

.static-content h3 {
  font-size: 1.1rem;
  font-family: var(--font-sans);
  font-weight: 500;
  margin: 1.5rem 0 0.75rem;
  color: var(--text-mid);
}

.static-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.static-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.static-content ul li {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 6, 0.75);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(4px);
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--white);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.35s ease both;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 1.5rem;
  color: var(--text-mid);
  cursor: pointer;
  transition: color var(--transition);
  z-index: 10;
  line-height: 1;
}

.modal-close:hover { color: var(--text-dark); }

.modal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-img {
  background: var(--off-white);
  overflow: hidden;
  min-height: 450px;
}

.modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-details {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-category {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.modal-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}

.modal-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.modal-details .divider { margin: 1.5rem 0; }

.modal-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.modal-meta span {
  display: block;
  margin-bottom: 0.4rem;
}

.modal-meta strong {
  color: var(--text-mid);
}

/* Order Modal */
.order-modal {
  max-width: 480px;
}

.order-modal-content {
  padding: 3.5rem 3rem;
  text-align: center;
}

.order-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.order-modal-content h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.order-modal-content p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ============================================================
   NEW ARRIVALS PAGE
   ============================================================ */
.new-arrivals-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.arrivals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .brand-story { grid-template-columns: 1fr; }
  .brand-story-img { min-height: 400px; }
  .brand-story-text { padding: 60px 40px; }
  .about-intro { grid-template-columns: 1fr; gap: 3rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-filter { position: static; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
  .section-pad { padding: 70px 0; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem 5%;
    gap: 1.25rem;
    border-bottom: 1px solid var(--light-gray);
    z-index: 999;
  }
  .header-inner { position: relative; }
  .hero h1 { font-size: 2.8rem; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .modal-inner { grid-template-columns: 1fr; }
  .modal-img { min-height: 280px; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .featured-header { flex-direction: column; align-items: flex-start; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid var(--light-gray); border-bottom: none; }
}

@media (max-width: 480px) {
  .category-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
