/* ============================================================
   AURIEL KLOTHINGS — Main Stylesheet
   Palette: Navy #1A1A2E · Gold #C9A84C · Cream #FAF7F4 · Blush #E8C4B8
   ============================================================ */

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

:root {
  --navy:   #1A1A2E;
  --gold:   #C9A84C;
  --gold-light: #E2C47A;
  --cream:  #FAF7F4;
  --blush:  #E8C4B8;
  --text:   #2C2C2C;
  --text-light: #6B6B6B;
  --white:  #FFFFFF;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lato', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

/* ── Utility ── */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.4rem;
}
.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-light);
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.btn {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 2px solid currentColor;
  transition: var(--transition);
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-whatsapp:hover { background: #1ebe5a; border-color: #1ebe5a; }
.btn-instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  border-color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-instagram:hover { opacity: 0.88; }

/* ── Fade-in animation ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.15s; }
.fade-in-delay-2 { transition-delay: 0.30s; }
.fade-in-delay-3 { transition-delay: 0.45s; }


/* ============================================================
   HEADER / NAV
   ============================================================ */
/* Default: solid navy header on all pages */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
/* Home page only: transparent at top over banner image */
.home .site-header {
  background: transparent;
  box-shadow: none;
  padding: 1.4rem 3rem;
}
/* subtle top gradient so logo/nav readable over the light banner top */
.home .site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(250,247,244,0.55) 0%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}
.site-header.scrolled {
  background: var(--navy) !important;
  padding: 0.9rem 3rem !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25) !important;
}
.site-header .logo {
  display: flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
}
/* nav logo: the cropped "Auriel / KLOTHINGS" image, tinted dark gold.
   Scoped under .site-header so plugin resets (e.g. WooCommerce's
   `.woocommerce-page img { height:auto }`) can't outrank it. */
.site-header .nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  /* Convert black text → dark gold #9A7B28 */
  filter: brightness(0) saturate(100%) invert(44%) sepia(64%) saturate(500%) hue-rotate(5deg) brightness(88%);
  transition: filter 0.3s ease;
}
.site-header:hover .nav-logo-img {
  filter: brightness(0) saturate(100%) invert(44%) sepia(64%) saturate(500%) hue-rotate(5deg) brightness(100%);
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.primary-nav a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.4s ease;
  position: relative;
  padding-bottom: 3px;
}
/* Home page only: dark links on transparent header */
.home .site-header:not(.scrolled) .primary-nav a { color: var(--navy); }
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.primary-nav a:hover::after,
.primary-nav a.active::after { width: 100%; }
.primary-nav a.nav-instagram {
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.4rem 1rem;
  border-radius: 2px;
}
.primary-nav a.nav-instagram:hover {
  background: var(--gold);
  color: var(--navy);
}
.primary-nav a.nav-instagram::after { display: none; }
.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: inherit;
  line-height: 1;
}
.nav-cart::after { display: none; }
.nav-cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ── Nav Dropdown ── */
.nav-dropdown-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}
.nav-caret {
  font-size: 0.55rem;
  transition: transform 0.3s ease;
}
.nav-dropdown-wrap:hover .nav-caret { transform: rotate(180deg); }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 0.8rem;
  background: transparent;
  z-index: 200;
  list-style: none;
  min-width: 180px;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 0.8rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  z-index: -1;
}
.nav-dropdown-wrap:hover .nav-dropdown { display: block; }
.nav-dropdown li a {
  display: block;
  padding: 0.75rem 1.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown li:last-child a { border-bottom: none; }
.nav-dropdown li a:hover { background: rgba(201,168,76,0.15); color: var(--gold) !important; }
.nav-dropdown li a::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
/* Home page: dark hamburger over bright hero */
.home .site-header:not(.scrolled) .hamburger span { background: var(--navy); }

/* close button hidden on desktop; shown only in mobile overlay */
.nav-close { display: none; }

/* ── Mobile nav ── */
@media (max-width: 768px) {
  .site-header { padding: 1rem 1.4rem; }
  .site-header.scrolled { padding: 0.7rem 1.4rem; }
  .site-header .nav-logo-img { height: 44px; }
  .hamburger { display: flex; }

  .primary-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    /* flex-start + padding so content is never cut off and scrollable */
    justify-content: flex-start;
    padding: 5rem 2rem 3rem;
    gap: 1.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
  }
  .primary-nav.open { display: flex; z-index: 1001; }

  /* Force white text in the open nav overlay — overrides home-page header selectors */
  .primary-nav.open a,
  .home .site-header .primary-nav.open a,
  .home .site-header:not(.scrolled) .primary-nav.open a {
    color: var(--white) !important;
    font-size: 1.1rem;
  }
  /* Keep Instagram gold */
  .primary-nav.open a.nav-instagram,
  .home .site-header .primary-nav.open a.nav-instagram {
    color: var(--gold) !important;
    border-color: var(--gold) !important;
  }

  .nav-close {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
  }

  /* Mobile dropdown — expanded inline, clearly indented */
  .nav-dropdown-wrap {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0;
  }
  .nav-dropdown-trigger { margin-bottom: 0.4rem; }
  .nav-caret { display: none; }
  .nav-dropdown {
    display: block;
    position: static;
    transform: none;
    padding-top: 0;
    background: rgba(255,255,255,0.07);
    border-top: 1px solid rgba(201,168,76,0.35);
    border-left: 2px solid var(--gold);
    box-shadow: none;
    min-width: unset;
    width: 100%;
  }
  .nav-dropdown::before { display: none; }
  .nav-dropdown li a {
    display: block;
    padding: 0.6rem 1.4rem;
    font-size: 0.72rem !important;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-dropdown li:last-child a { border-bottom: none; }
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,26,46,0.15) 0%,
    rgba(26,26,46,0.1) 35%,
    rgba(26,26,46,0.72) 65%,
    rgba(26,26,46,0.92) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 1.5rem 6rem;
}
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.4);
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  max-width: 460px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 44px;
  background: rgba(201,168,76,0.6);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}


