@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/space-grotesk-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/space-grotesk-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/*
 * Design Direction: Option 2 — "Editorial Premium" (ivory/black/brass).
 * Unlike Option 1 (uniformly dark), this direction is light by default and
 * alternates in specific full-width dark bands (hero's right panel, the
 * Order & Shipping section, the footer, and the nav logo chip). Rather than
 * hardcoding a light/dark variant of every component, the tokens below are
 * scoped: :root defines the light (default) values, and .on-dark redefines
 * the same variable names for anything nested inside it. Every existing
 * component that already reads var(--ink)/var(--muted)/var(--border)/
 * var(--card)/var(--surface)/var(--accent-light) therefore adapts correctly
 * in either context with no per-component dark variant needed.
 */
:root {
  --bg: #F7F4EE;
  --surface: #FFFFFF;
  --card: #FFFFFF;
  --ink: #141312;
  --accent: #B18A4A;
  --accent-light: #8C6C37;
  --muted: #78756F;
  --border: #DED8CC;

  --black: #141312;
  --btn-fill: #141312;
  --btn-fill-text: #F7F4EE;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --sp-sm: 12px;
  --sp-md: 24px;
  --sp-lg: 64px;
  --sp-xl: 112px;

  --radius-sm: 2px;
  --radius-md: 4px;

  --container: 1240px;
}

/* Scoping wrapper for the deliberate dark bands within an otherwise light
   page (hero right panel, Order & Shipping, footer, nav logo chip). */
.on-dark {
  --bg: #141312;
  --surface: #1A1816;
  --card: #201D1A;
  --ink: #F7F4EE;
  --accent-light: #DAB87A;
  --muted: #A8A39B;
  --border: #37322C;
  --btn-fill: #F7F4EE;
  --btn-fill-text: #141312;
  background: var(--bg);
  color: var(--ink);
}

/* Warm cream palette scoped to the homepage hero only — everything below it
   (and every other page) keeps the site's standard ivory/black/brass tokens. */
.hero-split {
  --bg: #F2E7D5;
  --surface: #F7EFE1;
  --card: #FFFDF8;
  --ink: #241C12;
  --accent: #B8863E;
  --accent-light: #8F6428;
  --muted: #7A6E5C;
  --border: #E3D5BD;
  --btn-fill: #1C140C;
  --btn-fill-text: #F2E7D5;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; height: 100%; }
body {
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
/* Sticky footer: on a short page (e.g. About), #content grows to fill any
   leftover viewport height so the footer sits flush at the bottom instead
   of leaving a gap of bare page background below it. */
#content { flex: 1 0 auto; }
.site-footer { flex-shrink: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
:where(h1,h2,h3,h4) {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 var(--sp-sm);
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 4vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 var(--sp-sm); color: var(--muted); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 96px);
}
.container--wide { max-width: 1600px; }

@media (max-width: 600px) {
  .section { padding-top: var(--sp-lg); padding-bottom: var(--sp-lg); }
}
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: var(--sp-sm);
}
.section { padding-top: 72px; padding-bottom: 72px; }
.section-surface { background: var(--surface); }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-lg);
}
.section-head p { margin: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn-primary { background: var(--btn-fill); color: var(--btn-fill-text); }
.btn-primary:hover { background: var(--accent); color: var(--btn-fill-text); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--btn-fill-text); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-3px); border-color: var(--accent); }

.skip-link {
  position: absolute;
  left: -9999px;
  background: var(--accent);
  color: #14110D;
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: var(--sp-md); top: var(--sp-md); }

/* Contact page: "reach us this way" cards */
.contact-intro { max-width: 560px; margin-bottom: var(--sp-lg); }
.contact-map {
  margin-bottom: var(--sp-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-map iframe { display: block; width: 100%; height: 360px; border: 0; }
.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}
.contact-channel-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}
.contact-channel-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.contact-channel-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent-light);
  font-size: 1.4rem;
}
.contact-channel-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.contact-channel-card p { font-size: 0.88rem; margin-bottom: var(--sp-sm); }
.contact-channel-card__meta {
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: var(--sp-md);
  line-height: 1.6;
}
.contact-channel-card .btn { width: 100%; margin-top: auto; }
.contact-channel-card__icon--logo {
  width: auto;
  height: 56px;
  border: none;
  background: transparent;
  padding: 0 4px;
}
.contact-channel-card__icon--logo img {
  max-height: 100%;
  width: auto;
  display: block;
}

@media (max-width: 900px) {
  .contact-channels { grid-template-columns: 1fr; }
}

/* About page: company profile */
.profile-intro { max-width: none; }
.profile-office {
  margin-bottom: var(--sp-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.profile-office img { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; }
.profile-office__caption {
  padding: var(--sp-sm) var(--sp-md);
  margin: 0;
  background: var(--card);
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}
.profile-heading { margin-top: var(--sp-lg); }
.profile-brands, .profile-features { display: grid; gap: var(--sp-md); margin-bottom: var(--sp-sm); }
.profile-brands { grid-template-columns: repeat(3, 1fr); }
.profile-features { grid-template-columns: 1fr 1fr; align-items: stretch; }
.profile-feature { display: flex; flex-direction: column; }
.profile-brand-card, .profile-feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-lg) var(--sp-md);
}
.profile-brand-card__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: var(--sp-sm);
}
.profile-brand-card h4, .profile-feature h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.profile-brand-card p, .profile-feature p { font-size: 0.9rem; margin-bottom: 0; }
.profile-leadtimes { display: flex; gap: var(--sp-md); margin-bottom: var(--sp-md); }
.profile-leadtime {
  flex: 1;
  border-left: 2px solid var(--accent);
  padding-left: var(--sp-sm);
}
.profile-leadtime strong { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); }
.profile-leadtime span { display: block; font-size: 0.8rem; color: var(--muted); }
.profile-commitment {
  padding: var(--sp-lg) var(--sp-md);
  border-radius: var(--radius-md);
  margin-top: var(--sp-lg);
}
.profile-commitment h3 { margin-bottom: var(--sp-sm); }
.profile-commitment p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .profile-brands { grid-template-columns: 1fr; }
  .profile-features { grid-template-columns: 1fr; }
}

/* Warranty / Shipping & Returns policy pages */
.policy-list { margin: 0 0 var(--sp-md); }
.policy-list li { position: relative; padding-left: 26px; margin-bottom: 10px; font-size: 0.92rem; color: var(--ink); }
.policy-list li::before { position: absolute; left: 0; top: 1px; font-weight: 700; }
.policy-list--yes li::before { content: '\2713'; color: var(--accent-light); }
.policy-list--no li::before { content: '\2715'; color: var(--muted); }
.policy-note {
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
  padding: var(--sp-md);
  font-size: 0.9rem;
  margin-bottom: var(--sp-md);
}
.policy-note p:last-child { margin-bottom: 0; }
.policy-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-md); margin-bottom: var(--sp-md); }
.policy-step { padding: var(--sp-md); border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--card); }
.policy-step__num { font-family: var(--font-display); font-size: 1.6rem; color: var(--accent); margin-bottom: var(--sp-sm); }
.policy-step h4 { margin-bottom: 8px; font-family: var(--font-display); color: var(--ink); }
.policy-step p { margin: 0; font-size: 0.9rem; }
@media (max-width: 900px) {
  .policy-steps { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}