:root {
  --black: #090909;
  --black-soft: #111111;
  --panel: #161616;

  --cream: #f1eee7;

  --white: #f7f4ee;
  --muted: #aaa49a;

  --gold: #c9a86a;
  --gold-light: #e1c791;

  --line: rgba(255, 255, 255, 0.08);

  --container: 1180px;
}


/* RESET */

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);

  font-family: Arial, Helvetica, sans-serif;

  overflow-x: hidden;
}

body.loader-active {
  overflow: hidden;
}

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

.container {
  width: min(var(--container), 90%);
  margin: 0 auto;
}


/* PAGE LOADER */

.page-loader {
  position: fixed;
  inset: 0;

  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #080808;

  opacity: 1;
  visibility: visible;

  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-brand {
  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(24px, 3vw, 42px);

  letter-spacing: 4px;

  opacity: 0;

  animation: loaderFade 0.7s ease forwards;
}

.loader-line {
  width: 0;
  height: 1px;

  margin: 24px auto;

  background: var(--gold);

  animation: loaderLine 1.25s ease forwards 0.25s;
}

.loader-location {
  color: var(--gold);

  font-size: 9px;

  letter-spacing: 5px;

  opacity: 0;

  animation: loaderFade 0.7s ease forwards 0.7s;
}

@keyframes loaderLine {
  to {
    width: 250px;
  }
}

@keyframes loaderFade {
  to {
    opacity: 1;
  }
}


/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  left: 0;

  z-index: 1000;

  width: 100%;

  background: rgba(8, 8, 8, 0.74);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid var(--line);

  transition: background 0.35s ease;
}

.nav-wrap {
  min-height: 86px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}


/* BRAND */

.brand,
.footer-brand {
  display: flex;
  flex-direction: column;

  gap: 6px;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;

  font-size: 19px;

  letter-spacing: 2px;
}

.brand-location {
  color: var(--gold);

  font-size: 8px;

  letter-spacing: 3px;
}


/* NAVIGATION */

.desktop-nav {
  display: flex;

  gap: 30px;
}

.desktop-nav a {
  position: relative;

  color: #e9e5dd;

  font-size: 13px;
}

.desktop-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0;
  height: 1px;

  background: var(--gold);

  transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}


/* HEADER CTA */

.header-cta {
  min-height: 46px;

  padding: 0 22px;

  display: inline-flex;
  align-items: center;

  border-radius: 999px;

  background: var(--gold);

  color: #111;

  font-size: 12px;
  font-weight: 700;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.header-cta:hover {
  background: var(--gold-light);

  transform: translateY(-2px);
}


/* MOBILE BUTTON */

.menu-toggle {
  display: none;

  border: 0;

  background: transparent;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 25px;
  height: 1px;

  margin: 6px;

  background: #fff;
}


/* MOBILE MENU */

.mobile-menu {
  position: fixed;

  top: 78px;
  right: 5%;

  z-index: 999;

  min-width: 220px;

  padding: 24px;

  display: none;
  flex-direction: column;

  gap: 20px;

  background: #111;

  border: 1px solid var(--line);
}

.mobile-menu.open {
  display: flex;
}


/* COMMON */

.eyebrow {
  color: var(--gold);

  font-size: 10px;

  letter-spacing: 4px;
}

.button {
  min-height: 50px;

  padding: 0 27px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  font-size: 12px;
  font-weight: 700;

  transition: all 0.3s ease;
}

.button-gold {
  background: var(--gold);

  color: #111;
}

.button-gold:hover {
  background: var(--gold-light);

  transform: translateY(-2px);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.25);

  color: #fff;
}

.button-outline:hover {
  border-color: var(--gold);

  color: var(--gold);

  transform: translateY(-2px);
}


/* HERO */

.hero {
  position: relative;

  min-height: 100vh;

  padding-top: 86px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 75% 28%,
      rgba(201, 168, 106, 0.14),
      transparent 28%
    ),
    linear-gradient(
      115deg,
      #070707 0%,
      #0d0d0d 56%,
      #14110d 100%
    );
}

.hero-grid {
  min-height: calc(100vh - 86px);

  padding: 85px 0 135px;

  display: grid;

  grid-template-columns: 1.15fr 0.85fr;

  align-items: center;

  gap: 45px;
}

