
    :root {
      --ink: #111318;
      --muted: #647084;
      --soft: #8a94a6;
      --line: #e6e9ef;
      --paper: #f6f7f9;
      --white: #ffffff;
      --gold: #c99733;
      --gold-dark: #805c1d;
      --green: #14785f;
      --panel: #171a22;
      --shadow: 0 24px 80px rgba(17, 19, 24, 0.14);
      --shadow-soft: 0 12px 34px rgba(17, 19, 24, 0.08);
      --radius: 8px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      line-height: 1.5;
      text-rendering: optimizeLegibility;
    }

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

    a {
      color: inherit;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 1px solid rgba(230, 233, 239, 0.8);
      background: rgba(250, 251, 252, 0.86);
      backdrop-filter: blur(18px);
    }

    .nav {
      width: min(1320px, calc(100% - 48px));
      min-height: 76px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      font-weight: 750;
      letter-spacing: 0;
      white-space: nowrap;
    }

    .ar-highlight {
      position: relative;
      display: inline-block;
      background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
      background-size: 200% auto;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: ar-shimmer 1.4s linear infinite;
    }

    @keyframes ar-shimmer {
      0%   { background-position: 200% center; }
      100% { background-position: -200% center; }
    }

    .brand img {
      width: 34px;
      height: 34px;
      border-radius: 8px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      margin-left: auto;
    }

    .nav-links > a,
    .nav-dropdown-toggle {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      padding: 0 13px;
      border-radius: 7px;
      border: 0;
      background: transparent;
      color: #4f5b6d;
      text-decoration: none;
      font-family: inherit;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: background 160ms ease, color 160ms ease, transform 160ms ease;
    }

    .nav-links > a:hover,
    .nav-dropdown-toggle:hover,
    .nav-dropdown-toggle:focus-visible {
      background: #eef1f5;
      color: var(--ink);
    }

    .nav-links > a[aria-current="page"],
    .nav-dropdown-toggle[aria-current="page"] {
      background: #eef1f5;
      color: var(--gold-dark);
      font-weight: 750;
    }

    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown-toggle {
      gap: 9px;
    }

    .nav-chevron {
      width: 7px;
      height: 7px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: translateY(-2px) rotate(45deg);
      transition: transform 160ms ease;
    }

    .nav-dropdown.open .nav-chevron {
      transform: translateY(2px) rotate(225deg);
    }

    .nav-submenu {
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 30;
      display: none;
      width: 238px;
      padding: 8px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: var(--white);
      box-shadow: 0 18px 45px rgba(17, 19, 24, 0.14);
    }

    .nav-dropdown:hover .nav-submenu,
    .nav-dropdown.open .nav-submenu {
      display: grid;
    }

    .nav-submenu a {
      min-height: 38px;
      display: flex;
      align-items: center;
      padding: 0 11px;
      border-radius: 6px;
      color: #4f5b6d;
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
    }

    .nav-submenu a:hover,
    .nav-submenu a:focus-visible,
    .nav-submenu a[aria-current="page"] {
      background: #f2f4f7;
      color: var(--gold-dark);
    }

    .nav-cta {
      background: var(--ink) !important;
      color: var(--white) !important;
      padding: 0 16px !important;
      box-shadow: 0 10px 24px rgba(17, 19, 24, 0.16);
    }

    .menu-button {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--white);
      color: var(--ink);
      font-size: 20px;
      line-height: 1;
    }

    main {
      min-height: calc(100vh - 76px);
    }

    .page {
      display: none;
    }

    .page.active {
      display: block;
    }

    .section {
      padding: 88px 0;
    }

    .band {
      background: var(--white);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .container {
      width: min(1320px, calc(100% - 48px));
      margin: 0 auto;
    }




.hero {

    padding:45px 0 35px;

    background:
    radial-gradient(
        circle at 80% 20%,
        rgba(201,151,51,.12),
        transparent 35%
    ),
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f8f7f3 100%
    );

    overflow:hidden;

}





.hero-grid {

    display:grid;

    grid-template-columns:
    0.95fr 1fr;

    gap:60px;

    align-items:center;

}






.eyebrow {

    margin:0 0 14px;

    color:var(--gold-dark);

    font-size:12px;

    font-weight:760;

    letter-spacing:.12em;

    text-transform:none;

}



h1,
h2,
h3 {

    margin:0;

    line-height:1.08;

}



.hero h1 {

    max-width:620px;

    font-size:

    clamp(38px,4vw,52px);

    font-weight:750;

    line-height:1.12;

    letter-spacing:-1px;

    color:#111;

}



p {

    margin:0;

    color:var(--muted);

}



.lead {

    max-width:560px;

    margin-top:22px;

    color:#344053;

    font-size:17px;

    line-height:1.7;

}






.hero-actions {

    margin-top:32px;

    display:flex;

    flex-wrap:wrap;

    gap:14px;

}



.hero-actions .btn {


    min-height:48px;

    padding:0 28px;

    border-radius:30px;

    text-decoration:none;

    transition:.35s ease;

}



.hero-actions .btn:hover {


    transform:translateY(-4px);

}





.btn.gold {


    background:var(--gold);

    border-color:var(--gold);

    color:white;

    box-shadow:

    0 15px 35px rgba(201,151,51,.25);

}



.btn.gold:hover {


    background:#b88928;

}





.btn.secondary {

    min-height:50px;

    padding:0 30px;

    border-radius:30px;

    background:#ffffff;

    border:1px solid rgba(201,151,51,.35);

    color:#2a2a2a;

    font-weight:650;

    transition:
    transform .35s ease,
    color .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;

}

.why-section .actions {
    margin-top:50px;
}

.btn.secondary:hover {

    transform:translateY(-4px);

    color:#b88625;

    border-color:#c99733;

    box-shadow:
    0 15px 35px rgba(201,151,51,.18);

}




.hero-actions {

    margin-top:32px;

    display:flex;

    gap:14px;

    flex-wrap:wrap;

}



.hero-actions .btn {

    min-height:50px;

    padding:0 28px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    border-radius:30px;

    text-decoration:none;

    font-size:15px;

    font-weight:650;

    letter-spacing:.2px;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease,
        border-color .35s ease,
        color .35s ease;

}





.hero-actions .btn.gold {

    background:linear-gradient(
        135deg,
        #d4af37,
        #c99733
    );

    border:1px solid #c99733;

    color:#17120a;

    box-shadow:

    0 12px 30px rgba(201,151,51,.25);

}



.hero-actions .btn.gold:hover {

    transform:translateY(-4px);

    box-shadow:

    0 18px 45px rgba(201,151,51,.35);

}





.hero-actions .btn.secondary {


    background:white;

    border:1px solid rgba(201,151,51,.35);

    color:#222;

}



