/*
Theme Name: Aurelian Jewelry
Theme URI: https://example.com/aurelian-jewelry
Author: Aurelian Jewelry
Author URI: https://example.com
Description: A black and gold WordPress theme for jewelry, gold, silver, coins, at-home visits, and private appointments.
Version: 1.0.0
Requires at least: 6.2
Tested up to: 6.6
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aurelian-jewelry
Tags: custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, e-commerce
*/

:root {
  --color-ink: #070604;
  --color-ink-2: #11100d;
  --color-forest: #17150f;
  --color-sage: #c7a65a;
  --color-ivory: #f6efe0;
  --color-paper: #0f0d09;
  --color-gold: #bd9245;
  --color-gold-light: #e5c373;
  --color-wine: #6b2638;
  --color-steel: #cfc1a4;
  --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.36);
  --shadow-gold: 0 12px 32px rgba(189, 146, 69, 0.16);
  --radius: 6px;
  --container: 1140px;
  --header-height: 78px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-ink);
  color: var(--color-ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(100% - 36px, var(--container));
  margin-inline: auto;
}

.top-strip {
  background: #000;
  color: var(--color-ivory);
  font-size: 0.82rem;
}

.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 38px;
  text-align: center;
}

.top-strip a {
  color: var(--color-gold-light);
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 7, 5, 0.94);
  border-bottom: 1px solid rgba(201, 155, 54, 0.28);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-ivory);
  text-decoration: none;
  min-width: 0;
}

.brand__mark {
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(201, 155, 54, 0.32));
}

.brand__wordmark {
  width: 230px;
  height: 58px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  flex: 0 1 auto;
}

.brand__wordmark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0;
  filter: drop-shadow(0 6px 16px rgba(201, 155, 54, 0.28));
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.primary-menu,
.footer-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu a,
.footer-menu a {
  color: var(--color-ivory);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-menu a:hover,
.primary-menu a:focus,
.footer-menu a:hover,
.footer-menu a:focus {
  color: var(--color-gold-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-light);
  background: transparent;
  border: 1px solid rgba(240, 199, 94, 0.45);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle__icon {
  position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  position: absolute;
  left: 0;
}

.nav-toggle__icon::before {
  top: -6px;
}

.nav-toggle__icon::after {
  top: 6px;
}

.nav-open .nav-toggle__icon {
  background: transparent;
}

.nav-open .nav-toggle__icon::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle__icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--color-gold);
  color: #100f0d;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--color-gold-light);
  color: #100f0d;
  transform: translateY(-1px);
}

.button--ghost {
  background: transparent;
  color: var(--color-ivory);
  border-color: rgba(240, 199, 94, 0.46);
  box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus {
  background: var(--color-gold-light);
  color: #090806;
}

.button--dark {
  background: #000;
  color: var(--color-gold-light);
  border-color: rgba(240, 199, 94, 0.52);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.button--dark:hover,
.button--dark:focus {
  background: var(--color-gold-light);
  color: #090806;
  border-color: var(--color-gold-light);
}

.icon-button {
  width: 46px;
  min-width: 46px;
  padding: 0;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--header-height) - 38px);
  display: flex;
  align-items: center;
  background: var(--color-ink);
  color: var(--color-ivory);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(18, 17, 15, 0.94) 0%, rgba(18, 17, 15, 0.74) 37%, rgba(18, 17, 15, 0.28) 66%, rgba(18, 17, 15, 0.6) 100%), var(--hero-image);
  background-position: center;
  background-size: cover;
  content: "";
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 110px;
  background: linear-gradient(180deg, rgba(18, 17, 15, 0), var(--color-ink));
  content: "";
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  padding: clamp(74px, 10vw, 142px) 0 clamp(54px, 9vw, 118px);
}

.hero__copy {
  max-width: 720px;
}

.hero__copy:only-child {
  grid-column: 1 / -1;
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--color-gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1,
.section-heading h2,
.split-copy h2,
.contact-card h2,
.entry-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 7.2vw, 6.85rem);
}

