:root {
  --white-color: #ffffff;
  --black-color: #202020;
  --primary-color: #2C2C2C;
  --secondary-color: #6B6B6B;
  --accent-color: #D4AF37;
  --gray-color: #FAFAFA;
  --gray2-color: #A7A7A7;
  --gray3-color: #E7E7E7;
  --gray4-color: #F0E3D8;
  --gray5-color: #FEFAF5;
  --gray6-color: #FAF4F4;
  --error-color: #DC3545;
  --success-color: #28A745;
  --border-color: #FEF2E8;
  --primary-font: "Playfair Display", serif;
  --secondary-font: "Inter", sans-serif;

  --accent-dark-oygold: #A8871F;
  --accent-soft-oygold: rgba(212, 175, 55, .14);
  --radius-oygold: 6px;
  --radius-lg-oygold: 18px;
  --shadow-oygold: 0 24px 60px rgba(32, 32, 32, .08);
  --shadow-sm-oygold: 0 8px 24px rgba(32, 32, 32, .06);
  --ease-oygold: cubic-bezier(.22, .61, .36, 1);
  --header-h-oygold: 84px;
}

/* ================= Base ================= */
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h-oygold) + 8px); }
body {
  font-family: var(--secondary-font);
  font-size: 15px;
  line-height: 1.75;
  color: var(--secondary-color);
  background: var(--white-color);
  /* hidden is the fallback; clip does not turn body into a scroll container,
     so the sticky header keeps working relative to the viewport */
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--primary-font); color: var(--black-color); font-weight: 400; letter-spacing: -.01em; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--accent-dark-oygold); }
a { color: var(--primary-color); text-decoration: none; transition: color .3s; }
a:hover { color: var(--accent-dark-oygold); }
img { max-width: 100%; display: block; }
::selection { background: var(--accent-color); color: var(--white-color); }
:focus-visible { outline: 2px solid var(--accent-color); outline-offset: 3px; }
main { display: block; }

.skip-link-oygold {
  position: absolute; left: 12px; top: -60px; z-index: 2000;
  background: var(--black-color); color: var(--white-color); padding: 10px 16px;
}
.skip-link-oygold:focus { top: 12px; color: var(--white-color); }

.section-oygold { padding: 120px 0; position: relative; }
.eyebrow-oygold {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent-dark-oygold); margin-bottom: 18px;
}
.eyebrow-oygold::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.eyebrow-lines-oygold::after { content: ""; width: 34px; height: 1px; background: currentColor; }
.section-head-oygold { margin-bottom: 56px; }
.section-title-oygold {
  font-size: clamp(32px, 4vw, 54px); line-height: 1.12; margin-bottom: 0; text-align: center;
}
.section-sub-oygold { max-width: 600px; margin: 18px auto 0; }

/* ================= Buttons ================= */
.btn-dark-oygold, .btn-outline-oygold, .btn-gold-oygold {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 16px 34px; font-size: 12px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  border-radius: 50px; border: 1px solid var(--black-color); cursor: pointer;
  transition: color .45s var(--ease-oygold), border-color .45s;
}
.btn-dark-oygold::before, .btn-outline-oygold::before, .btn-gold-oygold::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  transform: translateY(101%); transition: transform .45s var(--ease-oygold);
}
.btn-dark-oygold:hover::before, .btn-outline-oygold:hover::before, .btn-gold-oygold:hover::before { transform: none; }
.btn-dark-oygold i, .btn-outline-oygold i, .btn-gold-oygold i { transition: transform .35s; }
.btn-dark-oygold:hover i, .btn-gold-oygold:hover i { transform: translateX(4px); }

.btn-dark-oygold { background: var(--black-color); color: var(--white-color); }
.btn-dark-oygold::before { background: var(--accent-color); }
.btn-dark-oygold:hover { color: var(--black-color); border-color: var(--accent-color); }
.btn-outline-oygold { background: transparent; color: var(--black-color); }
.btn-outline-oygold::before { background: var(--black-color); }
.btn-outline-oygold:hover { color: var(--white-color); }
.btn-gold-oygold { background: var(--accent-color); color: var(--black-color); border-color: var(--accent-color); }
.btn-gold-oygold::before { background: var(--white-color); }
.btn-gold-oygold:hover { color: var(--black-color); border-color: var(--white-color); }
.btn-sm-oygold { padding: 10px 20px; font-size: 11px; }

.link-arrow-oygold {
  display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--black-color);
  padding-bottom: 6px; background: linear-gradient(var(--accent-color), var(--accent-color)) left bottom / 100% 1px no-repeat;
  transition: background-size .4s var(--ease-oygold), color .3s;
}
.link-arrow-oygold i { transition: transform .3s; }
.link-arrow-oygold:hover { background-size: 40% 1px; }
.link-arrow-oygold:hover i { transform: translateX(5px); }

/* ================= Topbar & header ================= */
.topbar-oygold { background: var(--black-color); color: #cfcfcf; font-size: 12px; padding: 10px 0; letter-spacing: .04em; }
.topbar-oygold a { color: #cfcfcf; }
.topbar-oygold a:hover { color: var(--accent-color); }
.topbar-oygold i { color: var(--accent-color); }
.topbar-usp-oygold { text-align: center; }

/* Blur lives on a pseudo-element: backdrop-filter on the header itself would become
   the containing block for the fixed offcanvas menu and break the mobile layout */
.header-oygold {
  position: sticky; top: 0; z-index: 1030;
  border-bottom: 1px solid rgba(231, 231, 231, .7); transition: box-shadow .35s;
}
.header-oygold::before {
  content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); transition: background .35s;
}
.header-oygold.is-scrolled { box-shadow: 0 10px 30px rgba(32, 32, 32, .06); }
.header-oygold.is-scrolled::before { background: rgba(255, 255, 255, .97); }
.header-oygold .navbar { min-height: var(--header-h-oygold); padding: 0; }

.logo-oygold { display: inline-flex; align-items: center; gap: 12px; color: var(--black-color); margin: 0; padding: 0; }
.logo-oygold:hover { color: var(--black-color); }
.logo-oygold img { width: 40px; height: auto; transition: transform .6s var(--ease-oygold); }
.logo-oygold:hover img { transform: rotate(-8deg) scale(1.05); }
.logo-text-oygold { font-family: var(--primary-font); font-size: 25px; line-height: 1; color: inherit; display: flex; flex-direction: column; }
.logo-text-oygold small {
  font-family: var(--secondary-font); font-size: 9px; letter-spacing: .46em; text-transform: uppercase;
  color: var(--accent-dark-oygold); margin-top: 6px;
}

.nav-oygold { gap: 4px; }
.nav-oygold .nav-link {
  font-size: 13px; font-weight: 500; letter-spacing: .06em; color: var(--primary-color);
  padding: 8px 14px !important; position: relative;
}
.nav-oygold .nav-link::after {
  content: ""; position: absolute; left: 50%; bottom: 0; width: 5px; height: 5px; background: var(--accent-color);
  transform: translateX(-50%) rotate(45deg) scale(0); transition: transform .35s var(--ease-oygold);
}
.nav-oygold .nav-link:hover, .nav-oygold .nav-link.active { color: var(--accent-dark-oygold); }
.nav-oygold .nav-link:hover::after, .nav-oygold .nav-link.active::after { transform: translateX(-50%) rotate(45deg) scale(1); }

.header-actions-oygold { display: flex; align-items: center; gap: 10px; }
.btn-contact-oygold {
  display: inline-flex; align-items: center; gap: 12px; padding: 6px 6px 6px 22px; border-radius: 50px;
  background: var(--black-color); color: var(--white-color); font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  transition: background .35s;
}
.btn-contact-oygold:hover { background: var(--accent-color); color: var(--black-color); }
.btn-contact-icon-oygold {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-color); color: var(--black-color);
  font-size: 15px; transition: background .35s, color .35s;
}
.btn-contact-oygold:hover .btn-contact-icon-oygold { background: var(--black-color); color: var(--accent-color); }
.btn-contact-oygold:hover .btn-contact-icon-oygold i { animation: bounceOygold .8s var(--ease-oygold) infinite; }
@keyframes bounceOygold { 50% { transform: translateY(3px); } }