.hero-actions .btn.secondary:hover {


    transform:translateY(-4px);


    border-color:#c99733;


    color:#c99733;


    box-shadow:

    0 15px 35px rgba(0,0,0,.10);

}






.hero-media {

    display:flex;

    justify-content:center;

    align-items:center;

}



.product-showcase {

    width:100%;

}



.browser-frame {


    overflow:hidden;


    border-radius:24px;


    background:#ffffff;


    border:1px solid rgba(201,151,51,.18);


    box-shadow:

    0 25px 70px rgba(0,0,0,.10);


    transition:

    transform .45s ease,

    box-shadow .45s ease,

    border-color .45s ease;


}



.browser-frame:hover {


    transform:translateY(-8px);


    border-color:#c99733;


    box-shadow:

    0 35px 90px rgba(201,151,51,.25);


}



.browser-top {


    height:42px;


    display:flex;


    align-items:center;


    gap:10px;


    padding:0 18px;


    background:#faf7ef;


    border-bottom:1px solid rgba(201,151,51,.12);


    color:#8a7b62;


    font-size:12px;


}



.browser-dots {

    display:flex;

    gap:6px;

}


.browser-dots span {


    width:8px;


    height:8px;


    border-radius:50%;


    background:#d8c7a2;


}



.hero-product-image {


    width:100%;


    display:block;


    transition:

    transform .6s ease,

    filter .4s ease;


}



.browser-frame:hover .hero-product-image {


    transform:scale(1.035);


    filter:saturate(1.05);


}






@media(max-width:950px){


.hero-grid {

    grid-template-columns:1fr;

    text-align:center;

}



.hero h1 {

    margin:auto;

}



.lead {

    margin-left:auto;

    margin-right:auto;

}



.hero-actions {

    justify-content:center;

}



.hero-media {

    max-width:600px;

    margin:auto;

}


}




@media(max-width:600px){


.hero {

    padding:35px 0;

}



.hero h1 {

    font-size:34px;

}



.hero-actions {


    flex-direction:column;


}



.hero-actions .btn {


    width:100%;


}



.browser-frame {


    border-radius:18px;


}


}


    .btn {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 20px;
      border: 1px solid var(--ink);
      border-radius: 8px;
      background: var(--ink);
      color: var(--white);
      text-decoration: none;
      font-weight: 720;
      font-size: 15px;
      cursor: pointer;
      transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
    }

    .btn:hover,
    .btn:focus-visible {
      transform: translateY(-1px);
      box-shadow: 0 12px 26px rgba(17, 19, 24, 0.16);
    }

    .btn:focus-visible,
    .nav-links a:focus-visible,
    .menu-button:focus-visible,
    summary:focus-visible {
      outline: 3px solid rgba(201, 151, 51, 0.34);
      outline-offset: 3px;
    }

    .btn.secondary {
      border-color: var(--line);
      background: var(--white);
      color: var(--ink);
      box-shadow: 0 1px 0 rgba(17, 19, 24, 0.02);
    }

    .btn.secondary:hover,
    .btn.secondary:focus-visible {
      border-color: var(--gold);
      color: var(--gold-dark);
    }

    .btn.gold {
      border-color: var(--gold);
      background: var(--gold);
      color: #1c1607;
      box-shadow: 0 14px 34px rgba(201, 151, 51, 0.25);
    }

    .hero-media {
      position: relative;
      min-height: 560px;
      grid-column: 2;
      grid-row: 1 / span 2;
    }

    .product-showcase {
      position: relative;
      min-height: 0;
      padding: 18px;
      border: 1px solid rgba(230, 233, 239, 0.88);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.72);
      box-shadow: var(--shadow);
    }

    .hero-product-image {
      width: 100%;
      height: auto;
      background: #f2f4f7;
    }

    .home-link[hidden] {
      display: none;
    }

    .browser-frame {
      overflow: hidden;
      border: 1px solid #dde2ea;
      border-radius: 8px;
      background: var(--white);
    }

    .browser-top {
      min-height: 44px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 16px;
      border-bottom: 1px solid #e9edf3;
      color: var(--soft);
      font-size: 12px;
    }

    .browser-dots {
      display: flex;
      gap: 6px;
    }

    .browser-dots span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #d8dde6;
    }




.hero-highlights {
    margin-top:35px;
}

.hero-highlights-track {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.highlight-clone {
    display:none;
}



.highlight-item {

    position:relative;

    background:#ffffff;

    border:1px solid #ebe4d5;

    border-radius:18px;

    padding:22px 20px;

    overflow:hidden;

    transition:
    transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;

}





.highlight-item::before {

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(
        circle at top left,
        rgba(201,151,51,.18),
        transparent 65%
    );

    opacity:0;

    transition:.35s ease;

}





.highlight-item:hover {

    transform:translateY(-8px);

    border-color:#c99733;

    box-shadow:
    0 20px 45px rgba(201,151,51,.18);

}





.highlight-item:hover::before {

    opacity:1;

}





.highlight-item strong {

    position:relative;

    display:block;

    font-size:26px;

    font-weight:750;

    color:#111;

    transition:.35s ease;

}





.highlight-item:hover strong {

    color:#c99733;

}





.highlight-item span {

    position:relative;

    display:block;

    margin-top:8px;

    color:#697386;

    font-size:13px;

    line-height:1.5;

    transition:.35s ease;

}





.highlight-item:hover span {

    color:#444;

}

    .metric:last-child {
      border-right: 0;
    }

    .metric strong {
      display: block;
      color: var(--ink);
      font-size: 22px;
      line-height: 1.1;
    }

    .metric span {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.76fr) minmax(280px, 0.5fr);
      gap: 44px;
      align-items: end;
      margin-bottom: 44px;
    }

    .section-head.compact {
      grid-template-columns: 1fr;
      max-width: 760px;
    }

    .section-head p {
      font-size: 16px;
      line-height: 1.7;
    }

    .grid {
      display: grid;
      gap: 24px;
    }

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

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


.card {

  background:rgba(255,255,255,0.9);

  border:1px solid rgba(201,151,51,.18);

  border-radius:22px;

  padding:28px;

  position:relative;

  overflow:hidden;

  box-shadow:
  0 12px 30px rgba(0,0,0,.07);

  transition:
  transform .35s ease,
  box-shadow .35s ease,
  border-color .35s ease;

}




.card::before {

  content:"";

  position:absolute;

  inset:0;

  background:
  linear-gradient(
    135deg,
    rgba(201,151,51,.15),
    transparent 50%
  );

  opacity:0;

  transition:.35s ease;

}





.card:hover {

  transform:translateY(-8px);

  border-color:rgba(201,151,51,.55);

  box-shadow:
  0 25px 55px rgba(0,0,0,.14);

}


.card:hover::before {

  opacity:1;

}





