:root {
  color-scheme: light;
  --navy: #111111;
  --navy-soft: #2a2418;
  --ink-muted: #5f5a50;
  --line: #dfd7ca;
  --panel: #f3f0ea;
  --white: #ffffff;
  --page-bg: #fcfbf8;
  --gold: #c8a24a;
  --gold-soft: #eadcaa;
  --gold-deep: #8b6a2b;
  --charcoal: #0f0f0f;
  --ease-luxury: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-dramatic: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--page-bg);
  color: var(--navy);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  background-color: var(--page-bg);
}

body {
  overflow-x: hidden;
  background-color: var(--page-bg);
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light;
    --navy: #111111;
    --navy-soft: #2a2418;
    --ink-muted: #5f5a50;
    --line: #dfd7ca;
    --panel: #f3f0ea;
    --white: #ffffff;
    --page-bg: #fcfbf8;
    --gold: #c8a24a;
    --gold-soft: #eadcaa;
    --gold-deep: #8b6a2b;
    --charcoal: #0f0f0f;
  }

  html,
  body,
  main,
  section,
  footer {
    background-color: var(--page-bg);
    color: var(--navy);
  }
}

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

button {
  background-color: transparent;
  color: inherit;
  font: inherit;
}

input,
textarea,
select {
  min-width: 0;
  color-scheme: light;
  background-color: #fff;
  color: var(--navy);
}

input:not([type="radio"]):not([type="checkbox"]):not([type="range"]),
textarea,
select {
  width: 100%;
}

.hero {
  --hero-header-offset: 112px;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--page-bg);
}

.hero::before {
  display: none;
  content: none;
}

.grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--line-left);
  z-index: 1;
  width: 1px;
  pointer-events: none;
  transform: translateX(calc(var(--grid-shift, 0) * 1px));
  transition: transform 900ms var(--ease-luxury);
}

.grid-line::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: var(--line);
  transform: scaleY(0);
  transform-origin: top;
  animation: drawLine 1300ms var(--ease-luxury) forwards;
  animation-delay: var(--line-delay, 0ms);
}

.line-a {
  --line-left: 0;
  --line-delay: 40ms;
}

.line-b {
  --line-left: 17.2vw;
  --line-delay: 120ms;
}

.line-c {
  --line-left: 44.7vw;
  --line-delay: 210ms;
}

.line-d {
  --line-left: 82.8vw;
  --line-delay: 300ms;
}

.grid-line,
.shop-grid-line,
.checkout-grid-line {
  display: none;
}

.topbar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 12;
  height: 112px;
}

.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: #000;
  box-shadow: 0 1px 0 rgba(200, 162, 74, 0.42);
  transform: scaleX(0);
  transform-origin: left;
  animation: ruleIn 900ms var(--ease-luxury) 420ms forwards;
}

.brand,
.hamburger,
.shop-back-link,
.nav-links,
.actions {
  opacity: 0;
  animation: chromeIn 820ms var(--ease-luxury) forwards;
}

.brand {
  position: absolute;
  top: 20px;
  left: 4.5vw;
  display: block;
  width: 128px;
  height: 66px;
  animation-delay: 560ms;
  transform-origin: left center;
  transition: filter 560ms ease, transform 760ms var(--ease-dramatic);
}

.brand::after {
  content: "";
  position: absolute;
  inset: 7px -16px 5px -10px;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(200, 162, 74, 0.22), rgba(17, 17, 17, 0) 68%);
  opacity: 0;
  filter: blur(12px);
  transform: scaleX(0.6);
  transition: opacity 560ms ease, transform 760ms var(--ease-dramatic);
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: transform 760ms var(--ease-dramatic);
}

.brand:hover,
.brand:focus-visible {
  filter: contrast(1.1) sepia(0.16) saturate(1.18);
  transform: translateY(-3px) scale(1.035);
}

.brand:hover::after,
.brand:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.brand:hover img,
.brand:focus-visible img {
  transform: translateX(2px);
}

.hamburger {
  position: absolute;
  top: 47px;
  left: 17.2vw;
  width: 41px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateX(-1px);
  animation-delay: 650ms;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 37px;
  height: 1px;
  background: var(--navy);
  transition: width 360ms var(--ease-luxury), transform 360ms var(--ease-luxury);
}

.hamburger span:first-child {
  top: 6px;
}

.hamburger span:last-child {
  top: 14px;
}

.hamburger:hover span:first-child {
  width: 31px;
}

.hamburger:hover span:last-child {
  transform: translateX(4px);
}

.shop-back-link {
  position: absolute;
  top: 51px;
  left: 17.2vw;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  animation-delay: 650ms;
  transition: color 360ms ease, transform 420ms var(--ease-luxury);
}

.shop-back-link svg {
  display: block;
  width: 36px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
  transition: transform 420ms var(--ease-luxury);
}

.shop-back-link:hover,
.shop-back-link:focus-visible {
  color: var(--gold-deep);
  transform: translateX(-2px);
}

.shop-back-link:hover svg,
.shop-back-link:focus-visible svg {
  transform: translateX(-5px);
}

.nav-links {
  position: absolute;
  top: 50px;
  left: 50%;
  display: flex;
  gap: 34px;
  align-items: center;
  transform: translateX(-50%);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  animation-delay: 720ms;
}

.nav-links a {
  position: relative;
  opacity: 0.88;
  transition: opacity 420ms ease, transform 520ms var(--ease-dramatic);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 520ms ease, transform 720ms var(--ease-dramatic);
}

.nav-links a:hover {
  color: var(--gold-deep);
  opacity: 1;
  transform: translateY(-2px);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  opacity: 0.72;
  transform: scaleX(1);
}

.actions {
  position: absolute;
  top: 36px;
  right: 5.1vw;
  display: flex;
  gap: 24px;
  align-items: center;
  animation-delay: 800ms;
}

.icon-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: color 360ms ease, transform 360ms var(--ease-luxury);
}

.icon-button svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.icon-button:hover {
  color: var(--gold-deep);
  transform: translateY(-2px);
}

.favourite-button[aria-current="page"] svg {
  fill: currentColor;
}

.cart-button,
.favourite-button {
  position: relative;
}

.cart-button svg,
.favourite-button svg {
  width: 28px;
  height: 28px;
}

.cart-count,
.favourite-count {
  position: absolute;
  top: -4px;
  right: -5px;
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  transform: scale(1);
  transform-origin: center;
  transition: background 320ms ease, color 320ms ease, transform 420ms var(--ease-luxury);
}

.cart-button:hover .cart-count,
.cart-button.is-cart-updated .cart-count,
.favourite-button:hover .favourite-count,
.favourite-button.is-favourite-updated .favourite-count {
  transform: scale(1.12);
}

.shop-page.is-detail .cart-count {
  border-color: rgba(17, 17, 17, 0.18);
  background: var(--gold);
  color: #111;
}

.shop-body {
  background: var(--page-bg);
}

.shop-page {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--page-bg);
  color: var(--navy);
}

.shop-grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--shop-line-left);
  z-index: 4;
  width: 1px;
  pointer-events: none;
  transform: translateX(calc(var(--shop-grid-shift, 0) * 1px));
  transition: transform 900ms var(--ease-luxury);
}

.shop-grid-line::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: var(--shop-line-color, rgba(17, 17, 17, 0.1));
  transform: scaleY(0);
  transform-origin: top;
  animation: drawLine 1300ms var(--ease-luxury) forwards;
  animation-delay: var(--shop-line-delay, 0ms);
}

.shop-line-a {
  --shop-line-left: 0;
  --shop-line-delay: 60ms;
}

.shop-line-b {
  --shop-line-left: 17.2vw;
  --shop-line-delay: 140ms;
}

.shop-line-c {
  --shop-line-left: 52vw;
  --shop-line-delay: 220ms;
}

.shop-line-d {
  --shop-line-left: 100vw;
  --shop-line-delay: 300ms;
  --shop-line-color: rgba(255, 255, 255, 0.09);
}

.shop-topbar .nav-links {
  left: 50%;
  color: var(--navy);
}

.shop-topbar .actions,
.shop-topbar .shop-back-link,
.shop-topbar .nav-links a[aria-current="page"] {
  color: var(--navy);
}

.shop-page.is-catalog .shop-topbar .nav-links {
  left: 50%;
  color: var(--navy);
}

.shop-page.is-catalog .shop-topbar .actions {
  color: var(--navy);
}

.shop-page.is-catalog .shop-topbar .shop-back-link {
  color: var(--navy);
}

.shop-page.is-catalog .shop-topbar .nav-links a[aria-current="page"] {
  color: var(--navy);
}

.shop-page.is-catalog .detail-view,
.shop-page.is-detail .catalog-view {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.catalog-view {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(520px, 1.38fr);
  gap: clamp(34px, 5vw, 78px);
  min-height: 100svh;
  padding: 132px 5.2vw 58px 17.2vw;
  overflow: hidden;
  background: var(--page-bg);
}

.catalog-view::before {
  display: none;
  content: none;
}

.catalog-copy,
.catalog-grid,
.catalog-note {
  position: relative;
  z-index: 2;
}

.catalog-copy {
  align-self: center;
  opacity: 0;
  transform: translateY(18px);
  animation: contentIn 980ms var(--ease-luxury) 620ms forwards;
}

.catalog-kicker {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.catalog-copy h1 {
  margin: 0;
  color: var(--navy);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: clamp(76px, 8.2vw, 128px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.88;
}

.catalog-copy p {
  max-width: 320px;
  margin: 24px 0 0;
  color: #6f6042;
  font-size: 15px;
  line-height: 1.58;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 360px;
  margin-top: 34px;
}

.catalog-filters button {
  height: 32px;
  padding: 0 13px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: rgba(255, 255, 255, 0.68);
  color: rgba(17, 17, 17, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  cursor: pointer;
  transition: border-color 320ms ease, color 320ms ease, transform 320ms var(--ease-luxury), background 320ms ease;
}

.catalog-filters button.is-active,
.catalog-filters button:hover {
  border-color: var(--navy);
  background: #fff;
  color: var(--navy);
  transform: translateY(-1px);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  align-self: center;
  background: rgba(17, 17, 17, 0.08);
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.06);
}

.product-card {
  position: relative;
  display: grid;
  min-height: min(31vh, 286px);
  overflow: hidden;
  padding: 18px 20px 20px;
  border: 0;
  background: rgba(252, 251, 248, 0.96);
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  opacity: 0;
  transform: translateY(24px);
  animation: catalogCardIn 900ms var(--ease-luxury) forwards;
  animation-delay: calc(880ms + var(--card-delay, 0ms));
  transition: background 420ms ease, transform 420ms var(--ease-luxury), opacity 360ms ease, filter 360ms ease;
}

.product-card::before,
.product-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.product-card::before {
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 420ms ease;
}

.product-card::after {
  top: 0;
  bottom: 0;
  left: -62%;
  width: 40%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0));
  transform: skewX(-16deg);
  transition: left 780ms var(--ease-luxury);
}

.product-card:hover {
  background: #fff;
  transform: translateY(-5px);
}

.product-card:hover::before,
.product-card.is-active::before {
  border-color: rgba(17, 17, 17, 0.16);
}

.shop-page.is-catalog .product-card.is-active::before {
  border-color: transparent;
}

.product-card:hover::after {
  left: 118%;
}

.product-card.is-filtered-out {
  opacity: 0.18;
  filter: grayscale(1);
  pointer-events: none;
}

.product-index,
.product-category,
.product-meta,
.product-view {
  position: relative;
  z-index: 2;
}

.product-index {
  color: rgba(17, 17, 17, 0.34);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
}

.product-category {
  position: absolute;
  top: 21px;
  right: 20px;
  color: rgba(17, 17, 17, 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.product-image-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  height: 150px;
  place-items: center;
  margin: 22px 0 10px;
}

.product-image-wrap img {
  display: block;
  max-width: 112%;
  max-height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 20px 18px rgba(17, 17, 17, 0.11));
  transform: translateY(0) rotate(0deg) scale(1);
  transition: transform 620ms var(--ease-luxury), filter 420ms ease;
}

.product-card:hover .product-image-wrap img {
  filter: drop-shadow(0 28px 22px rgba(17, 17, 17, 0.14));
  transform: translateY(-8px) rotate(-2deg) scale(1.045);
}

.product-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

.product-meta strong {
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: clamp(25px, 2.1vw, 34px);
  font-weight: 400;
  line-height: 0.96;
}

.product-meta small {
  color: #6f6042;
  font-size: 13px;
  white-space: nowrap;
}

.product-view {
  width: max-content;
  margin-top: 14px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 360ms ease, transform 360ms var(--ease-luxury);
}

.product-card:hover .product-view {
  opacity: 1;
  transform: translateY(0);
}

.catalog-note {
  position: absolute;
  left: 4.5vw;
  bottom: 52px;
  width: 190px;
  color: rgba(17, 17, 17, 0.74);
  opacity: 0;
  animation: contentIn 900ms var(--ease-luxury) 1320ms forwards;
}

.catalog-note span {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.catalog-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.shop-page.is-catalog {
  overflow-y: auto;
  background: var(--page-bg);
}

.shop-menu-page {
  min-height: 100svh;
  overflow-y: auto;
  background: var(--page-bg);
}

.shop-menu {
  min-height: 100svh;
  padding: 126px 20px 20px;
}

.shop-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 14px;
  width: 100%;
  min-height: calc(100svh - 146px);
}

.shop-area-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
  overflow: hidden;
  padding: clamp(24px, 3.2vw, 48px);
  border: 1px solid rgba(17, 17, 17, 0.2);
  background: #faf8f3;
  color: var(--navy);
  opacity: 0;
  transform: translateY(24px);
  animation: catalogCardIn 980ms var(--ease-dramatic) forwards;
  animation-delay: calc(720ms + var(--card-delay, 0ms));
  box-shadow: 0 22px 48px rgba(17, 17, 17, 0.045);
  transition: border-color 620ms ease, box-shadow 760ms ease, transform 820ms var(--ease-dramatic), background 620ms ease, color 620ms ease;
}

.shop-area-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(252, 251, 248, 0.1) 0%, rgba(252, 251, 248, 0.3) 38%, rgba(252, 251, 248, 0.9) 100%),
    linear-gradient(112deg, rgba(17, 17, 17, 0.02), rgba(17, 17, 17, 0.08));
  pointer-events: none;
  transition: opacity 760ms ease, transform 980ms var(--ease-dramatic);
}

.shop-area-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(17, 17, 17, 0.16);
  pointer-events: none;
  transform: scale(0.985);
  transition: border-color 620ms ease, transform 820ms var(--ease-dramatic);
}

.shop-area-card img {
  position: absolute;
  right: clamp(20px, 5vw, 82px);
  top: 50%;
  z-index: 0;
  width: min(54%, 440px);
  max-height: 84%;
  object-fit: contain;
  opacity: 0.22;
  filter: grayscale(0.55) drop-shadow(0 34px 30px rgba(17, 17, 17, 0.1));
  transform: translate3d(0, -46%, 0) rotate(-5deg) scale(1);
  transition: opacity 820ms ease, filter 820ms ease, transform 1100ms var(--ease-dramatic);
}

.shop-area-card:nth-child(2) img {
  right: clamp(18px, 7vw, 108px);
  width: min(46%, 360px);
  opacity: 0.26;
  transform: translate3d(0, -48%, 0) rotate(12deg) scale(1);
}

.shop-area-card:nth-child(3) img {
  right: clamp(12px, 4vw, 72px);
  width: min(64%, 520px);
  transform: translate3d(0, -44%, 0) rotate(0deg) scale(1);
}

.shop-area-card-contact img {
  right: clamp(22px, 6vw, 94px);
  width: min(39%, 270px);
  opacity: 0.16;
  transform: translate3d(0, -50%, 0) scale(1);
}

.shop-area-title,
.shop-area-copy,
.shop-area-enter {
  position: relative;
  z-index: 3;
}

.shop-area-title {
  max-width: min(48vw, 470px);
  color: var(--navy);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: clamp(40px, 5.5vw, 96px);
  line-height: 0.9;
  transform: translateY(0);
  transition: color 620ms ease, letter-spacing 620ms var(--ease-dramatic), transform 820ms var(--ease-dramatic);
}

.shop-area-copy {
  max-width: 330px;
  margin-top: 20px;
  color: rgba(17, 17, 17, 0.68);
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.84;
  transform: translateY(0);
  transition: color 620ms ease, opacity 620ms ease, transform 820ms var(--ease-dramatic);
}

.shop-area-enter {
  width: fit-content;
  margin-top: 30px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  color: rgba(17, 17, 17, 0.74);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  opacity: 0;
  transform: translateY(12px);
  transition: color 620ms ease, opacity 620ms ease, transform 820ms var(--ease-dramatic), letter-spacing 620ms var(--ease-dramatic);
}

.shop-area-card:hover,
.shop-area-card:focus-visible {
  border-color: rgba(200, 162, 74, 0.74);
  background: var(--charcoal);
  box-shadow: 0 42px 96px rgba(0, 0, 0, 0.18), inset 0 0 0 1px rgba(200, 162, 74, 0.2);
  color: #fff;
  transform: translateY(-7px) scale(1.006);
}

.shop-area-card:hover::before,
.shop-area-card:focus-visible::before {
  opacity: 0.08;
  transform: scale(1.04);
}

.shop-area-card:hover::after,
.shop-area-card:focus-visible::after {
  border-color: rgba(200, 162, 74, 0.34);
  transform: scale(1);
}

.shop-area-card:hover img,
.shop-area-card:focus-visible img {
  opacity: 0.72;
  filter: grayscale(0.04) brightness(1.08) drop-shadow(0 42px 34px rgba(0, 0, 0, 0.24));
  transform: translate3d(18px, -51%, 0) rotate(0deg) scale(1.13);
}

.shop-area-card:nth-child(2):hover img,
.shop-area-card:nth-child(2):focus-visible img {
  transform: translate3d(20px, -51%, 0) rotate(4deg) scale(1.13);
}

.shop-area-card:nth-child(3):hover img,
.shop-area-card:nth-child(3):focus-visible img {
  transform: translate3d(22px, -50%, 0) rotate(-2deg) scale(1.1);
}

.shop-area-card-contact:hover img,
.shop-area-card-contact:focus-visible img {
  opacity: 0.42;
  transform: translate3d(16px, -51%, 0) scale(1.1);
}

.shop-area-card:hover .shop-area-title,
.shop-area-card:focus-visible .shop-area-title {
  color: #fff;
  letter-spacing: 0.015em;
  transform: translateY(-8px);
}

.shop-area-card:hover .shop-area-copy,
.shop-area-card:focus-visible .shop-area-copy {
  color: rgba(255, 255, 255, 0.76);
  opacity: 1;
  transform: translateY(-8px);
}

.shop-area-card:hover .shop-area-enter,
.shop-area-card:focus-visible .shop-area-enter {
  color: var(--gold-soft);
  letter-spacing: 0.24em;
  opacity: 1;
  transform: translateY(-6px);
}

.contact-page {
  min-height: 100svh;
  background: var(--page-bg);
}

.contact-holding {
  max-width: 760px;
  padding: 152px 8vw 80px 17.2vw;
}