.burger-oygold { width: 44px; height: 44px; border: 1px solid var(--gray3-color); border-radius: 50%; padding: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; box-shadow: none !important; }
.burger-oygold span { width: 18px; height: 1.5px; background: var(--black-color); transition: width .3s; }
.burger-oygold span:nth-child(2) { width: 12px; margin-left: 6px; }

.offcanvas-contacts-oygold { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--gray3-color); display: grid; gap: 14px; font-size: 14px; }
.offcanvas-contacts-oygold a, .offcanvas-contacts-oygold span { display: flex; gap: 10px; color: var(--primary-color); word-break: break-word; }
.offcanvas-contacts-oygold i { color: var(--accent-dark-oygold); }

@media (min-width: 992px) {
  .offcanvas-oygold { position: static; visibility: visible !important; transform: none !important; background: transparent; border: 0 !important; flex-grow: 1; width: auto !important; height: auto !important; }
  .offcanvas-oygold .offcanvas-header { display: none; }
  .offcanvas-oygold .offcanvas-body { padding: 0; display: flex; overflow: visible; }
}
@media (max-width: 991.98px) {
  .offcanvas-oygold { max-width: 340px; background: var(--gray5-color); }
  .nav-oygold .nav-link { font-size: 22px; font-family: var(--primary-font); letter-spacing: 0; font-weight: 400; padding: 12px 0 !important; border-bottom: 1px solid var(--gray4-color); }
  .nav-oygold .nav-link::after { left: auto; right: 4px; top: 50%; bottom: auto; transform: translateY(-50%) rotate(45deg) scale(0); }
  .nav-oygold .nav-link:hover::after, .nav-oygold .nav-link.active::after { transform: translateY(-50%) rotate(45deg) scale(1); }
}

/* ================= Hero ================= */
.hero-oygold {
  position: relative; min-height: min(calc(100vh - var(--header-h-oygold) - 40px), 900px); min-height: min(calc(100svh - var(--header-h-oygold) - 40px), 900px);
  display: flex; align-items: center; overflow: hidden; background: #efefee; padding: 80px 0 120px;
}
.hero-bg-oygold {
  position: absolute; inset: -4% 0 0; background: url("../images/hero.jpg") 72% center / cover no-repeat;
  transform: scale(1.08); animation: heroZoomOygold 2.4s var(--ease-oygold) forwards; will-change: transform, translate;
}
@keyframes heroZoomOygold { to { transform: scale(1); } }
.hero-oygold::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(254, 250, 245, .96) 0%, rgba(254, 250, 245, .82) 32%, rgba(254, 250, 245, 0) 62%);
}
.hero-inner-oygold { position: relative; z-index: 2; }
.hero-content-oygold { max-width: 620px; }
.hero-title-oygold { font-size: clamp(46px, 6.6vw, 96px); line-height: 1.02; margin-bottom: 28px; letter-spacing: -.02em; }
.hero-text-oygold { font-size: 17px; max-width: 480px; margin-bottom: 40px; color: var(--primary-color); opacity: .85; }
.hero-buttons-oygold { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-points-oygold { list-style: none; padding: 0; margin: 56px 0 0; display: flex; gap: 0; }
.hero-points-oygold li { padding: 0 28px; border-left: 1px solid rgba(32, 32, 32, .14); line-height: 1.35; }
.hero-points-oygold li:first-child { padding-left: 0; border-left: 0; }
.hero-points-oygold strong { display: block; font-family: var(--primary-font); font-size: 30px; font-weight: 400; color: var(--black-color); }
.hero-points-oygold span { font-size: 12px; color: var(--secondary-color); }

.hero-anim-oygold { opacity: 0; transform: translateY(30px); animation: heroInOygold 1s var(--ease-oygold) forwards; }
.hero-content-oygold .hero-anim-oygold:nth-child(1) { animation-delay: .3s; }
.hero-content-oygold .hero-anim-oygold:nth-child(2) { animation-delay: .45s; }
.hero-content-oygold .hero-anim-oygold:nth-child(3) { animation-delay: .6s; }
.hero-content-oygold .hero-anim-oygold:nth-child(4) { animation-delay: .75s; }
.hero-content-oygold .hero-anim-oygold:nth-child(5) { animation-delay: .9s; }
@keyframes heroInOygold { to { opacity: 1; transform: none; } }

.hero-card-oygold {
  position: absolute; right: max(24px, calc((100vw - 1320px) / 2 + 12px)); bottom: 56px; z-index: 3;
  display: flex; align-items: center; gap: 16px; padding: 12px 26px 12px 12px; border-radius: 80px;
  background: rgba(255, 255, 255, .72); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .8); box-shadow: var(--shadow-oygold); animation-delay: 1.1s;
}
.hero-card-oygold img { width: 64px; height: 64px; object-fit: cover; border-radius: 50%; background: var(--white-color); }
.hero-card-oygold span { display: block; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-dark-oygold); }
.hero-card-oygold strong { display: block; font-family: var(--primary-font); font-weight: 400; font-size: 19px; color: var(--black-color); line-height: 1.2; }
.hero-card-oygold em { font-style: normal; font-size: 12px; color: var(--secondary-color); }

.hero-scroll-oygold {
  position: absolute; left: 50%; bottom: 28px; z-index: 3; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(32, 32, 32, .45); border-radius: 20px;
}
.hero-scroll-oygold span { position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px; border-radius: 3px; background: var(--black-color); animation: scrollDotOygold 1.8s ease-in-out infinite; }
@keyframes scrollDotOygold { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ================= Marquee ================= */
.marquee-oygold { background: var(--black-color); color: var(--white-color); padding: 22px 0; overflow: hidden; }
.marquee-track-oygold { display: flex; align-items: center; gap: 40px; width: max-content; animation: marqueeOygold 38s linear infinite; }
.marquee-track-oygold span { font-family: var(--primary-font); font-size: 24px; font-style: italic; white-space: nowrap; }
.marquee-track-oygold i { color: var(--accent-color); font-size: 12px; }
.marquee-oygold:hover .marquee-track-oygold { animation-play-state: paused; }
@keyframes marqueeOygold { to { transform: translateX(-50%); } }

/* ================= About ================= */
.about-media-oygold { position: relative; padding: 0 70px 70px 0; max-width: 560px; }
.about-arch-oygold { border-radius: 300px 300px var(--radius-lg-oygold) var(--radius-lg-oygold); overflow: hidden; aspect-ratio: 4 / 5; }
.about-arch-oygold img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-oygold); }
.about-media-oygold:hover .about-arch-oygold img { transform: scale(1.05); }
.about-circle-oygold {
  position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  border: 10px solid var(--white-color); box-shadow: var(--shadow-oygold); background: var(--white-color);
}
.about-circle-oygold img { width: 100%; height: 100%; object-fit: cover; }
.about-seal-oygold {
  position: absolute; left: -30px; top: 40px; width: 132px; height: 132px; border-radius: 50%;
  background: var(--black-color); display: grid; place-items: center; box-shadow: var(--shadow-oygold);
}
.about-seal-oygold svg { position: absolute; inset: 6px; animation: spinOygold 22s linear infinite; }
.about-seal-oygold text { font-family: var(--secondary-font); font-size: 10.4px; letter-spacing: 2.6px; fill: var(--white-color); }
.about-seal-oygold i { color: var(--accent-color); font-size: 26px; }
@keyframes spinOygold { to { transform: rotate(360deg); } }

