/* =========================================================
   LICERIA & CO. — ABOUT PAGE
========================================================= */

:root {

  --plum: #40323d;
  --deep-plum: #342630;
  --mauve: #765f65;

  --cream: #f7f1e8;
  --ivory: #fbf8f2;

  --gold: #b98a3c;
  --gold-light: #d4ad68;

  --silver: #c9c4c0;

  --text: #2f2730;
  --muted: #6f6265;

  --border: rgba(185, 138, 60, .35);

  --cinzel: "Cinzel", serif;
  --cormorant: "Cormorant Garamond", serif;
  --inter: "Inter", sans-serif;

  --container: 1320px;

}


/* =========================================================
   RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--inter);
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}


/* =========================================================
   HEADER
========================================================= */

.about-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;

  color: #fff;

  padding: 24px 30px;
}

.about-header::before {
  content: "";
  position: absolute;
  inset: 24px 30px auto;
  height: 1px;

  background: rgba(255,255,255,.22);
}

.about-header::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 36px;
  height: 1px;

  border-top: 1px solid rgba(255,255,255,.12);
}


.about-nav {
  max-width: 1440px;
  margin: auto;

  min-height: 90px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative;
  z-index: 2;
}


/* BRAND */

.about-brand {
  width: 250px;

  display: flex;
  flex-direction: column;
  align-items: center;

  position: relative;
}

.brand-symbol {
  font-family: var(--cormorant);
  font-size: 38px;
  line-height: 1;

  color: var(--gold-light);

  margin-bottom: 5px;
}

.brand-name {
  font-family: var(--cinzel);
  font-size: 25px;
  letter-spacing: 4px;
}

.brand-sub {
  margin-top: 5px;

  font-family: var(--inter);
  font-size: 9px;
  letter-spacing: 6px;
}


/* NAVIGATION */

.about-navigation {
  display: flex;
  align-items: center;
  gap: 38px;
}

.about-navigation a {
  font-size: 18px;
  font-weight: 400;

  white-space: nowrap;

  padding: 10px 0;

  position: relative;

  transition:
    color .3s ease,
    opacity .3s ease;
}

.about-navigation a::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 1px;

  background: var(--gold-light);

  transform: scaleX(0);
  transform-origin: center;

  transition: transform .3s ease;
}

.about-navigation a:hover,
.about-navigation a.active {
  color: #ffe0ad;
}

.about-navigation a:hover::after,
.about-navigation a.active::after {
  transform: scaleX(1);
}


/* NAV ICONS */

.about-nav-icons {
  width: 100px;

  display: flex;
  justify-content: flex-end;
  gap: 25px;

  font-size: 25px;
}


/* MENU */

.about-menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  border: 1px solid rgba(255,255,255,.35);
  background: transparent;

  cursor: pointer;

  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.about-menu-toggle span {
  width: 20px;
  height: 1px;
  background: #fff;
}


/* =========================================================
   LICERIA & CO. — COMMON NAVBAR
   Use this in BOTH about.css and contact.css
========================================================= */

.site-header,
.about-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  color: #fff;

  padding: 24px 30px;
}

/* Top decorative lines */
.site-header::before,
.about-header::before {
  content: "";
  position: absolute;

  top: 24px;
  left: 30px;
  right: 30px;

  height: 1px;

  background: rgba(255, 255, 255, 0.22);
}

.site-header::after,
.about-header::after {
  content: "";
  position: absolute;

  top: 36px;
  left: 30px;
  right: 30px;

  height: 1px;

  background: rgba(255, 255, 255, 0.12);
}


/* =========================================================
   NAV WRAPPER
========================================================= */

