@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --purple: #a298c3;
  --purple-light: rgba(162, 152, 195, 0.15);
  --cream: #fffaf5;
  --white: #ffffff;
  --black: #000000;
  --gray: #8d8d8d;
  --font-serif: 'Instrument Serif', serif;
  --font-sans: 'Instrument Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

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

/* Thin sub-footer rendered at the bottom of every page. */
.sub-footer {
  padding: 17px 42px;
  background: #F3EFFF;
  color: #A298C3;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  border-top: 1px solid rgba(162, 152, 195, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.sub-footer p {
  margin: 0;
}

.sub-footer .designed-by {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.sub-footer .designed-by a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.sub-footer .designed-by a:hover {
  text-decoration: underline;
}

.sub-footer .designed-by img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ========== NAVBAR ========== */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 30px 120px;
  height: 110px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
}

.navbar .logo {
  display: flex;
  align-items: center;
}

.navbar .logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-left: auto;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 20px;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.nav-links li {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 20px;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-toggle::after {
  content: '▾';
  font-size: 14px;
  margin-left: 2px;
}

.nav-links a.active,
.nav-dropdown-toggle.active {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: 8px;
  min-width: 180px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  margin-top: 8px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.nav-dropdown.open,
.nav-links li:hover > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 12px 20px;
  color: var(--black);
  font-size: 16px;
  border-bottom: 1px solid #eee;
}

.nav-dropdown a:last-child {
  border-bottom: none;
}

.nav-dropdown a:hover {
  background: var(--purple-light);
}

.nav-separator {
  position: absolute;
  top: 110px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
}

.hero-slides.hero-mobile {
  display: none;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-image.active {
  position: relative;
}

.hero-image.active {
  opacity: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  text-align: center;
  color: var(--white);
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--black);
}

.hero-content p {
  font-family: var(--font-sans);
  font-size: 18px;
  color: #555;
  margin-bottom: 32px;
}

.btn-pill {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 20px;
  padding: 16px 48px;
  border-radius: 45px;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-pill:hover {
  opacity: 0.9;
}

.hero-btn {
  position: absolute;
  bottom: 100px;
  left: 193px;
}

.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 157px;
  pointer-events: none;
}

.hero-arrows img {
  width: 36px;
  height: 36px;
  cursor: pointer;
  pointer-events: all;
}

.hero-arrows img:last-child {
  transform: rotate(180deg);
}

.hero-dots {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.6);
}

.hero-dots .dot.active {
  width: 35px;
  background: var(--white);
}

/* ========== SECTION TITLES ========== */
.section-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 36px;
  color: var(--purple);
  font-weight: 400;
}

.section-underline {
  width: 64px;
  height: 2px;
  background: var(--purple);
  margin-top: 12px;
}

.section-underline-wide {
  width: 157px;
  height: 2px;
  background: var(--purple);
  margin-top: 12px;
}

/* ========== ABOUT US ========== */
.about-section {
  padding: 70px clamp(24px, 8vw, 192px) 30px;
  display: flex;
  gap: clamp(24px, 4vw, 80px);
  align-items: flex-start;
}

.about-text {
  flex: 1;
  min-width: 0;
}

.about-text .section-title,
.trust-inline .section-title {
  font-size: clamp(22px, 2.6vw, 36px);
  margin-bottom: 0;
}

.about-text .section-underline {
  margin-bottom: 20px;
}

.about-body {
  font-size: clamp(13px, 1.7vw, 18px);
  line-height: 1.5;
  color: var(--black);
}

.about-body p {
  margin-bottom: clamp(8px, 1vw, 16px);
}

.about-image {
  flex: 0 1 580px;
  width: 100%;
  max-width: 580px;
  aspect-ratio: 580 / 781;
  height: auto;
  border-radius: 50px;
  overflow: hidden;
}

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

/* ========== WHY TRUST US (inline with About) ========== */
.trust-inline {
  margin-top: clamp(20px, 3vw, 40px);
}

.trust-inline .section-title {
  margin-bottom: 0;
}

