/* Reynolds Antique House — shared chrome
   Visual structure restored from archive Newel header/nav/footer.
   Commerce/tracking removed. Local search only. */

@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Jost"), local("Segoe UI");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Cormorant Garamond"), local("Palatino Linotype"), local("Georgia");
}

:root {
  --warm-white-glb-hdr: #fdfcfa;
  --ink-glb-hdr: #1a1614;
  --ink-glb-hdr-mid: #3a3530;
  --gold-glb-hdr: #c4a484;
  --gold-glb-hdr-lt: #d4b896;
  --crimson-glb-hdr: #9f5c49;
  --rule-glb-hdr: #e5dfd6;
  --page-gutter-glb-hdr: clamp(16px, 4vw, 48px);
  --rah-font-display: "Cormorant Garamond", "Palatino Linotype", Georgia, serif;
  --rah-font-label: "Jost", "Segoe UI", system-ui, sans-serif;
  --rah-font-body: "Jost", "Segoe UI", system-ui, sans-serif;
  --rah-max: 1280px;
  --rah-paper: var(--warm-white-glb-hdr);
  --rah-ink: var(--ink-glb-hdr);
  --rah-gold: var(--gold-glb-hdr);
  --rah-gold-dark: var(--crimson-glb-hdr);
  --rah-muted: #6b5e52;
  --serif2: "Cormorant Garamond", Georgia, serif;
  --sans2: "Jost", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--rah-font-body);
  color: var(--rah-ink);
  background: var(--rah-paper);
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--rah-gold-dark); }

.rah-skip { position: absolute; left: -9999px; top: 0; }
.rah-skip:focus {
  left: 1rem; top: 1rem; z-index: 2000;
  background: #fff; padding: .5rem 1rem;
}

/* ── UTILITY BAR ── */
.utility-bar {
  background: #1a1614;
  color: #d7cfc4;
  font-family: var(--rah-font-label);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.utility-bar__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px var(--page-gutter-glb-hdr);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.utility-bar__left {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
}
.utility-bar__left svg { width: 13px; height: 13px; }
.utility-bar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.utility-bar__right a { color: #d7cfc4; }
.utility-bar__right a:hover { color: var(--gold-glb-hdr-lt); }
.utility-bar__divider {
  width: 1px;
  height: 10px;
  background: rgba(255,255,255,0.2);
}

/* ── HEADER ── */
.header {
  background: var(--warm-white-glb-hdr);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header__inner {
  width: 100%;
  padding: 0 var(--page-gutter-glb-hdr);
  height: 132px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.header__search {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--rule-glb-hdr);
  height: 44px;
  padding: 0 14px;
  cursor: pointer;
  font-family: var(--rah-font-label);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-glb-hdr-mid);
}
.menu-toggle__line {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  margin: 3px 0;
}

#product-search.search-input-style {
  display: flex;
  align-items: center;
  border: 1px solid var(--rule-glb-hdr);
  background: #fdfcfa;
  height: 44px;
  min-width: 200px;
  max-width: 280px;
}
#product-search .input-group {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
}
#product-search .search-overlay__input,
#product-search input {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none;
  flex: 1;
  padding: 0 12px;
  font-family: var(--rah-font-label);
  font-size: 14px;
  min-width: 0;
}
#product-search .input-group-addon,
#product-search .search-submit {
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  padding: 0 10px;
  cursor: pointer;
}
#product-search img { width: 14px; height: 14px; }

.logo {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo__image {
  width: 220px;
  height: auto;
  max-height: 96px;
  object-fit: contain;
  margin: 0 auto;
}

.header__icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-height: 44px;
}
.icon-btn--spacer {
  display: inline-block;
  width: 44px;
  height: 44px;
}
.header__gold-rule {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-glb-hdr), transparent);
}