.contact-holding h1 {
  margin: 0;
  color: var(--navy);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: clamp(58px, 7vw, 116px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.88;
}

.contact-holding p:not(.section-kicker) {
  max-width: 440px;
  margin: 30px 0 0;
  color: #5f5a50;
  font-size: 16px;
  line-height: 1.72;
}

.site-footer {
  position: relative;
  z-index: 5;
  display: grid;
  gap: 24px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(34px, 4.2vw, 58px) 4.5vw 20px;
  border-top: 3px solid #000;
  background: var(--page-bg);
  color: var(--navy);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(210px, 0.58fr) minmax(280px, 1fr) minmax(260px, 0.64fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: stretch;
  width: 100%;
}

.footer-identity {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-brand {
  display: block;
  width: clamp(96px, 10vw, 138px);
  height: clamp(48px, 5vw, 70px);
  transform-origin: left center;
  transition: filter 560ms ease, transform 760ms var(--ease-dramatic);
}

.footer-brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.footer-brand:hover,
.footer-brand:focus-visible {
  filter: contrast(1.1) sepia(0.16) saturate(1.18);
  transform: translateY(-2px) scale(1.04);
}

.footer-established,
.footer-copyright {
  display: block;
  color: rgba(17, 17, 17, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.footer-copyright {
  color: rgba(17, 17, 17, 0.78);
}

.footer-contact {
  display: grid;
  gap: 8px;
  justify-self: end;
  align-self: start;
  min-width: min(100%, 280px);
  padding: 22px 22px 34px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: rgba(255, 255, 255, 0.34);
}

.footer-heading {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1;
}

.footer-contact a,
.footer-studio a:not(.footer-login) {
  width: fit-content;
  color: rgba(17, 17, 17, 0.74);
  font-size: 12px;
  line-height: 1.3;
  transition: color 320ms ease, transform 420ms var(--ease-luxury);
}

.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-studio a:not(.footer-login):hover,
.footer-studio a:not(.footer-login):focus-visible {
  color: var(--gold-deep);
  transform: translateX(2px);
}

.footer-studio {
  display: grid;
  gap: 10px;
  align-self: end;
  justify-self: stretch;
  justify-items: start;
  padding: 0;
  border-left: 0;
}

.footer-studio p {
  max-width: 520px;
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 0.98;
  text-align: left;
}

.footer-login {
  position: absolute;
  right: 22px;
  bottom: 14px;
  display: inline-flex;
  min-width: 0;
  height: auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  color: rgba(17, 17, 17, 0.46);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 420ms ease, letter-spacing 420ms var(--ease-luxury), transform 420ms var(--ease-luxury);
}

.footer-login::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 420ms var(--ease-luxury);
}

.footer-login:hover,
.footer-login:focus-visible {
  color: var(--gold-deep);
  letter-spacing: 0.24em;
  transform: translateY(-1px);
}

.footer-login:hover::before,
.footer-login:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-login {
  isolation: isolate;
}

.footer-login::before {
  z-index: auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  color: rgba(17, 17, 17, 0.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.footer-bottom span:first-child {
  flex: 1;
  color: rgba(17, 17, 17, 0.72);
}

.staff-body {
  background: var(--page-bg);
}

.staff-page {
  position: relative;
  min-height: 100svh;
  background: var(--page-bg);
  color: var(--navy);
  overflow: hidden;
}

.staff-login-page {
  display: grid;
  place-items: center;
  padding: 132px 28px 74px;
}

.staff-login-panel {
  width: min(100%, 560px);
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: #fff;
  box-shadow: 0 34px 90px rgba(17, 17, 17, 0.08);
}

.staff-login-panel h1,
.staff-dashboard-copy h1 {
  margin: 0;
  color: var(--navy);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: clamp(52px, 7vw, 104px);
  font-weight: 400;
  line-height: 0.88;
}

.staff-note,
.staff-security-note,
.staff-dashboard-copy p {
  margin: 24px 0 0;
  color: #5f5a50;
  font-size: 15px;
  line-height: 1.68;
}

.staff-security-note {
  padding-top: 22px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  font-size: 12px;
}

.staff-form,
.staff-upload-form {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.staff-form label,
.staff-upload-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.staff-form input,
.staff-upload-form input,
.staff-upload-form textarea,
.staff-upload-form select {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-size: 15px;
  letter-spacing: 0;
  outline: 0;
  padding: 14px 15px;
  text-transform: none;
  transition: border-color 320ms ease, box-shadow 320ms ease;
}

.staff-form input:focus,
.staff-upload-form input:focus,
.staff-upload-form textarea:focus,
.staff-upload-form select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.staff-submit,
.staff-secondary {
  position: relative;
  display: inline-flex;
  height: 54px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 420ms ease, letter-spacing 420ms var(--ease-luxury), transform 420ms var(--ease-luxury);
}

.staff-secondary {
  width: fit-content;
  height: 42px;
  margin-top: 28px;
  padding: 0 18px;
  border: 1px solid rgba(17, 17, 17, 0.26);
  background: transparent;
  color: var(--navy);
}

.staff-submit:hover,
.staff-submit:focus-visible,
.staff-secondary:hover,
.staff-secondary:focus-visible {
  background: var(--navy-soft);
  color: #fff;
  letter-spacing: 0.2em;
  transform: translateY(-2px);
}

.staff-status {
  min-height: 20px;
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.5;
}

.staff-dashboard {
  display: grid;
  grid-template-columns: minmax(560px, 1.08fr) minmax(420px, 0.72fr);
  gap: clamp(28px, 3.6vw, 58px);
  align-items: start;
  min-height: 100svh;
  max-width: 1280px;
  margin: 0 auto;
  padding: 132px 4.5vw 74px;
}

.staff-dashboard-intro {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(260px, 0.3fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: end;
  padding: clamp(28px, 4.5vw, 56px);
  border: 1px solid rgba(198, 160, 74, 0.28);
  background:
    linear-gradient(135deg, rgba(8, 15, 16, 0.96), rgba(17, 17, 17, 0.92)),
    var(--navy);
  box-shadow: 0 28px 72px rgba(17, 17, 17, 0.13);
}

.staff-dashboard-intro h2 {
  max-width: 700px;
  margin: 12px 0 0;
  color: #fffaf0;
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: clamp(42px, 6.2vw, 86px);
  font-weight: 400;
  line-height: 0.92;
}

.staff-dashboard-intro p:not(.section-kicker) {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.staff-dashboard-intro .section-kicker {
  color: var(--gold-soft);
}

.staff-dashboard-copy {
  position: sticky;
  top: 128px;
  display: flex;
  min-height: calc(100svh - 220px);
  align-items: flex-end;
}

.staff-upload-form {
  margin-top: 0;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(122, 92, 44, 0.18);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 28px 76px rgba(17, 17, 17, 0.07);
}

.staff-photo-field {
  min-height: 128px;
  align-content: center;
  padding: 18px;
  border: 1px dashed rgba(122, 92, 44, 0.34);
  background: rgba(246, 242, 234, 0.76);
}

.staff-photo-field small {
  color: #6f6558;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.staff-photo-field input {
  background: transparent;
}

.staff-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.staff-checkboxes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(122, 92, 44, 0.16);
  background: rgba(250, 248, 243, 0.64);
}

.staff-checkboxes legend {
  padding: 0 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.staff-checkboxes label {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 43px;
  gap: 9px;
  padding: 9px 11px;
  border: 1px solid rgba(17, 17, 17, 0.11);
  background: rgba(255, 255, 255, 0.72);
  color: #4f493f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 320ms ease, background 320ms ease, color 320ms ease, transform 360ms var(--ease-luxury);
}

.staff-checkboxes input {
  width: auto;
  accent-color: var(--gold);
}

.staff-checkboxes label:has(input:checked) {
  border-color: rgba(198, 160, 74, 0.7);
  background: #111;
  color: #fffaf0;
  transform: translateY(-1px);
}

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

.staff-metal-options label span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  color: #111;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.staff-metal-options .metal-silver span,
.staff-metal-options .metal-white-gold span,
.staff-metal-options .metal-platinum span {
  background: linear-gradient(135deg, #f8f8f6, #cfd4d7);
}

.staff-metal-options .metal-yellow-gold span {
  background: linear-gradient(135deg, #f7df82, #bd8c22);
}

.staff-metal-options .metal-rose-gold span {
  background: linear-gradient(135deg, #efc0a1, #bf7359);
}

.staff-colour-options {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.staff-form-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.staff-reset-edit {
  margin-top: 0;
}

.staff-preview {
  position: sticky;
  top: 128px;
  display: grid;
  gap: 14px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(122, 92, 44, 0.18);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 28px 76px rgba(17, 17, 17, 0.07);
}

.staff-preview-image {
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  background: #f6f2ea;
}

.staff-preview-image img {
  display: block;
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 24px 22px rgba(17, 17, 17, 0.12));
}

.staff-preview-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.staff-preview-thumb {
  position: relative;
  display: block;
}

.staff-preview-thumbs button {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #faf8f3;
  cursor: pointer;
  transition: border-color 320ms ease, transform 360ms var(--ease-luxury);
}

.staff-preview-thumbs button:hover,
.staff-preview-thumbs button.is-active {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.staff-preview-thumbs img {
  display: block;
  width: 84%;
  height: 84%;
  object-fit: contain;
}

.staff-preview-thumbs .staff-preview-remove {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: auto;
  height: 18px;
  min-height: 0;
  aspect-ratio: auto;
  padding: 0 5px;
  border-color: rgba(17, 17, 17, 0.22);
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.staff-preview-thumbs .staff-preview-remove:hover {
  background: #111;
  color: var(--gold-soft);
}

.staff-preview h2 {
  margin: 4px 0 0;
  color: var(--navy);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: clamp(34px, 3.2vw, 54px);
  font-weight: 400;
  line-height: 1;
}

.staff-preview p:not(.product-brand) {
  margin: 14px 0 0;
  color: #5f5a50;
  font-size: 13px;
  line-height: 1.6;
}

.staff-preview-category {
  color: #171717;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.staff-preview-meta {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.staff-preview-meta span {
  color: #5f5a50;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.staff-preview-logout {
  width: 100%;
  margin-top: 18px;
}

.staff-uploaded {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(240px, 0.32fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
  padding-top: 28px;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
}

.staff-uploaded h2 {
  margin: 0;
  color: var(--navy);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 400;
  line-height: 0.95;
}

.staff-uploaded-grid {
  display: grid;
  gap: 18px;
}

.staff-manager-note {
  max-width: 260px;
  margin: 18px 0 0;
  color: #5f5a50;
  font-size: 13px;
  line-height: 1.58;
}

.staff-manager-section {
  display: grid;
  gap: 12px;
}

.staff-manager-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
}

.staff-manager-heading p,
.staff-manager-heading span {
  margin: 0;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.staff-manager-heading span {
  color: #8a7950;
  font-size: 10px;
}

.staff-manager-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, calc((100% - 28px) / 3));
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 12px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.staff-manager-carousel:not(.has-overflow) .staff-manager-list {
  grid-auto-flow: initial;
  grid-auto-columns: initial;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow-x: hidden;
  overflow-y: visible;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.staff-manager-carousel:not(.has-overflow) .staff-manager-list::-webkit-scrollbar {
  display: none;
}

.staff-manager-list::-webkit-scrollbar {
  height: 7px;
}

.staff-manager-list::-webkit-scrollbar-track {
  background: rgba(17, 17, 17, 0.08);
}

.staff-manager-list::-webkit-scrollbar-thumb {
  background: var(--gold);
}

.staff-manager-carousel {
  position: relative;
}

.staff-manager-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: none;
  width: 44px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 999px;
  background: rgba(252, 251, 248, 0.88);
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.1);
  color: var(--navy);
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 320ms ease, background 320ms ease, color 320ms ease, transform 420ms var(--ease-luxury);
}

.staff-manager-carousel.has-overflow .staff-manager-arrow {
  display: grid;
}

.staff-manager-prev {
  left: -18px;
}

.staff-manager-next {
  right: -18px;
}

.staff-manager-arrow span {
  position: relative;
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.staff-manager-arrow span::before,
.staff-manager-arrow span::after {
  content: "";
  position: absolute;
  right: 0;
  width: 7px;
  height: 1px;
  background: currentColor;
  transform-origin: right center;
}

.staff-manager-arrow span::before {
  transform: rotate(42deg);
}

.staff-manager-arrow span::after {
  transform: rotate(-42deg);
}

.staff-manager-prev span {
  transform: rotate(180deg);
}

.staff-manager-arrow:hover,
.staff-manager-arrow:focus-visible {
  border-color: var(--gold);
  background: #111;
  color: var(--gold-soft);
  transform: translateY(-50%) scale(1.04);
}

.staff-uploaded-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #fff;
  scroll-snap-align: start;
  transition: border-color 420ms ease, box-shadow 520ms ease, transform 520ms var(--ease-dramatic);
}

.staff-uploaded-card:hover {
  border-color: rgba(200, 162, 74, 0.62);
  box-shadow: 0 24px 54px rgba(17, 17, 17, 0.08);
  transform: translateY(-3px);
}

.staff-uploaded-image {
  display: grid;
  aspect-ratio: 1 / 0.82;
  place-items: center;
  background: #f6f2ea;
}

.staff-uploaded-image img {
  display: block;
  max-width: 86%;
  max-height: 86%;
  object-fit: contain;
}

.staff-uploaded-meta {
  display: grid;
  gap: 6px;
}

.staff-uploaded-meta strong {
  color: var(--navy);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.staff-uploaded-meta small,
.staff-empty {
  color: #5f5a50;
  font-size: 12px;
  line-height: 1.5;
}

.staff-uploaded-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.staff-card-action {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 320ms ease, background 320ms ease, color 320ms ease, transform 360ms var(--ease-luxury);
}

.staff-card-action:hover,
.staff-card-action:focus-visible {
  border-color: var(--gold);
  background: #111;
  color: var(--gold-soft);
  transform: translateY(-2px);
}

.staff-card-action.is-danger:hover,
.staff-card-action.is-danger:focus-visible {
  border-color: rgba(140, 42, 30, 0.48);
  background: #2a1713;
  color: #fff;
}

.shop-page.is-catalog .shop-grid-line {
  display: none;
}

.product-listing {
  display: grid;
  grid-template-columns: 162px minmax(0, 1fr);
  gap: 26px;
  min-height: 100svh;
  max-width: 1198px;
  margin: 0 auto;
  padding: 118px 0 64px;
  background: var(--page-bg);
  overflow: visible;
}

.catalog-shop-header {
  display: grid;
  grid-column: 1 / -1;
  gap: 22px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.catalog-area-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  align-items: center;
}

.catalog-area-tabs a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid rgba(122, 92, 44, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: rgba(17, 17, 17, 0.8);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 360ms ease, border-color 360ms ease, color 360ms ease, transform 420ms var(--ease-dramatic);
}

.catalog-area-tabs a:hover,
.catalog-area-tabs a:focus-visible,
.catalog-area-tabs a.is-active {
  border-color: #111;
  background: #050505;
  color: var(--gold);
  transform: translateY(-1px);
}

.catalog-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.catalog-title-row h1 {
  max-width: 900px;
  margin: 0;
  color: #111;
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: clamp(72px, 6.6vw, 116px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.86;
  text-transform: uppercase;
}

.catalog-count-label {
  margin: 0 0 9px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.catalog-count-label span {
  color: var(--gold-deep);
}

.filter-drawer-toggle {
  display: none;
}

.mobile-nav-panel {
  display: none;
}

.product-listing::before {
  display: none;
}

.listing-filters {
  position: sticky;
  top: 42px;
  align-self: start;
  padding-top: 0;
  max-width: 162px;
}

.filter-group {
  margin: 0;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 1px solid #1f1f1f;
}

.filter-group + .filter-group {
  margin-top: 12px;
}

.filter-heading,
.filter-group legend {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 12px;
  color: #161616;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0;
  text-align: left;
}

.filter-heading output {
  color: rgba(17, 17, 17, 0.62);
  font-size: 9px;
  font-weight: 600;
}

.price-filter input[type="range"] {
  width: 100%;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-options button {
  min-height: 26px;
  padding: 0 8px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: rgba(255, 255, 255, 0.46);
  color: rgba(17, 17, 17, 0.82);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 320ms ease, border-color 320ms ease, color 320ms ease, transform 360ms var(--ease-luxury);
}

.metal-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}

.metal-filter {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  min-height: 34px;
  align-items: center;
  justify-content: start;
  padding: 4px 8px 4px 5px;
  text-align: left;
}

.metal-filter span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 50%;
  color: #111;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.metal-white-gold span {
  background: linear-gradient(135deg, #f8f7f1, #c9c7bd 55%, #ffffff);
}

.metal-yellow-gold span {
  background: linear-gradient(135deg, #fff4a8, #d5aa35 58%, #f7df78);
}

.metal-rose-gold span {
  background: linear-gradient(135deg, #f6d2c1, #bf765d 58%, #f1b49b);
}

.metal-silver span {
  background: linear-gradient(135deg, #ffffff, #bfc4c7 58%, #f1f3f4);
}

.metal-platinum span {
  background: linear-gradient(135deg, #fafafa, #aeb5b7 58%, #e9eceb);
}

.filter-options button:hover,
.filter-options button:focus-visible,
.filter-options button.is-active {
  border-color: var(--gold);
  background: var(--charcoal);
  color: #fff;
  transform: translateY(-1px);
}

.listing-main {
  min-width: 0;
}

.listing-toolbar {
  display: flex;
  min-height: 34px;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.view-modes {
  display: flex;
  gap: 9px;
  align-items: center;
}

.view-modes button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: rgba(255, 255, 255, 0.44);
  opacity: 0.76;
  cursor: pointer;
  transition: opacity 240ms ease, transform 320ms var(--ease-luxury), border-color 320ms ease, background 320ms ease;
}

.view-modes button.is-active,
.view-modes button:hover {
  opacity: 1;
  border-color: rgba(200, 162, 74, 0.82);
  background: #fff;
  transform: translateY(-1px);
}

.view-icon {
  display: grid;
  width: 15px;
  height: 15px;
  gap: 2px;
}

.view-icon {
  background-image: linear-gradient(#161616, #161616), linear-gradient(#161616, #161616), linear-gradient(#161616, #161616), linear-gradient(#161616, #161616);
  background-repeat: no-repeat;
  background-size: 6px 15px, 6px 15px, 0 0, 0 0;
  background-position: 0 0, 9px 0, 0 0, 0 0;
}

.view-icon.grid {
  background-size: 6px 6px, 6px 6px, 6px 6px, 6px 6px;
  background-position: 0 0, 9px 0, 0 9px, 9px 9px;
}

.view-icon.feature {
  width: 16px;
  height: 16px;
  border: 1px solid #161616;
  background: #161616;
  box-shadow: inset 0 0 0 4px var(--page-bg);
}

.sort-panel {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #161616;
}

.sort-panel p {
  margin: 0;
  font-size: 10px;
}

.sort-panel p span {
  color: #8b6a2b;
}

.sort-panel select {
  width: 112px;
  height: 28px;
  padding: 0 25px 0 12px;
  border: 1px solid #a79b83;
  border-radius: 0;
  background: #fff;
  color: #746b5e;
  font-size: 10px;
}

.product-listing .catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  align-self: auto;
  background: transparent;
  box-shadow: none;
}

.product-listing .catalog-grid.is-feature-view {
  grid-template-columns: 1fr;
  gap: 18px;
}

.product-listing .product-card {
  position: relative;
  display: block;
  min-height: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  color: #2a2a2a;
  opacity: 0;
  transform: translateY(14px);
  animation: catalogCardIn 940ms var(--ease-dramatic) forwards;
  animation-delay: calc(120ms + var(--card-delay, 0ms));
  cursor: pointer;
}

.product-listing .catalog-grid.is-feature-view .product-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.44fr) minmax(0, 1fr);
  grid-template-areas:
    "media brand"
    "media name"
    "media price";
  column-gap: clamp(18px, 3vw, 34px);
  align-items: center;
  min-height: clamp(260px, 34vw, 390px);
  padding: clamp(16px, 2.2vw, 28px);
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.product-listing .product-card.is-filtered-out {
  display: none;
}

.product-listing .catalog-grid.is-feature-view .product-card.is-filtered-out,
.product-listing .catalog-grid.is-grid-view .product-card.is-filtered-out {
  display: none;
}

.product-listing .product-card:focus-visible {
  outline: 1px solid rgba(17, 17, 17, 0.45);
  outline-offset: 5px;
}

.product-listing .product-card::before,
.product-listing .product-card::after {
  display: none;
}

.product-listing .product-image-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 0 14px;
  overflow: hidden;
  background: #f7f7f7;
  perspective: 900px;
}

.product-listing .catalog-grid.is-feature-view .product-image-wrap {
  grid-area: media;
  aspect-ratio: 1 / 0.82;
  margin: 0;
  background: #f7f5ef;
}

.product-listing .catalog-grid.is-feature-view .product-image-wrap img {
  max-width: 76%;
  max-height: 76%;
}

.product-listing .product-image-wrap::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(
    110deg,
    transparent 35%,
    rgba(255, 255, 255, 0.42) 48%,
    transparent 62%
  );
  opacity: 0;
  transform: translateX(-80%) skewX(-12deg);
  transition: opacity 520ms ease, transform 1180ms var(--ease-dramatic);
  pointer-events: none;
}

.product-listing .product-card:hover .product-image-wrap::after,
.product-listing .product-card.is-hovered .product-image-wrap::after,
.product-listing .product-card:focus-visible .product-image-wrap::after {
  opacity: 1;
  transform: translateX(80%) skewX(-12deg);
}

.product-listing .product-image-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  max-width: 82%;
  max-height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 15px 18px rgba(17, 17, 17, 0.08));
  transform-origin: center;
  transition: opacity 820ms var(--ease-dramatic), transform 1080ms var(--ease-dramatic), filter 760ms ease;
}

.product-listing .product-image-wrap video {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transform-origin: center;
  transition: opacity 820ms var(--ease-dramatic), transform 1080ms var(--ease-dramatic), filter 760ms ease;
}

.product-listing .product-image-wrap.has-video {
  background: #f4f5f5;
}

.product-listing .product-primary {
  opacity: 1;
  transform: translate(-50%, -50%) rotateY(0deg) rotateZ(0deg) scale(1);
}

.product-listing .product-angle {
  opacity: 0;
  transform: translate(-42%, -53%) rotateY(-34deg) rotateZ(9deg) scale(1.16);
}

.product-listing video.product-primary {
  transform: translate(-50%, -50%) rotateY(0deg) scale(1.02);
}

.product-listing video.product-angle {
  transform: translate(-50%, -50%) rotateY(-28deg) rotateZ(4deg) scale(1.16);
}

.product-listing .product-card:hover .product-primary,
.product-listing .product-card.is-hovered .product-primary,
.product-listing .product-card:focus-visible .product-primary {
  opacity: 0;
  filter: blur(3px) drop-shadow(0 15px 18px rgba(17, 17, 17, 0.06));
  transform: translate(-59%, -50%) rotateY(34deg) rotateZ(-8deg) scale(0.9);
}

.product-listing .product-card:hover .product-angle,
.product-listing .product-card.is-hovered .product-angle,
.product-listing .product-card:focus-visible .product-angle {
  opacity: 1;
  filter: drop-shadow(0 18px 20px rgba(17, 17, 17, 0.12));
  transform: translate(-50%, -50%) rotateY(0deg) rotateZ(0deg) scale(1.07);
}

.product-listing .product-card:hover video.product-angle,
.product-listing .product-card.is-hovered video.product-angle,
.product-listing .product-card:focus-visible video.product-angle {
  transform: translate(-50%, -50%) rotateY(0deg) rotateZ(0deg) scale(1.04);
}

.product-listing .product-brand,
.product-listing .product-name,
.product-listing .product-price {
  display: block;
  padding-left: 1px;
}

.product-listing .product-brand {
  margin-bottom: 5px;
  color: #8f8778;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0;
}

.product-listing .catalog-grid.is-feature-view .product-brand {
  grid-area: brand;
  align-self: end;
  margin: 0 0 10px;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.product-listing .product-name {
  max-width: 188px;
  min-height: 34px;
  color: #5f5a50;
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.24;
}

.product-listing .catalog-grid.is-feature-view .product-name {
  grid-area: name;
  max-width: 460px;
  min-height: 0;
  color: var(--navy);
  font-size: clamp(30px, 5vw, 58px);
  line-height: 0.98;
}

.product-listing .product-price {
  margin-top: 4px;
  color: #202020;
  font-size: 11px;
}

.product-listing .catalog-grid.is-feature-view .product-price {
  grid-area: price;
  align-self: start;
  margin-top: 18px;
  font-size: 14px;
}

.quick-add {
  position: absolute;
  right: 9px;
  bottom: 52px;
  z-index: 4;
  min-width: 44px;
  height: 26px;
  padding: 0 11px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 520ms ease, transform 640ms var(--ease-dramatic), background 420ms ease, border-color 420ms ease;
}

.product-listing .catalog-grid.is-feature-view .quick-add {
  right: 18px;
  bottom: 18px;
  opacity: 1;
  transform: none;
}

.product-listing .catalog-grid.is-feature-view .quick-favourite {
  opacity: 1;
  transform: none;
}

.quick-favourite {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  transition: opacity 520ms ease, transform 640ms var(--ease-dramatic), background 420ms ease, border-color 420ms ease, color 420ms ease;
}

.quick-favourite svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.product-card:hover .quick-add,
.product-card:focus-visible .quick-add,
.quick-add:focus-visible,
.product-card:hover .quick-favourite,
.product-card:focus-visible .quick-favourite,
.quick-favourite:focus-visible,
.quick-favourite.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.quick-add:hover,
.quick-add:focus-visible {
  border-color: rgba(17, 17, 17, 0.42);
  background: #fff;
  transform: translateY(-2px);
}

.quick-favourite:hover,
.quick-favourite:focus-visible,
.quick-favourite.is-active {
  border-color: rgba(17, 17, 17, 0.36);
  background: #fff;
  color: var(--navy);
}

.quick-favourite.is-active svg,
.wish-button.is-active svg {
  fill: currentColor;
}

.shop-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 52vw) minmax(420px, 48vw);
  min-height: 100svh;
}

.shop-gallery {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 120px 5vw 74px;
  background: var(--page-bg);
}

.shop-gallery::before {
  display: none;
  content: none;
}

.return-link {
  position: absolute;
  z-index: 5;
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  opacity: 0;
  animation: chromeIn 820ms var(--ease-luxury) 760ms forwards;
}

.return-link {
  left: 4.5vw;
  bottom: 58px;
}

.detail-back {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.detail-back:hover {
  color: var(--navy);
  transform: translateY(-1px);
}

.product-stage {
  --shop-x: 0;
  --shop-y: 0;
  --shop-rx: 0;
  --shop-ry: 0;
  position: relative;
  z-index: 2;
  display: grid;
  width: min(40vw, 640px);
  height: min(65vh, 620px);
  place-items: center;
  perspective: 1200px;
  opacity: 0;
  transform: translateY(24px) scale(0.965);
  animation: productIn 1400ms var(--ease-luxury) 760ms forwards;
}

.product-stage::before,
.product-stage::after {
  content: "";
  position: absolute;
  z-index: 4;
  pointer-events: none;
}

.product-stage::before {
  inset: 9% 14%;
  border-right: 1px solid rgba(17, 17, 17, 0.1);
  border-left: 1px solid rgba(17, 17, 17, 0.06);
  opacity: 0;
  transform: scaleY(0.72);
  animation: quietFrame 1200ms var(--ease-luxury) 1180ms forwards;
}

.product-stage::after {
  top: 8%;
  bottom: 8%;
  left: -20%;
  width: 34%;
  background: rgba(255, 255, 255, 0.72);
  transform: translateX(-110%) skewX(-14deg);
  opacity: 0;
}

.product-stage.is-switching::after {
  animation: catalogSweep 720ms var(--ease-luxury) forwards;
}

.shop-product-image,
.shop-product-video {
  position: relative;
  z-index: 3;
  display: block;
  max-width: 96%;
  max-height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 34px 28px rgba(17, 17, 17, 0.12)) drop-shadow(0 7px 7px rgba(17, 17, 17, 0.12));
  transform: translate3d(calc(var(--shop-x) * 1px), calc(var(--shop-y) * 1px), 0) rotateX(calc(var(--shop-rx) * 1deg)) rotateY(calc(var(--shop-ry) * 1deg));
  transform-style: preserve-3d;
  transition: opacity 360ms ease, transform 680ms var(--ease-luxury), filter 680ms ease;
  will-change: transform;
}

.shop-product-video {
  width: min(84%, 560px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.shop-product-image[hidden],
.shop-product-video[hidden] {
  display: none;
}

.product-stage.is-ring .shop-product-image {
  max-width: 116%;
  transform: translate3d(calc(var(--shop-x) * 1px), calc(var(--shop-y) * 1px), 0) rotateX(calc(var(--shop-rx) * 1deg)) rotateY(calc(var(--shop-ry) * 1deg)) rotateZ(-8deg);
}

.product-stage.is-bracelet .shop-product-image {
  max-width: 118%;
  max-height: 72%;
}

.product-stage.is-pendant .shop-product-image {
  max-width: 126%;
  max-height: 96%;
}

.product-stage.is-studs .shop-product-image {
  max-width: 112%;
  max-height: 72%;
}

.product-stage.is-cuff .shop-product-image {
  max-width: 126%;
  max-height: 76%;
}

.product-stage.is-video .shop-product-video {
  max-width: 82%;
  max-height: 82%;
}

.product-stage.is-switching .shop-product-image,
.product-stage.is-switching .shop-product-video {
  opacity: 0;
  filter: blur(6px) drop-shadow(0 30px 20px rgba(17, 17, 17, 0.08));
  transform: translate3d(24px, -12px, 0) rotateX(4deg) rotateY(-10deg) scale(0.985);
}

.product-shadow {
  position: absolute;
  z-index: 1;
  right: 18%;
  bottom: 12%;
  width: 55%;
  height: 11%;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.09);
  filter: blur(18px);
  transform: rotate(-4deg);
}

.gallery-dots {
  position: absolute;
  bottom: 43px;
  left: 50%;
  z-index: 6;
  display: none;
  gap: 16px;
  transform: translateX(-50%);
  opacity: 0;
  animation: contentIn 900ms var(--ease-luxury) 1320ms forwards;
}

.gallery-dots button {
  width: 17px;
  height: 17px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c9b98c;
  cursor: pointer;
  transition: background 320ms ease, transform 320ms var(--ease-luxury);
}

.gallery-dots button.is-active,
.gallery-dots button:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.shop-detail {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-content: center;
  overflow: hidden;
  padding: 126px clamp(42px, 5.2vw, 76px) 46px;
  background: var(--page-bg);
  color: var(--navy);
}

.shop-detail::before {
  display: none;
  content: none;
}

.detail-inner {
  position: relative;
  z-index: 6;
  max-width: 520px;
  opacity: 0;
  transform: translateY(18px);
  animation: contentIn 940ms var(--ease-luxury) 950ms forwards;
  transition: opacity 360ms ease, transform 360ms var(--ease-luxury);
}

.detail-inner.is-changing {
  opacity: 0;
  transform: translateY(10px);
}

.shop-eyebrow {
  margin: 0 0 12px;
  color: rgba(17, 17, 17, 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.shop-detail h1 {
  margin: 0;
  color: var(--navy);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
}

.shop-copy {
  max-width: 430px;
  margin: 17px 0 0;
  color: #5f5a50;
  font-size: 18px;
  line-height: 1.38;
}

.detail-rule {
  display: block;
  width: 100%;
  height: 1px;
  margin: 34px 0 27px;
  background: rgba(17, 17, 17, 0.12);
  transform: scaleX(0);
  transform-origin: left;
  animation: ruleIn 900ms var(--ease-luxury) 1260ms forwards;
}

.option-block p,
.rating-block p {
  margin: 0;
}

.option-block > p {
  margin-bottom: 13px;
  color: var(--navy);
  font-size: 16px;
}

.color-options {
  display: flex;
  gap: 13px;
  align-items: center;
}

.color-choice {
  min-width: 66px;
  height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: transparent;
  color: var(--navy);
  font-size: 12px;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 320ms ease, border-color 320ms ease, color 320ms ease, transform 320ms var(--ease-luxury);
}

.color-choice.is-active {
  border-color: var(--gold);
  background: var(--charcoal);
  color: #fff;
}

.color-gold {
  background: #c8a24a;
  border-color: #c8a24a;
  color: #1f292f;
}

.color-light {
  background: #f7f8f7;
  border-color: #f7f8f7;
  color: #1f292f;
}

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

.rating-block {
  display: grid;
  gap: 8px;
}

.stars {
  display: flex;
  gap: 3px;
}

.stars span {
  width: 21px;
  height: 21px;
  background: #c8a24a;
  clip-path: polygon(50% 0, 62% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 38% 34%);
  opacity: 0;
  transform: translateY(7px) scale(0.7);
  animation: starIn 520ms var(--ease-luxury) forwards;
}

.stars span:nth-child(1) {
  animation-delay: 1450ms;
}

.stars span:nth-child(2) {
  animation-delay: 1510ms;
}

.stars span:nth-child(3) {
  animation-delay: 1570ms;
}

.stars span:nth-child(4) {
  animation-delay: 1630ms;
}

.stars span:nth-child(5) {
  animation-delay: 1690ms;
}

.rating-block p {
  color: #5f5a50;
  font-size: 13px;
}

.purchase-block {
  margin-top: clamp(32px, 4.6vh, 62px);
}

.price {
  margin: 0 0 17px;
  color: var(--navy);
  font-size: clamp(31px, 2.8vw, 42px);
  line-height: 1;
}

.purchase-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.add-button {
  position: relative;
  display: inline-flex;
  width: min(100%, 432px);
  height: 58px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  background: var(--gold);
  color: #111;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 360ms ease, transform 360ms var(--ease-luxury);
}

.add-button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -45%;
  width: 30%;
  background: rgba(255, 255, 255, 0.45);
  transform: skewX(-18deg);
  transition: left 760ms var(--ease-luxury);
}

.add-button span {
  position: relative;
  z-index: 1;
  transition: transform 360ms var(--ease-luxury);
}

.add-button:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.add-button:hover::before {
  left: 115%;
}

.add-button:hover span {
  transform: scaleX(1.035);
}

.wish-button {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  background: #fff;
  color: #1f292f;
  cursor: pointer;
  transition: transform 360ms var(--ease-luxury), background 360ms ease, color 360ms ease;
}

.wish-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.wish-button:hover {
  background: #f7f3ea;
  color: var(--gold-deep);
  transform: translateY(-2px);
}

.product-sparkle {
  position: absolute;
  z-index: 5;
  width: 16px;
  height: 16px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(45deg) scale(0.18);
  animation: sparkle 4800ms ease-in-out infinite;
}

.product-sparkle::before,
.product-sparkle::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  background: rgba(255, 255, 255, 0.95);
  transform: translate(-50%, -50%);
}

.product-sparkle::before {
  width: 100%;
  height: 1px;
}

.product-sparkle::after {
  width: 1px;
  height: 100%;
}

.ps1 {
  top: 39%;
  left: 36%;
  animation-delay: 1800ms;
}

.ps2 {
  top: 56%;
  left: 57%;
  animation-delay: 3000ms;
}

.ps3 {
  top: 31%;
  left: 64%;
  animation-delay: 4300ms;
}

.checkout-body {
  background: var(--page-bg);
}

.favourites-page {
  position: relative;
  min-height: 100svh;
  background: var(--page-bg);
  color: var(--navy);
}

.favourites-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.42fr) minmax(420px, 1fr);
  gap: clamp(38px, 6vw, 94px);
  min-height: 100svh;
  padding: 154px 6vw 72px 8vw;
}

.favourites-intro {
  position: sticky;
  top: 138px;
  align-self: start;
}

.favourites-intro h1,
.favourites-empty h2,
.pay-panel h1,
.pay-summary h2 {
  margin: 0;
  color: var(--navy);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

.favourites-intro h1 {
  max-width: 100%;
  font-size: clamp(56px, 5.2vw, 76px);
  line-height: 0.92;
}

.favourites-intro p:not(.section-kicker) {
  max-width: 360px;
  margin: 28px 0 0;
  color: #5f5a50;
  font-size: 15px;
  line-height: 1.75;
}

.favourites-checkout-link,
.pay-complete-button {
  position: relative;
  display: inline-flex;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  overflow: hidden;
  padding: 0 28px;
  border: 0;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background 420ms ease, letter-spacing 520ms var(--ease-dramatic), transform 520ms var(--ease-dramatic);
}

.favourites-checkout-link:hover,
.favourites-checkout-link:focus-visible,
.pay-complete-button:hover,
.pay-complete-button:focus-visible {
  background: var(--navy-soft);
  box-shadow: inset 0 0 0 1px rgba(200, 162, 74, 0.52);
  letter-spacing: 0.14em;
  transform: translateY(-3px);
}

.favourites-list {
  display: grid;
  gap: 14px;
}

.favourite-row,
.favourites-empty {
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 54px rgba(17, 17, 17, 0.045);
}

.favourite-row {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) auto minmax(116px, auto);
  gap: 22px;
  align-items: center;
  min-height: 136px;
  padding: 14px 16px 14px 14px;
  opacity: 0;
  transform: translateY(18px);
  animation: catalogCardIn 920ms var(--ease-dramatic) forwards;
}

.favourite-media {
  display: grid;
  width: 118px;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  background: #f6f2ea;
}

.favourite-media img {
  display: block;
  max-width: 84%;
  max-height: 84%;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(17, 17, 17, 0.1));
}

.favourite-copy p,
.favourite-copy h2,
.favourite-copy span,
.favourite-copy small {
  display: block;
}

.favourite-copy p {
  margin: 0 0 7px;
  color: rgba(17, 17, 17, 0.52);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.favourite-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.favourite-copy span {
  margin-top: 8px;
  color: #6b6254;
  font-size: 13px;
  line-height: 1.35;
}

.favourite-copy small {
  max-width: 420px;
  margin-top: 8px;
  color: #7b7469;
  font-size: 12px;
  line-height: 1.48;
}

.favourite-row > strong {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.favourite-actions {
  display: grid;
  gap: 8px;
}

.favourite-actions button {
  min-width: 112px;
  height: 34px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: background 360ms ease, border-color 360ms ease, color 360ms ease, transform 420ms var(--ease-luxury);
}

.favourite-actions button:first-child {
  background: var(--navy);
  color: #fff;
}

.favourite-actions button:hover,
.favourite-actions button:focus-visible {
  border-color: rgba(17, 17, 17, 0.46);
  transform: translateY(-2px);
}

.favourites-empty {
  padding: 42px;
}

.favourites-empty h2 {
  font-size: 42px;
}

.favourites-empty p {
  max-width: 360px;
  margin: 14px 0 24px;
  color: #766f62;
  font-size: 14px;
  line-height: 1.6;
}

.favourites-empty a {
  display: inline-flex;
  height: 44px;
  align-items: center;
  padding: 0 22px;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.checkout-page {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 61vw) minmax(360px, 39vw);
  min-height: 100svh;
  overflow-x: hidden;
  isolation: isolate;
  background: var(--page-bg);
  color: var(--navy);
}

.pay-page {
  position: relative;
  min-height: 100svh;
  background: var(--page-bg);
  color: var(--navy);
}

.pay-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 0.74fr);
  gap: clamp(44px, 7vw, 118px);
  min-height: 100svh;
  padding: 154px 8vw 74px;
}

.pay-panel {
  align-self: center;
}

.pay-panel h1 {
  max-width: 620px;
  font-size: clamp(68px, 8vw, 124px);
  line-height: 0.86;
}

.pay-panel p:not(.section-kicker),
.pay-status {
  max-width: 430px;
  margin: 28px 0 0;
  color: #5f5a50;
  font-size: 15px;
  line-height: 1.75;
}

.pay-summary {
  align-self: center;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 30px 72px rgba(17, 17, 17, 0.06);
}

.pay-summary h2 {
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 0.9;
}

.pay-items {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.pay-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.76);
}

.pay-item img {
  width: 72px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f6f2ea;
}

.pay-item strong,
.pay-item small,
.pay-item em {
  display: block;
}

.pay-item strong {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.25;
}

.pay-item small {
  margin-top: 5px;
  color: #7b7469;
  font-size: 11px;
  line-height: 1.35;
}

.pay-item em {
  color: #1a1a1a;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.pay-totals {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.pay-totals p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  color: #5f6f77;
  font-size: 13px;
}

.pay-totals strong {
  color: var(--navy);
}

.pay-totals .total-line {
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}

.pay-return {
  display: inline-flex;
  margin-top: 28px;
  color: rgba(17, 17, 17, 0.68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  transition: color 320ms ease, transform 420ms var(--ease-luxury);
}

.pay-return:hover,
.pay-return:focus-visible {
  color: var(--navy);
  transform: translateX(3px);
}

.pay-empty {
  padding: 30px;
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.pay-empty h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
}

.pay-empty p {
  margin: 12px 0 20px;
  color: #766f62;
  font-size: 13px;
  line-height: 1.55;
}

.pay-empty a {
  display: inline-flex;
  height: 40px;
  align-items: center;
  padding: 0 18px;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.pay-complete-button:disabled {
  cursor: default;
  opacity: 0.62;
  transform: none;
}

.checkout-page::before {
  display: none;
  content: none;
}

.checkout-grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--checkout-line-left);
  z-index: 1;
  width: 1px;
  pointer-events: none;
}

.checkout-grid-line::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: rgba(17, 17, 17, 0.08);
  transform: scaleY(0);
  transform-origin: top;
  animation: drawLine 1300ms var(--ease-luxury) forwards;
  animation-delay: var(--checkout-line-delay, 0ms);
}

.checkout-line-a {
  --checkout-line-left: 17.2vw;
  --checkout-line-delay: 80ms;
}

.checkout-line-b {
  --checkout-line-left: 44.7vw;
  --checkout-line-delay: 170ms;
}

.checkout-line-c {
  --checkout-line-left: 61vw;
  --checkout-line-delay: 250ms;
}

.checkout-topbar .nav-links {
  color: var(--navy);
}

.checkout-review,
.checkout-payment {
  position: relative;
  z-index: 3;
}

.checkout-review {
  padding: 132px clamp(36px, 6vw, 108px) 56px 8.8vw;
}

.checkout-payment {
  padding: 132px clamp(34px, 5.4vw, 96px) 56px;
  background: var(--page-bg);
}

.checkout-kicker {
  margin: 0 0 14px;
  color: rgba(17, 17, 17, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.checkout-review h1,
.checkout-payment h2,
.checkout-empty h2 {
  margin: 0;
  color: var(--navy);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

.checkout-review h1 {
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 0.95;
}

.checkout-note,
.payment-copy,
.secure-note {
  margin: 14px 0 0;
  color: #766f62;
  font-size: 13px;
  line-height: 1.55;
}

.checkout-items {
  display: grid;
  gap: 16px;
  max-width: 560px;
  margin-top: 32px;
}

.checkout-item,
.checkout-empty,
.shipping-option {
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 44px rgba(17, 17, 17, 0.055);
}

.checkout-item {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 132px;
  padding: 14px 16px 14px 14px;
  opacity: 0;
  transform: translateY(18px);
  animation: catalogCardIn 920ms var(--ease-dramatic) forwards;
  transition: border-color 520ms ease, box-shadow 620ms ease, transform 620ms var(--ease-dramatic);
}

.checkout-item:hover {
  border-color: rgba(17, 17, 17, 0.16);
  box-shadow: 0 32px 58px rgba(17, 17, 17, 0.075);
  transform: translateY(-3px);
}

.checkout-item-media {
  display: grid;
  width: 132px;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  background: #f0eadf;
}

.checkout-item-media img {
  display: block;
  max-width: 86%;
  max-height: 86%;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(17, 17, 17, 0.1));
}

.checkout-item-copy p,
.checkout-item-copy h2,
.checkout-item-copy span,
.checkout-item-copy small {
  display: block;
}

.checkout-item-copy p {
  margin: 0 0 8px;
  color: rgba(17, 17, 17, 0.54);
  font-size: 9px;
  font-weight: 700;
}

.checkout-item-copy h2 {
  color: #161616;
  font-size: 20px;
  line-height: 1.08;
}

.checkout-item-copy span {
  max-width: 260px;
  margin-top: 8px;
  color: #7a7164;
  font-size: 12px;
  line-height: 1.45;
}

.checkout-item-copy small {
  width: fit-content;
  margin-top: 10px;
  padding: 5px 11px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  color: #2b261d;
  font-size: 10px;
}

.quantity-control {
  display: grid;
  grid-template-columns: 28px 24px 28px;
  align-items: center;
  justify-items: center;
  color: var(--navy);
}

.quantity-control button {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #fff;
  cursor: pointer;
  transition: transform 420ms var(--ease-dramatic), border-color 360ms ease, background 360ms ease;
}

.quantity-control button:hover {
  border-color: rgba(17, 17, 17, 0.42);
  background: rgba(17, 17, 17, 0.03);
  transform: translateY(-2px);
}

.quantity-control strong {
  font-size: 12px;
}

.checkout-empty {
  padding: 32px;
}

.checkout-empty h2 {
  font-size: 32px;
}

.checkout-empty p {
  max-width: 340px;
  margin: 12px 0 22px;
  color: #766f62;
  font-size: 13px;
  line-height: 1.6;
}

.checkout-empty a {
  display: inline-flex;
  height: 44px;
  align-items: center;
  padding: 0 22px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.shipping-block {
  max-width: 560px;
  margin-top: 34px;
}

.shipping-block h2,
.payment-method legend,
.payment-form label span {
  margin: 0 0 12px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 600;
}

.shipping-block h2 {
  margin-bottom: 14px;
}

.shipping-option {
  position: relative;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  margin-bottom: 12px;
  padding: 15px 18px;
  cursor: pointer;
  transition: border-color 320ms ease, transform 360ms var(--ease-luxury), background 320ms ease;
}

.shipping-option.is-selected,
.shipping-option:hover {
  border-color: rgba(17, 17, 17, 0.48);
  background: #fff;
  transform: translateY(-1px);
}

.shipping-option input {
  position: absolute;
  opacity: 0;
}

.shipping-dot {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
}

.shipping-option.is-selected .shipping-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--navy);
}

.shipping-option strong,
.shipping-option small {
  display: block;
}

.shipping-option strong {
  color: #2a2418;
  font-size: 13px;
}

.shipping-option small {
  margin-top: 5px;
  color: #8d8373;
  font-size: 12px;
}

.shipping-option em {
  padding: 5px 9px;
  background: rgba(200, 162, 74, 0.45);
  color: #3c3217;
  font-size: 10px;
  font-style: normal;
}

.checkout-payment h2 {
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 0.98;
}

.payment-form {
  display: grid;
  gap: 20px;
  max-width: 360px;
  margin-top: 30px;
}

.payment-form label,
.card-fields {
  display: grid;
  gap: 9px;
}

.payment-form input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #fff;
  color: #161616;
  font-size: 14px;
  outline: none;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.payment-form input:focus {
  border-color: rgba(17, 17, 17, 0.46);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.06);
}

.payment-method {
  margin: 0;
  padding: 0;
  border: 0;
}

.payment-method-grid {
  display: grid;
  gap: 10px;
}

.method-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(22px, auto) 1fr;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 16px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: #fff;
  cursor: pointer;
  transition: border-color 280ms ease, background 280ms ease, box-shadow 280ms ease, transform 280ms var(--ease-luxury);
}

.method-card:hover,
.method-card.is-selected {
  border-color: rgba(199, 155, 57, 0.76);
  background: #fffdf8;
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.08);
  transform: translateY(-1px);
}

.method-card input {
  position: absolute;
  opacity: 0;
}

.method-card svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.method-card span {
  margin: 0;
  font-size: 13px;
}

.method-logo {
  display: inline-flex;
  min-width: 72px;
  height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.method-logo-apple {
  background: #0f0f0f;
  color: #fff;
}

.method-logo-klarna {
  background: #f5b4c8;
  color: #161616;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 104px;
  gap: 10px;
}

.checkout-totals {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.checkout-totals p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  color: #5f6f77;
  font-size: 13px;
}

.checkout-totals strong {
  color: #161616;
  font-weight: 500;
}

.checkout-totals .total-line {
  padding-top: 12px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  color: #161616;
  font-size: 15px;
  font-weight: 700;
}

.pay-button {
  position: relative;
  display: flex;
  height: 54px;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0 22px;
  border: 0;
  background: #0f0f0f;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: background 360ms ease, transform 360ms var(--ease-luxury);
}

.pay-button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -38%;
  width: 26%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  transform: skewX(-14deg);
  transition: left 760ms var(--ease-luxury);
}

.pay-button:hover {
  background: #1e1a14;
  transform: translateY(-2px);
}

.pay-button:hover::before {
  left: 112%;
}

.pay-button span {
  position: relative;
  z-index: 1;
}

.checkout-status {
  min-height: 18px;
  margin: -6px 0 0;
  color: var(--navy);
  font-size: 12px;
}

.stripe-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.66);
}

.stripe-badge {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: #635bff;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stripe-panel p {
  margin: 0;
  color: #5f5a50;
  font-size: 12px;
  line-height: 1.6;
}

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

@keyframes productIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes quietFrame {
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes catalogSweep {
  0% {
    opacity: 0;
    transform: translateX(-110%) skewX(-14deg);
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(420%) skewX(-14deg);
  }
}

@keyframes panelSlide {
  to {
    transform: translateX(0);
  }
}

@keyframes starIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-stage {
  position: relative;
  z-index: 4;
  min-height: 100svh;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: var(--hero-header-offset) 0 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.2) 36%, rgba(0, 0, 0, 0.03) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.12) 100%);
}

.hero-copy-stack {
  position: absolute;
  top: clamp(190px, 25vh, 260px);
  left: clamp(48px, 8vw, 118px);
  z-index: 6;
  width: min(680px, 58vw);
}

.eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(13px, 0.98vw, 16px);
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  transform: translateY(12px);
  animation: eyebrowIn 1250ms var(--ease-dramatic) 860ms forwards;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke: 0;
  paint-order: stroke fill;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.58);
}

.headline {
  display: flex;
  gap: 0.16em;
  align-items: baseline;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-family: Baskerville, "Libre Baskerville", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(86px, 9.2vw, 138px);
  font-weight: 400;
  letter-spacing: 0.012em;
  line-height: 0.9;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke: 0.18px rgba(0, 0, 0, 0.5);
  paint-order: stroke fill;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.32),
    0 18px 40px rgba(0, 0, 0, 0.46);
}

.headline-promo {
  display: block;
  width: min(60vw, 680px);
  font-size: clamp(64px, 7.4vw, 106px);
  line-height: 0.96;
}

.headline-mask {
  display: block;
  overflow: hidden;
  padding: 0 0 0.18em;
}

.headline-mask > span {
  display: block;
  transform: translateY(112%);
  animation: wordUp 1250ms var(--ease-dramatic) forwards;
}

.headline-mask:first-child > span {
  animation-delay: 760ms;
}

.headline-mask:last-child > span {
  animation-delay: 900ms;
}

.hero-intro {
  max-width: 500px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.72;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.58);
  opacity: 0;
  transform: translateY(18px);
  animation: fadeLift 1120ms var(--ease-dramatic) 1120ms forwards;
}