.hero h1 {
  max-width: 850px;

  margin-top: 25px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(48px, 5.5vw, 82px);

  line-height: 1.02;

  font-weight: 400;

  letter-spacing: -1.5px;
}

.hero h1 span {
  color: var(--gold);
}

.hero-text {
  max-width: 650px;

  margin-top: 28px;

  color: #c5c0b8;

  font-size: 16px;

  line-height: 1.8;
}

.hero-actions {
  margin-top: 36px;

  display: flex;

  gap: 14px;

  flex-wrap: wrap;
}


/* HERO ENTRANCE */

.hero-animate {
  opacity: 0;

  transform: translateY(28px);
}

body.loaded .hero-animate {
  animation: heroEnter 0.9s ease forwards;
}

body.loaded .hero-delay-1 {
  animation-delay: 0.1s;
}

body.loaded .hero-delay-2 {
  animation-delay: 0.25s;
}

body.loaded .hero-delay-3 {
  animation-delay: 0.45s;
}

body.loaded .hero-delay-4 {
  animation-delay: 0.65s;
}

@keyframes heroEnter {
  to {
    opacity: 1;

    transform: translateY(0);
  }
}


/* HERO VISUAL */

.hero-visual {
  position: relative;

  min-height: 520px;
}

.orbit {
  position: absolute;

  border-radius: 50%;

  border: 1px solid rgba(201, 168, 106, 0.18);
}

.orbit-large {
  width: 440px;
  height: 440px;

  top: 8%;
  right: 2%;
}

.orbit-small {
  width: 270px;
  height: 270px;

  top: 25%;
  right: 20%;

  border-color: rgba(255, 255, 255, 0.08);
}

.hero-monogram {
  position: absolute;

  top: 39%;
  right: 31%;

  width: 110px;
  height: 110px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  border: 1px solid rgba(201, 168, 106, 0.25);

  background: rgba(201, 168, 106, 0.06);

  color: var(--gold);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 27px;

  letter-spacing: 3px;
}

.hero-vertical-text {
  position: absolute;

  top: 50%;
  right: -8px;

  transform: rotate(90deg) translateY(-50%);

  transform-origin: right center;

  color: #68645e;

  font-size: 9px;

  letter-spacing: 5px;
}


/* GOLD GLOW */

.hero-glow {
  position: absolute;

  top: 18%;
  right: 10%;

  width: 320px;
  height: 320px;

  border-radius: 50%;

  background: rgba(201, 168, 106, 0.08);

  filter: blur(80px);
}


/* BUSINESS STRIP */

.hero-business-strip {
  position: absolute;

  bottom: 0;
  left: 0;

  width: 100%;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--line);

  background: rgba(4, 4, 4, 0.72);

  backdrop-filter: blur(12px);
}

.hero-business-strip div {
  padding: 20px 26px;

  border-right: 1px solid var(--line);

  color: #d2cdc4;

  font-size: 12px;
}

.hero-business-strip span {
  margin-right: 10px;

  color: var(--gold);

  font-size: 10px;
}


/* ABOUT */

.intro-section {
  padding: 130px 0;

  background: var(--cream);

  color: #151515;
}

.intro-grid {
  display: grid;

  grid-template-columns: 0.7fr 1.3fr;

  gap: 80px;
}

.section-label {
  color: #6e695f;

  font-size: 13px;
}

.section-label span {
  display: block;

  margin-bottom: 15px;

  color: #a67e40;

  font-size: 10px;

  letter-spacing: 3px;
}

.intro-copy h2 {
  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(38px, 5vw, 66px);

  line-height: 1.05;

  font-weight: 400;
}

.intro-copy h2 span {
  color: #a67e40;
}

.intro-copy p {
  max-width: 720px;

  margin-top: 28px;

  color: #5f5a51;

  font-size: 17px;

  line-height: 1.8;
}


/* BUSINESS SECTION */

.business-section {
  padding: 130px 0;

  background: #0d0d0d;
}

.section-heading {
  margin-bottom: 58px;

  display: flex;

  align-items: end;
  justify-content: space-between;

  gap: 35px;
}

.section-heading h2 {
  margin-top: 13px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(40px, 5vw, 64px);

  font-weight: 400;
}

