/* ===========================================================
   HOMEPAGE SECTIONS
   =========================================================== */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.55;
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(14,13,16,0.55) 0%, rgba(14,13,16,0.92) 65%),
    linear-gradient(180deg, rgba(14,13,16,0.3) 0%, var(--ink) 96%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: var(--space-9) 0;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--brass);
}

.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-5);
}
.hero h1 em {
  font-style: italic;
  color: var(--brass-bright);
}

.hero p.lede {
  font-size: 18px;
  color: var(--bone-dim);
  max-width: 480px;
  margin-bottom: var(--space-6);
}

.hero-ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all 0.25s var(--ease-soft);
  white-space: nowrap;
}

.btn-primary {
  background: var(--brass);
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--brass-bright);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: var(--line-bright);
  color: var(--bone);
}
.btn-ghost:hover {
  border-color: var(--brass);
  background: rgba(184,134,75,0.08);
}

.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ---- Section scaffolding ---- */
.section {
  padding: var(--space-9) 0;
}
.section-tight { padding: var(--space-7) 0; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  margin-top: var(--space-2);
}

.section-head .view-all {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding-bottom: 6px;
}
.section-head .view-all svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.25s var(--ease-out);
}
.section-head .view-all:hover svg { transform: translateX(3px); }

/* ---- Category showcase ---- */
.category-rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-3);
}
@media (max-width: 900px) {
  .category-rail { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
  .category-rail { grid-template-columns: repeat(2, 1fr); }
}

.category-tile {
  position: relative;
  aspect-ratio: 0.85/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid var(--line);
  transition: border-color 0.3s var(--ease-soft);
}
.category-tile:hover { border-color: var(--line-bright); }

.category-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.category-tile:hover img { transform: scale(1.06); }

.category-tile-label {
  position: absolute;
  top: auto; right: 0; bottom: 0; left: 0;
  padding: var(--space-3);
  background: linear-gradient(0deg, rgba(0,0,0,0.85), transparent);
}
.category-tile-label .name {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--bone);
}
.category-tile-label .count {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--brass-bright);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- Story / about strip ---- */
.story-strip {
  background: var(--ink-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-8);
}
@media (max-width: 800px) {
  .story-grid { grid-template-columns: 1fr; gap: var(--space-6); }
}
.story-media {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.story-media img { width: 100%; height: 100%; object-fit: cover; }

.story-copy .eyebrow { margin-bottom: var(--space-3); display: block; }
.story-copy h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: var(--space-4);
}
.story-copy p {
  color: var(--bone-dim);
  font-size: 15.5px;
  margin-bottom: var(--space-4);
  max-width: 480px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-6);
}
@media (max-width: 560px) {
  .trust-row { grid-template-columns: 1fr; gap: var(--space-4); }
}
.trust-item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}
.trust-item .icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line-bright);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-item .icon svg {
  width: 16px; height: 16px;
  stroke: var(--brass);
  fill: none;
  stroke-width: 1.6;
}
.trust-item .label {
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 2px;
}
.trust-item .desc {
  font-size: 12.5px;
  color: var(--bone-dim);
}

/* ---- Newsletter / CTA band ---- */
.cta-band {
  position: relative;
  padding: var(--space-8) 0;
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(ellipse at center, rgba(184,134,75,0.1), transparent 70%);
}
.cta-band-inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}
.cta-band h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: var(--space-3); }
.cta-band p { color: var(--bone-dim); margin-bottom: var(--space-5); }

.newsletter-form {
  display: flex;
  gap: var(--space-2);
  max-width: 420px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  background: var(--ink-soft);
  border: 1px solid var(--line);
  color: var(--bone);
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}
.newsletter-form input:focus { border-color: var(--brass); outline: none; }
.newsletter-note {
  margin-top: var(--space-3);
  font-size: 12px;
  color: var(--bone-dim);
  opacity: 0.7;
}

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: var(--space-8) 0 var(--space-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .logo { margin-bottom: var(--space-3); }
.footer-brand p {
  color: var(--bone-dim);
  font-size: 13.5px;
  max-width: 280px;
  margin-bottom: var(--space-4);
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--space-4);
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a { font-size: 13.5px; color: var(--bone-dim); transition: color 0.2s; }
.footer-col a:hover { color: var(--brass-bright); }
.footer-col .contact-line { font-size: 13.5px; color: var(--bone-dim); }

.social-row { display: flex; gap: var(--space-3); margin-top: var(--space-4); }
.social-row a {
  width: 34px; height: 34px;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: var(--ink-softer); }
.social-row svg { width: 15px; height: 15px; stroke: var(--bone); fill: none; stroke-width: 1.6; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding-top: var(--space-5);
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--bone-dim);
}
.footer-bottom .payment-icons { display: flex; gap: var(--space-2); opacity: 0.6; font-family: var(--font-mono); font-size: 11px; }