.card h3 {

  position:relative;

  margin-bottom:12px;

  font-size:22px;

  font-weight:750;

  color:#111827;

}





.card p {

  position:relative;

  margin:0;

  color:#4b5563;

  line-height:1.7;

  font-size:16px;

}

.luxury-card{

    background:#fff;

    border:1px solid rgba(201,151,51,.18);

    border-radius:22px;

    padding:34px;

    position:relative;

    overflow:hidden;

    transition:
    transform .4s ease,
    border-color .4s ease,
    box-shadow .4s ease,
    background .4s ease;

}

.luxury-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(90deg,#d4af37,#c99733);

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s ease;

}

.luxury-card:hover{

    transform:translateY(-10px);

    border-color:#c99733;

    background:#fffdf8;

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.luxury-card:hover::before{

    transform:scaleX(1);

}

.luxury-card h3{

    margin-bottom:16px;

    font-size:22px;

    font-weight:700;

    color:#111;

    transition:.35s ease;

}

.luxury-card:hover h3{

    color:#c99733;

}

.luxury-card p{

    margin:0;

    line-height:1.8;

    color:#667085;

    font-size:15px;

    transition:.35s ease;

}

.luxury-card:hover p{

    color:#444;

}



.link-card{

    text-decoration:none;

    color:inherit;

    height:100%;

}

.link-card h3{

    margin-bottom:12px;

    transition:.35s ease;

}

.link-card:hover h3{

    transform:translateX(4px);

}

.link-card p{

    font-size:15px;

    line-height:1.7;

}


.feature-card {
  min-height: 0;
  padding: 28px;
  border: 1px solid rgba(201, 151, 51, 0.25);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.feature-card .card-inner,
.feature-card .card-front,
.feature-card .card-back {
  position: static;
  min-height: 0;
  transform: none;
}

.feature-card .card-front,
.feature-card .card-back {
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.feature-card h3 {
  margin: 0 0 12px;
  color: #111;
  font-size: 17px;
  font-weight: 700;
}

.feature-card .card-back p {
  margin: 0;
  color: #596579;
  font-size: 14px;
  line-height: 1.65;
}





.category-switcher {

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 18px;

  max-width: 600px;

  margin: 34px auto 0;

  padding-top: 24px;

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

}



.category-switcher a {

  flex: 0 0 calc(33.333% - 12px);

  max-width: 170px;

  min-height: 46px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #ffffff;

  color: #4a4032;

  border: 1px solid rgba(201,151,51,0.3);

  border-radius: 12px;

  text-decoration: none;

  font-size: 14px;

  font-weight: 600;

  transition: all 0.35s ease;

}



.category-switcher a:hover,
.category-switcher a:focus-visible {

  background: #fbf7ed;

  border-color: #c99733;

  color: #c99733;

  transform: translateY(-3px);

  box-shadow: 0 8px 20px rgba(201,151,51,0.18);

  outline: none;

}



.category-switcher a[aria-current="page"] {

  background: #c99733;

  border-color: #c99733;

  color: white;

}

    .kicker {
      display: inline-flex;
      margin-bottom: 14px;
      padding: 5px 8px;
      border-radius: 7px;
      background: #eef2f6;
      color: #000000;
      font-size: 11px;
      font-weight: 760;
      text-transform: uppercase;
    }

    .split {
      display: grid;
      grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.7fr);
      gap: 54px;
      align-items: center;
    }

 .proof-panel {
  background: #fbf7ed;
  border: 1px solid rgba(201,151,51,0.35);
  border-radius: 20px;
  padding: 40px;
  color: #1a1a1a;
}

.proof-panel h3 {
  color: #1a1a1a;
}

.partner-tag {
  color: #c99733;
}

.proof-panel li {
  color: #444;
  border-bottom: 1px solid rgba(201,151,51,0.15);
}

.proof-panel li:last-child {
  border-bottom: none;
}

.proof-panel {
  background: #fbf7ed;
  border: 1px solid rgba(201,151,51,0.35);
  border-radius: 20px;
  padding: 40px;
  color: #1a1a1a;

  transition: all 0.3s ease;
}



.partner-content .eyebrow {

    margin-top:0;
    margin-bottom:12px;

    font-size:16px;
    font-weight:800;
    letter-spacing:.16em;

}


.partner-content h2 {

    font-size:clamp(32px,3.2vw,44px);

    line-height:1.15;

    font-weight:750;

    letter-spacing:-0.8px;

    max-width:650px;

    color:#111;

}


.partner-content .lead {

    margin-top:18px;

    max-width:600px;

    font-size:16px;

    line-height:1.7;

}


.proof-panel:hover {
  transform: translateY(-6px);
  border-color: #c99733;
  box-shadow: 0 12px 30px rgba(201,151,51,0.18);
}



.partner-fit-section {
    padding-top:90px;
}


.partner-fit-grid {
    margin-top:45px;
    gap:30px;
}


.partner-fit-card {

    background:#fbf7ed;

    border:1px solid rgba(201,151,51,0.25);

    border-radius:20px;

    padding:35px;

    transition:all .3s ease;

}


.partner-fit-card:hover {

    transform:translateY(-6px);

    border-color:#c99733;

    box-shadow:0 12px 30px rgba(201,151,51,0.18);

}


.partner-fit-card h3 {

    margin-bottom:22px;

    color:#111;

}


.partner-fit-card ul {

    margin:0;

    padding:0;

}


.partner-fit-card li {

    padding:13px 0;

    line-height:1.6;

    color:#444;

    border-bottom:1px solid rgba(201,151,51,0.12);

}


.partner-fit-card li:last-child {

    border-bottom:none;

}


.partner-fit-section .actions {

    margin-top:40px;

}



.jewellery-experience {


    padding:35px 0 80px;


    background:


    radial-gradient(
        circle at 85% 20%,
        rgba(201,151,51,.12),
        transparent 35%
    ),

    linear-gradient(
        180deg,
        #ffffff,
        #faf8f3
    );


}

.jewellery-content .eyebrow {
    margin-top:0;
    margin-bottom:12px;
}

.jewellery-content {
    margin-top:0;
}





.section-head.compact .eyebrow {

    font-size:16px;
    font-weight:800;
    letter-spacing:.16em;
    margin-bottom:18px;

}




.section-head.compact h2 {

    font-size:clamp(32px,3.2vw,44px);

    line-height:1.15;

    font-weight:750;

    letter-spacing:-0.8px;

    max-width:650px;

    color:#111;

}


.section-head.compact > div > p:last-child {

    margin-top:18px;

    max-width:600px;

    font-size:16px;

    line-height:1.7;

}



.jewellery-split {


    display:grid;


    grid-template-columns:
    0.9fr 1fr;


    gap:70px;


    align-items:center;


}







.jewellery-content h1 {


    max-width:620px;


    font-size:
    clamp(38px,4vw,54px);


    line-height:1.1;


    letter-spacing:-1px;


    color:#111;


}



.jewellery-content .lead {


    margin-top:24px;


    max-width:580px;


    font-size:18px;


    line-height:1.7;


    color:#596273;


}



.jewellery-content .actions {


    margin-top:35px;


}








.jewellery-product-card {


    overflow:hidden;


    background:#ffffff;


    border-radius:28px;


    border:1px solid rgba(201,151,51,.20);


    box-shadow:

    0 30px 80px rgba(0,0,0,.12);


    transition:.45s ease;


}



.jewellery-product-card:hover {


    transform:translateY(-10px);


    border-color:#c99733;


    box-shadow:

    0 40px 100px rgba(201,151,51,.25);


}








.jewellery-media {


    height:430px;


    overflow:hidden;


    background:#f5f5f5;


}



.jewellery-media img {


    width:100%;


    height:100%;


    object-fit:cover;


    transition:.6s ease;


}



.jewellery-product-card:hover
.jewellery-media img {


    transform:scale(1.05);


}








.jewellery-copy {


    padding:30px;


}



.product-tag {


    display:inline-block;


    padding:6px 14px;


    border-radius:50px;


    background:#fbf5e8;


    color:#9b701f;


    font-size:12px;


    font-weight:700;


    letter-spacing:.08em;


    text-transform:uppercase;


    margin-bottom:16px;


}



.jewellery-copy h3 {


    font-size:24px;


    line-height:1.3;


    color:#111;


    transition:.3s ease;


}



.jewellery-product-card:hover
.jewellery-copy h3 {


    color:#c99733;


}



.jewellery-copy p {


    margin-top:12px;


    color:#687386;


    line-height:1.6;


    font-size:15px;


}







@media(max-width:950px){


.jewellery-split {


    grid-template-columns:1fr;


    text-align:center;


}



.jewellery-content h1,
.jewellery-content .lead {


    margin-left:auto;

    margin-right:auto;


}



.jewellery-content .actions {


    justify-content:center;


}



.jewellery-product-card {


    max-width:650px;

    margin:auto;


}


}




@media(max-width:600px){


.jewellery-experience {


    padding:50px 0;


}



.jewellery-content h1 {


    font-size:34px;


}



.jewellery-media {


    height:320px;


}



.jewellery-content .actions {


    flex-direction:column;


}



.jewellery-content .btn {


    width:100%;


}


}
    .product-panel {
      overflow: hidden;
      border: 1px solid rgba(230, 233, 239, 0.95);
      border-radius: 8px;
      background: var(--white);
      box-shadow: var(--shadow-soft);
    }

    .panel-copy {
      padding: 22px;
    }

    .panel-copy p {
      margin-top: 8px;
      font-size: 14px;
    }

    .panel-media {
      min-height: 280px;
      background: #eef2f6;
    }

    .panel-media img {
    width:100%;
    height:100%;
    min-height:280px;
    object-fit:contain;
    padding:20px;
    background:#fafafa;
    transition:transform .5s ease;
}


.category-page .panel-media img,
.product-panel .panel-media img {

    width:100%;
    height:100%;
    min-height:0;
    object-fit:contain !important;
    object-position:center;
    transform:scale(1) !important;
    transform-origin:center;
}



.product-panel:hover .panel-media img {

    transform:scale(1) !important;

}


.category-page .panel-media {

    height:clamp(320px, 32vw, 430px);
    min-height:0;
    overflow:hidden;

}




.launch-section .timeline {

    display:grid;

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

    gap:20px;

    border:none;

    background:none;

    box-shadow:none;

    overflow:visible;

}



.launch-section .timeline-item {

    position:relative;

    padding:30px 25px;

    background:#ffffff;

    border:1px solid rgba(201,151,51,.18);

    border-radius:22px;

    min-height:250px;

    overflow:hidden;

    transition:.35s ease;

}



.launch-section .timeline-item:hover {

    transform:translateY(-8px);

    border-color:#c99733;

    box-shadow:
    0 25px 60px rgba(201,151,51,.18);

}



.launch-section .timeline-item span {

    display:flex;

    width:42px;

    height:42px;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#faf5e8;

    color:#c99733;

    font-size:14px;

    font-weight:750;

    margin-bottom:22px;

}



.launch-section .timeline-item h3 {

    font-size:21px;

    margin-bottom:12px;

    color:#111;

}



.launch-section .timeline-item p {

    font-size:15px;

    line-height:1.65;

    color:#667085;

}



.launch-section .timeline-item::after {

    content:"";

    position:absolute;

    bottom:0;

    left:0;

    width:0;

    height:3px;

    background:#c99733;

    transition:.35s ease;

}



.launch-section .timeline-item:hover::after {

    width:100%;

}



@media(max-width:1100px){

    .launch-section .timeline {

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

    }

}



@media(max-width:700px){

    .launch-section .timeline {

        grid-template-columns:1fr;

    }

}



.launch-heading {

    margin-bottom:50px;

}



.launch-heading .eyebrow {

    font-size:16px;

    font-weight:800;

    letter-spacing:.16em;

    color:var(--gold-dark);

    margin-bottom:18px;

}



.launch-heading h1 {

    max-width:700px;

    font-size:clamp(38px,3.8vw,52px);

    line-height:1.12;

    font-weight:750;

    letter-spacing:-1px;

    color:#111;

}



.launch-heading p:last-child {

    margin-top:20px;

    max-width:620px;

    font-size:17px;

    line-height:1.7;

    color:#596273;

}

   .commerce-section .support-list {
    display:grid;
    gap:18px;
}


.commerce-section .support-row {

    display:grid;

    grid-template-columns:220px 1fr;

    align-items:center;

    gap:35px;

    padding:28px 30px;

    background:#ffffff;

    border:1px solid rgba(201,151,51,.18);

    border-radius:20px;

    transition:.35s ease;

}


.commerce-section .support-row:hover {

    transform:translateY(-5px);

    border-color:#c99733;

    box-shadow:
    0 20px 45px rgba(201,151,51,.15);

}


.commerce-section .support-row strong {

    font-size:20px;

    font-weight:750;

    color:#111;

}


.commerce-section .support-row p {

    font-size:15px;

    line-height:1.7;

    color:#667085;

}

#pricing.section{
    padding-bottom:40px;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(5,minmax(210px,1fr));
    gap:18px;
    overflow-x:auto;
    padding:8px 4px 12px;
}

.price-card{
    position:relative;
    min-width:210px;
    padding:26px;
    background:#fff;
    border:1px solid #ebe6da;
    border-radius:18px;
    transition:
    transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease,
    background .35s ease;
}

.price-card:hover{
    transform:translateY(-8px);
    border-color:#c99733;
    background:#fffefb;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.price-card h3{
    margin-bottom:14px;
    font-size:22px;
    font-weight:700;
    color:#111;
    transition:.35s ease;
}

.price-card:hover h3{
    color:#c99733;
}

.price{
    margin:12px 0 6px;
    color:#111;
    font-size:30px;
    font-weight:760;
    line-height:1;
    transition:.35s ease;
}

.price-card:hover .price{
    color:#000;
}

.price span{
    font-size:13px;
    font-weight:600;
    color:#777;
}
.pricing-heading h1 {

    max-width:700px;

    font-size:clamp(38px,4vw,54px);

    line-height:1.1;

    font-weight:750;

    letter-spacing:-1px;

    color:#111;

}
.setup{
    min-height:38px;
    color:#777;
    font-size:13px;
    line-height:1.5;
}

.plan-fit{
    display:inline-flex;
    align-items:center;
    margin:18px 0;
    padding:7px 14px;
    border-radius:30px;
    background:#faf7ef;
    color:#b88625;
    font-size:12px;
    font-weight:650;
}

ul.clean{
    margin:0;
    padding:0;
    list-style:none;
}

ul.clean li{
    position:relative;
    padding:11px 0 11px 24px;
    color:#4b5563;
    font-size:14px;
    border-top:1px solid #f0ece3;
    transition:.3s ease;
}

.price-card:hover ul.clean li{
    color:#111;
}

ul.clean li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:11px;
    width:16px;
    height:16px;
    border-radius:50%;
    background:#f8f3e8;
    color:#c99733;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:10px;
    font-weight:700;
}