/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--navy);
  padding: 0.9rem 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 2.5rem;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ============================================================
   COLLECTIONS GRID
   ============================================================ */
.collections {
  padding: 6rem 3rem;
  background: var(--cream);
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--transition);
}
.collection-card:hover img {
  transform: scale(1.07);
}
.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem;
  text-align: center;
}
.collection-card-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.collection-card-overlay a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.collection-card:hover .collection-card-overlay a {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .collections { padding: 4rem 1.2rem; }
  .collections-grid { grid-template-columns: 1fr; gap: 1rem; }
  .collection-card { aspect-ratio: 4/5; }
}


/* ============================================================
   VIDEO REEL SECTION
   ============================================================ */
.reel-section {
  position: relative;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
}
.reel-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.55) 0%, rgba(26,26,46,0.15) 50%, rgba(26,26,46,0.35) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel-text {
  text-align: center;
}
.reel-text p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.reel-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  color: var(--white);
  font-weight: 300;
}


/* ============================================================
   FOUNDER TEASER
   ============================================================ */
.founder-teaser {
  padding: 6rem 3rem;
  background: var(--navy);
}
.founder-teaser-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.founder-photo-wrap {
  position: relative;
}
.founder-photo-wrap::before {
  content: '';
  position: absolute;
  top: -18px;
  left: -18px;
  right: 18px;
  bottom: 18px;
  border: 2px solid var(--gold);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.founder-photo-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}
.founder-teaser-content {
  color: var(--white);
}
.founder-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.founder-teaser-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.8rem;
  line-height: 1.2;
}
.founder-quote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--blush);
  border-left: 2px solid var(--gold);
  padding-left: 1.4rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.founder-teaser-content p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.2rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .founder-teaser { padding: 4rem 1.4rem; }
  .founder-teaser-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder-photo-wrap::before { display: none; }
}


/* ============================================================
   DESIGN TIPS PREVIEW
   ============================================================ */
.tips-preview {
  padding: 6rem 3rem;
  background: var(--cream);
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}
.tip-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.tip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.tip-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.tip-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tip-card:hover .tip-card-image img { transform: scale(1.05); }
.tip-card-body {
  padding: 1.6rem;
}
.tip-card-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.tip-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}
.tip-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}
.tip-card-body a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.3s;
}
.tip-card-body a:hover { color: var(--gold); }
.tips-preview .center { text-align: center; }

@media (max-width: 900px) {
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .tips-preview { padding: 4rem 1.2rem; }
  .tips-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   INSTAGRAM CTA
   ============================================================ */
.instagram-strip {
  padding: 4.5rem 2rem;
  background: linear-gradient(135deg, #1A1A2E 0%, #833AB4 30%, #E1306C 65%, #FD1D1D 85%, #FCCC63 100%);
  text-align: center;
  color: #FFFFFF;
  border-top: 3px solid #FFD700;
  border-bottom: 3px solid #FFD700;
  box-shadow: 0 12px 45px rgba(225, 48, 108, 0.35);
  position: relative;
  overflow: hidden;
}
.instagram-strip .ig-icon {
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}
.instagram-strip h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #FFFFFF;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.instagram-strip p {
  color: #FFF0F5;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.instagram-strip .btn-outline-navy {
  background: #FFFFFF;
  color: #0A1128 !important;
  border: 2px solid #FFD700 !important;
  font-weight: 800;
  padding: 1rem 2.6rem;
  border-radius: 4px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
}
.instagram-strip .btn-outline-navy:hover {
  background: #FFD700;
  color: #0A1128 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}


/* ============================================================
   EXHIBITION PAGES
   ============================================================ */
.exhibition-hero {
  position: relative;
  height: 52vh;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.exhibition-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.exhibition-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.58);
}
.exhibition-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
}
.exhibition-hero-content .eyebrow-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.exhibition-hero-content .eyebrow-label a { color: var(--gold); }
.exhibition-hero-content .eyebrow-label a:hover { text-decoration: underline; }
.exhibition-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
}