.about-content-oygold .section-title-oygold { margin-bottom: 28px; }
.about-lead-oygold { font-family: var(--primary-font); font-size: 21px; line-height: 1.55; color: var(--black-color); font-style: italic; }
.about-features-oygold { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 36px 0 40px; }
.feature-oygold { display: flex; gap: 16px; padding: 22px; border-radius: var(--radius-lg-oygold); background: var(--gray5-color); border: 1px solid var(--border-color); transition: transform .4s var(--ease-oygold), box-shadow .4s; }
.feature-oygold:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm-oygold); }
.feature-oygold h3 { font-size: 18px; margin-bottom: 6px; }
.feature-oygold p { font-size: 13.5px; margin: 0; line-height: 1.6; }
.feature-icon-oygold {
  flex: 0 0 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  background: var(--white-color); color: var(--accent-dark-oygold); font-size: 20px; box-shadow: var(--shadow-sm-oygold);
}

.stats-oygold { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 100px; border-top: 1px solid var(--gray3-color); border-bottom: 1px solid var(--gray3-color); }
.stat-oygold { padding: 40px 20px; text-align: center; border-left: 1px solid var(--gray3-color); }
.stat-oygold:first-child { border-left: 0; }
.stat-oygold strong { display: block; font-family: var(--primary-font); font-weight: 400; font-size: clamp(40px, 4.4vw, 60px); line-height: 1; color: var(--black-color); margin-bottom: 10px; }
.stat-oygold strong span { color: inherit; font-size: inherit; letter-spacing: 0; text-transform: none; }
.stat-oygold > span { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }

/* ================= Categories ================= */
.categories-oygold { background: var(--gray5-color); }
.categories-oygold::before {
  content: ""; position: absolute; left: 50%; top: 0; width: 1px; height: 70px; background: linear-gradient(var(--accent-color), transparent);
}
.cat-card-oygold { position: relative; display: block; text-align: center; color: var(--black-color); }
.cat-img-oygold {
  display: block; aspect-ratio: 3 / 4; overflow: hidden; border-radius: 400px 400px var(--radius-lg-oygold) var(--radius-lg-oygold);
  background: var(--white-color); position: relative;
}
.cat-img-oygold { background: linear-gradient(180deg, var(--white-color) 0%, var(--gray4-color) 100%); border: 1px solid var(--gray4-color); }
.cat-img-oygold::before {
  content: ""; position: absolute; inset: 14px; z-index: 1; border-radius: 400px 400px 12px 12px; border: 1px solid rgba(212, 175, 55, .45);
  pointer-events: none; transition: inset .6s var(--ease-oygold), border-color .6s;
}
.cat-img-oygold img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; padding: 24% 14% 26%;
  transition: transform 1.2s var(--ease-oygold);
}
.cat-card-oygold:hover .cat-img-oygold img { transform: scale(1.08) rotate(-3deg); }
.cat-card-oygold:hover .cat-img-oygold::before { inset: 8px; border-color: var(--accent-color); }
.cat-info-oygold { display: block; padding-top: 22px; }
.cat-name-oygold { display: block; font-family: var(--primary-font); font-size: 26px; line-height: 1.2; transition: color .3s; }
.cat-card-oygold:hover .cat-name-oygold { color: var(--accent-dark-oygold); }
.cat-count-oygold { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--secondary-color); }
.cat-arrow-oygold {
  position: absolute; left: 50%; top: calc(100% - 110px); translate: -50% 0; width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; background: var(--white-color); color: var(--black-color); font-size: 18px;
  box-shadow: var(--shadow-sm-oygold); transform: scale(.6); opacity: 0; transition: transform .45s var(--ease-oygold), opacity .45s, background .3s;
}
.cat-card-oygold:hover .cat-arrow-oygold { transform: none; opacity: 1; }
.cat-arrow-oygold:hover { background: var(--accent-color); }

/* ================= Collection ================= */
.filters-oygold { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: -10px auto 50px; }
.filter-btn-oygold {
  border: 1px solid var(--gray3-color); background: transparent; color: var(--primary-color);
  padding: 10px 26px; border-radius: 50px; font-size: 13px; letter-spacing: .06em; transition: all .35s var(--ease-oygold);
}
.filter-btn-oygold:hover { border-color: var(--accent-color); color: var(--accent-dark-oygold); }
.filter-btn-oygold.is-active { background: var(--black-color); color: var(--white-color); border-color: var(--black-color); }
.product-col-oygold { transition: opacity .45s var(--ease-oygold), transform .45s var(--ease-oygold); }
.product-col-oygold.is-hidden { display: none; }
.product-col-oygold.is-entering { opacity: 0; transform: translateY(20px); }

.product-card-oygold { height: 100%; display: flex; flex-direction: column; border-radius: var(--radius-lg-oygold); transition: box-shadow .4s; }
.product-card-oygold.is-highlight { box-shadow: 0 0 0 2px var(--accent-color); }
.product-img-oygold {
  position: relative; aspect-ratio: 1; background: var(--white-color); overflow: hidden; border-radius: var(--radius-lg-oygold);
  border: 1px solid var(--gray3-color); padding: 16%; transition: border-color .4s;
}
.product-card-oygold:hover .product-img-oygold { border-color: var(--gray4-color); }
.product-img-oygold img { width: 100%; height: 100%; object-fit: contain; transition: transform 1s var(--ease-oygold); }
.product-card-oygold:hover .product-img-oygold img { transform: scale(1.06) translateY(-4%); }
.badge-oygold {
  position: absolute; left: 14px; top: 14px; z-index: 2; background: var(--black-color); color: var(--accent-color);
  font-size: 10px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; padding: 6px 12px; border-radius: 30px;
}
.badge-new-oygold { background: var(--accent-color); color: var(--black-color); }
.product-zoom-oygold {
  position: absolute; right: 14px; top: 14px; z-index: 2; width: 40px; height: 40px; border-radius: 50%; border: 0;
  background: var(--white-color); color: var(--black-color); display: grid; place-items: center; font-size: 14px;
  opacity: 0; transform: translateX(10px); transition: all .4s var(--ease-oygold); box-shadow: var(--shadow-sm-oygold);
}
.product-zoom-oygold:hover { background: var(--black-color); color: var(--white-color); }
.product-inquire-oygold {
  position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2; display: flex; justify-content: center; align-items: center; gap: 8px;
  padding: 13px 16px; border-radius: 50px; background: var(--black-color); color: var(--white-color);
  font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  opacity: 0; transform: translateY(16px); transition: all .45s var(--ease-oygold);
}
.product-inquire-oygold:hover { background: var(--accent-color); color: var(--black-color); }
.product-card-oygold:hover .product-zoom-oygold, .product-card-oygold:hover .product-inquire-oygold,
.product-card-oygold:focus-within .product-zoom-oygold, .product-card-oygold:focus-within .product-inquire-oygold { opacity: 1; transform: none; }
.product-body-oygold { padding: 20px 6px 6px; text-align: center; display: flex; flex-direction: column; align-items: center; flex-grow: 1; }
.product-metal-oygold { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gray2-color); }
.product-name-oygold { font-size: 18px; line-height: 1.35; margin: 8px 0; }
.product-rating-oygold { color: var(--accent-color); font-size: 10px; letter-spacing: 3px; margin-bottom: 8px; }
.product-price-oygold { font-family: var(--primary-font); font-size: 19px; color: var(--black-color); margin-top: auto; }