/* ── MAIN NAV ── */
.mainnav {
  background: var(--warm-white-glb-hdr);
  border-bottom: 1px solid var(--rule-glb-hdr);
}
.mainnav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--page-gutter-glb-hdr);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
  position: relative;
}
.nav-item { position: relative; }
.nav-item__trigger {
  display: inline-block;
  padding: 14px 12px;
  font-family: var(--rah-font-label);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-glb-hdr-mid);
  border-bottom: 2px solid transparent;
}
.nav-item__trigger:hover,
.nav-item__trigger[aria-current="page"] {
  color: var(--crimson-glb-hdr);
  border-bottom-color: var(--gold-glb-hdr);
}
.mega {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--rule-glb-hdr);
  box-shadow: 0 12px 28px rgba(26,22,20,0.08);
  padding: 1rem 1.25rem;
  z-index: 1200;
}
.nav-item:hover > .mega { display: block; }
.mega__links { list-style: none; margin: 0; padding: 0; }
.mega__links a {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

/* ── MOBILE FLYOUT ── */
.menu-flyout { display: none; }
.menu-flyout.is-open { display: block; }
.menu-flyout__backdrop {
  position: fixed; inset: 0;
  background: rgba(26, 22, 20, 0.45);
  z-index: 1100;
}
.menu-flyout__panel {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: min(360px, 92vw);
  background: #1a1614;
  color: #d7cfc4;
  z-index: 1101;
  overflow: auto;
  padding: 0 0 2rem;
}
.menu-flyout__header {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; padding: 0 18px;
  border-bottom: 1px solid #35312d;
}
.menu-flyout__title {
  font-family: var(--rah-font-display);
  font-size: 1.15rem;
  color: #fff;
}
.menu-flyout__close {
  background: none; border: 0; color: #fff; font-size: 1.5rem; cursor: pointer; padding: 8px;
}
.menu-flyout__nav { display: flex; flex-direction: column; padding: 1rem 0; }
.menu-flyout__nav a {
  padding: 14px 20px;
  border-bottom: 1px solid #35312d;
  font-family: var(--rah-font-label);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d7cfc4;
}
.menu-flyout__note {
  margin: 1.25rem 20px 0;
  font-size: 0.85rem;
  color: #8a8076;
  font-style: italic;
}

@media (max-width: 899px) {
  .mainnav { display: none; }
  .menu-toggle { display: inline-flex; }
  #product-search.search-input-style { min-width: 140px; max-width: 180px; }
  .header__icons .icon-btn--spacer { display: none; }
  .header__inner { height: 96px; }
  .logo__image { width: 160px; }
  .utility-bar__right { display: none; }
  .menu-flyout { display: block; visibility: hidden; pointer-events: none; }
  .menu-flyout.is-open { visibility: visible; pointer-events: auto; }
}

/* ── FOOTER ── */
#site-footer,
.rah-site-footer {
  background: #1a1614;
  color: #d7cfc4;
  margin-top: 3rem;
  padding: 3rem var(--page-gutter-glb-hdr) 2rem;
}
.rah-footer-inner {
  max-width: var(--rah-max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .rah-footer-inner { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 1rem;
  filter: brightness(1.05);
}
.rah-footer-inner h4 {
  font-family: var(--rah-font-label);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-glb-hdr);
  margin: 0 0 1rem;
}
.rah-footer-inner ul { list-style: none; padding: 0; margin: 0; }
.rah-footer-inner li { margin-bottom: 0.5rem; }
.rah-footer-inner a { color: #d7cfc4; font-size: 0.9rem; }
.rah-footer-inner a:hover { color: #fff; }
.rah-footer-base {
  max-width: var(--rah-max);
  margin: 2.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.75rem;
  color: #8a8076;
  text-align: center;
}

/* ── CATALOG / PDP (kept for products pages) ── */
.rah-page { max-width: var(--rah-max); margin: 0 auto; padding: 2rem var(--page-gutter-glb-hdr) 4rem; }
.rah-section-title {
  font-family: var(--rah-font-display);
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  text-align: center;
}
.rah-section-lead { color: var(--rah-muted); margin: 0 auto 2rem; max-width: 40rem; text-align: center; }
.rah-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.rah-card-link { display: block; color: inherit; text-align: center; }
.rah-card-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #e8e0d6;
  margin-bottom: 0.75rem;
}
.rah-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.rah-card-link:hover .rah-card-img img { transform: scale(1.04); }
.rah-card-title {
  font-family: var(--rah-font-display);
  font-size: 1.1rem;
  margin: 0 0 0.25rem;
}
.rah-card-meta { font-size: 0.8rem; color: var(--rah-muted); }
.rah-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; justify-content: center; }
.rah-filters button {
  border: 1px solid rgba(0,0,0,0.15);
  background: transparent;
  padding: 0.4rem 0.8rem;
  font-family: var(--rah-font-label);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.rah-filters button.is-active {
  background: var(--ink-glb-hdr);
  color: #fff;
  border-color: var(--ink-glb-hdr);
}
.rah-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 0.85rem 1.5rem;
  background: var(--crimson-glb-hdr);
  color: #fff !important;
  font-family: var(--rah-font-label);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.rah-pdp { display: grid; gap: 2rem; }
@media (min-width: 900px) {
  .rah-pdp { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
}
.rah-gallery-main {
  background: #efe8df;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.rah-gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.rah-thumbs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.rah-thumbs button {
  border: 1px solid transparent;
  padding: 0;
  background: #efe8df;
  cursor: pointer;
  width: 72px; height: 72px;
  overflow: hidden;
}
.rah-thumbs button.is-active { border-color: var(--crimson-glb-hdr); }
.rah-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.rah-pdp-title {
  font-family: var(--rah-font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  margin: 0 0 0.75rem;
}
.rah-pdp-price { font-size: 1.15rem; margin: 0 0 1rem; color: var(--crimson-glb-hdr); }
.rah-pdp-sku { font-size: 0.85rem; color: var(--rah-muted); margin-bottom: 1rem; }
.rah-specs { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.rah-specs li {
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 0.95rem;
}
.rah-specs strong {
  display: inline-block;
  min-width: 7rem;
  color: var(--rah-muted);
  font-weight: 500;
}
.rah-prose { max-width: 42rem; margin: 0 auto; }
.rah-prose h1, .rah-prose h2 {
  font-family: var(--rah-font-display);
  font-weight: 500;
  text-align: center;
}
.rah-contact-form label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 1rem 0 0.35rem;
}
.rah-contact-form input,
.rah-contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  font: inherit;
}
.rah-related { margin-top: 4rem; }
.rah-estate-note {
  max-width: var(--rah-max);
  margin: 0 auto;
  padding: 1rem var(--page-gutter-glb-hdr);
  font-size: 0.95rem;
  color: var(--rah-muted);
  text-align: center;
}

/* Featured restore on home */
.rah-featured-restore .rah-card-link { text-align: center; }
