:root {
  --color-ink: #171310;
  --color-ink-soft: #2f2924;
  --color-paper: #f7f4ee;
  --color-paper-strong: #fffdf8;
  --color-stone: #e7e0d5;
  --color-gold: #b9853b;
  --color-gold-soft: #d7b069;
  --color-wine: #6b2425;
  --color-blue: #2b6f8e;
  --color-text: #2b2927;
  --color-muted: #70685f;
  --shadow-soft: 0 24px 70px rgba(28, 20, 12, 0.16);
  --shadow-card: 0 18px 44px rgba(37, 26, 14, 0.12);
  --container: 1160px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Noto Sans", Arial, sans-serif;
  color: var(--color-text);
  background: #fffaf2;
  line-height: 1.65;
  overflow-x: hidden;
  padding-top: 92px;
}

body.has-lightbox {
  overflow: hidden;
}

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

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

p,
li,
.hero-panel span {
  overflow-wrap: anywhere;
  word-break: break-word;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: calc(100% - 40px);
  max-width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(35, 29, 24, 0.94);
  border-bottom: 1px solid rgba(215, 176, 105, 0.18);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(35, 29, 24, 0.98);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.nav-shell {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 0 0 auto;
}

.brand__mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #fbf5e6;
  border: 1px solid rgba(215, 176, 105, 0.45);
  flex: 0 0 auto;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}

.brand__text {
  display: grid;
  line-height: 1.12;
  color: var(--color-paper);
}

.brand__text span,
.brand__text small {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-gold-soft);
}

.brand__text strong {
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.28rem;
  color: #fff9ee;
}

.brand__text small {
  margin-top: 4px;
  color: rgba(255, 249, 238, 0.78);
}

.brand__owner {
  color: #fff9ee !important;
}

.brand__service {
  margin-top: 1px !important;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  min-width: 0;
}

.primary-nav a,
.nav-parent {
  position: relative;
  padding: 12px 10px;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  color: rgba(255, 249, 238, 0.86);
  font-family: inherit;
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
}

.nav-group {
  position: relative;
}

.primary-nav a::after,
.nav-parent::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 2px;
  background: var(--color-gold-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after,
.nav-group:hover .nav-parent::after,
.nav-group.is-open .nav-parent::after,
.nav-group.is-active .nav-parent::after {
  transform: scaleX(1);
}

.primary-nav a.is-active,
.nav-group.is-active .nav-parent {
  color: #fff;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-parent::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  order: 2;
  opacity: 0.76;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 26px);
  left: 50%;
  z-index: 60;
  width: 430px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  padding: 10px;
  border: 1px solid rgba(215, 176, 105, 0.24);
  border-radius: 8px;
  background: rgba(23, 19, 16, 0.98);
  box-shadow: 0 18px 40px rgba(8, 6, 5, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-submenu[hidden] {
  display: none !important;
}

.nav-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -26px;
  height: 26px;
}

.nav-group.is-open .nav-submenu:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  white-space: normal;
  font-size: 0.86rem;
  line-height: 1.25;
}

.nav-submenu a::after {
  content: none;
}

.nav-submenu a:hover,
.nav-submenu a.is-active {
  background: rgba(215, 176, 105, 0.14);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 249, 238, 0.24);
  border-radius: 8px;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff9ee;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff9ee;
  background-color: var(--color-ink);
  background-size: cover;
  background-position: center;
}

.home-hero {
  min-height: 760px;
  display: grid;
  align-items: end;
  padding: 96px 0 0;
}

.page-hero {
  min-height: 470px;
  display: grid;
  align-items: center;
  padding: 98px 0 86px;
}

.page-hero--compact {
  min-height: 390px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 19, 16, 0.72), rgba(23, 19, 16, 0.42) 48%, rgba(23, 19, 16, 0.18)),
    linear-gradient(0deg, rgba(23, 19, 16, 0.46), rgba(23, 19, 16, 0.04));
}

.hero__content,
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding-bottom: 78px;
}

.page-hero__content {
  padding-bottom: 0;
}