.trust-inline .section-underline {
  margin-bottom: 24px;
}

.trust-columns {
  display: flex;
  gap: clamp(20px, 4vw, 60px);
}

.trust-columns .col {
  flex: 1;
}

.trust-columns h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(14px, 1.4vw, 18px);
  margin-bottom: clamp(6px, 0.8vw, 12px);
}

.trust-columns p {
  font-size: clamp(13px, 1.7vw, 18px);
  line-height: 1.5;
}

/* ========== JEWELLERY RANGE ========== */
.jewellery-range {
  text-align: center;
  padding-top: 20px;
}

.jewellery-range .section-title {
  display: inline-block;
}

.jewellery-range .section-underline-wide {
  margin: 12px auto 0;
}

.jewellery-strip {
  background: var(--purple-light);
  margin-top: 30px;
  padding: 50px 0;
  position: relative;
}

.jewellery-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 44px);
  padding: 0 clamp(24px, 8vw, 193px);
}

.jewellery-card {
  flex: 1 1 240px;
  width: 100%;
  max-width: 350px;
  height: 321px;
  background: var(--cream);
  border-radius: 12px;
  position: relative;
  overflow: visible;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.jewellery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.jewellery-card-inner {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.jewellery-card .card-image {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 288px;
  height: 300px;
  object-fit: contain;
  z-index: 2;
  transition: transform 0.4s ease;
}

.jewellery-card:hover .card-image {
  transform: translateX(-50%) scale(1.05);
}

.jewellery-card .card-name {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--black);
  z-index: 3;
}

/* ========== DIAMOND RANGE ========== */
.diamond-range {
  text-align: center;
  padding: 60px 0 0;
  position: relative;
}

.diamond-range .section-title {
  display: inline-block;
}

.diamond-range .section-underline-wide {
  margin: 12px auto 0;
}

.diamond-ellipse {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}

.diamond-ellipse img {
  width: 2024px;
  margin-left: -30px;
}

.diamond-scroll-wrapper {
  perspective: 1200px;
  overflow: hidden;
  mask: linear-gradient(90deg, #0000, #000 15% 85%, #0000);
  -webkit-mask: linear-gradient(90deg, #0000, #000 15% 85%, #0000);
}

.diamond-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 40px 200px 40px 80px;
  scrollbar-width: none;
  align-items: center;
}

.diamond-scroll::-webkit-scrollbar {
  display: none;
}

.diamond-card {
  position: relative;
  flex-shrink: 0;
  width: 420px;
  height: 280px;
  border-radius: 0;
  overflow: hidden;
  transform-origin: center center;
  cursor: pointer;
}

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

/* Hover overlay (per Figma component variant Group 1000001775) */
.diamond-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.2s ease-out;
  pointer-events: none;
}

.diamond-card:hover .diamond-card-overlay {
  opacity: 1;
}

.diamond-card-label {
  position: relative;
  font-family: var(--font-serif);
  font-size: 30px;
  color: #fffaf5;
  text-align: center;
  white-space: nowrap;
  padding-bottom: 8px;
}

.diamond-card-label::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 56px;
  height: 1px;
  background: #fffaf5;
}

.diamond-range .btn-pill {
  margin-top: 10px;
  margin-bottom: 40px;
}

/* ========== QUOTE BANNER ========== */
.quote-banner {
  background: var(--purple);
  padding: 80px 120px;
  text-align: center;
}

.quote-banner p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 48px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.4;
}

/* ========== ASSOCIATES / WORLD MAP ========== */
/* Designed against a 1920×866 section. The globe image is intentionally
   larger than the section (1920×2400 in the Figma) and anchored at
   top: -272px so the visible 866px slice shows the equator/northern band
   of the globe. All values are stored as percentages of the 1920×866
   section so everything scales together with the viewport. */
.associates-section {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 866;
  overflow: hidden;
}

.associates-bg {
  position: absolute;
  top: -31.41%;        /* -272 / 866 */
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 2400;
  object-fit: cover;
  object-position: center top;
}