/* ================= Special offer ================= */
.offer-oygold { padding: 0 0 20px; }
.offer-box-oygold {
  display: grid; grid-template-columns: 1.05fr 1fr; align-items: stretch; overflow: hidden; border-radius: var(--radius-lg-oygold);
  background: linear-gradient(110deg, var(--gray4-color) 0%, var(--gray5-color) 70%);
}
.offer-text-oygold { padding: 80px 70px; align-self: center; }
.offer-text-oygold h2 { font-size: clamp(32px, 3.6vw, 50px); line-height: 1.12; margin-bottom: 20px; }
.offer-text-oygold p { max-width: 440px; margin-bottom: 34px; color: var(--primary-color); }
.offer-media-oygold { position: relative; min-height: 420px; }
.offer-media-oygold img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%); mask-image: linear-gradient(90deg, transparent 0%, #000 22%); }
.offer-tag-oygold {
  position: absolute; left: 12%; top: 50%; translate: 0 -50%; width: 120px; height: 120px; border-radius: 50%;
  background: var(--black-color); color: var(--white-color); display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-oygold); animation: floatOygold 5s ease-in-out infinite;
}
.offer-tag-oygold strong { font-family: var(--primary-font); font-style: italic; font-weight: 400; font-size: 30px; color: var(--accent-color); line-height: 1; }
.offer-tag-oygold span { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; margin-top: 6px; }
@keyframes floatOygold { 50% { transform: translateY(-10px); } }

/* ================= Stones & metals ================= */
.gems-oygold { background: linear-gradient(180deg, var(--white-color) 0%, var(--gray6-color) 100%); overflow: hidden; }
.gems-oygold::before {
  content: ""; position: absolute; left: 50%; top: 0; width: 1px; height: 70px; background: linear-gradient(var(--accent-color), transparent);
}
.gems-intro-oygold { max-width: 720px; }

.gems-showcase-oygold { display: grid; grid-template-columns: 1fr 1.05fr 1fr; align-items: center; gap: 50px; }
.gems-facts-oygold { display: grid; gap: 50px; }
.gems-facts-left-oygold { text-align: right; }
.gem-fact-oygold { position: relative; }
.gem-fact-icon-oygold {
  width: 54px; height: 54px; border-radius: 50%; display: inline-grid; place-items: center; font-size: 21px; margin-bottom: 14px;
  color: var(--accent-dark-oygold); background: var(--white-color); border: 1px solid var(--gray4-color); box-shadow: var(--shadow-sm-oygold);
  transition: background .4s, color .4s, transform .5s var(--ease-oygold);
}
.gem-fact-oygold:hover .gem-fact-icon-oygold { background: var(--accent-color); color: var(--black-color); transform: rotate(-10deg); }
.gem-fact-oygold strong { display: block; font-family: var(--primary-font); font-weight: 400; font-size: 40px; line-height: 1.05; color: var(--black-color); }
.gem-fact-oygold h3 { font-family: var(--secondary-font); font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--accent-dark-oygold); margin: 8px 0; }
.gem-fact-oygold p { font-size: 14px; margin: 0; line-height: 1.6; max-width: 280px; }
.gems-facts-left-oygold .gem-fact-oygold p { margin-left: auto; }
.gems-facts-left-oygold .gem-fact-oygold::after, .gems-facts-right-oygold .gem-fact-oygold::after {
  content: ""; position: absolute; top: 26px; width: 34px; height: 1px; background: var(--accent-color);
}
.gems-facts-left-oygold .gem-fact-oygold::after { right: -50px; }
.gems-facts-right-oygold .gem-fact-oygold::after { left: -50px; }

.gems-center-oygold { position: relative; padding: 20px; }
.gems-arch-oygold { position: relative; z-index: 1; aspect-ratio: 3 / 4.2; border-radius: 400px 400px var(--radius-lg-oygold) var(--radius-lg-oygold); overflow: hidden; box-shadow: var(--shadow-oygold); }
.gems-arch-oygold img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-oygold); }
.gems-center-oygold:hover .gems-arch-oygold img { transform: scale(1.06); }
.gems-ring-oygold { position: absolute; inset: 0; border: 1px solid rgba(212, 175, 55, .5); border-radius: 400px 400px 24px 24px; }
.gems-quote-oygold {
  position: absolute; z-index: 2; left: 50%; bottom: -10px; translate: -50% 0; width: 82%; padding: 18px 22px; text-align: center;
  border-radius: var(--radius-lg-oygold); background: var(--white-color); box-shadow: var(--shadow-oygold);
}
.gems-quote-oygold i { color: var(--accent-color); font-size: 26px; line-height: 1; }
.gems-quote-oygold p { margin: 2px 0 0; font-family: var(--primary-font); font-style: italic; font-size: 17px; line-height: 1.4; color: var(--black-color); }

.materials-oygold { margin-top: 110px; padding: 50px; border-radius: 24px; background: var(--white-color); border: 1px solid var(--gray4-color); box-shadow: var(--shadow-oygold); }
.materials-head-oygold { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 34px; padding-bottom: 30px; border-bottom: 1px solid var(--gray3-color); }
.materials-head-oygold h3 { font-size: 34px; margin-bottom: 4px; }
.materials-head-oygold p { margin: 0; font-size: 14px; }
.mat-tabs-oygold { display: flex; gap: 6px; padding: 6px; border-radius: 50px; background: var(--gray5-color); border: 1px solid var(--gray4-color); }
.mat-tab-oygold {
  border: 0; background: none; padding: 11px 24px; border-radius: 50px; font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--primary-color); display: inline-flex; align-items: center; gap: 8px; transition: background .4s var(--ease-oygold), color .4s;
}
.mat-tab-oygold i { color: var(--accent-dark-oygold); transition: color .4s; }
.mat-tab-oygold.is-active { background: var(--black-color); color: var(--white-color); }
.mat-tab-oygold.is-active i { color: var(--accent-color); }
.mat-pane-oygold { animation: fadeUpOygold .6s var(--ease-oygold); }
.mat-item-oygold {
  height: 100%; display: flex; align-items: center; gap: 18px; padding: 20px 22px; border-radius: 14px;
  background: var(--gray5-color); border: 1px solid transparent; transition: border-color .35s, background .35s, transform .35s var(--ease-oygold);
}
.mat-item-oygold:hover { background: var(--white-color); border-color: var(--accent-color); transform: translateY(-2px); }
.mat-num-oygold { flex: 0 0 auto; font-family: var(--primary-font); font-style: italic; font-size: 26px; line-height: 1; color: var(--accent-color); min-width: 34px; }
.mat-info-oygold { flex: 1; min-width: 0; }
.mat-info-oygold h4 { font-size: 19px; margin: 0 0 2px; }
.mat-info-oygold p { margin: 0; font-size: 13px; line-height: 1.5; }
.mat-price-oygold {
  flex: 0 0 auto; font-size: 12px; font-weight: 500; letter-spacing: .04em; color: var(--black-color); white-space: nowrap;
  padding: 7px 14px; border-radius: 30px; background: var(--white-color); border: 1px solid var(--gray4-color);
}
.materials-foot-oygold { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 34px; }
.materials-foot-oygold p { margin: 0; font-size: 13px; }
.materials-foot-oygold p i { color: var(--accent-dark-oygold); margin-right: 6px; }

