:root {
  --gold: #b88a2d;
  --gold-dark: #8d681d;
  --gold-soft: #f4ead2;
  --ink: #241f18;
  --atlas-black: #12100c;
  --atlas-charcoal: #2a261f;
  --muted: #756c5f;
  --ivory: #fbf7ef;
  --champagne: #f7efdE;
  --line: #eadcc0;
  --white: #fff;
  --green: #227149;
  --red: #a94442;
  --header-action: #111;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.price-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 9px 20px;
  color: #fff;
  background: var(--atlas-black);
  border-bottom: 1px solid #000;
  font-size: 15px;
}

.price-bar strong { color: #fff; }
.rate-update { margin-left: auto; padding-right: 8px; }

.site-header {
  position: relative;
  top: 0;
  z-index: 20;
  display: block;
  padding: 30px clamp(18px, 4vw, 70px) 22px;
  background: #fff;
  border-bottom: 1px solid #f3ead8;
}

.header-tools {
  display: grid;
  grid-template-columns: minmax(260px, 408px) 1fr minmax(320px, 394px);
  align-items: center;
  gap: 28px;
  margin-bottom: 34px;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 60px;
  padding: 0 18px;
  border: 1px solid #edf0f6;
  border-radius: 8px;
  background: #fbfcff;
  color: var(--atlas-black);
  font-size: 25px;
}

.search-icon,
.user-icon,
.bag-icon,
.chevron {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}

.search-icon {
  width: 19px;
  height: 19px;
  border: 2px solid var(--header-action);
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 9px;
  height: 2px;
  background: var(--header-action);
  transform: rotate(45deg);
  transform-origin: left center;
}

.search-box input {
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--atlas-black);
  background: transparent;
  font-size: 18px;
  font-weight: 600;
}

.site-search-results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 70;
  display: none;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(31, 26, 19, .16);
}

.site-search-results.is-open {
  display: grid;
}

.site-search-results button,
.search-empty {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-top: 1px solid #f1e6d1;
  color: var(--ink);
  background: #fff;
  text-align: left;
}

.site-search-results button:first-child,
.search-empty:first-child {
  border-top: 0;
}

.site-search-results button {
  cursor: pointer;
}

.site-search-results button:hover,
.site-search-results button:focus-visible {
  outline: 0;
  background: #fffaf0;
}

.site-search-results strong,
.search-empty strong {
  font-size: 14px;
}

.site-search-results span,
.search-empty span,
.site-search-results small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
}

.brand-logo {
  width: clamp(190px, 18vw, 280px);
  max-height: 118px;
  height: auto;
  object-fit: contain;
}

.account-tools {
  display: flex;
  justify-content: end;
  gap: 10px;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  color: var(--header-action);
  background: #fbfcff;
  font: inherit;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.header-action:hover {
  background: #f5f7fc;
  box-shadow: 0 10px 22px rgba(0, 31, 120, .08);
  transform: translateY(-1px);
}

.user-icon {
  width: 24px;
  height: 24px;
}

.user-icon::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 1px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--header-action);
  border-radius: 50%;
}

.user-icon::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 1px;
  width: 20px;
  height: 12px;
  border: 2px solid var(--header-action);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
}

.bag-icon {
  width: 23px;
  height: 22px;
  border: 2px solid var(--header-action);
  border-radius: 2px;
}

.bag-icon::before {
  content: "";
  position: absolute;
  left: 6px;
  top: -8px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--header-action);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.chevron {
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--header-action);
  border-bottom: 2px solid var(--header-action);
  transform: rotate(45deg) translateY(-2px);
}

.footer-brand {
  justify-content: start;
}

.footer-brand .brand-logo {
  width: 230px;
  max-height: 120px;
}

.brand strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  line-height: 1;
  color: #c69c61;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: var(--gold-dark);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: #b07d2b;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}

.nav a:hover {
  color: var(--atlas-black);
  border-bottom-color: var(--gold);
}

.contact-pill,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: #fff;
  background: var(--gold);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, border-color .16s ease, color .16s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(80, 54, 10, .18);
  background: #9f741f;
  border-color: #9f741f;
}

.btn:active {
  transform: translateY(1px) scale(.98);
  box-shadow: 0 4px 10px rgba(80, 54, 10, .14);
}

.btn:focus-visible {
  outline: 3px solid rgba(184, 138, 45, .35);
  outline-offset: 3px;
}

.btn.secondary {
  color: var(--gold-dark);
  background: #fff;
}

.btn.secondary:hover {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

.btn.light {
  color: var(--ink);
  background: #fffaf0;
  border-color: var(--line);
}

.btn.light:hover {
  color: var(--ink);
  background: #fff0c8;
  border-color: var(--gold);
}

.auth-modal,
.claim-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.auth-modal.is-open,
.claim-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.auth-backdrop,
.claim-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 16, 12, .52);
  backdrop-filter: blur(4px);
}

.auth-panel,
.claim-panel {
  position: relative;
  width: min(100%, 460px);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .26);
  transform: translateY(12px);
  transition: transform .18s ease;
}

.auth-modal.is-open .auth-panel,
.claim-modal.is-open .claim-panel {
  transform: translateY(0);
}

.auth-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  cursor: pointer;
}

.auth-panel h2 {
  margin: 6px 0 10px;
  font-size: 42px;
}

.auth-panel p {
  color: var(--muted);
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 24px 0;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.auth-tabs button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.auth-tabs button.is-active {
  color: #fff;
  background: var(--gold);
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-form label {
  display: grid;
  gap: 8px;
  color: var(--atlas-charcoal);
  font-weight: 700;
}

.auth-form input {
  min-height: 52px;
}

.password-field {
  position: relative;
}

.password-help {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 8px);
  z-index: 2;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
  transition: opacity .16s ease, transform .16s ease;
}

.password-field:hover .password-help,
.password-field:focus-within .password-help {
  opacity: 1;
  transform: translateY(0);
}

.auth-modal[data-mode="login"] .auth-name-field {
  display: none !important;
}

.auth-modal[data-mode="register"] #forgotPasswordButton,
.auth-modal[data-mode="register"]:not([data-verification="register"]) .auth-form > .password-field:not(.auth-reset-password-field),
.auth-modal[data-mode="register"]:not([data-verification="register"]) .auth-code-field,
.auth-modal[data-mode="register"]:not([data-verification="register"]) .auth-reset-password-field {
  display: none !important;
}

.auth-code-field,
.auth-reset-password-field,
.password-code-field {
  display: none !important;
}

.auth-modal[data-verification="register"] .auth-code-field,
.auth-modal[data-verification="register"] .auth-reset-password-field,
.auth-modal[data-verification="reset"] .auth-code-field,
.auth-modal[data-verification="reset"] .auth-reset-password-field,
.account-password-verifying .password-code-field {
  display: grid !important;
}

.auth-modal[data-verification="register"] .auth-form > .password-field:not(.auth-reset-password-field),
.auth-modal[data-verification="register"] #forgotPasswordButton,
.auth-modal[data-verification="reset-request"] .auth-name-field,
.auth-modal[data-verification="reset-request"] .auth-form > .password-field,
.auth-modal[data-verification="reset-request"] .auth-code-field,
.auth-modal[data-verification="reset-request"] .auth-reset-password-field,
.auth-modal[data-verification="reset-request"] #forgotPasswordButton,
.auth-modal[data-verification="reset"] .auth-name-field,
.auth-modal[data-verification="reset"] .auth-form > .password-field:not(.auth-reset-password-field),
.auth-modal[data-verification="reset"] #forgotPasswordButton {
  display: none !important;
}