.hero-notes {
  position: absolute;
  right: clamp(42px, 7vw, 104px);
  bottom: clamp(58px, 9vh, 92px);
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 220px));
  gap: 28px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-notes p {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 13px;
  line-height: 1.55;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.44);
  opacity: 0;
  transform: translateY(18px);
  animation: fadeLift 1120ms var(--ease-dramatic) forwards;
}

.hero-notes p:first-child {
  animation-delay: 1240ms;
}

.hero-notes p:last-child {
  animation-delay: 1380ms;
}

.hero-notes span {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.ring-wrap {
  position: absolute;
  inset: var(--hero-header-offset) 0 0;
  z-index: 1;
  width: 100%;
  min-width: 0;
  height: auto;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(112px, -82px, 0) rotateX(20deg) rotateY(-30deg) rotateZ(-8deg) scale(0.9);
  transform-style: preserve-3d;
  animation: ringIn 2400ms var(--ease-dramatic) 940ms forwards;
  pointer-events: none;
}

.hero-video-wrap {
  transform: none;
  animation: heroVideoIn 1800ms var(--ease-dramatic) 740ms forwards;
}

.ring-parallax {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 950ms var(--ease-dramatic);
}

.ring-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 33px 28px rgba(17, 17, 17, 0.13)) drop-shadow(0 8px 8px rgba(17, 17, 17, 0.1));
}

.ring-video {
  position: relative;
  z-index: 2;
  display: block;
  width: calc(100% + 56px);
  height: calc(100% + 56px);
  margin: -28px;
  aspect-ratio: auto;
  overflow: hidden;
  background: transparent;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
}

.hero-video {
  background: #f3f0ea;
}

.ring-shadow {
  display: none;
}

.sparkle {
  position: absolute;
  z-index: 3;
  width: 18px;
  height: 18px;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(45deg) scale(0.22);
  animation: sparkle 5200ms ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

.sparkle::before,
.sparkle::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
  filter: blur(0.2px);
  transform: translate(-50%, -50%);
}

.sparkle::before {
  width: 100%;
  height: 1px;
}

.sparkle::after {
  width: 1px;
  height: 100%;
}

.s1 {
  top: 33%;
  left: 43%;
  animation-delay: 2200ms;
}

.s2 {
  top: 39%;
  left: 37%;
  animation-delay: 3300ms;
}

.s3 {
  top: 30%;
  left: 50%;
  animation-delay: 4200ms;
}

.s4 {
  top: 44%;
  left: 31%;
  animation-delay: 5600ms;
}

.s5 {
  top: 28%;
  left: 57%;
  animation-delay: 6700ms;
}

.s6 {
  top: 49%;
  left: 26%;
  animation-delay: 7600ms;
}

.shop-button {
  position: absolute;
  top: auto;
  bottom: clamp(74px, 9vh, 104px);
  left: clamp(48px, 8vw, 118px);
  right: auto;
  z-index: 7;
  display: flex;
  width: 212px;
  height: 56px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(200, 162, 74, 0.7);
  border-radius: 6px;
  background: rgba(15, 15, 15, 0.92);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  animation: buttonIn 1350ms var(--ease-dramatic) 1780ms forwards;
  transition: background 520ms ease, transform 620ms var(--ease-dramatic), letter-spacing 620ms var(--ease-dramatic);
}

.shop-button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -55%;
  width: 38%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
  transform: skewX(-18deg);
  transition: left 980ms var(--ease-dramatic);
}

.shop-button span {
  position: relative;
  z-index: 1;
  transform-origin: center;
  transition: transform 620ms var(--ease-dramatic);
}

.shop-button:hover {
  background: var(--gold);
  color: #111;
  letter-spacing: 0.08em;
  transform: translateY(-5px) scale(1.025);
}

.shop-button:hover::before {
  left: 116%;
}

.shop-button:hover span {
  transform: scaleX(1.035);
}

.suggested-section {
  position: relative;
  overflow: hidden;
  margin: clamp(18px, 2vw, 30px) 0;
  padding: 0;
  border-top: 0;
  background: var(--page-bg);
  color: var(--navy);
}

.suggested-section::before {
  display: none;
  content: none;
}

.suggested-shell {
  position: relative;
  width: auto;
  margin: 0 auto;
  padding: 0 8vw;
}

.suggested-controls {
  position: absolute;
  top: 50%;
  right: clamp(22px, 3.4vw, 54px);
  left: clamp(22px, 3.4vw, 54px);
  z-index: 6;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
  transform: translateY(-50%);
}

.suggested-arrow {
  position: relative;
  display: grid;
  width: 58px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 999px;
  background: rgba(252, 251, 248, 0.82);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.1);
  color: var(--navy);
  cursor: pointer;
  pointer-events: auto;
  transition: border-color 420ms ease, background 420ms ease, color 420ms ease, transform 520ms var(--ease-dramatic);
}

.suggested-arrow::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -56%;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(200, 162, 74, 0.34), transparent);
  transform: skewX(-18deg);
  transition: left 760ms var(--ease-dramatic);
}

.suggested-arrow span {
  position: relative;
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: transform 520ms var(--ease-dramatic), width 520ms var(--ease-dramatic);
}

.suggested-arrow span::before,
.suggested-arrow span::after {
  content: "";
  position: absolute;
  right: 0;
  width: 8px;
  height: 1px;
  background: currentColor;
  transform-origin: right center;
}

.suggested-arrow span::before {
  transform: rotate(42deg);
}

.suggested-arrow span::after {
  transform: rotate(-42deg);
}

.suggested-prev span {
  transform: rotate(180deg);
}

.suggested-arrow:hover,
.suggested-arrow:focus-visible {
  border-color: var(--gold);
  background: var(--charcoal);
  color: var(--gold-soft);
  transform: translateY(-3px);
}

.suggested-arrow:hover::before,
.suggested-arrow:focus-visible::before {
  left: 112%;
}

.suggested-next:hover span,
.suggested-next:focus-visible span {
  width: 30px;
  transform: translateX(3px);
}

.suggested-prev:hover span,
.suggested-prev:focus-visible span {
  width: 30px;
  transform: rotate(180deg) translateX(3px);
}

.suggested-track {
  display: grid;
  grid-auto-columns: clamp(320px, 27vw, 400px);
  grid-auto-flow: column;
  gap: clamp(14px, 1.6vw, 22px);
  overflow-x: auto;
  padding: 0 0 12px;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(17, 17, 17, 0.08);
}

.suggested-track::-webkit-scrollbar {
  height: 8px;
}

.suggested-track::-webkit-scrollbar-track {
  background: rgba(17, 17, 17, 0.08);
}

.suggested-track::-webkit-scrollbar-thumb {
  background: var(--gold);
}

.suggested-card {
  position: relative;
  display: grid;
  min-height: 430px;
  align-content: end;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  scroll-snap-align: start;
  text-decoration: none;
  opacity: 0;
  transform: translateY(22px);
  animation: suggestedCardIn 980ms var(--ease-dramatic) forwards;
  animation-delay: calc(110ms + var(--suggested-delay, 0ms));
  transition: border-color 520ms ease, box-shadow 720ms ease, color 520ms ease, transform 720ms var(--ease-dramatic);
}

.suggested-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(252, 251, 248, 0.02) 0%, rgba(252, 251, 248, 0.32) 48%, rgba(252, 251, 248, 0.95) 100%),
    radial-gradient(circle at 68% 26%, rgba(200, 162, 74, 0.18), transparent 34%);
  pointer-events: none;
  transition: opacity 520ms ease;
}

.suggested-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(200, 162, 74, 0);
  border-radius: 6px;
  pointer-events: none;
  transform: scale(1.025);
  transition: border-color 520ms ease, transform 720ms var(--ease-dramatic);
}

.suggested-card:hover,
.suggested-card:focus-visible {
  border-color: rgba(200, 162, 74, 0.72);
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
}

.suggested-card:hover::after,
.suggested-card:focus-visible::after {
  border-color: rgba(200, 162, 74, 0.46);
  transform: scale(1);
}

.suggested-media {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 38px;
  background: #f7f4ee;
}

.suggested-media img {
  display: block;
  max-width: min(82%, 320px);
  max-height: 72%;
  object-fit: contain;
  filter: drop-shadow(0 24px 26px rgba(17, 17, 17, 0.12));
  transform: translateY(-16px) scale(1);
  transition: filter 720ms ease, opacity 520ms ease, transform 920ms var(--ease-dramatic);
}

.suggested-card:hover .suggested-media img,
.suggested-card:focus-visible .suggested-media img {
  filter: drop-shadow(0 32px 32px rgba(17, 17, 17, 0.18));
  transform: translateY(-24px) scale(1.08) rotate(-2deg);
}

.suggested-copy {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 8px;
}

.suggested-copy::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  margin: 12px auto 0;
  background: rgba(200, 162, 74, 0.2);
  transition: width 500ms var(--ease-dramatic), background 500ms ease;
}

.suggested-card:hover .suggested-copy::after,
.suggested-card:focus-visible .suggested-copy::after {
  width: 80px;
  background: rgba(200, 162, 74, 0.72);
}

.suggested-label {
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.suggested-copy h3 {
  margin: 0;
  max-width: 260px;
  font-family: Baskerville, "Libre Baskerville", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 400;
  letter-spacing: 0.006em;
  line-height: 1;
}

.suggested-copy p {
  max-width: 300px;
  margin: 0;
  color: #5f5a50;
  font-size: 13px;
  line-height: 1.5;
}

.suggested-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 700;
}

.suggested-meta span:last-child {
  color: rgba(17, 17, 17, 0.48);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.suggested-card.is-recent {
  border-color: rgba(200, 162, 74, 0.42);
}

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

.hallmark-section {
  position: relative;
  overflow: hidden;
  background: var(--page-bg);
  color: var(--navy);
  border-top: 0;
}

.hallmark-inner {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(360px, 0.8fr);
  gap: clamp(34px, 4.5vw, 64px);
  align-items: start;
  min-height: auto;
  padding: 34px 8vw 44px;
}

.hallmark-copy {
  max-width: 760px;
}

.section-kicker {
  margin: 0 0 28px;
  color: rgba(17, 17, 17, 0.66);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-inner > .section-kicker {
  grid-area: kicker;
  align-self: start;
}

.hallmark-section h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: clamp(52px, 5.1vw, 86px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.97;
}

.hallmark-copy p:not(.section-kicker) {
  max-width: 620px;
  margin: 0;
  color: #5f5a50;
  font-size: clamp(16px, 1.04vw, 18px);
  line-height: 1.68;
}

.hallmark-copy p + p {
  margin-top: 14px;
}

.hallmark-visual {
  position: relative;
  display: grid;
  min-height: 0;
  place-items: center;
  align-self: center;
  margin: 0;
  padding: clamp(18px, 3vw, 42px) 0 0;
}

.hallmark-visual::before,
.hallmark-visual::after {
  display: none;
  content: none;
}

.hallmark-visual::before {
  top: 0;
}

.hallmark-visual::after {
  bottom: 0;
}

.hallmark-visual img {
  display: block;
  width: min(100%, 560px);
  height: auto;
  filter: drop-shadow(0 26px 34px rgba(17, 17, 17, 0.08));
}

.hallmark-visual figcaption {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
}

.hallmark-visual figcaption span {
  color: rgba(17, 17, 17, 0.68);
  font-size: 11px;
  line-height: 1.45;
}

.about-section {
  position: relative;
  min-height: auto;
  overflow: hidden;
  isolation: isolate;
  background: var(--page-bg);
  color: var(--navy);
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  scroll-margin-top: 0;
}

.about-section::before {
  display: none;
  content: none;
}

.about-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(360px, 0.8fr);
  grid-template-areas:
    "kicker kicker"
    "title story"
    "credentials credentials";
  column-gap: clamp(34px, 4.5vw, 64px);
  row-gap: 34px;
  align-items: start;
  min-height: auto;
  padding: 54px 8vw 62px;
}

.about-section h2 {
  grid-area: title;
  align-self: start;
  margin: 0;
  max-width: 620px;
  color: var(--navy);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: clamp(52px, 5.1vw, 86px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
}

.about-section h2 em {
  color: var(--gold-deep);
  font-style: italic;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(170px, 0.48fr);
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
  grid-area: story;
  padding-top: 4px;
}

.about-copy {
  display: grid;
  gap: 14px;
  align-self: start;
  max-width: 430px;
}

.about-copy p {
  margin: 0;
  color: #5f5a50;
  font-size: 16px;
  line-height: 1.66;
}

.about-ring-box {
  position: relative;
  margin: 0;
  overflow: visible;
}

.about-ring-box::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -18px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(17, 17, 17, 0.14), rgba(17, 17, 17, 0) 72%);
  filter: blur(12px);
  pointer-events: none;
}

