/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html, body {
  width: 100%;
  overflow-x: hidden;
}


body {
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #111;
}

/* ================= VARIABLES ================= */
:root {
  --black: #0b0b0b;
  --white: #ffffff;
  --muted: #777;
  --container: 1200px;
}

/* ================= GLOBAL ================= */
.container {
  max-width: var(--container);
  margin: auto;
  padding: 0 24px;
}

/* =================================================
   HEADER (TRANSPARENT → WHITE ON SCROLL)
================================================= */
.header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header-inner {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  width: 140px;
  transition: color 0.4s ease;
  filter: brightness(0) invert(1);
}

/* DESKTOP MENU */
.nav a {
  margin-left: 40px;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--white);
  position: relative;
  transition: color 0.4s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.nav a:hover {
  opacity: 1;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* ===== SCROLL STATE ===== */
.header.scrolled {
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.header.scrolled .logo {
  color: var(--black);
}

.header.scrolled .nav a {
  color: var(--black);
}

/* ================= MOBILE MENU ================= */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 32px;
  cursor: pointer;
}


.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: background 0.4s ease;
}

/* change hamburger color on scroll */
.header.scrolled .menu-toggle span {
  background: var(--black);
}
.header.scrolled .logo img {
  transition: color 0.4s ease;
  filter: brightness(0) invert(0);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: auto;
  padding: 20px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.6s ease;
}
.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  color: var(--black);
  text-decoration: none;
  font-size: 0.8rem;
  margin: 18px 0;
  font-family: "Playfair Display", serif;
  letter-spacing: 1px;
}

/* ================= HERO VIDEO ================= */
.hero-video {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #194a38;
}

/* VIDEO */
.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

/* OVERLAY (Luxury Mood) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: #194a38;
background: linear-gradient(90deg,#092018b6 0%, rgba(11, 37, 24, 0.918) 57%, rgba(7, 24, 18, 0.897) 100%);
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LOGO */
.hero-logo {
  width: 280px;
  filter: brightness(0) invert(1);
  opacity: 0;
  animation: heroFade 1.8s ease forwards;
}

/* FADE IN */
@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================================================
   LUXURY SPLIT SECTION
================================================== */
.luxury-split {
  display: grid;
  grid-template-columns: 1fr 1fr;

  width: 100%;
}

/* LEFT CONTENT */
.luxury-left {
  flex: 1;
  background: #ffffff;
  display: flex;
  align-items: center;
  padding: 80px;
}

.luxury-content h2 {
  font-family: "inter", serif;
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.4;
  color: #0b0b0b;
}

/* RIGHT IMAGE */
.luxury-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.luxury-right img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}
/* ==================================================
   BRAND STORY SECTION
================================================== */
.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;

  width: 100%;
}

/* LEFT IMAGE */
.brand-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.brand-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  background-position: top;
  display: block;
}

/* RIGHT TEXT */
.brand-text {
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  padding: 100px;
}

.brand-text-inner {
  max-width: 520px;
}

.brand-text p {
  font-size: 1.25rem;
  line-height: 1.9;
  color: #111;
}
.luxury-pillars {
  background: rgb(7, 80, 76);

  background: linear-gradient(
    90deg,
    hsla(212, 100%, 8%, 1) 50%,
    hsla(0, 0%, 0%, 1) 100%
  );

  background: -moz-linear-gradient(
    90deg,
    hsla(212, 100%, 8%, 1) 50%,
    hsla(0, 0%, 0%, 1) 100%
  );

  background: -webkit-linear-gradient(
    90deg,
    rgb(19, 78, 78) 50%,
    hsla(0, 0%, 0%, 1) 100%
  );

  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#00142B", endColorstr="#000000", GradientType=1 );
  padding: 120px 80px;
}

.pillars-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

/* SINGLE PILLAR */
.pillar {
  text-align: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
}

.pillar:hover {
  transform: translateY(-6px);
}

/* ICON */
/* .pillar-icon {
  font-size: 100px;
  color: #111;
  margin-bottom: 14px;
} */
 .pillar-icon{
    width: 80px;
 }