.auth-message {
  min-height: 22px;
  margin: 14px 0 0;
  font-weight: 700;
}

.auth-message.is-error {
  color: var(--red);
}

.wallet-hero {
  color: #fffaf0;
  background:
    radial-gradient(circle at 16% 10%, rgba(216, 170, 92, .22), transparent 30%),
    linear-gradient(135deg, #11100d, #201913 66%, #0d0c0a);
}

.wallet-hero h1 {
  max-width: 900px;
  color: #fffaf0;
}

.wallet-hero p {
  max-width: 680px;
  color: rgba(255, 250, 240, .76);
  font-size: 19px;
}

.wallet-list {
  display: grid;
  gap: 18px;
}

.wallet-summary {
  margin-bottom: 26px;
}

.wallet-education-panel {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: stretch;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(184, 138, 45, .30);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 10%, rgba(216, 170, 92, .16), transparent 28%),
    linear-gradient(135deg, #fff, #fffaf0 68%, #f7edda);
  box-shadow: 0 22px 56px rgba(31, 26, 19, .10);
}

.wallet-education-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wallet-education-copy h2 {
  max-width: 760px;
  margin-top: 8px;
}

.wallet-education-copy p {
  max-width: 700px;
  font-size: 17px;
}

.wallet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

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

.wallet-benefit-grid article {
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(184, 138, 45, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
}

.wallet-benefit-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--atlas-black);
  font-size: 18px;
}

.wallet-benefit-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

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

.wallet-steps article {
  padding: 28px;
  border: 1px solid rgba(184, 138, 45, .25);
  border-radius: 8px;
  background: #fff;
}

.wallet-steps span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.wallet-steps h3 {
  margin-top: 18px;
}

.wallet-steps p {
  margin-bottom: 0;
}

.wallet-empty-state p {
  max-width: 780px;
}

.account-hero {
  color: #fffaf0;
  background:
    radial-gradient(circle at 18% 10%, rgba(216, 170, 92, .20), transparent 30%),
    linear-gradient(135deg, #11100d, #221a10 66%, #0d0c0a);
}

.account-hero h1 {
  max-width: 880px;
  color: #fffaf0;
}

.account-hero p {
  max-width: 720px;
  color: rgba(255, 250, 240, .78);
  font-size: 19px;
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 22px;
  align-items: start;
}

.account-card {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(184, 138, 45, .26);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(31, 26, 19, .07);
}

.account-card h2 {
  margin: 8px 0 12px;
}

.account-card p {
  margin-top: 0;
}

.account-layout .account-card:first-child {
  grid-column: 1;
}

.account-layout .account-card:nth-child(2) {
  grid-column: 1;
}

.account-summary {
  position: sticky;
  top: 18px;
  grid-column: 2;
  grid-row: 1 / span 2;
  background:
    linear-gradient(135deg, #fffaf0, #fff 68%, #f7edda);
}

.account-meta {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.account-meta span {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, .70);
  overflow-wrap: anywhere;
}

.account-meta strong {
  color: var(--gold-dark);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.account-actions {
  display: grid;
  gap: 10px;
}

.account-signout {
  width: 100%;
}

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

.account-benefits article {
  padding: 26px;
  border: 1px solid rgba(184, 138, 45, .24);
  border-radius: 8px;
  background: #fff;
}

.account-benefits strong {
  display: block;
  margin-bottom: 10px;
  color: var(--atlas-black);
  font-size: 18px;
}

.account-benefits p {
  margin-bottom: 0;
}

.wallet-value-panel {
  padding: 28px;
  border: 1px solid rgba(184, 138, 45, .34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #fffaf0, #fff 58%, #fbf1d7);
  box-shadow: 0 20px 48px rgba(31, 26, 19, .10);
}

.wallet-value-panel h2 {
  margin: 8px 0 18px;
}

.wallet-value-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
  margin-bottom: 16px;
}

.wallet-value-grid strong {
  color: var(--atlas-black);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .95;
}

.wallet-value-grid span {
  padding-bottom: 8px;
  color: var(--gold-dark);
  font-size: 22px;
  font-weight: 900;
}

.wallet-value-panel p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.wallet-investment-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.wallet-investment-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--ivory);
}

.wallet-investment-card h3 {
  margin-bottom: 12px;
}

.wallet-item-value {
  display: grid;
  gap: 2px;
  max-width: 330px;
  margin-top: 14px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
}

.wallet-item-value span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wallet-item-value strong {
  color: var(--atlas-black);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.wallet-item-value small {
  color: var(--gold-dark);
  font-weight: 800;
}

.wallet-card-actions {
  margin-top: 14px;
}

.empty-state {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
}

.certificate-shell {
  background: linear-gradient(180deg, #fff, #fffaf0);
}

.certificate-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(184, 138, 45, .42);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(31, 26, 19, .12);
}

.certificate-header,
.certificate-body {
  display: grid;
  gap: 28px;
  align-items: center;
}

.certificate-header {
  grid-template-columns: 190px minmax(0, 1fr);
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.certificate-header img {
  width: 180px;
}

.certificate-body {
  grid-template-columns: minmax(0, 1fr) 260px;
  padding: 30px 0;
}

.certificate-body img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--ivory);
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.certificate-grid span {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  color: var(--muted);
}

.certificate-grid strong {
  color: var(--ink);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.certificate-note {
  margin: 22px 0 0;
  color: var(--muted);
}

.certificate-actions {
  margin-top: 26px;
}

.page { overflow: hidden; }

.section {
  padding: 82px clamp(18px, 5vw, 72px);
}

.section.soft { background: var(--ivory); }
.section.champagne { background: linear-gradient(180deg, #fff, var(--champagne)); }

.eyebrow {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
}

h1 { font-size: clamp(42px, 6vw, 76px); max-width: 760px; }
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: 24px; }

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  align-items: center;
  gap: 52px;
  min-height: 650px;
  padding: 72px clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 12%, rgba(184, 138, 45, .15), transparent 28%),
    linear-gradient(135deg, #fff, #fbf6eb 62%, #f4e8cf);
}

.hero-copy p { max-width: 640px; font-size: 18px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
}

.stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
}

.stat strong { display: block; font-size: 22px; }
.stat span { color: var(--muted); font-size: 13px; }

.hero-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(84, 61, 15, .10);
}

.hero-image img { width: 100%; height: 520px; object-fit: cover; }

.atlas-commerce-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(320px, .95fr);
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 70px) 18px;
  background: #fff;
}