.nav-wrap,
.about-nav {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1440px;

  min-height: 90px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* =========================================================
   BRAND
========================================================= */

.brand,
.about-brand {
  width: 250px;

  display: flex;
  flex-direction: column;
  align-items: center;

  color: #fff;

  text-decoration: none;
}

.brand-mark,
.brand-symbol {
  font-family: var(--cormorant);
  font-size: 38px;

  line-height: 1;

  color: var(--gold-light);

  margin-bottom: 5px;
}

.brand-name {
  font-family: var(--cinzel);

  font-size: 25px;

  letter-spacing: 4px;

  white-space: nowrap;
}

.brand-sub {
  margin-top: 5px;

  font-family: var(--inter);

  font-size: 9px;

  letter-spacing: 6px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav,
.about-navigation {
  display: flex;

  align-items: center;

  gap: 38px;
}


/* Normal navigation links */
.main-nav > a,
.about-navigation > a {
  position: relative;

  padding: 10px 0;

  color: rgba(255, 255, 255, 0.95);

  font-family: var(--inter);

  font-size: 18px;

  font-weight: 400;

  white-space: nowrap;

  text-decoration: none;

  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}


/* Gold underline */
.main-nav > a::after,
.about-navigation > a::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;

  bottom: 0;

  height: 1px;

  background: var(--gold-light);

  transform: scaleX(0);

  transform-origin: center;

  transition: transform 0.3s ease;
}


/* Hover + active */
.main-nav > a:hover,
.main-nav > a.active,
.about-navigation > a:hover,
.about-navigation > a.active {
  color: var(--gold-light);
}

.main-nav > a:hover::after,
.main-nav > a.active::after,
.about-navigation > a:hover::after,
.about-navigation > a.active::after {
  transform: scaleX(1);
}


/* =========================================================
   PRODUCTS DROPDOWN
========================================================= */

.nav-dropdown {
  position: relative;

  display: flex;
  align-items: center;
}


/* Products button */
.dropdown-trigger {
  position: relative;

  padding: 10px 0;

  border: none;

  background: transparent;

  color: rgba(255, 255, 255, 0.95);

  font-family: var(--inter);

  font-size: 18px;

  font-weight: 400;

  white-space: nowrap;

  cursor: pointer;

  transition: color 0.3s ease;
}


/* Small arrow */
.dropdown-trigger span {
  margin-left: 5px;

  font-size: 16px;

  color: var(--gold-light);

  transition: transform 0.3s ease;
}


/* Hover */
.dropdown-trigger:hover {
  color: var(--gold-light);
}


/* Rotate arrow when dropdown is open */
.nav-dropdown:hover .dropdown-trigger span {
  transform: rotate(180deg);
}


/* =========================================================
   DROPDOWN MENU
========================================================= */

.dropdown-menu {
  position: absolute;

  top: calc(100% + 8px);
  left: 50%;

  transform: translateX(-50%) translateY(8px);

  min-width: 230px;

  padding: 12px 0;

  background: rgba(52, 38, 48, 0.97);

  border: 1px solid rgba(212, 173, 104, 0.35);

  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.25);

  opacity: 0;
  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}


/* Show dropdown on hover */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;

  transform: translateX(-50%) translateY(0);
}


/* Dropdown links */
.dropdown-menu a {
  display: block;

  padding: 12px 20px;

  color: #fff;

  font-family: var(--inter);

  font-size: 18px;

  font-weight: 400;

  white-space: nowrap;

  text-decoration: none;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}


/* Dropdown hover */
.dropdown-menu a:hover {
  color: var(--gold-light);

  background: rgba(185, 138, 60, 0.12);
}


/* Remove main nav underline from dropdown links */
.dropdown-menu a::after {
  display: none;
}


/* =========================================================
   NAV ICONS
========================================================= */

.nav-icons,
.about-nav-icons {
  width: 100px;

  display: flex;

  align-items: center;

  justify-content: flex-end;

  gap: 25px;

  color: #fff;

  font-size: 25px;
}