.about-ring-source {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.about-ring-canvas {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 230px);
  margin-left: auto;
  aspect-ratio: 1 / 1;
  filter: saturate(0.92) contrast(1.04) drop-shadow(0 28px 34px rgba(17, 17, 17, 0.1));
}

.about-credentials {
  grid-area: credentials;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  width: 100%;
  margin-top: 4px;
}

.about-credentials dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.48);
}

.about-credentials div {
  min-height: 158px;
  padding: 30px clamp(24px, 3vw, 42px) 28px;
  background: rgba(255, 255, 255, 0.36);
}

.about-credentials div + div {
  border-left: 1px solid rgba(17, 17, 17, 0.1);
}

.about-credentials dt {
  margin: 0 0 16px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-credentials dd {
  margin: 0;
  color: var(--navy);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.08;
}

.scroll-reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 1000ms var(--ease-dramatic),
    filter 1000ms ease,
    transform 1200ms var(--ease-dramatic);
  will-change: opacity, filter, transform;
}

.scroll-reveal.reveal-left {
  transform: translate3d(-44px, 18px, 0);
}

.scroll-reveal.reveal-right {
  transform: translate3d(56px, 18px, 0) scale(0.985);
}

.scroll-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.hallmark-copy .scroll-reveal:nth-child(1),
.about-inner > .section-kicker.scroll-reveal {
  transition-delay: 60ms;
}

.hallmark-copy .scroll-reveal:nth-child(2),
.about-section h2.scroll-reveal {
  transition-delay: 170ms;
}

.hallmark-copy .scroll-reveal:nth-child(3),
.about-copy .scroll-reveal:nth-child(1) {
  transition-delay: 300ms;
}

.hallmark-copy .scroll-reveal:nth-child(4),
.about-copy .scroll-reveal:nth-child(2) {
  transition-delay: 430ms;
}

.hallmark-visual.scroll-reveal,
.goldsmiths-mark.scroll-reveal {
  transition-delay: 260ms;
}

.about-credentials dl.scroll-reveal {
  transition-delay: 420ms;
}

.about-ring-box.scroll-reveal {
  transition-delay: 360ms;
}

@keyframes drawLine {
  to {
    transform: scaleY(1);
  }
}

@keyframes ruleIn {
  to {
    transform: scaleX(1);
  }
}

@keyframes chromeIn {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes eyebrowIn {
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes wordUp {
  from {
    filter: blur(5px);
  }
  to {
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes fadeLift {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes ringIn {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(112px, -82px, 0) rotateX(20deg) rotateY(-30deg) rotateZ(-8deg) scale(0.9);
  }
  64% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(-8px, 7px, 0) rotateX(-1.5deg) rotateY(2deg) rotateZ(0.5deg) scale(1.018);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1);
  }
}

@keyframes heroVideoIn {
  from {
    opacity: 0;
    filter: blur(10px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes contentIn {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(32px) scale(0.985);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes centerButtonIn {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translate(-50%, 28px) scale(0.97);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, 0) scale(1);
  }
}

@keyframes buttonIn {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(28px) scale(0.97);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes sparkle {
  0%,
  72%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(45deg) scale(0.22);
  }
  76% {
    opacity: 0.72;
    transform: translate(-50%, -50%) rotate(45deg) scale(0.85);
  }
  80% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(45deg) scale(0.36);
  }
}

@media (max-width: 1320px) {
  .about-inner {
    grid-template-columns: minmax(420px, 0.92fr) minmax(360px, 0.8fr);
    padding-left: 8vw;
  }

  .about-story {
    max-width: none;
  }

  .about-credentials {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .hero {
    --hero-header-offset: 132px;
    min-height: 100svh;
    padding: 0 28px 56px;
  }

  .hero::before {
    inset: 0 0 0 70vw;
  }

  .topbar {
    height: 132px;
  }

  .topbar::after {
    bottom: 0;
  }

  .brand {
    top: 21px;
    left: 28px;
    width: 100px;
    height: 50px;
  }

  .hamburger {
    top: 40px;
    left: auto;
    right: 126px;
  }

  .shop-back-link {
    top: 38px;
    left: 132px;
  }

  .nav-links {
    top: 96px;
    left: 50%;
    display: flex;
    gap: clamp(18px, 5vw, 34px);
    color: var(--navy);
    font-size: 10px;
    letter-spacing: 0.14em;
    white-space: nowrap;
  }

  .actions {
    top: 30px;
    right: 28px;
    gap: 16px;
  }

  .hero-stage {
    min-height: 100svh;
    margin-right: -28px;
    margin-left: -28px;
  }

  .hero-copy-stack {
    top: 21vh;
    left: 56px;
    width: min(680px, calc(100vw - 56px));
  }

  .hallmark-inner {
    display: block;
    min-height: auto;
    padding: 84px 28px 76px;
  }

  .hallmark-section h2 {
    max-width: 760px;
    font-size: clamp(54px, 12vw, 96px);
  }

  .hallmark-copy p:not(.section-kicker) {
    max-width: 620px;
  }

  .hallmark-visual {
    width: 100%;
    min-height: 0;
    margin-top: 42px;
    padding: 28px 0;
    border-left: 0;
  }

  .hallmark-visual img {
    width: min(100%, 680px);
  }

  .about-section::before {
    inset: 0 0 0 70vw;
  }

  .about-inner {
    display: block;
    min-height: auto;
    padding: 94px 28px 68px;
  }

  .about-section h2 {
    max-width: 760px;
    margin-top: 48px;
    font-size: clamp(58px, 13vw, 104px);
  }

  .about-copy {
    max-width: 620px;
    margin-top: 34px;
  }

  .about-story {
    grid-template-columns: minmax(260px, 0.9fr) minmax(210px, 0.42fr);
    max-width: 820px;
    margin-top: 34px;
  }

  .about-ring-canvas {
    width: min(100%, 250px);
  }

  .about-credentials {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

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

  .eyebrow,
  .headline {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .eyebrow {
    margin-top: 2vh;
    font-size: clamp(14px, 3.4vw, 20px);
    letter-spacing: 0.2em;
  }

  .headline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.12em;
    margin-top: 26px;
    font-size: clamp(76px, 16vw, 138px);
  }

  .headline-promo {
    display: block;
    width: min(100%, 640px);
    line-height: 1.08;
  }

  .hero-intro {
    max-width: 520px;
  }

  .hero-notes {
    right: 56px;
    bottom: 34px;
    grid-template-columns: 1fr;
    max-width: 300px;
    gap: 14px;
  }

  .ring-wrap {
    position: absolute;
    inset: var(--hero-header-offset) 0 0;
    width: 100%;
    height: auto;
    min-width: 0;
    margin: 0;
  }

  .shop-button {
    position: absolute;
    top: auto;
    bottom: 36px;
    left: 56px;
    right: auto;
  }

}

@media (max-width: 760px) {
  .about-story {
    grid-template-columns: 1fr;
  }

  .about-ring-canvas {
    width: min(100%, 300px);
    margin: 8px auto 0;
  }

  .about-credentials dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 0 22px 46px;
  }

  .hero::before {
    inset: 0 0 0 76vw;
  }

  .about-section::before {
    inset: 0 0 0 76vw;
  }

  .grid-line {
    opacity: 0.68;
  }

  .line-b {
    --line-left: 24vw;
  }

  .line-c {
    --line-left: 58vw;
  }

  .brand {
    top: 25px;
    width: 86px;
    height: 42px;
  }

  .nav-links {
    top: 88px;
    width: min(86vw, 340px);
    justify-content: center;
    gap: clamp(14px, 4vw, 24px);
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .shop-back-link {
    top: 38px;
    left: 116px;
    gap: 8px;
    font-size: 9px;
  }

  .shop-back-link svg {
    width: 30px;
  }

  .hamburger {
    right: 104px;
  }

  .actions {
    gap: 11px;
  }

  .headline {
    display: block;
    font-size: clamp(58px, 18vw, 82px);
    line-height: 0.9;
  }

  .headline-promo {
    line-height: 1.02;
  }

  .hero-copy-stack {
    top: 16vh;
    left: 44px;
    width: calc(100vw - 88px);
  }

  .hero-intro {
    max-width: 330px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-notes {
    display: none;
  }

  .headline-mask + .headline-mask {
    margin-top: -0.04em;
  }

  .ring-wrap {
    width: 100%;
    margin-top: 0;
  }

  .shop-button {
    width: 178px;
    height: 52px;
    left: 44px;
    border-radius: 6px;
  }

  .hero-stage {
    margin-right: -22px;
    margin-left: -22px;
  }

  .suggested-section {
    padding: 0;
  }

  .suggested-shell {
    width: auto;
    padding: 0 22px;
  }

  .suggested-track {
    grid-auto-columns: clamp(248px, 82vw, 360px);
    gap: 14px;
  }

  .suggested-card {
    min-height: 390px;
    padding: 22px;
  }

  .suggested-controls {
    left: 22px;
    right: 22px;
    justify-content: space-between;
  }

  .hallmark-inner {
    padding: 72px 22px 64px;
  }

  .hallmark-section h2 {
    font-size: clamp(48px, 15vw, 76px);
  }

  .hallmark-copy p:not(.section-kicker),
  .about-copy p {
    font-size: 15px;
  }

  .about-inner {
    padding: 78px 22px 58px;
  }

  .about-section h2 {
    font-size: clamp(52px, 16vw, 78px);
  }

  .goldsmiths-mark,
  .about-credentials div {
    min-height: 112px;
  }

}

@media (max-width: 1080px) {
  .suggested-shell {
    width: auto;
    padding-right: 8vw;
    padding-left: 8vw;
  }

  .suggested-controls {
    right: clamp(22px, 3.4vw, 54px);
    left: clamp(22px, 3.4vw, 54px);
    justify-content: space-between;
  }

  .suggested-track {
    grid-auto-columns: clamp(280px, 46vw, 420px);
  }

  .shop-page {
    overflow-y: auto;
  }

  .shop-line-c {
    --shop-line-left: 58vw;
  }

  .shop-line-d {
    --shop-line-left: 100vw;
  }

  .shop-topbar .actions {
    color: var(--navy);
  }

  .shop-menu {
    padding: 150px 18px 18px;
  }

  .contact-holding {
    padding: 128px 28px 68px;
  }

  .site-footer {
    gap: 20px;
    max-width: none;
    padding: 34px 4.5vw 20px;
  }

  .footer-main {
    grid-template-columns: minmax(170px, 0.5fr) minmax(240px, 1fr) minmax(240px, 0.7fr);
    gap: 24px;
  }

  .footer-contact {
    justify-self: end;
    padding: 20px 20px 34px;
    border: 1px solid rgba(17, 17, 17, 0.14);
  }

  .footer-studio p {
    text-align: left;
  }

  .footer-bottom {
    display: grid;
  }

  .favourites-layout,
  .pay-layout {
    display: block;
    min-height: auto;
    padding: 128px 28px 58px;
  }

  .favourites-intro {
    position: relative;
    top: auto;
    margin-bottom: 42px;
  }

  .favourites-intro h1,
  .pay-panel h1 {
    font-size: clamp(58px, 13vw, 104px);
  }

  .pay-summary {
    margin-top: 42px;
  }

  .staff-dashboard {
    grid-template-columns: 1fr;
    padding: 126px 28px 64px;
  }

  .staff-dashboard-intro {
    grid-template-columns: 1fr;
  }

  .staff-dashboard-copy,
  .staff-preview {
    position: relative;
    top: auto;
  }

  .staff-dashboard-copy {
    min-height: auto;
    align-items: flex-start;
  }

  .staff-uploaded {
    grid-template-columns: 1fr;
  }

  .checkout-page {
    display: block;
  }

  .checkout-page::before {
    inset: 58% 0 0;
  }

  .checkout-review,
  .checkout-payment {
    padding: 112px 28px 54px;
  }

  .checkout-payment {
    padding-top: 58px;
  }

  .checkout-items,
  .shipping-block,
  .payment-form {
    max-width: none;
  }

  .catalog-view {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding: 112px 28px 54px;
    overflow: visible;
  }

  .catalog-view::before {
    inset: 0 0 0 72vw;
  }

  .catalog-copy {
    align-self: start;
  }

  .catalog-copy h1 {
    font-size: clamp(68px, 14vw, 116px);
  }

  .catalog-copy p {
    max-width: 520px;
  }

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

  .product-listing {
    grid-template-columns: 154px minmax(0, 1fr);
    max-width: none;
    padding: 150px 28px 64px;
    gap: 22px;
  }

  .product-listing .catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-card {
    min-height: 260px;
  }

  .catalog-note {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(100%, 420px);
  }

  .shop-layout {
    display: block;
    min-height: 100svh;
  }

  .shop-gallery {
    min-height: 60svh;
    padding: 104px 28px 62px;
  }

  .shop-gallery::before {
    width: 28%;
  }

  .product-stage {
    width: min(88vw, 660px);
    height: min(52vh, 520px);
  }

  .return-link {
    left: 28px;
    bottom: 34px;
  }

  .gallery-dots {
    bottom: 28px;
  }

  .shop-detail {
    min-height: auto;
    padding: 58px 28px 42px;
  }

  .shop-detail::before {
    transform: none;
    animation: none;
  }

  .detail-inner {
    max-width: none;
  }

}

@media (max-width: 860px) {
  .product-listing {
    grid-template-columns: 1fr;
    padding: 132px 16px 54px;
  }

  .catalog-shop-header {
    gap: 18px;
    padding-bottom: 40px;
  }

  .catalog-area-tabs {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 10px;
    align-items: stretch;
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .catalog-area-tabs a {
    min-width: 70px;
    min-height: 48px;
    padding: 0 15px;
    text-align: center;
    white-space: normal;
  }

  .catalog-title-row {
    display: grid;
    gap: 20px;
  }

  .catalog-title-row h1 {
    max-width: 330px;
    font-size: clamp(44px, 13vw, 72px);
    line-height: 0.92;
  }

  .catalog-count-label {
    margin: 0;
    font-size: 12px;
  }

  .filter-drawer-toggle {
    display: inline-flex;
    width: fit-content;
    min-height: 43px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 17px;
    border: 1px solid rgba(122, 92, 44, 0.22);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.62);
    color: #111;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .filter-drawer-toggle svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--gold-deep);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.4;
  }

  .listing-filters {
    position: relative;
    top: auto;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: none;
    padding: 17px;
    border: 1px solid rgba(122, 92, 44, 0.16);
    background: rgba(255, 255, 255, 0.58);
  }

  .shop-page.is-filter-panel-open .listing-filters {
    display: grid;
    animation: mobileFilterIn 420ms var(--ease-dramatic) both;
  }

  .listing-filters .price-filter {
    grid-column: 1 / -1;
  }

  .filter-group,
  .filter-group + .filter-group {
    margin-top: 0;
  }

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

  .listing-toolbar {
    align-items: center;
    padding-top: 22px;
    border-top: 1px solid rgba(17, 17, 17, 0.1);
  }

  .sort-panel p {
    display: none;
  }

  .sort-panel label {
    display: inline-flex;
    gap: 10px;
    align-items: center;
  }

  .sort-panel label::before {
    content: "Sort:";
    color: rgba(17, 17, 17, 0.72);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .sort-panel select {
    width: 164px;
    height: 44px;
    color: #111;
    font-size: 13px;
    font-weight: 800;
  }

  .product-listing .catalog-grid.is-feature-view {
    grid-template-columns: 1fr;
  }

  .product-listing .catalog-grid.is-feature-view .product-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "brand"
      "name"
      "price";
    min-height: 0;
    padding: 18px;
  }

  .product-listing .catalog-grid.is-feature-view .product-image-wrap {
    aspect-ratio: 1 / 0.82;
    margin-bottom: 18px;
  }

  .product-listing .catalog-grid.is-feature-view .product-name {
    font-size: clamp(34px, 10vw, 54px);
  }

  .shop-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(330px, 1fr));
    width: 100%;
    min-height: calc(100svh - 168px);
    gap: 12px;
  }

  .shop-area-title {
    max-width: 92%;
    font-size: clamp(34px, 8vw, 62px);
  }

  .shop-area-copy {
    max-width: 270px;
  }
}

@media (max-width: 700px) {
  .site-footer {
    width: 100%;
    max-width: none;
    padding: 32px 22px 42px;
  }

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

  .footer-contact {
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    padding: 20px 20px 38px;
    border: 1px solid rgba(17, 17, 17, 0.14);
  }

  .footer-studio {
    padding-top: 18px;
    border-top: 1px solid rgba(17, 17, 17, 0.12);
  }

  .shop-menu {
    padding: 142px 12px 12px;
  }

  .contact-holding {
    padding: 112px 22px 54px;
  }

  .shop-area-card {
    padding: 22px;
  }

  .shop-area-title {
    max-width: 260px;
    font-size: clamp(30px, 7.8vw, 46px);
  }

  .shop-area-copy {
    max-width: 260px;
    font-size: 13px;
  }

  .shop-area-card img {
    right: 12px;
    width: min(70%, 250px);
    opacity: 0.16;
  }

  .shop-area-card-contact img {
    width: min(56%, 180px);
  }

  .catalog-view {
    padding: 146px 22px 44px;
  }

  .checkout-review,
  .checkout-payment {
    padding: 104px 22px 44px;
  }

  .favourites-layout,
  .pay-layout {
    padding: 112px 22px 48px;
  }

  .checkout-payment {
    padding-top: 42px;
  }

  .checkout-item {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
  }

  .favourite-row {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
  }

  .favourite-media {
    width: 92px;
  }

  .favourite-row > strong,
  .favourite-actions {
    grid-column: 2;
  }

  .pay-item {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .pay-item em {
    grid-column: 2;
  }

  .checkout-item-media {
    width: 92px;
  }

  .checkout-item-copy h2 {
    font-size: 18px;
  }

  .quantity-control {
    grid-column: 1 / -1;
    justify-content: start;
  }

  .shipping-option {
    grid-template-columns: 18px minmax(0, 1fr);
  }

  .shipping-option em {
    grid-column: 2;
    width: fit-content;
  }

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

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

  .product-listing .catalog-grid.is-grid-view {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-copy h1 {
    font-size: clamp(58px, 18vw, 82px);
  }

  .catalog-filters {
    gap: 8px;
  }

  .product-card {
    min-height: 245px;
  }

  .product-image-wrap {
    height: 132px;
  }

  .shop-gallery {
    min-height: 56svh;
    padding: 96px 22px 58px;
  }

  .product-stage {
    width: min(96vw, 500px);
    height: 42vh;
  }

  .shop-product-image {
    max-width: 104%;
  }

  .product-stage.is-ring .shop-product-image {
    max-width: 122%;
  }

  .product-stage.is-bracelet .shop-product-image {
    max-width: 126%;
  }

  .product-stage.is-pendant .shop-product-image,
  .product-stage.is-cuff .shop-product-image {
    max-width: 132%;
  }

  .shop-detail {
    padding: 42px 22px 34px;
  }

  .shop-detail h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .shop-copy {
    font-size: 16px;
  }

  .purchase-row {
    gap: 11px;
  }

  .add-button {
    height: 54px;
  }

  .wish-button {
    width: 54px;
    height: 54px;
  }

}

@media (max-width: 520px) {
  .shop-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(250px, 1fr));
    min-height: auto;
    gap: 10px;
  }

  .shop-area-card {
    min-height: 250px;
    padding: 18px;
  }

  .shop-area-title {
    max-width: 100%;
    font-size: clamp(25px, 7.4vw, 34px);
    line-height: 0.96;
  }

  .shop-area-copy {
    max-width: 100%;
    margin-top: 12px;
    font-size: 11px;
    line-height: 1.45;
  }

  .shop-area-enter {
    margin-top: 18px;
    font-size: 9px;
  }

  .shop-area-card::after {
    inset: 9px;
  }

  .shop-area-card img {
    right: 4px;
    width: min(82%, 190px);
    opacity: 0.12;
  }

  .listing-filters {
    grid-template-columns: 1fr;
  }

  .metal-options {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    letter-spacing: 0.12em;
  }

  .favourite-row,
  .favourites-empty,
  .pay-summary {
    padding: 22px;
  }

  .favourites-intro h1,
  .pay-panel h1 {
    font-size: clamp(50px, 18vw, 76px);
  }

  .staff-login-page {
    padding: 112px 22px 54px;
  }

  .staff-dashboard {
    padding: 112px 22px 52px;
  }

  .staff-field-row,
  .staff-checkboxes,
  .staff-metal-options {
    grid-template-columns: 1fr;
  }

  .staff-dashboard-intro {
    padding: 26px;
  }
}

@media (max-width: 380px) {
  .shop-menu-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .shop-area-card {
    min-height: 238px;
  }

  .shop-area-title {
    max-width: 240px;
    font-size: clamp(30px, 10vw, 42px);
  }

  .shop-area-copy {
    max-width: 240px;
    font-size: 12px;
  }
}

.mobile-menu-toggle {
  position: absolute;
  top: 39px;
  right: clamp(18px, 4vw, 52px);
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  opacity: 0;
  animation: chromeIn 820ms var(--ease-luxury) 820ms forwards;
}

.mobile-menu-toggle span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 420ms var(--ease-luxury), opacity 320ms ease;
}

.mobile-menu-toggle span:nth-child(1) {
  transform: translateY(-8px);
}

.mobile-menu-toggle span:nth-child(3) {
  transform: translateY(8px);
}

.topbar.is-menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

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

.topbar.is-menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.atelier-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(200, 162, 74, 0.45);
  border-bottom: 1px solid rgba(200, 162, 74, 0.45);
  background: #10100f;
  color: #f7efe1;
}

.marquee-track {
  display: flex;
  width: max-content;
  min-width: 200%;
  align-items: center;
  gap: clamp(34px, 7vw, 104px);
  padding: 17px 0;
  animation: remzMarquee 28s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
  color: #f6f0e2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.marquee-track i {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

@keyframes remzMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.trust-section,
.craft-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  background: #f5f0e7;
}

.trust-item,
.craft-stat {
  min-height: 230px;
  padding: clamp(28px, 4vw, 54px);
  text-align: center;
  border-right: 1px solid rgba(17, 17, 17, 0.12);
}

.trust-item:last-child,
.craft-stat:last-child {
  border-right: 0;
}

.trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0 auto 24px;
  place-items: center;
  color: var(--gold-deep);
}

.trust-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
}

.trust-item h3 {
  margin: 0;
  color: #111;
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.05;
}

.trust-item p {
  max-width: 240px;
  margin: 17px auto 0;
  color: rgba(17, 17, 17, 0.54);
  font-size: 13px;
  line-height: 1.72;
}

.philosophy-section {
  background: #0f0f0f;
  color: #f8f3e8;
}

.philosophy-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(240px, 0.48fr);
  gap: clamp(42px, 8vw, 126px);
  align-items: center;
  padding: clamp(76px, 9vw, 138px) clamp(28px, 8vw, 128px);
}

.philosophy-copy {
  max-width: 560px;
}

.philosophy-copy .section-kicker {
  color: var(--gold);
}

.philosophy-copy h2 {
  margin: 0;
  color: #fff;
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: clamp(56px, 8.2vw, 128px);
  font-weight: 400;
  line-height: 0.9;
}

.philosophy-copy h2 em {
  display: block;
  color: var(--gold);
  font-style: italic;
}

.philosophy-copy p:not(.section-kicker) {
  max-width: 390px;
  margin: 34px 0 0;
  color: rgba(248, 243, 232, 0.75);
  font-size: 15px;
  line-height: 1.9;
}

.philosophy-mark {
  margin: 0;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(200, 162, 74, 0.32);
  background: rgba(255, 255, 255, 0.035);
}

.philosophy-mark img {
  display: block;
  width: min(100%, 420px);
  margin: 0 auto;
  filter: grayscale(1) brightness(1.5) sepia(0.16);
}