.atlas-hero-tile {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid #edf0f6;
  border-radius: 8px;
  background: #f8f9fb;
}

.atlas-hero-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 3.8s ease;
}

.atlas-hero-tile:hover img {
  transform: scale(1.045);
}

.atlas-hero-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .64) 46%, rgba(255, 255, 255, .10));
}

.atlas-hero-tile > div,
.atlas-home-slide > div {
  position: relative;
  z-index: 2;
}

.atlas-hero-main {
  grid-row: 1 / span 2;
  min-height: 540px;
}

.atlas-hero-main > div {
  max-width: 620px;
  padding: clamp(34px, 6vw, 74px);
}

.atlas-hero-main h1 {
  max-width: 660px;
  color: var(--atlas-black);
  font-size: clamp(46px, 5.6vw, 78px);
}

.atlas-hero-main p {
  max-width: 560px;
  color: #51483d;
  font-size: 18px;
}

.atlas-hero-main.is-visit-slide::before {
  background: linear-gradient(90deg, rgba(255, 250, 240, .94), rgba(255, 250, 240, .74) 48%, rgba(255, 250, 240, .18));
}

.atlas-visit-address {
  margin-top: 18px;
  color: #8d681d;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.atlas-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 38px;
  z-index: 5;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.atlas-hero-dots span {
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: rgba(36, 31, 24, .24);
  transition: background .25s ease, width .25s ease;
}

.atlas-hero-dots span.is-active {
  width: 48px;
  background: #c9952f;
}

.atlas-hero-side::before {
  background: linear-gradient(180deg, rgba(18, 16, 12, .08), rgba(18, 16, 12, .76));
}

.atlas-hero-side.dark::before {
  background: linear-gradient(180deg, rgba(10, 10, 10, .18), rgba(10, 10, 10, .82));
}

.atlas-hero-side > div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: #fff;
}

.atlas-hero-side span {
  color: rgba(255, 250, 240, .78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.atlas-hero-side h2 {
  max-width: 360px;
  color: #fff;
  font-size: 34px;
}

.atlas-hero-side p {
  max-width: 330px;
  margin: 8px 0 12px;
  color: rgba(255, 250, 240, .78);
  line-height: 1.45;
}

.atlas-hero-side a {
  color: #fff;
  font-weight: 900;
  border-bottom: 1px solid rgba(255, 255, 255, .6);
}

.atlas-category-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 4vw, 70px) 34px;
  background: #fff;
}

.atlas-category-tile {
  display: grid;
  gap: 9px;
  min-height: 174px;
  padding: 16px;
  border: 1px solid #edf0f6;
  background: #fff;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.atlas-category-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 138, 45, .36);
  box-shadow: 0 16px 34px rgba(31, 26, 19, .10);
}

.atlas-category-tile img {
  width: 100%;
  height: 96px;
  object-fit: cover;
  border-radius: 6px;
  background: #f8f9fb;
}

.atlas-category-tile strong {
  color: var(--atlas-black);
  font-size: 15px;
}

.atlas-category-tile span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.atlas-refinery-story {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  min-height: 560px;
  padding: clamp(52px, 7vw, 92px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  color: #fffaf0;
  background:
    radial-gradient(circle at 68% 22%, rgba(216, 170, 92, .18), transparent 26%),
    radial-gradient(circle at 10% 12%, rgba(255, 255, 255, .06), transparent 24%),
    linear-gradient(135deg, #050504, #11100d 58%, #000);
}

.refinery-story-copy h2 {
  max-width: 620px;
  color: #fffaf0;
}

.refinery-story-copy p {
  max-width: 620px;
  color: rgba(255, 250, 240, .78);
  font-size: 17px;
}

.refinery-story-copy .btn.secondary {
  border-color: rgba(255, 255, 255, .56);
  color: #fff;
  background: transparent;
}

.refinery-collage {
  position: relative;
  min-height: 440px;
}

.refinery-collage img {
  position: absolute;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .32);
}

.collage-main {
  right: 4%;
  top: 4%;
  width: 58%;
  height: 250px;
}

.collage-float.one {
  left: 5%;
  top: 22%;
  width: 34%;
  height: 210px;
}

.collage-float.two {
  right: 0;
  bottom: 0;
  width: 44%;
  height: 180px;
}

.collage-float.three {
  left: 27%;
  bottom: 8%;
  width: 36%;
  height: 165px;
}

.atlas-experience {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 1260px;
  min-height: auto;
  margin: 0 auto;
  padding-top: clamp(52px, 6vw, 78px);
  padding-bottom: clamp(54px, 6vw, 82px);
  text-align: center;
}

.atlas-experience h2 {
  max-width: 930px;
  color: var(--atlas-black);
  font-size: clamp(34px, 3.7vw, 52px);
  line-height: 1.08;
}

.atlas-experience p {
  max-width: 880px;
  margin: 0;
  color: #6b6258;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.62;
}

.atlas-credential-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1160px;
  margin-top: 14px;
}

.atlas-credential-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(184, 138, 45, .26);
  border-radius: 999px;
  color: var(--gold-dark);
  background: #fffaf0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 2.05fr) minmax(320px, 1fr);
  gap: 20px;
  padding: 38px clamp(18px, 4vw, 70px) 34px;
  background:
    linear-gradient(180deg, rgba(9, 9, 8, .96), rgba(25, 20, 13, .94)),
    #0f0d09;
}