.hero-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0 0 16px;
  color: rgba(255, 249, 238, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-breadcrumbs a {
  color: rgba(255, 249, 238, 0.82);
  transition: color 160ms ease;
}

.hero-breadcrumbs a:hover {
  color: var(--color-gold-soft);
}

.hero-breadcrumbs span[aria-current="page"] {
  color: var(--color-gold-soft);
}

.hero-breadcrumbs__sep {
  color: rgba(255, 249, 238, 0.42);
}

.hero__eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--color-gold-soft);
  font-weight: 800;
  font-size: 0.9rem;
}

.hero h1,
.page-hero h1,
.intro-band h2,
.section-heading h2,
.split-copy h2,
.feature-band h2,
.two-column h2,
.valuation-copy h2,
.contact-details h2,
.footer-cta h2 {
  margin: 0;
  font-family: "Noto Serif", Georgia, serif;
  line-height: 1.12;
  color: var(--color-ink);
  overflow-wrap: anywhere;
}

.hero h1,
.page-hero h1 {
  color: #fff9ee;
  font-size: 3.45rem;
  max-width: 760px;
}

.hero__lead,
.page-hero p:not(.hero__eyebrow) {
  margin: 22px 0 0;
  max-width: 660px;
  color: rgba(255, 249, 238, 0.86);
  font-size: 1.16rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: #1b140c;
  background: linear-gradient(135deg, var(--color-gold-soft), var(--color-gold));
  box-shadow: 0 12px 30px rgba(185, 133, 59, 0.28);
}

.btn--ghost {
  color: #fff9ee;
  border-color: rgba(255, 249, 238, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.btn--light {
  color: var(--color-ink);
  background: #fff9ee;
}

.btn--outline-dark {
  color: var(--color-ink);
  border-color: rgba(23, 19, 16, 0.28);
  background: transparent;
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 251, 242, 0.98);
  box-shadow: var(--shadow-soft);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.hero-panel div {
  min-height: 132px;
  padding: 28px;
  border-right: 1px solid var(--color-stone);
  color: var(--color-text);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.18rem;
  color: var(--color-ink);
}

.hero-panel span {
  margin-top: 8px;
  color: var(--color-muted);
}

.home-image-pair {
  background: #fbf7ef;
  padding: 0 0 98px;
}

.home-image-pair__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: end;
  justify-items: center;
}

.home-image-pair img {
  width: auto;
  max-width: 100%;
  height: clamp(300px, 19vw, 340px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(28, 20, 12, 0.13);
}

.home-image-pair img:nth-child(2) {
  transform: none;
}

.intro-band {
  position: relative;
  overflow: hidden;
  background: #fbf7ef;
  padding: 104px 0 52px;
  text-align: center;
}

.intro-band__inner {
  position: relative;
  max-width: 850px;
}

.section-watermark {
  position: absolute;
  inset: -52px 0 auto;
  z-index: 0;
  font-family: "Noto Serif", Georgia, serif;
  font-weight: 800;
  font-size: 6.8rem;
  line-height: 1;
  color: rgba(43, 111, 142, 0.08);
  pointer-events: none;
}

.intro-band .section-kicker,
.intro-band h2,
.intro-band p:not(.section-kicker) {
  position: relative;
  z-index: 1;
}

.intro-band h2 {
  font-size: 2.75rem;
}

.intro-band p:not(.section-kicker) {
  max-width: 690px;
  margin: 22px auto 0;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.section {
  padding: 106px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.feature-band h2,
.two-column h2,
.valuation-copy h2,
.contact-details h2,
.footer-cta h2 {
  font-size: 2.45rem;
}

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

.category-card,
.process-card,
.valuation-list article {
  display: block;
  min-height: 245px;
  padding: 30px;
  border: 1px solid rgba(185, 133, 59, 0.22);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 12px 34px rgba(45, 35, 23, 0.07);
}

.category-card span,
.process-card span,
.valuation-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  margin-bottom: 22px;
  border: 1px solid rgba(185, 133, 59, 0.34);
  border-radius: 999px;
  color: var(--color-gold);
  font-weight: 800;
}

.category-card h3,
.process-card h3,
.buying-grid h3,
.product-strip h3 {
  margin: 0;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.35rem;
  color: var(--color-ink);
}

.category-card:hover h3 {
  color: var(--color-wine);
}

.category-card p,
.process-card p,
.buying-grid p,
.split-copy p,
.feature-band p,
.two-column p,
.valuation-copy p,
.valuation-list p,
.contact-details p,
.footer-brand p {
  color: var(--color-muted);
}

.split-section {
  background: linear-gradient(180deg, #fffdf8, #fbf7ef);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 70px;
}

.split-grid--reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.split-grid--reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(185, 133, 59, 0.32);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: var(--shadow-card);
}

.split-media::before {
  content: none;
}

.split-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.split-copy h2 {
  margin-bottom: 22px;
}

.step-list {
  display: grid;
  gap: 16px;
  margin: 30px 0;
}

.step-list div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}

.step-list span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-ink);
  color: var(--color-gold-soft);
  font-weight: 800;
}