.section-heading > p {
  max-width: 420px;

  color: var(--muted);

  line-height: 1.7;
}

.business-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;
}

.business-card {
  min-height: 360px;

  padding: 32px;

  display: flex;

  justify-content: space-between;

  gap: 30px;

  border: 1px solid var(--line);

  background: #151515;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.business-card:hover {
  transform: translateY(-6px);

  border-color: rgba(201, 168, 106, 0.45);

  background: #191815;
}

.business-number {
  color: var(--gold);

  font-size: 10px;
}

.business-card-content {
  max-width: 390px;

  align-self: end;
}

.business-category {
  color: #777269;

  font-size: 9px;

  letter-spacing: 3px;
}

.business-card h3 {
  margin-top: 14px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 34px;

  font-weight: 400;
}

.business-card-content > p:not(.business-category) {
  margin-top: 18px;

  color: #aaa49b;

  line-height: 1.7;
}

.business-card a {
  display: inline-block;

  margin-top: 28px;

  color: var(--gold);

  font-size: 12px;
}


/* VALUES */

.values-section {
  padding: 130px 0;

  background: #161513;
}

.values-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border: 1px solid var(--line);
}

.value-item {
  min-height: 270px;

  padding: 34px 28px;

  border-right: 1px solid var(--line);
}

.value-item:last-child {
  border-right: 0;
}

.value-item span {
  color: var(--gold);

  font-size: 10px;
}

.value-item h3 {
  margin-top: 60px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 24px;

  font-weight: 400;
}

.value-item p {
  margin-top: 16px;

  color: #9e988e;

  font-size: 14px;

  line-height: 1.7;
}


/* CONTACT */

.contact-section {
  padding: 130px 0;

  background: var(--cream);

  color: #151515;
}

.contact-grid {
  display: grid;

  grid-template-columns: 1.15fr 0.85fr;

  align-items: center;

  gap: 70px;
}

.contact-copy h2 {
  margin-top: 18px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(42px, 5.5vw, 72px);

  line-height: 1.02;

  font-weight: 400;
}

.contact-copy h2 span {
  color: #a67e40;
}

.contact-copy > p:last-child {
  max-width: 620px;

  margin-top: 28px;

  color: #645f56;

  line-height: 1.8;
}

.contact-panel {
  padding: 40px;

  background: #151515;

  color: #fff;
}

.contact-label {
  color: var(--gold);

  font-size: 9px;

  letter-spacing: 3px;
}

.contact-email {
  display: inline-block;

  margin-top: 20px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 24px;
}

.contact-divider {
  height: 1px;

  margin: 30px 0;

  background: var(--line);
}

.contact-panel > p:not(.contact-label) {
  color: #aaa49b;
}

.contact-panel .button {
  margin-top: 30px;
}


/* FOOTER */

footer {
  background: #080808;
}

