/* ============================================================
   MAAHIRAA DIAMONDS - Style System
   ============================================================ */

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; }

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --ivory:       #FAFAF7;
  --white:       #FFFFFF;
  --ink:         #17170F;
  --charcoal:    #26261C;
  --warm-gray:   #6B6355;
  --light-gray:  #E8E4DC;
  --gold:        #B8925A;
  --gold-light:  #D4AF7A;
  --gold-deep:   #8A6832;
  --gold-line:   rgba(184, 146, 90, 0.22);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;

  --section-v: clamp(90px, 11vw, 150px);
  --gutter:    clamp(22px, 5.5vw, 90px);

  --ease:      cubic-bezier(0.25, 0.10, 0.25, 1.00);
  --ease-out:  cubic-bezier(0.00, 0.00, 0.20, 1.00);
  --dur-fast:  0.35s;
  --dur:       0.65s;
  --dur-slow:  0.90s;
}

/* ============================================================
   BASE
   ============================================================ */
body {
  font-family: var(--sans);
  background-color: var(--ivory);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(4.8rem, 11vw, 10.5rem); }
h2 { font-size: clamp(3rem, 6.5vw, 5.8rem); }
h3 { font-size: clamp(1.9rem, 2.8vw, 2.6rem); font-weight: 400; }

h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--warm-gray);
}

strong { font-weight: 600; color: var(--charcoal); }

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

.eyebrow--light { color: rgba(212, 175, 122, 0.85); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-outline {
  display: inline-block;
  margin-top: 2.6rem;
  padding: 0.95rem 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn-gold {
  display: inline-block;
  margin-top: 2.6rem;
  padding: 0.95rem 2.6rem;
  background: var(--gold);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background var(--dur) var(--ease), transform var(--dur-fast) var(--ease);
}
.btn-gold:hover { background: var(--gold-deep); transform: translateY(-2px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.nav-header.scrolled {
  background: rgba(250, 250, 247, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--gold-line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--gutter);
  max-width: 1440px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 10;
}

.nav-logo img {
  width: clamp(68px, 6vw, 92px);
  height: clamp(68px, 6vw, 92px);
  object-fit: contain;
  flex-shrink: 0;
}

.nav-brand {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 500;
  color: var(--ink);
  transition: color var(--dur-fast);
  white-space: nowrap;
}

.nav-header:not(.scrolled) .nav-brand { color: #fff; }

nav ul.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--dur-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--dur-fast) var(--ease);
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-header.scrolled .nav-links a { color: var(--warm-gray); }
.nav-header.scrolled .nav-links a:hover { color: var(--gold); }

.nav-cta {
  padding: 0.55rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.nav-cta::after { display: none !important; }
.nav-header.scrolled .nav-cta { border-color: var(--gold-line); color: var(--gold) !important; }
.nav-header.scrolled .nav-cta:hover { background: var(--gold); color: #fff !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s, background 0.3s;
  transform-origin: center;
}

.nav-header.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 105;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.nav-mobile.open { display: flex; }
.nav-mobile ul { display: flex; flex-direction: column; align-items: center; gap: 2.6rem; }
.nav-mobile ul a {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  font-weight: 400;
  color: var(--ink);
  transition: color var(--dur-fast);
}
.nav-mobile ul a:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--gutter) clamp(65px, 9vh, 110px);
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; }

.hero-img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,5,0.80) 0%, rgba(8,8,5,0.28) 45%, rgba(8,8,5,0.06) 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 1000px; }

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212, 175, 122, 0.9);
  margin-bottom: 0.9rem;
  animation: fadeUp 1s var(--ease-out) 0.3s both;
}

.hero-title {
  line-height: 0.9;
  color: #fff;
  margin-bottom: 1.3rem;
  animation: fadeUp 1s var(--ease-out) 0.5s both;
}
.hero-title em { font-style: italic; font-weight: 300; color: var(--gold-light); }

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  animation: fadeUp 1s var(--ease-out) 0.7s both;
}

.hero-content .btn-outline { animation: fadeUp 1s var(--ease-out) 0.9s both; }

.hero-scroll {
  position: absolute;
  bottom: clamp(32px, 4.5vh, 56px);
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  animation: fadeIn 1.2s var(--ease-out) 1.4s both;
}

.hero-scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.45) 40%, transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

.hero-scroll span {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.7); transform-origin: top; }
  50%       { opacity: 1;    transform: scaleY(1);   transform-origin: top; }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  padding: 1rem var(--gutter);
  background: var(--white);
}

.ticker-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem clamp(1.2rem, 3vw, 2.2rem);
  max-width: 1440px;
  margin: 0 auto;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-align: center;
}

.ticker-dot { color: var(--gold); font-size: 0.48rem; align-self: center; }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  padding: var(--section-v) var(--gutter);
  background: var(--white);
  text-align: center;
}

.manifesto-inner { max-width: 860px; margin: 0 auto; }

.manifesto-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 2.2rem;
}

.manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.8vw, 4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.28;
  color: var(--charcoal);
  border: none;
  padding: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.about-image { position: relative; overflow: hidden; }

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1s var(--ease);
}
.about-image:hover img { transform: scale(1.04); }

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-v) var(--gutter);
  background: var(--ivory);
}