.philosophy-mark figcaption {
  max-width: 350px;
  margin: 24px auto 0;
  color: rgba(248, 243, 232, 0.68);
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

.craft-stat {
  min-height: 170px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.craft-stat strong {
  color: #111;
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: clamp(40px, 4vw, 70px);
  font-weight: 400;
  line-height: 0.92;
}

.craft-stat span {
  color: rgba(17, 17, 17, 0.54);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.45;
  text-transform: uppercase;
}

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

.craft-credential {
  position: relative;
  gap: 18px;
  min-height: 190px;
  cursor: default;
  transition: background 500ms ease, color 500ms ease;
}

.craft-credential span {
  order: -1;
  color: rgba(119, 87, 18, 0.72);
}

.craft-credential strong {
  max-width: 360px;
  margin: 0 auto;
  font-size: clamp(26px, 2.8vw, 45px);
  line-height: 1.02;
}

.craft-credential::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  margin: 3px auto 0;
  background: rgba(200, 162, 74, 0.2);
  transition: width 500ms var(--ease-dramatic), background 500ms ease;
}

.craft-credential:hover,
.craft-credential:focus-within {
  background: rgba(255, 255, 255, 0.26);
}

.craft-credential:hover::after,
.craft-credential:focus-within::after {
  width: 80px;
  background: rgba(200, 162, 74, 0.72);
}

.site-footer {
  gap: 0;
  padding: 0 clamp(28px, 4.8vw, 70px);
  border-top: 0;
  background: #0f0f0f;
  color: #e9ddc1;
}

.footer-main {
  grid-template-columns: minmax(230px, 0.9fr) minmax(190px, 0.75fr) minmax(230px, 0.82fr) minmax(260px, 0.88fr);
  gap: 0;
  min-height: 330px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-identity,
.footer-departments,
.footer-studio,
.footer-contact {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: clamp(36px, 4vw, 58px);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact {
  justify-self: stretch;
  align-self: stretch;
  min-width: 0;
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  background: transparent;
}

.footer-monogram {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: #fff;
  font-family: Didot, "Bodoni 72", serif;
  font-size: 22px;
}

.footer-brand {
  width: 112px;
  height: 38px;
  filter: invert(1) brightness(1.8) sepia(0.12);
}

.footer-established,
.footer-copyright,
.footer-departments a,
.footer-contact a,
.footer-contact span,
.footer-studio a:not(.footer-login),
.footer-body-copy {
  color: #a9bed1;
}

.footer-established {
  color: var(--gold);
}

.footer-body-copy {
  max-width: 310px;
  margin: 10px 0 18px;
  font-size: 14px;
  line-height: 1.65;
}

.footer-studio p:not(.footer-body-copy) {
  max-width: 320px;
  color: #f4ead3;
  font-size: clamp(25px, 2vw, 36px);
}

.footer-heading,
.footer-contact-title {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: Didot, "Bodoni 72", serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-departments a,
.footer-contact a,
.footer-studio a:not(.footer-login) {
  width: fit-content;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.footer-contact a[href^="mailto"] {
  margin-top: 12px;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: none;
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.footer-socials a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(169, 190, 209, 0.25);
  border-radius: 999px;
  color: #fff;
  transition: border-color 360ms ease, color 360ms ease, transform 420ms var(--ease-luxury);
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.footer-login {
  right: clamp(28px, 4vw, 58px);
  bottom: 26px;
  color: rgba(169, 190, 209, 0.62);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0 28px;
  border-top: 1px solid rgba(169, 190, 209, 0.2);
  color: var(--gold);
}

.footer-bottom span {
  color: inherit;
}

.footer-bottom span:last-child {
  color: rgba(169, 190, 209, 0.52);
}

@media (max-width: 900px) {
  .topbar {
    height: 96px;
  }

  .brand {
    top: 18px;
    left: 22px;
    width: 112px;
    height: 58px;
  }

  .actions {
    top: 28px;
    right: 72px;
    gap: 12px;
  }

  .icon-button {
    width: 36px;
    height: 36px;
  }

  .icon-button svg,
  .cart-button svg,
  .favourite-button svg {
    width: 27px;
    height: 27px;
  }

  .mobile-menu-toggle {
    display: grid;
  }

  .nav-links {
    top: 96px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 0 22px;
    transform: none;
    background: rgba(15, 15, 15, 0.96);
    color: #fff;
    border-bottom: 1px solid rgba(200, 162, 74, 0.32);
    opacity: 0;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 620ms var(--ease-dramatic), opacity 420ms ease;
  }

  .nav-links a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    letter-spacing: 0.18em;
  }

  .topbar.is-menu-open .nav-links {
    max-height: 240px;
    opacity: 1;
    pointer-events: auto;
  }

  .shop-back-link {
    display: none;
  }

  .trust-section,
  .craft-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-item:nth-child(2),
  .craft-stat:nth-child(2) {
    border-right: 0;
  }

  .trust-item,
  .craft-stat {
    min-height: 210px;
  }

  .philosophy-inner {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }

  .footer-studio,
  .footer-contact {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-departments {
    border-right: 0;
  }

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

@media (max-width: 560px) {
  .topbar {
    height: 90px;
  }

  .topbar::after {
    height: 2px;
  }

  .brand {
    top: 18px;
    left: 18px;
    width: 104px;
    height: 54px;
  }

  .actions {
    top: 28px;
    right: 64px;
    gap: 8px;
  }

  .icon-button {
    width: 34px;
    height: 34px;
  }

  .mobile-menu-toggle {
    top: 26px;
    right: 17px;
  }

  .nav-links {
    top: 90px;
  }

  .hero {
    --hero-header-offset: 90px;
  }

  .trust-section,
  .craft-stats,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .craft-stat,
  .footer-identity,
  .footer-departments,
  .footer-studio,
  .footer-contact {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-footer {
    padding: 0 22px;
  }

  .footer-main {
    border-left: 0;
    border-right: 0;
  }

  .footer-identity,
  .footer-departments,
  .footer-studio,
  .footer-contact {
    padding: 32px 0;
  }

  .footer-login {
    position: static;
    margin-top: 16px;
    justify-content: start;
  }

  .philosophy-inner {
    padding: 68px 24px;
  }

  .philosophy-copy h2 {
    font-size: clamp(52px, 18vw, 84px);
  }

  .trust-item {
    min-height: 0;
  }
}

/* Compact publish-ready footer refresh */
.site-footer {
  width: 100%;
  padding: 0 clamp(22px, 4vw, 58px);
  background: #0f0f0f;
  border-top: 4px solid #050505;
  color: #efe7d4;
}

.footer-main {
  grid-template-columns: minmax(220px, 0.8fr) minmax(250px, 0.95fr) minmax(300px, 1fr);
  min-height: 0;
  max-width: 1440px;
  margin: 0 auto;
  border-left: 1px solid rgba(212, 170, 72, 0.12);
  border-right: 1px solid rgba(212, 170, 72, 0.12);
}

.footer-identity,
.footer-studio,
.footer-contact {
  align-content: center;
  gap: 12px;
  padding: clamp(30px, 3.2vw, 46px);
  border-right: 1px solid rgba(212, 170, 72, 0.12);
}

.footer-contact {
  border-right: 0;
}

.footer-monogram,
.footer-departments,
.footer-contact-title,
.footer-body-copy,
.footer-login {
  display: none !important;
}

.footer-brand {
  width: 126px;
  height: 44px;
}

.footer-established,
.footer-copyright {
  color: rgba(239, 231, 212, 0.76);
  font-size: 11px;
  letter-spacing: 0.2em;
}

.footer-studio p:not(.footer-body-copy) {
  max-width: 310px;
  color: #fff7e7;
  font-family: Didot, "Bodoni 72", serif;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.12;
}

.footer-contact .footer-heading {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.12em;
}

.footer-contact a,
.footer-studio a:not(.footer-login) {
  color: #b6c5d3;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: none;
}

.footer-contact a[href^="mailto"] {
  margin-top: 0;
  color: var(--gold);
}

.footer-appointment {
  margin-top: 8px;
  color: rgba(239, 231, 212, 0.86) !important;
}

.footer-newsletter {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  max-width: 340px;
}

.footer-newsletter label {
  display: grid;
  gap: 8px;
}

.footer-newsletter label > span:first-child,
.footer-newsletter-status {
  color: rgba(182, 197, 211, 0.82);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.footer-newsletter-field {
  display: grid;
  grid-template-columns: 1fr 44px;
  min-height: 44px;
  border: 1px solid rgba(182, 197, 211, 0.22);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.footer-newsletter-field input {
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fff7e7;
  font: inherit;
  font-size: 13px;
  padding: 0 14px;
  outline: 0;
}

.footer-newsletter-field input::placeholder {
  color: rgba(182, 197, 211, 0.58);
}

.footer-newsletter-field button {
  display: grid;
  place-items: center;
  border: 0;
  border-left: 1px solid rgba(182, 197, 211, 0.18);
  background: transparent;
  color: rgba(212, 170, 72, 0.95);
  cursor: pointer;
  transition: background 280ms ease, color 280ms ease;
}

.footer-newsletter-field button:hover,
.footer-newsletter-field button:focus-visible {
  background: rgba(212, 170, 72, 0.14);
  color: #fff7e7;
}

.footer-newsletter-field svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.footer-socials {
  margin-top: 8px;
}

.footer-bottom {
  grid-template-columns: auto auto minmax(220px, 1fr) auto;
  max-width: 1440px;
  margin: 0 auto;
  gap: clamp(18px, 3vw, 46px);
  padding: 18px 0 22px;
  border-top: 1px solid rgba(182, 197, 211, 0.18);
  color: var(--gold);
}

.footer-bottom span,
.footer-staff-gate {
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.footer-bottom span:nth-child(3) {
  justify-self: end;
  color: rgba(182, 197, 211, 0.54);
}

.footer-staff-gate {
  justify-self: end;
  color: rgba(182, 197, 211, 0.58);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 260ms ease;
}

.footer-staff-gate:hover,
.footer-staff-gate:focus-visible {
  color: var(--gold);
}

.footer-made {
  display: inline-flex;
  gap: 9px;
  align-items: center;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(212, 170, 72, 0.12);
  }

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

  .footer-bottom span:nth-child(3),
  .footer-staff-gate {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding: 0 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    border-left: 0;
    border-right: 0;
  }

  .footer-identity,
  .footer-studio,
  .footer-contact {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(212, 170, 72, 0.12);
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 0 24px;
  }
}

/* Header polish */
.brand {
  top: 18px;
  width: 118px;
  height: 61px;
}

.brand img {
  transition: filter 560ms ease, transform 760ms var(--ease-dramatic);
}

.brand:hover,
.brand:focus-visible {
  filter: none;
}

.brand:hover img,
.brand:focus-visible img {
  filter: brightness(0) saturate(100%) invert(67%) sepia(38%) saturate(780%) hue-rotate(5deg) brightness(94%) contrast(92%) drop-shadow(0 10px 18px rgba(200, 162, 74, 0.2));
  transform: translateX(2px) translateY(-1px);
}

.nav-links {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.075em;
}

.nav-links a {
  opacity: 0.94;
}

@media (max-width: 900px) {
  .brand {
    top: 17px;
    width: 106px;
    height: 55px;
  }

  .nav-links a {
    font-weight: 900;
  }
}

@media (max-width: 560px) {
  .brand {
    top: 18px;
    width: 98px;
    height: 51px;
  }
}

@keyframes mobileFilterIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

@media (max-width: 900px) {
  .topbar .nav-links {
    display: none;
  }

  .mobile-nav-panel {
    position: fixed;
    inset: 6px 0 auto 4px;
    z-index: 30;
    display: grid;
    gap: 24px;
    width: min(360px, calc(100vw - 10px));
    max-height: calc(100svh - 12px);
    padding: 18px 16px 22px;
    overflow-y: auto;
    border-radius: 12px 12px 0 0;
    background: rgba(252, 251, 248, 0.985);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.985);
    transition: opacity 360ms ease, transform 520ms var(--ease-dramatic);
  }

  .topbar.is-menu-open .mobile-nav-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .mobile-nav-logo {
    display: block;
    width: 110px;
    height: 42px;
  }

  .mobile-nav-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
  }

  .mobile-nav-cart {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #111;
  }

  .mobile-nav-cart svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
  }

  .mobile-nav-links {
    display: grid;
    gap: 8px;
  }

  .mobile-nav-links a {
    display: flex;
    min-height: 42px;
    align-items: center;
    padding: 0 16px;
    color: #2b2a27;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 320ms ease, color 320ms ease, transform 420ms var(--ease-dramatic);
  }

  .mobile-nav-links a:nth-child(4),
  .mobile-nav-links a:nth-child(6) {
    background: #f5f0e7;
  }

  .mobile-nav-links a:nth-child(6) {
    color: var(--gold-deep);
  }

  .mobile-nav-links a:hover,
  .mobile-nav-links a:focus-visible {
    background: #111;
    color: var(--gold);
    transform: translateX(4px);
  }

  .topbar.is-menu-open .mobile-menu-toggle {
    z-index: 40;
  }
}

/* Footer unboxed full-width refinement */
.site-footer {
  padding: 0 clamp(20px, 4vw, 58px);
}

.footer-main {
  grid-template-columns: minmax(220px, 0.72fr) minmax(320px, 1fr);
  max-width: none;
  border-right: 0;
  border-left: 0;
}

.footer-identity,
.footer-contact {
  border: 0;
  padding: clamp(28px, 3.4vw, 48px) 0;
}

.footer-identity {
  padding-right: clamp(24px, 5vw, 82px);
}

.footer-contact {
  justify-self: end;
  width: min(100%, 460px);
}

.footer-studio,
.footer-studio p {
  display: none !important;
}

.footer-bottom {
  grid-template-columns: auto minmax(180px, 1fr) auto;
  max-width: none;
  gap: clamp(18px, 3vw, 42px);
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.footer-bottom span:nth-child(2) {
  justify-self: end;
  color: rgba(182, 197, 211, 0.56);
}

.union-flag {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 14px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(239, 231, 212, 0.62);
  background:
    linear-gradient(33deg, transparent 42%, #fff 42% 48%, #c8102e 48% 52%, #fff 52% 58%, transparent 58%),
    linear-gradient(-33deg, transparent 42%, #fff 42% 48%, #c8102e 48% 52%, #fff 52% 58%, transparent 58%),
    linear-gradient(90deg, transparent 40%, #fff 40% 46%, #c8102e 46% 54%, #fff 54% 60%, transparent 60%),
    linear-gradient(0deg, transparent 34%, #fff 34% 42%, #c8102e 42% 58%, #fff 58% 66%, transparent 66%),
    #012169;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-identity {
    padding-right: 0;
  }

  .footer-contact {
    justify-self: stretch;
    width: 100%;
    border-top: 0;
  }

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

  .footer-bottom span:nth-child(2),
  .footer-staff-gate {
    justify-self: start;
  }
}

/* Responsive stability fixes for header, hero, and checkout */
@media (min-width: 901px) and (max-width: 1100px) {
  .topbar {
    height: 112px;
  }

  .topbar::after {
    bottom: 0;
  }

  .brand {
    top: 18px;
    left: clamp(26px, 4vw, 48px);
    width: 106px;
    height: 54px;
  }

  .nav-links {
    top: 48px;
    left: 50%;
    display: flex;
    gap: clamp(22px, 3vw, 34px);
    transform: translateX(-50%);
    font-size: 13px;
    letter-spacing: 0.075em;
    white-space: nowrap;
  }

  .actions {
    top: 34px;
    right: clamp(26px, 4vw, 48px);
    gap: 18px;
  }

  .shop-back-link {
    display: none;
  }
}

@media (max-width: 900px) {
  .topbar {
    height: 90px;
    background: transparent;
  }

  .topbar::after {
    bottom: 0;
    height: 3px;
  }

  .brand {
    top: 18px;
    left: 18px;
    width: 98px;
    height: 51px;
  }

  .actions {
    top: 27px;
    right: 64px;
  }

  .hero {
    --hero-header-offset: 0px;
    min-height: 100svh;
    padding: 0;
    background: #0f0f0f;
  }

  .hero-stage {
    min-height: 100svh;
    margin: 0;
    overflow: hidden;
  }

  .hero-stage::after {
    inset: 0;
  }

  .ring-wrap {
    inset: 0;
    height: 100svh;
  }

  .shop-button {
    position: absolute;
    left: clamp(24px, 8vw, 56px);
    bottom: max(42px, calc(env(safe-area-inset-bottom) + 28px));
    z-index: 8;
  }

  .atelier-marquee {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .hero-copy-stack {
    top: clamp(106px, 15vh, 132px);
    left: 28px;
    width: calc(100vw - 56px);
  }

  .shop-button {
    left: 28px;
    bottom: max(36px, calc(env(safe-area-inset-bottom) + 24px));
  }

  .headline {
    font-size: clamp(54px, 15vw, 76px);
  }
}

@media (max-width: 430px) {
  .hero-copy-stack {
    top: 112px;
    left: 24px;
    width: calc(100vw - 48px);
  }

  .headline {
    font-size: clamp(50px, 17vw, 70px);
    line-height: 0.92;
  }

  .hero-intro {
    max-width: 300px;
    margin-top: 16px;
  }

  .shop-button {
    left: 24px;
    bottom: max(30px, calc(env(safe-area-inset-bottom) + 20px));
    width: 168px;
    height: 50px;
  }
}

@media (max-width: 760px) {
  .checkout-review,
  .checkout-payment {
    padding-right: 22px;
    padding-left: 22px;
  }

  .payment-form {
    width: 100%;
  }
}

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

  .brand,
  .hamburger,
  .shop-back-link,
  .nav-links,
  .actions,
  .eyebrow,
  .ring-wrap {
    opacity: 1;
    transform: none;
  }

  .shop-button {
    opacity: 1;
    transform: none;
  }

  .headline-mask > span,
  .grid-line::before,
  .shop-grid-line::before,
  .product-stage::before {
    transform: none;
  }

  .detail-inner,
  .product-stage,
  .catalog-copy,
  .catalog-note,
  .product-card,
  .suggested-card,
  .shop-area-card,
  .scroll-reveal,
  .shop-detail::before,
  .stars span {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* Atelier capsule header preview */
.topbar {
  height: 104px;
  background:
    radial-gradient(circle at 24% 16%, rgba(201, 164, 73, 0.14), transparent 18%),
    radial-gradient(circle at 78% 4%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #0d0d0b 0%, #090909 100%);
  color: #fff;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.4) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(201, 164, 73, 0.32) 0 1px, transparent 1.6px);
  background-position: 12px 14px, 56px 36px;
  background-size: 138px 84px, 184px 112px;
  opacity: 0.12;
}

.topbar::after {
  height: 2px;
  background: linear-gradient(90deg, #0d0d0b, rgba(201, 164, 73, 0.86), #0d0d0b);
}

.brand {
  top: 24px;
  left: clamp(24px, 5vw, 88px);
  width: 112px;
  height: 54px;
  filter: invert(1) brightness(1.18);
}

.brand::after {
  inset: 0 -18px;
  background: radial-gradient(ellipse at center, rgba(201, 164, 73, 0.34), transparent 70%);
}

.brand:hover img,
.brand:focus-visible img {
  filter: brightness(0) saturate(100%) invert(68%) sepia(30%) saturate(842%) hue-rotate(4deg) brightness(97%) contrast(91%) drop-shadow(0 10px 18px rgba(201, 164, 73, 0.3));
}

.nav-links {
  top: 30px;
  gap: 0;
  align-items: center;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 40px rgba(0, 0, 0, 0.22);
  color: #fff;
  backdrop-filter: blur(18px);
}

.nav-links a {
  min-width: 112px;
  padding: 13px 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
  transition: color 360ms ease, background 360ms ease, transform 520ms var(--ease-dramatic), box-shadow 360ms ease;
}

.nav-links a::after {
  display: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  background: rgba(201, 164, 73, 0.9);
  color: #0d0d0b;
  box-shadow: 0 10px 22px rgba(201, 164, 73, 0.18);
  transform: translateY(-1px);
}

.shop-topbar .nav-links,
.checkout-topbar .nav-links,
.shop-page.is-catalog .shop-topbar .nav-links,
.shop-topbar .nav-links a[aria-current="page"],
.checkout-topbar .nav-links a[aria-current="page"] {
  color: #fff;
}

.actions {
  top: 29px;
  right: clamp(24px, 5vw, 88px);
  gap: 10px;
}

.icon-button {
  width: auto;
  min-width: 54px;
  height: 48px;
  grid-auto-flow: column;
  grid-template-columns: auto auto;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: color 340ms ease, background 340ms ease, border-color 340ms ease, transform 520ms var(--ease-dramatic);
}

.icon-button::after {
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.favourite-button::after {
  content: "Favourites";
}

.cart-button::after {
  content: "Cart";
}

.icon-button svg,
.cart-button svg,
.favourite-button svg {
  width: 22px;
  height: 22px;
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: rgba(201, 164, 73, 0.72);
  background: rgba(201, 164, 73, 0.92);
  color: #0d0d0b;
  transform: translateY(-2px);
}

.cart-count,
.favourite-count {
  top: -7px;
  right: -5px;
  background: var(--gold);
  color: #0d0d0b;
}

.mobile-menu-toggle {
  color: #fff;
}

.header-style-toggle {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  min-height: 32px;
  padding: 0 13px;
  border: 1px solid rgba(201, 164, 73, 0.5);
  border-radius: 999px;
  background: rgba(13, 13, 11, 0.78);
  color: #f7f1e6;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  transition: background 260ms ease, transform 320ms var(--ease-luxury);
}

.header-style-toggle:hover,
.header-style-toggle:focus-visible {
  background: rgba(201, 164, 73, 0.95);
  color: #0d0d0b;
  transform: translateY(-2px);
}

.classic-header .topbar {
  height: 112px;
  background: var(--page-bg);
  color: var(--navy);
}

.classic-header .topbar::before {
  display: none;
}

.classic-header .topbar::after {
  height: 3px;
  background: #111;
}

.classic-header .brand {
  top: 18px;
  left: 4.5vw;
  width: 118px;
  height: 61px;
  filter: none;
}

.classic-header .nav-links {
  top: 48px;
  gap: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--navy);
  backdrop-filter: none;
}

.classic-header .nav-links a {
  min-width: 0;
  padding: 0;
  color: var(--navy);
  font-size: 14px;
}

.classic-header .nav-links a:hover,
.classic-header .nav-links a:focus-visible,
.classic-header .nav-links a[aria-current="page"] {
  background: transparent;
  color: var(--gold-deep);
  box-shadow: none;
}

.classic-header .actions {
  top: 34px;
  right: 5.1vw;
  gap: 18px;
}

.classic-header .icon-button {
  width: 38px;
  min-width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy);
}

.classic-header .icon-button::after {
  display: none;
}

@media (max-width: 1120px) {
  .nav-links a {
    min-width: 92px;
    padding-inline: 14px;
  }

  .icon-button::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .topbar {
    height: 88px;
    background:
      radial-gradient(circle at 18% 10%, rgba(201, 164, 73, 0.16), transparent 26%),
      linear-gradient(180deg, #0d0d0b 0%, #090909 100%);
  }

  .brand,
  .classic-header .brand {
    top: 18px;
    left: 20px;
    width: 98px;
    height: 50px;
    filter: invert(1) brightness(1.18);
  }

  .actions {
    top: 25px;
    right: 70px;
    gap: 8px;
  }

  .icon-button {
    width: 36px;
    min-width: 36px;
    height: 36px;
    padding: 0;
    border-color: transparent;
    background: transparent;
  }

  .mobile-menu-toggle {
    top: 25px;
  }

  .mobile-nav-panel {
    top: 88px;
    background: rgba(247, 243, 235, 0.98);
  }

  .header-style-toggle {
    right: 10px;
    bottom: 10px;
    font-size: 9px;
  }

  .classic-header .topbar {
    height: 88px;
    background: var(--page-bg);
  }

  .classic-header .mobile-menu-toggle,
  .classic-header .actions,
  .classic-header .icon-button {
    color: var(--navy);
  }
}

/* Dark header refinement: clean text nav, white logo */
.topbar .brand,
.classic-header .topbar .brand {
  filter: none;
}

.topbar .brand img,
.classic-header .topbar .brand img {
  filter: brightness(0) invert(1) drop-shadow(0 8px 18px rgba(255, 255, 255, 0.08));
  opacity: 0.96;
}

.topbar .brand:hover img,
.topbar .brand:focus-visible img,
.classic-header .topbar .brand:hover img,
.classic-header .topbar .brand:focus-visible img {
  filter: brightness(0) saturate(100%) invert(68%) sepia(30%) saturate(842%) hue-rotate(4deg) brightness(97%) contrast(91%) drop-shadow(0 10px 18px rgba(201, 164, 73, 0.3));
}

.nav-links,
.classic-header .nav-links {
  gap: clamp(28px, 3.4vw, 48px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  backdrop-filter: none;
}

.nav-links a,
.classic-header .nav-links a {
  min-width: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.nav-links a::after,
.classic-header .nav-links a::after {
  display: block;
  bottom: -11px;
  height: 1px;
  background: var(--gold);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"],
.classic-header .nav-links a:hover,
.classic-header .nav-links a:focus-visible,
.classic-header .nav-links a[aria-current="page"] {
  background: transparent;
  color: var(--gold);
  box-shadow: none;
  transform: translateY(-2px);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after,
.classic-header .nav-links a:hover::after,
.classic-header .nav-links a:focus-visible::after,
.classic-header .nav-links a[aria-current="page"]::after {
  opacity: 0.8;
  transform: scaleX(1);
}

.header-style-toggle {
  display: none !important;
}

@media (max-width: 900px) {
  .topbar .brand img,
  .classic-header .topbar .brand img {
    filter: brightness(0) invert(1) drop-shadow(0 8px 18px rgba(255, 255, 255, 0.08));
  }
}

/* Get in Touch page */
.contact-page {
  min-height: 100svh;
  background: var(--page-bg);
  color: #111;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: end;
  padding: clamp(150px, 14vw, 196px) clamp(28px, 7vw, 104px) clamp(54px, 7vw, 96px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  background:
    radial-gradient(circle at 82% 20%, rgba(201, 164, 73, 0.15), transparent 28%),
    linear-gradient(180deg, rgba(13, 13, 11, 0.04), rgba(247, 243, 235, 0));
}

.contact-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #111;
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: clamp(64px, 8.5vw, 132px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.88;
}

.contact-hero-copy > p:not(.section-kicker) {
  max-width: 560px;
  margin: 30px 0 0;
  color: #5f5a50;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.7;
}

.contact-direct {
  display: grid;
  gap: 12px;
}

.contact-direct-card,
.contact-social-strip a,
.contact-option,
.contact-form {
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 24px 58px rgba(17, 17, 17, 0.055);
}

.contact-direct-card {
  display: grid;
  gap: 9px;
  padding: 24px;
  color: #111;
  text-decoration: none;
  transition: border-color 360ms ease, background 360ms ease, transform 520ms var(--ease-dramatic), box-shadow 360ms ease;
}

.contact-direct-card span,
.contact-social-strip span,
.contact-option span,
.contact-form label span {
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-direct-card strong {
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.contact-direct-card:hover,
.contact-direct-card:focus-visible,
.contact-social-strip a:hover,
.contact-social-strip a:focus-visible {
  border-color: rgba(201, 164, 73, 0.58);
  background: #fffaf0;
  box-shadow: 0 30px 70px rgba(17, 17, 17, 0.075);
  transform: translateY(-4px);
}

.contact-workbench {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1fr);
  gap: clamp(24px, 4vw, 58px);
  padding: clamp(54px, 7vw, 96px) clamp(28px, 7vw, 104px);
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-self: start;
}

.contact-option {
  min-height: 220px;
  padding: clamp(24px, 3vw, 36px);
  transition: border-color 360ms ease, transform 520ms var(--ease-dramatic), background 360ms ease;
}

.contact-option h2,
.contact-form h2 {
  margin: 18px 0 0;
  color: #111;
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
  line-height: 0.98;
}

.contact-option p {
  margin: 18px 0 0;
  color: #665f54;
  font-size: 14px;
  line-height: 1.65;
}

.contact-option a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-option:hover {
  border-color: rgba(201, 164, 73, 0.5);
  background: #fffaf0;
  transform: translateY(-3px);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(28px, 4vw, 54px);
}

.contact-form-heading,
.contact-form-wide,
.contact-submit,
.contact-form-status {
  grid-column: 1 / -1;
}

.contact-form-heading .section-kicker {
  margin-bottom: 0;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.86);
  color: #111;
  font: inherit;
  outline: none;
  transition: border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.contact-form textarea {
  min-height: 160px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(201, 164, 73, 0.74);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 164, 73, 0.14);
}

.contact-submit {
  position: relative;
  display: inline-flex;
  width: fit-content;
  min-width: 210px;
  height: 56px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 73, 0.62);
  border-radius: 6px;
  background: #111;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 300ms ease, color 300ms ease, transform 420ms var(--ease-dramatic);
}

.contact-submit::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-14deg);
  transition: left 720ms var(--ease-luxury);
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: var(--gold);
  color: #111;
  transform: translateY(-2px);
}

.contact-submit:hover::before,
.contact-submit:focus-visible::before {
  left: 112%;
}

.contact-submit span {
  position: relative;
  z-index: 1;
}

.contact-form-status {
  min-height: 20px;
  margin: -4px 0 0;
  color: #665f54;
  font-size: 13px;
}

.contact-social-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0 clamp(28px, 7vw, 104px) clamp(64px, 7vw, 104px);
}

.contact-social-strip a {
  display: grid;
  min-height: 150px;
  align-content: center;
  gap: 12px;
  padding: 28px;
  color: #111;
  text-decoration: none;
  border-right: 0;
}

.contact-social-strip a:last-child {
  border-right: 1px solid rgba(17, 17, 17, 0.12);
}

.contact-social-strip strong {
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
  line-height: 1;
}

@media (max-width: 980px) {
  .contact-hero,
  .contact-workbench {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .contact-hero {
    padding: 126px 22px 48px;
  }

  .contact-hero h1 {
    font-size: clamp(54px, 16vw, 86px);
  }

  .contact-direct,
  .contact-options,
  .contact-form,
  .contact-social-strip {
    grid-template-columns: 1fr;
  }

  .contact-workbench {
    padding: 42px 22px;
  }

  .contact-option {
    min-height: 0;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .contact-social-strip {
    padding: 0 22px 56px;
  }

  .contact-social-strip a,
  .contact-social-strip a:last-child {
    border-right: 1px solid rgba(17, 17, 17, 0.12);
    border-bottom: 0;
  }
}

/* Header alignment fix */
@media (min-width: 901px) {
  .topbar,
  .classic-header .topbar {
    height: 104px;
  }

  .nav-links,
  .classic-header .nav-links {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .actions,
  .classic-header .actions {
    top: 50%;
    transform: translateY(-50%);
  }

  .brand,
  .classic-header .brand {
    top: 50%;
    transform: translateY(-50%);
  }

  .brand:hover,
  .brand:focus-visible,
  .classic-header .brand:hover,
  .classic-header .brand:focus-visible {
    transform: translateY(calc(-50% - 3px)) scale(1.025);
  }

  .topbar::after,
  .classic-header .topbar::after {
    height: 1px;
    background: linear-gradient(90deg, rgba(13, 13, 11, 0.98), rgba(201, 164, 73, 0.72), rgba(13, 13, 11, 0.98));
  }

  .hero-stage {
    margin-top: 0;
  }
}

/* Header icon buttons without text labels */
.icon-button::after,
.favourite-button::after,
.cart-button::after {
  content: none !important;
  display: none !important;
}

.icon-button {
  width: 54px;
  min-width: 54px;
  padding: 0;
  grid-template-columns: 1fr;
  justify-items: center;
}

@media (max-width: 900px) {
  .icon-button {
    width: 36px;
    min-width: 36px;
  }
}

/* Header nav reference style */
@media (min-width: 901px) {
  .nav-links,
  .classic-header .nav-links {
    gap: 0;
  }

  .nav-links a,
  .classic-header .nav-links a {
    position: relative;
    padding: 0 18px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    line-height: 1;
  }

  .nav-links a + a,
  .classic-header .nav-links a + a {
    margin-left: 14px;
  }

  .nav-links a + a::before,
  .classic-header .nav-links a + a::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 50%;
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-50%);
  }

  .nav-links a::after,
  .classic-header .nav-links a::after {
    display: block;
    right: auto;
    bottom: -10px;
    width: 32px;
    height: 1px;
    background: var(--gold);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 320ms ease, transform 420ms var(--ease-luxury);
  }

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a[aria-current="page"],
  .classic-header .nav-links a:hover,
  .classic-header .nav-links a:focus-visible,
  .classic-header .nav-links a[aria-current="page"] {
    color: var(--gold);
    transform: none;
  }

  .nav-links a:hover::after,
  .nav-links a:focus-visible::after,
  .nav-links a[aria-current="page"]::after,
  .classic-header .nav-links a:hover::after,
  .classic-header .nav-links a:focus-visible::after,
  .classic-header .nav-links a[aria-current="page"]::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .nav-links a:first-child,
  .classic-header .nav-links a:first-child {
    color: var(--gold);
  }

  .nav-links a:first-child::after,
  .classic-header .nav-links a:first-child::after {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* Final header nav and hero seam correction */
@media (min-width: 901px) {
  .hero {
    --hero-header-offset: 104px;
    background: #0d0d0b;
  }

  .hero-stage {
    background: #0d0d0b;
  }

  .topbar::after,
  .classic-header .topbar::after {
    height: 1px;
    background: rgba(201, 164, 73, 0.42);
  }

  .nav-links,
  .classic-header .nav-links {
    gap: 0;
  }

  .nav-links a,
  .classic-header .nav-links a {
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.78);
  }

  .nav-links a + a,
  .classic-header .nav-links a + a {
    margin-left: 36px;
  }

  .nav-links a + a::before,
  .classic-header .nav-links a + a::before {
    left: -18px;
  }

  .nav-links a::after,
  .classic-header .nav-links a::after {
    left: 0;
    right: 0;
    width: auto;
    transform-origin: center;
  }

  .nav-links a:first-child,
  .classic-header .nav-links a:first-child {
    color: rgba(255, 255, 255, 0.78);
  }

  .nav-links a:first-child::after,
  .classic-header .nav-links a:first-child::after {
    opacity: 0;
    transform: scaleX(0);
  }

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a[aria-current="page"],
  .classic-header .nav-links a:hover,
  .classic-header .nav-links a:focus-visible,
  .classic-header .nav-links a[aria-current="page"] {
    color: var(--gold);
  }

  .nav-links a:hover::after,
  .nav-links a:focus-visible::after,
  .nav-links a[aria-current="page"]::after,
  .classic-header .nav-links a:hover::after,
  .classic-header .nav-links a:focus-visible::after,
  .classic-header .nav-links a[aria-current="page"]::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .ring-wrap,
  .hero-video {
    background: #0d0d0b;
  }
}

/* Whole-site typography and spacing polish */
:root {
  --display-serif: Didot, "Bodoni 72", "Bodoni MT", Baskerville, "Times New Roman", serif;
  --editorial-serif: Baskerville, "Libre Baskerville", "Palatino Linotype", Palatino, Georgia, serif;
  --ui-sans: "Helvetica Neue", Arial, sans-serif;
  --content-wide: min(100% - clamp(40px, 9vw, 128px), 1210px);
}

html {
  text-size-adjust: 100%;
}

body {
  font-family: var(--ui-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

:where(h1, h2, h3, .product-name, .suggested-copy h3, .shop-area-title) {
  text-wrap: balance;
}

:where(p, li, dd, .hero-intro, .shop-area-copy, .contact-option p) {
  text-wrap: pretty;
}

:where(.section-kicker, .catalog-area-tabs a, .nav-links a, .footer-heading, .footer-established, .footer-bottom, .shop-back-link) {
  letter-spacing: 0.14em;
}

.hero-copy-stack {
  width: min(650px, 54vw);
}

.headline,
.headline-promo {
  font-family: var(--editorial-serif);
  font-weight: 400;
}

.hero-intro {
  max-width: 540px;
}

.hero-notes {
  gap: clamp(20px, 2.4vw, 34px);
}

.hero-notes p {
  max-width: 230px;
}

.suggested-section {
  margin: clamp(26px, 3vw, 46px) 0 clamp(42px, 4vw, 70px);
}

.atelier-marquee {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  overflow: clip;
  contain: paint;
}

.suggested-shell {
  padding-inline: max(28px, calc((100vw - 1210px) / 2));
}

.suggested-track {
  gap: clamp(16px, 1.7vw, 24px);
  padding-bottom: 18px;
}

.suggested-card {
  min-height: clamp(420px, 35vw, 520px);
}

.hallmark-inner,
.about-inner,
.philosophy-inner {
  width: var(--content-wide);
  margin-inline: auto;
}

.hallmark-section h2,
.about-section h2,
.contact-hero h1,
.catalog-title-row h1,
.checkout-review h1,
.checkout-payment h2,
.staff-login-panel h1,
.staff-dashboard-copy h1 {
  font-family: var(--display-serif);
  font-weight: 400;
}

.catalog-title-row h1 {
  max-width: 680px;
  font-size: clamp(44px, 4.35vw, 68px);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.hallmark-copy p:not(.section-kicker),
.about-copy p,
.philosophy-copy p,
.contact-hero-copy > p:not(.section-kicker) {
  max-width: 660px;
  line-height: 1.72;
}

.hallmark-inner {
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
}

.hallmark-visual img {
  margin-inline: auto;
}

.about-inner {
  row-gap: clamp(34px, 5vw, 72px);
}

.about-story {
  gap: clamp(34px, 6vw, 82px);
}

.about-copy {
  max-width: 520px;
}

.craft-stats,
.trust-section {
  border-color: rgba(17, 17, 17, 0.12);
}

.craft-stat,
.trust-item {
  padding-inline: clamp(24px, 3vw, 48px);
}

.product-listing .product-name {
  color: #2f2b24;
  font-family: var(--display-serif);
}

.product-listing .product-image-wrap {
  background: #f7f4ee;
}

.product-listing .catalog-grid {
  gap: clamp(6px, 0.8vw, 12px);
}

.product-listing .product-card {
  padding-bottom: 10px;
}

.checkout-page,
.staff-page,
.contact-page {
  background: var(--page-bg);
}

.checkout-review,
.checkout-payment,
.staff-login-panel,
.contact-option,
.contact-form,
.contact-direct-card {
  border-color: rgba(17, 17, 17, 0.14);
}

.site-footer {
  margin-top: 0;
}

.footer-main {
  align-items: start;
  column-gap: clamp(28px, 6vw, 92px);
}

.footer-brand {
  margin-bottom: 10px;
}

.footer-contact {
  padding-left: clamp(20px, 4vw, 54px);
}

.footer-bottom {
  min-height: 62px;
}

@media (max-width: 1100px) {
  .hero-copy-stack {
    width: min(620px, 60vw);
  }

  .hallmark-inner,
  .about-inner,
  .philosophy-inner {
    width: min(100% - 56px, 980px);
  }

  .catalog-title-row {
    align-items: start;
  }
}

@media (max-width: 900px) {
  .ring-video {
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .hero-video {
    object-position: center center;
  }

  .hero-copy-stack {
    width: min(100% - 48px, 580px);
  }

  .hero-notes {
    right: 24px;
    left: 24px;
    bottom: 116px;
    grid-template-columns: 1fr 1fr;
  }

  .suggested-shell {
    padding-inline: 24px;
  }

  .hallmark-inner,
  .about-inner,
  .philosophy-inner {
    width: min(100% - 44px, 760px);
  }

  .footer-contact {
    padding-left: 0;
  }
}

@media (max-width: 560px) {
  .hero-copy-stack {
    left: 24px;
    width: calc(100% - 48px);
  }

  .headline,
  .headline-promo {
    max-width: 100%;
    font-size: clamp(48px, 15.5vw, 66px);
    line-height: 0.94;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 12px;
    letter-spacing: 0.2em;
  }

  .hero-intro {
    max-width: 295px;
    font-size: 14px;
    line-height: 1.58;
  }

  .hero-notes {
    display: none;
  }

  .shop-button {
    width: 176px;
  }

  .suggested-section {
    margin: 24px 0 44px;
  }

  .suggested-card {
    min-height: 390px;
  }

  .hallmark-inner,
  .about-inner,
  .philosophy-inner {
    width: min(100% - 36px, 560px);
  }

  .hallmark-copy p:not(.section-kicker),
  .about-copy p,
  .philosophy-copy p {
    line-height: 1.62;
  }

  .craft-stat,
  .trust-item {
    min-height: auto;
    padding-block: 38px;
  }

  .catalog-title-row {
    display: grid;
    gap: 18px;
  }

  .catalog-title-row h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 0.98;
  }
}

/* Footer British-made strip */
.site-footer .footer-bottom {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
  padding: 18px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0;
}

.site-footer .footer-made {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.28);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.site-footer .union-flag {
  width: 18px;
  height: 12px;
  border: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

@media (max-width: 560px) {
  .site-footer .footer-bottom {
    min-height: 46px;
    padding: 16px 0 18px;
  }
}

/* Dark header visibility fixes */
.topbar .nav-links a[aria-current="page"],
.classic-header .topbar .nav-links a[aria-current="page"],
.shop-topbar .nav-links a[aria-current="page"],
.checkout-topbar .nav-links a[aria-current="page"],
.shop-page.is-catalog .shop-topbar .nav-links a[aria-current="page"] {
  color: var(--gold) !important;
  background: transparent;
  box-shadow: none;
}

.topbar .nav-links a[aria-current="page"]::after,
.classic-header .topbar .nav-links a[aria-current="page"]::after,
.shop-topbar .nav-links a[aria-current="page"]::after,
.checkout-topbar .nav-links a[aria-current="page"]::after,
.shop-page.is-catalog .shop-topbar .nav-links a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.shop-back-link,
.shop-page.is-catalog .shop-topbar .shop-back-link,
.checkout-topbar .shop-back-link,
.shop-topbar .shop-back-link {
  color: rgba(255, 255, 255, 0.88) !important;
}

.shop-back-link:hover,
.shop-back-link:focus-visible,
.shop-page.is-catalog .shop-topbar .shop-back-link:hover,
.shop-page.is-catalog .shop-topbar .shop-back-link:focus-visible {
  color: var(--gold) !important;
}

/* Hallmark close-up addition */
.hallmark-visual.hallmark-visual-wide {
  align-content: center;
  gap: clamp(22px, 3vw, 36px);
  justify-items: center;
}

.hallmark-visual .hallmark-chart-image {
  width: min(100%, 560px);
}

.hallmark-visual .hallmark-ring-closeup {
  width: min(100%, 520px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
  filter: saturate(0.96) contrast(1.02) drop-shadow(0 26px 34px rgba(17, 17, 17, 0.12));
}

@media (max-width: 900px) {
  .hallmark-visual.hallmark-visual-wide {
    gap: 24px;
  }

  .hallmark-visual .hallmark-ring-closeup {
    width: min(100%, 640px);
    max-height: 320px;
  }
}

@media (max-width: 560px) {
  .hallmark-visual .hallmark-ring-closeup {
    max-height: 230px;
  }
}

/* Suggested carousel pop-out interaction */
.suggested-section {
  overflow: clip;
}

.suggested-track {
  padding-top: 18px;
  padding-bottom: 34px;
  perspective: 1100px;
  scroll-padding-inline: max(28px, calc((100vw - 1210px) / 2));
}

.suggested-card {
  --pop-x: 0;
  --pop-y: 0;
  --glow-x: 50%;
  --glow-y: 38%;
  isolation: isolate;
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  transition:
    border-color 420ms ease,
    box-shadow 760ms var(--ease-dramatic),
    color 520ms ease,
    filter 520ms ease,
    transform 760ms var(--ease-dramatic);
}

.suggested-card::before {
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, 0.76), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(250, 246, 237, 0.92) 62%, rgba(246, 241, 231, 0.98));
  opacity: 0.72;
  transition: opacity 560ms ease, transform 760ms var(--ease-dramatic);
}

.suggested-card::after {
  transform: translateZ(18px) scale(0.965);
  transition:
    border-color 520ms ease,
    opacity 520ms ease,
    transform 760ms var(--ease-dramatic);
}

.suggested-card:hover,
.suggested-card:focus-visible {
  z-index: 6;
  border-color: rgba(211, 169, 72, 0.88);
  box-shadow:
    0 46px 84px rgba(17, 17, 17, 0.22),
    0 18px 34px rgba(151, 111, 35, 0.16);
  filter: saturate(1.03);
  transform:
    translateY(-22px)
    rotateX(calc(var(--pop-y) * 1deg))
    rotateY(calc(var(--pop-x) * 1deg))
    scale(1.045);
}

.suggested-card:hover::before,
.suggested-card:focus-visible::before {
  opacity: 1;
  transform: translateZ(4px) scale(1.018);
}

.suggested-card:hover::after,
.suggested-card:focus-visible::after {
  border-color: rgba(211, 169, 72, 0.62);
  opacity: 1;
  transform: translateZ(38px) scale(1);
}

.suggested-card:active {
  transform: translateY(-14px) scale(1.022);
  transition-duration: 160ms;
}

.suggested-media {
  transform: translateZ(22px);
  transition: transform 760ms var(--ease-dramatic);
}

.suggested-card:hover .suggested-media,
.suggested-card:focus-visible .suggested-media {
  transform: translateZ(70px) translateY(-8px);
}

.suggested-card:hover .suggested-media img,
.suggested-card:focus-visible .suggested-media img {
  filter:
    drop-shadow(0 42px 36px rgba(17, 17, 17, 0.24))
    drop-shadow(0 8px 16px rgba(211, 169, 72, 0.16));
  transform: translateY(-34px) scale(1.16) rotate(-3deg);
}

.suggested-copy {
  transform: translateZ(44px);
  transition: transform 720ms var(--ease-dramatic);
}

.suggested-card:hover .suggested-copy,
.suggested-card:focus-visible .suggested-copy {
  transform: translateZ(86px) translateY(-4px);
}

.suggested-copy::after {
  transition: width 520ms var(--ease-dramatic), background 420ms ease;
}

.suggested-card:hover .suggested-copy::after,
.suggested-card:focus-visible .suggested-copy::after {
  width: 104px;
}

@media (max-width: 700px), (hover: none) {
  .suggested-track {
    padding-top: 8px;
    padding-bottom: 24px;
    perspective: none;
  }

  .suggested-card:hover,
  .suggested-card:focus-visible {
    transform: translateY(-10px) scale(1.018);
  }

  .suggested-card:hover .suggested-media,
  .suggested-card:focus-visible .suggested-media,
  .suggested-card:hover .suggested-copy,
  .suggested-card:focus-visible .suggested-copy {
    transform: none;
  }
}

/* Doorway page mobile stack */
@media (max-width: 700px) {
  .shop-menu {
    padding: 122px 18px 22px;
  }

  .shop-menu-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
    min-height: 0;
  }

  .shop-area-card {
    min-height: clamp(260px, 48svh, 380px);
    padding: 28px;
  }

  .shop-area-title {
    max-width: min(420px, 84%);
    font-size: clamp(38px, 12vw, 58px);
  }

  .shop-area-copy {
    max-width: 310px;
    font-size: 13px;
  }

  .shop-area-card img {
    right: 12px;
    width: min(62%, 280px);
    opacity: 0.18;
  }
}

@media (max-width: 430px) {
  .shop-menu {
    padding: 114px 14px 18px;
  }

  .shop-area-card {
    min-height: 260px;
    padding: 22px;
  }

  .shop-area-title {
    max-width: 250px;
    font-size: clamp(32px, 11vw, 44px);
  }
}

/* Footer reference strip refinement */
.site-footer .footer-bottom {
  width: min(100% - 56px, 1210px);
  min-height: 44px;
  padding: 14px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .footer-made {
  gap: 8px;
  color: rgba(182, 197, 211, 0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer .union-flag {
  width: 18px;
  height: 12px;
}

@media (max-width: 640px) {
  .site-footer .footer-bottom {
    width: min(100% - 36px, 1210px);
  }
}

/* Homepage rail, craft mark, and smoother about media */
:root {
  --home-rail: clamp(48px, 8vw, 118px);
}

.hallmark-inner,
.about-inner,
.philosophy-inner {
  width: auto;
  max-width: none;
  margin-inline: 0;
  padding-inline: var(--home-rail);
}

.hallmark-inner {
  grid-template-columns: minmax(480px, 0.92fr) minmax(420px, 0.82fr);
  padding-top: clamp(42px, 5vw, 72px);
  padding-bottom: clamp(52px, 6vw, 86px);
}

.about-inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "kicker kicker"
    "title title"
    "story story";
  column-gap: clamp(52px, 7vw, 112px);
}

.about-story {
  grid-template-columns: minmax(360px, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
}

.about-copy {
  max-width: 620px;
}

.about-ring-box {
  justify-self: end;
  width: min(100%, 520px);
}

.about-ring-source {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 520px);
  height: auto;
  margin-left: auto;
  opacity: 1;
  mix-blend-mode: multiply;
  filter:
    saturate(0.96)
    contrast(1.08)
    drop-shadow(0 34px 38px rgba(17, 17, 17, 0.16));
  mix-blend-mode: multiply;
  transform: translateZ(0);
  will-change: transform;
}

.about-ring-canvas {
  display: none;
}

.about-ring-box::after {
  left: 8%;
  right: 8%;
  bottom: -24px;
  height: 38px;
  opacity: 0.78;
}

.philosophy-inner {
  grid-template-columns: minmax(390px, 0.68fr) minmax(520px, 1fr);
  gap: clamp(44px, 5.5vw, 84px);
  padding-block: clamp(86px, 9vw, 140px);
}

.philosophy-copy {
  max-width: 650px;
}

.philosophy-copy p:not(.section-kicker) {
  max-width: 520px;
}

.philosophy-mark {
  padding: 0;
  border: 0;
  background: transparent;
}

.philosophy-mark img {
  width: min(100%, 820px);
  filter: grayscale(1) brightness(1.72) sepia(0.12) drop-shadow(0 22px 34px rgba(0, 0, 0, 0.2));
}

.philosophy-mark figcaption {
  display: none;
}

@media (max-width: 1100px) {
  :root {
    --home-rail: 56px;
  }

  .hallmark-inner,
  .about-inner,
  .philosophy-inner {
    width: auto;
    padding-inline: var(--home-rail);
  }

  .hallmark-inner,
  .about-inner,
  .philosophy-inner {
    grid-template-columns: 1fr;
  }

  .about-story {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-ring-box,
  .about-ring-source {
    justify-self: start;
    width: min(100%, 560px);
    margin-left: 0;
  }

  .philosophy-mark img {
    margin-left: 0;
  }
}

@media (max-width: 620px) {
  :root {
    --home-rail: 24px;
  }

  .hallmark-inner,
  .about-inner,
  .philosophy-inner {
    padding-inline: var(--home-rail);
  }

  .about-ring-box,
  .about-ring-source {
    width: min(100%, 430px);
  }
}

/* Cookies page, full-width footer, and homepage polish */
.cookie-page {
  min-height: 100svh;
  background: var(--page-bg);
  color: #111;
}

.cookie-hero {
  display: grid;
  gap: 24px;
  padding: clamp(150px, 14vw, 210px) var(--home-rail) clamp(44px, 6vw, 82px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.cookie-hero h1,
.cookie-preferences h2 {
  margin: 0;
  max-width: 760px;
  font-family: var(--display-serif);
  font-size: clamp(58px, 8vw, 126px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
}

.cookie-hero p:not(.section-kicker) {
  max-width: 610px;
  margin: 0;
  color: #4f4a40;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.7;
}

.cookie-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  background: #f2eee6;
}

.cookie-panel {
  display: grid;
  min-height: 320px;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 4.5vw, 62px);
  border-right: 1px solid rgba(17, 17, 17, 0.12);
}

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

.cookie-panel span {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cookie-panel h2 {
  margin: 0;
  font-family: var(--display-serif);
  font-size: clamp(27px, 2.35vw, 40px);
  font-weight: 400;
  line-height: 1;
}

.cookie-panel p {
  max-width: 360px;
  margin: 0;
  color: #5f5a50;
  font-size: 14px;
  line-height: 1.72;
}

.cookie-preferences {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.5fr);
  gap: clamp(38px, 6vw, 96px);
  align-items: center;
  padding: clamp(64px, 8vw, 118px) var(--home-rail);
}

.cookie-preferences h2 {
  max-width: 700px;
  font-size: clamp(42px, 5.6vw, 86px);
}

.cookie-switches {
  display: grid;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
}

.cookie-switches label {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
  color: #111;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cookie-switches input {
  accent-color: var(--gold);
}

@media (min-width: 1180px) {
  .suggested-shell {
    padding-inline: var(--home-rail);
  }

  .suggested-track {
    grid-auto-columns: calc((100vw - var(--home-rail) - var(--home-rail) - 72px) / 4);
  }
}

.philosophy-inner {
  grid-template-columns: minmax(410px, 0.62fr) minmax(560px, 1fr);
}

.philosophy-copy {
  padding-left: clamp(10px, 2.2vw, 38px);
}

.philosophy-mark {
  justify-self: stretch;
}

.philosophy-mark img {
  width: min(100%, 980px);
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.28));
}

.site-footer {
  width: 100%;
  padding-inline: 0;
}

.site-footer .footer-main,
.site-footer .footer-bottom {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: clamp(22px, 4.5vw, 72px);
}

.site-footer .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.footer-contact a[href="cookies.html"] {
  margin-top: 2px;
  color: rgba(182, 197, 211, 0.72);
}

.footer-contact a[href="cookies.html"]:hover,
.footer-contact a[href="cookies.html"]:focus-visible {
  color: var(--gold);
}

@media (max-width: 1100px) {
  .cookie-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-panel:nth-child(2n) {
    border-right: 0;
  }

  .cookie-preferences,
  .philosophy-inner {
    grid-template-columns: 1fr;
  }

  .philosophy-copy {
    padding-left: 0;
  }
}

@media (max-width: 620px) {
  .cookie-hero,
  .cookie-preferences {
    padding-inline: 24px;
  }

  .cookie-layout {
    grid-template-columns: 1fr;
  }

  .cookie-panel {
    min-height: 250px;
    border-right: 0;
  }

  .cookie-preferences {
    grid-template-columns: 1fr;
  }

  .cookie-hero h1 {
    font-size: clamp(50px, 18vw, 76px);
  }
}

/* Final footer edge-to-edge correction */
html,
body {
  width: 100%;
  overflow-x: clip;
}

.site-footer {
  box-sizing: border-box;
  width: 100% !important;
  max-width: none !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.site-footer > .footer-main {
  box-sizing: border-box;
  width: 100% !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  padding-right: clamp(28px, 4.5vw, 72px) !important;
  padding-left: clamp(28px, 4.5vw, 72px) !important;
}

.site-footer > .footer-bottom {
  box-sizing: border-box;
  display: flex !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 48px;
  align-items: center;
  justify-content: flex-start;
  margin: 0 !important;
  padding: 14px clamp(28px, 4.5vw, 72px) 18px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

@media (max-width: 640px) {
  .site-footer > .footer-main,
  .site-footer > .footer-bottom {
    padding-right: 22px !important;
    padding-left: 22px !important;
  }
}

/* Smooth cut-out ring-box animation */
.about-ring-box {
  contain: layout;
  width: min(100%, 500px) !important;
  margin-top: calc(clamp(72px, 9vw, 138px) * -1) !important;
}

.about-ring-source {
  position: absolute !important;
  inset: 0 auto auto 0;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.about-ring-canvas {
  position: relative;
  z-index: 1;
  display: block !important;
  width: min(100%, 500px);
  height: auto;
  margin-left: auto;
  filter:
    saturate(1.02)
    contrast(1.12)
    drop-shadow(0 30px 34px rgba(17, 17, 17, 0.14));
  transform: translateZ(0);
  will-change: transform;
}

@media (max-width: 1100px) {
  .about-ring-box {
    width: min(100%, 500px) !important;
    margin-top: 0 !important;
  }

  .about-ring-canvas {
    width: min(100%, 500px);
    margin-left: 0;
  }
}

@media (max-width: 620px) {
  .about-ring-canvas {
    width: min(100%, 430px);
  }
}

/* Contact page full-width enquiry form */
.contact-page .contact-workbench {
  display: block;
  padding: clamp(54px, 7vw, 96px) var(--home-rail) clamp(76px, 8vw, 118px);
}

.contact-page .contact-form {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(22px, 3.2vw, 52px);
  row-gap: 22px;
  padding: clamp(34px, 5vw, 72px);
}

.contact-page .contact-form-heading {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(280px, 0.78fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: end;
  margin-bottom: clamp(10px, 1.5vw, 24px);
}

.contact-page .contact-form-heading .section-kicker {
  align-self: start;
}

.contact-page .contact-form h2 {
  max-width: 760px;
  margin-top: 0;
  font-size: clamp(46px, 6vw, 92px);
  line-height: 0.92;
}

.contact-page .contact-form textarea {
  min-height: clamp(190px, 22vw, 310px);
}

.contact-page .contact-submit {
  width: min(100%, 340px);
}

@media (max-width: 900px) {
  .contact-page .contact-workbench {
    padding-inline: 28px;
  }

  .contact-page .contact-form,
  .contact-page .contact-form-heading {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-form {
    padding: 30px 22px;
  }

  .contact-page .contact-form h2 {
    font-size: clamp(38px, 11vw, 62px);
  }
}

/* Browser-stable ring-box placement */
.about-story {
  align-items: center !important;
}

.about-ring-box {
  align-self: center;
  margin-top: calc(clamp(24px, 5vw, 72px) * -1);
}

@media (max-width: 1100px) {
  .about-ring-box {
    margin-top: 0;
  }
}

/* Compact Mayfair craft section */
.about-inner {
  row-gap: clamp(18px, 2.2vw, 34px) !important;
  padding-top: clamp(46px, 5vw, 78px) !important;
  padding-bottom: clamp(38px, 4.8vw, 72px) !important;
}

.about-section h2 {
  margin-bottom: 0 !important;
}

.about-story {
  padding-top: 0 !important;
  gap: clamp(26px, 4vw, 64px) !important;
}

.about-copy {
  gap: 10px !important;
}

.about-copy p {
  line-height: 1.54 !important;
}

.about-ring-box {
  margin-top: calc(clamp(56px, 8vw, 118px) * -1) !important;
}

@media (max-width: 1100px) {
  .about-inner {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
  }

  .about-ring-box {
    margin-top: 0 !important;
  }
}

/* ------------------------------------------------------------------ */
/* Publish polish - 2026-06-10                                         */
/* Readability, legal-page support, and small contrast fixes only.     */
/* ------------------------------------------------------------------ */

/* Hero film scrim: keeps the white headline and intro readable over
   the lighter moments of the bench film without changing the palette. */
.hero .ring-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(102deg, rgba(10, 10, 9, 0.52) 0%, rgba(10, 10, 9, 0.3) 30%, rgba(10, 10, 9, 0) 58%),
    linear-gradient(to top, rgba(10, 10, 9, 0.42) 0%, rgba(10, 10, 9, 0) 26%);
  pointer-events: none;
}

@media (max-width: 560px) {
  .hero .ring-wrap::after {
    background:
      linear-gradient(to bottom, rgba(10, 10, 9, 0.5) 0%, rgba(10, 10, 9, 0.18) 34%, rgba(10, 10, 9, 0) 55%),
      linear-gradient(to top, rgba(10, 10, 9, 0.5) 0%, rgba(10, 10, 9, 0) 30%);
  }
}

/* Footer legal links: quieter weight than the gold contact rows. */
.footer-contact a[href="privacy.html"],
.footer-contact a[href="terms.html"],
.footer-contact a[href="terms.html#delivery-returns"],
.footer-contact a[href="cookies.html"] {
  color: rgba(182, 197, 211, 0.78);
  letter-spacing: 0.12em;
}

.footer-contact a[href="privacy.html"]:hover,
.footer-contact a[href="terms.html"]:hover,
.footer-contact a[href="terms.html#delivery-returns"]:hover,
.footer-contact a[href="cookies.html"]:hover {
  color: var(--gold, #c8a24a);
}

/* Apple Pay method pill: keep the wordmark legible on its black pill. */
.payment-method .method-logo-apple {
  color: #fff;
}

/* Checkout agreement note links. */
.checkout-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout-note a:hover,
.checkout-note a:focus-visible {
  color: var(--gold-deep, #8b6a2b);
}

/* Legal pages: inline links, last-updated line, and status text. */
.cookie-hero a,
.cookie-panel a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-hero a:hover,
.cookie-panel a:hover,
.cookie-hero a:focus-visible,
.cookie-panel a:focus-visible {
  color: var(--gold-deep, #8b6a2b);
}

.cookie-updated {
  margin: 14px 0 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.66;
}

.cookie-pref-status {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  font-size: 13px;
  opacity: 0.78;
}

.cookie-contact-line {
  max-width: 440px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

/* Comfortable tap targets on touch screens (visual size unchanged on desktop). */
@media (max-width: 900px) {
  .footer-contact a,
  .footer-studio a {
    padding: 5px 0;
  }

  .cookie-switches input[type="checkbox"] {
    width: 22px;
    height: 22px;
  }

  .pay-return {
    display: inline-block;
    padding: 10px 0;
  }
}

/* Sort select: wide enough for its longest option label. */
.sort-panel select {
  width: 156px;
}

/* Philosophy section: balanced statement, story, and craft imagery. */
.philosophy-section {
  background: #0f0f0f;
  color: #dcecff;
}

.philosophy-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "copy"
    "story";
  align-items: center;
  row-gap: 38px;
  min-height: 720px;
  padding-block: 104px;
}

.philosophy-copy {
  grid-area: copy;
  align-self: end;
  max-width: 860px;
  padding-left: 0;
}

.philosophy-copy h2 {
  max-width: 760px;
  color: #dcecff;
  font-size: 104px;
  line-height: 0.9;
}

.philosophy-copy h2 em {
  display: inline;
  color: #c7b16e;
}

.philosophy-story {
  grid-area: story;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 24px;
  align-self: start;
  max-width: 760px;
}

.philosophy-story::before {
  content: "";
  width: 78px;
  height: 1px;
  margin-top: 13px;
  background: rgba(199, 177, 110, 0.78);
}

.philosophy-story p {
  grid-column: 2;
  max-width: none;
  margin: 0;
  color: rgba(220, 236, 255, 0.78);
  font-size: 15px;
  line-height: 1.82;
}

.philosophy-story p + p {
  margin-top: -8px;
}

.philosophy-mark {
  grid-area: mark;
  justify-self: stretch;
  display: grid;
  gap: 22px;
  width: min(100%, 610px);
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.philosophy-mark-images {
  display: grid;
  gap: 28px;
}

.philosophy-mark img,
.philosophy-mark .philosophy-goldsmiths,
.philosophy-mark .philosophy-detail {
  display: block;
  max-width: 100%;
  filter: none;
}

.philosophy-goldsmiths {
  width: min(100%, 560px);
}

.philosophy-detail {
  width: min(100%, 510px);
  aspect-ratio: 16 / 10;
  justify-self: end;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(220, 236, 255, 0.2);
  border-radius: 4px;
  box-shadow: 0 30px 56px rgba(0, 0, 0, 0.24);
}

.philosophy-mark figcaption {
  display: block;
  max-width: 410px;
  margin: 0 0 0 auto;
  color: rgba(220, 236, 255, 0.64);
  font-size: 12px;
  line-height: 1.7;
  text-align: left;
}

@media (max-width: 1300px) {
  .philosophy-inner {
    column-gap: 66px;
  }

  .philosophy-copy h2 {
    font-size: 92px;
  }
}

@media (max-width: 1100px) {
  .philosophy-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "story"
      "mark";
    min-height: 0;
    row-gap: 34px;
    padding-block: 86px;
  }

  .philosophy-copy h2 {
    max-width: 760px;
    font-size: 82px;
  }

  .philosophy-mark {
    justify-self: start;
    width: min(100%, 760px);
  }

  .philosophy-detail,
  .philosophy-mark figcaption {
    justify-self: start;
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .philosophy-inner {
    padding-block: 68px;
  }

  .philosophy-copy h2 {
    font-size: 64px;
  }

  .philosophy-story {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .philosophy-story p {
    grid-column: 1;
  }
}

@media (max-width: 520px) {
  .philosophy-copy h2 {
    font-size: 50px;
  }

  .philosophy-detail {
    aspect-ratio: 4 / 3;
  }
}

/* Footer: compact contact and newsletter placement. */
.site-footer > .footer-main {
  display: grid !important;
  grid-template-columns: minmax(245px, 340px) minmax(0, 1fr) !important;
  align-items: start;
  justify-content: start;
  gap: clamp(52px, 8vw, 118px) !important;
  min-height: 0 !important;
  padding-top: 30px !important;
  padding-bottom: 24px !important;
}

.site-footer .footer-studio {
  display: none !important;
}

.site-footer .footer-identity,
.site-footer .footer-contact {
  min-width: 0;
  padding: 0 !important;
  border: 0 !important;
}

.site-footer .footer-identity {
  align-content: start;
  gap: 8px;
  max-width: 340px;
}

.site-footer .footer-brand {
  width: 106px;
  height: 38px;
}

.site-footer .footer-socials {
  margin-top: 4px;
}

.site-footer .footer-identity .footer-newsletter {
  max-width: 320px;
  margin-top: 6px;
}

.site-footer .footer-identity .footer-newsletter label {
  gap: 7px;
}

.site-footer .footer-identity .footer-newsletter-field {
  min-height: 38px;
}

.site-footer .footer-contact {
  display: grid !important;
  grid-template-columns: minmax(220px, max-content) minmax(220px, max-content);
  align-self: start;
  justify-self: stretch;
  align-content: start;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  gap: 9px clamp(44px, 8vw, 132px);
  padding-top: 3px !important;
  background: transparent !important;
}

.site-footer .footer-contact .footer-heading {
  grid-column: 1;
  grid-row: 1;
}

.site-footer .footer-contact a[href^="mailto"] {
  grid-column: 1;
  grid-row: 2;
}

.site-footer .footer-contact a[href^="tel"] {
  grid-column: 1;
  grid-row: 3;
}

.site-footer .footer-contact a[href="privacy.html"],
.site-footer .footer-contact a[href="terms.html"],
.site-footer .footer-contact a[href="terms.html#delivery-returns"],
.site-footer .footer-contact a[href="cookies.html"] {
  grid-column: 2;
  justify-self: end;
  text-align: right;
}

.site-footer .footer-contact a[href="privacy.html"] {
  grid-row: 1;
}

.site-footer .footer-contact a[href="terms.html"] {
  grid-row: 2;
}

.site-footer .footer-contact a[href="terms.html#delivery-returns"] {
  grid-row: 3;
}

.site-footer .footer-contact a[href="cookies.html"] {
  grid-row: 4;
}

.site-footer .footer-contact .footer-appointment {
  grid-column: 1;
  grid-row: 4;
  margin-top: 8px;
}

.site-footer .footer-contact .footer-info-legal {
  display: grid;
  grid-column: 2;
  grid-row: 1 / 5;
  align-content: start;
  justify-items: end;
  justify-self: end;
  min-width: min(100%, 220px);
  gap: 8px;
  text-align: right;
}

.site-footer .footer-contact .footer-info-legal .footer-heading,
.site-footer .footer-contact .footer-info-legal a {
  grid-column: auto;
  grid-row: auto;
  justify-self: end;
  text-align: right;
}

.site-footer .footer-contact .footer-info-legal .footer-heading {
  margin: 0 0 7px;
}

.site-footer .footer-contact .footer-heading {
  margin-bottom: 8px;
}

.site-footer .footer-contact a,
.site-footer .footer-studio a:not(.footer-login) {
  line-height: 1.35;
}

.site-footer > .footer-bottom {
  min-height: 42px;
  padding-top: 11px !important;
  padding-bottom: 13px !important;
}

.site-footer .footer-bottom-copy {
  color: rgba(182, 197, 211, 0.56);
}

.site-footer .footer-legal-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  margin-left: auto;
}

.site-footer .footer-legal-links a {
  color: rgba(182, 197, 211, 0.68);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 260ms ease;
}

.site-footer .footer-legal-links a:hover,
.site-footer .footer-legal-links a:focus-visible {
  color: var(--gold);
}

.site-footer .footer-staff-gate {
  margin-left: auto;
}

@media (max-width: 880px) {
  .site-footer > .footer-main {
    grid-template-columns: 1fr !important;
    justify-content: stretch;
    gap: 28px !important;
  }

  .site-footer .footer-identity,
  .site-footer .footer-contact {
    max-width: none;
    width: 100%;
  }

  .site-footer .footer-contact {
    grid-template-columns: minmax(180px, max-content) minmax(190px, max-content);
    gap: 9px clamp(28px, 7vw, 72px);
  }
}

@media (max-width: 560px) {
  .site-footer .footer-contact {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-contact .footer-info-legal {
    grid-column: 1;
    grid-row: auto;
    justify-items: start;
    justify-self: start;
    margin-top: 8px;
    text-align: left;
  }

  .site-footer .footer-contact .footer-heading,
  .site-footer .footer-contact a[href^="mailto"],
  .site-footer .footer-contact a[href^="tel"],
  .site-footer .footer-contact a[href="privacy.html"],
  .site-footer .footer-contact a[href="terms.html"],
  .site-footer .footer-contact a[href="terms.html#delivery-returns"],
  .site-footer .footer-contact a[href="cookies.html"],
  .site-footer .footer-contact .footer-appointment {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    text-align: left;
  }

  .site-footer .footer-contact .footer-info-legal .footer-heading,
  .site-footer .footer-contact .footer-info-legal a {
    justify-self: start;
    text-align: left;
  }

  .site-footer > .footer-bottom {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px 18px;
  }

  .site-footer .footer-bottom-copy,
  .site-footer .footer-legal-links,
  .site-footer .footer-staff-gate {
    margin-left: 0;
  }

  .site-footer .footer-legal-links {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Hallmark section: refined copy and image arrangement. */
.hallmark-inner {
  grid-template-columns: minmax(340px, 0.72fr) minmax(500px, 1fr);
  align-items: center;
  gap: clamp(44px, 6.5vw, 104px);
  padding-top: clamp(62px, 7vw, 96px);
  padding-bottom: clamp(62px, 7vw, 96px);
}

.hallmark-copy {
  display: grid;
  align-content: center;
  max-width: 580px;
}

.hallmark-copy .section-kicker {
  margin-bottom: 24px;
}

.hallmark-section h2 {
  max-width: 520px;
  margin-bottom: 26px;
}

.hallmark-copy p:not(.section-kicker) {
  max-width: 535px;
}

.hallmark-copy p + p {
  max-width: 510px;
  margin-top: 18px;
}

.hallmark-visual.hallmark-visual-wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-self: center;
  justify-items: end;
  gap: clamp(24px, 3vw, 34px);
  width: min(100%, 660px);
  margin-left: auto;
  padding: 0;
}

.hallmark-visual .hallmark-chart-image {
  width: min(82%, 500px);
  max-width: 100%;
  opacity: 0.95;
  filter: none;
}

.hallmark-visual .hallmark-ring-closeup {
  width: min(100%, 650px);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 52%;
  border-radius: 3px;
  box-shadow: 0 32px 70px rgba(52, 83, 108, 0.18);
  filter: saturate(0.98) contrast(1.04);
}

@media (max-width: 1100px) {
  .hallmark-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hallmark-copy {
    max-width: 720px;
  }

  .hallmark-section h2,
  .hallmark-copy p:not(.section-kicker),
  .hallmark-copy p + p {
    max-width: 720px;
  }

  .hallmark-visual.hallmark-visual-wide {
    justify-items: start;
    width: min(100%, 760px);
    margin-left: 0;
  }

  .hallmark-visual .hallmark-chart-image {
    width: min(100%, 520px);
  }

  .hallmark-visual .hallmark-ring-closeup {
    width: min(100%, 760px);
  }
}

@media (max-width: 620px) {
  .hallmark-inner {
    gap: 34px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hallmark-visual .hallmark-chart-image {
    width: min(100%, 430px);
  }

  .hallmark-visual .hallmark-ring-closeup {
    aspect-ratio: 4 / 3;
  }
}

/* Hallmark section: light quality-card treatment without image assets. */
.hallmark-section {
  background:
    radial-gradient(circle at 78% 42%, rgba(217, 169, 83, 0.22), transparent 34%),
    linear-gradient(115deg, #f5eadc 0%, #fff8ef 48%, #e9d7bd 100%);
}

.hallmark-section .hallmark-inner {
  grid-template-columns: minmax(300px, 0.52fr) minmax(420px, 0.9fr);
  gap: clamp(42px, 6vw, 92px);
  min-height: clamp(520px, 55vw, 650px);
  align-items: center;
  padding-top: clamp(58px, 6vw, 84px);
  padding-bottom: clamp(58px, 6vw, 84px);
}

.hallmark-section .hallmark-copy {
  max-width: 460px;
}

.hallmark-section .hallmark-copy .section-kicker {
  margin-bottom: 18px;
  color: rgba(67, 48, 27, 0.66);
}

.hallmark-section h2 {
  max-width: 410px;
  margin-bottom: 18px;
  color: #21170e;
  font-size: clamp(54px, 5vw, 82px);
  line-height: 0.92;
}

.hallmark-section .hallmark-copy p:not(.section-kicker) {
  max-width: 390px;
  color: rgba(54, 42, 30, 0.82);
  font-size: 15px;
  line-height: 1.62;
}

.hallmark-assurances {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.hallmark-assurance {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.hallmark-assurance-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #c9912f;
}

.hallmark-assurance-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.hallmark-assurance strong,
.hallmark-assurance small {
  display: block;
}

.hallmark-assurance strong {
  color: #352312;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hallmark-assurance small {
  max-width: 170px;
  margin-top: 3px;
  color: rgba(54, 42, 30, 0.72);
  font-size: 11px;
  line-height: 1.3;
}

.hallmark-art {
  position: relative;
  min-height: clamp(300px, 34vw, 430px);
  align-self: stretch;
  overflow: hidden;
  border-radius: 2px;
  background:
    radial-gradient(circle at 52% 48%, rgba(255, 255, 255, 0.56), transparent 18%),
    radial-gradient(ellipse at 60% 52%, rgba(247, 218, 154, 0.84) 0 18%, rgba(218, 160, 55, 0.72) 30%, transparent 56%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.28), rgba(160, 108, 40, 0.22)),
    #ead7bd;
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.45);
}

.hallmark-art::before,
.hallmark-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hallmark-art::before {
  right: -18%;
  bottom: -28%;
  width: 96%;
  aspect-ratio: 1;
  border: clamp(46px, 7vw, 82px) solid rgba(205, 141, 35, 0.9);
  box-shadow:
    inset 0 22px 40px rgba(255, 250, 226, 0.72),
    0 30px 48px rgba(96, 61, 18, 0.24);
  transform: rotate(-13deg);
}

.hallmark-art::after {
  right: -6%;
  bottom: -17%;
  width: 72%;
  aspect-ratio: 1;
  border: clamp(18px, 3vw, 34px) solid rgba(251, 218, 135, 0.58);
  transform: rotate(-13deg);
}

.hallmark-band {
  position: absolute;
  right: clamp(42px, 8vw, 122px);
  top: 48%;
  z-index: 2;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 7px;
  border-radius: 8px;
  background: rgba(132, 84, 18, 0.18);
  transform: rotate(-8deg);
}

.hallmark-band span {
  display: grid;
  min-width: 45px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(70, 42, 12, 0.36);
  border-radius: 5px;
  background: linear-gradient(135deg, #b9771d, #f0bf61 50%, #8d5b18);
  color: #4a2f0c;
  font-family: var(--display-serif, Didot, "Bodoni 72", serif);
  font-size: 20px;
  line-height: 1;
  box-shadow: inset 0 1px 8px rgba(255, 244, 188, 0.38);
}

@media (max-width: 900px) {
  .hallmark-section .hallmark-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hallmark-section .hallmark-copy {
    max-width: 620px;
  }

  .hallmark-art {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .hallmark-section .hallmark-inner {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .hallmark-section h2 {
    font-size: clamp(46px, 15vw, 64px);
  }

  .hallmark-art {
    min-height: 280px;
  }

  .hallmark-band {
    right: 22px;
    gap: 5px;
    transform: rotate(-5deg) scale(0.84);
    transform-origin: right center;
  }
}

/* Hallmark section: use the supplied REM ring artwork as the flowing image layer. */
.hallmark-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 50%, rgba(217, 169, 83, 0.2), transparent 38%),
    linear-gradient(115deg, #f6efe7 0%, #fff7ed 48%, #ead7bd 100%);
}

.hallmark-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(247, 240, 231, 1) 0%, rgba(247, 240, 231, 0.98) 32%, rgba(247, 240, 231, 0.78) 43%, rgba(247, 240, 231, 0.2) 58%, rgba(247, 240, 231, 0) 76%);
}

.hallmark-section .hallmark-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.43fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 58px);
  min-height: clamp(560px, 58vw, 720px);
  isolation: isolate;
}

.hallmark-section .hallmark-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 430px;
  padding: clamp(18px, 3vw, 34px) 0;
}

.hallmark-art {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: clamp(330px, 34vw, 470px);
  z-index: 0;
  min-height: 100%;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hallmark-art::before,
.hallmark-art::after,
.hallmark-band {
  display: none;
}

.hallmark-quality-image {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 112%;
  max-width: none;
  height: 100%;
  min-height: clamp(560px, 58vw, 720px);
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 900px) {
  .hallmark-section::after {
    background:
      linear-gradient(180deg, rgba(247, 240, 231, 0.98) 0%, rgba(247, 240, 231, 0.95) 46%, rgba(247, 240, 231, 0.32) 76%, rgba(247, 240, 231, 0.06) 100%);
  }

  .hallmark-section .hallmark-inner {
    grid-template-columns: 1fr;
    min-height: clamp(620px, 105vw, 780px);
  }

  .hallmark-section .hallmark-copy {
    max-width: 460px;
  }

  .hallmark-art {
    top: 36%;
    left: 0;
  }

  .hallmark-quality-image {
    width: 118%;
    min-height: clamp(620px, 105vw, 780px);
    object-position: right center;
  }
}

@media (max-width: 560px) {
  .hallmark-section .hallmark-inner {
    min-height: 720px;
  }

  .hallmark-section::after {
    background:
      linear-gradient(180deg, rgba(247, 240, 231, 0.99) 0%, rgba(247, 240, 231, 0.96) 50%, rgba(247, 240, 231, 0.24) 100%);
  }

  .hallmark-quality-image {
    width: 128%;
    min-height: 720px;
    object-position: right center;
  }
}

/* Hallmark section: restored two-image layout. */
.hallmark-section {
  position: relative;
  overflow: hidden;
  background: #cfe5f7;
  color: var(--navy);
}

.hallmark-section::after {
  display: none;
  content: none;
}

.hallmark-section .hallmark-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(500px, 1fr);
  align-items: center;
  gap: clamp(44px, 6.5vw, 104px);
  min-height: auto;
  padding: clamp(62px, 7vw, 96px) 8vw;
  isolation: auto;
}

.hallmark-section .hallmark-copy {
  position: relative;
  z-index: auto;
  display: grid;
  align-content: center;
  max-width: 580px;
  padding: 0;
}

.hallmark-section .hallmark-copy .section-kicker {
  margin-bottom: 24px;
  color: rgba(38, 63, 84, 0.76);
}

.hallmark-section h2 {
  max-width: 520px;
  margin-bottom: 26px;
  color: var(--navy);
  font-size: clamp(52px, 5.1vw, 86px);
  line-height: 0.97;
}

.hallmark-section .hallmark-copy p:not(.section-kicker) {
  max-width: 535px;
  color: rgba(31, 57, 77, 0.78);
  font-size: clamp(16px, 1.04vw, 18px);
  line-height: 1.68;
}

.hallmark-section .hallmark-copy p + p {
  max-width: 510px;
  margin-top: 18px;
}

.hallmark-visual.hallmark-visual-wide {
  position: relative;
  z-index: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-self: center;
  justify-items: end;
  gap: clamp(24px, 3vw, 34px);
  width: min(100%, 660px);
  margin: 0 0 0 auto;
  padding: 0;
}

.hallmark-visual.hallmark-visual-wide::before,
.hallmark-visual.hallmark-visual-wide::after {
  display: none;
  content: none;
}

.hallmark-visual .hallmark-chart-image {
  display: block;
  width: min(82%, 500px);
  max-width: 100%;
  height: auto;
  opacity: 0.95;
  filter: none;
}

.hallmark-visual .hallmark-ring-closeup {
  display: block;
  width: min(100%, 650px);
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center 52%;
  border-radius: 3px;
  box-shadow: 0 32px 70px rgba(52, 83, 108, 0.18);
  filter: saturate(0.98) contrast(1.04);
}

@media (max-width: 1100px) {
  .hallmark-section .hallmark-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hallmark-section .hallmark-copy,
  .hallmark-section h2,
  .hallmark-section .hallmark-copy p:not(.section-kicker),
  .hallmark-section .hallmark-copy p + p {
    max-width: 720px;
  }

  .hallmark-visual.hallmark-visual-wide {
    justify-items: start;
    width: min(100%, 760px);
    margin-left: 0;
  }

  .hallmark-visual .hallmark-chart-image {
    width: min(100%, 520px);
  }

  .hallmark-visual .hallmark-ring-closeup {
    width: min(100%, 760px);
  }
}

@media (max-width: 620px) {
  .hallmark-section .hallmark-inner {
    gap: 34px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hallmark-visual .hallmark-chart-image {
    width: min(100%, 430px);
  }

  .hallmark-visual .hallmark-ring-closeup {
    aspect-ratio: 4 / 3;
  }
}

/* Hallmark section: ring background fading cleanly into the text panel. */
.hallmark-section {
  position: relative;
  overflow: hidden;
  background: #f4e4cf;
  color: var(--navy);
}

.hallmark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(244, 228, 207, 0.98) 0%, rgba(244, 228, 207, 0.92) 18%, rgba(244, 228, 207, 0.78) 34%, rgba(244, 228, 207, 0.56) 48%, rgba(244, 228, 207, 0.32) 62%, rgba(244, 228, 207, 0.16) 78%, rgba(244, 228, 207, 0.06) 100%),
    linear-gradient(180deg, rgba(244, 228, 207, 0.06), rgba(244, 228, 207, 0.08)),
    url("assets/hallmark-bg-ring-extended.png");
  background-position: center, center, right center;
  background-repeat: no-repeat;
  background-size: cover, cover, cover;
  filter: saturate(0.96) contrast(0.98);
  transform: none;
}

.hallmark-section::after {
  display: none !important;
  content: none !important;
}

.hallmark-section .hallmark-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 0.48fr) minmax(420px, 0.9fr);
  align-items: center;
  min-height: clamp(560px, 55vw, 680px);
  padding: clamp(64px, 7vw, 96px) 8vw;
}

.hallmark-section .hallmark-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: clamp(10px, 2vw, 24px) 0;
}

.hallmark-section .hallmark-copy .section-kicker {
  color: rgba(86, 61, 33, 0.72);
}

.hallmark-section h2 {
  color: var(--navy);
  text-shadow: 0 1px 18px rgba(244, 228, 207, 0.82);
}

.hallmark-section .hallmark-copy p:not(.section-kicker) {
  color: rgba(47, 42, 35, 0.82);
  text-shadow: 0 1px 14px rgba(244, 228, 207, 0.72);
}

.hallmark-bg-art {
  display: none !important;
}

@media (max-width: 1100px) {
  .hallmark-section::before {
    background-size: cover, cover, cover;
    background-position: center, center, 72% center;
  }

  .hallmark-section .hallmark-inner {
    grid-template-columns: 1fr;
    min-height: clamp(620px, 82vw, 780px);
  }

  .hallmark-bg-art {
    display: none !important;
  }
}

@media (max-width: 620px) {
  .hallmark-section::before {
    background-image:
      linear-gradient(180deg, #f4e4cf 0%, rgba(244, 228, 207, 0.96) 48%, rgba(244, 228, 207, 0.28) 72%, rgba(244, 228, 207, 0.04) 100%),
      url("assets/hallmark-bg-ring-extended.png");
    background-position: center, 72% bottom;
    background-size: cover, cover;
  }

  .hallmark-section .hallmark-inner {
    min-height: 720px;
  }

  .hallmark-bg-art {
    display: none !important;
  }
}

.hallmark-section .hallmark-visual,
.hallmark-section .hallmark-chart-image,
.hallmark-section .hallmark-ring-closeup {
  display: none !important;
}

/* CAD design service page. */
.cad-body {
  background: #f7f4ef;
}

.cad-design-page {
  min-height: auto;
  padding-bottom: 0;
  background:
    linear-gradient(180deg, #0f1111 0 420px, #f7f4ef 420px 100%);
}

.cad-design-page .shop-topbar {
  color: #f5efe6;
}

.cad-design-page .shop-back-link,
.cad-design-page .nav-links a,
.cad-design-page .actions .icon-button {
  color: rgba(245, 239, 230, 0.88);
}

.cad-design-page .topbar::after {
  background: rgba(245, 239, 230, 0.16);
}

.cad-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.96fr) minmax(280px, 0.78fr);
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  width: min(100% - clamp(32px, 7vw, 96px), 1320px);
  min-height: clamp(440px, 56vw, 620px);
  margin: clamp(28px, 4vw, 54px) auto clamp(44px, 6vw, 82px);
  padding: clamp(48px, 6vw, 96px) clamp(32px, 5vw, 76px);
  overflow: hidden;
  border: 1px solid rgba(201, 145, 47, 0.34);
  background: #0d0f0f;
  box-shadow: 0 38px 90px rgba(10, 12, 12, 0.32);
}

.cad-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201, 145, 47, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 145, 47, 0.09) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: center;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, #000 0%, transparent 75%);
}

.cad-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 540px;
}

.cad-hero-copy .section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
}

.cad-hero-copy h1 {
  margin: 0;
  color: #f6efe6;
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1.04;
  letter-spacing: 0;
}

.cad-hero-copy h1 em {
  display: block;
  font-style: italic;
}

.cad-hero-lead {
  max-width: 460px;
  margin: 26px 0 0;
  color: rgba(246, 239, 230, 0.7);
  font-size: 15px;
  line-height: 1.8;
}

.cad-hero-traits {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 40px);
  margin: clamp(36px, 5vw, 56px) 0 0;
  padding: 0;
  list-style: none;
}

.cad-hero-traits li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(246, 239, 230, 0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cad-hero-trait-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(200, 162, 74, 0.34);
  color: var(--gold);
  transition: border-color 420ms ease, color 420ms ease, transform 520ms var(--ease-dramatic);
}

.cad-hero-traits li:hover .cad-hero-trait-icon {
  border-color: var(--gold);
  color: #f6efe6;
  transform: translateY(-3px);
}

.cad-hero-trait-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.cad-hero-figure {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
}

.cad-hero-ring {
  display: block;
  width: min(100%, 320px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 14px solid transparent;
  border-image: conic-gradient(from 220deg, rgba(200, 162, 74, 0.12), var(--gold) 35%, #f6efe6 50%, var(--gold) 65%, rgba(200, 162, 74, 0.12)) 1;
  box-shadow:
    0 0 0 1px rgba(200, 162, 74, 0.18) inset,
    0 30px 70px rgba(0, 0, 0, 0.4);
  animation: cadRingSpin 24s linear infinite;
}

@keyframes cadRingSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cad-hero-ring {
    animation: none;
  }
}

.cad-technical-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
  width: min(100% - clamp(32px, 8vw, 112px), 1220px);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 78px) 0 clamp(56px, 7vw, 104px);
}

.cad-technical-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.09);
  background: #efe8de;
  box-shadow: 0 24px 70px rgba(42, 35, 26, 0.12);
}

.cad-technical-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 900ms var(--ease-dramatic);
}

.cad-technical-image:hover img {
  transform: scale(1.03);
}

.cad-technical-copy {
  max-width: 520px;
}

.cad-technical-copy .section-kicker {
  margin-bottom: 18px;
  color: #9d732a;
}

.cad-technical-copy h2 {
  margin: 0;
  max-width: 460px;
  color: #111;
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
  font-size: clamp(56px, 6vw, 96px);
  line-height: 0.92;
}

.cad-technical-copy p {
  max-width: 470px;
  margin: 22px 0 0;
  color: rgba(32, 29, 24, 0.74);
  font-size: 15px;
  line-height: 1.75;
}

.cad-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 30px;
  padding: 0 24px;
  border: 1px solid rgba(157, 115, 42, 0.46);
  color: #111;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 260ms ease, border-color 260ms ease, color 260ms ease, transform 260ms ease;
}

.cad-contact-button:hover,
.cad-contact-button:focus-visible {
  border-color: #9d732a;
  background: #111;
  color: #f6efe6;
  transform: translateY(-2px);
}

.cad-journey-section {
  width: min(100% - clamp(32px, 8vw, 112px), 1220px);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 110px) 0 clamp(40px, 5vw, 72px);
}

.cad-journey-heading {
  max-width: 640px;
  margin: 0 auto clamp(48px, 6vw, 84px);
  text-align: center;
}

.cad-journey-heading .section-kicker {
  color: #9d732a;
}

.cad-journey-heading h2 {
  margin: 0;
  color: #111;
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
  font-size: clamp(40px, 4.4vw, 68px);
  line-height: 1.05;
}

.cad-journey-heading h2 em {
  color: #9d732a;
  font-style: italic;
}

.cad-journey-intro {
  max-width: 520px;
  margin: 20px auto 0;
  color: rgba(32, 29, 24, 0.66);
  font-size: 15px;
  line-height: 1.75;
}

.cad-journey-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 48px) clamp(24px, 3vw, 56px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.cad-journey-step {
  padding: clamp(28px, 3vw, 40px) clamp(24px, 3vw, 36px);
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #f7f4ef;
  transition: border-color 420ms ease, box-shadow 520ms ease, transform 520ms var(--ease-dramatic);
}

.cad-journey-step:hover {
  border-color: rgba(200, 162, 74, 0.5);
  box-shadow: 0 22px 50px rgba(42, 35, 26, 0.1);
  transform: translateY(-6px);
}

.cad-journey-number {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-deep);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: 28px;
  letter-spacing: 0.04em;
}

.cad-journey-step h3 {
  margin: 0 0 12px;
  color: #111;
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.1;
}

.cad-journey-step p {
  margin: 0;
  color: rgba(17, 17, 17, 0.6);
  font-size: 14px;
  line-height: 1.7;
}

.cad-cta-section {
  width: min(100% - clamp(32px, 8vw, 112px), 1220px);
  margin: 0 auto;
  padding: 0 0 clamp(64px, 8vw, 124px);
}

.cad-cta-card {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 88px) clamp(32px, 5vw, 72px);
  text-align: center;
  border: 1px solid rgba(157, 115, 42, 0.3);
  background: #f1e9de;
}

.cad-cta-card .section-kicker {
  justify-content: center;
  color: #9d732a;
}

.cad-cta-card h2 {
  margin: 0;
  color: #111;
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.05;
}

.cad-cta-card h2 em {
  color: #9d732a;
  font-style: italic;
}

.cad-cta-card p {
  max-width: 480px;
  margin: 22px auto 0;
  color: rgba(32, 29, 24, 0.7);
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 980px) {
  .cad-design-page {
    background:
      linear-gradient(180deg, #0f1111 0 360px, #f7f4ef 360px 100%);
  }

  .cad-hero,
  .cad-technical-section {
    grid-template-columns: 1fr;
  }

  .cad-hero {
    min-height: 0;
    text-align: center;
  }

  .cad-hero-copy {
    max-width: 100%;
  }

  .cad-hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .cad-hero-traits {
    justify-content: center;
  }

  .cad-hero-figure {
    order: -1;
    max-width: 280px;
    margin: 0 auto;
  }

  .cad-technical-copy {
    max-width: 680px;
  }

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

@media (max-width: 620px) {
  .cad-hero {
    width: calc(100% - 28px);
    margin-top: 22px;
    padding: 40px 24px;
  }

  .cad-technical-section,
  .cad-journey-section,
  .cad-cta-section {
    width: calc(100% - 28px);
  }

  .cad-technical-copy h2 {
    font-size: clamp(44px, 15vw, 62px);
  }

  .cad-journey-steps {
    grid-template-columns: 1fr;
  }

  .cad-cta-card {
    padding: 40px 24px;
  }
}

.shop-area-card-cad img {
  right: clamp(8px, 4vw, 72px);
  width: min(68%, 500px);
  height: auto;
  aspect-ratio: auto;
  max-height: 88%;
  object-fit: contain;
  object-position: center;
  border: 0;
  opacity: 0.2;
  filter: grayscale(0.55) drop-shadow(0 34px 30px rgba(17, 17, 17, 0.08));
  box-shadow: none;
  transform: translate3d(0, -46%, 0) rotate(-4deg) scale(1);
}

.shop-area-card-cad:hover img,
.shop-area-card-cad:focus-visible img {
  opacity: 0.58;
  transform: translate3d(18px, -50%, 0) rotate(-2deg) scale(1.08);
}

/* CAD design page: technical atelier rework. */
.cad-design-page {
  background:
    linear-gradient(180deg, #0c0d0d 0 720px, #f5f1ea 720px 100%);
}

.cad-hero-rework {
  width: 100%;
  max-width: none;
  min-height: clamp(640px, 82svh, 820px);
  margin: 0;
  padding: clamp(150px, 15vw, 190px) clamp(34px, 7vw, 112px) clamp(72px, 8vw, 118px);
  border: 0;
  box-shadow: none;
  grid-template-columns: minmax(320px, 0.82fr) minmax(460px, 1fr);
  background:
    radial-gradient(circle at 78% 35%, rgba(200, 162, 74, 0.26), transparent 28%),
    linear-gradient(115deg, #080909 0%, #111310 52%, #282116 100%);
}

.cad-hero-rework::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(216, 185, 104, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 185, 104, 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.74) 58%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.74) 58%, transparent 100%);
}

.cad-hero-rework .cad-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.cad-hero-rework h1 {
  max-width: 660px;
  font-size: clamp(62px, 7.8vw, 132px);
  line-height: 0.9;
}

.cad-hero-rework h1 em {
  color: #e7c778;
}

.cad-hero-rework .cad-hero-lead {
  max-width: 520px;
  color: rgba(246, 239, 230, 0.78);
  font-size: clamp(15px, 1.15vw, 18px);
}

.cad-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 4vw, 46px);
}

.cad-primary-link,
.cad-secondary-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(219, 184, 91, 0.48);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 260ms ease, border-color 260ms ease, color 260ms ease, transform 280ms ease;
}

.cad-primary-link {
  background: #d0a94c;
  border-color: #d0a94c;
  color: #0b0b0b;
}

.cad-secondary-link {
  color: #f6efe6;
}

.cad-bespoke-link {
  border-color: rgba(231, 199, 120, 0.82);
  background:
    linear-gradient(135deg, rgba(246, 239, 230, 0.96), rgba(231, 199, 120, 0.82));
  color: #0b0b0b;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(246, 239, 230, 0.18) inset;
}

.cad-primary-link:hover,
.cad-primary-link:focus-visible,
.cad-secondary-link:hover,
.cad-secondary-link:focus-visible {
  transform: translateY(-2px);
}

.cad-secondary-link:hover,
.cad-secondary-link:focus-visible {
  background: rgba(208, 169, 76, 0.12);
  color: #e7c778;
}

.cad-bespoke-link:hover,
.cad-bespoke-link:focus-visible {
  border-color: #f6efe6;
  background:
    linear-gradient(135deg, #f6efe6, #d0a94c);
  color: #0b0b0b;
}

.cad-hero-plate {
  position: relative;
  z-index: 1;
  min-height: clamp(440px, 50vw, 620px);
  margin: 0;
}

.cad-hero-plate::before {
  content: "";
  position: absolute;
  inset: 9% 3% 11% 17%;
  border: 1px solid rgba(231, 199, 120, 0.32);
  transform: rotate(-5deg);
}

.cad-hero-technical,
.cad-hero-render {
  position: absolute;
  display: block;
  max-width: none;
  pointer-events: none;
}

.cad-hero-technical {
  left: 0;
  top: 14%;
  width: min(78%, 650px);
  opacity: 0.48;
  filter: invert(1) sepia(0.25) saturate(0.7) hue-rotate(358deg) drop-shadow(0 30px 60px rgba(0, 0, 0, 0.34));
  transform: rotate(-6deg);
}

.cad-hero-render {
  right: -4%;
  bottom: -2%;
  width: min(72%, 610px);
  opacity: 0.88;
  filter: saturate(0.74) contrast(1.03) drop-shadow(0 38px 70px rgba(0, 0, 0, 0.52));
}

.cad-hero-plate figcaption {
  position: absolute;
  right: 4%;
  bottom: 3%;
  max-width: 250px;
  color: rgba(246, 239, 230, 0.62);
  font-size: 12px;
  line-height: 1.6;
}

.cad-hero-stl {
  display: grid;
  align-self: center;
  min-height: clamp(430px, 48vw, 650px);
  place-items: center;
  overflow: visible;
  cursor: grab;
  touch-action: none;
}

.cad-hero-stl::before {
  display: none;
}

.cad-hero-stl::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 3%;
  bottom: 4%;
  height: 30%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0) 70%);
  filter: blur(34px);
  opacity: 0.76;
  pointer-events: none;
}

.cad-hero-stl.is-dragging {
  cursor: grabbing;
}

.cad-hero-stl canvas {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 720px);
  height: clamp(420px, 46vw, 650px);
  filter:
    saturate(1.08)
    contrast(1.08)
    drop-shadow(0 36px 58px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 42px rgba(231, 199, 120, 0.12));
}

.cad-hero-stl figcaption {
  right: clamp(12px, 4vw, 46px);
  bottom: clamp(8px, 3vw, 30px);
  z-index: 2;
  color: rgba(246, 239, 230, 0.58);
}

.cad-spec-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
  padding: clamp(24px, 3.4vw, 48px) clamp(24px, 5vw, 78px);
  background: #efe7dc;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.cad-flow-strip {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0) 36%),
    radial-gradient(circle at 18% 0%, rgba(208, 169, 76, 0.16), transparent 26%),
    radial-gradient(circle at 86% 100%, rgba(17, 17, 17, 0.08), transparent 28%),
    #efe7dc;
}

.cad-flow-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.cad-spec {
  position: relative;
  display: grid;
  min-height: 258px;
  align-content: start;
  gap: 16px;
  padding: clamp(26px, 3.5vw, 46px);
  border: 1px solid rgba(157, 115, 42, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 239, 230, 0.56)),
    #f8f4ed;
  color: #111;
  box-shadow: 0 22px 50px rgba(45, 35, 22, 0.08);
  isolation: isolate;
  transition: border-color 420ms ease, box-shadow 520ms ease, transform 520ms var(--ease-dramatic);
}

.cad-spec::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(157, 115, 42, 0.2);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 420ms ease, transform 520ms var(--ease-dramatic);
}

.cad-spec:hover,
.cad-spec:focus-within {
  border-color: rgba(157, 115, 42, 0.42);
  box-shadow: 0 30px 70px rgba(45, 35, 22, 0.13);
  transform: translateY(-4px);
}

.cad-spec:hover::before,
.cad-spec:focus-within::before {
  opacity: 1;
  transform: scale(1);
}

.cad-spec:last-child {
  border-right: 1px solid rgba(157, 115, 42, 0.18);
}

.cad-spec span {
  color: #9d732a;
  font-family: Didot, "Bodoni 72", serif;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1;
}

.cad-spec strong {
  font-family: Didot, "Bodoni 72", serif;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 0.95;
}

.cad-spec p {
  max-width: 320px;
  margin: 0;
  color: rgba(31, 28, 22, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.cad-workbench,
.cad-proof-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(40px, 7vw, 112px);
  align-items: center;
  padding: clamp(72px, 9vw, 130px) clamp(34px, 8vw, 120px);
}

.cad-workbench {
  background: #f5f1ea;
}

.cad-workbench-copy,
.cad-proof-copy {
  max-width: 560px;
}

.cad-workbench h2,
.cad-proof-copy h2,
.cad-flow-heading h2,
.cad-final-copy h2 {
  margin: 0;
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
}

.cad-workbench h2 {
  font-size: clamp(50px, 6.4vw, 104px);
}

.cad-workbench p,
.cad-proof-copy p,
.cad-final-copy p {
  color: rgba(31, 28, 22, 0.72);
  font-size: 15px;
  line-height: 1.78;
}

.cad-workbench-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 18, 16, 0.1);
  background: #fbf9f5;
  box-shadow: 0 34px 80px rgba(45, 35, 22, 0.12);
}

.cad-workbench-image img {
  display: block;
  width: 100%;
  height: auto;
}

.cad-proof-section {
  grid-template-columns: minmax(360px, 0.92fr) minmax(320px, 0.68fr);
  justify-items: stretch;
  background: #ebe3d7;
}

.cad-model-viewer {
  position: relative;
  min-height: clamp(380px, 44vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(185, 141, 52, 0.3);
  background:
    radial-gradient(circle at 55% 42%, rgba(208, 169, 76, 0.18), transparent 34%),
    linear-gradient(135deg, #11110f 0%, #171713 58%, #2a2418 100%);
  box-shadow: 0 34px 90px rgba(45, 35, 22, 0.2);
  cursor: grab;
  touch-action: none;
}

.cad-model-viewer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(231, 199, 120, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 199, 120, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 72%);
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 72%);
}

.cad-model-viewer.is-dragging {
  cursor: grabbing;
}

.cad-model-viewer canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.cad-model-status {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 2;
  color: rgba(246, 239, 230, 0.64);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: none;
}

.cad-proof-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 18, 16, 0.1);
  box-shadow: 0 30px 80px rgba(45, 35, 22, 0.12);
}

.cad-proof-media img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.02);
}