/* ── Exhibition index cards ── */
.exhibition-index {
  padding: 5rem 2rem;
  background: var(--cream);
}
.exhibition-index-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.exhb-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 2.8rem 2.4rem;
  border-top: 3px solid var(--gold);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: left;
}
.exhb-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.1);
}
.exhb-card-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.exhb-card h2 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.exhb-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}
.exhb-card-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  align-self: flex-start;
}
.exhb-card:hover .exhb-card-link { color: var(--gold); }

/* ── Exhibition list section ── */
.exhibition-list-section {
  padding: 5rem 2rem;
  background: var(--cream);
}
.exhibition-list-inner {
  max-width: 820px;
  margin: 0 auto;
}
.exhb-list-intro {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 3rem;
  text-align: center;
}
.exhb-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  align-items: start;
}
.exhb-item:first-of-type { border-top: 1px solid rgba(0,0,0,0.08); }
.exhb-item-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  padding: 1.2rem 0.8rem;
  text-align: center;
}
.exhb-day {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
}
.exhb-month {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 0.3rem;
}
.exhb-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.2rem 0.7rem;
  margin-bottom: 0.8rem;
}
.exhb-badge-upcoming {
  background: rgba(26,26,46,0.08);
  color: var(--navy);
  border-color: var(--navy);
}
.exhb-item-body h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-weight: 400;
}
.exhb-location {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}
.exhb-desc {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
}

/* ── No exhibitions state ── */
.no-exhibitions {
  text-align: center;
  padding: 4rem 2rem;
}
.no-exhb-icon { font-size: 3rem; margin-bottom: 1.2rem; }
.no-exhibitions h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.no-exhibitions p {
  color: var(--text-light);
  max-width: 420px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.no-exhb-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Back link ── */
.exhb-past-cta {
  padding: 1.5rem 2rem;
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  font-size: 0.85rem;
}
.exhb-past-cta a { color: var(--navy); font-weight: 700; }
.exhb-past-cta a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .exhibition-index-inner { grid-template-columns: 1fr; }
  .exhb-item { grid-template-columns: 90px 1fr; gap: 1.2rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 4rem 3rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .footer-logo {
  width: auto;
  height: 48px;
  margin-bottom: 1rem;
  filter: brightness(1.5);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}
.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
}
.footer-contact a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.footer-contact a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-bottom {
  max-width: 1200px;
  margin: 1.8rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 768px) {
  .site-footer { padding: 3rem 1.4rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
}


/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
}
.shop-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.shop-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.6);
}
.shop-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 0 1.5rem;
}
.shop-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 300;
  margin-bottom: 0.6rem;
}
.shop-hero-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto;
}

.shop-order-section {
  padding: 5rem 2rem;
  background: var(--cream);
  text-align: center;
}
.shop-order-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.shop-order-section > p {
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 2.8rem;
  font-size: 1rem;
}
.shop-cta-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.shop-cta-buttons .btn { font-size: 0.85rem; padding: 1rem 2.6rem; }

.how-to-order {
  padding: 4rem 2rem;
  background: var(--navy);
  text-align: center;
}
.how-to-order h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}
.how-to-order .section-subtitle { color: rgba(255,255,255,0.5); margin-bottom: 3rem; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  color: var(--white);
  padding: 2rem;
  border: 1px solid rgba(201,168,76,0.25);
}
.step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 1rem;
}
.step h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

.shop-gallery {
  padding: 5rem 2rem;
  background: var(--cream);
}
.shop-gallery h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.5rem;
}
.gallery-scroll {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding: 2rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.gallery-scroll::-webkit-scrollbar { height: 3px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
.gallery-scroll img {
  flex-shrink: 0;
  height: 460px;
  width: auto;
  object-fit: cover;
  scroll-snap-align: start;
  transition: transform 0.4s ease;
}
.gallery-scroll img:hover { transform: scale(1.02); }

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 380px; }
  .gallery-scroll img { height: 300px; }
}


/* ============================================================
   ABOUT / FOUNDER PAGE
   ============================================================ */
.about-hero {
  position: relative;
  height: 55vh;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.58);
}
.about-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}
.about-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.06em;
}
.about-hero-content p {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.6rem;
}