.hero__lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(246, 241, 231, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero__actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__panel {
  align-self: end;
  padding: 24px;
  background: rgba(12, 10, 7, 0.9);
  color: var(--color-ivory);
  border: 1px solid rgba(240, 199, 94, 0.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero__panel .eyebrow {
  margin: 0 0 12px;
  color: var(--color-gold-light);
}

.hero__panel .eyebrow::before {
  width: 22px;
}

.hero__panel img,
.hero__panel-image {
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  object-fit: contain;
}

.hero__panel strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.12;
}

.hero__panel p {
  margin: 10px 0 0;
  color: rgba(248, 239, 216, 0.76);
}

.hero__panel-note {
  display: block;
  margin-top: 14px;
  padding-top: 14px;
  color: rgba(240, 199, 94, 0.72);
  border-top: 1px solid rgba(240, 199, 94, 0.2);
  font-size: 0.88rem;
  line-height: 1.55;
}

.hero-panel-links {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-panel-links a {
  justify-content: space-between;
  width: 100%;
  padding: 10px 12px;
  color: var(--color-ivory);
  border: 1px solid rgba(240, 199, 94, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.hero-panel-links a:hover,
.hero-panel-links a:focus-visible {
  color: var(--color-gold-light);
  border-color: rgba(240, 199, 94, 0.5);
}

.hero__panel .button {
  justify-content: center;
  width: 100%;
  margin-top: 16px;
}

.hero__panel-contact {
  margin-top: 16px;
}

.trust-bar {
  position: relative;
  z-index: 2;
  margin-top: -32px;
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(240, 199, 94, 0.32);
  border-radius: var(--radius);
  background: rgba(240, 199, 94, 0.25);
  box-shadow: var(--shadow-soft);
}

.trust-item {
  min-height: 106px;
  padding: 22px;
  background: #0f0c08;
}

.trust-item span {
  display: block;
  color: var(--color-gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-item strong {
  display: block;
  margin-top: 8px;
  color: var(--color-ivory);
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.1;
}

.section {
  padding: clamp(70px, 9vw, 120px) 0;
}

.section--dark {
  background: #000;
  color: var(--color-ivory);
}

.section--sage {
  background: linear-gradient(180deg, #1b1509, #070604);
}

.section--tight {
  padding: clamp(42px, 6vw, 80px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.54fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.split-copy h2,
.contact-card h2,
.entry-title {
  font-size: clamp(2.15rem, 4.4vw, 4.35rem);
}

.section-heading p,
.split-copy p {
  margin: 0;
  color: rgba(248, 239, 216, 0.68);
}

.section--dark .section-heading p,
.section--dark .split-copy p {
  color: rgba(246, 241, 231, 0.72);
}

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

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

.service-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(240, 199, 94, 0.26);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #17120b, #0b0906);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
}

.page-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(240, 199, 94, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #17120b, #0b0906);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--color-gold);
  border: 1px solid rgba(201, 155, 54, 0.45);
  border-radius: var(--radius);
  background: rgba(201, 155, 54, 0.08);
}

.service-card h3,
.page-card h3,
.review h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.15;
}

.service-card p,
.page-card p,
.review p {
  color: rgba(248, 239, 216, 0.68);
}

.service-card p,
.page-card p {
  margin: 12px 0 24px;
}

.service-card__note {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  padding: 5px 8px;
  color: var(--color-gold-light);
  border: 1px solid rgba(240, 199, 94, 0.32);
  border-radius: var(--radius);
  background: rgba(240, 199, 94, 0.08);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card a,
.page-card a,
.hero__panel a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--color-gold-light);
  font-weight: 900;
  text-decoration: none;
}

.service-card__link {
  margin-top: auto;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.split-media {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow-soft);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.split-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 17, 15, 0.04), rgba(18, 17, 15, 0.52));
  content: "";
}

.split-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  width: min(300px, calc(100% - 44px));
  padding: 18px;
  background: #0d0a06;
  border: 1px solid rgba(240, 199, 94, 0.48);
  border-radius: var(--radius);
}

.split-badge span {
  color: var(--color-gold-light);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.split-badge strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.14;
}

.inventory-band {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(260px, 0.42fr);
  gap: 26px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(240, 199, 94, 0.34);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0d0a06, #211807);
  box-shadow: var(--shadow-soft);
}

.inventory-band--map {
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.36fr);
}

.inventory-band--single {
  grid-template-columns: 1fr;
}

.inventory-band--brief {
  padding: clamp(24px, 4vw, 38px);
}

.inventory-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.04;
}

.inventory-band p {
  max-width: 720px;
  color: rgba(248, 239, 216, 0.7);
}

.inventory-band__mark {
  justify-self: end;
  width: min(220px, 100%);
  padding: 0;
  background: transparent;
  border-radius: 0;
  filter: drop-shadow(0 18px 34px rgba(201, 155, 54, 0.34));
}

.what-buy-box__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid rgba(240, 199, 94, 0.24);
  border-radius: var(--radius);
  background: #070604;
}

.what-buy-box__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.what-buy-box__examples,
.qualify-list {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.what-buy-box__examples li,
.qualify-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(246, 239, 224, 0.74);
  font-size: 0.92rem;
  line-height: 1.45;
}

.what-buy-box__examples li::before,
.qualify-list li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold-light);
  content: "";
}