.step-list p {
  margin: 3px 0 0;
}

.text-link {
  display: inline-flex;
  color: var(--color-wine);
  font-weight: 800;
  border-bottom: 2px solid var(--color-gold-soft);
}

.feature-band {
  background:
    linear-gradient(90deg, rgba(23, 19, 16, 0.82), rgba(47, 41, 36, 0.66)),
    url("../../images/gold-wedding-rings-lie-on-an-antique-jewelry-box-2025-03-24-08-56-36-utc-scaled-rbi4rvj4a8ell19naec01rl7ihs3l47u1v2kzg9p2g.jpg") center / cover;
  color: #fff9ee;
  padding: 92px 0;
}

.feature-band--light {
  background:
    linear-gradient(90deg, rgba(247, 244, 238, 0.96), rgba(247, 244, 238, 0.88)),
    url("../../images/file-2-1.jpg") center / cover;
  color: var(--color-text);
}

.feature-band__inner {
  max-width: 760px;
}

.feature-band h2 {
  color: inherit;
}

.feature-band .section-kicker {
  color: var(--color-gold-soft);
}

.feature-band p {
  max-width: 690px;
  color: rgba(255, 249, 238, 0.78);
}

.feature-band--light p {
  color: var(--color-muted);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.preview-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(28, 20, 12, 0.1);
}

.section-action {
  margin-top: 36px;
  text-align: center;
}

.two-column {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 44px;
}

.two-column p {
  margin-top: 34px;
  font-size: 1.05rem;
}

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

.buying-grid article,
.product-strip article,
.category-link-card {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-paper-strong);
  box-shadow: var(--shadow-card);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-link-card:hover,
.category-link-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(42, 33, 28, 0.16);
}

.category-link-card:hover h3,
.category-link-card:focus-visible h3 {
  color: var(--color-wine);
}

.buying-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.buying-grid h3,
.buying-grid p {
  padding: 0 22px;
}

.buying-grid h3 {
  margin-top: 22px;
}

.buying-grid p {
  margin-bottom: 24px;
}

.process-section {
  background: var(--color-paper);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-strip img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.product-strip h3 {
  padding: 18px 20px 8px;
}

.product-strip p {
  padding: 0 20px 24px;
  margin: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.valuation-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

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

.valuation-list article {
  min-height: 205px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
}

.check-list p {
  margin: 0;
  padding: 14px 16px;
  border-left: 3px solid var(--color-gold);
  background: rgba(255, 253, 248, 0.78);
}

.category-hero .page-hero__content {
  max-width: 840px;
}

.category-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 70px;
  align-items: start;
}

.category-article {
  max-width: 760px;
}

.category-article h2 {
  margin-bottom: 24px;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 2.18rem;
  line-height: 1.14;
  color: var(--color-ink);
}

.category-article p:not(.section-kicker) {
  color: var(--color-muted);
  font-size: 1.04rem;
}

.category-aside {
  position: sticky;
  top: 122px;
  display: grid;
  gap: 18px;
}

.category-aside img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.category-aside__box {
  padding: 26px;
  border: 1px solid rgba(185, 133, 59, 0.22);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 14px 34px rgba(45, 35, 23, 0.08);
}

.category-aside__box h2 {
  margin: 0 0 16px;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.34rem;
}

.category-aside__box ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.category-aside__box li {
  position: relative;
  padding-left: 18px;
  color: var(--color-muted);
}

.category-aside__box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold);
}

.related-categories {
  background: #fbf7ef;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.related-card {
  min-height: 150px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(185, 133, 59, 0.22);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 12px 28px rgba(45, 35, 23, 0.07);
}