.luxury-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 10%, rgba(216, 170, 92, .22), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, .08), transparent 24%);
}

.main-promo,
.side-promo {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .34);
}

.main-promo {
  min-height: 690px;
  border: 1px solid rgba(216, 170, 92, .32);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .65s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, .84) 0%, rgba(20, 16, 10, .68) 38%, rgba(20, 16, 10, .18) 72%, rgba(20, 16, 10, .02) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .32));
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: inset 0 0 90px rgba(0, 0, 0, .28);
}

.main-promo img,
.side-promo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-promo img {
  position: absolute;
  inset: 0;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.hero-slide.is-active img {
  transform: scale(1.09);
}

.promo-copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
  padding: 132px 42px 42px 92px;
}

.promo-copy h1 {
  color: #fffaf0;
  font-size: clamp(48px, 5.7vw, 84px);
  letter-spacing: .01em;
  text-shadow: 0 22px 48px rgba(0, 0, 0, .4);
}

.promo-copy p {
  max-width: 540px;
  color: rgba(255, 250, 240, .86);
  font-size: 21px;
  line-height: 1.45;
}

.promo-copy .btn {
  margin: 22px 0 34px;
  border-color: #d7aa5f;
  color: #1d1609;
  background: #d7aa5f;
}

.promo-copy small {
  display: block;
  max-width: 450px;
  color: rgba(255, 250, 240, .66);
  line-height: 1.45;
}

.side-promos {
  display: grid;
  gap: 20px;
}

.side-promo {
  min-height: 306px;
  border: 1px solid rgba(216, 170, 92, .26);
}

.side-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .68)),
    linear-gradient(90deg, rgba(16, 12, 7, .54), rgba(16, 12, 7, .04));
}

.side-promo > div {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  color: #fff;
}

.side-promo h3 {
  font-size: 30px;
  color: #fff;
}

.side-promo p {
  max-width: 360px;
  color: rgba(255, 255, 255, .88);
}

.luxury-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(216, 170, 92, .28);
  border-radius: 8px;
  background: rgba(216, 170, 92, .24);
}

.luxury-strip span {
  padding: 16px 18px;
  color: rgba(255, 250, 240, .82);
  background: rgba(255, 250, 240, .055);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
}

.refinery-marquee {
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid rgba(216, 170, 92, .18);
  border-bottom: 1px solid rgba(216, 170, 92, .18);
  background: #fff;
}

.refinery-marquee-window {
  position: relative;
  overflow: hidden;
  contain: paint;
}

.refinery-marquee-track {
  display: flex;
  width: max-content;
  gap: clamp(72px, 10vw, 170px);
  padding: 0 clamp(34px, 7vw, 130px);
  animation: refinery-marquee 85s linear infinite;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.refinery-marquee:hover .refinery-marquee-track {
  animation-play-state: paused;
}

.refinery-logo-card {
  display: grid;
  place-items: center;
  flex: 0 0 clamp(180px, 16vw, 260px);
  height: 92px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  contain: layout paint;
}

.refinery-logo-card img {
  display: block;
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
}

@keyframes refinery-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.luxury-products {
  color: #fffaf0;
  background:
    linear-gradient(180deg, #12100d, #1f1a13 56%, #fffaf0 56%, #fffaf0);
}

.luxury-products .section-head {
  align-items: center;
}

.luxury-products h2,
.luxury-products .eyebrow {
  color: #fffaf0;
}

.luxury-products .section-head p {
  color: rgba(255, 250, 240, .72);
}

.luxury-products .btn.secondary {
  border-color: rgba(216, 170, 92, .72);
  color: #fffaf0;
  background: transparent;
}

.luxury-products .luxury-catalog-link {
  flex: 0 0 auto;
  min-width: 190px;
  min-height: 46px;
  padding: 12px 24px;
  border-color: rgba(216, 170, 92, .72);
  border-radius: 999px;
  color: #f7ead0;
  background: rgba(255, 250, 240, .035);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(255, 250, 240, .04);
}

.luxury-products .luxury-catalog-link:hover {
  color: #15110b;
  background: linear-gradient(135deg, #d8aa5c, #b88a2d);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .24);
}

.grid.featured-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.grid.featured-grid .product-card {
  border-color: rgba(216, 170, 92, .28);
  box-shadow: 0 22px 48px rgba(31, 26, 19, .14);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head p { max-width: 620px; margin-bottom: 0; }

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.category-card {
  min-height: 220px;
  padding: 26px;
  background: linear-gradient(145deg, #fff, #fff8e8);
}

.category-card .icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-dark);
  font-family: "Playfair Display", serif;
  font-size: 24px;
}

.product-card-image {
  display: block;
  height: 100%;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(247, 239, 222, .72)),
    #f7f1e7;
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: clamp(330px, 26vw, 460px);
  object-fit: cover;
  object-position: center;
  background: #f7f1e7;
  transition: transform .55s ease, filter .55s ease;
}

.product-card:hover img {
  transform: scale(1.035);
  filter: contrast(1.02) saturate(1.04);
}

.product-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  gap: 12px;
  padding: 22px clamp(18px, 1.8vw, 24px) 24px;
  background:
    linear-gradient(180deg, rgba(18, 18, 16, 0), rgba(20, 19, 16, .84) 20%, rgba(20, 19, 16, .96));
  transform: translateY(calc(100% - 86px));
  transition: transform .28s ease;
}

.product-body h3 {
  display: grid;
  align-items: center;
  min-height: 50px;
  margin-bottom: 0;
  color: #fffaf0;
  font-family: Lato, Inter, system-ui, sans-serif;
  font-size: clamp(20px, 1.28vw, 25px);
  font-weight: 300;
  line-height: 1.12;
  text-align: center;
  letter-spacing: .005em;
}

.product-card {
  position: relative;
  min-height: clamp(330px, 26vw, 460px);
  border-color: rgba(184, 138, 45, .34);
  border-radius: 8px;
  background: #171716;
  box-shadow: 0 16px 36px rgba(31, 26, 19, .12);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, .52) 100%);
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 138, 45, .76);
  box-shadow: 0 28px 60px rgba(31, 26, 19, .20);
}

.product-card:hover .product-body,
.product-card:focus-within .product-body {
  transform: translateY(0);
}

.product-card .product-body {
  color: #f2f4f7;
}

.product-card-meta {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 170, 92, .30);
  border-radius: 8px;
  background: #fffaf0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease;
}