.standalone-pricing{
    margin-top:36px;
}

.pricing-notes{
    max-width:920px;
    margin:30px auto 0;
    color:#4b5563;
    font-size:14px;
    line-height:1.7;
    text-align:center;
}

.pricing-notes p{
    margin:0;
}

.pricing-notes p + p{
    margin-top:8px;
    color:#111;
    font-weight:650;
}



@media(max-width:1100px){

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

}



@media(max-width:700px){

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

.price-card{
    min-width:100%;
}

}



#pricing .actions{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}



#pricing .btn{

    min-height:52px;

    padding:0 30px;

    border-radius:30px;

    font-size:15px;

    font-weight:650;

    transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease,
    background .35s ease,
    color .35s ease;

}





#pricing .btn.gold{

    background:var(--gold);

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

    color:#1b1b1b;

    box-shadow:0 12px 28px rgba(201,151,51,.22);

}



#pricing .btn.gold:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(201,151,51,.32);

}





#pricing .btn.secondary{

    background:#fff;

    color:#222;

    border:1px solid rgba(201,151,51,.35);

    box-shadow:none;

}



#pricing .btn.secondary:hover{

    transform:translateY(-4px);

    border-color:var(--gold);

    color:var(--gold);

    box-shadow:0 15px 35px rgba(201,151,51,.15);

}