/* TITLE */
.pillar h3 {
  font-size: 20px;
  letter-spacing: 0.2em;
  margin-bottom: 14px;
  color: #111;
}

/* TEXT */
.pillar p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #333;
}
.shaping-light {
  background: #ffffff;
  padding: 0px;
  width: 100%;
}

.shaping-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}
.shaping-text {
  padding: 120px;
}
/* TEXT SIDE */
.shaping-text h3 {
  font-size: 20px;
  letter-spacing: 0.2em;
  margin-bottom: 32px;
  color: #111;
}

.shaping-text .intro {
  font-size: 1rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 28px;
}

.shaping-text .outro {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #666;
  margin-top: 32px;
}

/* LUXURY BULLET LIST */
.luxury-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.luxury-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: #444;
}

.luxury-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #999;
}

/* IMAGE SIDE */
.shaping-image {
  width: 100%;
  overflow: hidden;
}

.shaping-image img {
  width: 100%;
  height: auto;
  display: block;
}
/* ==================================================
   ART OF FORM SECTION
================================================== */
.art-of-form {
  background: #ffffff;
  width: 100%;
}

.art-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

/* IMAGE */
.art-image {
  width: 100%;
  overflow: hidden;
}

.art-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* TEXT */
.art-text {
  display: flex;
  align-items: center;
  padding: 120px;
}

.art-text-inner {
  max-width: 520px;
}

.art-text h3 {
  font-size: 20px;
  letter-spacing: 0.2em;
  margin-bottom: 32px;
  color: #111;
}

.art-text p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 28px;
}
/* ==================================================
   LOOSE DIAMONDS SECTION
================================================== */
.loose-diamonds {
  background: #ffffff;
  width: 100%;
}

.loose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

/* TEXT */
.loose-text {
  display: flex;
  align-items: center;
  padding: 120px;
}

.loose-text-inner {
  max-width: 520px;
}

.loose-text h3 {
  font-size: 20px;
  letter-spacing: 0.2em;
  margin-bottom: 32px;
  color: #111;
}

.loose-text p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 28px;
}

.shape-list {
  font-size: 0.9rem;
  color: #666;
}

/* IMAGE */
.loose-image {
  width: 100%;
  overflow: hidden;
}

.loose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==================================================
   BRAND QUOTE SECTION
================================================== */
.brand-quote {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/assets/images/quet-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* SOFT OVERLAY */
.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 25, 31, 0.712);
}

/* CONTENT */
.quote-content {
  position: relative;
  max-width: 900px;
  padding: 0 32px;
  text-align: center;
  color: var(--white);
}

.quote-text {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.8;
  font-style: italic;
  opacity: 0.95;
}

.quote-author {
  display: block;
  margin-top: 32px;
  font-size: 2rem;
  letter-spacing: 1px;
  opacity: 0.8;
  color: #fff;
}
/* ==================================================
   JEWELLERY – LIGHT, DESIGNED
================================================== */
.jewellery-section {
  padding: 120px 0;
  background: #ffffff;
}

.jewellery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.jewellery-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.jewellery-content h3 {
  font-size: 20px;
  letter-spacing: 0.2em;
  color: #2c2c2c;
  margin-bottom: 28px;
}

.jewellery-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #6b6b6b;
  margin-bottom: 22px;
}

.jewellery-content p.soft {
  color: #7a7a7a;
}

.jewellery-content ul {
  margin: 24px 0 28px;
  padding-left: 18px;
}