.product-card:hover .product-card-meta,
.product-card:focus-within .product-card-meta {
  opacity: 1;
  transform: translateY(0);
}

.availability-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  min-height: 46px;
  padding: 10px 14px 8px;
  border: 0;
  border-bottom: 1px solid rgba(216, 170, 92, .20);
  border-radius: 0;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
}

.availability-line strong {
  color: var(--green);
}

.availability-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  padding: 4px 9px;
  border-radius: 999px;
  font-weight: 900;
}

.availability-status.is-available {
  color: #1f7a4b;
  background: #eaf7ef;
}

.availability-status.is-limited {
  color: #8a5d00;
  background: #fff1bd;
}

.availability-status.is-unavailable {
  color: #b42318;
  background: #ffe7e2;
}

.detail-availability {
  max-width: 430px;
}

.meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
}

.meta span {
  display: block;
  padding: 9px 10px;
  border: 1px solid #f0e4c9;
  border-radius: 6px;
  color: #6d604c;
  background: #fffbf3;
  font-size: 13px;
}

.product-live-price {
  display: grid;
  gap: 3px;
  margin: 0;
  min-height: auto;
  padding: 12px 14px 13px;
  border: 0;
  border-radius: 0;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
}

.product-live-price strong {
  color: var(--atlas-black);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 1.55vw, 31px);
  line-height: 1;
}

.product-live-price small {
  color: var(--gold-dark);
  font-weight: 800;
}

.detail-price {
  max-width: 430px;
  margin-top: 22px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
}

.detail-availability {
  border: 1px solid rgba(216, 170, 92, .30);
  border-radius: 8px;
  background: #fffaf0;
}

.status {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
}

.status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.card-actions { display: flex; gap: 10px; flex-wrap: wrap; }

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

.trust {
  padding: 28px;
  border-left: 3px solid var(--gold);
}

.copy-split,
.story-panel,
.verification-copy {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.story-panel,
.verification-copy {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(184, 138, 45, .28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #fff, #fffaf0 64%, #f7efdE);
  box-shadow: 0 18px 48px rgba(31, 26, 19, .08);
}

.copy-stack {
  display: grid;
  gap: 16px;
}

.copy-stack p {
  margin: 0;
  font-size: 17px;
}

.export-delivery {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  background:
    linear-gradient(135deg, #fffaf0 0%, #fff 46%, #f7efe0 100%);
}

.export-delivery-copy {
  max-width: 650px;
}

.export-delivery h2 {
  max-width: 680px;
  color: var(--atlas-black);
  font-size: clamp(38px, 4.4vw, 66px);
  line-height: 1.02;
}

.export-delivery p {
  max-width: 640px;
  color: #6b6258;
  font-size: 18px;
  line-height: 1.7;
}

.export-delivery-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.export-delivery-points span {
  padding: 10px 13px;
  border: 1px solid rgba(184, 138, 45, .28);
  border-radius: 999px;
  color: #8d681d;
  background: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.export-delivery-image {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(184, 138, 45, .22);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(84, 61, 15, .16);
}

.export-delivery-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 250, 240, .02), rgba(20, 16, 10, .18));
  pointer-events: none;
}

.export-delivery-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.export-delivery-logo {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(210px, 34%);
  padding: 14px 18px;
  border: 1px solid rgba(184, 138, 45, .24);
  border-radius: 8px;
  background: rgba(255, 250, 240, .88);
  box-shadow: 0 16px 40px rgba(84, 61, 15, .12);
  backdrop-filter: blur(6px);
}

.export-delivery-logo img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.shipping-partner-strip {
  overflow: hidden;
  padding: 28px clamp(20px, 5vw, 76px);
  border-top: 1px solid #f3ead8;
  border-bottom: 1px solid #f3ead8;
  background: #fff;
}

.shipping-partner-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(34px, 7vw, 120px);
  max-width: 1460px;
  margin: 0 auto;
}

.shipping-partner-logo {
  display: grid;
  place-items: center;
  flex: 1 1 0;
  min-width: 150px;
  height: 98px;
  margin: 0;
}

.shipping-partner-logo img {
  display: block;
  max-width: min(100%, 230px);
  max-height: 82px;
  object-fit: contain;
}

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

.copy-grid article {
  padding: 26px;
  border: 1px solid rgba(184, 138, 45, .24);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(31, 26, 19, .06);
}

.copy-grid span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.copy-grid h3 {
  margin-top: 18px;
}

.copy-grid p {
  margin-bottom: 0;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 46px;
  align-items: center;
  min-height: 680px;
  color: #fffaf0;
  background:
    radial-gradient(circle at 14% 16%, rgba(216, 170, 92, .20), transparent 34%),
    linear-gradient(135deg, #11100d, #211a12 62%, #0d0c0a);
}

.about-copy h1 {
  max-width: 880px;
  color: #fffaf0;
  font-size: clamp(42px, 5vw, 66px);
}

.about-copy p {
  max-width: 720px;
  color: rgba(255, 250, 240, .76);
  font-size: 19px;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-portrait {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(216, 170, 92, .34);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .34);
}

.about-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .52));
}

.about-portrait img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.about-seal {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 152px;
  height: 152px;
  border: 1px solid rgba(216, 170, 92, .72);
  border-radius: 50%;
  color: #fffaf0;
  background: rgba(17, 13, 8, .74);
  text-align: center;
  backdrop-filter: blur(8px);
}

.about-seal strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  letter-spacing: .16em;
}

.about-seal span {
  color: rgba(255, 250, 240, .72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-values {
  background: #fffaf0;
}

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

.about-value-grid article {
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(184, 138, 45, .24);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fff7e5);
}

.about-value-grid span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}

.about-value-grid h3 {
  margin-top: 28px;
}

.about-flow {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 42px;
  color: #fffaf0;
  background:
    linear-gradient(180deg, rgba(18, 16, 13, .96), rgba(32, 26, 18, .96)),
    #12100d;
}

.about-flow h2 {
  color: #fffaf0;
}

.about-flow-list {
  display: grid;
  gap: 12px;
}

.about-flow-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(216, 170, 92, .26);
  border-radius: 8px;
  background: rgba(255, 250, 240, .055);
}

.about-flow-list strong {
  color: #d7aa5f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
}

.about-flow-list p {
  margin: 0;
  color: rgba(255, 250, 240, .74);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 42px;
  align-items: center;
}