/* ================= Wholesale ================= */
.wholesale-banner-oygold {
  position: relative; border-radius: var(--radius-lg-oygold); overflow: hidden; min-height: 540px; display: flex; align-items: center;
  background: linear-gradient(115deg, var(--gray5-color) 0%, var(--gray4-color) 100%);
}
.wholesale-banner-oygold::before {
  content: ""; position: absolute; right: -120px; bottom: -160px; width: 520px; height: 520px; border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, .35); pointer-events: none;
}
.wholesale-collage-oygold { position: absolute; right: 56px; top: 50px; bottom: 50px; width: 44%; }
.wc-item-oygold { position: absolute; overflow: hidden; border-radius: var(--radius-lg-oygold); box-shadow: var(--shadow-oygold); background: var(--white-color); }
.wc-item-oygold img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-oygold); }
.wc-item-oygold:hover img { transform: scale(1.08); }
.wc-main-oygold { left: 0; top: 0; bottom: 0; width: 56%; border-radius: 300px 300px var(--radius-lg-oygold) var(--radius-lg-oygold); }
.wc-top-oygold { right: 0; top: 0; width: 40%; height: 47%; }
.wc-bottom-oygold { right: 0; bottom: 0; width: 40%; height: 47%; }
.wc-badge-oygold {
  position: absolute; left: 44%; top: 50%; translate: 0 -50%; width: 112px; height: 112px; border-radius: 50%; z-index: 2;
  background: var(--black-color); color: var(--white-color); display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 6px solid var(--gray5-color); animation: floatOygold 5s ease-in-out infinite;
}
.wc-badge-oygold strong { font-family: var(--primary-font); font-weight: 400; font-size: 28px; color: var(--accent-color); line-height: 1; }
.wc-badge-oygold span { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; margin-top: 6px; }
.wholesale-banner-text-oygold { position: relative; max-width: 620px; padding: 70px; }
.wholesale-banner-text-oygold h2 { font-size: clamp(34px, 4vw, 54px); line-height: 1.1; margin-bottom: 20px; }
.wholesale-banner-text-oygold p { color: var(--primary-color); margin-bottom: 30px; max-width: 480px; }
.wholesale-keys-oygold { display: flex; gap: 0; margin-bottom: 36px; }
.wholesale-keys-oygold div { padding: 0 26px; border-left: 1px solid rgba(32, 32, 32, .14); }
.wholesale-keys-oygold div:first-child { padding-left: 0; border: 0; }
.wholesale-keys-oygold strong { display: block; font-family: var(--primary-font); font-weight: 400; font-size: 34px; line-height: 1.1; color: var(--black-color); }
.wholesale-keys-oygold span { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }

.terms-switch-oygold { margin-top: 70px; }
.terms-tabs-oygold { position: relative; display: flex; width: max-content; margin: 0 auto 36px; padding: 6px; border-radius: 50px; background: var(--gray5-color); border: 1px solid var(--gray4-color); }
.terms-tab-oygold { position: relative; z-index: 1; border: 0; background: none; width: 150px; padding: 12px 0; border-radius: 50px; font-size: 13px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--primary-color); transition: color .4s; }
.terms-tab-oygold.is-active { color: var(--white-color); }
.terms-tabs-bg-oygold { position: absolute; left: 6px; top: 6px; bottom: 6px; width: 150px; border-radius: 50px; background: var(--black-color); transition: transform .45s var(--ease-oygold); }
.terms-tabs-oygold.is-second .terms-tabs-bg-oygold { transform: translateX(150px); }
.terms-pane-oygold { animation: fadeUpOygold .6s var(--ease-oygold); }
@keyframes fadeUpOygold { from { opacity: 0; transform: translateY(16px); } }
.terms-card-oygold { position: relative; height: 100%; padding: 42px; border-radius: var(--radius-lg-oygold); border: 1px solid var(--gray3-color); background: var(--white-color); overflow: hidden; transition: transform .4s var(--ease-oygold), box-shadow .4s; }
.terms-card-oygold:hover { transform: translateY(-4px); box-shadow: var(--shadow-oygold); }
.terms-num-oygold { position: absolute; right: 30px; top: 20px; font-family: var(--primary-font); font-style: italic; font-size: 64px; line-height: 1; color: var(--gray4-color); }
.terms-card-oygold h3 { font-size: 28px; margin: 0 0 22px; position: relative; }
.terms-card-oygold ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; position: relative; }
.terms-card-oygold li { display: flex; gap: 12px; }
.terms-card-oygold li i { flex: 0 0 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-soft-oygold); color: var(--accent-dark-oygold); font-size: 12px; margin-top: 3px; }
.terms-card-dark-oygold { background: var(--black-color); border-color: var(--black-color); color: #bdbdbd; }
.terms-card-dark-oygold h3 { color: var(--white-color); }
.terms-card-dark-oygold .terms-num-oygold { color: rgba(212, 175, 55, .22); }
.terms-card-dark-oygold li i { background: rgba(212, 175, 55, .16); color: var(--accent-color); }

.steps-oygold { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 80px; position: relative; }
.steps-oygold::before { content: ""; position: absolute; left: 12%; right: 12%; top: 32px; border-top: 1px dashed var(--gray2-color); }
.step-oygold { position: relative; text-align: center; }
.step-oygold > span {
  width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 50%; display: grid; place-items: center; background: var(--white-color);
  border: 1px solid var(--accent-color); font-family: var(--primary-font); font-size: 24px; color: var(--accent-dark-oygold); position: relative; transition: background .4s, color .4s;
}
.step-oygold:hover > span { background: var(--accent-color); color: var(--black-color); }
.step-oygold h3 { font-size: 20px; margin-bottom: 6px; }
.step-oygold p { font-size: 14px; margin: 0; }

/* ================= Gallery ================= */
.gallery-oygold { background: var(--gray5-color); }
.gallery-grid-oygold { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-bottom: 50px; }
.gallery-item-oygold { position: relative; aspect-ratio: 3 / 4; border: 0; padding: 0; overflow: hidden; background: var(--gray4-color); cursor: zoom-in; border-radius: var(--radius-lg-oygold); }
.gallery-item-oygold:nth-child(even) { margin-top: 50px; margin-bottom: -50px; }
.gallery-item-oygold:nth-child(4n+1) { border-radius: 200px 200px var(--radius-lg-oygold) var(--radius-lg-oygold); }
.gallery-item-oygold img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-oygold); }
.gallery-item-oygold::after { content: ""; position: absolute; inset: 0; background: rgba(32, 32, 32, .35); opacity: 0; transition: opacity .5s; }
.gallery-icon-oygold {
  position: absolute; left: 50%; top: 50%; z-index: 2; width: 58px; height: 58px; margin: -29px 0 0 -29px; border-radius: 50%;
  display: grid; place-items: center; background: var(--white-color); color: var(--black-color); font-size: 20px;
  opacity: 0; transform: scale(.5) rotate(-90deg); transition: all .5s var(--ease-oygold);
}
.gallery-item-oygold:hover img { transform: scale(1.1); }
.gallery-item-oygold:hover::after, .gallery-item-oygold:focus-visible::after { opacity: 1; }
.gallery-item-oygold:hover .gallery-icon-oygold, .gallery-item-oygold:focus-visible .gallery-icon-oygold { opacity: 1; transform: none; }