.footer-top {
  padding: 55px 0;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.footer-links {
  display: flex;

  gap: 25px;

  color: #aaa49b;

  font-size: 12px;
}

.footer-bottom {
  padding: 25px 0;

  display: flex;

  justify-content: space-between;

  gap: 20px;

  border-top: 1px solid var(--line);

  color: #706b63;

  font-size: 11px;
}


/* SCROLL REVEALS */

.reveal {
  opacity: 0;

  transform: translateY(30px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}


/* TABLET */

@media (max-width: 980px) {

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

  .hero-visual {
    min-height: 360px;
  }

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

  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

}


/* MOBILE */

@media (max-width: 680px) {

  .nav-wrap {
    min-height: 76px;
  }

  .hero {
    padding-top: 76px;
  }

  .hero-grid {
    min-height: auto;

    padding: 90px 0 150px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .hero-visual {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-business-strip {
    position: relative;

    grid-template-columns: 1fr;
  }

  .intro-section,
  .business-section,
  .values-section,
  .contact-section {
    padding: 90px 0;
  }

  .intro-grid {
    gap: 40px;
  }

  .section-heading {
    flex-direction: column;

    align-items: flex-start;
  }

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

  .value-item {
    border-right: 0;

    border-bottom: 1px solid var(--line);
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;

    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
  }

}
/* ========================================
   LUXURY CURSOR GLOW
======================================== */

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;

  width: 320px;
  height: 320px;

  border-radius: 50%;

  pointer-events: none;

  background: radial-gradient(
    circle,
    rgba(201, 168, 106, 0.12) 0%,
    rgba(201, 168, 106, 0.05) 35%,
    transparent 70%
  );

  filter: blur(18px);

  transform: translate(-50%, -50%);

  z-index: 2;

  opacity: 0;

  transition: opacity 0.3s ease;
}

@media (max-width: 980px) {
  .cursor-glow {
    display: none;
  }
}
/* ========================================
   PREMIUM BUSINESS CARD HOVER
======================================== */

.business-card {
  position: relative;
  overflow: hidden;
}

.business-card::before {
  content: "";

  position: absolute;
  inset: 0;

  padding: 1px;

  background: linear-gradient(
    120deg,
    transparent 15%,
    rgba(201, 168, 106, 0.65),
    transparent 75%
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0;

  transition: opacity 0.35s ease;

  pointer-events: none;
}

.business-card::after {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  right: -100px;
  bottom: -100px;

  border-radius: 50%;

  background: rgba(201, 168, 106, 0.07);

  filter: blur(40px);

  opacity: 0;

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;

  pointer-events: none;
}

.business-card:hover::before {
  opacity: 1;
}

.business-card:hover::after {
  opacity: 1;
  transform: scale(1.25);
}

.business-card:hover .business-number {
  transform: translateY(-4px);
  color: var(--gold-light);
}

.business-card:hover h3 {
  color: var(--gold-light);
}

.business-card:hover a {
  transform: translateX(6px);
}

.business-number,
.business-card h3,
.business-card a {
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}
/* ========================================
   ABOUT SECTION PREMIUM REVEAL
======================================== */

.intro-copy h2 {
  overflow: hidden;
}

.intro-copy h2 span,
.intro-copy h2 br {
  position: relative;
}

.intro-copy.reveal.visible h2 {
  animation: aboutHeadline 1s cubic-bezier(.2,.7,.2,1) both;
}

.intro-copy.reveal.visible p:nth-of-type(1) {
  animation: aboutText 0.8s ease 0.25s both;
}

.intro-copy.reveal.visible p:nth-of-type(2) {
  animation: aboutText 0.8s ease 0.42s both;
}

@keyframes aboutHeadline {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutText {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ========================================
   HERO PARALLAX SMOOTHING
======================================== */

.hero-visual {
  transition: transform 0.35s ease-out;
  will-change: transform;
}
/* ========================================
   GENERAL TRADING PAGE
======================================== */

.division-page {
  background: #0b0b0b;
  color: var(--white);
}

/* HERO */

.division-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 86px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 76% 30%,
      rgba(201, 168, 106, 0.13),
      transparent 28%
    ),
    linear-gradient(
      115deg,
      #070707 0%,
      #0d0d0d 55%,
      #14110d 100%
    );
}

.division-hero-grid {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
  padding: 90px 0;
}

.division-hero-copy h1 {
  margin-top: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7vw, 98px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -2px;
}

.division-hero-copy h1 span {
  color: var(--gold);
}

.division-hero-text {
  max-width: 650px;
  margin-top: 30px;
  color: #c6c0b7;
  font-size: 17px;
  line-height: 1.8;
}

.division-actions {
  display: flex;
  gap: 15px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.division-hero-visual {
  position: relative;
  min-height: 520px;
}

.division-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 106, 0.18);
}

.division-ring-one {
  width: 440px;
  height: 440px;
  right: 4%;
  top: 10%;
}

.division-ring-two {
  width: 270px;
  height: 270px;
  right: 21%;
  top: 27%;
  border-color: rgba(255,255,255,0.08);
}

.division-number {
  position: absolute;
  right: 31%;
  top: 39%;
  width: 115px;
  height: 115px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(201, 168, 106, 0.06);
  border: 1px solid rgba(201, 168, 106, 0.24);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
}

.division-hero-visual p {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: rotate(90deg) translateY(-50%);
  transform-origin: right center;
  color: #69645d;
  font-size: 9px;
  letter-spacing: 4px;
}

.division-hero-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  right: 10%;
  top: 20%;
  border-radius: 50%;
  background: rgba(201, 168, 106, 0.08);
  filter: blur(80px);
}

/* INTRO */

.division-intro {
  padding: 130px 0;
  background: var(--cream);
  color: #151515;
}

.division-intro-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
}

.division-intro-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 400;
  line-height: 1.05;
}