.verification-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.qr {
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  gap: 2px;
  width: 210px;
  height: 210px;
  padding: 10px;
  margin: 0 auto 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.qr i { background: #fff; }
.qr i.on { background: #1f1a13; }
.qr canvas,
.qr img { width: 100%; height: 100%; }

.qr.actual {
  display: block;
}

.qr.fallback {
  position: relative;
}

.qr.fallback::after {
  content: "QR library offline";
  position: absolute;
  right: 8px;
  bottom: 6px;
  padding: 3px 5px;
  color: #8d681d;
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 9px;
}

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

.tradingview-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.tradingview-panel h3 {
  margin: 10px 0 18px;
}

.tradingview-widget-container {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.product-prices-panel {
  margin-top: 42px;
}

.product-price-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.product-price-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(140px, .45fr) minmax(140px, .45fr);
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  border-top: 1px solid #edf0f6;
  color: #001a70;
  font-size: 18px;
  font-weight: 700;
}

.product-price-row:first-child {
  border-top: 0;
}

.product-price-row span:nth-child(2),
.product-price-row span:nth-child(3) {
  text-align: right;
}

.product-price-row small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.product-price-row.table-head {
  padding: 14px 26px;
  color: #536486;
  background: #f8f9fb;
  font-size: 14px;
  font-weight: 600;
}

.product-price-loading {
  padding: 24px 26px;
  color: var(--muted);
}

.live-price-status {
  display: none;
}

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; font-weight: 800; }

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.contact-cta-panel {
  position: relative;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 42px;
  overflow: hidden;
  padding: clamp(34px, 5vw, 64px);
  border-color: rgba(216, 170, 92, .34);
  color: #fffaf0;
  background:
    radial-gradient(circle at 16% 8%, rgba(216, 170, 92, .20), transparent 32%),
    linear-gradient(135deg, #15120d, #2a2116 58%, #0f0d09);
  box-shadow: 0 24px 62px rgba(31, 26, 19, .16);
}

.contact-cta-panel::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(216, 170, 92, .24);
  border-radius: 50%;
}

.contact-cta-panel > * {
  position: relative;
  z-index: 1;
}

.contact-cta-panel h2 {
  max-width: 640px;
  color: #fffaf0;
}

.contact-cta-panel p {
  max-width: 620px;
  color: rgba(255, 250, 240, .74);
  font-size: 18px;
}

.contact-methods {
  display: grid;
  gap: 14px;
  align-content: center;
}

.contact-method {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(216, 170, 92, .32);
  border-radius: 8px;
  color: #fffaf0;
  background: rgba(255, 250, 240, .06);
  backdrop-filter: blur(10px);
  transition: transform .16s ease, border-color .16s ease, background-color .16s ease, box-shadow .16s ease;
}

.contact-method:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 170, 92, .78);
  background: rgba(255, 250, 240, .10);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.contact-method:active {
  transform: translateY(1px) scale(.99);
}

.contact-method.primary {
  border-color: rgba(216, 170, 92, .72);
  background: linear-gradient(135deg, rgba(184, 138, 45, .92), rgba(151, 105, 30, .82));
}

.contact-method span {
  color: rgba(255, 250, 240, .70);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-method strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  line-height: 1.05;
}

.contact-method small {
  color: rgba(255, 250, 240, .76);
  font-size: 13px;
}

.inquiry-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: start;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(184, 138, 45, .30);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(31, 26, 19, .08);
}

.inquiry-panel h2 {
  margin-top: 10px;
}

.form-message {
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.form-message.is-error {
  color: var(--red);
}

input, select, textarea {
  width: 100%;
  min-height: 44px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea { min-height: 110px; resize: vertical; }
label { display: grid; gap: 7px; color: #5f5446; font-weight: 700; font-size: 13px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .wide { grid-column: 1 / -1; }

.verification-disclaimer {
  margin-top: 24px;
  border: 1px solid rgba(184, 138, 45, .28);
  border-radius: 8px;
  background: #fffaf0;
}

.verification-disclaimer summary {
  padding: 16px 18px;
  color: var(--gold-dark);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.verification-disclaimer summary::marker {
  color: var(--gold-dark);
}

.verification-disclaimer div {
  display: grid;
  gap: 12px;
  padding: 0 18px 18px;
}

.verification-disclaimer p {
  margin: 0;
  color: #6d604c;
  font-size: 14px;
  line-height: 1.65;
}

.verification-disclaimer a {
  color: var(--gold-dark);
  font-weight: 800;
}

.detail {
  display: grid;
  grid-template-columns: minmax(300px, 520px) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.detail-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-gallery {
  display: grid;
  gap: 14px;
}

.detail-image img { width: 100%; height: 520px; object-fit: cover; }

.detail-gallery .detail-image + .detail-image img {
  height: 240px;
}

.detail h1 {
  font-family: Lato, Inter, system-ui, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
}

.product-about-section {
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.product-about-section h2 {
  color: var(--atlas-black);
  font-family: Inter, system-ui, sans-serif;
  font-size: 28px;
  font-weight: 500;
}

.product-about-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 26px;
  margin-top: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.product-about-item {
  display: grid;
  gap: 8px;
  color: var(--atlas-black);
}

.product-about-item svg {
  width: 34px;
  height: 34px;
  color: var(--atlas-black);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-about-item span {
  font-size: 16px;
}

.product-about-item strong {
  font-size: 17px;
}

.verify-record {
  max-width: 860px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.verify-form {
  margin: 28px 0;
}

.verify-form button {
  align-self: end;
}

.verify-result {
  margin-top: 22px;
}

.verified {
  display: inline-flex;
  align-items: center;
  margin: 18px 0;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--green);
  background: #edf8f2;
  font-weight: 900;
}

.verified.is-error {
  color: var(--red);
  background: #fff1ef;
}

.visit-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(560px, 72vh, 760px);
  overflow: hidden;
  background: #0d0b08;
}

.visit-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .76;
  transform: scale(1.02);
}

.visit-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, .96), rgba(255, 250, 240, .68) 42%, rgba(255, 250, 240, .08) 76%),
    linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .28));
}

.visit-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: clamp(48px, 7vw, 88px) clamp(22px, 6vw, 86px);
}

.visit-hero-copy h1 {
  max-width: 760px;
  color: var(--atlas-black);
}

.visit-hero-copy p {
  max-width: 600px;
  color: #51483d;
  font-size: 20px;
}

.visit-details-section {
  background: #fff;
}

.visit-details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.visit-card {
  min-height: 300px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
}

