/* ═══════════════════════════════════════════
   TIANA JEWELLERY — WEBSITE STYLES
   Theme: Editorial Luxury · White Base
═══════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ── TOKENS ── */
:root {
  --white:      #ffffff;
  --off-white:  #fdfcf9;
  --cream:      #f8f4ed;
  --warm-gray:  #f0ece3;
  --gold:       #c9a050;
  --gold-dark:  #9e7c30;
  --gold-pale:  #faf3e0;
  --charcoal:   #1c1c1c;
  --mid:        #555555;
  --light-mid:  #888888;
  --border:     #e6e0d4;
  --dark-bg:    #141410;
  --dark-mid:   #2a2820;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Montserrat', sans-serif;

  --section-pad: 7rem 6rem;
}

body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; }
h1 { font-size: clamp(3.2rem, 6vw, 5.5rem); line-height: 1.02; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); line-height: 1.15; }
h3 { font-size: 1.4rem; line-height: 1.3; }

em { font-style: italic; }

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow.light { color: rgba(201,160,80,0.9); }

.body-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--mid);
  max-width: 520px;
}
.body-text.light { color: rgba(255,255,255,0.72); }

.center { text-align: center; }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.9rem 2.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,160,80,0.3);
}

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  padding: 0.85rem 2.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

.btn-white {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.8);
  color: var(--white);
  padding: 0.85rem 2.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.btn-white:hover { background: var(--white); color: var(--charcoal); }

.btn-gold-outline {
  display: inline-block;
  border: 1.5px solid rgba(201,160,80,0.7);
  color: rgba(201,160,80,0.9);
  padding: 0.85rem 2.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.btn-gold-outline:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

.full { width: 100%; text-align: center; }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0.6rem 4rem;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-logo-link { display: flex; align-items: center; }
.nav-logo { height: 56px; width: auto; }

.nav-links {
  display: flex;
  gap: 2.8rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-enquire {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--charcoal);
  padding: 0.6rem 1.5rem;
  transition: background 0.3s;
}
.nav-enquire:hover { background: var(--gold-dark); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 100vh;
  padding-top: 72px;
}
.hero-left {
  position: relative;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem 6rem 6rem;
  background: var(--off-white);
}
.hero-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
.hero-heading span { display: block; }
.hero-heading .italic {
  font-style: italic;
  color: var(--gold);
}
.hero-rule {
  width: 60px;
  height: 1.5px;
  background: var(--gold);
  margin: 2rem 0;
}
.hero-right .body-text { margin-bottom: 2.5rem; }
.hero-product-peek {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-product-peek img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 1.5px solid var(--border);
}
.peek-label { display: flex; flex-direction: column; }
.peek-cat {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.peek-name {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--charcoal);
}

/* ═══════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  background: var(--charcoal);
  padding: 0.85rem 0;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 0 2.5rem;
}
.marquee-track .dot {
  color: var(--gold);
  font-size: 0.45rem;
  padding: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   FEATURED PIECE
═══════════════════════════════════════════ */
.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: var(--cream);
}
.featured-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 5rem 7rem 6rem;
}
.featured-text h2 { margin-bottom: 1.5rem; }
.featured-text .body-text { margin-bottom: 2.5rem; }
.feat-meta {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feat-stat { display: flex; flex-direction: column; }
.fs-number {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.fs-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-mid);
}
.featured-image {
  overflow: hidden;
  position: relative;
  background: var(--warm-gray);
}
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}
.featured-image:hover img { transform: scale(1.03); }

/* ═══════════════════════════════════════════
   COLLECTIONS — EDITORIAL GRIDS
═══════════════════════════════════════════ */
.collections {
  padding: 7rem 6rem;
  background: var(--white);
}
.collections-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.collections-header h2 { max-width: 400px; }

/* Grid Row 1 — tall | stack | tall-offset */
.edit-grid-1 {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.8fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: start;
}
.eg-tall { position: relative; overflow: hidden; }
.eg-tall img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.eg-tall:hover img { transform: scale(1.04); }
.eg-offset { margin-top: 80px; }

.eg-stack { display: flex; flex-direction: column; gap: 1.5rem; }
.eg-item { position: relative; overflow: hidden; }
.eg-item img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.eg-item:hover img { transform: scale(1.04); }