.founder-story {
  padding: 6rem 3rem;
  background: var(--cream);
}
.founder-story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
}
.founder-story-photo {
  position: sticky;
  top: 100px;
}
.founder-story-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}
.founder-story-photo .founder-name-plate {
  background: var(--navy);
  color: var(--white);
  padding: 1.2rem 1.6rem;
  margin-top: 0;
}
.founder-name-plate h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}
.founder-name-plate p {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.founder-story-text .eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.founder-story-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--navy);
  margin-bottom: 1.6rem;
  font-weight: 300;
}
.founder-story-text blockquote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-light);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.7;
}
.founder-story-text p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.brand-values {
  padding: 5rem 3rem;
  background: var(--navy);
}
.brand-values h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.value-card {
  border: 1px solid rgba(201,168,76,0.3);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
}
.value-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.value-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.value-card p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

@media (max-width: 900px) {
  .founder-story-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder-story-photo { position: static; }
  .values-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}
@media (max-width: 540px) {
  .founder-story { padding: 3.5rem 1.2rem; }
  .brand-values { padding: 3.5rem 1.2rem; }
}


/* ============================================================
   BLOG / DESIGN TIPS — ARCHIVE
   ============================================================ */
.blog-header {
  background: var(--navy);
  padding: 8rem 2rem 4rem;
  text-align: center;
}
.blog-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.blog-header p {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.blog-grid-section {
  padding: 5rem 3rem;
  background: var(--cream);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}
.blog-card-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-thumb img { transform: scale(1.05); }
.blog-card-body { padding: 1.6rem; }
.blog-card-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.blog-card-body h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}
.blog-card-body p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 1.2rem; }
.blog-card-body .read-more {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.3s;
}
.blog-card-body .read-more:hover { color: var(--gold); }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .blog-grid-section { padding: 3.5rem 1.2rem; }
  .blog-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   SINGLE POST
   ============================================================ */
.single-post-header {
  background: var(--navy);
  padding: 9rem 2rem 4rem;
  text-align: center;
}
.single-post-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.single-post-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 1rem;
  line-height: 1.2;
}
.single-post-meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
}

.single-featured-img {
  max-height: 520px;
  overflow: hidden;
}
.single-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-post-body {
  max-width: 740px;
  margin: 4rem auto;
  padding: 0 2rem;
}
.single-post-body p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 1.4rem;
}
.single-post-body h2 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
}
.single-post-body h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin: 2rem 0 0.8rem;
}
.single-post-body ul {
  list-style: none;
  margin-bottom: 1.4rem;
}
.single-post-body ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}
.single-post-body ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 0.65rem;
}
.single-post-body blockquote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-light);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.7;
}

.post-cta-strip {
  background: var(--navy);
  padding: 3.5rem 2rem;
  text-align: center;
  margin-top: 4rem;
}
.post-cta-strip h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 0.6rem;
}
.post-cta-strip p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.6rem;
  font-size: 0.92rem;
}
.post-cta-strip .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 6rem 3rem;
  background: var(--navy);
}
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq-inner .section-subtitle { color: rgba(255,255,255,0.5); }
.faq-inner .section-title { color: var(--white); margin-bottom: 3rem; }
.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.1); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  padding: 0 0 1.4rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}
.faq-item p a {
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.4);
  transition: border-color 0.3s;
}
.faq-item p a:hover { border-color: var(--gold); }

@media (max-width: 768px) {
  .faq-section { padding: 4rem 1.5rem; }
}
@media (max-width: 540px) {
  .faq-section { padding: 3.5rem 1.2rem; }
  .faq-item summary { font-size: 1rem; }
}

/* ============================================================
   COMPREHENSIVE MOBILE — added as one block so desktop is untouched
   ============================================================ */

/* Better tap targets on all buttons (applies everywhere) */
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-whatsapp,
.btn-instagram { display: inline-flex; }

/* ── 900px tablet: tighten paddings ── */
@media (max-width: 900px) {
  .collections     { padding: 5rem 2rem; }
  .tips-preview    { padding: 5rem 2rem; }
  .founder-story   { padding: 5rem 2rem; }
  .brand-values    { padding: 4rem 2rem; }
  .site-footer     { padding: 3.5rem 2rem 2rem; }
}