.about-content h2 { margin-bottom: 1.6rem; }
.about-p2 { margin-top: 1rem; }

.about-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3.2rem;
  padding-top: 2.6rem;
  border-top: 1px solid var(--gold-line);
}

.stat-divider { width: 1px; height: 38px; background: var(--gold-line); flex-shrink: 0; }

.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-num--group {
  font-family: var(--sans);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.stat-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-top: 0.35rem;
}

/* ============================================================
   DIAMOND CUTS
   ============================================================ */
.cuts {
  padding: var(--section-v) var(--gutter);
  background: var(--white);
}

.cuts-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}

.cuts-sub { margin-top: 1rem; }

.cuts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.cut-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1rem;
  border: 1px solid var(--gold-line);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  cursor: default;
}

.cut-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(184, 146, 90, 0.1);
}

.cut-svg {
  width: 72px;
  height: 72px;
  color: var(--warm-gray);
  transition: color var(--dur) var(--ease);
  flex-shrink: 0;
}

.cut-item:hover .cut-svg { color: var(--gold); }

.cut-svg svg { width: 100%; height: 100%; }

.cut-name {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: color var(--dur) var(--ease);
}

.cut-item:hover .cut-name { color: var(--gold); }

/* ============================================================
   COLLECTION
   ============================================================ */
.collection {
  padding: var(--section-v) var(--gutter);
  background: var(--ivory);
}

.collection-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

.collection-sub { margin-top: 1rem; }

/* Category tabs */
.cat-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: clamp(32px, 5vw, 60px);
  border: 1px solid var(--gold-line);
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.cat-tab {
  background: none;
  border: none;
  padding: 0.75rem 2rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: background var(--dur-fast), color var(--dur-fast);
  position: relative;
}

.cat-tab + .cat-tab { border-left: 1px solid var(--gold-line); }

.cat-tab.active,
.cat-tab:hover {
  background: var(--gold);
  color: #fff;
}

/* Collection grid - data-driven media tiles */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: clamp(280px, 28vw, 380px);
  gap: 1rem;
  max-width: 1440px;
  margin: 0 auto;
}

.grid-item {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  cursor: pointer;
}

.grid-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.grid-item video.grid-media {
  display: block;
  background: var(--charcoal);
}

.grid-item:hover .grid-media,
.grid-item:focus-visible .grid-media,
.grid-item.is-previewing .grid-media {
  transform: scale(1.07);
  filter: brightness(0.72);
}

.grid-item:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.grid-item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.8rem 1.5rem 1.4rem;
  background: linear-gradient(to top, rgba(8,8,5,0.85) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
}

.grid-item:hover .grid-item-info,
.grid-item:focus-visible .grid-item-info { transform: none; }

.grid-item-info p {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  color: #fff;
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.grid-item-info span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.grid-video-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.42);
  background: rgba(8,8,5,0.35);
  color: rgba(255,255,255,0.82);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============================================================
   CRAFT
   ============================================================ */
.craft {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: var(--section-v) var(--gutter);
  overflow: hidden;
}

.craft-media { position: absolute; inset: 0; }

.craft-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 5, 0.82);
}

.craft-content { position: relative; z-index: 2; max-width: 660px; }
.craft-heading { color: #fff; margin-bottom: 1.5rem; }
.craft-heading em { color: var(--gold-light); }
.craft-content p { color: rgba(255,255,255,0.62); font-size: 1.05rem; line-height: 1.82; max-width: 500px; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  padding: var(--section-v) var(--gutter);
  background: var(--ivory);
}

.reviews-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  padding: 2.4rem 2rem;
  background: var(--white);
  border: 1px solid var(--gold-line);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.review-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(184, 146, 90, 0.1);
}

.review-stars {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.review-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.65;
  flex: 1;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gold-line);
}

.review-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.04em;
}

.review-piece {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   BRAND VALUES
   ============================================================ */
.values {
  padding: var(--section-v) var(--gutter);
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.value-item {
  text-align: center;
  padding: 3rem 2rem 2.6rem;
  border: 1px solid var(--gold-line);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.value-item:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 50px rgba(184, 146, 90, 0.1);
  transform: translateY(-4px);
}

.value-icon { font-size: 0.9rem; color: var(--gold); letter-spacing: 0.4em; margin-bottom: 1.6rem; }

.value-item h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.9rem;
}

.value-item p { font-size: 0.95rem; }

/* ============================================================
   CUSTOM DESIGN BAND
   ============================================================ */
.custom-band {
  background: var(--charcoal);
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  text-align: center;
}

.custom-band-inner {
  max-width: 680px;
  margin: 0 auto;
}

.custom-band h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 1.2rem;
}
.custom-band h3 em { color: var(--gold-light); }

.custom-band p { color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto; }

.custom-band .btn-gold { margin-top: 2rem; }

/* ============================================================
   CONTACT (full-width, no image)
   ============================================================ */
.contact {
  background: var(--ink);
  padding: var(--section-v) var(--gutter);
  text-align: center;
}