@media(max-width:768px){

#pricing .actions{

    flex-direction:column;

}

#pricing .btn{

    width:100%;

}


}



.faq {

    display:grid;

    gap:16px;

    max-width:900px;

}




details {

    position:relative;

    background:#ffffff;

    border:1px solid #ebe6da;

    border-radius:18px;

    overflow:hidden;

    transition:
    border-color .35s ease,
    box-shadow .35s ease,
    transform .35s ease;

}





details:hover {

    transform:translateY(-3px);

    border-color:rgba(201,151,51,.55);

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

}





summary {

    min-height:72px;

    display:flex;

    align-items:center;

    padding:0 28px;

    font-size:16px;

    font-weight:650;

    color:#171717;

    cursor:pointer;

    list-style:none;

    position:relative;

    transition:.3s ease;

}




summary::-webkit-details-marker {

    display:none;

}





summary::after {

    content:"+";

    position:absolute;

    right:25px;

    font-size:26px;

    font-weight:300;

    color:#c99733;

    transition:.35s ease;

}



details[open] summary::after {

    content:"−";

    transform:rotate(180deg);

}





details[open] summary {

    color:#c99733;

    background:#fffdf8;

}





details p {

    padding:0 55px 25px 28px;

    margin:0;

    color:#667085;

    font-size:15px;

    line-height:1.7;

    animation:faqOpen .35s ease;

}



@keyframes faqOpen {

    from{

        opacity:0;

        transform:translateY(-8px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}





.faq + .actions {

    margin-top:40px;

}



.faq + .actions .btn.secondary {


    min-height:50px;

    padding:0 30px;

    border-radius:30px;

    background:#fff;

    border:1px solid rgba(201,151,51,.35);

    color:#222;

    transition:.35s ease;

}



.faq + .actions .btn.secondary:hover {


    transform:translateY(-4px);

    color:#c99733;

    border-color:#c99733;

    box-shadow:
    0 15px 35px rgba(201,151,51,.15);

}





@media(max-width:600px){


summary{

    padding:0 20px;

    font-size:15px;

}


summary::after{

    right:18px;

}


details p{

    padding:0 20px 22px;

}


}


#contact {

    position:relative;

    overflow:hidden;

    background:
    radial-gradient(
        circle at 10% 20%,
        rgba(201,151,51,.10),
        transparent 35%
    ),
    linear-gradient(
        180deg,
        #ffffff,
        #faf7f0
    );

}





#contact::after {

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    right:-200px;

    bottom:-200px;

    background:
    radial-gradient(
        circle,
        rgba(201,151,51,.15),
        transparent 70%
    );

    pointer-events:none;

}



.contact-section {


    display:grid;

    grid-template-columns:
    .8fr 1fr;

    gap:90px;

    align-items:center;

}






.contact-section > div:first-child {


    position:relative;

}



.contact-section > div:first-child::before {


    content:"";

    width:80px;

    height:80px;

    border-radius:50%;


    position:absolute;

    left:-25px;

    top:-25px;


    background:

    rgba(201,151,51,.08);


}



.contact-section h2 {


    font-size:clamp(38px,4vw,54px);

    line-height:1.1;

    color:#111;

    position:relative;

    z-index:2;

}



.contact-section h2::after {


    content:"";

    display:block;

    margin-top:25px;

    width:90px;

    height:3px;

    background:

    linear-gradient(
        90deg,
        #c99733,
        transparent
    );

}






.contact-info-grid {


    background:

    rgba(255,255,255,.75);


    backdrop-filter:

    blur(18px);


    border-radius:28px;


    padding:35px;


    border:

    1px solid rgba(201,151,51,.20);


    box-shadow:

    0 30px 70px rgba(0,0,0,.10);


}






.contact-info-item {


    position:relative;


    display:grid;

    gap:8px;


    padding:25px 20px 25px 35px;


    border-bottom:

    1px solid rgba(0,0,0,.08);


    transition:

    transform .35s ease;


}