.eg-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.2rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.eg-caption span:first-child {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 400;
}
.eg-cat {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* Grid Row 2 — equal 3 cols */
.edit-grid-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.eg-wide { position: relative; overflow: hidden; }
.eg-wide img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.eg-wide:hover img { transform: scale(1.04); }
.eg-center { margin-top: -50px; }

/* ═══════════════════════════════════════════
   EDITORIAL BREAK
═══════════════════════════════════════════ */
.editorial-break {
  position: relative;
  height: 75vh;
  min-height: 500px;
  overflow: hidden;
}
.editorial-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.editorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,8,0.7) 0%, rgba(10,10,8,0.1) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 6rem;
}
.editorial-text { text-align: center; }
.editorial-text h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  margin-bottom: 2rem;
}
.editorial-text h2 em { color: var(--gold-pale); }

/* ═══════════════════════════════════════════
   PENDANTS
═══════════════════════════════════════════ */
.pendants {
  padding: 7rem 6rem;
  background: var(--cream);
}
.pendants-header { margin-bottom: 4rem; text-align: center; }
.pendants-header h2 { color: var(--charcoal); }
.pendants-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.pendant-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}
.pendant-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.pendant-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s;
}
.pendant-card:hover img { transform: scale(1.05); }
.pc-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  padding: 1.2rem 1.5rem 0.25rem;
}
.pc-mat {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 1.5rem 1.5rem;
}

/* ═══════════════════════════════════════════
   WATCHES — DARK SECTION
═══════════════════════════════════════════ */
.watches {
  background: var(--dark-bg);
  padding: 0 0 7rem;
}
.watches-video-banner {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 560px;
  margin-bottom: 5rem;
}
.watches-text-panel {
  background: var(--dark-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 6rem;
}
.watches-text-panel h2 { color: var(--white); margin-bottom: 1.5rem; }
.watches-text-panel h2 em { color: var(--gold); }
.watches-text-panel .body-text { margin-bottom: 2.5rem; }
.watches-video-panel {
  overflow: hidden;
  position: relative;
}
.watches-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.watches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 0 6rem;
}
.watch-card {}
.watch-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  margin-bottom: 1rem;
  transition: opacity 0.3s;
}
.watch-card:hover img { opacity: 0.85; }
.wc-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.wc-mat {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201,160,80,0.7);
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  background: var(--white);
}
.about-left {
  padding: 7rem 5rem 7rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-left h2 { margin-bottom: 1.5rem; }
.about-left .body-text { margin-bottom: 1.2rem; }
.about-left .body-text:last-of-type { margin-bottom: 2.5rem; }
.about-right {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.stats-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  flex-shrink: 0;
}
.stat {
  padding: 2.5rem 2rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.stat:nth-child(2n) { border-right: none; }
.stat:nth-child(n+3) { border-bottom: none; }
.stat-n {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.stat-l {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light-mid);
}
.about-ring-img { flex: 1; overflow: hidden; }
.about-ring-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
.process {
  padding: 7rem 6rem;
  background: var(--charcoal);
}
.process .eyebrow { color: rgba(201,160,80,0.8); text-align: center; }
.process > h2 { color: var(--white); margin-bottom: 5rem; }
.process > h2 em { color: var(--gold); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
.process-step {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 2.5rem;
}
.step-num {
  display: block;
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201,160,80,0.25);
  line-height: 1;
  margin-bottom: 1rem;
}
.process-step h3 {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.process-step p {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact { background: var(--off-white); padding: 7rem 6rem; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 7rem;
  align-items: start;
}
.contact-left h2 { margin-bottom: 1.5rem; }
.contact-left .body-text { margin-bottom: 2.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 0; }
.ci-row {
  display: flex;
  gap: 1.5rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.ci-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 70px;
  padding-top: 0.15rem;
}
.ci-row span:last-child {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.6;
}

.cform { display: flex; flex-direction: column; gap: 1.2rem; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.cform input,
.cform select,
.cform textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--charcoal);
  padding: 1rem 1.2rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.cform input::placeholder,
.cform textarea::placeholder { color: #bbb; }
.cform input:focus,
.cform select:focus,
.cform textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,160,80,0.08);
}
.cform select { appearance: none; cursor: pointer; color: var(--charcoal); }
.cform select option[value=""] { color: #bbb; }
.cform textarea { height: 150px; resize: vertical; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 5rem 6rem 2.5rem;
}
.footer-top {
  display: flex;
  gap: 6rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand { flex: 0 0 320px; }
.footer-logo {
  height: auto;
  width: 220px;
  margin-bottom: 1.4rem;
  /* Logo has white bg — sits perfectly on white footer */
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--light-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 1.5rem; }
.footer-social a {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--charcoal); }

.footer-nav { display: flex; gap: 5rem; flex: 1; }
.footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.footer-col a {
  font-size: 0.85rem;
  color: var(--light-mid);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-dark); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--light-mid);
}

/* ═══════════════════════════════════════════
   NAVBAR DROPDOWNS
═══════════════════════════════════════════ */
.nav-group {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-parent {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-group:hover .nav-parent { color: var(--gold-dark); }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-6px);
  z-index: 300;
  padding-top: 0.8rem;
  margin-top: 0.4rem;
}
.nav-group:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.75rem 1.4rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: var(--cream); color: var(--gold-dark); }

.nav-link-plain {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.2s;
  align-self: center;
}
.nav-link-plain:hover { color: var(--gold-dark); }

/* hover bridge so cursor can travel from nav-parent into dropdown */
.nav-group::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1.2rem;
}