/* ── 768px tablet ── */
@media (max-width: 768px) {

  /* Hero: less bottom breathing room */
  .hero-content { padding-bottom: 5rem; }

  /* Reel: shrink height */
  .reel-section { height: 52vh; min-height: 280px; }

  /* Section horizontal padding */
  .collections        { padding: 4rem 1.5rem; }
  .tips-preview       { padding: 4rem 1.5rem; }
  .instagram-strip    { padding: 3.5rem 1.5rem; }
  .exhibition-index   { padding: 3.5rem 1.5rem; }
  .exhibition-list-section { padding: 3.5rem 1.5rem; }
  .shop-order-section { padding: 3.5rem 1.5rem; }
  .how-to-order       { padding: 3rem 1.5rem; }
  .shop-gallery       { padding: 3.5rem 1.5rem; }
  .founder-story      { padding: 4rem 1.5rem; }
  .brand-values       { padding: 3.5rem 1.5rem; }
  .blog-grid-section  { padding: 3.5rem 1.5rem; }
  .post-cta-strip     { padding: 3rem 1.5rem; }

  /* Page headers: keep top padding large (clears fixed nav) */
  .blog-header        { padding: 7rem 1.5rem 3rem; }
  .single-post-header { padding: 7rem 1.5rem 3rem; }
  .about-hero         { min-height: 300px; }

  /* Single post body: tighter side padding */
  .single-post-body { padding: 0 1.4rem; margin: 3rem auto; }

  /* Shop gallery images */
  .gallery-scroll img { height: 280px; }

  /* Values grid: 2-col on tablet */
  .values-grid { grid-template-columns: 1fr 1fr; max-width: 100%; }

  /* Shop CTA buttons: stacked */
  .shop-cta-buttons { flex-direction: column; align-items: center; }
  .shop-cta-buttons .btn { width: 100%; max-width: 340px; }

  /* No-exhibition actions: stacked */
  .no-exhb-actions { flex-direction: column; align-items: center; }
  .no-exhb-actions .btn { width: 100%; max-width: 300px; }
}

/* ── 540px phone ── */
@media (max-width: 540px) {

  /* Hero */
  .hero-content { padding: 0 1.2rem 4.5rem; }

  /* Reel */
  .reel-section { height: 46vh; min-height: 240px; }

  /* Values grid: 1-col */
  .values-grid { grid-template-columns: 1fr; max-width: 100%; }

  /* Section paddings */
  .collections        { padding: 3.5rem 1.2rem; }
  .tips-preview       { padding: 3.5rem 1.2rem; }
  .instagram-strip    { padding: 3rem 1.2rem; }
  .exhibition-index   { padding: 3rem 1.2rem; }
  .exhibition-list-section { padding: 3rem 1.2rem; }
  .shop-order-section { padding: 3rem 1.2rem; }
  .how-to-order       { padding: 2.5rem 1.2rem; }
  .shop-gallery       { padding: 3rem 1.2rem; }
  .blog-grid-section  { padding: 3rem 1.2rem; }
  .post-cta-strip     { padding: 2.5rem 1.2rem; }

  /* Shop gallery: compact */
  .gallery-scroll img { height: 240px; }

  /* Exhibition items: stack date above content */
  .exhb-item { grid-template-columns: 1fr; gap: 1rem; }
  .exhb-item-date {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 1.2rem;
    justify-content: flex-start;
  }
  .exhb-day { font-size: 1.6rem; }
  .exhb-card { padding: 2rem 1.5rem; }

  /* Blog/single headers */
  .blog-header        { padding: 6rem 1.2rem 2.5rem; }
  .single-post-header { padding: 6rem 1.2rem 2.5rem; }
  .single-post-body   { padding: 0 1.2rem; margin: 2.5rem auto; }

  /* About */
  .about-hero { min-height: 260px; }
  .founder-story-inner { gap: 2rem; }
}

/* ── 400px small phones ── */
@media (max-width: 400px) {

  /* Logo */
  .site-header .nav-logo-img { height: 42px; }

  /* Hero */
  .hero-content { padding-bottom: 4rem; }

  /* Buttons */
  .btn { padding: 0.9rem 1.6rem; font-size: 0.78rem; }

  /* Sections */
  .instagram-strip { padding: 2.5rem 1rem; }
  .exhb-card { padding: 1.6rem 1.2rem; }
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(0,0,0,0.3);
}
@media (max-width: 540px) {
  .wa-float { width: 50px; height: 50px; bottom: 1.1rem; right: 1.1rem; }
}

/* ============================================================
   SHOP PRODUCT GRID
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 0 1rem;
}
.product-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(26,26,46,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 26px rgba(26,26,46,0.14);
}
.product-card img {
  width: 100%;
  height: 340px;
  /* contain, not cover: show the full photo scaled into the tile
     instead of cropping it top/bottom */
  object-fit: contain;
  background: var(--white);
}
.product-card-info {
  padding: 1.2rem 1.2rem 1.4rem;
  text-align: center;
}
.product-card-info h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.9rem;
}
.product-card-info h3 a {
  color: inherit;
}
.product-card-price {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 0.9rem;
}
.product-card-price del {
  opacity: 0.6;
  margin-right: 0.4rem;
}
.btn-order {
  font-size: 0.85rem;
  padding: 0.65rem 1.3rem;
}
.shop-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 0 1rem;
}
.shop-pagination-status {
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.shop-gallery-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 2.5rem auto 0;
  padding: 0 1.5rem;
}
.shop-gallery-note a {
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.4);
}
.shop-gallery-note a:hover { border-color: var(--gold); }
@media (max-width: 540px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: 0 1.2rem; }
  .product-card img { height: 220px; }
  .product-card-info { padding: 0.9rem 0.7rem 1.1rem; }
  .product-card-info h3 { font-size: 1.05rem; }
  .btn-order { font-size: 0.78rem; padding: 0.55rem 0.9rem; }
}