.nav-icons span,
.about-nav-icons span {
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.nav-icons span:hover,
.about-nav-icons span:hover {
  color: var(--gold-light);

  transform: translateY(-2px);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle,
.about-menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  border: 1px solid rgba(255, 255, 255, 0.35);

  background: transparent;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  gap: 5px;

  cursor: pointer;
}

.menu-toggle span,
.about-menu-toggle span {
  width: 20px;
  height: 1px;

  background: #fff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .main-nav,
  .about-navigation {
    gap: 22px;
  }

  .main-nav > a,
  .about-navigation > a,
  .dropdown-trigger {
    font-size: 18px;
  }

  .brand,
  .about-brand {
    width: 220px;
  }

  .brand-name {
    font-size: 21px;
  }

  .nav-icons,
  .about-nav-icons {
    width: 80px;
    gap: 18px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

  .site-header,
  .about-header {
    padding: 15px 20px;
  }

  .site-header::before,
  .about-header::before {
    top: 15px;
    left: 20px;
    right: 20px;
  }

  .site-header::after,
  .about-header::after {
    top: 27px;
    left: 20px;
    right: 20px;
  }

  .nav-wrap,
  .about-nav {
    min-height: 65px;
  }


  /* Brand */
  .brand,
  .about-brand {
    width: auto;

    align-items: flex-start;
  }

  .brand-mark,
  .brand-symbol {
    display: none;
  }

  .brand-name {
    font-size: 17px;

    letter-spacing: 2px;
  }

  .brand-sub {
    font-size: 7px;

    letter-spacing: 4px;
  }


  /* Icons */
  .nav-icons,
  .about-nav-icons {
    display: none;
  }


  /* Hamburger */
  .menu-toggle,
  .about-menu-toggle {
    display: flex;
  }


  /* Navigation */
  .main-nav,
  .about-navigation {
    position: absolute;

    top: 70px;

    left: 0;
    right: 0;

    display: none;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    padding: 10px 20px;

    background: rgba(52, 38, 48, 0.98);

    border: 1px solid rgba(255, 255, 255, 0.15);
  }


  .main-nav.open,
  .about-navigation.open {
    display: flex;
  }


  .main-nav > a,
  .about-navigation > a {
    padding: 14px 8px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    font-size: 18px;
  }


  /* Products dropdown on mobile */
  .nav-dropdown {
    display: block;
  }

  .dropdown-trigger {
    width: 100%;

    padding: 14px 8px;

    text-align: left;

    font-size: 18px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown-menu {
    position: static;

    transform: none;

    min-width: 100%;

    padding: 0;

    background: rgba(0, 0, 0, 0.12);

    border: none;

    box-shadow: none;

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    display: none;
  }

  .nav-dropdown:hover .dropdown-menu {
    transform: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 12px 25px;

    font-size: 17px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}
/* =========================================================
   COMMON TYPOGRAPHY
========================================================= */

.section-kicker {
  font-family: var(--cinzel);

  font-size: 35px;
  letter-spacing: 3px;

  /* color: var(--gold-light); */
  color: #ffd89a;
margin-top: 25px;
  margin-bottom: 5px;
}

.section-kicker.dark {
  color: #5e664e;
}


h1,
h2,
h3 {
  font-weight: 400;
}


h1,
h2 {
  font-family: var(--cormorant);
}


.gold-divider {
  display: flex;
  align-items: center;
  gap: 13px;

  margin: 24px 0;
}

.gold-divider span {
  width: 100px;
  height: 1px;

  background: var(--gold-light);
}

.gold-divider b {
  font-family: var(--cormorant);
  color: var(--gold-light);
  font-weight: 400;
  font-size: 18px;
}

.gold-divider.left {
  justify-content: flex-start;
}

.small-divider {
  display: flex;
  align-items: center;
  gap: 10px;

  margin: 18px 0;
}

.small-divider span {
  width: 55px;
  height: 1px;

  background: var(--gold);
}

.small-divider b {
  color: var(--gold);
  font-weight: 400;
}


/* =========================================================
   HERO
========================================================= */

.about-hero {
  min-height: 100vh;

  position: relative;

  display: flex;
  align-items: center;

  overflow: hidden;

  color: #fff;

  background-size: cover;
  background-position: center;
}


.about-hero::before {
  content: "";

  position: absolute;
  inset: 18px;

  border: 1px solid rgba(255,255,255,.20);

  pointer-events: none;
}


.hero-content {
  width: min(600px, 48%);

  margin-left: max(7vw, 70px);

  position: relative;
  z-index: 3;

  padding-top: 70px;
}

.hero-content h1 {
  font-size: clamp(48px, 5vw, 78px);

  line-height: .98;

  letter-spacing: -.5px;
}

.hero-content h1 em {
  color: var(--gold-light);
  font-style: normal;
}

.hero-description {
  max-width: 520px;

  font-size: 14px;
  line-height: 1.8;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 20px;
  color: rgba(255,255,255,.85);

  margin-bottom: 28px;
}


.hero-jewellery {
  position: absolute;

  inset: 0;

  z-index: 1;
}

.hero-jewellery img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;
}


/* BUTTON */

.luxury-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 48px;

  padding: 0 28px;

  border: 1px solid var(--gold-light);
border-radius: 25px 0 25px 0;
  font-family: var(--cinzel);

  font-size: 18px;

  letter-spacing: 1.5px;

  transition:
    background .3s ease,
    color .3s ease;
}

.luxury-btn:hover {
  background: var(--gold-light);
  color: var(--deep-plum);
}


/* =========================================================
   WHO WE ARE
========================================================= */

.who-we-are {
  min-height: 570px;

  display: grid;
  grid-template-columns: .9fr 1.1fr;

  background: var(--ivory);
}


.who-content {
  padding: 90px clamp(40px, 8vw, 130px);

  display: flex;
  flex-direction: column;
  justify-content: center;
}


.who-content h2 {
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1;

  color: var(--text);
}

.who-content h2 em {
  color: var(--gold);
  font-style: normal;
}


.who-content p {
  max-width: 500px;
 font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  line-height: 1.8;

  color: #5f5556;

  margin-bottom: 14px;
}


.who-image {
  overflow: hidden;
}

.who-image img {
  height: 100%;
  object-fit: cover;

  transition: transform .8s ease;
}

.who-image:hover img {
  transform: scale(1.03);
}


.tiny-symbol {
  color: var(--gold);
  font-size: 20px;
  margin-top: 10px;
}


/* =========================================================
   PHILOSOPHY
========================================================= */

.philosophy {
  padding: 55px 7vw 60px;

  background:
    linear-gradient(
      135deg,
      var(--deep-plum),
      var(--plum)
    );

  color: #fff;
}


.philosophy-title {
  text-align: center;

  margin-bottom: 35px;
}

.philosophy-title p {
  font-family: var(--cinzel);

  font-size: 30px;

  letter-spacing: 3px;

  color: #ead5ad;
}

.philosophy-title span {
  display: block;

  color: var(--gold-light);

  margin-top: 6px;
}


.philosophy-grid {
  max-width: var(--container);
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
}


.philosophy-item {
  text-align: center;

  padding: 15px 50px;

  border-right: 1px solid rgba(215,178,105,.35);
}

.philosophy-item:last-child {
  border-right: 0;
}


.philosophy-icon {
  color: var(--gold-light);

  font-size: 27px;

  height: 42px;
}


.philosophy-item h3 {
  font-family: var(--cinzel);

  font-size: 12px;

  letter-spacing: 1px;

  color: #e2c58e;

  margin-bottom: 15px;
}


.philosophy-item p {
  font-size: 18px;
  line-height: 1.65;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: rgba(255,255,255,.8);
}


/* =========================================================
   MAHARASHTRA HERITAGE
========================================================= */

/* =========================================================
   MAHARASHTRA HERITAGE — 100VH
========================================================= */

.heritage {
  position: relative;

  width: 100%;
  min-height: 100vh;
  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #f8f4ee;

  background-image: url("assets/images/transparent-img.png");
  background-repeat: no-repeat;
  background-position: center bottom;

  /* Keeps Gateway + Shaniwarwada small */
  background-size: 70% auto;

  overflow: hidden;
}


/* Content stays above the background illustration */
.heritage-content {
  position: relative;
  z-index: 2;

  width: min(900px, 90%);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  margin: 0 auto;

  text-align: center;

  /* Keeps text away from bottom illustration */
  transform: translateY(-40px);
}


/* Kicker */
.heritage-content .section-kicker {
  margin-bottom: 16px;
}


/* Main heading */
.heritage-content h2 {
  font-size: clamp(45px, 5vw, 70px);
  line-height: 1.05;

  color: var(--text);

  margin: 0;
}


/* Gold heading */
.heritage-content h2 em {
  color: var(--gold);
  font-style: normal;
}


/* Divider */
.heritage-content .small-divider {
  display: flex;
  align-items: center;
  justify-content: center;

  margin: 28px 0 30px;
}


/* Paragraphs */
.heritage-content > p:not(.section-kicker) {
  max-width: 720px;

  font-family: var(--cormorant);

  font-size: 21px;
  line-height: 1.7;

  color: #5d5556;

  margin: 0 auto 18px;

  position: relative;
  z-index: 3;
}


/* Old image element is not required */
.heritage-image {
  display: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .heritage {
    background-size: 78% auto;
  }

  .heritage-content {
    width: 90%;
    transform: translateY(-35px);
  }

  .heritage-content h2 {
    font-size: clamp(40px, 6vw, 60px);
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .heritage {
    min-height: 100vh;
    height: 100vh;

    background-size: 100% auto;
    background-position: center bottom;
  }

  .heritage-content {
    width: 90%;
    transform: translateY(-55px);
  }

  .heritage-content h2 {
    font-size: 38px;
    line-height: 1.08;
  }

  .heritage-content .small-divider {
    margin: 20px 0 24px;
  }

  .heritage-content > p:not(.section-kicker) {
    font-size: 18px;
    line-height: 1.55;
    max-width: 90%;
  }

}
/* =========================================================
   GOLD + SILVER
========================================================= */

.metal-collections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px;
  height: 100vh;
  box-sizing: border-box;
  overflow: hidden;
}

.metal-card {
  height: calc(100vh - 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.metal-content {
  padding: 45px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

.metal-content h2 {
  font-size: 54px;
  line-height: 0.9;
  margin-bottom: 25px;
}

.metal-content > p:not(.section-kicker) {
  font-size: 18px;
  line-height: 1.7;
  font-family: var(--cormorant);
  color: #655c5d;
  margin-bottom: 22px;
}

/* IMAGE AREA */
.metal-image {
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee7df;
}

/* SMALLER IMAGE */
.metal-image img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  display: block;
  transition: transform .8s ease;
}

.metal-card:hover .metal-image img {
  transform: scale(1.04);
}

.collection-btn {
  align-self: flex-start;
  padding: 12px 20px;
  border: 1px solid var(--gold);
  font-family: var(--cinzel);
  font-size: 15px;
  border-radius: 25px 0 25px 0;
  letter-spacing: 1px;
  color: #59484a;
  transition: background .3s ease, color .3s ease;
}

.collection-btn:hover {
  background: var(--gold);
  color: #fff;
}

/* =========================================================
   FOUNDER
========================================================= */

.founder {
  min-height: 520px;

  display: grid;

  grid-template-columns: .9fr 1.1fr;

  background:
    linear-gradient(
      110deg,
      #3b2934,
      #4b3440
    );

  color: #fff;
}


.founder-image {
  overflow: hidden;
}

.founder-image img {
  height: 100%;

  object-fit: cover;

  object-position: center;
}


.founder-content {
  padding: 70px clamp(45px, 7vw, 110px);

  display: flex;
  flex-direction: column;
  justify-content: center;
}


.founder-content h2 {
  font-size: clamp(38px, 4vw, 57px);

  line-height: 1;
}

.founder-content h2 em {
  color: var(--gold-light);
  font-style: normal;
}


.founder-content > p:not(.section-kicker):not(.founder-signature) {
  max-width: 620px;
 font-family: var(--cormorant);
  font-size: 20px;

  line-height: 1.8;

  color: rgba(255,255,255,.84);

  margin-bottom: 12px;
}


.founder-signature {
  align-self: flex-end;

  font-family: var(--cormorant);

  font-size: 19px;

  color: var(--gold-light);

  font-style: italic;

  margin-top: 8px;
}


/* =========================================================
   WHY CHOOSE
========================================================= */

.why-choose {
  padding: 50px 7vw 60px;

  background: var(--ivory);
}


.why-title {
  text-align: center;

  margin-bottom: 32px;
}

.why-title p {
  font-family: var(--cinzel);

  font-size: 11px;

  letter-spacing: 2px;
}

.why-title span {
  color: var(--gold);

  display: block;

  margin-top: 5px;
}


.why-grid {
  max-width: var(--container);

  margin: auto;

  display: grid;

  grid-template-columns: repeat(4, 1fr);
}


.why-grid article {
  text-align: center;

  padding: 15px 40px;

  border-right: 1px solid rgba(120,95,101,.25);
}

.why-grid article:last-child {
  border-right: 0;
}


.why-icon {
  height: 43px;

  font-size: 29px;

  color: var(--gold);
}


.why-grid h3 {
  font-family: var(--cinzel);

  font-size: 10px;

  letter-spacing: 1px;

  margin-bottom: 10px;
}


.why-grid p {
  color: #716667;

  font-size: 11px;

  line-height: 1.7;
}


/* =========================================================
   PROMISE
========================================================= */

.promise {
  min-height: 400px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  background: var(--deep-plum);

  color: #fff;
}


.promise-image {
  overflow: hidden;
}

.promise-image img {
  height: 100%;

  object-fit: cover;
}


.promise-content {
  padding: 65px clamp(40px, 7vw, 100px);

  display: flex;
  flex-direction: column;
  justify-content: center;
}


.promise-content h2 {
  font-size: clamp(38px, 4vw, 55px);

  line-height: 1;
}

.promise-content h2 em {
  color: var(--gold-light);

  font-style: normal;
}


.promise-content > p:last-child {
  max-width: 520px;

  font-size: 20px;
 font-family: var(--cormorant);
  line-height: 1.8;

  color: rgba(255,255,255,.82);
}


/* =========================================================
   MOMENTS
========================================================= */

.moments {
  padding: 55px 6vw;

  background: var(--cream);
}


.moments-heading {
  text-align: center;

  margin-bottom: 35px;
}


.moments-heading p {
  font-family: var(--cinzel);

  font-size: 11px;

  letter-spacing: 2px;
}

.moments-heading span {
  display: block;

  color: var(--gold);

  margin-top: 5px;
}


.moments-grid {
  max-width: var(--container);

  margin: auto;

  display: grid;

  grid-template-columns: repeat(4, 1fr);
}


.moments-grid article {
  text-align: center;

  padding: 0 25px;

  border-right: 1px solid rgba(120,95,101,.25);
}

.moments-grid article:last-child {
  border-right: 0;
}


.moment-image {
  width: 115px;
  height: 115px;

  margin: 0 auto 15px;

  border-radius: 50%;

  overflow: hidden;

  border: 2px solid rgba(185,138,60,.45);

  padding: 4px;
}


.moment-image img {
  width: 100%;
  height: 100%;

  border-radius: 50%;

  object-fit: cover;
}


.moments-grid h3 {
  font-family: var(--cinzel);

  font-size: 10px;

  letter-spacing: 1px;

  margin-bottom: 8px;
}


.moments-grid p {
  font-family: var(--cormorant);

  font-size: 16px;

  color: #706668;
}


/* =========================================================
   FINAL SECTION
========================================================= */

.about-final {
  background: var(--deep-plum);

  color: #fff;
}


.about-testimonials {
  padding: 48px 6vw;

  border-bottom: 1px solid rgba(255,255,255,.15);
}


.about-testimonials > .section-kicker {
  text-align: center;
}


.testimonial-row {
  max-width: 1200px;

  margin: 30px auto 0;

  display: grid;

  grid-template-columns: repeat(3, 1fr);
}


.testimonial-row article {
  padding: 15px 35px;

  text-align: center;

  border-right: 1px solid rgba(255,255,255,.18);
}

.testimonial-row article:last-child {
  border-right: 0;
}


.quote-mark {
  font-family: Georgia, serif;

  font-size: 40px;

  line-height: .5;

  color: var(--gold-light);
}


.testimonial-row p {
  font-family: var(--cormorant);

  font-size: 17px;

  line-height: 1.45;

  color: rgba(255,255,255,.82);

  margin: 10px auto;
}


.testimonial-row strong {
  font-family: var(--cinzel);

  font-size: 9px;

  letter-spacing: 1px;

  color: var(--gold-light);
}


.stars {
  color: var(--gold-light);

  font-size: 10px;

  margin-top: 6px;
}


/* FINAL CTA */

.final-cta {
  min-height: 400px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  overflow: hidden;
}


.final-cta > div:first-child {
  padding-left: clamp(50px, 9vw, 140px);

  position: relative;

  z-index: 2;
}


.final-cta h2 {
  font-size: clamp(43px, 5vw, 66px);

  line-height: .9;
}

.final-cta h2 em {
  color: var(--gold-light);

  font-style: normal;
}


.final-buttons {
  display: flex;

  gap: 12px;

  margin-top: 25px;
}


.final-buttons a {
  padding: 12px 20px;

  border: 1px solid var(--gold-light);

  font-family: var(--cinzel);

  font-size: 9px;

  letter-spacing: 1px;

  transition: .3s ease;
}

.final-buttons a:hover {
  background: var(--gold-light);

  color: var(--deep-plum);
}


.final-jewellery {
  height: 100%;

  overflow: hidden;
}

.final-jewellery img {
  height: 100%;

  object-fit: cover;

  object-position: center;
}


/* =========================================================
   FOOTER
========================================================= */

.about-footer {
  background: var(--ivory);

  color: #4d4446;
}


.footer-grid {
  max-width: 1350px;

  margin: auto;

  padding: 60px 7vw 45px;

  display: grid;

  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;

  gap: 55px;
}


.footer-brand {
  text-align: left;
}


.footer-symbol {
  color: var(--gold);

  font-size: 25px;

  margin-bottom: 5px;
}


.footer-name {
  font-family: var(--cinzel);

  font-size: 22px;

  letter-spacing: 3px;
}


.footer-sub {
  font-size: 8px;

  letter-spacing: 5px;

  margin-top: 4px;
}


.footer-brand p {
  max-width: 280px;

  margin-top: 20px;

  font-family: var(--cormorant);

  font-size: 16px;

  line-height: 1.5;

  color: #75696b;
}


.social-links {
  display: flex;

  gap: 9px;

  margin-top: 20px;
}


.social-links a {
  width: 29px;
  height: 29px;

  border: 1px solid rgba(64,50,61,.3);

  border-radius: 50%;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 12px;

  transition: .3s ease;
}


.social-links a:hover {
  background: var(--plum);

  color: #fff;
}


.footer-column {
  display: flex;

  flex-direction: column;

  gap: 10px;
}


.footer-column h4 {
  font-family: var(--cinzel);

  font-size: 10px;

  letter-spacing: 1.5px;

  color: var(--gold);

  margin-bottom: 10px;
}


.footer-column a,
.footer-column p {
  font-size: 12px;

  line-height: 1.7;

  color: #62585a;
}


.footer-column a:hover {
  color: var(--gold);
}


.footer-bottom {
  min-height: 48px;

  padding: 0 7vw;

  background: var(--plum);

  color: rgba(255,255,255,.8);

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  font-size: 10px;
}


.footer-bottom span:first-child,
.footer-bottom span:last-child {
  color: var(--gold-light);
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {

  .about-navigation {
    gap: 22px;
  }

  .about-navigation a {
    font-size: 11px;
  }

  .about-brand {
    width: 210px;
  }

  .brand-name {
    font-size: 21px;
  }

  .philosophy-item {
    padding: 15px 25px;
  }

  .why-grid article {
    padding: 15px 22px;
  }

  .footer-grid {
    gap: 30px;
  }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 800px) {

  .about-header {
    padding: 15px 20px;
  }

  .about-header::before {
    inset: 15px 20px auto;
  }

  .about-header::after {
    left: 20px;
    right: 20px;
    top: 27px;
  }


  .about-nav {
    min-height: 70px;
  }


  .about-brand {
    width: auto;

    align-items: flex-start;
  }

  .brand-symbol {
    display: none;
  }

  .brand-name {
    font-size: 17px;
    letter-spacing: 2px;
  }

  .brand-sub {
    font-size: 7px;
    letter-spacing: 4px;
  }


  .about-nav-icons {
    display: none;
  }


  .about-menu-toggle {
    display: flex;
  }


  .about-navigation {

    position: absolute;

    top: 75px;
    left: 0;
    right: 0;

    display: none;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    padding: 10px 20px;

    background: rgba(52,38,48,.98);

    border: 1px solid rgba(255,255,255,.15);

  }


  .about-navigation.open {
    display: flex;
  }


  .about-navigation a {
    padding: 14px 8px;

    border-bottom: 1px solid rgba(255,255,255,.1);

    font-size: 12px;
  }


  /* HERO */

  .about-hero {
    min-height: 100svh;

    background:
      linear-gradient(
        90deg,
        rgba(48,35,43,.92),
        rgba(64,50,61,.45)
      ),
      url("assets/images/about-hero.jpg");

    background-position: center;
  }


  .hero-content {
    width: 90%;

    margin: auto;

    padding: 100px 20px 40px;

    align-self: flex-end;

    margin-bottom: 8vh;
  }


  .hero-content h1 {
    font-size: 49px;
  }


  .hero-description {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 20px;
    line-height: 1.7;
  }


  /* WHO */

  .who-we-are,
  .heritage,
  .founder,
  .promise {
    grid-template-columns: 1fr;
  }


  .who-content,
  .heritage-content,
  .founder-content,
  .promise-content {
    padding: 65px 28px;
  }


  .who-image,
  .heritage-image,
  .founder-image,
  .promise-image {
    min-height: 350px;
  }


  /* PHILOSOPHY */

  .philosophy-grid {
    grid-template-columns: 1fr 1fr;
  }


  .philosophy-item {
    padding: 25px 15px;

    border-right: 0;

    border-bottom: 1px solid rgba(215,178,105,.25);
  }


  /* GOLD SILVER */

  .metal-collections {
    grid-template-columns: 1fr;
  }


  .metal-card {
    min-height: auto;

    grid-template-columns: 1fr;
  }


  .metal-card .metal-image {
    min-height: 300px;
  }


  .metal-card .metal-content {
    min-height: 330px;

    padding: 50px 28px;
  }


  .silver-card .metal-image {
    order: -1;
  }


  /* FOUNDER */

  .founder-image {
    min-height: 430px;
  }


  /* WHY */

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }


  .why-grid article {
    padding: 25px 15px;

    border-right: 0;

    border-bottom: 1px solid rgba(120,95,101,.2);
  }


  /* MOMENTS */

  .moments-grid {
    grid-template-columns: 1fr 1fr;
  }


  .moments-grid article {
    padding: 20px 10px;

    border-right: 0;
  }


  /* TESTIMONIAL */

  .testimonial-row {
    grid-template-columns: 1fr;
  }


  .testimonial-row article {
    border-right: 0;

    border-bottom: 1px solid rgba(255,255,255,.15);

    padding: 25px 20px;
  }


  .testimonial-row article:last-child {
    border-bottom: 0;
  }


  /* FINAL */

  .final-cta {
    grid-template-columns: 1fr;

    min-height: auto;
  }


  .final-cta > div:first-child {
    padding: 65px 28px;
  }


  .final-jewellery {
    min-height: 330px;
  }


  /* FOOTER */

  .footer-grid {
    grid-template-columns: 1fr 1fr;

    padding: 50px 28px;

    gap: 40px 25px;
  }


  .footer-brand {
    grid-column: 1 / -1;
  }


  .footer-bottom {
    padding: 15px 20px;

    flex-direction: column;

    text-align: center;

    gap: 8px;
  }


  .footer-bottom span:first-child,
  .footer-bottom span:last-child {
    display: none;
  }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

  .hero-content h1 {
    font-size: 42px;
  }


  .philosophy-grid,
  .why-grid,
  .moments-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }


  .philosophy-item {
    padding: 25px 20px;
  }


  .why-grid article {
    padding: 25px;
  }


  .moments-grid article {
    padding: 25px 10px;
  }


  .footer-brand {
    grid-column: auto;
  }


  .footer-grid {
    gap: 35px;
  }


  .final-buttons {
    flex-direction: column;

    align-items: flex-start;
  }


  .gold-divider span {
    width: 55px;
  }

}


/* =========================================================
   PROMISE SECTION — CENTERED TEXT, NO IMAGE
========================================================= */

.promise {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--deep-plum);
  color: #fff;
  text-align: center;
}

/* Remove the jewellery image */
.promise-image {
  display: none;
}

/* Center all content */
.promise-content {
  width: min(850px, 90%);
  padding: 80px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Center heading */
.promise-content h2 {
  font-size: clamp(42px, 5vw, 65px);
  line-height: 1;
  text-align: center;
  margin: 0;
}

.promise-content h2 em {
  color: var(--gold-light);
  font-style: normal;
}

/* Center divider */
.promise-content .gold-divider.left {
  justify-content: center;
  width: 100%;
}

/* Center paragraph */
.promise-content > p:last-child {
  max-width: 700px;
  margin: 5px auto 0;
  text-align: center;
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255,255,255,.82);
}

/* =========================================================
   OUR JOURNEY — HORIZONTAL TIMELINE
========================================================= */

.journey-timeline {
  position: relative;

  padding: 85px 6vw 100px;

  background: var(--cream);

  overflow: hidden;
}


/* =========================================================
   HEADING
========================================================= */

.journey-heading {
  text-align: center;

  margin-bottom: 75px;
}

.journey-heading p {
  margin: 0;

  font-family: var(--cinzel);

  font-size:30px;

  letter-spacing: 4px;

  color: var(--text);
}

.journey-heading span {
  display: block;

  margin-top: 12px;

  font-family: var(--cormorant);

  font-size: 18px;

  color: var(--gold);
}


/* =========================================================
   TIMELINE WRAPPER
========================================================= */

.timeline {
  position: relative;

  max-width: 1350px;

  min-height: 430px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(5, 1fr);

  align-items: center;
}


/* =========================================================
   HORIZONTAL GOLD LINE
========================================================= */

.timeline::before {
  content: "";

  position: absolute;

  left: 3%;
  right: 3%;

  top: 50%;

  height: 1px;

  background: rgba(185, 138, 60, 0.5);

  transform: translateY(-50%);
}


/* =========================================================
   TIMELINE ITEM
========================================================= */

.timeline-item {
  position: relative;

  height: 430px;

  display: flex;

  flex-direction: column;

  align-items: center;

  z-index: 2;
}


/* =========================================================
   TOP ITEMS
========================================================= */

.timeline-item.top {
  justify-content: flex-start;
}


/* Content above line */

.timeline-item.top .timeline-content {
  margin-top: 0;

  margin-bottom: auto;

  padding-bottom: 38px;
}


/* Dot sits exactly on line */

.timeline-item.top .timeline-dot {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);
}


/* =========================================================
   BOTTOM ITEMS
========================================================= */

.timeline-item.bottom {
  justify-content: flex-end;
}


/* Content below line */

.timeline-item.bottom .timeline-content {
  margin-top: auto;

  padding-top: 38px;
}


/* Dot sits exactly on line */

.timeline-item.bottom .timeline-dot {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);
}


