/* =========================================================
   AUSVE — Luxury Jewelry
   Master Stylesheet
   ========================================================= */

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

:root {
  /* Palette */
  --ivory:        #f6f1ea;
  --ivory-soft:   #fbf8f3;
  --cream:        #ece5d8;
  --champagne:    #c9a96a;
  --champagne-dk: #a8884f;
  --charcoal:     #1c1a17;
  --charcoal-2:   #2b2925;
  --muted:        #8b8479;
  --line:         #e5ddcf;
  --white:        #ffffff;

  /* Typography */
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:  "Montserrat", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --container: 1320px;
  --gutter: clamp(16px, 3vw, 40px);
  --section-y: clamp(60px, 9vw, 130px);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }

/* -------- Typography -------- */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: .01em;
  color: var(--charcoal);
  line-height: 1.15;
}

.h-display {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  letter-spacing: .02em;
}
.h-1 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
.h-2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.h-3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--champagne-dk);
  font-weight: 500;
}

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--muted);
  max-width: 60ch;
  margin-inline: auto;
}

/* -------- Container -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 80px);
}
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head .divider { margin: 18px auto 22px; }

.divider {
  width: 56px;
  height: 1px;
  background: var(--champagne);
  display: block;
}
.divider.center { margin-inline: auto; }

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--ivory);
  transition: all .35s var(--ease);
}
.btn:hover { background: var(--champagne); border-color: var(--champagne); color: var(--charcoal); }

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-ghost:hover { background: var(--charcoal); color: var(--ivory); }

.btn-gold {
  background: var(--champagne);
  border-color: var(--champagne);
  color: var(--charcoal);
}
.btn-gold:hover { background: var(--champagne-dk); border-color: var(--champagne-dk); color: var(--ivory); }

.btn-link {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--charcoal);
  display: inline-block;
}
.btn-link:hover { color: var(--champagne-dk); border-color: var(--champagne); }

/* =========================================================
   ANNOUNCEMENT BAR
   ========================================================= */
.announce {
  background: var(--charcoal);
  color: var(--ivory);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px var(--gutter);
}
.announce span { opacity: .85; }

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .35s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 30px rgba(28,26,23,.06); }

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 84px;
}

.nav-left, .nav-right { display: flex; align-items: center; gap: 28px; }
.nav-right { justify-content: flex-end; }

.brand {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  letter-spacing: .35em;
  font-weight: 500;
  text-align: center;
}
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .42em;
  color: var(--champagne-dk);
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
}

.menu {
  display: flex;
  gap: 28px;
}
.menu a {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 8px 0;
  position: relative;
}
.menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: all .35s var(--ease);
  transform: translateX(-50%);
}
.menu a:hover::after, .menu a.active::after { width: 100%; }
.menu a:hover { color: var(--champagne-dk); }

.icon-btn {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.icon-btn svg { width: 20px; height: 20px; stroke: var(--charcoal); fill: none; stroke-width: 1.3; }
.icon-btn:hover svg { stroke: var(--champagne-dk); }
.bag-count {
  position: absolute;
  top: -4px; right: -8px;
  background: var(--champagne);
  color: var(--charcoal);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--charcoal);
  transition: all .3s var(--ease);
}
.hamburger span:nth-child(1) { top: 4px; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { top: 18px; }

body.menu-open .hamburger span:nth-child(1) { top: 11px; transform: rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background: var(--ivory);
  padding: 100px 32px 40px;
  transform: translateX(-100%);
  transition: transform .45s var(--ease);
  z-index: 90;
  overflow-y: auto;
}
body.menu-open .mobile-drawer { transform: translateX(0); }

.mobile-drawer .menu {
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.mobile-drawer .menu a {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: .04em;
  text-transform: none;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-drawer .menu a::after { display: none; }
.mobile-drawer .mobile-actions {
  margin-top: 40px;
  display: flex;
  gap: 24px;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: clamp(520px, 90vh, 880px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ivory);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28,26,23,.25) 0%, rgba(28,26,23,.55) 100%),
    url("../images/hero-bride.jpg") center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-inner {
  position: relative;
  z-index: 2;
  padding: var(--gutter);
  max-width: 880px;
}
.hero .eyebrow { color: #e5cfa0; }
.hero h1 {
  color: var(--ivory);
  font-size: clamp(2.4rem, 7vw, 6rem);
  font-weight: 300;
  margin: 18px 0 22px;
  letter-spacing: .03em;
}
.hero p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: rgba(246,241,234,.92);
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero .btn { background: var(--ivory); color: var(--charcoal); border-color: var(--ivory); }
.hero .btn:hover { background: var(--champagne); border-color: var(--champagne); }

.scroll-cue {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--ivory);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.6);
  animation: cue 2s var(--ease) infinite;
}
@keyframes cue {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  background: var(--ivory-soft);
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-style: italic;
  color: var(--charcoal);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 80px; }
.marquee-track span::after {
  content: "✦";
  color: var(--champagne);
  font-size: .7em;
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   COLLECTIONS GRID
   ========================================================= */
.collections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 24px);
}
.col-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--cream);
}
.col-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.col-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,26,23,0) 40%, rgba(28,26,23,.55) 100%);
}
.col-card:hover img { transform: scale(1.06); }
.col-card .info {
  position: absolute;
  z-index: 2;
  left: 0; right: 0; bottom: 0;
  padding: 28px;
  color: var(--ivory);
  text-align: center;
}
.col-card .info h3 {
  color: var(--ivory);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  margin-bottom: 6px;
}
.col-card .info span {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #e5cfa0;
}