.cad-proof-copy h2 {
  max-width: 760px;
  font-size: clamp(52px, 6vw, 96px);
}

.cad-proof-copy {
  width: 100%;
}

.cad-proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: clamp(32px, 4vw, 52px) 0 0;
  padding: 0;
  list-style: none;
}

.cad-proof-list li {
  position: relative;
  padding: 16px 0 16px 34px;
  border-top: 1px solid rgba(38, 31, 22, 0.14);
  color: rgba(25, 22, 18, 0.76);
  font-size: 15px;
  line-height: 1.55;
}

.cad-proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 12px;
  height: 12px;
  border: 1px solid #b98d34;
  transform: rotate(45deg);
}

.cad-flow {
  padding: clamp(78px, 9vw, 132px) clamp(34px, 7vw, 112px);
  background: #10100f;
  color: #f6efe6;
}

.cad-flow-heading {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 90px);
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 78px);
}

.cad-flow-heading h2 {
  max-width: 720px;
  color: #f6efe6;
  font-size: clamp(50px, 6.4vw, 98px);
}

.cad-flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(231, 199, 120, 0.2);
  border: 1px solid rgba(231, 199, 120, 0.2);
}

.cad-flow-list li {
  min-height: 310px;
  padding: clamp(26px, 3vw, 40px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    #10100f;
}

.cad-flow-list span {
  display: block;
  margin-bottom: 56px;
  color: #d0a94c;
  font-family: Didot, "Bodoni 72", serif;
  font-size: 30px;
}

.cad-flow-list h3 {
  margin: 0 0 14px;
  color: #f6efe6;
  font-family: Didot, "Bodoni 72", serif;
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 400;
}

.cad-flow-list p {
  margin: 0;
  color: rgba(246, 239, 230, 0.66);
  font-size: 14px;
  line-height: 1.65;
}

.cad-final-cta {
  position: relative;
  min-height: clamp(480px, 56vw, 680px);
  display: grid;
  align-items: center;
  padding: clamp(76px, 10vw, 140px) clamp(34px, 8vw, 120px);
  overflow: hidden;
  background: #f5f1ea;
}

.cad-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #f5f1ea 0%, rgba(245, 241, 234, 0.9) 42%, rgba(245, 241, 234, 0.2) 76%),
    url("assets/cad-technical-card.png") right center / min(68vw, 920px) auto no-repeat;
  opacity: 0.92;
}