/* ═══════════════════════════════════════════
   NECKLACE FEATURE
═══════════════════════════════════════════ */
.necklace-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 5rem;
  border-top: 1px solid var(--border);
}
.nf-image { overflow: hidden; }
.nf-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center top;
}
.nf-text {
  padding: 5rem 4rem;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nf-text h2 { margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════
   STRIP GRID
═══════════════════════════════════════════ */
.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.sg-item { overflow: hidden; }
.sg-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s;
}
.sg-item:hover img { transform: scale(1.06); }

/* ═══════════════════════════════════════════
   MANAGEMENT TEAM
═══════════════════════════════════════════ */
.team {
  padding: 7rem 6rem;
  background: var(--white);
}
.team-header {
  margin-bottom: 5rem;
}
.team-intro {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--mid);
  max-width: 600px;
  margin: 1.5rem auto 0;
  text-align: center;
  line-height: 1.8;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.team-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 2px solid var(--gold);
}
.team-avatar span {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.05em;
}
.team-avatar-photo {
  background: none;
  overflow: hidden;
  width: 110px;
  height: 110px;
}
.team-avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
}
.team-card h3 {
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.team-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0;
}
.team-rule {
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin: 1.2rem auto;
}
.team-bio {
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--mid);
}

/* ═══════════════════════════════════════════
   BUSINESS PRINCIPLES
═══════════════════════════════════════════ */
.principles {
  background: var(--dark-bg);
  padding: 7rem 6rem;
}
.principles-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 7rem;
  align-items: start;
}
.principles-left h2 { color: var(--white); margin-bottom: 1.5rem; }
.principles-left h2 em { color: var(--gold); }
.principles-img {
  margin-top: 3rem;
  overflow: hidden;
}
.principles-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.principle-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.principle-item:first-child { padding-top: 0; }
.principle-item:last-child { border-bottom: none; }
.p-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: rgba(201,160,80,0.3);
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
}
.p-content h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.p-content p {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
}

/* ═══════════════════════════════════════════
   MANUFACTURING PROCESS
═══════════════════════════════════════════ */
.manufacturing {
  padding: 7rem 6rem;
  background: var(--cream);
}
.manufacturing .eyebrow { text-align: center; }
.manufacturing > h2 { margin-bottom: 1.5rem; }
.mfg-intro {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 640px;
  margin: 0 auto 5rem;
  text-align: center;
  line-height: 1.8;
}
.mfg-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}
.mfg-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background 0.3s;
}
.mfg-step:nth-child(4n) { border-right: none; }
.mfg-step:nth-child(n+5) { border-bottom: none; }
.mfg-step:hover { background: var(--gold-pale); }
.mfg-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.8rem;
  color: rgba(201,160,80,0.3);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1rem;
}
.mfg-step h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.mfg-step p {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.7;
}
.mfg-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.mfg-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ═══════════════════════════════════════════
   DIAMOND GUIDE
═══════════════════════════════════════════ */
.diamond-guide {
  padding: 7rem 6rem;
  background: var(--white);
}
.dg-header { margin-bottom: 4rem; }
.dg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.dg-card {
  padding: 3rem 2.5rem;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.dg-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,160,80,0.1);
}
.dg-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.dg-card h3 { margin-bottom: 1rem; color: var(--charcoal); }
.dg-card > p {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 1.5rem;
}
.dg-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.dg-list li {
  font-size: 0.82rem;
  color: var(--mid);
  padding-left: 1.2rem;
  position: relative;
}
.dg-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.45rem;
  top: 0.3rem;
}