.lightbox-oygold .modal-content { background: transparent; border: 0; align-items: center; position: relative; }
.lightbox-oygold img { max-height: 82vh; width: auto; max-width: 100%; border-radius: var(--radius-lg-oygold); }
.lightbox-caption-oygold { color: var(--white-color); text-align: center; margin: 16px 0 0; font-family: var(--primary-font); font-style: italic; font-size: 20px; }
.lightbox-close-oygold, .lightbox-nav-oygold {
  position: absolute; z-index: 3; width: 50px; height: 50px; border-radius: 50%; border: 0; display: grid; place-items: center;
  background: rgba(255, 255, 255, .95); color: var(--black-color); font-size: 18px; transition: background .3s;
}
.lightbox-close-oygold:hover, .lightbox-nav-oygold:hover { background: var(--accent-color); }
.lightbox-close-oygold { top: -8px; right: 0; transform: translateY(-100%); }
.lightbox-nav-oygold { top: 50%; transform: translateY(-50%); }
.lightbox-prev-oygold { left: 10px; }
.lightbox-next-oygold { right: 10px; }
.modal-backdrop.show { opacity: .9; }

/* ================= Contact ================= */
.contact-box-oygold { border-radius: var(--radius-lg-oygold); overflow: hidden; background: var(--white-color); box-shadow: var(--shadow-oygold); border: 1px solid var(--gray3-color); }
.contact-side-oygold { position: relative; height: 100%; min-height: 560px; }
.contact-map-oygold { position: absolute; inset: 0; background: var(--gray-color); }
.contact-map-oygold iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(1) contrast(1.05) brightness(1.03); }
.contact-card-oygold {
  position: absolute; left: 24px; right: 24px; bottom: 24px; padding: 28px 30px; border-radius: var(--radius-lg-oygold);
  background: var(--black-color); color: #cfcfcf; box-shadow: var(--shadow-oygold);
}
.contact-card-oygold h3 { color: var(--white-color); font-size: 24px; margin-bottom: 16px; }
.contact-card-oygold ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; }
.contact-card-oygold li { display: flex; gap: 12px; line-height: 1.55; }
.contact-card-oygold i { color: var(--accent-color); }
.contact-card-oygold a { color: var(--white-color); word-break: break-word; }
.contact-card-oygold a:hover { color: var(--accent-color); }