.related-card span {
  color: var(--color-gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.related-card strong {
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.15;
  color: var(--color-ink);
}

.related-card:hover strong {
  color: var(--color-wine);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-bar button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--color-stone);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--color-text);
  font-weight: 800;
  cursor: pointer;
}

.filter-bar button.is-active {
  border-color: var(--color-gold);
  background: var(--color-ink);
  color: #fff9ee;
}

.masonry-gallery {
  columns: 4 220px;
  column-gap: 16px;
}

.gallery-item {
  display: block;
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-stone);
  cursor: pointer;
  break-inside: avoid;
  box-shadow: 0 10px 28px rgba(37, 26, 14, 0.12);
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 180ms ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(12, 10, 8, 0.9);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-height: calc(100vh - 96px);
  width: auto;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 249, 238, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff9ee;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 70px;
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}

.contact-icon {
  color: var(--color-gold-soft);
  font-weight: 800;
}

.contact-list--large {
  margin: 30px 0;
}

.instant-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 30px;
}

.instant-phone {
  gap: 10px;
}

.instant-phone img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.contact-banner {
  position: relative;
  min-width: 210px;
  flex: 1 1 210px;
  display: grid;
  gap: 2px;
  padding: 15px 18px 16px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 16px 34px rgba(28, 20, 12, 0.16);
}

.contact-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 42%);
  pointer-events: none;
}

.contact-banner span,
.contact-banner strong,
.contact-banner small {
  position: relative;
  z-index: 1;
}

.contact-banner span {
  font-weight: 900;
  font-size: 0.9rem;
}

.contact-banner__brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.contact-banner__brand img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.contact-banner strong {
  font-size: 1rem;
  line-height: 1.25;
}

.contact-banner small {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.contact-banner--viber {
  background: linear-gradient(135deg, #6f43b6, #4d2c85);
}

.contact-banner--whatsapp {
  background: linear-gradient(135deg, #1f9d63, #126b46);
}

.map-wrap {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--color-stone);
  box-shadow: var(--shadow-card);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 330px;
  border: 0;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background: var(--color-paper);
  border: 1px solid var(--color-stone);
  box-shadow: var(--shadow-card);
  scroll-margin-top: 126px;
}

.form-alert {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 700;
}

.form-alert--success {
  border: 1px solid rgba(31, 157, 99, 0.28);
  background: rgba(31, 157, 99, 0.1);
  color: #126b46;
}

.form-alert--error {
  border: 1px solid rgba(107, 36, 37, 0.28);
  background: rgba(107, 36, 37, 0.08);
  color: var(--color-wine);
}

.form-alert span {
  display: block;
  font-weight: 600;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--color-ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7cec1;
  border-radius: 8px;
  background: #fffdf8;
  color: var(--color-text);
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(185, 133, 59, 0.35);
  border-color: var(--color-gold);
}

.footer-cta {
  background: var(--color-wine);
  color: #fff9ee;
  padding: 58px 0;
}

.footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.footer-cta h2 {
  color: #fff9ee;
  max-width: 690px;
}

.footer-cta p:last-child {
  max-width: 720px;
  color: rgba(255, 249, 238, 0.78);
}

.site-footer {
  background: var(--color-ink);
  color: rgba(255, 249, 238, 0.86);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 70px;
  padding: 78px 0;
}

.brand--footer .brand__mark {
  width: 70px;
  height: 70px;
}

.footer-brand p {
  max-width: 390px;
  margin-top: 22px;
  color: rgba(255, 249, 238, 0.72);
}

.site-footer h2 {
  margin: 0 0 24px;
  color: #fff9ee;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.3rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--color-gold-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 249, 238, 0.1);
  background: #0d0b0a;
}

.footer-bottom__inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.9rem;
  color: rgba(255, 249, 238, 0.68);
}

.footer-powered {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 249, 238, 0.68);
  font-weight: 700;
  white-space: nowrap;
}

.footer-powered img {
  display: block;
  width: 142px;
  height: auto;
  opacity: 0.95;
}

.sticky-contact-safe-space {
  height: 96px;
  background: #0d0b0a;
}