/* ============================================================
   PRODUCT PAGE CART BUTTONS — Add/Remove toggle + Go to Cart
   ============================================================ */
.auriel-cart-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}
.auriel-cart-primary,
.auriel-cart-secondary {
  display: inline-block;
  padding: 0.9rem 1.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.auriel-cart-primary {
  background: var(--navy);
  color: var(--white);
}
.auriel-cart-primary:hover {
  background: var(--gold);
  color: var(--navy);
}
.auriel-cart-primary.is-remove {
  background: #7a2e3b;
  color: var(--white);
}
.auriel-cart-primary.is-remove:hover {
  background: #5d222d;
}
.auriel-cart-primary.is-disabled {
  background: #d5d2cd;
  color: #7a7a7a;
  pointer-events: none;
  cursor: not-allowed;
}
.auriel-cart-secondary {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.auriel-cart-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

/* ============================================================
   PRODUCT VIDEO — rendered under the single-product gallery
   ============================================================ */
.auriel-product-video {
  margin-top: 1rem;
}
.auriel-product-video video {
  width: 100%;
  max-width: 100%;
  display: block;
  border-radius: 6px;
  background: #000;
}

/* ============================================================
   SIZE CHIPS — shop grid cards & single-product size switcher
   ============================================================ */
.product-card-sizes,
.size-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.product-card-sizes { justify-content: center; margin-bottom: 0.9rem; }
.size-switcher { margin: 1rem 0; }
.size-switcher-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-right: 0.3rem;
}
.size-chip {
  display: inline-block;
  min-width: 2.4rem;
  padding: 0.4rem 0.7rem;
  text-align: center;
  font: inherit;
  font-size: 0.85rem;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(26,26,46,0.25);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.size-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.size-chip.active {
  border-color: var(--gold);
  background: var(--navy);
  color: var(--white);
}
.size-chip-disabled {
  color: var(--text-light);
  background: var(--cream);
  border-color: rgba(26,26,46,0.1);
  text-decoration: line-through;
  cursor: not-allowed;
}
.size-chip-disabled.active {
  border-color: rgba(26,26,46,0.25);
  background: var(--cream);
  color: var(--text-light);
}
.product-card-cta[aria-disabled="true"] {
  cursor: not-allowed;
}

/* ============================================================
   SIZE CHART (inside dark FAQ section)
   ============================================================ */
.size-chart-wrap {
  padding: 0 0 1.4rem;
  overflow-x: auto;
}
.size-chart {
  width: 100%;
  max-width: 420px;
  border-collapse: collapse;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.size-chart th,
.size-chart td {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.5rem 0.9rem;
  text-align: center;
}
.size-chart th {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255,255,255,0.04);
}

/* ── Sitewide WooCommerce notices ── */
.site-wc-notices {
  max-width: 1200px;
  margin: 6.5rem auto 0;
  padding: 0 1.5rem;
}
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  list-style: none;
  margin: 0 0 1rem;
  padding: 1rem 1.4rem;
  font-size: 0.9rem;
  border-left: 4px solid var(--gold);
  background: var(--white);
  color: var(--navy);
}
.woocommerce-error { border-color: #c0392b; }
.woocommerce-info { border-color: #2c7fb0; }
.woocommerce-message a,
.woocommerce-error a,
.woocommerce-info a {
  color: var(--gold);
  text-decoration: underline;
  margin-left: 0.5rem;
}

/* ── Shop layout: filters sidebar + product grid ── */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  max-width: 1400px;
  margin: 2.5rem auto 0;
  padding: 0 1.5rem;
  align-items: start;
}
.shop-filters {
  border: 1px solid rgba(26,26,46,0.1);
  padding: 1.5rem;
  position: sticky;
  top: 110px;
  /* never taller than the viewport: scroll inside the panel instead of
     forcing the user to scroll the whole page to reach lower filters */
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}
.shop-filters::-webkit-scrollbar { width: 6px; }
.shop-filters::-webkit-scrollbar-thumb { background: rgba(26,26,46,0.25); border-radius: 3px; }
.shop-filters .filter-group { margin-bottom: 1.6rem; }
.shop-filters h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.shop-filters label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  margin-bottom: 0.55rem;
  cursor: pointer;
  color: var(--text-light);
}
.filter-price-inputs {
  display: flex;
  gap: 0.6rem;
}
.filter-price-inputs input {
  width: 100%;
  padding: 0.5rem 0.6rem;
  border: 1px solid rgba(26,26,46,0.2);
  font-size: 0.85rem;
  font-family: var(--font-body);
}
.shop-filters .btn {
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
}
.filter-clear {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  margin-top: 0.8rem;
  color: var(--text-light);
  text-decoration: underline;
}
.shop-main .product-grid {
  margin: 0;
  max-width: none;
  padding: 0;
}
.shop-load-status {
  text-align: center;
  margin: 2rem 0 0;
  color: var(--text-light);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 860px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-filters { position: static; max-height: none; overflow-y: visible; }
}

/* "Including ₹x CGST, ₹x SGST" note in cart/checkout totals: WooCommerce
   renders it inline inside the price cell, where it inherits the large
   price font and overflows the box — drop it to its own small wrapped line */
.woocommerce-checkout-review-order-table .includes_tax,
.cart_totals .includes_tax,
.woocommerce-checkout-review-order-table small,
.cart_totals small {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-light);
  white-space: normal;
  overflow-wrap: break-word;
  line-height: 1.45;
  margin-top: 0.25rem;
  text-align: right;
}