/* =========================================================
   STORY / SPLIT SECTION
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(30px, 5vw, 90px);
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-media { aspect-ratio: 4/5; overflow: hidden; background: var(--cream); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-body { padding-block: 20px; }
.split-body .eyebrow { display: block; margin-bottom: 16px; }
.split-body p { color: var(--muted); margin-bottom: 16px; max-width: 52ch; }
.split-body .btn-link { margin-top: 18px; }

/* =========================================================
   PRODUCT CARD / GRID
   ========================================================= */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.4vw, 36px) clamp(16px, 2vw, 28px);
}
.product {
  text-align: center;
  position: relative;
}
.product-media {
  position: relative;
  aspect-ratio: 1/1.15;
  overflow: hidden;
  background: var(--cream);
  margin-bottom: 18px;
}
.product-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease), opacity .6s var(--ease);
}
.product-media .alt {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .6s var(--ease);
}
.product:hover .product-media .alt { opacity: 1; }
.product:hover .product-media img { transform: scale(1.04); }

.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ivory);
  color: var(--charcoal);
  font-size: 9px;
  letter-spacing: .26em;
  text-transform: uppercase;
  padding: 6px 12px;
  z-index: 2;
}
.product-badge.gold { background: var(--champagne); }

.product-actions {
  position: absolute;
  inset-inline: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: all .4s var(--ease);
  z-index: 2;
}
.product:hover .product-actions { opacity: 1; transform: translateY(0); }
.product-actions button {
  width: 40px; height: 40px;
  background: var(--ivory);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .3s var(--ease);
}
.product-actions button:hover { background: var(--champagne); }
.product-actions svg { width: 16px; height: 16px; stroke: var(--charcoal); fill: none; stroke-width: 1.4; }

.product h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.product .cat {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  display: block;
}
.product .price {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--charcoal);
}
.product .price s { color: var(--muted); margin-right: 8px; }

/* Tabs above product grid */
.tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.tab {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: all .3s var(--ease);
}
.tab.active, .tab:hover { color: var(--charcoal); border-color: var(--champagne); }

/* =========================================================
   BANNER / CTA
   ========================================================= */
.banner-cta {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ivory);
  overflow: hidden;
}
.banner-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(28,26,23,.45), rgba(28,26,23,.55)),
    url("../images/ring-solitaire.jpg") center/cover no-repeat;
}
.banner-cta-inner { position: relative; z-index: 2; padding: 60px var(--gutter); max-width: 720px; }
.banner-cta h2 { color: var(--ivory); margin: 14px 0 18px; font-size: clamp(2rem, 4vw, 3.4rem); }
.banner-cta p { color: rgba(246,241,234,.9); margin-bottom: 28px; font-family: var(--serif); font-style: italic; }
.banner-cta .eyebrow { color: #e5cfa0; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: var(--ivory-soft); }
.testimonial {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.testimonial .quote-mark {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--champagne);
  line-height: 0.4;
  display: block;
  margin-bottom: 24px;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  color: var(--charcoal);
  line-height: 1.55;
  margin-bottom: 30px;
}
.testimonial cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}
.testimonial cite strong { color: var(--charcoal); font-weight: 500; margin-right: 6px; }

/* =========================================================
   JOURNAL / BLOG
   ========================================================= */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.journal-card .media {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--cream);
}
.journal-card .media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.journal-card:hover .media img { transform: scale(1.05); }
.journal-card .meta {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--champagne-dk);
  display: block;
  margin-bottom: 10px;
}
.journal-card h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  margin-bottom: 10px;
  transition: color .3s var(--ease);
}
.journal-card:hover h3 { color: var(--champagne-dk); }
.journal-card p { color: var(--muted); margin-bottom: 14px; }

/* =========================================================
   INSTAGRAM STRIP
   ========================================================= */