.contact-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.contact-deco-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold-line);
}

.contact-deco-diamond {
  color: var(--gold);
  font-size: 0.7rem;
}

.contact-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.contact .eyebrow { color: var(--gold); text-align: center; display: block; }
.contact h2 { color: #fff; margin-bottom: 1.2rem; text-align: center; }
.contact h2 em { color: var(--gold-light); }

.contact-sub {
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin: 0 auto 3.6rem;
  font-size: 1rem;
  text-align: center;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  padding: 2.4rem 1.6rem;
  border: 1px solid rgba(184, 146, 90, 0.2);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
}

.contact-card:hover {
  border-color: var(--gold);
  background: rgba(184, 146, 90, 0.06);
  transform: translateY(-4px);
}

.contact-card-icon {
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
}

.contact-card-label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.contact-card-val {
  font-family: var(--serif);
  font-size: clamp(1.18rem, 1.45vw, 1.38rem);
  font-style: italic;
  color: rgba(255,255,255,0.75);
  transition: color var(--dur-fast);
  text-align: center;
  overflow-wrap: anywhere;
}

.contact-card-val--email {
  white-space: nowrap;
  overflow-wrap: normal;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
}

.contact-card:hover .contact-card-val { color: #fff; }

.contact-founder {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
  margin-top: 0;
}

.contact-founder strong { color: rgba(255,255,255,0.45); font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  padding: 3.2rem var(--gutter);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.8rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
}
.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.footer-nav { display: flex; gap: 2.2rem; flex-wrap: wrap; }
.footer-nav a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color var(--dur-fast);
}
.footer-nav a:hover { color: var(--gold); }

.footer-copy { font-size: 0.7rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.2); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox[hidden] { display: none; }

.lightbox-backdrop { position: absolute; inset: 0; background: rgba(8,8,5,0.95); cursor: pointer; }

.lightbox-img {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 1000px);
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 50px 130px rgba(0,0,0,0.6);
  animation: lbIn 0.35s var(--ease-out) both;
}

.lightbox-video {
  position: relative;
  z-index: 1;
  width: min(90vw, 1000px);
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 50px 130px rgba(0,0,0,0.6);
  animation: lbIn 0.35s var(--ease-out) both;
}

@keyframes lbIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: none; }
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  z-index: 2;
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
  padding: 0.4rem;
  transition: color var(--dur-fast), transform var(--dur-fast);
}
.lightbox-close:hover { color: #fff; transform: rotate(90deg); }

/* ============================================================
   RESPONSIVE - Tablet (max-width: 980px)
   ============================================================ */
@media (max-width: 980px) {
  nav ul.nav-links { display: none; }
  .nav-toggle { display: flex; }

  .about { grid-template-columns: 1fr; }
  .about-image { height: 65vw; min-height: 320px; }

  .cuts-grid { grid-template-columns: repeat(5, 1fr); gap: 0.8rem; }
  .cut-item { padding: 1.2rem 0.5rem; }
  .cut-svg { width: 52px; height: 52px; }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 280px;
  }

  .reviews-grid { grid-template-columns: repeat(2, 1fr); }

  .values-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; gap: 1.2rem; }

  .contact-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 760px; margin-left: auto; margin-right: auto; margin-bottom: 2.4rem; }
}

/* ============================================================
   RESPONSIVE - Mobile (max-width: 620px)
   ============================================================ */
@media (max-width: 620px) {
  h1 { font-size: clamp(3.8rem, 16vw, 5.5rem); }
  h2 { font-size: clamp(2.6rem, 10vw, 3.6rem); }

  .hero { padding-bottom: 64px; }
  .hero-scroll { display: none; }
  .nav-brand { font-size: 1rem; }
  .nav-inner { padding-top: 1rem; padding-bottom: 1rem; }
  .nav-logo { gap: 0.55rem; }
  .nav-logo img { width: 52px; height: 52px; }
  .ticker-track { gap: 0.75rem 1rem; font-size: 0.64rem; letter-spacing: 0.16em; }
  .ticker-dot { display: none; }

  .cuts-grid { grid-template-columns: repeat(2, 1fr); }
  .cut-item { padding: 1.4rem 0.8rem; }

  .collection-grid { grid-template-columns: 1fr; grid-auto-rows: 320px; }

  .cat-tabs { flex-wrap: wrap; border: none; gap: 0.5rem; }
  .cat-tab { border: 1px solid var(--gold-line) !important; }
  .grid-item-info { transform: none; padding: 1.5rem 1.2rem 1.15rem; }
  .grid-video-badge { top: 0.8rem; right: 0.8rem; }

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

  .about-stats { gap: 1.2rem; flex-wrap: wrap; }
  .stat-num--group { white-space: normal; }
  .contact-cards { grid-template-columns: 1fr; max-width: 400px; }
  .contact-card { padding-left: 1.1rem; padding-right: 1.1rem; }
  .contact-card-val--email { font-size: clamp(0.9rem, 3.7vw, 1rem); }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-brand img { width: 56px; height: 56px; }
  .footer-nav { gap: 1.4rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
  .hero-scroll-line { animation: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
