/* Canonical customer-facing Places We Keep shell.
   Loaded last on every customer page so legacy gallery globals cannot leak into retail surfaces. */
body.customer-light {
  --customer-paper: #fffefb;
  --customer-surface: #ffffff;
  --customer-soft: #f6f2ea;
  --customer-ink: #10283b;
  --customer-ink-strong: #071827;
  --customer-muted: #66747d;
  --customer-accent: #c96c52;
  --customer-line: rgba(16, 40, 59, .14);
  --customer-shadow: 0 18px 48px rgba(7, 24, 39, .10);
  --customer-shell: 1220px;
  --customer-control-height: 48px;

  /* Bridge legacy page tokens into the one retail theme. */
  --ink: var(--customer-ink);
  --ink-soft: var(--customer-muted);
  --cream: var(--customer-paper);
  --paper: var(--customer-surface);
  --rose: var(--customer-accent);
  --rose-dark: #a95743;
  --gold: #b99354;
  --line: var(--customer-line);
  --shadow: var(--customer-shadow);
  --sf-ink: var(--customer-ink);
  --sf-muted: var(--customer-muted);
  --sf-paper: var(--customer-paper);
  --sf-surface: var(--customer-surface);
  --sf-blue: var(--customer-ink-strong);
  --sf-coral: var(--customer-accent);
  --sf-line: var(--customer-line);
  --sf-shadow: var(--customer-shadow);

  margin: 0;
  overflow-x: clip;
  background: var(--customer-paper) !important;
  color: var(--customer-ink) !important;
  font-family: 'DM Sans', Arial, sans-serif;
}

body.customer-light main { background: var(--customer-paper); }
body.customer-light .section-shell { width: min(var(--customer-shell), calc(100% - 56px)); }
body.customer-light h1,
body.customer-light h2,
body.customer-light h3,
body.customer-light .rd-title,
body.customer-light .sf-checkout-heading h1,
body.customer-light .sf-product-copy h1,
body.customer-light .sf-collection-hero h1,
body.customer-light .page-hero h1 {
  color: var(--customer-ink-strong);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: -.035em;
  overflow: visible;
}
/* Match or exceed legacy catalog specificity so product/detail headings do not fall back to the old sans treatment. */
body.customer-light.storefront-catalog .sf-product-body h3,
body.customer-light.storefront-catalog .sf-product-copy h1,
body.customer-light .sf-detail-block h2,
body.customer-light .sf-checkout-section-head h2,
body.customer-light .sf-cart-item h2,
body.customer-light .rd-path-card-copy h2,
body.customer-light .rd-process-item h3,
body.customer-light .rd-how-card h3 {
  color: var(--customer-ink-strong);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: -.025em;
}
body.customer-light h1 em,
body.customer-light h2 em,
body.customer-light h3 em,
body.customer-light .rd-title em {
  color: var(--customer-accent);
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
}
body.customer-light p,
body.customer-light li,
body.customer-light label,
body.customer-light input,
body.customer-light select,
body.customer-light textarea,
body.customer-light button { font-family: 'DM Sans', Arial, sans-serif; }
body.customer-light .eyebrow,
body.customer-light .rd-kicker,
body.customer-light .rd-eyebrow,
body.customer-light .sf-breadcrumb,
body.customer-light .sf-product-kicker,
body.customer-light .sf-checkout-section-head > small { font-family: 'DM Mono', monospace; }

body.customer-light .customer-announcement,
body.customer-light .announcement.customer-announcement {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 8px 20px;
  background: var(--customer-ink-strong) !important;
  color: rgba(255,255,255,.82) !important;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: .02em;
}
body.customer-light .customer-announcement a { color: #f2b19d !important; }
body.customer-light .customer-announcement a:hover,
body.customer-light .customer-announcement a:focus-visible { color: #fff !important; }

body.customer-light .site-header.customer-header,
body.customer-light .site-header {
  position: relative;
  z-index: 30;
  width: min(var(--customer-shell), calc(100% - 56px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  background: rgba(255,254,251,.98) !important;
  border-bottom: 1px solid var(--customer-line);
}
body.customer-light .wordmark { min-width: max-content; color: var(--customer-ink-strong) !important; }
body.customer-light .wordmark strong { color: var(--customer-ink-strong) !important; font-size: 16px; letter-spacing: -.02em; }
body.customer-light .wordmark small { color: var(--customer-muted) !important; }
body.customer-light .wordmark-mark { color: var(--customer-accent) !important; border-color: rgba(201,108,82,.4) !important; }
body.customer-light .site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--customer-ink);
  font-size: 11px;
  white-space: nowrap;
}
body.customer-light .site-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--customer-ink) !important;
  opacity: .76;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
body.customer-light .site-nav a:not(.nav-cta):after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 1px;
  background: var(--customer-accent);
  transition: right .18s ease;
}
body.customer-light .site-nav a:not(.nav-cta):hover,
body.customer-light .site-nav a:not(.nav-cta):focus-visible,
body.customer-light .site-nav a[aria-current='page'] { opacity: 1; }
body.customer-light .site-nav a:not(.nav-cta):hover:after,
body.customer-light .site-nav a:not(.nav-cta):focus-visible:after,
body.customer-light .site-nav a[aria-current='page']:not(.nav-cta):after { right: 0; }
body.customer-light .nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px !important;
  background: var(--customer-accent) !important;
  color: #fff !important;
  opacity: 1 !important;
}
body.customer-light .nav-cta:hover,
body.customer-light .nav-cta:focus-visible {
  background: #a95743 !important;
  color: #fff !important;
}
body.customer-light .menu-toggle {
  min-height: 40px;
  border: 1px solid var(--customer-line);
  background: transparent;
  color: var(--customer-ink);
}