/* =========================================================
   VERTICAL CONNECTOR
========================================================= */

.timeline-item.top::after {
  content: "";

  position: absolute;

  width: 1px;

  height: 42px;

  left: 50%;

  bottom: 50%;

  background: rgba(185, 138, 60, 0.5);

  transform: translateX(-50%);
}


.timeline-item.bottom::after {
  content: "";

  position: absolute;

  width: 1px;

  height: 42px;

  left: 50%;

  top: 50%;

  background: rgba(185, 138, 60, 0.5);

  transform: translateX(-50%);
}


/* =========================================================
   GOLD DOT
========================================================= */

.timeline-dot {
  width: 17px;

  height: 17px;

  border-radius: 50%;

  background: var(--cream);

  border: 2px solid var(--gold);

  position: relative;

  z-index: 5;

  box-shadow:
    0 0 0 5px var(--cream);

  transition:
    background .3s ease,
    transform .3s ease,
    box-shadow .3s ease;
}


/* Inner diamond */

.timeline-dot::before {
  content: "◇";

  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -52%);

  font-size: 8px;

  color: var(--gold);
}


/* Hover */

.timeline-item:hover .timeline-dot {
  background: var(--gold);

  transform: translateY(-50%) scale(1.18);

  box-shadow:
    0 0 0 5px var(--cream),
    0 0 20px rgba(185, 138, 60, 0.25);
}