.sticky-contact-bar {
  position: fixed;
  left: 50%;
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 70;
  width: min(460px, calc(100vw - 28px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  transform: translateX(-50%);
  pointer-events: none;
}

.sticky-contact {
  min-width: 0;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 18px 42px rgba(18, 12, 8, 0.28);
  pointer-events: auto;
}

.sticky-contact img {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.sticky-contact span {
  min-width: 0;
  display: grid;
  line-height: 1.12;
}

.sticky-contact strong,
.sticky-contact small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-contact strong {
  font-size: 0.98rem;
  font-weight: 900;
}

.sticky-contact small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
}

.sticky-contact--viber {
  background: linear-gradient(135deg, #6f43b6, #4d2c85);
}

.sticky-contact--whatsapp {
  background: linear-gradient(135deg, #1f9d63, #126b46);
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: calc(max(14px, env(safe-area-inset-bottom)) + 72px);
  z-index: 90;
  width: min(760px, calc(100vw - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(215, 176, 105, 0.36);
  border-radius: 8px;
  background: rgba(23, 19, 16, 0.98);
  color: #fff9ee;
  box-shadow: 0 22px 54px rgba(10, 8, 6, 0.34);
  transform: translateX(-50%);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent p {
  max-width: 510px;
  margin: 0;
  color: rgba(255, 249, 238, 0.82);
  font-size: 0.92rem;
  line-height: 1.45;
}

.cookie-consent .btn {
  min-height: 44px;
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 1020px) {
  .hero h1,
  .page-hero h1 {
    font-size: 2.72rem;
  }

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

  .buying-grid,
  .product-strip,
  .preview-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-grid,
  .split-grid--reverse,
  .two-column,
  .valuation-layout,
  .category-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-aside {
    position: static;
  }

  .split-grid--reverse .split-media {
    order: 0;
  }
}

@media (max-width: 1180px) {
  body {
    padding-top: 82px;
  }

  .nav-shell {
    min-height: 82px;
  }

  .brand__mark {
    width: 54px;
    height: 54px;
  }

  .brand__text strong {
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 82px;
    left: 0;
    right: auto;
    bottom: calc(max(14px, env(safe-area-inset-bottom)) + 76px);
    z-index: 1;
    width: min(380px, calc(100vw - 24px));
    display: grid;
    gap: 0;
    max-height: none;
    overflow-y: auto;
    padding: 10px 20px 18px;
    background: rgba(35, 29, 24, 0.98);
    border-right: 1px solid rgba(215, 176, 105, 0.16);
    border-bottom: 1px solid rgba(215, 176, 105, 0.16);
    box-shadow: 18px 20px 46px rgba(8, 6, 5, 0.26);
    transform: translateX(-112%);
    transition: transform 180ms ease;
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav a,
  .nav-parent {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 249, 238, 0.08);
  }

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

  .primary-nav a::after,
  .nav-parent::after {
    left: 0;
    right: 0;
  }

  .nav-submenu {
    position: static;
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
    display: none;
    padding: 0 0 8px 16px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-submenu::before {
    content: none;
  }

  .nav-group.is-open .nav-submenu {
    display: grid;
  }

  .nav-group.is-open .nav-submenu:not([hidden]) {
    transform: none;
  }

  .nav-submenu a {
    padding: 10px 0;
    white-space: normal;
    font-size: 0.9rem;
  }
}

@media (max-width: 860px) {
  body {
    padding-top: 82px;
  }

  .nav-shell {
    min-height: 82px;
  }

  .brand__mark {
    width: 54px;
    height: 54px;
  }

  .brand__text strong {
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 82px;
    left: 0;
    right: auto;
    bottom: calc(max(14px, env(safe-area-inset-bottom)) + 76px);
    z-index: 1;
    width: min(380px, calc(100vw - 24px));
    display: grid;
    gap: 0;
    max-height: none;
    overflow-y: auto;
    padding: 10px 20px 18px;
    background: rgba(35, 29, 24, 0.98);
    border-right: 1px solid rgba(215, 176, 105, 0.16);
    border-bottom: 1px solid rgba(215, 176, 105, 0.16);
    box-shadow: 18px 20px 46px rgba(8, 6, 5, 0.26);
    transform: translateX(-112%);
    transition: transform 180ms ease;
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav a,
  .nav-parent {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 249, 238, 0.08);
  }

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

  .primary-nav a::after,
  .nav-parent::after {
    left: 0;
    right: 0;
  }

  .nav-submenu {
    position: static;
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
    display: none;
    padding: 0 0 8px 16px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-submenu::before {
    content: none;
  }

  .nav-group.is-open .nav-submenu {
    display: grid;
  }

  .nav-group.is-open .nav-submenu:not([hidden]) {
    transform: none;
  }

  .nav-submenu a {
    padding: 10px 0;
    white-space: normal;
    font-size: 0.9rem;
  }

  .home-hero {
    min-height: 700px;
    padding-top: 68px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    border-radius: 8px 8px 0 0;
  }

  .hero-panel div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--color-stone);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .home-image-pair {
    padding-top: 54px;
  }

  .home-image-pair__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-image-pair img {
    width: 100%;
    height: auto;
  }

  .home-image-pair img:nth-child(2) {
    transform: none;
  }

  .section-watermark {
    inset: -18px 50% auto auto;
    max-width: calc(100vw - 28px);
    font-size: clamp(2rem, 11vw, 3.2rem);
    line-height: 1;
    transform: translateX(50%);
  }
}

@media (max-width: 1180px) {
  .primary-nav.is-open {
    transition: none;
    transform: translateX(0) !important;
  }

  .primary-nav {
    align-content: start;
    justify-items: stretch;
    text-align: left;
  }

  .nav-group {
    width: 100%;
  }

  .primary-nav > a,
  .primary-nav .nav-parent {
    width: 100%;
    height: 58px;
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 0;
    text-align: left;
    justify-self: stretch;
  }

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

  .primary-nav .nav-parent {
    justify-content: space-between;
  }

  .primary-nav a::after,
  .nav-parent::after {
    bottom: 0;
  }

  .nav-submenu {
    padding: 6px 0 10px;
  }

  .nav-submenu a {
    height: 46px;
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0;
    text-align: left;
  }
}

@media (max-width: 1180px) {
  body {
    --mobile-nav-width: min(520px, calc(100vw - 16px));
  }

  body.has-mobile-nav {
    overflow: hidden;
  }

  body.has-mobile-nav::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 75;
    background: rgba(0, 0, 0, 0.58);
  }

  .site-header {
    z-index: 80;
  }

  .primary-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    width: var(--mobile-nav-width);
    padding: clamp(128px, 22vh, 176px) 26px 122px;
    gap: 0;
    align-content: start;
    align-items: stretch;
    justify-content: stretch;
    justify-items: stretch;
    background: rgba(13, 11, 10, 0.985);
    border-right: 1px solid rgba(255, 249, 238, 0.07);
    border-bottom: 0;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-105%);
    transition: transform 220ms ease;
    visibility: hidden;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) !important;
    transition: transform 220ms ease;
    visibility: visible;
  }

  .nav-toggle.is-open {
    position: fixed;
    top: 22px;
    left: calc(var(--mobile-nav-width) - 72px);
    z-index: 120;
    width: 50px;
    height: 50px;
    border-color: rgba(255, 249, 238, 0.22);
    background: rgba(255, 249, 238, 0.035);
  }

  .nav-toggle.is-open span {
    background: #d72727;
  }

  .nav-group {
    width: 100%;
  }

  .primary-nav > a,
  .primary-nav .nav-parent {
    width: 100%;
    max-width: none;
    height: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    border-bottom: 1px solid rgba(255, 249, 238, 0.09);
    color: rgba(255, 249, 238, 0.9);
    font-size: 1rem;
    line-height: 1;
    text-align: left;
    justify-self: stretch;
  }

  .primary-nav .nav-parent {
    justify-content: space-between;
  }

  .primary-nav a::after,
  .nav-parent::after {
    content: none;
  }

  .nav-parent::before {
    margin-left: auto;
    transition: transform 180ms ease;
  }

  .nav-group.is-open .nav-parent::before {
    transform: rotate(180deg);
  }

  .primary-nav > a.is-active,
  .nav-group.is-active .nav-parent {
    color: #fff9ee;
  }

  .nav-submenu {
    position: static;
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
    display: none;
    margin: 0;
    padding: 4px 0 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-submenu::before {
    content: none;
  }

  .nav-group.is-open .nav-submenu {
    display: grid;
  }

  .nav-group.is-open .nav-submenu:not([hidden]) {
    transform: none;
  }

  .nav-submenu a {
    height: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 0 0 16px;
    border-bottom: 1px solid rgba(255, 249, 238, 0.06);
    color: rgba(255, 249, 238, 0.78);
    white-space: normal;
    font-size: 0.92rem;
    line-height: 1.2;
    text-align: left;
  }

  body.has-mobile-nav .sticky-contact-bar {
    left: calc(var(--mobile-nav-width) / 2);
    z-index: 120;
    width: min(430px, calc(var(--mobile-nav-width) - 28px));
    transform: translateX(-50%);
  }
}

@media (max-width: 1180px) and (min-height: 760px) {
  .primary-nav {
    padding-top: clamp(154px, 28vh, 230px);
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 28px);
  }

  .brand {
    gap: 10px;
  }

  .brand__text small {
    display: none;
  }

  .brand__text .brand__owner {
    display: block;
  }

  .contact-form {
    scroll-margin-top: 112px;
  }

  .home-hero {
    min-height: 680px;
  }

  .home-image-pair img {
    width: 100%;
    height: auto;
  }

  .page-hero {
    min-height: 420px;
    padding: 78px 0 64px;
  }

  .hero__content {
    padding-bottom: 48px;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 340px;
    font-size: 1.72rem;
  }

  .hero__lead,
  .page-hero p:not(.hero__eyebrow) {
    font-size: 1rem;
  }

  .hero__actions,
  .footer-cta__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .intro-band,
  .section {
    padding: 72px 0;
  }

  .intro-band h2,
  .section-heading h2,
  .split-copy h2,
  .feature-band h2,
  .two-column h2,
  .category-article h2,
  .valuation-copy h2,
  .contact-details h2,
  .footer-cta h2 {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.7rem;
  }

  .split-copy h2,
  .two-column h2,
  .category-article h2,
  .valuation-copy h2,
  .contact-details h2,
  .footer-cta h2 {
    margin-left: 0;
    margin-right: 0;
  }

  .category-grid,
  .process-grid,
  .buying-grid,
  .product-strip,
  .preview-grid,
  .valuation-list,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .process-card,
  .valuation-list article,
  .related-card {
    min-height: auto;
  }

  .split-grid,
  .split-grid--reverse,
  .two-column,
  .valuation-layout,
  .contact-grid,
  .footer-grid {
    gap: 34px;
  }

  .preview-grid img,
  .product-strip img {
    height: 260px;
  }

  .buying-grid img {
    height: 250px;
  }

  .footer-bottom__inner {
    min-height: 74px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }

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

  .footer-powered img {
    width: 126px;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100vw - 28px) !important;
    max-width: 362px !important;
  }

  .hero__content,
  .page-hero__content,
  .intro-band__inner,
  .section-heading {
    width: calc(100vw - 28px) !important;
    max-width: 362px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .section-watermark {
    inset: -10px 50% auto auto;
    max-width: calc(100vw - 28px);
    font-size: clamp(2.05rem, 11vw, 2.7rem);
    transform: translateX(50%);
  }

  .intro-band .section-kicker {
    font-size: 0.78rem;
  }

  .intro-band h2 {
    font-size: 1.58rem;
    line-height: 1.12;
  }

  .intro-band p:not(.section-kicker) {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero h1,
  .page-hero h1,
  .hero__lead,
  .intro-band h2,
  .intro-band p:not(.section-kicker),
  .section-heading h2,
  .category-card p,
  .hero-panel span {
    max-width: 100%;
  }

  .sticky-contact-safe-space {
    height: 86px;
  }

  .sticky-contact-bar {
    width: calc(100vw - 20px);
    gap: 8px;
  }

  .sticky-contact {
    min-height: 54px;
    gap: 7px;
    padding: 8px 9px;
  }

  .sticky-contact img {
    width: 27px;
    height: 27px;
  }

  .sticky-contact strong {
    font-size: 0.86rem;
  }

  .sticky-contact small {
    font-size: 0.68rem;
  }

  .cookie-consent {
    width: calc(100vw - 20px);
    bottom: calc(max(14px, env(safe-area-inset-bottom)) + 68px);
    display: grid;
    gap: 12px;
    padding: 14px;
  }

  .cookie-consent p {
    max-width: none;
    font-size: 0.84rem;
  }

  .cookie-consent .btn {
    width: 100%;
  }
}