.visit-card h2 {
  margin-top: 12px;
  font-size: clamp(28px, 3vw, 40px);
}

.visit-card p {
  min-height: 96px;
}

.visit-card.dark {
  color: #fffaf0;
  border-color: #24221d;
  background:
    radial-gradient(circle at 82% 12%, rgba(184, 138, 45, .22), transparent 34%),
    linear-gradient(135deg, #11100d, #020202);
}

.visit-card.dark h2,
.visit-card.dark .text-link {
  color: #fffaf0;
}

.visit-card.dark p,
.visit-card.dark a {
  color: rgba(255, 250, 240, .76);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-weight: 900;
}

.text-link::after {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  transition: width .18s ease;
}

.text-link:hover::after {
  width: 42px;
}

.visit-gallery-section .section-head p {
  max-width: 520px;
}

.visit-gallery {
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 16px;
}

.visit-photo {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #11100d;
}

.visit-photo.large {
  grid-row: 1 / span 2;
  min-height: 520px;
}

.visit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
  transition: transform .7s ease, opacity .7s ease;
}

.visit-photo:hover img {
  opacity: 1;
  transform: scale(1.04);
}

.visit-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 250, 240, .34);
  border-radius: 999px;
  color: #fffaf0;
  background: rgba(10, 9, 7, .72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.visit-process {
  display: grid;
  grid-template-columns: minmax(280px, .65fr) minmax(0, 1.35fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
}

.visit-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.visit-steps article {
  min-height: 240px;
  padding: 28px;
  background: #fffaf0;
}

.visit-steps strong {
  display: block;
  margin-bottom: 22px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}

.visit-steps h3 {
  font-size: 25px;
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
  gap: 28px;
  align-items: end;
}

.admin-hero p {
  max-width: 760px;
}

.admin-login-section {
  display: grid;
  min-height: 62vh;
  place-items: center;
}

.admin-login-card {
  width: min(100%, 560px);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(184, 138, 45, .24);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 0 24px 70px rgba(84, 61, 15, .12);
}

.admin-login-card h1 {
  margin: 8px 0 12px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
}

.admin-login-card .text-link {
  display: inline-block;
  margin-top: 18px;
}

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

.admin-stats span {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(184, 138, 45, .26);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-stats strong {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.admin-section {
  background: #fff;
}

.admin-workspace {
  display: grid;
  gap: 18px;
}

.admin-keybar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
}

.admin-keybar label {
  margin: 0;
}

.admin-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.admin-tabs button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
  transition: color .16s ease, background-color .16s ease, border-color .16s ease;
}

.admin-tabs button:hover,
.admin-tabs button.is-active {
  border-color: rgba(184, 138, 45, .34);
  color: var(--ink);
  background: #fffaf0;
}

.admin-tab-panels {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.admin-tab-panel {
  display: none;
  padding: clamp(20px, 3vw, 34px);
}

.admin-tab-panel.is-active {
  display: block;
}

.admin-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: start;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.admin-panel-head h2 {
  margin: 4px 0 0;
}

.admin-panel-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.admin-record-layout,
.admin-search-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .48fr);
  gap: 24px;
  align-items: start;
}

.compact-form {
  max-width: 860px;
}

.admin-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.admin-list button {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf0;
  text-align: left;
  cursor: pointer;
}

.admin-search {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.admin-search h3 {
  margin: 0;
}

.admin-search textarea {
  min-height: 92px;
}

.admin-search-summary {
  margin-top: 18px;
  padding: 12px;
  border-radius: 6px;
  background: #f7efdE;
  color: var(--atlas-charcoal);
}

.admin-results {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  max-height: 430px;
  overflow: auto;
}

.admin-results button {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf0;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.admin-results button:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 10px 22px rgba(80, 54, 10, .12);
}

.admin-results button:active {
  transform: translateY(1px) scale(.99);
  box-shadow: 0 4px 10px rgba(80, 54, 10, .1);
}

.admin-results button.is-missing {
  border-color: #f0cac6;
  background: #fff5f3;
}

.admin-results small {
  color: var(--muted);
}

.admin-result-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-results .availability-status {
  min-width: 74px;
  padding: 4px 8px;
  font-size: 12px;
}

.admin-inquiries,
.admin-activity {
  display: grid;
  gap: 12px;
  max-height: 420px;
  overflow: auto;
}

.admin-inquiry-card,
.admin-activity-row {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
}

.admin-inquiry-card > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-inquiry-card strong,
.admin-activity-row strong {
  color: var(--ink);
}

.admin-inquiry-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.admin-inquiry-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.admin-inquiry-footer label {
  min-width: 170px;
}

.admin-activity-row span {
  color: var(--muted);
  font-size: 13px;
}

.admin-record-preview {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #e1e8f5;
  border-radius: 8px;
  background: #f8fbff;
}

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

.admin-preview-grid span {
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: 13px;
}

.admin-preview-grid strong {
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.admin-message {
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid #cde9d9;
  border-radius: 6px;
  color: var(--green);
  background: #f1fbf5;
  font-weight: 700;
}

.admin-message.is-error {
  border-color: #f0cac6;
  color: var(--red);
  background: #fff5f3;
}

.footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 34px;
  padding: 52px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fbf7ef;
}

.footer h4 { margin: 0 0 14px; }
.footer a { display: block; margin: 9px 0; color: var(--muted); }
.footer-brand { margin-bottom: 16px; }
.socials { display: flex; flex-wrap: wrap; gap: 8px; }
.socials span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--gold-dark); background: #fff; font-size: 12px; }

@media (max-width: 980px) {
  .site-header { padding-top: 18px; }
  .header-tools { grid-template-columns: 1fr; margin-bottom: 22px; }
  .brand { order: -1; justify-content: start; }
  .account-tools { justify-content: start; }
  .header-action { min-height: 54px; }
  .nav { justify-content: start; }
  .contact-pill { justify-self: start; }
  .atlas-commerce-hero, .atlas-refinery-story, .home-showcase, .hero, .about-hero, .about-flow, .split, .detail, .contact-panel, .copy-split, .export-delivery, .story-panel, .verification-copy, .visit-details-grid, .visit-process, .admin-layout, .admin-hero, .admin-keybar, .admin-record-layout, .admin-search-grid, .account-layout, .wallet-education-panel, .wallet-investment-card, .inquiry-panel, .certificate-body { grid-template-columns: 1fr; }
  .account-layout .account-card:first-child,
  .account-layout .account-card:nth-child(2),
  .account-summary {
    grid-column: auto;
    grid-row: auto;
  }
  .account-summary {
    position: static;
  }
  .atlas-commerce-hero { grid-template-rows: none; }
  .atlas-hero-tile { min-height: 520px; }
  .atlas-hero-main { grid-row: auto; min-height: 520px; }
  .atlas-category-rail { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .visit-gallery { grid-template-columns: 1fr; grid-template-rows: none; }
  .visit-photo.large { grid-row: auto; min-height: 360px; }
  .visit-steps { grid-template-columns: 1fr; }
  .refinery-collage { min-height: 390px; }
  .certificate-header { grid-template-columns: 1fr; }
  .admin-panel-head { display: grid; }
  .main-promo { min-height: 560px; }
  .promo-copy { padding: 72px 32px 32px; }
  .grid, .trust-grid, .about-value-grid, .footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid.featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .luxury-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .price-bar { flex-direction: column; gap: 5px; align-items: center; text-align: center; }
  .rate-update { margin-left: 0; padding-right: 0; }
  .search-box { min-height: 52px; }
  .atlas-commerce-hero {
    padding-top: 16px;
  }
  .atlas-hero-tile {
    min-height: 520px;
  }
  .atlas-hero-main { min-height: 500px; }
  .atlas-hero-main > div { padding: 30px; }
  .atlas-hero-main h1 { font-size: 40px; }
  .atlas-hero-dots { bottom: 30px; }
  .atlas-experience {
    padding-top: 44px;
    padding-bottom: 48px;
  }
  .atlas-experience h2 {
    font-size: 34px;
  }
  .atlas-experience p {
    font-size: 17px;
  }
  .atlas-credential-strip {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .atlas-credential-strip span {
    white-space: normal;
  }
  .atlas-category-rail { grid-template-columns: 1fr; padding-bottom: 24px; }
  .atlas-category-tile { min-height: auto; }
  .export-delivery h2 { font-size: 38px; }
  .export-delivery-image,
  .export-delivery-image img {
    min-height: 320px;
  }
  .export-delivery-logo {
    left: 18px;
    top: 18px;
    width: min(170px, 46%);
    padding: 10px 12px;
  }
  .shipping-partner-strip {
    overflow-x: auto;
    padding: 22px 18px;
  }
  .shipping-partner-track {
    justify-content: flex-start;
    gap: 34px;
    width: max-content;
  }
  .shipping-partner-logo {
    flex-basis: 180px;
    height: 82px;
    min-width: 180px;
  }
  .shipping-partner-logo img {
    max-height: 68px;
  }
  .visit-hero { min-height: 560px; }
  .visit-hero::before { background: linear-gradient(180deg, rgba(255, 250, 240, .94), rgba(255, 250, 240, .72) 58%, rgba(255, 250, 240, .16)); }
  .visit-hero-copy { padding: 42px 24px; align-self: start; }
  .visit-hero-copy h1 { font-size: 40px; }
  .visit-hero-copy p { font-size: 18px; }
  .visit-card { min-height: auto; }
  .visit-card p { min-height: auto; }
  .visit-photo,
  .visit-photo.large { min-height: 290px; }
  .atlas-refinery-story { min-height: auto; }
  .refinery-collage { min-height: 520px; }
  .collage-main { right: 0; top: 0; width: 82%; height: 210px; }
  .collage-float.one { left: 0; top: 190px; width: 52%; height: 180px; }
  .collage-float.two { right: 0; bottom: 0; width: 62%; height: 170px; }
  .collage-float.three { left: 16%; bottom: 116px; width: 62%; height: 150px; }
  .account-tools { display: grid; grid-template-columns: 1fr; }
  .header-action { justify-content: start; width: 100%; }
  .auth-panel { padding: 26px; }
  .auth-panel h2 { font-size: 34px; }
  .admin-stats { grid-template-columns: 1fr; }
  .admin-tabs { gap: 6px; }
  .admin-tabs button { min-height: 40px; padding: 9px 11px; font-size: 13px; }
  .wallet-value-grid { grid-template-columns: 1fr; gap: 6px; }
  .wallet-value-grid span { padding-bottom: 0; }
  .home-showcase { padding-top: 22px; }
  .main-promo { min-height: 520px; }
  .hero-slide::before { background: linear-gradient(180deg, rgba(8, 8, 7, .82), rgba(20, 16, 10, .62)); }
  .promo-copy h1 { font-size: 36px; }
  .promo-copy p { font-size: 18px; }
  .side-promo { min-height: 250px; }
  .hero { min-height: auto; padding-top: 42px; }
  .hero-image img, .detail-image img { height: 340px; }
  .hero-stats, .grid, .trust-grid, .copy-grid, .tradingview-grid, .account-benefits, .wallet-benefit-grid, .wallet-steps, .form-grid, .footer { grid-template-columns: 1fr; }
  .product-card,
  .product-card img {
    min-height: 430px;
  }
  .product-body {
    padding: 24px;
    transform: translateY(0);
  }
  .product-card-meta,
  .about-value-grid, .about-flow-list div { grid-template-columns: 1fr; }
  .about-portrait, .about-portrait img { min-height: 360px; }
  .about-seal { width: 126px; height: 126px; }
  .grid.featured-grid, .luxury-strip { grid-template-columns: 1fr; }
  .refinery-marquee-track { gap: 46px; padding: 0 34px; }
  .refinery-logo-card { flex-basis: 160px; height: 78px; }
  .refinery-logo-card img { max-height: 64px; }
  .product-about-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .certificate-grid { grid-template-columns: 1fr; }
  .product-price-row { grid-template-columns: 1fr; gap: 8px; }
  .product-price-row span:nth-child(2), .product-price-row span:nth-child(3) { text-align: left; }
  .section-head { display: block; }
  .verify-record { padding: 24px; }
}

@media print {
  .price-bar,
  .site-header,
  .footer,
  .auth-modal,
  .card-actions,
  .claim-panel,
  .contact-panel,
  .refinery-marquee {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .page {
    overflow: visible;
  }

  .section {
    padding: 18px;
  }

  .wallet-hero,
  .certificate-shell {
    color: var(--ink);
    background: #fff;
  }

  .wallet-hero h1,
  .wallet-hero p {
    color: var(--ink);
  }

  .wallet-investment-card,
  .wallet-value-panel,
  .certificate-card {
    break-inside: avoid;
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .refinery-marquee-track {
    animation-duration: 120s;
  }
}