/* ═══════════════════════════════════════════
   DIAMOND PROCUREMENT
═══════════════════════════════════════════ */
.diamonds { padding: 7rem 6rem; background: var(--off-white); }
.diamonds-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 7rem;
  align-items: center;
}
.diamonds-left { overflow: hidden; }
.diamonds-left img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.diamonds-right h2 { margin-bottom: 1.5rem; }
.dp-services {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 2.5rem 0;
}
.dp-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.dp-item:first-child { border-top: 1px solid var(--border); }
.dp-icon { color: var(--gold); font-size: 0.5rem; margin-top: 0.6rem; flex-shrink: 0; }
.dp-item h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.dp-item p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--mid);
}

/* ═══════════════════════════════════════════
   GALLERY SECTIONS
═══════════════════════════════════════════ */
.gallery-section {
  padding: 7rem 6rem;
  background: var(--cream);
}
.gallery-section > h2 { margin-bottom: 4rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}
.gg-item { overflow: hidden; }
.gg-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s;
}
.gg-item.gg-tall img { height: 400px; }
.gg-item:hover img { transform: scale(1.05); }

.earrings-section {
  padding: 7rem 6rem;
  background: var(--white);
}
.earrings-section > h2 { margin-bottom: 4rem; }
.earring-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ear-item { overflow: hidden; }
.ear-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s;
}
.ear-item:hover img { transform: scale(1.04); }

/* ═══════════════════════════════════════════
   FACTORY GALLERY
═══════════════════════════════════════════ */
.factory-section {
  padding: 7rem 6rem;
  background: var(--warm-gray);
}
.factory-section > h2 { margin-bottom: 1.5rem; }
.factory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.fg-item {
  overflow: hidden;
  position: relative;
}
.fg-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.05) saturate(0.9) sepia(0.08);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.fg-item:hover img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.05) saturate(1) sepia(0);
}
.fg-wide { grid-column: span 2; }
.fg-wide img { height: 250px; }