.insta-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.insta-tile {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  background: var(--cream);
}
.insta-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.insta-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(28,26,23,.0);
  transition: background .4s var(--ease);
}
.insta-tile:hover img { transform: scale(1.08); }
.insta-tile:hover::after { background: rgba(28,26,23,.35); }

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter {
  background: var(--charcoal);
  color: var(--ivory);
  text-align: center;
}
.newsletter h2 { color: var(--ivory); }
.newsletter p { color: rgba(246,241,234,.7); max-width: 560px; margin: 16px auto 36px; }
.newsletter form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(246,241,234,.3);
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 16px 6px;
  font-family: var(--sans);
  color: var(--ivory);
  font-size: 14px;
  outline: none;
}
.newsletter input::placeholder { color: rgba(246,241,234,.5); letter-spacing: .04em; }
.newsletter button {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--champagne);
  padding: 0 8px;
}
.newsletter button:hover { color: var(--ivory); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ivory-soft);
  padding: clamp(60px, 8vw, 110px) 0 30px;
  border-top: 1px solid var(--line);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  margin-bottom: 70px;
}
.foot-brand .brand { text-align: left; margin-bottom: 18px; }
.foot-brand p { color: var(--muted); max-width: 36ch; margin-bottom: 24px; }
.foot-brand .social { display: flex; gap: 14px; }
.foot-brand .social a {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
}
.foot-brand .social a:hover { background: var(--charcoal); border-color: var(--charcoal); }
.foot-brand .social a:hover svg { stroke: var(--ivory); }
.foot-brand .social svg { width: 15px; height: 15px; stroke: var(--charcoal); fill: none; stroke-width: 1.3; }

.foot-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 22px;
  font-weight: 600;
}
.foot-col ul li { margin-bottom: 10px; }
.foot-col ul a { color: var(--muted); font-size: 14px; }
.foot-col ul a:hover { color: var(--champagne-dk); }

.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .05em;
}
.foot-bottom .pay { display: flex; gap: 10px; align-items: center; }
.foot-bottom .pay span {
  font-size: 10px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =========================================================
   PAGE HEADER (inner pages)
   ========================================================= */
.page-header {
  padding: clamp(60px, 9vw, 120px) 0 clamp(40px, 6vw, 70px);
  text-align: center;
  background: var(--ivory-soft);
  border-bottom: 1px solid var(--line);
}
.page-header h1 { margin: 14px 0 12px; }
.crumbs { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); }
.crumbs a:hover { color: var(--champagne-dk); }
.crumbs .sep { margin: 0 10px; color: var(--champagne); }

/* =========================================================
   SHOP LAYOUT
   ========================================================= */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(30px, 4vw, 60px);
}
.shop-sidebar h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.shop-sidebar .filter-group { margin-bottom: 36px; }
.shop-sidebar ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--charcoal);
  cursor: pointer;
}
.shop-sidebar ul li:hover { color: var(--champagne-dk); }
.shop-sidebar ul li .count { color: var(--muted); margin-left: auto; font-size: 12px; }

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 14px;
}
.shop-toolbar .count { font-size: 12px; color: var(--muted); letter-spacing: .08em; }
.shop-toolbar select {
  background: transparent;
  border: 1px solid var(--line);
  padding: 10px 36px 10px 14px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--charcoal);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%231c1a17' stroke-width='1.2' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px;
  cursor: pointer;
}
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 36px); }

.pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.pagination a {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  font-size: 13px;
  transition: all .3s var(--ease);
}
.pagination a.active, .pagination a:hover { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }

/* =========================================================
   SINGLE PRODUCT
   ========================================================= */