.associates-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: clamp(20px, 5.9vw, 51px);
}

.associates-content .section-title {
  display: inline-block;
}

.associates-content .section-underline {
  margin: 12px auto 0;
}

.associate-cards {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.associate-card {
  position: absolute;
  background: var(--white);
  border-radius: clamp(8px, 0.8vw, 15px);
  padding: clamp(8px, 1.1vw, 20px) clamp(7px, 1vw, 18px);
  text-align: center;
  font-size: clamp(9px, 0.83vw, 16px);
}

.associate-card h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 4px;
  font-size: clamp(9px, 0.83vw, 16px);
}

.associate-card .address {
  font-style: italic;
  font-family: var(--font-sans);
  line-height: 1.4;
}

.associate-card .email-link {
  font-style: italic;
  font-family: var(--font-sans);
}

.associate-card .email-link a {
  text-decoration: underline;
  color: var(--black);
}

/* All positions/sizes are % of the 1920×866 design canvas */
.card-antwerpen { width: 18.958%; height: 13.857%; top: 19.515%; left: 23.854%; }
.card-dubai     { width: 18.958%; height: 13.857%; top: 46.420%; left: 17.708%; }
.card-mumbai    { width: 18.958%; height: 13.857%; top: 19.746%; left: 52.240%; }
.card-hongkong  { width: 18.958%; height: 13.857%; top: 46.420%; left: 63.229%; }
.card-la        { width: 20.885%; min-height: 18.360%; top: 57.275%; left: 39.792%; } /* 496, was 546 (-50px) */

.map-pin {
  position: absolute;
  width: 1.615%;
  height: 3.580%;
}

/* Pin positions per Figma design 33:107 (% of the 1920×866 canvas) */
.pin-antwerpen { top: 34.989%; left: 30.521%; } /* 303, 586 */
.pin-dubai     { top: 63.279%; left: 26.354%; } /* 548, 506 */
.pin-mumbai    { top: 34.527%; left: 60.104%; } /* 299, 1154 */
.pin-hongkong  { top: 61.201%; left: 71.875%; } /* 530, 1380 */
.pin-la        { top: 83.141%; left: 48.177%; } /* 720, 925 */

/* ========== 4 C's ========== */
.fourcees-section {
  padding: 50px clamp(24px, 8vw, 193px);
  position: relative;
}

.fourcees-header {
  text-align: center;
  margin-bottom: 40px;
}

.fourcees-header .section-underline-wide {
  margin: 12px auto 0;
}

.fourcees-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr) minmax(0, 1fr);
  grid-template-rows: 280px 280px;
  gap: 20px;
  align-items: start;
  position: relative;
  min-height: 600px;
}

.fourcees-center {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-width: 0;
}

.fourcees-center img {
  width: 100%;
  max-width: 555px;
  height: auto;
  max-height: 646px;
  object-fit: contain;
}

.fourcees-card {
  background: var(--cream);
  border-radius: 15px;
  padding: 24px 28px;
  width: 100%;
  max-width: 448px;
  height: 256px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* Left-column cards (1st and 4th children) hug left; right-column cards (3rd and 5th) hug right */
.fourcees-grid > .fourcees-card:nth-child(1),
.fourcees-grid > .fourcees-card:nth-child(4) {
  justify-self: start;
}
.fourcees-grid > .fourcees-card:nth-child(3),
.fourcees-grid > .fourcees-card:nth-child(5) {
  justify-self: end;
}

.fourcees-card h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--black);
  flex-shrink: 0;
}

.fourcees-card p {
  font-size: clamp(13px, 1.1vw, 18px);
  line-height: 1.5;
  flex: 1;
  overflow: hidden;
}

/* ========== CONTACT ========== */
.contact-section {
  padding: 50px 0 60px;
  text-align: center;
}

.contact-section .section-title {
  font-size: 32px;
  display: inline-block;
}

.contact-section .section-underline {
  margin: 12px auto 30px;
}