.cad-final-copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.cad-final-copy h2 {
  font-size: clamp(54px, 6.7vw, 112px);
}

.cad-final-copy .cad-primary-link {
  margin-top: 26px;
}

@media (max-width: 1100px) {
  .cad-hero-rework,
  .cad-workbench,
  .cad-proof-section,
  .cad-flow-heading {
    grid-template-columns: 1fr;
  }

  .cad-hero-plate {
    min-height: 520px;
  }

  .cad-hero-stl {
    min-height: 500px;
  }

  .cad-hero-stl canvas {
    width: min(100%, 620px);
    height: 500px;
  }

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

@media (max-width: 700px) {
  .cad-hero-rework {
    min-height: 0;
    padding: 132px 24px 72px;
  }

  .cad-hero-actions,
  .cad-primary-link,
  .cad-secondary-link {
    width: 100%;
  }

  .cad-hero-plate {
    min-height: 360px;
  }

  .cad-hero-stl {
    min-height: 360px;
  }

  .cad-hero-stl canvas {
    width: min(100%, 460px);
    height: 360px;
  }

  .cad-hero-stl figcaption {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -28px;
    max-width: 280px;
  }

  .cad-spec-strip {
    grid-template-columns: 1fr;
  }

  .cad-proof-list {
    grid-template-columns: 1fr;
  }

  .cad-model-viewer {
    min-height: 360px;
  }

  .cad-workbench,
  .cad-proof-section,
  .cad-final-cta {
    padding-right: 24px;
    padding-left: 24px;
  }
}

/* Contact page: private enquiry rework. */
.contact-page {
  background: #f5f1ea;
  color: #111;
}

.contact-hero-rework {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(340px, 0.54fr);
  min-height: clamp(620px, 78svh, 760px);
  align-items: end;
  gap: clamp(34px, 6vw, 104px);
  padding: clamp(150px, 15vw, 190px) clamp(34px, 8vw, 120px) clamp(72px, 8vw, 112px);
  overflow: hidden;
  border-bottom: 1px solid rgba(214, 176, 82, 0.24);
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.92) 0%, rgba(13, 13, 12, 0.82) 48%, rgba(13, 13, 12, 0.26) 100%),
    url("assets/hallmark-bg-ring-extended.png") right center / cover no-repeat,
    #10100f;
}