.qualify-section,
.visit-process {
  margin-top: clamp(42px, 7vw, 82px);
}

.qualify-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.52fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(240, 199, 94, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(14, 11, 7, 0.96), rgba(31, 23, 9, 0.9));
}

.qualify-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
}

.qualify-panel p {
  max-width: 700px;
  color: rgba(246, 239, 224, 0.68);
}

.qualify-list {
  margin: 0;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(240, 199, 94, 0.2);
  border-radius: var(--radius);
  background: rgba(5, 4, 3, 0.54);
}

.visit-step-grid {
  align-items: start;
}

.editable-section-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.editable-section-list section {
  padding-top: 18px;
  border-top: 1px solid rgba(240, 199, 94, 0.16);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.process-item {
  border: 1px solid rgba(240, 199, 94, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(17, 14, 9, 0.96), rgba(8, 7, 5, 0.98));
}

.process-item summary {
  display: grid;
  gap: 8px;
  cursor: pointer;
  padding: 22px 24px;
  color: var(--color-ivory);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.16;
  list-style: none;
}

.process-item summary::-webkit-details-marker {
  display: none;
}

.process-item summary::after {
  justify-self: start;
  width: 22px;
  height: 1px;
  margin-top: 6px;
  background: var(--color-gold-light);
  content: "";
}

.process-item__note {
  display: inline-flex;
  width: fit-content;
  padding: 5px 8px;
  color: var(--color-gold-light);
  border: 1px solid rgba(240, 199, 94, 0.28);
  border-radius: var(--radius);
  background: rgba(240, 199, 94, 0.08);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process-item__answer {
  padding: 0 24px 24px;
  color: rgba(248, 239, 216, 0.68);
}

.process-item__answer > *:first-child {
  margin-top: 0;
}

.process-item__answer > *:last-child {
  margin-bottom: 0;
}

.process-item .service-card__link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--color-gold-light);
  font-weight: 900;
  text-decoration: none;
}

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

.review {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(201, 155, 54, 0.35);
  border-radius: var(--radius);
  background: rgba(246, 241, 231, 0.08);
}

.review p {
  color: rgba(246, 241, 231, 0.78);
}

.review span {
  display: block;
  margin-top: 20px;
  color: var(--color-gold-light);
  font-weight: 900;
}

.contact-section {
  background: linear-gradient(90deg, #000, #1f1709);
  color: var(--color-ivory);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.52fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.contact-card {
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid rgba(240, 199, 94, 0.26);
  border-radius: var(--radius);
  background: rgba(240, 199, 94, 0.08);
}

.contact-card p {
  color: rgba(246, 241, 231, 0.72);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
}

.contact-method {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: var(--color-ivory);
  text-decoration: none;
}

.contact-method svg {
  color: var(--color-gold-light);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  background: #0f0c08;
  color: var(--color-ivory);
  border: 1px solid rgba(240, 199, 94, 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--color-ivory);
  font-size: 0.85rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--color-ivory);
  background: #070604;
  border: 1px solid rgba(240, 199, 94, 0.32);
  border-radius: var(--radius);
}

.lead-form textarea {
  min-height: 118px;
  resize: vertical;
}

.lead-form .button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: rgba(248, 239, 216, 0.62);
  font-size: 0.84rem;
}