.contact-info-item:last-child {


    border-bottom:none;

}



.contact-info-item:hover {


    transform:

    translateX(8px);


}






.contact-info-item::before {


    content:"";


    position:absolute;


    left:0;


    top:50%;


    transform:

    translateY(-50%);


    width:3px;


    height:35px;


    background:

    #c99733;


    border-radius:10px;


    transition:.35s ease;


}



.contact-info-item:hover::before {


    height:70px;


}






.contact-info-item span {


    font-size:11px;


    letter-spacing:.18em;


    text-transform:uppercase;


    color:#a27b2d;


    font-weight:700;


}






.contact-info-item a {


    font-size:18px;


    font-weight:600;


    color:#151515;


    text-decoration:none;


    transition:.3s ease;


}



.contact-info-item a:hover {


    color:#c99733;


}






@media(max-width:940px){


.contact-section {


    grid-template-columns:1fr;


    gap:45px;

}


}



@media(max-width:600px){


.contact-info-grid {


    padding:20px;

    border-radius:20px;


}



.contact-info-item a {


    font-size:15px;


}

}
    .About-card {
      display: grid;
      grid-template-columns: 300px minmax(0, 1fr);
      gap: 54px;
      align-items: center;
    }

    .About-card img {
      width: 300px;
      height: 300px;
      border-radius: 8px;
      object-fit: cover;
      box-shadow: var(--shadow-soft);
    }

    .legal {
      max-width: 860px;
    }

    .legal h1 {
      font-size: clamp(34px, 4vw, 46px);
    }

    .legal h2 {
      margin-top: 34px;
      font-size: 24px;
    }

    .legal p {
      margin-top: 12px;
    }

    .legal a {
      color: var(--gold-dark);
      font-weight: 650;
    }




.site-footer {

    position:relative;

    padding:70px 0 35px;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #faf7ef 100%
    );

    border-top:1px solid rgba(201,151,51,.18);

    overflow:hidden;

}




.site-footer::after {

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    right:-250px;

    bottom:-250px;

    background:

    radial-gradient(
        circle,
        rgba(201,151,51,.14),
        transparent 70%
    );

}






.footer-grid {

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:

    1fr 280px;

    gap:80px;

    align-items:start;

}






.footer-brand {

    display:flex;

    flex-direction:column;

    gap:18px;

}



.footer-brand a:first-child {


    font-size:28px;

    font-weight:750;

    letter-spacing:-.5px;

    text-decoration:none;

    color:#111;


}



.footer-brand a:first-child:hover {


    color:#c99733;


}



.footer-brand a:last-child {


    max-width:350px;

    font-size:14px;

    line-height:1.8;

    color:#777;

    text-decoration:none;


}







.footer-links {


    display:flex;

    flex-direction:column;

    gap:14px;


}




.footer-links a {


    position:relative;

    width:max-content;

    color:#444;

    text-decoration:none;

    font-size:14px;

    font-weight:600;

    transition:.3s ease;


}




.footer-links a:hover {


    color:#c99733;

    transform:translateX(6px);


}




.footer-links a::before {


    content:"";

    position:absolute;

    left:-18px;

    top:50%;

    width:0;

    height:1px;

    background:#c99733;

    transition:.3s ease;


}



.footer-links a:hover::before {


    width:10px;


}








.footer-grid > p {


    grid-column:1 / -1;


    margin-top:55px;


    padding-top:25px;


    border-top:1px solid rgba(0,0,0,.08);


    text-align:center;


    color:#8a8a8a;


    font-size:13px;


}







@media(max-width:900px){


.footer-grid {


    grid-template-columns:1fr;

    gap:40px;


}


.footer-links {


    gap:16px;

}


}






@media(max-width:600px){


.site-footer {


    padding:50px 0 30px;

}


.footer-brand a:first-child {


    font-size:24px;

}


}

    @media (max-width: 940px) {
      .menu-button {
        display: inline-grid;
        place-items: center;
      }

      .nav {
        flex-wrap: wrap;
        width: min(100% - 32px, 1200px);
      }

      .nav-links {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding-bottom: 14px;
        gap: 2px;
      }

      .nav-links.open {
        display: flex;
      }

      .nav-links a {
        justify-content: flex-start;
      }

      .nav-dropdown {
        width: 100%;
      }

      .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
      }

      .nav-submenu {
        position: static;
        width: 100%;
        margin: 2px 0 6px;
        padding: 6px 6px 6px 16px;
        border: 0;
        border-left: 2px solid rgba(201, 151, 51, 0.35);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
      }

      .nav-dropdown:hover .nav-submenu {
        display: none;
      }

      .nav-dropdown.open .nav-submenu {
        display: grid;
      }

      .hero-grid,
      .section-head,
      .split,
      .contact-section,
      .About-card {
        grid-template-columns: 1fr;
      }

      .hero-media,
      .trust-row {
        grid-column: auto;
        grid-row: auto;
      }

      .hero {
        min-height: auto;
      }

      .hero-media,
      .product-showcase {
        min-height: 0;
      }

      .grid.three,
      .grid.two {
        grid-template-columns: 1fr;
      }

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

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

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

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

      .footer-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 560px) {
      .section {
        padding: 72px 0;
      }

      .trust-row {
        grid-template-columns: 1fr;
      }

      .metric {
        padding: 0;
        border-right: 0;
      }

      .About-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
      }

      .hero {
        padding: 56px 0 46px;
      }

      h1 {
        font-size: 32px;
      }

      .hero-actions,
      .actions {
        align-items: stretch;
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .commerce-section .support-row {
        grid-template-columns: 1fr;
        gap: 8px;
      }

    }


.actions {
    margin-top:32px;
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}


.actions .btn {

    min-height:50px;

    padding:0 28px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    border-radius:30px;

    text-decoration:none;

    font-size:15px;

    font-weight:650;

    letter-spacing:.2px;

    transition:
    transform .35s ease,
    box-shadow .35s ease,
    background .35s ease,
    border-color .35s ease,
    color .35s ease;

}





.actions .btn.gold {

    background:linear-gradient(
        135deg,
        #d4af37,
        #c99733
    );

    border:1px solid #c99733;

    color:#17120a;

    box-shadow:
    0 12px 30px rgba(201,151,51,.25);

}


.actions .btn.gold:hover {

    transform:translateY(-4px);

    box-shadow:
    0 18px 45px rgba(201,151,51,.35);

}





.actions .btn.secondary {

    background:#ffffff;

    border:1px solid rgba(201,151,51,.35);

    color:#222;

}


.actions .btn.secondary:hover {

    transform:translateY(-4px);

    border-color:#c99733;

    color:#c99733;

    box-shadow:
    0 15px 35px rgba(201,151,51,.15);

}