/* ═══════════════════════════════════════════
   HAMBURGER + MOBILE NAV
═══════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 300;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mn-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 1.1rem 2rem;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}
.mn-link:hover { color: var(--gold-dark); background: var(--cream); }
.mn-cta {
  margin-top: 1.5rem;
  background: var(--charcoal);
  color: var(--white);
  border: none;
}
.mn-cta:hover { background: var(--gold-dark); color: var(--white); }
body.nav-open { overflow: hidden; }

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-pad: 5rem 3rem; }

  .navbar { padding: 0.6rem 2rem; }
  .nav-links { gap: 1.6rem; }

  .hero { grid-template-columns: 1fr 1fr; }
  .hero-right { padding: 4rem 3rem; }

  .featured { grid-template-columns: 1fr 1fr; }
  .featured-text { padding: 5rem 3rem 5rem 4rem; }

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

  .watches-hero { gap: 3rem; }

  .principles-inner { gap: 4rem; }

  .contact-inner { gap: 4rem; }

  .factory-grid { grid-template-columns: repeat(3, 1fr); }
  .fg-wide { grid-column: span 2; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-pad: 4rem 1.5rem; }

  /* Navbar */
  .navbar { padding: 0.8rem 1.4rem; }
  .nav-links, .nav-enquire { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .nav-logo { height: 40px; }

  /* Hero — full-screen video background with text overlay on mobile */
  .hero {
    grid-template-columns: 1fr;
    min-height: 100vh;
    position: relative;
  }
  .hero-left {
    position: absolute;
    inset: 0;
    height: 100%;
    max-height: none;
    z-index: 0;
  }
  .hero-photo { object-position: center center; }
  .hero-right {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 7rem 1.8rem 3rem;
    background: linear-gradient(to bottom, rgba(10,10,8,0.45) 0%, rgba(10,10,8,0.65) 100%);
    justify-content: flex-end;
  }
  .hero-right .eyebrow { color: rgba(201,160,80,0.9); }
  .hero-heading { font-size: clamp(2.8rem, 10vw, 4rem); color: var(--white); }
  .hero-heading .italic { color: var(--gold); }
  .hero-rule { background: var(--gold); }
  .hero-right .body-text { font-size: 1rem; color: rgba(255,255,255,0.85); }

  /* Featured */
  .featured { grid-template-columns: 1fr; }
  .featured-text { padding: 4rem 1.5rem; order: 2; }
  .featured-image { order: 1; min-height: 300px; }
  .featured-image img { height: 300px; }

  /* Collections */
  .collections { padding: 4rem 1.5rem; }
  .collections-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .edit-grid-1 { grid-template-columns: 1fr; }
  .eg-tall img { height: 300px; }
  .eg-offset { margin-top: 0; }
  .eg-stack { gap: 1rem; }
  .eg-item img { height: 200px; }
  .edit-grid-2 { grid-template-columns: 1fr 1fr; }
  .eg-wide img { height: 220px; }
  .eg-center { margin-top: 0; }
  .strip-grid { grid-template-columns: repeat(3, 1fr); }
  .sg-item img { height: 120px; }

  /* Editorial break */
  .editorial-break { height: 55vw; min-height: 300px; }

  /* Pendants */
  .pendants { padding: 4rem 1.5rem; }
  .pendants-scroll { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .pendant-card img { height: 200px; }
  .necklace-feature { grid-template-columns: 1fr; }
  .nf-image img { height: 300px; }
  .nf-text { padding: 3rem 1.5rem; }

  /* Watches */
  .watches { padding: 0; }
  .watches-video-banner { grid-template-columns: 1fr; margin-bottom: 3rem; }
  .watches-text-panel { padding: 3rem 1.5rem; }
  .watches-video-panel { min-height: 280px; }
  .watches-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: 0 1.5rem 4rem; }
  .watch-card img { height: 180px; }

  /* About */
  .about { grid-template-columns: 1fr; }
  .about-left { padding: 4rem 1.5rem; }
  .about-right { min-height: auto; }
  .stats-block { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 1.5rem 1.2rem; }
  .stat-n { font-size: 2.2rem; }
  .about-ring-img img { min-height: 220px; }

  /* Team */
  .team { padding: 4rem 1.5rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .team-card { padding: 1.5rem 1rem; }
  .team-bio { font-size: 0.85rem; }

  /* Principles */
  .principles { padding: 4rem 1.5rem; }
  .principles-inner { grid-template-columns: 1fr; gap: 3rem; }
  .principles-img img { height: 220px; }

  /* Manufacturing */
  .manufacturing { padding: 4rem 1.5rem; }
  .mfg-steps { grid-template-columns: repeat(2, 1fr); }
  .mfg-step { padding: 1.5rem 1.2rem; }
  .mfg-step:nth-child(4n) { border-right: 1px solid var(--border); }
  .mfg-step:nth-child(2n) { border-right: none; }
  .mfg-step:nth-child(n+7) { border-bottom: none; }
  .mfg-step:nth-child(n+5):nth-child(-n+6) { border-bottom: 1px solid var(--border); }
  .mfg-gallery { grid-template-columns: repeat(2, 1fr); }
  .mfg-gallery img { height: 160px; }

  /* Factory */
  .factory-section { padding: 4rem 1.5rem; }
  .factory-grid { grid-template-columns: repeat(2, 1fr); }
  .fg-wide { grid-column: span 1; }
  .fg-item img { height: 180px; }

  /* Diamond Guide */
  .diamond-guide { padding: 4rem 1.5rem; }
  .dg-grid { grid-template-columns: 1fr; }

  /* Diamonds */
  .diamonds { padding: 4rem 1.5rem; }
  .diamonds-inner { grid-template-columns: 1fr; gap: 3rem; }
  .diamonds-left img { height: 280px; }

  /* Galleries */
  .gallery-section { padding: 4rem 1.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gg-item img { height: 180px; }
  .gg-item.gg-tall img { height: 260px; }

  .earrings-section { padding: 4rem 1.5rem; }
  .earring-grid { grid-template-columns: repeat(2, 1fr); }
  .ear-item img { height: 240px; }

  /* Contact */
  .contact { padding: 4rem 1.5rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .cform-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer { padding: 4rem 1.5rem 2rem; }
  .footer-top { flex-direction: column; gap: 3rem; }
  .footer-brand { flex: none; }
  .footer-nav { flex-wrap: wrap; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  h2 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .body-text { font-size: 1rem; max-width: 100%; }
  .mfg-intro { font-size: 1rem; }
  body { overflow-x: hidden; }
}