.contact-card {
  width: min(1196px, calc(100% - 40px));
  margin: 0 auto;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 0 60px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  overflow: hidden;
  min-height: 647px;
}

.contact-info-panel {
  flex: 0 0 auto;
  width: 491px;
  max-width: 41%;
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.contact-info-panel .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.contact-info-panel > * {
  position: relative;
  z-index: 1;
}

.contact-info-panel h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 160px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 48px;
}

.contact-detail img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.contact-detail p {
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}

.contact-detail .phone-text {
  font-size: 14px;
  line-height: 20px;
}

.contact-socials {
  display: flex;
  gap: 9px;
  margin-top: auto;
}

.contact-socials img {
  width: 30px;
  height: 30px;
}

.contact-form-panel {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.form-group {
  flex: 1;
  text-align: left;
}

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 4px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 8px 0;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--black);
  outline: none;
  background: transparent;
}

.form-group textarea {
  resize: none;
  min-height: 60px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
  font-size: 14px;
}

.form-group-full {
  margin-bottom: 30px;
  text-align: left;
}

.form-group-full label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 4px;
}

.form-group-full textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 8px 0;
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  resize: none;
  min-height: 60px;
  background: transparent;
}

.form-group-full textarea::placeholder {
  color: var(--gray);
}

.btn-submit {
  background: var(--purple);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 8px 32px;
  border-radius: 45px;
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

.btn-submit:hover {
  opacity: 0.9;
}

/* ========== FOOTER ========== */
.footer {
  position: relative;
  width: 100%;
  height: 295px;
  overflow: hidden;
  background: #F3EFFF;
}

.footer-bg {
  display: none;
}

.footer-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 60px 113px;
  height: 100%;
  color: #A298C3;
}

.footer-logo img {
  width: 293px;
  height: auto;
  object-fit: contain;
  margin-top: 60px;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 75px;
}

.footer-nav a {
  font-size: 18px;
  color: #A298C3;
}

.footer-divider {
  width: 1px;
  height: 22px;
  background: rgba(162, 152, 195, 0.5);
}

.footer-reach {
  margin-top: 12px;
}

.footer-reach h4 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-reach-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}

.footer-reach-item img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.footer-reach-item p {
  font-size: 14px;
  line-height: 1.5;
}

.footer-reach-item .footer-email {
  font-size: 16px;
}

.footer-reach-item .footer-email a {
  color: #A298C3;
  text-decoration: none;
}

.footer-reach-item .footer-email a:hover {
  text-decoration: underline;
}

.footer-reach-item .footer-address {
  font-size: 16px;
  line-height: 1.5;
}

/* ========== DISCOVER MORE BUTTON (diamond) ========== */
.discover-more-center {
  text-align: center;
}

/* ========== PRODUCT GRID PAGES (earrings, necklace, rings, bracelets) ========== */
.page-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.page-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.page-hero .hero-mobile {
  display: none;
}


.page-title {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  padding: 32px 0 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  background: #F6F6F6;
  margin: 0;
}

.page-separator {
  width: 100%;
  height: 1px;
  background: #ccc;
  margin-top: 0;
  padding-top: 28px;
  background-color: #F6F6F6;
  border-bottom: 1px solid #ccc;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 27px 0 100px;
  background: #F6F6F6;
}

.product-grid-item {
  aspect-ratio: 465 / 395;
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  border: none;
}

.product-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-grid-item:hover img {
  transform: scale(1.15);
}

/* ========== DIAMOND DETAIL PAGE (briolette) ========== */
.diamond-hero {
  position: relative;
  width: 100%;
  height: 577px;
  overflow: hidden;
}

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

.diamond-hero-title {
  position: absolute;
  bottom: clamp(40px, 10vw, 120px);
  right: clamp(20px, 8vw, 193px);
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 400;
  color: #522400;
}

.diamond-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 400;
  text-align: center;
  padding: 38px 0 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.diamond-separator {
  width: 100%;
  height: 1px;
  background: #ccc;
  margin-top: 22px;
}