.timeline-item:hover .timeline-dot::before {
  color: #fff;
}


/* =========================================================
   CONTENT
========================================================= */

.timeline-content {
  width: 210px;

  text-align: center;

  transition:
    transform .3s ease;
}


.timeline-item:hover .timeline-content {
  transform: translateY(-4px);
}


/* Year */

.timeline-year {
  display: block;

  margin-bottom: 10px;

  font-family: var(--cinzel);

  font-size: 13px;

  letter-spacing: 2px;

  color: var(--gold);
}


/* Heading */

.timeline-content h3 {
  margin: 0 0 12px;

  font-family: var(--cinzel);

  font-size: 15px;

  font-weight: 500;

  letter-spacing: 1.5px;

  color: var(--text);
}


/* Description */

.timeline-content p {
  margin: 0;

  font-family: var(--cormorant);

  font-size: 18px;

  line-height: 1.55;

  color: #706668;
}


/* =========================================================
   DECORATIVE END POINTS
========================================================= */

.timeline::after {
  content: "◇";

  position: absolute;

  right: 0;

  top: 50%;

  transform: translateY(-50%);

  font-family: var(--cormorant);

  font-size: 16px;

  color: var(--gold);

  background: var(--cream);

  padding-left: 8px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .journey-timeline {
    padding: 70px 4vw 80px;
  }

  .journey-heading {
    margin-bottom: 55px;
  }

  .timeline {
    min-height: 390px;
  }

  .timeline-item {
    height: 390px;
  }

  .timeline-content {
    width: 170px;
  }

  .timeline-content h3 {
    font-size: 13px;
  }

  .timeline-content p {
    font-size: 16px;
  }

  .timeline-year {
    font-size: 11px;
  }

}