.contact-form-wrap-oygold { padding: 64px 60px; }
.contact-form-wrap-oygold .section-title-oygold { margin-bottom: 14px; font-size: clamp(32px, 3.4vw, 46px); }
.contact-lead-oygold { margin-bottom: 32px; }
.contact-form-oygold .form-floating > .form-control, .contact-form-oygold .form-floating > .form-select {
  border: 0; border-bottom: 1px solid var(--gray3-color); border-radius: 0; background-color: transparent; padding-left: 0; padding-right: 0;
  font-size: 15px; color: var(--black-color); box-shadow: none;
}
.contact-form-oygold .form-floating > label { padding-left: 0; padding-right: 0; color: var(--secondary-color); font-size: 14px; }
.contact-form-oygold .form-floating > .form-control:focus ~ label, .contact-form-oygold .form-floating > .form-control:not(:placeholder-shown) ~ label, .contact-form-oygold .form-floating > .form-select ~ label { color: var(--accent-dark-oygold); }
.contact-form-oygold .form-floating > label::after { background: transparent !important; }
.contact-form-oygold .form-floating > .form-control:focus, .contact-form-oygold .form-floating > .form-select:focus { border-bottom-color: var(--accent-color); box-shadow: 0 1px 0 0 var(--accent-color); }
.contact-form-oygold textarea.form-control { height: 120px; resize: vertical; }
.contact-form-oygold .form-control.is-invalid { border-bottom-color: var(--error-color); background-image: none; }
.contact-form-oygold .form-control.is-valid { border-bottom-color: var(--success-color); background-image: none; }
.contact-form-oygold .invalid-feedback { font-size: 12px; }
.contact-form-oygold .form-check { margin-top: 6px; }
.contact-form-oygold .form-check-label { font-size: 13px; }
.contact-form-oygold .form-check-input { border-color: var(--gray2-color); }
.contact-form-oygold .form-check-input:checked { background-color: var(--black-color); border-color: var(--black-color); }
.contact-form-oygold .form-check-input:focus { box-shadow: 0 0 0 3px var(--accent-soft-oygold); }
.btn-submit-oygold { margin-top: 10px; min-width: 240px; }
.btn-dark-oygold:disabled { cursor: wait; opacity: .85; }
.form-alert-oygold { display: none; margin-top: 22px; padding: 16px 18px; border-radius: 12px; font-size: 14px; align-items: flex-start; gap: 12px; }
.form-alert-oygold.is-success { display: flex; background: rgba(40, 167, 69, .08); color: #1d7a33; border: 1px solid rgba(40, 167, 69, .28); animation: fadeUpOygold .5s var(--ease-oygold); }
.form-alert-oygold.is-error { display: flex; background: rgba(220, 53, 69, .06); color: var(--error-color); border: 1px solid rgba(220, 53, 69, .25); animation: fadeUpOygold .5s var(--ease-oygold); }
.form-alert-oygold i { font-size: 18px; line-height: 1.3; }

/* ================= Benefits & footer ================= */
.benefits-oygold { padding: 80px 0; border-top: 1px solid var(--gray3-color); }
.benefits-grid-oygold { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.benefit-oygold { text-align: center; }
.benefit-icon-oygold {
  width: 76px; height: 76px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; font-size: 26px;
  color: var(--accent-dark-oygold); background: var(--gray5-color); border: 1px solid var(--gray4-color); position: relative; transition: transform .5s var(--ease-oygold);
}
.benefit-icon-oygold::after { content: ""; position: absolute; inset: -7px; border-radius: 50%; border: 1px dashed var(--gray4-color); }
.benefit-oygold:hover .benefit-icon-oygold { transform: translateY(-5px); }
.benefit-oygold h3 { font-size: 19px; margin-bottom: 4px; }
.benefit-oygold p { font-size: 13px; margin: 0; }

.footer-oygold { background: var(--black-color); color: #a9a9a9; font-size: 14px; position: relative; overflow: hidden; }
.footer-main-oygold { padding: 90px 0 30px; }
.logo-light-oygold { color: var(--white-color); }
.logo-light-oygold:hover { color: var(--white-color); }
.logo-light-oygold .logo-text-oygold small { color: var(--accent-color); }
.footer-about-oygold { margin: 24px 0 22px; max-width: 340px; }
.footer-cta-oygold { display: inline-flex; gap: 10px; align-items: center; color: var(--accent-color); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; border-bottom: 1px solid rgba(212, 175, 55, .4); padding-bottom: 4px; }
.footer-cta-oygold:hover { color: var(--white-color); }
.footer-title-oygold { font-size: 20px; color: var(--white-color); margin-bottom: 22px; }
.footer-links-oygold, .footer-contacts-oygold { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-links-oygold a { color: #a9a9a9; position: relative; transition: color .3s, padding .3s; }
.footer-links-oygold a::before { content: ""; position: absolute; left: 0; top: 50%; width: 0; height: 1px; background: var(--accent-color); transition: width .3s; }
.footer-links-oygold a:hover { color: var(--white-color); padding-left: 18px; }
.footer-links-oygold a:hover::before { width: 10px; }
.footer-contacts-oygold a { color: #a9a9a9; }
.footer-contacts-oygold a:hover { color: var(--accent-color); }
.footer-contacts-oygold li { display: flex; gap: 10px; line-height: 1.55; word-break: break-word; }
.footer-contacts-oygold i { color: var(--accent-color); }
.footer-wordmark-oygold {
  font-family: var(--primary-font); font-size: clamp(48px, 11.5vw, 170px); line-height: 1; text-align: center; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1px rgba(212, 175, 55, .28); padding: 30px 0 10px; user-select: none; letter-spacing: -.01em;
}
.footer-bottom-oygold { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding: 24px 0; border-top: 1px solid rgba(255, 255, 255, .08); font-size: 13px; }

.to-top-oygold {
  position: fixed; right: 22px; bottom: 22px; z-index: 1020; width: 50px; height: 50px; border-radius: 50%;
  border: 0; padding: 0; cursor: pointer;
  background: var(--accent-color); color: var(--black-color); font-size: 18px; display: grid; place-items: center; box-shadow: var(--shadow-oygold);
  opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .4s var(--ease-oygold);
}
.to-top-oygold.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top-oygold:hover { background: var(--black-color); color: var(--accent-color); }

.cookie-oygold {
  position: fixed; left: 22px; bottom: 22px; z-index: 1040; max-width: 420px; background: var(--white-color);
  border: 1px solid var(--gray3-color); border-radius: var(--radius-lg-oygold); box-shadow: var(--shadow-oygold); padding: 22px 24px; font-size: 13px;
  animation: fadeUpOygold .6s var(--ease-oygold);
}
.cookie-oygold p { margin-bottom: 14px; }
.cookie-oygold p i { color: var(--accent-dark-oygold); margin-right: 4px; }
.cookie-oygold a { text-decoration: underline; }
.cookie-actions-oygold { display: flex; gap: 10px; flex-wrap: wrap; }

/* ================= Reveal ================= */
.reveal-oygold { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease-oygold), transform 1s var(--ease-oygold); transition-delay: var(--d, 0s); }
.reveal-oygold.is-visible { opacity: 1; transform: none; }

/* ================= Legal pages ================= */
.legal-hero-oygold { position: relative; background: var(--gray5-color); padding: 90px 0 70px; text-align: center; overflow: hidden; }
.legal-hero-oygold::after { content: ""; position: absolute; left: 50%; bottom: 0; width: 1px; height: 50px; background: linear-gradient(transparent, var(--accent-color)); }
.legal-hero-oygold h1 { font-size: clamp(36px, 5vw, 64px); margin-bottom: 14px; }
.breadcrumb-oygold { display: flex; justify-content: center; gap: 10px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; list-style: none; padding: 0; margin: 0; }
.breadcrumb-oygold li + li::before { content: "\2022"; margin-right: 10px; color: var(--accent-color); }
.legal-body-oygold { padding: 80px 0 100px; }
.legal-content-oygold { max-width: 820px; margin: 0 auto; }
.legal-content-oygold h2 { font-size: 26px; margin: 42px 0 14px; }
.legal-content-oygold h2:first-of-type { margin-top: 0; }
.legal-content-oygold ul { padding-left: 20px; }
.legal-content-oygold li { margin-bottom: 6px; }
.legal-content-oygold li::marker { color: var(--accent-color); }
.legal-meta-oygold { display: inline-block; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-dark-oygold); margin-bottom: 30px; }
.legal-contact-oygold { margin-top: 48px; padding: 30px 32px; background: var(--gray5-color); border-left: 2px solid var(--accent-color); border-radius: var(--radius-lg-oygold); }
.legal-contact-oygold p { margin: 0; }
.legal-content-oygold table { width: 100%; font-size: 14px; margin: 10px 0 20px; }
.legal-content-oygold th, .legal-content-oygold td { border: 1px solid var(--gray3-color); padding: 10px 12px; vertical-align: top; }
.legal-content-oygold th { background: var(--gray5-color); color: var(--black-color); font-weight: 500; }
.legal-table-wrap-oygold { overflow-x: auto; }

/* ================= Responsive ================= */
@media (max-width: 1199.98px) {
  .gems-showcase-oygold { gap: 36px; }
  .gems-facts-left-oygold .gem-fact-oygold::after, .gems-facts-right-oygold .gem-fact-oygold::after { display: none; }
  .nav-oygold .nav-link { padding: 8px 10px !important; }
  .offer-text-oygold { padding: 60px 48px; }
}
@media (max-width: 991.98px) {
  .gems-showcase-oygold { grid-template-columns: 1fr 1fr; gap: 30px; }
  .gems-center-oygold { grid-column: 1 / -1; grid-row: 1; max-width: 440px; margin: 0 auto 30px; width: 100%; }
  .gems-facts-left-oygold, .gems-facts-right-oygold { text-align: left; gap: 30px; }
  .gems-facts-left-oygold .gem-fact-oygold p { margin-left: 0; }
  .gem-fact-oygold { padding: 26px; border-radius: var(--radius-lg-oygold); background: var(--white-color); border: 1px solid var(--gray4-color); }
  .materials-oygold { margin-top: 80px; padding: 36px 30px; }
  :root { --header-h-oygold: 72px; }
  .section-oygold { padding: 90px 0; }
  .hero-oygold { min-height: 0; padding: 80px 0 150px; }
  .hero-oygold::before { background: linear-gradient(90deg, rgba(254, 250, 245, .95) 0%, rgba(254, 250, 245, .78) 50%, rgba(254, 250, 245, .1) 100%); }
  .hero-card-oygold { bottom: 40px; right: 24px; }
  .hero-scroll-oygold { display: none; }
  .about-media-oygold { margin: 0 auto; }
  .about-seal-oygold { left: -10px; }
  .stats-oygold { grid-template-columns: repeat(2, 1fr); margin-top: 70px; }
  .stat-oygold:nth-child(3) { border-left: 0; }
  .stat-oygold:nth-child(-n+2) { border-bottom: 1px solid var(--gray3-color); }
  .offer-box-oygold { grid-template-columns: 1fr; }
  .offer-media-oygold { min-height: 320px; order: -1; }
  .offer-media-oygold img { -webkit-mask-image: linear-gradient(0deg, transparent 0%, #000 30%); mask-image: linear-gradient(0deg, transparent 0%, #000 30%); }
  .offer-tag-oygold { left: auto; right: 30px; top: auto; bottom: 20px; translate: none; width: 100px; height: 100px; }
  .offer-text-oygold { padding: 20px 40px 56px; }
  .steps-oygold { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .steps-oygold::before { display: none; }
  .gallery-grid-oygold { gap: 14px; }
  .contact-side-oygold { min-height: 480px; }
  .contact-form-wrap-oygold { padding: 50px 40px; }
  .benefits-grid-oygold { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .wholesale-banner-oygold { flex-direction: column; align-items: stretch; }
  .wholesale-collage-oygold { position: relative; right: auto; top: auto; bottom: auto; width: auto; height: 380px; margin: 0 40px 44px; }
  .wholesale-banner-text-oygold { max-width: none; padding-bottom: 40px; }
}
@media (max-width: 767.98px) {
  .gems-showcase-oygold { grid-template-columns: 1fr; gap: 14px; }
  .gems-facts-oygold { gap: 14px; }
  .gems-center-oygold { margin-bottom: 36px; padding: 12px; }
  .gem-fact-oygold { padding: 22px; display: grid; grid-template-columns: auto 1fr; column-gap: 16px; align-items: center; }
  .gem-fact-icon-oygold { grid-row: span 2; margin: 0; }
  .gem-fact-oygold strong { font-size: 28px; }
  .gem-fact-oygold h3 { margin: 4px 0 0; }
  .gem-fact-oygold p { grid-column: 1 / -1; margin-top: 12px; max-width: none; }
  .gems-quote-oygold p { font-size: 15px; }
  .materials-oygold { margin-top: 60px; padding: 28px 18px; border-radius: 18px; }
  .materials-head-oygold h3 { font-size: 27px; }
  .mat-tabs-oygold { width: 100%; }
  .mat-tab-oygold { flex: 1; justify-content: center; padding: 11px 8px; font-size: 10.5px; letter-spacing: .06em; }
  .mat-item-oygold { flex-wrap: wrap; padding: 18px; gap: 6px 14px; }
  .mat-info-oygold { flex-basis: calc(100% - 50px); }
  .mat-price-oygold { margin-left: 48px; }
  .materials-foot-oygold { flex-direction: column; align-items: flex-start; }
  body { font-size: 14.5px; }
  .section-oygold { padding: 72px 0; }
  .section-head-oygold { margin-bottom: 38px; }
  .section-title-oygold br, .hero-title-oygold br { display: none; }
  .eyebrow-oygold { letter-spacing: .2em; font-size: 11px; }
  .eyebrow-oygold::before, .eyebrow-oygold::after { width: 22px; }
  .hero-oygold { padding: 56px 0 190px; }
  .hero-bg-oygold { background-position: 78% center; }
  .hero-oygold::before { background: linear-gradient(180deg, rgba(254, 250, 245, .94) 0%, rgba(254, 250, 245, .82) 60%, rgba(254, 250, 245, .5) 100%); }
  .hero-text-oygold { font-size: 15.5px; }
  .hero-points-oygold { margin-top: 40px; }
  .hero-points-oygold li { padding: 0 16px; }
  .hero-points-oygold strong { font-size: 24px; }
  .hero-card-oygold { left: 16px; right: 16px; bottom: 24px; padding: 10px 20px 10px 10px; }
  .hero-card-oygold img { width: 52px; height: 52px; }
  .marquee-track-oygold span { font-size: 19px; }
  .about-media-oygold { padding: 0 40px 40px 0; }
  .about-seal-oygold { width: 104px; height: 104px; top: 20px; }
  .about-seal-oygold text { font-size: 10.2px; }
  .about-lead-oygold { font-size: 18px; }
  .about-features-oygold { grid-template-columns: 1fr; }
  .stat-oygold { padding: 28px 10px; }
  .stat-oygold > span { font-size: 10.5px; letter-spacing: .1em; }
  .cat-name-oygold { font-size: 20px; }
  .cat-arrow-oygold { display: none; }
  .filters-oygold { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; margin: 0 -12px 36px; padding: 0 12px 6px; scrollbar-width: none; }
  .filters-oygold::-webkit-scrollbar { display: none; }
  .filter-btn-oygold { flex: 0 0 auto; padding: 9px 20px; }
  .product-name-oygold { font-size: 15px; }
  .product-img-oygold { padding: 14%; border-radius: 12px; }
  .product-price-oygold { font-size: 17px; }
  .product-inquire-oygold { opacity: 1; transform: none; left: auto; right: 10px; bottom: 10px; width: 40px; height: 40px; padding: 0; font-size: 0; gap: 0; }
  .product-inquire-oygold i { font-size: 15px; }
  .product-zoom-oygold { display: none; }
  .badge-oygold { left: 10px; top: 10px; padding: 5px 9px; font-size: 9px; }
  .offer-text-oygold { padding: 10px 24px 44px; text-align: center; }
  .offer-text-oygold p { margin-left: auto; margin-right: auto; }
  .wholesale-banner-oygold { min-height: 0; }
  .wholesale-collage-oygold { height: 280px; margin: 0 20px 28px; }
  .wc-badge-oygold { width: 84px; height: 84px; border-width: 4px; }
  .wc-badge-oygold strong { font-size: 21px; }
  .wc-badge-oygold span { font-size: 7px; }
  .wholesale-banner-text-oygold { padding: 44px 24px; }
  .wholesale-keys-oygold div { padding: 0 14px; }
  .wholesale-keys-oygold strong { font-size: 26px; }
  .wholesale-keys-oygold span { font-size: 10px; letter-spacing: .1em; }
  .terms-tab-oygold, .terms-tabs-bg-oygold { width: 130px; }
  .terms-tabs-oygold.is-second .terms-tabs-bg-oygold { transform: translateX(130px); }
  .terms-card-oygold { padding: 30px 24px; }
  .terms-card-oygold h3 { font-size: 23px; }
  .terms-num-oygold { font-size: 48px; right: 20px; }
  .steps-oygold { margin-top: 56px; gap: 20px; row-gap: 36px; }
  .step-oygold h3 { font-size: 17px; }
  .step-oygold p { font-size: 13px; }
  .gallery-grid-oygold { grid-template-columns: repeat(2, 1fr); gap: 12px; padding-bottom: 30px; }
  .gallery-item-oygold:nth-child(even) { margin-top: 30px; margin-bottom: -30px; }
  .gallery-item-oygold:nth-child(4n+1) { border-radius: 12px; }
  .gallery-item-oygold:nth-child(odd) { border-radius: 120px 120px 12px 12px; }
  .gallery-item-oygold { border-radius: 12px; }
  .contact-side-oygold { min-height: 0; height: auto; display: flex; flex-direction: column; }
  .contact-map-oygold { position: relative; height: 260px; }
  .contact-card-oygold { position: relative; left: auto; right: auto; bottom: auto; border-radius: 0; }
  .contact-form-wrap-oygold { padding: 40px 22px; }
  .btn-submit-oygold { width: 100%; }
  .benefits-oygold { padding: 60px 0; }
  .benefits-grid-oygold { gap: 20px; row-gap: 36px; }
  .benefit-icon-oygold { width: 64px; height: 64px; font-size: 22px; }
  .benefit-oygold h3 { font-size: 16px; }
  .footer-main-oygold { padding: 64px 0 20px; }
  .footer-bottom-oygold { justify-content: center; text-align: center; }
  .cookie-oygold { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .legal-body-oygold { padding: 56px 0 72px; }
}
@media (max-width: 575.98px) {
  .topbar-oygold { font-size: 11px; }
  .logo-text-oygold { font-size: 21px; }
  .logo-oygold img { width: 34px; }
  .btn-contact-oygold { padding: 5px; }
  .hero-buttons-oygold > a { flex: 1 1 100%; }
  .hero-points-oygold li { padding: 0 12px; }
  .hero-points-oygold strong { font-size: 21px; }
  .hero-points-oygold span { font-size: 11px; }
  .lightbox-nav-oygold { width: 40px; height: 40px; }
  .to-top-oygold { width: 44px; height: 44px; right: 14px; bottom: 14px; }
}

@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-oygold, .hero-anim-oygold { opacity: 1; transform: none; }
}