.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: flex-start;
}
.gallery { display: grid; grid-template-columns: 90px 1fr; gap: 16px; }
.gallery-thumbs { display: flex; flex-direction: column; gap: 12px; }
.gallery-thumbs img {
  width: 100%; aspect-ratio: 1/1;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.gallery-thumbs img.active, .gallery-thumbs img:hover { border-color: var(--champagne); }
.gallery { position: relative; }
.gallery-main {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main.zooming { cursor: crosshair; }

.zoom-lens {
  position: absolute;
  display: none;
  pointer-events: none;
  border: 1px solid var(--champagne);
  background: rgba(255, 255, 255, .28);
  z-index: 5;
}
.gallery-main.zooming .zoom-lens { display: block; }

.zoom-result {
  position: absolute;
  top: 0;
  left: calc(100% + 16px);
  display: none;
  z-index: 30;
  pointer-events: none;
  background-color: var(--cream);
  background-repeat: no-repeat;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}
.gallery-main.zooming ~ .zoom-result { display: block; }

.product-info .eyebrow { display: block; margin-bottom: 10px; }
.product-info h1 { margin-bottom: 16px; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.product-info .price {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 26px;
}
.product-info .rating { display: flex; gap: 4px; margin-bottom: 22px; color: var(--champagne); }
.product-info .desc { color: var(--muted); margin-bottom: 28px; }

.option-block { margin-bottom: 22px; }
.option-block .label {
  display: block;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch {
  padding: 10px 18px;
  border: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.swatch.active, .swatch:hover { border-color: var(--charcoal); }

.qty-row { display: flex; gap: 12px; margin-bottom: 28px; }
.qty {
  display: flex;
  border: 1px solid var(--line);
  align-items: center;
}
.qty button { width: 44px; height: 50px; font-size: 16px; }
.qty input {
  width: 50px; height: 50px;
  text-align: center;
  border: 0;
  background: transparent;
  font-family: var(--serif);
  font-size: 16px;
  outline: none;
}

.product-meta {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.product-meta p { margin-bottom: 8px; }
.product-meta strong { color: var(--charcoal); font-weight: 500; }

/* =========================================================
   ABOUT page
   ========================================================= */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  padding: 60px 0;
  border-block: 1px solid var(--line);
}
.about-stats .stat .num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--champagne-dk);
  display: block;
  margin-bottom: 6px;
}
.about-stats .stat .lbl {
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 50px);
}
.value-card { text-align: center; padding: 20px; }
.value-card .icon-circle {
  width: 70px; height: 70px;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--champagne-dk);
}
.value-card .icon-circle svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.3; }
.value-card h3 { margin-bottom: 12px; }
.value-card p { color: var(--muted); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.4vw, 36px);
}
.team-card .media {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--cream);
}
.team-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.team-card:hover .media img { transform: scale(1.05); }
.team-card h4 { font-size: 1.2rem; margin-bottom: 4px; }
.team-card span { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--champagne-dk); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(30px, 5vw, 70px);
}
.contact-info .info-block { margin-bottom: 32px; }
.contact-info .info-block h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}
.contact-info .info-block p { color: var(--muted); line-height: 1.7; }

.contact-form { display: grid; gap: 18px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label {
  display: block;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--muted);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--charcoal);
  outline: none;
  transition: border-color .3s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--champagne); }
.contact-form textarea { resize: vertical; min-height: 130px; }

.map-embed {
  margin-top: 40px;
  aspect-ratio: 21/9;
  background: var(--cream) url("../images/map-bg.jpg") center/cover no-repeat;
  filter: grayscale(.25);
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
.reveal { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js-reveal .reveal { opacity: 0; transform: translateY(28px); }
.js-reveal .reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .products { grid-template-columns: repeat(3, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .foot-grid .foot-col:last-child { grid-column: span 3; }
}

@media (max-width: 900px) {
  .nav { grid-template-columns: auto 1fr auto; height: 70px; }
  .nav-left .menu { display: none; }
  .nav-right .menu { display: none; }
  .hamburger { display: block; }
  .brand { font-size: 1.4rem; letter-spacing: .3em; }
  .brand small { font-size: 8px; }

  .collections { grid-template-columns: 1fr; }
  .split, .split.reverse { grid-template-columns: 1fr; direction: ltr; }
  .split.reverse > * { direction: ltr; }
  .split-media { aspect-ratio: 4/3; }

  .insta-strip { grid-template-columns: repeat(3, 1fr); }
  .journal-grid { grid-template-columns: 1fr; }

  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar {
    border: 1px solid var(--line);
    padding: 18px 20px;
  }
  .shop-sidebar .filter-group { margin-bottom: 20px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }

  .product-detail { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-main.zooming { cursor: default; }
  .zoom-lens, .zoom-result { display: none !important; }
  .gallery-thumbs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .gallery-thumbs img { width: 70px; flex: 0 0 70px; }

  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

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

  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid .foot-brand { grid-column: span 2; }
  .foot-grid .foot-col:last-child { grid-column: span 2; }

  .foot-bottom { justify-content: center; text-align: center; flex-direction: column; }
}

@media (max-width: 560px) {
  .products { grid-template-columns: repeat(2, 1fr); gap: 16px 14px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .insta-strip { grid-template-columns: repeat(3, 1fr); }
  .about-stats { grid-template-columns: 1fr 1fr; }

  .hero { min-height: 78vh; }
  .scroll-cue { display: none; }
  .marquee-track { gap: 50px; font-size: 1.2rem; }
  .marquee-track span { gap: 50px; }

  .tabs { gap: 16px; }
  .contact-form .row { grid-template-columns: 1fr; }

  .menu a { font-size: 10px; letter-spacing: .22em; }
  .btn { padding: 12px 24px; font-size: 10px; letter-spacing: .22em; }

  .foot-grid { grid-template-columns: 1fr; }
  .foot-grid .foot-brand,
  .foot-grid .foot-col:last-child { grid-column: span 1; }
}

