/* ===== Home ===== */
/* Hero — full-bleed dessert photo with a left-weighted dark overlay for legible text */
.hero { position: relative; overflow: hidden; background:
    linear-gradient(100deg, rgba(26,13,6,.94) 0%, rgba(26,13,6,.80) 34%, rgba(26,13,6,.45) 66%, rgba(26,13,6,.30) 100%),
    url('https://images.unsplash.com/photo-1488477181946-6428a0291777?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat,
    linear-gradient(105deg, var(--espresso), var(--cocoa)); }
.hero::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199,154,75,.5), transparent); z-index: 3; }
.hero-inner { position: relative; z-index: 2; min-height: 560px; display: flex; align-items: center;
  padding-top: 84px; padding-bottom: 72px; }
.hero-text { max-width: 600px; }
.hero-eyebrow { font-family: var(--script); font-size: 27px; color: var(--gold-soft); margin: 0 0 6px; }
.hero-title { font-size: 60px; color: #f7ecdc; letter-spacing: .5px; text-shadow: 0 2px 24px rgba(0,0,0,.45); }
.hero-lede { color: var(--on-dark-soft); font-size: 16px; line-height: 1.7; max-width: 460px; margin: 22px 0 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-features { margin-top: 46px; max-width: 560px; }
.hero-features .ark-features { grid-template-columns: repeat(2, 1fr); gap: 22px 30px; }
.hero-features .ark-feature-ic { width: 40px; height: 40px; }

/* Section heads */
.section-head { text-align: center; max-width: 620px; margin: 0 auto; }
.section-title { font-size: 36px; }
.section-sub { color: var(--ink-soft); font-size: 15px; line-height: 1.65; margin: 18px auto 0; max-width: 540px; }

.collection { padding: 78px 28px 70px; }
.collection-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 46px; }
.collection-foot { text-align: center; margin-top: 50px; }

/* About teaser — text left, photo bleeds in from the right and fades into it */
.about-teaser { position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--cocoa), var(--espresso-2)); color: var(--on-dark); }
.about-teaser-inner { position: relative; z-index: 2; display: block; padding: 86px 28px; }
.about-teaser-text { max-width: 520px; }
.about-teaser-title { font-size: 38px; color: var(--on-dark); }
.about-teaser .ark-ornament { margin-left: 0; margin-right: auto; justify-content: flex-start; }
.about-teaser-text p { color: var(--on-dark-soft); font-size: 15px; line-height: 1.8; margin: 16px 0; max-width: 460px; }
.about-teaser-quote { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--gold-soft) !important; }
.about-teaser .ark-eyebrow { text-align: left; }
.about-teaser-art { position: absolute; top: 0; right: 0; bottom: 0; width: 56%; z-index: 1; pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.55) 28%, #000 64%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.55) 28%, #000 64%); }
.about-teaser-art .ark-photo { height: 100% !important; width: 100% !important; border-radius: 0 !important; }
.about-teaser-art .ark-photo span { display: none; }

/* Closing CTA */
.closing-cta { text-align: center; padding: 84px 28px; background:
  radial-gradient(circle at 50% 0%, rgba(199,154,75,.12), transparent 60%), var(--cream); }
.closing-cta h2 { font-size: 40px; margin: 4px 0 14px; }
.closing-cta p { color: var(--ink-soft); font-size: 16px; max-width: 460px; margin: 0 auto 28px; }

@media (max-width: 920px) {
  .collection-row { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .hero-title { font-size: 46px; }
}
@media (max-width: 760px) {
  .hero-inner { min-height: 0; padding-top: 48px; padding-bottom: 44px; }
  .hero-title { font-size: 40px; }
  .hero-features .ark-features { grid-template-columns: 1fr 1fr; }
  .about-teaser-inner { padding: 56px 28px; }
  .about-teaser-art { width: 100%; opacity: .16;
    -webkit-mask-image: linear-gradient(to bottom, #000, transparent 82%);
    mask-image: linear-gradient(to bottom, #000, transparent 82%); }
  .collection-row { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 32px; }
}