.form-message {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(240, 199, 94, 0.14);
  color: var(--color-gold-light);
  font-weight: 800;
}

.site-footer {
  background: var(--color-ink);
  color: var(--color-ivory);
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) repeat(3, minmax(160px, 1fr));
  gap: 30px;
  padding: 58px 0;
  border-bottom: 1px solid rgba(246, 241, 231, 0.12);
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-brand img {
  width: 240px;
  height: 62px;
  object-fit: contain;
  object-position: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  filter: drop-shadow(0 6px 16px rgba(201, 155, 54, 0.24));
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  color: var(--color-gold-light);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(246, 241, 231, 0.74);
}

.site-footer a {
  text-decoration: none;
}

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

.footer-menu {
  display: grid;
  gap: 9px;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  color: rgba(246, 241, 231, 0.58);
  font-size: 0.86rem;
}

.site-footer__utility {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 14px;
  text-align: right;
}

.privacy-link {
  color: rgba(246, 241, 231, 0.58);
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 199, 94, 0.24);
}

.privacy-link:hover,
.privacy-link:focus-visible {
  color: var(--color-gold-light);
  border-color: currentColor;
}

.entry {
  padding: 72px 0;
}

.entry-content {
  max-width: 850px;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.custom-insert {
  margin-top: clamp(26px, 5vw, 52px);
  margin-bottom: clamp(26px, 5vw, 52px);
}

.custom-insert > * {
  max-width: 100%;
}

.custom-insert iframe,
.custom-insert embed,
.custom-insert object {
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(240, 199, 94, 0.26);
  border-radius: var(--radius);
  background: #070604;
}

.subpage-hero {
  background: linear-gradient(135deg, #000, #1f1709);
  color: var(--color-ivory);
  border-bottom: 1px solid rgba(240, 199, 94, 0.22);
}

.subpage-hero__inner {
  max-width: 900px;
  padding: clamp(58px, 8vw, 104px) 0;
}

.subpage-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  line-height: 0.98;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 730px;
  margin: 18px 0 0;
  color: rgba(248, 239, 216, 0.72);
  font-size: 1.05rem;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.page-layout--single {
  grid-template-columns: minmax(0, 1fr);
}

.page-return {
  margin-bottom: 18px;
}

.page-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-gold-light);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.page-back__mark {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 199, 94, 0.36);
  border-radius: 50%;
  background: rgba(240, 199, 94, 0.08);
  font-size: 1.3rem;
  line-height: 1;
}

.page-back:hover,
.page-back:focus {
  color: var(--color-ivory);
}

.editable-content {
  max-width: none;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(240, 199, 94, 0.24);
  border-radius: var(--radius);
  background: rgba(240, 199, 94, 0.06);
}

.editable-content h2,
.editable-content h3 {
  font-family: var(--font-display);
  line-height: 1.08;
}

.editable-content h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.editable-content a:not(.button) {
  color: var(--color-gold-light);
  font-weight: 800;
}

.category-section {
  margin-top: clamp(42px, 7vw, 82px);
}

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

.woocommerce ul.products li.product {
  width: auto;
  padding: 18px;
  border: 1px solid rgba(240, 199, 94, 0.26);
  border-radius: var(--radius);
  background: #100d08;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
}

.woocommerce div.product div.images img,
.woocommerce ul.products li.product a img {
  border-radius: var(--radius);
}

/* Luxury refinement layer. */
body {
  background: radial-gradient(circle at 78% 8%, rgba(189, 146, 69, 0.1), transparent 28rem), var(--color-ink);
}

.top-strip {
  background: #040302;
  color: rgba(246, 239, 224, 0.7);
  border-bottom: 1px solid rgba(229, 195, 115, 0.08);
}

