:root {
  --ink: #12110f;
  --ink-soft: #38342e;
  --paper: #f4f0e8;
  --paper-light: #fbfaf6;
  --gold: #b69257;
  --gold-light: #d9c49f;
  --line: rgba(18, 17, 15, .16);
  --white-line: rgba(255, 255, 255, .18);
  --max: 1240px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  overscroll-behavior-x: none;
}
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  overscroll-behavior-x: none;
  touch-action: pan-y pinch-zoom;
  background: var(--paper-light);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; }
img { height: auto; image-rendering: auto; }
main, header, footer, section { max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
body.menu-open { overflow: hidden; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: -5rem;
  padding: .75rem 1rem;
  background: #fff;
  color: #000;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: .45rem 1rem;
  background: var(--ink);
  color: #fff;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.announcement span[aria-hidden] { color: var(--gold); font-size: .5rem; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 max(24px, calc((100% - var(--max)) / 2));
  background: rgba(251, 250, 246, .86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 35px rgba(31, 26, 18, .06);
}
.brand { display: inline-flex; align-items: center; }
.brand img, .footer-brand img {
  width: 112px;
  height: auto;
  mix-blend-mode: multiply;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
}
.site-nav a {
  text-decoration: none;
  font-size: .77rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-nav a:not(.nav-cta) { position: relative; }
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.4rem;
  height: 1px;
  background: var(--ink);
  transition: right .25s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.nav-cta {
  padding: .72rem 1.1rem;
  border: 1px solid var(--ink);
  transition: background .2s ease, color .2s ease;
}
.nav-cta:hover, .nav-cta:focus-visible { background: var(--ink); color: #fff; }
.menu-toggle { display: none; }

.hero {
  width: 100%;
  min-height: calc(100vh - 116px);
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: stretch;
  overflow: hidden;
}
.hero > *,
.product-grid > *,
.story > *,
.authenticity > *,
.site-footer > * { min-width: 0; }
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 6vw, 6.5rem);
}
.eyebrow {
  margin: 0 0 1.35rem;
  color: #80653d;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; max-width: 100%; overflow-wrap: break-word; font-weight: 400; }
h1, h2 {
  font-family: var(--serif);
  line-height: .98;
  letter-spacing: -.045em;
}
h1 { margin-bottom: 1.8rem; font-size: clamp(3.6rem, 7vw, 7rem); }
h1 em { color: #78613e; font-weight: 400; }
.hero-lede {
  max-width: 620px;
  margin: 0 0 2rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.25rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: #fff; }
.button-primary:hover, .button-primary:focus-visible { background: #2a2722; }
.button-dark { width: 100%; background: var(--ink); color: #fff; }
.text-link {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  padding: .5rem 0;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span, .text-link:focus-visible span { transform: translate(3px, 3px); }
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: clamp(3rem, 7vh, 6rem) 0 0;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}
.hero-facts div { min-width: 0; }
.hero-facts dt {
  margin-bottom: .25rem;
  color: #7c7469;
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-facts dd { margin: 0; font-family: var(--serif); font-size: 1rem; }

.hero-visual {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  background: #ebe5d9;
  overflow: hidden;
}
.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(111, 86, 47, .18);
  border-radius: 50%;
}
.hero-visual::before { width: 76%; aspect-ratio: 1; }
.hero-visual::after { width: 96%; aspect-ratio: 1; }
.hero-halo {
  position: absolute;
  z-index: -1;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.9) 0 35%, rgba(255,255,255,.2) 62%, transparent 71%);
}
.hero-visual > img {
  width: min(78%, 620px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  mix-blend-mode: multiply;
  backface-visibility: hidden;
  filter: contrast(1.1) brightness(.99) drop-shadow(0 30px 34px rgba(66, 55, 37, .12));
  transform: rotate(-8deg) scale(1.03);
}
.vertical-word {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
  color: rgba(18,17,15,.35);
  font-size: .65rem;
  letter-spacing: .5em;
}
.hero-caption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: .85rem 1rem;
  background: rgba(251, 250, 246, .76);
  backdrop-filter: blur(10px);
}
.hero-caption span { color: #80653d; font-family: var(--serif); font-size: 1.6rem; line-height: 1; }
.hero-caption p { margin: 0; font-size: .72rem; line-height: 1.4; text-transform: uppercase; letter-spacing: .08em; }

.intro-band {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 7vw, 8rem);
  padding: 2.3rem 1.5rem;
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.intro-band p { margin: 0; font-family: var(--serif); font-size: clamp(1.25rem, 2.5vw, 2rem); font-style: italic; }
.intro-band p + p { color: var(--gold-light); }

.section { padding: clamp(5rem, 10vw, 9rem) max(24px, calc((100% - var(--max)) / 2)); }
.section-heading {
  max-width: 780px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-heading h2, .story h2, .authenticity h2, .cta-section h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6vw, 6rem);
}
.section-heading > p:last-child { max-width: 620px; color: var(--ink-soft); font-size: 1.05rem; }

.collection { background: var(--paper); }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--paper-light);
  border: 1px solid var(--line);
}
.product-card-featured { background: #fff; }
.product-image-wrap {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #ede8df;
  overflow: hidden;
}
.product-card:nth-child(2) .product-image-wrap { background: #e9e4da; }
.product-image-wrap::after {
  content: "";
  position: absolute;
  width: 66%;
  aspect-ratio: 1;
  border: 1px solid rgba(115,90,51,.2);
  border-radius: 50%;
}
.product-image-wrap img {
  position: relative;
  z-index: 1;
  width: min(82%, 480px);
  aspect-ratio: 1;
  object-fit: contain;
  mix-blend-mode: multiply;
  backface-visibility: hidden;
  filter: contrast(1.09) brightness(.99);
  transition: transform .45s ease;
}
.product-card:hover .product-image-wrap img { transform: scale(1.025); }
.product-image-wide img { width: 92%; }
.product-badge {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  padding: .45rem .65rem;
  background: var(--paper-light);
  font-size: .6rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-content { display: flex; flex-direction: column; padding: clamp(1.5rem, 3vw, 2.5rem); }
.product-kicker { margin: 0 0 .6rem; color: #80653d; font-size: .66rem; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.product-content h3 { margin-bottom: 1rem; font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.2rem); line-height: 1; }
.product-description { min-height: 3.2em; margin: 0 0 1.5rem; color: var(--ink-soft); }
.product-specs { margin: 0 0 1.8rem; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.product-specs li { display: flex; justify-content: space-between; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: .78rem; }
.product-specs span { color: #6f695f; }
.product-specs strong { text-align: right; font-weight: 650; }
.product-content .button { margin-top: auto; }
.price-note { max-width: 760px; margin: 1.35rem 0 0; color: #756f65; font-size: .74rem; }

.story {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 760px;
  background: var(--paper-light);
}
.story-image { min-height: 650px; overflow: hidden; background: #efebe3; }
.story-image img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; }
.story-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(4rem, 8vw, 8rem); }
.story-copy h2 { max-width: 680px; }
.story-copy > p:not(.eyebrow) { max-width: 620px; color: var(--ink-soft); }
.large-copy { font-family: var(--serif); font-size: clamp(1.45rem, 2.5vw, 2.1rem); line-height: 1.35; color: var(--ink) !important; }
.signature-block { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; }
.signature-line { width: 56px; height: 1px; background: var(--gold); }
.signature-block p { margin: 0; font-size: .8rem; line-height: 1.5; }

.inscriptions { background: #efe9df; }
.inscription-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: rgba(18,17,15,.18); border: 1px solid rgba(18,17,15,.18); }
.inscription-card { position: relative; min-height: 330px; padding: clamp(2rem, 4vw, 4rem); background: var(--paper-light); overflow: hidden; }
.inscription-number { position: absolute; right: 1.5rem; top: 1.25rem; color: var(--gold); font-family: var(--serif); font-size: 1.3rem; }
.inscription-card .arabic { margin: 0 0 2.5rem; font-family: "Noto Naskh Arabic", "Geeza Pro", Tahoma, serif; font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1.65; }
.inscription-card h3 { margin-bottom: .8rem; font-family: var(--serif); font-size: 1.55rem; }
.inscription-card > p:last-child { max-width: 470px; margin-bottom: 0; color: var(--ink-soft); }

.authenticity {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(5rem, 10vw, 9rem) max(24px, calc((100% - var(--max)) / 2));
  background: var(--ink);
  color: #fff;
}
.authenticity .eyebrow { color: var(--gold-light); }
.auth-copy p:not(.eyebrow) { max-width: 530px; color: rgba(255,255,255,.7); }
.text-link-light { color: #fff; margin-top: 1rem; }
.auth-gallery { display: grid; grid-template-columns: 1fr 86px; gap: 1rem; min-width: 0; }
.gallery-main { margin: 0; min-width: 0; }
.gallery-main img { width: 100%; aspect-ratio: 1.15 / 1; object-fit: contain; background: #f6f3ed; }
.gallery-main figcaption { margin-top: .75rem; color: rgba(255,255,255,.6); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.gallery-thumbs { display: flex; min-width: 0; flex-direction: column; gap: .75rem; }
.gallery-thumb { min-width: 0; padding: 0; border: 1px solid transparent; background: none; cursor: pointer; opacity: .62; transition: opacity .2s ease, border-color .2s ease; }
.gallery-thumb img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #fff; }
.gallery-thumb:hover, .gallery-thumb:focus-visible, .gallery-thumb.is-active { opacity: 1; border-color: var(--gold-light); }

.cta-section {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 6rem 1.5rem;
  text-align: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(192,159,105,.22), transparent 34%),
    linear-gradient(rgba(244,240,232,.92), rgba(244,240,232,.96)),
    url("assets/sterling-pendant.webp") center/cover no-repeat;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  width: min(68vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(130,100,54,.22);
  border-radius: 50%;
}
.cta-inner { position: relative; max-width: 800px; }
.cta-section h2 { margin-bottom: 1.5rem; }
.cta-section p:not(.eyebrow) { max-width: 560px; margin: 0 auto 2rem; color: var(--ink-soft); }

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr .7fr 1fr;
  gap: 3rem;
  padding: 4rem max(24px, calc((100% - var(--max)) / 2));
  background: #0b0a09;
  color: #fff;
}
.footer-brand img { filter: invert(1); mix-blend-mode: screen; }
.footer-brand p { max-width: 310px; margin: 1rem 0 0; color: rgba(255,255,255,.6); }
.footer-links { display: flex; flex-direction: column; gap: .7rem; }
.footer-links a { color: rgba(255,255,255,.72); text-decoration: none; font-size: .8rem; }
.footer-links a:hover, .footer-links a:focus-visible { color: #fff; }
.footer-meta { text-align: right; align-self: end; color: rgba(255,255,255,.46); font-size: .7rem; }
.footer-meta p { margin: .3rem 0; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

@media (max-width: 980px) {
  .announcement span:nth-of-type(3), .announcement span:nth-of-type(4), .announcement span:nth-of-type(5) { display: none; }
  .menu-toggle {
    position: relative;
    z-index: 102;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 23px; height: 1px; background: var(--ink); transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.4rem;
    background: var(--paper-light);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-nav a { font-family: var(--serif); font-size: 2rem; font-weight: 400; letter-spacing: -.02em; text-transform: none; }
  .site-nav .nav-cta { margin-top: 1rem; font-family: var(--sans); font-size: .75rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { min-height: 640px; }
  .hero-visual { min-height: 620px; }
  .product-grid, .story { grid-template-columns: 1fr; }
  .story-image { min-height: 520px; }
  .authenticity { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-meta { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 680px) {
  .announcement { gap: .6rem; font-size: .58rem; letter-spacing: .11em; }
  .site-header { min-height: 70px; padding-inline: 20px; }
  .brand img { width: 96px; }
  .hero-copy { min-height: auto; padding: 4.5rem 1.35rem 3.2rem; }
  h1 { font-size: clamp(3.05rem, 16.5vw, 5rem); overflow-wrap: anywhere; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-facts { grid-template-columns: 1fr; gap: .7rem; }
  .hero-facts div { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: .7rem; border-bottom: 1px solid var(--line); }
  .hero-facts dt { margin: 0; }
  .hero-facts dd { text-align: right; }
  .hero-visual { min-height: 500px; }
  .hero-visual > img { width: 92%; }
  .vertical-word { display: none; }
  .intro-band { align-items: center; flex-direction: column; gap: .4rem; padding: 1.5rem 1rem; }
  .section { padding-inline: 20px; }
  .section-heading h2, .story h2, .authenticity h2, .cta-section h2 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .product-image-wrap { min-height: 360px; }
  .product-specs li { align-items: flex-start; flex-direction: column; gap: .2rem; }
  .product-specs strong { text-align: left; }
  .story-image { min-height: 390px; }
  .story-copy { padding: 4.5rem 1.35rem; }
  .inscription-grid { grid-template-columns: 1fr; }
  .inscription-card { min-height: 290px; }
  .authenticity { padding-inline: 20px; }
  .auth-gallery { grid-template-columns: 1fr; }
  .gallery-thumbs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .5rem;
  }
  .gallery-thumb { width: auto; }
  .site-footer { grid-template-columns: 1fr; padding-inline: 20px; }
  .footer-meta { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


@supports not (overflow: clip) {
  html, body { overflow-x: hidden; }
}