.checkout-empty-cart-bar {
  max-width: 900px;
  margin: 6.5rem auto 0;
  padding: 0 1.5rem;
  text-align: right;
}
.checkout-empty-cart-bar .btn,
.cart-empty-cart-bar .btn {
  font-size: 0.78rem;
  padding: 0.6rem 1.4rem;
}

.cart-empty-cart-bar {
  max-width: 900px;
  margin: 2rem auto 1rem;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.cart-hold-timer {
  font-size: 0.85rem;
  color: #6b5f68;
}
.cart-hold-timer-value {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #241b22;
}
.cart-hold-timer.is-urgent .cart-hold-timer-value {
  color: #a23b3b;
}
@media (max-width: 640px) {
  .cart-empty-cart-bar { flex-direction: column; align-items: stretch; text-align: center; }
}

/* ============================================================
   SEO & AI SEARCH (GEO) STYLING — SUMMARY & AUTHOR BIO
   ============================================================ */
.ai-summary-box {
  background: #fcf9f4;
  border-left: 4px solid #C9A84C;
  border-radius: 6px;
  padding: 1.4rem 1.8rem;
  margin: 1.5rem 0 2.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.ai-summary-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #1A1A2E;
  margin-bottom: 0.6rem;
}
.ai-summary-box ul {
  margin: 0.5rem 0 0 1.2rem;
  padding: 0;
}
.ai-summary-box li {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #2D2D2D;
  margin-bottom: 0.4rem;
}

.author-bio-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #f7f3ed;
  border-radius: 8px;
  padding: 1.8rem;
  margin: 3.5rem 0 2rem;
  box-shadow: 0 3px 15px rgba(26,26,46,0.05);
}
.author-bio-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #C9A84C;
}
.author-bio-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: #1A1A2E;
  margin: 0 0 0.2rem;
}
.author-bio-role {
  font-size: 0.85rem;
  color: #C9A84C;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}
.author-bio-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #2D2D2D;
  margin-bottom: 0.8rem;
}
.author-bio-links {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
}
.author-bio-links a {
  color: #1A1A2E;
  text-decoration: underline;
}
.author-bio-links a:hover {
  color: #C9A84C;
}

@media (max-width: 640px) {
  .author-bio-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ============================================================
   AURIEL KLOTHINGS™ — VIBRANT & LUXE EXPANSION
   Punch Line: Light in Every Thread™
   ============================================================ */

/* ── Ultra-Bright Gold Original Trademark Header Logo (Left) ── */
.site-header {
  padding: 0.6rem 2.8rem;
  height: 90px;
}
.nav-logo-original {
  height: 64px;
  max-height: 68px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255, 230, 0, 0.85)) brightness(1.15);
  transition: all 0.4s ease;
}
.nav-logo-original:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 22px rgba(255, 230, 0, 1.0)) brightness(1.25);
}

/* ── Floating Glassmorphic Medallion Badge (Center Hero) ── */
.hero-vibrant {
  position: relative;
  min-height: 92vh;
  padding-top: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0A1128;
  color: #FFFFFF;
  overflow: hidden;
}
.hero-vibrant .hero-content {
  margin-top: 1.5rem;
}
.hero-medallion-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}
.hero-medallion-badge {
  background: rgba(10, 17, 40, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 230, 0, 0.45);
  border-radius: 20px;
  padding: 1.1rem 2rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4), inset 0 0 25px rgba(255, 230, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-medallion-badge:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255, 230, 0, 0.8);
  box-shadow: 0 15px 45px rgba(255, 230, 0, 0.25), inset 0 0 35px rgba(255, 230, 0, 0.35);
}
.gold-divider-line {
  height: 1px;
  width: 70px;
  background: linear-gradient(90deg, transparent, rgba(255, 230, 0, 0.8), transparent);
}
@media (max-width: 640px) {
  .gold-divider-line { display: none; }
  .hero-medallion-badge { padding: 0.7rem 1.2rem; }
  .hero-vibrant { padding-top: 110px; }
  .site-header { padding: 0.5rem 1.2rem; height: 75px; }
  .nav-logo-original { height: 50px; }
}