body.customer-light .button,
body.customer-light .rd-button,
body.customer-light .sf-action,
body.customer-light button.button {
  min-height: var(--customer-control-height);
  border-radius: 0;
  border: 1px solid var(--customer-ink-strong);
  background: var(--customer-ink-strong);
  color: #fff;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .01em;
}
body.customer-light .button:hover,
body.customer-light .rd-button:hover,
body.customer-light .sf-action:hover { background: #17384e; color: #fff; }
body.customer-light .button-light,
body.customer-light .rd-button--light,
body.customer-light .sf-secondary-action {
  border-color: var(--customer-line);
  background: transparent !important;
  color: var(--customer-ink-strong) !important;
}
body.customer-light .button-light:hover,
body.customer-light .rd-button--light:hover,
body.customer-light .sf-secondary-action:hover { border-color: var(--customer-ink-strong); }
body.customer-light a:focus-visible,
body.customer-light button:focus-visible,
body.customer-light input:focus-visible,
body.customer-light select:focus-visible,
body.customer-light textarea:focus-visible,
body.customer-light [tabindex]:focus-visible {
  outline: 2px solid var(--customer-accent) !important;
  outline-offset: 3px;
}

/* Customer retail pages stay light even if shared redesign CSS contains legacy dark feature blocks. */
body.customer-light .rd-section--ink,
body.customer-light .sf-section--blue {
  background: var(--customer-soft) !important;
  color: var(--customer-ink) !important;
}
body.customer-light .rd-section--ink h1,
body.customer-light .rd-section--ink h2,
body.customer-light .rd-section--ink h3,
body.customer-light .rd-section--ink .rd-title,
body.customer-light .sf-section--blue h1,
body.customer-light .sf-section--blue h2,
body.customer-light .sf-section--blue h3 { color: var(--customer-ink-strong) !important; }
body.customer-light .rd-section--ink p,
body.customer-light .rd-section--ink .rd-copy,
body.customer-light .sf-section--blue p { color: var(--customer-muted) !important; opacity: 1 !important; }
body.customer-light .rd-section--ink .rd-step,
body.customer-light .rd-section--ink .rd-process-item { border-color: var(--customer-line) !important; }
body.customer-light .rd-section--ink .rd-step strong,
body.customer-light .rd-section--ink .rd-step span,
body.customer-light .rd-section--ink .rd-process-item strong,
body.customer-light .rd-section--ink .rd-process-item span { color: var(--customer-ink) !important; }
body.customer-light .rd-section--ink .rd-step small,
body.customer-light .rd-section--ink .rd-eyebrow { color: var(--customer-accent) !important; }

body.customer-light .site-footer,
body.customer-light .rd-support-footer,
body.customer-light .customer-footer {
  margin-top: 0;
  padding: 0;
  background: var(--customer-ink-strong) !important;
  color: rgba(255,255,255,.76) !important;
}
body.customer-light .customer-footer .section-shell { width: min(var(--customer-shell), calc(100% - 56px)); }
body.customer-light .customer-footer-top {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: end;
  padding: 52px 0 38px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
body.customer-light .customer-footer h2,
body.customer-light .customer-footer h3,
body.customer-light .customer-footer .wordmark strong { color: #fff !important; }
body.customer-light .customer-footer h2 { margin: 0; font-size: clamp(32px, 4vw, 48px); }
body.customer-light .customer-footer p { max-width: 620px; color: rgba(255,255,255,.68) !important; font-size: 13px; line-height: 1.65; }
body.customer-light .customer-footer-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 28px; }
body.customer-light .customer-footer-nav a { color: rgba(255,255,255,.76) !important; font-size: 12px; }
body.customer-light .customer-footer-nav a:hover,
body.customer-light .customer-footer-nav a:focus-visible { color: #fff !important; }
body.customer-light .customer-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0 22px;
  color: rgba(255,255,255,.48);
  font-size: 10px;
}

@media (max-width: 1120px) {
  body.customer-light .site-header { grid-template-columns: auto auto; justify-content: space-between; }
  body.customer-light .menu-toggle { display: inline-flex; }
  body.customer-light .site-nav {
    position: absolute;
    top: 68px;
    right: 0;
    z-index: 50;
    display: none;
    min-width: 290px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--customer-surface);
    border: 1px solid var(--customer-line);
    box-shadow: var(--customer-shadow);
    white-space: normal;
  }
  body.customer-light .site-nav.is-open { display: flex; }
  body.customer-light .site-nav a { padding: 10px 9px; }
  body.customer-light .site-nav a:after { display: none; }
  body.customer-light .nav-cta { margin-top: 6px; justify-content: center; }
}

@media (max-width: 760px) {
  body.customer-light .section-shell,
  body.customer-light .site-header,
  body.customer-light .customer-footer .section-shell { width: min(100% - 30px, 620px); }
  body.customer-light .customer-announcement { justify-content: flex-start; overflow-x: auto; white-space: nowrap; }
  body.customer-light .customer-footer-top { grid-template-columns: 1fr; gap: 28px; padding-top: 42px; }
  body.customer-light .customer-footer-bottom { flex-direction: column; gap: 6px; }
}

@media (max-width: 480px) {
  body.customer-light .customer-footer-nav { grid-template-columns: 1fr; }
  body.customer-light .site-nav { min-width: min(290px, calc(100vw - 30px)); }
}

@media (prefers-reduced-motion: reduce) {
  body.customer-light *,
  body.customer-light *:before,
  body.customer-light *:after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