@media(max-width:600px){

    .actions {

        flex-direction:column;

    }


    .actions .btn {

        width:100%;

    }

}


.jewellery-category-hero {
    padding-top:60px;
}


.jewellery-product-panel {

    border-radius:24px;

    overflow:hidden;

    transition:.4s ease;

}


.jewellery-product-panel:hover {

    transform:translateY(-8px);

    box-shadow:0 30px 70px rgba(0,0,0,.12);

}



.interactive-card {

    position:relative;

    overflow:hidden;

    transition:.35s ease;

}



.interactive-card:hover {

    transform:translateY(-8px);

    border-color:#c99733;

    box-shadow:
    0 20px 45px rgba(201,151,51,.15);

}



.interactive-card h3 {

    transition:.3s ease;

}



.interactive-card:hover h3 {

    color:#c99733;

}





.category-page .section:first-child {

    padding-top:35px;

    padding-bottom:55px;

}




.category-page .split {

    display:grid;

    grid-template-columns:
    0.95fr 1fr;

    gap:55px;

    align-items:center;

}




.category-page h1 {

    max-width:650px;

    font-size:clamp(38px,4vw,52px);

    line-height:1.12;

    letter-spacing:-1px;

    font-weight:750;

    color:#111;

}




.category-page .lead {

    margin-top:18px;

    max-width:560px;

    font-size:17px;

    line-height:1.7;

}




.category-page .actions {

    margin-top:28px;

    display:flex;

    gap:14px;

    flex-wrap:wrap;

}






.category-page .product-panel {

    border-radius:24px;

    overflow:hidden;

    background:#ffffff;

    border:1px solid rgba(201,151,51,.18);

    box-shadow:
    0 25px 60px rgba(0,0,0,.10);

    transition:
    transform .45s ease,
    box-shadow .45s ease,
    border-color .45s ease;

}





.category-page .product-panel:hover {

    transform:translateY(-8px);

    border-color:#c99733;

    box-shadow:
    0 35px 80px rgba(201,151,51,.25);

}






.category-page .panel-media {

    height:430px;

    overflow:hidden;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #faf8f3
    );

    display:flex;

    align-items:center;

    justify-content:center;

}





.category-page .panel-media img {

    width:100%;

    height:100%;

    object-fit:contain !important;

    object-position:center;

    padding:20px;

    transform:scale(1);

    transition:
    transform .5s ease,
    filter .5s ease;

}

.category-page .chain-image {

    object-fit:contain !important;

    padding:15px;

    transform:scale(1);

}





.category-page .product-panel:hover .panel-media img {

    transform:scale(1.08);

    filter:saturate(1.05);

}






.category-page .panel-copy {

    padding:25px;

}



.category-page .panel-copy h3 {

    font-size:22px;

    line-height:1.3;

    margin-bottom:10px;

    color:#111;

    transition:.3s ease;

}





.category-page .product-panel:hover .panel-copy h3 {

    color:#c99733;

}



.category-page .panel-copy p {

    font-size:14px;

    line-height:1.7;

}






.category-page .category-switcher {

    margin-top:20px;

    margin-bottom:30px;

}






@media(max-width:950px){


.category-page .split {

    grid-template-columns:1fr;

    text-align:center;

}



.category-page .lead {

    margin-left:auto;

    margin-right:auto;

}



.category-page .actions {

    justify-content:center;

}



.category-page .panel-media {

    height:350px;

}


}



@media(max-width:600px){


.category-page h1 {

    font-size:34px;

}



.category-page .panel-media {

    height:300px;

}


}




.section .split h1 {

    max-width:650px;

    font-size:clamp(38px,4vw,52px);

    line-height:1.12;

    font-weight:750;

    letter-spacing:-1px;

    color:#111;

}


.section .split .lead {

    max-width:580px;

    margin-top:20px;

    font-size:17px;

    line-height:1.75;

    color:#596273;

}





.section .product-panel {

    border-radius:24px;

    overflow:hidden;

    background:#fff;

    border:1px solid rgba(201,151,51,.18);

    box-shadow:
    0 25px 70px rgba(0,0,0,.12);

    transition:.45s ease;

}



.section .product-panel:hover {

    transform:translateY(-8px);

    border-color:#c99733;

    box-shadow:
    0 35px 90px rgba(201,151,51,.25);

}





.section .panel-media {

    height:430px;

    background:
    linear-gradient(
    180deg,
    #ffffff,
    #faf8f3
    );

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}



.section .panel-media img {

    width:100%;

    height:100%;

    object-fit:contain;

    padding:20px;

    transition:.6s ease;

}



.section .product-panel:hover img {

    transform:scale(1.06);

}





.section .panel-copy {

    padding:28px;

}



.section .panel-copy h3 {

    font-size:23px;

    font-weight:750;

    color:#111;

    margin-bottom:12px;

}



.section .panel-copy p {

    font-size:15px;

    line-height:1.7;

    color:#667085;

}





@media(max-width:950px){

.section .split {

    grid-template-columns:1fr;

    text-align:center;

}


.section .split .lead {

    margin-left:auto;

    margin-right:auto;

}


.section .actions {

    justify-content:center;

}

}


h1,
.hero h1,
.section .split h1,
.pricing-heading h1,
.launch-heading h1,
.jewellery-content h1,
.category-page h1,
.legal h1 {
  margin: 0;
  max-width: 760px;
  color: var(--ink);
  font-family: inherit;
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-transform: none;
}

h2,
.contact-section h2,
.legal h2 {
  color: var(--ink);
  font-family: inherit;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 730;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-transform: none;
}

h3,
.section .panel-copy h3,
.price-card h3 {
  font-family: inherit;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-transform: none;
}

