/* ===========================================================
   HOMEPAGE SECTIONS (Light Edition)
   =========================================================== */

.home-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  max-height: 620px;
  overflow: hidden;
  background: var(--parchment);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 700px) {
  .home-slider {
    aspect-ratio: 3 / 2;
    max-height: none;
  }
}
@media (max-width: 480px) {
  .home-slider {
    aspect-ratio: 1 / 1;
    max-height: 420px;
  }
}

.home-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s var(--ease-out);
}

.home-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}
.home-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.home-slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(29,30,35,0.55) 0%, rgba(29,30,35,0.15) 55%, transparent 100%);
}
@media (max-width: 700px) {
  .home-slide-overlay {
    align-items: flex-end;
    background: linear-gradient(to top, rgba(29,30,35,0.75) 0%, rgba(29,30,35,0.3) 50%, transparent 100%);
  }
}
.home-slide-copy {
  max-width: 520px;
  padding: 0 var(--space-8);
  color: var(--bone-on-dark);
}
@media (max-width: 700px) {
  .home-slide-copy {
    padding: var(--space-5) var(--space-4);
    max-width: 100%;
    width: 100%;
  }
}
.home-slide-copy h2 {
  font-size: clamp(20px, 5vw, 46px);
  color: var(--bone-on-dark);
  margin-bottom: var(--space-3);
  line-height: 1.2;
}
.home-slide-copy p {
  font-size: clamp(13px, 1.8vw, 17px);
  color: #E8E3D5;
  margin-bottom: var(--space-4);
  max-width: 420px;
}
@media (max-width: 700px) {
  .home-slide-copy p { max-width: 100%; }
}
.home-slide-copy .btn-primary { background: var(--gold); color: var(--ink); }
.home-slide-copy .btn-primary:hover { background: var(--gold-deep); color: var(--cream); }

.home-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,252,247,0.85);
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s var(--ease-soft);
}
.home-slider-arrow:hover { background: var(--cream); border-color: var(--gold); color: var(--gold-deep); }
.home-slider-arrow.prev { left: var(--space-5); }
.home-slider-arrow.prev svg { transform: rotate(180deg); }
.home-slider-arrow.next { right: var(--space-5); }
.home-slider-arrow svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
@media (max-width: 700px) {
  .home-slider-arrow { width: 36px; height: 36px; }
  .home-slider-arrow.prev { left: var(--space-3); }
  .home-slider-arrow.next { right: var(--space-3); }
}

.home-slider-dots {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.home-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,252,247,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s var(--ease-soft);
}
.home-slider-dot.active { background: var(--gold); width: 22px; border-radius: 4px; }

.hero {
  position: relative;
  padding: var(--space-9) 0 var(--space-8);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--parchment) 0%, var(--cream) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-8);
  align-items: center;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-6); }
}

.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(--gold-deep);
}

.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-5);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-deep);
}

.hero p.lede {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: var(--space-6);
}

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

.hero-image-wrap {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lifted);
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

.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 svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--gold-deep); transform: translateY(-1px); }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold-deep); color: var(--gold-deep); background: var(--gold-pale); }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

.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(26px, 3.2vw, 36px); 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(--gold-deep);
  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-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(--parchment);
  border: 1px solid var(--line);
  transition: border-color 0.3s var(--ease-soft), transform 0.3s var(--ease-soft);
}
.category-tile:hover { border-color: var(--gold); transform: translateY(-3px); }
.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;
  inset: auto 0 0 0;
  padding: var(--space-3);
  background: linear-gradient(0deg, rgba(29,30,35,0.82), transparent);
}
.category-tile-label .name { font-family: var(--font-display); font-size: 16px; color: var(--bone-on-dark); }
.category-tile-label .count { font-family: var(--font-mono); font-size: 10px; color: var(--gold-pale); text-transform: uppercase; letter-spacing: 0.06em; }

.story-strip { background: var(--parchment); 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; box-shadow: var(--shadow-card); }
.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(24px, 3vw, 34px); margin-bottom: var(--space-4); }
.story-copy p { color: var(--ink-soft); 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(--gold); background: var(--cream); display: flex; align-items: center; justify-content: center; }
.trust-item .icon svg { width: 16px; height: 16px; stroke: var(--gold-deep); 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(--ink-soft); }

.cta-band { position: relative; padding: var(--space-8) 0; text-align: center; overflow: hidden; background: var(--ink); }
.cta-band h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: var(--space-3); color: var(--bone-on-dark); }
.cta-band p { color: #B8B5AC; margin-bottom: var(--space-5); }
.cta-band-inner { position: relative; max-width: 560px; margin: 0 auto; }

.newsletter-form { display: flex; gap: var(--space-2); max-width: 420px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  background: #2A2B31;
  border: 1px solid #3A3B42;
  color: var(--bone-on-dark);
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}
.newsletter-form input::placeholder { color: #8A8980; }
.newsletter-form input:focus { border-color: var(--gold); outline: none; }
.newsletter-form .btn-primary { background: var(--gold); color: var(--ink); }
.newsletter-form .btn-primary:hover { background: var(--gold-deep); color: var(--cream); }
.newsletter-note { margin-top: var(--space-3); font-size: 12px; color: #8A8980; }

.site-footer { border-top: 1px solid var(--line); padding: var(--space-8) 0 var(--space-5); background: var(--parchment); }
.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(--ink-soft); 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(--gold-deep); 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(--ink-soft); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-deep); }
.footer-col .contact-line { font-size: 13.5px; color: var(--ink-soft); }

.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); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.social-row a:hover { border-color: var(--gold); background: var(--gold-pale); }
.social-row svg { width: 15px; height: 15px; stroke: var(--ink); 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(--ink-faint); }
.footer-bottom .payment-icons { display: flex; gap: var(--space-2); font-family: var(--font-mono); font-size: 11px; }