.jewellery-content ul li {
  font-size: 15px;
  line-height: 1.8;
  color: #6b6b6b;
  margin-bottom: 10px;
}
/* ==================================================
   OUR STORY
================================================== */
.story-section {
  padding: 120px 0;
    background: rgb(7, 80, 76);


  background: linear-gradient(
    90deg,
    rgb(4, 31, 39) 50%,
    hsla(0, 0%, 0%, 1) 100%
  );

  background: -moz-linear-gradient(
    90deg,
    rgb(9, 43, 51) 50%,
    hsla(0, 0%, 0%, 1) 100%
  );

  background: -webkit-linear-gradient(
    90deg,
    rgb(8, 31, 37) 50%,
    rgb(9, 51, 53) 100%
  );

  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#00142B", endColorstr="#000000", GradientType=1 );
  padding: 120px 80px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.story-content h3 {
  font-size: 20px;
  letter-spacing: 0.2em;
  color: #ffffff;
  margin-bottom: 32px;
}

.story-content p {
  font-size: 15px;
  line-height: 1.95;
  color: #ffffff;
  margin-bottom: 22px;
}

.story-image img {
  width: 80%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* ==================================================
   RESPONSIVE
================================================== */
@media (max-width: 768px) {
  .hero-video{
    height: 60vh;
  }
  .luxury-split {
    display: flex;
    flex-direction: column;
    padding: 20px;
  }

  .luxury-left {
    padding: 60px 32px;
  }

  .luxury-right {
    height: auto;
  }
  .brand-story {
    grid-template-columns: 1fr;
  }

  .brand-image {
    height: auto;
  }

  .brand-text {
    padding: 60px 32px;
  }
  .luxury-pillars{
    padding: 50px 20px;
  }
  .pillars-container{
    display: flex;
    flex-direction: column;
  }
  .shaping-light {
    padding: 50px 20px;
  }

  .shaping-grid {
    display: flex;
    flex-direction: column-reverse;
  }
  .shaping-text {
    padding: 50px 20px;
}

  .art-grid {
    grid-template-columns: 1fr;
  }

  .art-image {
    height: 60vh;
  }

  .art-text {
    padding: 60px 32px;
  }
  .loose-grid {
     display: flex;
    flex-direction: column-reverse;
  }

  .loose-image {
    height: auto;
  }

  .loose-text {
    padding: 60px 32px;
  }
  .brand-quote {
    min-height: 60vh;
  }

  .quote-text {
    font-size: 1.1rem;
  }
  .jewellery-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .story-section {
 padding: 40px 20px;
  }
  .story-grid {
    display: flex;
    flex-direction: column-reverse;
  }

  .story-content {
    text-align: center;
  }
  .story-image{
   display: flex;
   justify-content: center;
  }
  .offices-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-offices {
    padding: 80px 0;
  }
  .footer-offices .container{
  display: flex;
  flex-direction: column;
}
 .footer-offices .container .offices-grid{
  display: flex;
  flex-direction: column;
}

}
/* ================= FOOTER ================= */
/* ==================================================
   FOOTER – OUR OFFICES
================================================== */
.footer-offices {
  padding: 60px 0 0px;
  background: #ffffff;
}

.footer-title {
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.2em;
  color: #2b2b2b;
  margin-bottom: 70px;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  text-align: center;
}

/* SINGLE OFFICE */
.office-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #0c043b; /* subtle emerald luxury */
  margin-bottom: 14px;
}

/* divider line */
.office-line {
  width: 50px;
  height: 1px;
  background: rgba(0, 0, 0, 0.25);
  margin: 14px auto;
}

.office p {
  font-size: 14px;
  line-height: 1.9;
  color: #333;
}
.office img {
  width: 40px;
  margin-bottom: 10px;
}
/* FOOTER BOTTOM */
.footer-bottom {
  margin-top: 70px;
  padding: 30px 0;
    background: rgb(7, 80, 76);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
}
.bottom-logo {
  padding-top: 40px;
  display: flex;
  justify-content: center;
}
.footer-bottom p {
  font-size: 15px;
  letter-spacing: 0.05em;
  color: #ffffff;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .header {
  position: fixed;
  left: 0;
  right: 0;
  width: auto;
}

}

/* ================= PREMIUM SCROLL REVEAL ================= */
.reveal {
  opacity: 0;
  transform: scale(0.85) translateY(80px);
  transition: opacity 1.2s ease,
    transform 1.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform, opacity;
}

/* ENTER STATE */
.reveal.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* EXIT STATE – slightly slower */
.reveal:not(.active) {
  transition: opacity 1.5s ease,
    transform 2.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