.top-strip__inner {
  min-height: 34px;
}

.site-header {
  background: rgba(5, 4, 3, 0.9);
  border-bottom-color: rgba(229, 195, 115, 0.16);
}

.site-header__inner {
  min-height: 76px;
}

.brand__mark {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 7px 18px rgba(189, 146, 69, 0.22));
}

.brand__wordmark {
  width: 220px;
  height: 54px;
}

.primary-menu,
.footer-menu {
  gap: 22px;
}

.primary-menu a,
.footer-menu a {
  color: rgba(246, 239, 224, 0.82);
  font-size: 0.9rem;
  font-weight: 650;
}

.button,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 4px;
  background: linear-gradient(180deg, #e1bd6b, #b88935);
  box-shadow: 0 10px 28px rgba(189, 146, 69, 0.16);
}

.button--ghost {
  background: rgba(7, 6, 4, 0.3);
  color: var(--color-ivory);
  border-color: rgba(229, 195, 115, 0.34);
}

.button--dark {
  background: rgba(5, 4, 3, 0.94);
  color: var(--color-gold-light);
  border-color: rgba(229, 195, 115, 0.36);
  box-shadow: none;
}

.hero {
  min-height: calc(88svh - var(--header-height) - 34px);
}

.hero::before {
  background-image: linear-gradient(90deg, rgba(7, 6, 4, 0.96) 0%, rgba(7, 6, 4, 0.8) 38%, rgba(7, 6, 4, 0.28) 68%, rgba(7, 6, 4, 0.55) 100%), var(--hero-image);
  background-position: center right;
}

.hero::after {
  height: 150px;
  background: linear-gradient(180deg, rgba(7, 6, 4, 0), var(--color-ink));
}

.hero__inner {
  padding: clamp(88px, 11vw, 150px) 0 clamp(66px, 9vw, 112px);
}

.hero__copy,
.hero__copy:only-child {
  max-width: 780px;
}

.eyebrow {
  margin-bottom: 16px;
  color: rgba(229, 195, 115, 0.86);
  font-size: 0.75rem;
  font-weight: 850;
}

.eyebrow::before {
  width: 30px;
  opacity: 0.8;
}

.hero h1 {
  max-width: 880px;
  font-size: clamp(3.4rem, 8vw, 7.35rem);
}