/* =========================================================
   MOBILE — VERTICAL TIMELINE
========================================================= */

@media (max-width: 600px) {

  .journey-timeline {
    padding: 65px 25px 75px;
  }

  .journey-heading {
    margin-bottom: 50px;
  }

  .journey-heading p {
    font-size: 12px;

    letter-spacing: 3px;
  }


  /* Vertical timeline */

  .timeline {
    display: flex;

    flex-direction: column;

    align-items: stretch;

    min-height: auto;

    gap: 0;

    padding-left: 35px;
  }


  /* Vertical line */

  .timeline::before {
    left: 35px;

    top: 0;
    bottom: 0;

    width: 1px;

    height: auto;

    transform: none;
  }


  /* Remove end diamond on mobile */

  .timeline::after {
    display: none;
  }


  /* Items */

  .timeline-item,
  .timeline-item.top,
  .timeline-item.bottom {
    width: 100%;

    height: auto;

    min-height: 190px;

    display: flex;

    flex-direction: row;

    justify-content: flex-start;

    align-items: center;

    position: relative;
  }


  /* Content */

  .timeline-item.top .timeline-content,
  .timeline-item.bottom .timeline-content {
    margin: 0;

    padding: 20px 0 20px 45px;

    text-align: left;

    width: 100%;
  }


  /* Dot */

  .timeline-item.top .timeline-dot,
  .timeline-item.bottom .timeline-dot {
    position: absolute;

    left: 0;

    top: 50%;

    transform: translate(-50%, -50%);
  }


  /* Connector hidden */

  .timeline-item.top::after,
  .timeline-item.bottom::after {
    display: none;
  }


  .timeline-content h3 {
    font-size: 14px;

    margin-bottom: 8px;
  }


  .timeline-content p {
    font-size: 17px;

    line-height: 1.5;

    max-width: 300px;
  }


  .timeline-year {
    font-size: 11px;

    letter-spacing: 2px;
  }

}