.contact-hero-rework::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(214, 176, 82, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 176, 82, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.5) 56%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.5) 56%, transparent 100%);
}

.contact-hero-rework .contact-hero-copy {
  position: relative;
  z-index: 1;
}

.contact-hero-rework .section-kicker {
  color: #d0a94c;
}

.contact-hero-rework h1 {
  max-width: 820px;
  color: #f6efe6;
  font-size: clamp(64px, 8.4vw, 136px);
  line-height: 0.88;
}

.contact-hero-rework .contact-hero-copy > p:not(.section-kicker) {
  max-width: 560px;
  color: rgba(246, 239, 230, 0.76);
}

.contact-signature-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(214, 176, 82, 0.32);
  background: rgba(15, 15, 14, 0.72);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.contact-signature-panel img {
  width: 132px;
  height: auto;
  filter: invert(1) brightness(1.08);
}

.contact-signature-panel > p {
  max-width: 320px;
  margin: 0;
  color: rgba(246, 239, 230, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.contact-hero-rework .contact-direct {
  gap: 10px;
}

.contact-hero-rework .contact-direct-card {
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid rgba(214, 176, 82, 0.22);
  background: transparent;
  box-shadow: none;
  color: #f6efe6;
}

.contact-hero-rework .contact-direct-card span {
  color: #d0a94c;
}

.contact-hero-rework .contact-direct-card strong {
  color: rgba(246, 239, 230, 0.86);
  font-size: clamp(15px, 1.25vw, 20px);
}

.contact-hero-rework .contact-direct-card:hover,
.contact-hero-rework .contact-direct-card:focus-visible {
  background: transparent;
  box-shadow: none;
  transform: translateX(4px);
}

.contact-intent-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  background: #f0e8dc;
}

.contact-intent-strip div {
  display: grid;
  min-height: 190px;
  align-content: center;
  gap: 10px;
  padding: clamp(28px, 4vw, 54px);
  border-right: 1px solid rgba(17, 17, 17, 0.1);
}

.contact-intent-strip div:last-child {
  border-right: 0;
}

.contact-intent-strip span {
  color: #9d732a;
  font-family: Didot, "Bodoni 72", serif;
  font-size: 25px;
}

.contact-intent-strip strong {
  font-family: Didot, "Bodoni 72", serif;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1;
}

.contact-intent-strip p {
  max-width: 330px;
  margin: 0;
  color: rgba(25, 22, 18, 0.62);
  font-size: 14px;
  line-height: 1.62;
}

.contact-page .contact-workbench-rework {
  display: grid;
  grid-template-columns: minmax(300px, 0.48fr) minmax(520px, 1fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: start;
  padding: clamp(72px, 8vw, 124px) clamp(34px, 8vw, 120px);
  background: #f5f1ea;
}

.contact-enquiry-guide {
  position: sticky;
  top: 128px;
  display: grid;
  gap: 20px;
  padding: clamp(28px, 3.6vw, 46px);
  border: 1px solid rgba(17, 17, 17, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(232, 222, 207, 0.76)),
    #eee5d8;
}

.contact-enquiry-guide h2 {
  margin: 0;
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Baskerville", "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

.contact-enquiry-guide ul {
  display: grid;
  gap: 14px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.contact-enquiry-guide li {
  position: relative;
  padding-left: 26px;
  color: rgba(25, 22, 18, 0.66);
  font-size: 14px;
  line-height: 1.6;
}

.contact-enquiry-guide li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border: 1px solid #a97e2e;
  transform: rotate(45deg);
}

.contact-page .contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: clamp(32px, 4.6vw, 66px);
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 36px 90px rgba(42, 35, 26, 0.1);
}

.contact-page .contact-form-heading {
  display: block;
  margin-bottom: 8px;
}

.contact-page .contact-form h2 {
  max-width: 720px;
  margin-top: 12px;
  font-size: clamp(44px, 5.6vw, 88px);
}

.contact-page .contact-form input,
.contact-page .contact-form select,
.contact-page .contact-form textarea {
  min-height: 54px;
  border-color: rgba(17, 17, 17, 0.14);
  background: rgba(255, 255, 255, 0.84);
}

.contact-page .contact-form textarea {
  min-height: clamp(180px, 20vw, 280px);
}

.contact-page .contact-submit {
  width: min(100%, 320px);
  border-radius: 0;
  background: #10100f;
}

@media (max-width: 980px) {
  .contact-hero-rework,
  .contact-page .contact-workbench-rework {
    grid-template-columns: 1fr;
  }

  .contact-signature-panel {
    max-width: 620px;
  }

  .contact-intent-strip {
    grid-template-columns: 1fr;
  }

  .contact-intent-strip div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  }

  .contact-enquiry-guide {
    position: relative;
    top: auto;
  }
}

@media (max-width: 680px) {
  .contact-hero-rework {
    min-height: 0;
    padding: 132px 24px 56px;
  }

  .contact-page .contact-workbench-rework {
    padding: 48px 24px 70px;
  }

  .contact-page .contact-form {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .contact-page .contact-form h2 {
    font-size: clamp(38px, 12vw, 58px);
  }
}

/* Cookie consent banner (site-wide, injected by site-chrome.js). */
.cookie-banner {
  position: fixed;
  z-index: 60;
  left: clamp(12px, 3vw, 28px);
  right: clamp(12px, 3vw, 28px);
  bottom: clamp(12px, 3vw, 28px);
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 480ms var(--ease-dramatic), transform 560ms var(--ease-dramatic);
  pointer-events: none;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 28px);
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(18px, 2.6vw, 26px) clamp(20px, 3vw, 32px);
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #fcfbf8;
  box-shadow: 0 24px 60px rgba(20, 18, 14, 0.18);
}

.cookie-banner-inner p {
  flex: 1 1 320px;
  margin: 0;
  color: rgba(17, 17, 17, 0.74);
  font-size: 13px;
  line-height: 1.7;
}

.cookie-banner-inner a {
  color: #111;
  text-decoration: underline;
  text-decoration-color: rgba(200, 162, 74, 0.6);
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid rgba(157, 115, 42, 0.46);
  background: transparent;
  color: #111;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 260ms ease, border-color 260ms ease, color 260ms ease, transform 260ms ease;
}

.cookie-banner-actions button:hover,
.cookie-banner-actions button:focus-visible {
  border-color: #9d732a;
  transform: translateY(-2px);
}

.cookie-banner-accept {
  background: #111;
  border-color: #111;
  color: #f6efe6;
}

.cookie-banner-accept:hover,
.cookie-banner-accept:focus-visible {
  background: #9d732a;
  border-color: #9d732a;
  color: #fff;
}

@media (max-width: 620px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-banner-actions {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner {
    transition: opacity 200ms ease;
    transform: none;
  }
}

/* Final footer visibility override: keep the British-made line readable. */
.site-footer .footer-bottom .footer-made,
.site-footer .footer-bottom .footer-made:link,
.site-footer .footer-bottom .footer-made:visited {
  color: #fffaf0 !important;
  opacity: 1 !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.85);
}

.site-footer .footer-bottom .footer-made .union-flag {
  opacity: 1 !important;
  box-shadow: 0 0 0 1px rgba(255, 250, 240, 0.42);
}