.hero__lead {
  max-width: 590px;
  color: rgba(246, 239, 224, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.hero__actions,
.section-actions {
  gap: 10px;
}

.section {
  padding: clamp(62px, 8vw, 104px) 0;
}

.section--tight {
  padding: clamp(36px, 5vw, 66px) 0;
}

.section--dark {
  background: #050403;
}

.section--sage {
  background: radial-gradient(circle at 78% 12%, rgba(189, 146, 69, 0.12), transparent 24rem), linear-gradient(180deg, #100c06, #050403);
}

.section-heading {
  gap: clamp(22px, 5vw, 64px);
  margin-bottom: 28px;
}

.section-heading h2,
.split-copy h2,
.contact-card h2,
.entry-title {
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.section-heading p,
.split-copy p,
.inventory-band p,
.contact-card p {
  color: rgba(246, 239, 224, 0.66);
}

.service-card,
.page-card,
.review,
.woocommerce ul.products li.product {
  border-color: rgba(229, 195, 115, 0.18);
  background: linear-gradient(180deg, rgba(18, 15, 10, 0.92), rgba(8, 7, 5, 0.94));
  box-shadow: none;
}

.service-card,
.page-card {
  min-height: 238px;
  padding: 28px;
}

.page-card {
  min-height: 246px;
}

.service-card:hover,
.page-card:hover {
  border-color: rgba(229, 195, 115, 0.34);
}

.service-card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  color: var(--color-gold-light);
  border: 0;
  background: transparent;
}

.service-card h3,
.page-card h3,
.review h3 {
  font-size: 1.32rem;
}

.service-card p,
.page-card p,
.review p {
  color: rgba(246, 239, 224, 0.66);
}

.hub-grid,
.buy-grid,
.process-grid,
.service-grid {
  gap: 14px;
}

.inventory-band {
  padding: clamp(32px, 5vw, 50px);
  border-color: rgba(229, 195, 115, 0.22);
  background: linear-gradient(135deg, rgba(12, 9, 5, 0.98), rgba(22, 16, 8, 0.92));
  box-shadow: none;
}

.inventory-band--brief {
  padding: clamp(24px, 4vw, 36px);
}

.inventory-band h2 {
  font-size: clamp(2rem, 3.8vw, 3.45rem);
}

.inventory-band--brief h2 {
  max-width: 760px;
  font-size: clamp(1.85rem, 3vw, 2.8rem);
}

.inventory-band--brief p {
  max-width: 640px;
}

.contact-section {
  background: radial-gradient(circle at 82% 20%, rgba(189, 146, 69, 0.12), transparent 26rem), #050403;
}

.contact-section .inventory-band {
  border-color: rgba(229, 195, 115, 0.2);
  background: linear-gradient(135deg, rgba(17, 13, 7, 0.96), rgba(6, 5, 4, 0.98));
}

.site-footer {
  background: #050403;
  border-top: 1px solid rgba(229, 195, 115, 0.12);
}

.site-footer__main {
  padding: 50px 0;
  border-bottom-color: rgba(246, 239, 224, 0.1);
}

.site-footer h2,
.site-footer h3 {
  color: rgba(229, 195, 115, 0.88);
}

@media (max-width: 1080px) {
  .brand__wordmark {
    width: 190px;
  }

  .header-actions .button:not(.icon-button) {
    display: none;
  }

  .service-grid,
  .hub-grid,
  .buy-grid,
  .process-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .site-footer__main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 74px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    inset: calc(var(--header-height) + 38px) 0 auto;
    display: grid;
    gap: 18px;
    padding: 24px 18px 28px;
    background: #090806;
    border-bottom: 1px solid rgba(240, 199, 94, 0.3);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-menu {
    display: grid;
    gap: 0;
  }

  .primary-menu a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(240, 199, 94, 0.16);
    font-size: 1.06rem;
  }

  .header-actions .button {
    display: inline-flex;
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner,
  .section-heading,
  .split,
  .inventory-band,
  .page-layout,
  .contact-layout,
  .qualify-panel {
    grid-template-columns: 1fr;
  }

  .hero::before {
    background-image: linear-gradient(180deg, rgba(7, 6, 4, 0.94) 0%, rgba(7, 6, 4, 0.62) 58%, rgba(7, 6, 4, 0.84) 100%), var(--hero-image);
    background-position: 63% center;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.6rem);
  }

  .hero__panel {
    max-width: 420px;
  }

  .trust-bar {
    margin-top: 0;
  }

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

  .inventory-band__mark {
    justify-self: start;
    width: 170px;
  }

}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

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

  .brand__wordmark {
    width: 148px;
    height: 48px;
  }

  .button {
    width: 100%;
  }

  .header-actions {
    gap: 8px;
  }

  .hero__inner {
    gap: 20px;
    padding-top: 38px;
    padding-bottom: 32px;
  }

  .hero__lead {
    margin-top: 14px;
    font-size: 1rem;
  }

  .hero__actions {
    gap: 8px;
    margin-top: 22px;
  }

  .hero__panel {
    padding: 18px;
  }

  .hero__panel strong {
    font-size: 1.08rem;
  }

  .hero__panel p {
    margin-top: 0;
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .hero-panel-links a {
    padding: 9px 10px;
  }

  .trust-bar__inner,
  .service-grid,
  .hub-grid,
  .buy-grid,
  .process-grid,
  .woocommerce ul.products,
  .site-footer__main {
    grid-template-columns: 1fr;
  }

  .service-card,
  .page-card {
    min-height: auto;
  }

  .split-media,
  .split-media img {
    min-height: 390px;
  }

  .lead-form__row {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    display: grid;
  }

  .site-footer__utility {
    justify-content: flex-start;
    text-align: left;
  }
}