.diamond-content {
  display: flex;
  gap: clamp(32px, 5vw, 105px);
  padding: 67px clamp(24px, 8vw, 193px) 80px;
  align-items: flex-start;
}

.diamond-image-wrapper {
  position: relative;
  flex: 0 1 605px;
  width: 100%;
  max-width: 605px;
  aspect-ratio: 605 / 538;
  height: auto;
}

.diamond-image-wrapper .main-img {
  width: 76.86%; /* 465 / 605 */
  height: 100%;
  object-fit: cover;
}

.diamond-image-wrapper .detail-img {
  position: absolute;
  top: 25.09%;   /* 135 / 538 */
  left: 59.67%;  /* 361 / 605 */
  width: 40.33%; /* 244 / 605 */
  height: 57.25%; /* 308 / 538 */
  border: 1px solid var(--gray);
  overflow: hidden;
}

.diamond-image-wrapper .detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
}

/* Carousel: transparent on desktop/tablet so layout is unchanged */
.diamond-carousel-track {
  display: contents;
}
.carousel-arrow,
.carousel-dots {
  display: none;
}

.diamond-description {
  flex: 1;
  min-width: 0;
  max-width: 695px;
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.4vw, 22px);
  line-height: 1.45;
  color: var(--black);
}

.diamond-description p {
  margin-bottom: clamp(12px, 1.5vw, 24px);
}
/* ========== HAMBURGER MENU ========== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
  background: none;
  border: none;
  z-index: 201;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1023px) {

  /* ========== Navbar ========== */
  .navbar {
    padding: 20px 40px;
    height: 90px;
  }

  .nav-links {
    gap: 24px;
  }

  .nav-links a,
  .nav-dropdown-toggle {
    font-size: 16px;
  }

  .navbar .logo img {
    height: 48px;
  }

  .nav-separator {
    top: 90px;
  }

  /* ========== Hero ========== */
  .hero-arrows {
    padding: 0 40px;
  }

  .hero-dots {
    bottom: 30px;
  }

  /* ========== About Section ========== */
  .about-section {
    flex-direction: column;
    padding: 50px 40px 30px;
    gap: 40px;
  }

  .about-image {
    width: 100%;
    height: auto;
    max-height: 500px;
  }

  /* ========== Trust (inline) ========== */
  .trust-columns {
    gap: 30px;
  }

  /* ========== Jewellery Cards ========== */
  .jewellery-cards {
    flex-wrap: wrap;
    padding: 0 40px;
    gap: 30px;
    justify-content: center;
  }

  .jewellery-card {
    width: calc(50% - 15px);
    max-width: none;
    height: 280px;
  }

  .jewellery-card .card-image {
    width: 220px;
    height: 240px;
  }

  .jewellery-card .card-name {
    font-size: 26px;
  }

  /* ========== Diamond Scroll ========== */
  .diamond-scroll {
    padding: 40px 80px 40px 40px;
  }

  .diamond-card {
    width: 300px;
  }

  /* ========== Quote Banner ========== */
  .quote-banner {
    padding: 60px 60px;
  }

  .quote-banner p {
    font-size: 36px;
  }

  /* ========== 4Cs Grid ========== */
  .fourcees-section {
    padding: 50px 40px;
  }

  .fourcees-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
  }

  .fourcees-center {
    grid-column: 1 / -1;
    grid-row: 1;
    order: -1;
  }

  .fourcees-center img {
    width: 350px;
  }

  .fourcees-card {
    width: 100%;
    height: auto;
  }

  /* ========== Contact Form ========== */
  .contact-card {
    width: 90%;
    flex-direction: column;
    min-height: 0;
  }

  .contact-info-panel {
    width: 100%;
    max-width: none;
  }

  .contact-info-panel h3 {
    margin-bottom: 40px;
  }

  /* ========== Product Grid Pages ========== */
  .page-hero {
    height: 400px;
  }

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

  /* ========== Diamond Detail Page ========== */
  .diamond-content {
    flex-direction: column;
    gap: 40px;
    padding: 40px 40px 60px;
  }

  .diamond-image-wrapper {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: auto;
  }

  .diamond-image-wrapper .main-img {
    width: 100%;
    height: auto;
  }

  .diamond-image-wrapper .detail-img {
    display: none;
  }

  .diamond-hero {
    height: 400px;
  }

  .diamond-hero-title {
    right: 40px;
    left: auto;
  }

  /* ========== Footer ========== */
  .footer {
    height: auto;
  }

  .footer-content {
    padding: 40px;
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-logo img {
    width: 200px;
    margin-top: 0;
  }

  .footer-nav {
    margin-top: 0;
  }

}
@media (max-width: 767px) {

  /* ===== Navbar ===== */
  .navbar {
    padding: 16px 20px;
    height: 70px;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    padding: 100px 40px 40px;
    gap: 24px;
    z-index: 199;
    transition: right 0.3s ease;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links li {
    padding-bottom: 24px;
    border-bottom: 1px solid #e0e0e0;
  }
  .nav-links li:last-child {
    border-bottom: none;
  }
  .nav-links a,
  .nav-links .nav-dropdown-toggle {
    font-size: 22px;
    color: var(--black);
  }
  .hamburger {
    display: flex;
    z-index: 201;
  }
  .hamburger span {
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  }
  .hamburger.active span {
    background: var(--black);
  }
  .navbar .logo img {
    height: 36px;
    max-width: 180px;
  }
  .nav-separator {
    top: 70px;
  }
  .nav-dropdown {
    position: static;
    margin-top: 8px;
    background: #f5f5f5;
    box-shadow: none;
    border-radius: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
    display: none;
    min-width: unset;
    width: 100%;
  }
  .nav-dropdown.open {
    display: block !important;
  }
  .nav-links li:hover > .nav-dropdown {
    display: none;
  }
  .nav-dropdown a {
    color: var(--black);
    border-bottom-color: #e0e0e0;
  }

  /* ===== Hero ===== */
  .hero-slides.hero-desktop {
    display: none;
  }
  .hero-slides.hero-mobile {
    display: block;
  }
  .hero-arrows {
    display: flex;
    padding: 0 16px;
  }
  .hero-arrows img {
    width: 28px;
    height: 28px;
  }
  .hero-dots {
    bottom: 20px;
  }
  .hero-dots .dot.active {
    width: 24px;
  }

  /* ===== About Section ===== */
  .about-section {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }
  .about-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 24px;
  }
  .section-title {
    font-size: 28px;
  }

  /* ===== Trust (inline) ===== */
  .trust-columns {
    flex-direction: column;
    gap: 20px;
  }
  .trust-columns .col {
    flex: none;
    width: 100%;
  }

  /* ===== Jewellery Cards ===== */
  .jewellery-cards {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    gap: 40px;
  }
  .jewellery-card {
    width: 80%;
    max-width: none;
    height: 280px;
  }
  .jewellery-card .card-image {
    width: 240px;
    height: 260px;
    left: 50%;
    transform: translateX(-50%);
  }
  .jewellery-card .card-name {
    font-size: 24px;
    bottom: 20px;
  }
  .jewellery-card:nth-child(2) .card-image {
    top: -5px;
  }
  .jewellery-card:nth-child(4) .card-image {
    top: 15px;
    margin-left: -5px;
  }

  /* ===== Diamond Scroll ===== */
  .diamond-scroll {
    padding: 30px 40px 30px 20px;
  }
  .diamond-card {
    width: 294px;
    height: 196px;
  }

  /* ===== Quote Banner ===== */
  .quote-banner {
    padding: 40px 20px;
  }
  .quote-banner p {
    font-size: 24px;
  }

  /* ===== Associates Section ===== */
  .associates-section {
    aspect-ratio: auto;
    height: auto;
    padding: 30px 20px;
    background: #F6F6F6;
  }
  .associates-bg {
    display: none;
  }
  .map-pin {
    display: none;
  }
  .associate-card {
    font-size: 14px;
  }
  .associate-card h4 {
    font-size: 16px;
  }
  .associate-cards {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
  }
  .associate-card {
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
    height: auto;
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: left;
  }
  .card-antwerpen,
  .card-dubai,
  .card-mumbai,
  .card-hongkong,
  .card-la {
    width: 100%;
    top: auto;
    left: auto;
    height: auto;
  }

  /* ===== 4Cs Grid ===== */
  .fourcees-section {
    padding: 40px 20px;
  }
  .fourcees-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .fourcees-center {
    order: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .fourcees-center img {
    width: 250px;
    margin: 0 auto;
  }
  .fourcees-card {
    width: 100%;
    height: auto;
  }
  .fourcees-card h3 {
    font-size: 24px;
  }

  /* ===== Contact Form ===== */
  .contact-card {
    width: 95%;
    flex-direction: column;
    min-height: 0;
  }
  .contact-info-panel {
    width: 100%;
    max-width: none;
    padding: 30px 24px;
  }
  .contact-info-panel h3 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .contact-detail {
    gap: 16px;
    margin-bottom: 24px;
  }
  .contact-form-panel {
    padding: 30px 20px;
  }
  .form-row {
    flex-direction: column;
    gap: 20px;
  }

  /* ===== Product Grid Pages ===== */
  .page-hero {
    height: auto;
  }
  .page-hero .hero-desktop {
    display: none;
  }
  .page-hero .hero-mobile {
    display: block;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 20px 0 60px;
  }
  .page-title {
    font-size: 22px;
  }

  /* ===== Diamond Detail Page ===== */
  .diamond-hero {
    height: 300px;
  }
  .diamond-hero-title {
    right: 20px;
    left: auto;
    bottom: 60px;
  }
  .diamond-content {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px 50px;
  }
  .diamond-image-wrapper {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: auto;
    padding-bottom: 28px;
  }
  /* Activate carousel on mobile */
  .diamond-carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
  }
  .diamond-carousel-track::-webkit-scrollbar {
    display: none;
  }
  .diamond-image-wrapper .main-img {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    scroll-snap-align: center;
  }
  .diamond-image-wrapper .detail-img {
    display: block;
    position: static;
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    border: none;
    overflow: visible;
    scroll-snap-align: center;
  }
  .diamond-image-wrapper .detail-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: none;
  }
  .carousel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: calc(50% - 14px);
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #522400;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    padding: 0 0 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  }
  .carousel-prev {
    left: 8px;
  }
  .carousel-next {
    right: 8px;
  }
  .carousel-dots {
    display: flex;
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    gap: 8px;
    z-index: 2;
  }
  .carousel-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(82, 36, 0, 0.3);
    cursor: pointer;
    transition: background 0.2s;
  }
  .carousel-dot.active {
    background: #522400;
  }

  /* ===== Footer ===== */
  .footer {
    height: auto;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 24px;
    align-items: center;
  }
  .footer-logo img {
    width: 200px;
    margin-top: 0;
  }
  .footer-nav {
    margin-top: 0;
  }
  .footer-reach {
    text-align: center;
  }
  .footer-reach-item {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  /* ===== Lightbox ===== */
  .lightbox-arrow {
    display: none;
  }

  /* ===== Button Adjustments ===== */
  .btn-pill {
    font-size: 16px;
    padding: 12px 32px;
  }
  .btn-submit {
    align-self: center;
    width: 100%;
  }

}

/* ========== PRODUCT LIGHTBOX ========== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 60vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 48px;
  cursor: pointer;
  padding: 12px;
  user-select: none;
}

.lightbox-arrow--prev {
  left: 24px;
}

.lightbox-arrow--next {
  right: 24px;
}

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-sans);
  font-size: 14px;
}

@media (max-width: 767px) {
  .lightbox-img {
    max-width: 90vw;
    max-height: 70vh;
  }
  .lightbox-arrow {
    font-size: 32px;
    padding: 8px;
  }
  .lightbox-arrow--prev {
    left: 8px;
  }
  .lightbox-arrow--next {
    right: 8px;
  }
}