.division-intro-copy h2 span {
  color: #a67e40;
}

.division-intro-copy p {
  max-width: 720px;
  margin-top: 28px;
  color: #5f5a51;
  font-size: 17px;
  line-height: 1.8;
}

/* CATEGORIES */

.division-categories {
  padding: 130px 0;
  background: #0d0d0d;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.category-card {
  min-height: 300px;
  padding: 34px;
  position: relative;
  border: 1px solid var(--line);
  background: #151515;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 106, 0.42);
  background: #191815;
}

.category-card span {
  color: var(--gold);
  font-size: 10px;
}

.category-card h3 {
  margin-top: 90px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
}

.category-card p {
  margin-top: 18px;
  color: #a9a39a;
  line-height: 1.7;
}

/* PROCESS */

.division-process {
  padding: 130px 0;
  background: #161513;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}

.process-item {
  min-height: 300px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}

.process-item:last-child {
  border-right: 0;
}

.process-item span {
  color: var(--gold);
  font-size: 10px;
}

.process-item h3 {
  margin-top: 70px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.process-item p {
  margin-top: 16px;
  color: #9e988e;
  line-height: 1.7;
  font-size: 14px;
}

/* ENQUIRY */

.division-enquiry {
  padding: 130px 0;
  background: var(--cream);
  color: #151515;
}

.division-enquiry-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
}

.division-enquiry-copy h2 {
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.02;
}

.division-enquiry-copy h2 span {
  color: #a67e40;
}

.division-enquiry-copy > p:last-child {
  max-width: 620px;
  margin-top: 28px;
  color: #645f56;
  line-height: 1.8;
}

.division-enquiry-panel {
  padding: 40px;
  background: #151515;
  color: #fff;
}

/* RESPONSIVE */

@media (max-width: 980px) {

  .division-hero-grid,
  .division-intro-grid,
  .division-enquiry-grid {
    grid-template-columns: 1fr;
  }

  .division-hero-visual {
    min-height: 360px;
  }

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

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

}

@media (max-width: 680px) {

  .division-hero {
    padding-top: 76px;
  }

  .division-hero-grid {
    min-height: auto;
    padding: 90px 0;
  }

  .division-hero-copy h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .division-hero-visual {
    display: none;
  }

  .division-actions {
    flex-direction: column;
  }

  .division-intro,
  .division-categories,
  .division-process,
  .division-enquiry {
    padding: 90px 0;
  }

  .division-intro-grid {
    gap: 40px;
  }

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

  .process-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-item:last-child {
    border-bottom: 0;
  }

}
/* ==========================================================
   LE PARIS JEWELS
========================================================== */

.jewellery-hero .division-ring{
    border-color:rgba(212,175,95,.18);
}

.jewellery-hero .division-number{
    background:rgba(212,175,95,.08);
}

.jewellery-hero .division-number::after{
    content:"";
    position:absolute;
    inset:-14px;
    border:1px solid rgba(212,175,95,.12);
    border-radius:50%;
}

.jewellery-positioning{
    background:#111111;
    padding:140px 0;
}

.jewellery-positioning-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.jewellery-positioning h2{
    font-size:72px;
    line-height:1.05;
    color:#f5f2ed;
}

.jewellery-positioning h2 span{
    color:var(--gold);
}

.jewellery-positioning-copy{
    font-size:20px;
    line-height:1.9;
    color:rgba(255,255,255,.72);
}

.jewellery-positioning-copy p{
    margin-bottom:30px;
}

.jewellery-page .category-card:hover{
    transform:translateY(-12px);
}

.jewellery-page .category-card:hover h3{
    color:var(--gold);
}

.jewellery-page .process-item:hover{
    transform:translateY(-10px);
}

@media(max-width:900px){

.jewellery-positioning-grid{
grid-template-columns:1fr;
gap:50px;
}

.jewellery-positioning h2{
font-size:48px;
}

.jewellery-positioning-copy{
font-size:18px;
}

}