.hero-tm-logo-catchy {
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 0 24px rgba(255, 230, 0, 0.95)) brightness(1.25);
  animation: goldPulseBright 3.5s infinite ease-in-out;
}

@keyframes goldPulseBright {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 230, 0, 0.8)) brightness(1.2); transform: scale(1); }
  50% { filter: drop-shadow(0 0 35px rgba(255, 230, 0, 1.0)) brightness(1.35); transform: scale(1.03); }
}

.hero-punchline-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(10, 17, 40, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 215, 0, 0.5);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 0 15px rgba(255, 215, 0, 0.15);
  color: #FFD700;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.6rem 1.8rem;
  border-radius: 40px;
  margin-bottom: 1.5rem;
}
.hero-punchline-pill .sparkle {
  color: #FFD700;
  font-size: 0.95rem;
}
.hero-bg-wrapper {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}
.hero-bg-img.hero-slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-bg-img.hero-slide.active {
  opacity: 0.42;
}
.hero-overlay-luxe {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2;
  background: radial-gradient(circle at center, rgba(10,17,40,0.4) 0%, rgba(10,17,40,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  padding: 2rem;
  margin: 0 auto;
}
.hero-trademark-badge {
  margin-bottom: 1.2rem;
}
.hero-tm-logo {
  max-width: 180px;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(223,178,88,0.4));
}
.hero-punchline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #DFB258;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  font-weight: 600;
}
.hero-headline {
  font-size: clamp(2.8rem, 6.5vw, 4.8rem);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
  line-height: 1.08;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #E2E8F0;
  margin-bottom: 2.2rem;
  font-weight: 300;
}
.hero-cta-group {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-gold-luxe {
  background: linear-gradient(135deg, #D4AF37 0%, #F3D078 50%, #AA771C 100%);
  color: #0A1128 !important;
  font-weight: 700;
  border: none;
  padding: 1rem 2.6rem;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
  transition: all 0.4s ease;
}
.btn-gold-luxe:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212,175,55,0.55);
}
.btn-outline-gold {
  background: transparent;
  color: #F3D078 !important;
  border: 2px solid #DFB258;
  padding: 1rem 2.4rem;
  border-radius: 4px;
  transition: all 0.4s ease;
}
.btn-outline-gold:hover {
  background: rgba(223,178,88,0.15);
  color: #FFFFFF !important;
}

/* ── Luxe Marquee ── */
.marquee-luxe {
  background: #0A1128;
  color: #DFB258;
  border-top: 1px solid rgba(223,178,88,0.25);
  border-bottom: 1px solid rgba(223,178,88,0.25);
  padding: 0.85rem 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
}

/* ── Vibrant Lookbook Section ── */
.lookbook-section {
  padding: 6rem 2rem;
  background: #FAF7F4;
}
.section-desc {
  max-width: 680px;
  margin: 0.6rem auto 0;
  font-size: 1.05rem;
  color: #555555;
}
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.2rem;
  max-width: 1350px;
  margin: 0 auto;
}
.lookbook-item {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}
.lookbook-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(10,17,40,0.12);
}
.lookbook-item-wide {
  grid-column: 1 / -1;
}
.lookbook-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.lookbook-item-wide .lookbook-img-wrap {
  aspect-ratio: 16 / 9;
  max-height: 480px;
}
.lookbook-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.lookbook-item:hover .lookbook-img-wrap img {
  transform: scale(1.06);
}
.lookbook-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10,17,40,0.85);
  backdrop-filter: blur(8px);
  color: #DFB258;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 20px;
  border: 1px solid rgba(223,178,88,0.3);
}
.lookbook-badge-trademark {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: linear-gradient(135deg, #D4AF37, #AA771C);
  color: #0A1128;
  padding: 0.45rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.lookbook-content {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.lookbook-content h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  color: #0A1128;
  margin-bottom: 0.4rem;
}
.lookbook-content p {
  font-size: 0.92rem;
  color: #666666;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}
.lookbook-btn {
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0A1128;
  border-bottom: 2px solid #DFB258;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}
.lookbook-btn:hover {
  color: #DFB258;
  border-bottom-color: #0A1128;
}

/* ── Founder Teaser Luxe ── */
.founder-luxe {
  background: #0A1128;
  color: #FFFFFF;
  padding: 6rem 2rem;
}
.founder-punchline-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #DFB258;
  letter-spacing: 0.08em;
  margin: 0.4rem 0 1rem;
  font-weight: 600;
}

/* ── Footer Luxe ── */
.footer-logo {
  max-width: 260px;
  height: auto;
  margin-bottom: 1rem;
}
.footer-punchline {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #E2E8F0;
}
.footer-punchline strong {
  color: #DFB258;
}