.eyebrow,
.product-tag,
.partner-tag,
.kicker {
  font-family: inherit;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lead,
.section .split .lead {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.7;
}

.section {
  padding: 76px 0;
}


.luxury-card.in-view,
.jewellery-product-card.in-view,
.product-panel.in-view,
.timeline-item.in-view,
.proof-panel.in-view,
.partner-fit-card.in-view,
.contact-info-item.in-view {
  transform: translateY(-6px);
  border-color: rgba(201, 151, 51, 0.72);
  box-shadow: 0 18px 42px rgba(17, 19, 24, 0.1);
}

.luxury-card.in-view::before {
  transform: scaleX(1);
}

.luxury-card.in-view h3,
.partner-fit-card.in-view h3,
.product-panel.in-view h3 {
  color: var(--gold-dark);
}

.product-panel.in-view img,
.jewellery-product-card.in-view img {
  transform: scale(1.035);
}


.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-links a,
.contact-info-item a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-links a {
  min-height: 36px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: #4f5b6d;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.social-links svg,
.contact-info-item svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  padding: 34px 0 18px;
}

.site-footer::after {
  width: 280px;
  height: 280px;
}

.footer-grid {
  grid-template-columns: minmax(280px, 0.9fr) minmax(400px, 1.25fr);
  gap: 24px 64px;
  align-items: center;
}

.footer-brand {
  gap: 10px;
}

.footer-brand > a:first-child {
  font-size: 21px;
}

.footer-brand > a:nth-child(2) {
  max-width: 540px;
  font-size: 13px;
  line-height: 1.55;
}

.footer-brand .social-links a {
  max-width: none;
  color: #4f5b6d;
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
}

.footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.footer-links a {
  font-size: 13px;
}

.footer-grid > p {
  margin-top: 4px;
  padding-top: 14px;
  font-size: 12px;
}

.contact-method {
  color: inherit;
  text-decoration: none;
}

.contact-method svg {
  grid-row: 1 / span 2;
  width: 24px;
  height: 24px;
  margin-right: 6px;
  color: var(--gold-dark);
}

.contact-method span,
.contact-method strong {
  grid-column: 2;
}

.contact-method strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.contact-address {
  grid-column: 1 / -1;
}

.contact-section > *,
.contact-info-grid,
.contact-info-item {
  min-width: 0;
}

.contact-address a {
  overflow-wrap: anywhere;
}

.legal strong,
.legal a {
  overflow-wrap: anywhere;
}

main > .page > .section:first-child {
  padding-top: 64px;
}

.hero-product-image,
.About-card img {
  object-fit: cover;
  object-position: center;
}

.category-page .panel-media img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover !important;
  object-position: center;
}

.section .panel-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  object-fit: cover !important;
  object-position: center;
}

.jewellery-slider,
.jewellery-slides,
.jewellery-slide {
  width: 100%;
  height: 100%;
}

.jewellery-slider {
  position: relative;
  overflow: hidden;
}

.jewellery-slides {
  display: flex;
  width: 200%;
  animation: jewellery-slide 10s ease-in-out infinite;
}

.jewellery-slide {
  flex: 0 0 50%;
  margin: 0;
  overflow: hidden;
}

.jewellery-media .jewellery-slide img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center;
}

.slider-indicators {
  position: absolute;
  right: 18px;
  bottom: 16px;
  display: flex;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(17, 19, 24, 0.48);
}

.slider-indicators span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.slider-indicators span:first-child {
  animation: jewellery-indicator-one 10s ease-in-out infinite;
}

.slider-indicators span:last-child {
  animation: jewellery-indicator-two 10s ease-in-out infinite;
}

.jewellery-slider:hover .jewellery-slides,
.jewellery-slider:hover .slider-indicators span {
  animation-play-state: paused;
}

@keyframes jewellery-slide {
  0%, 44% { transform: translateX(0); }
  52%, 94% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes jewellery-indicator-one {
  0%, 44%, 100% { background: #fff; }
  52%, 94% { background: rgba(255, 255, 255, 0.45); }
}

@keyframes jewellery-indicator-two {
  0%, 44%, 100% { background: rgba(255, 255, 255, 0.45); }
  52%, 94% { background: #fff; }
}

@keyframes mobile-highlights {
  0%, 20% { transform: translateX(0); }
  27%, 47% { transform: translateX(calc((100vw - 36px) * -1)); }
  54%, 74% { transform: translateX(calc((100vw - 36px) * -2)); }
  81%, 100% { transform: translateX(calc((100vw - 36px) * -3)); }
}

@media (max-width: 940px) {
  .section {
    padding: 62px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  h1,
  .hero h1,
  .section .split h1,
  .pricing-heading h1,
  .launch-heading h1,
  .jewellery-content h1,
  .category-page h1,
  .legal h1 {
    font-size: clamp(32px, 10vw, 40px);
    line-height: 1.1;
    letter-spacing: -0.03em;
  }

  h2,
  .contact-section h2,
  .legal h2 {
    font-size: 28px;
  }

  .lead,
  .section .split .lead {
    font-size: 16px;
    line-height: 1.65;
  }

  main > .page > .section:first-child {
    padding-top: 56px;
  }

  .hero-highlights {
    display: block;
    width: 100%;
    max-width: calc(100vw - 48px);
    margin-right: 0;
    padding: 4px 0 14px;
    overflow: hidden;
  }

  .hero-highlights-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: mobile-highlights 15s ease-in-out infinite;
  }

  .highlight-item {
    flex: 0 0 calc(100vw - 48px);
    min-height: 132px;
    padding: 20px;
  }

  .highlight-clone {
    display: block;
  }

  .hero-content {
    min-width: 0;
  }

  .highlight-item strong {
    font-size: 22px;
  }

  .site-footer {
    padding: 28px 0 16px;
  }

  .footer-links {
    gap: 7px 14px;
  }

  .footer-grid > p {
    margin-top: 0;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .jewellery-slides,
  .slider-indicators span {
    animation: none !important;
  }

  .hero-highlights {
    max-width: none;
    overflow: visible;
  }

  .hero-highlights-track {
    width: 100%;
    display: grid;
    animation: none !important;
  }

  .highlight-item {
    width: 100%;
  }

  .highlight-clone {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 600px) {
  .hero-highlights-track {
    grid-template-columns: 1fr;
  }
}

/* Legal pages and grouped footer share the existing site palette and type scale. */
.legal-section {
  padding-top: 72px;
}

.legal {
  max-width: 800px;
}

.legal > h1 {
  margin-bottom: 14px;
}

.legal .legal-updated {
  margin: 0 0 42px;
  color: var(--muted);
  font-size: 14px;
}

.legal h2 {
  margin: 44px 0 14px;
  font-size: clamp(24px, 2.4vw, 32px);
}

.legal h3 {
  margin: 28px 0 10px;
}

.legal p,
.legal li {
  color: #4f5b6d;
  font-size: 16px;
  line-height: 1.75;
}

.legal p {
  margin: 0 0 16px;
}

.legal ul {
  margin: 8px 0 22px;
  padding-left: 24px;
}

.legal li + li {
  margin-top: 7px;
}

.legal hr {
  margin: 36px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.legal-related {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-related h2 {
  margin-top: 0;
  font-size: 22px;
}

.legal-related div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.legal-related a {
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 24px 34px;
  align-items: start;
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-link-group h2 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.footer-link-group a {
  width: fit-content;
  color: #4f5b6d;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
}

.footer-link-group a:hover {
  color: var(--gold-dark);
  transform: none;
}

.footer-link-group a::before {
  display: none;
}

@media (max-width: 940px) {
  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .legal-section {
    padding-top: 52px;
  }

  .legal .legal-updated {
    margin-bottom: 32px;
  }

  .legal h2 {
    margin-top: 36px;
    font-size: 24px;
  }

  .legal p,
  .legal li {
    font-size: 15px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 26px 20px;
  }
}
