/* ============================================================
   HOME
   Clean editorial layout: a split hero with real product imagery,
   a restrained type scale, and simple left-aligned section heads.
   Depends on tokens + shared components in theme.css.
   ============================================================ */

.main-content {
  width: calc(100% - (var(--gutter) * 2));
  max-width: var(--shell);
  margin-inline: auto;
}

/* ── Section scaffolding ──────────────────────────────────── */
.section { padding-block: var(--sp-section); }

.section-head {
  max-width: 62ch;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.section-label {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
}

.section-title {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.025em;
}

.section-note {
  margin: 14px 0 0;
  max-width: 52ch;
  color: var(--ink-muted);
  font-size: 1rem;
}

/* ============================================================
   HERO — copy beside the work
   ============================================================ */
.hero {
  padding-block: clamp(40px, 6vw, 84px) clamp(48px, 7vw, 96px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}
@media (min-width: 920px) {
  .hero-grid { grid-template-columns: 1.02fr .98fr; gap: clamp(48px, 6vw, 88px); }
}

.hero-copy { max-width: 34rem; }

.hero-title {
  margin: 0;
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.hero-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--red);
}

.hero-sub {
  margin: 20px 0 0;
  max-width: 46ch;
  font-size: 1.04rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* Stat row — quiet, rule-separated */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(22px, 4vw, 44px);
  margin: 38px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.hero-stats div { display: grid; gap: 4px; }
.hero-stats dt {
  order: 2;
  font-family: var(--font-mono);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.hero-stats dd {
  order: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

/* ── Hero media ───────────────────────────────────────────── */
.hero-media {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--paper-sunk);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 920px) { .hero-media { aspect-ratio: 5 / 6; } }

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease);
}
.hero-media:hover img { transform: scale(1.06); }

/* Caption bar naming the piece in shot */
.hero-media-tag {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  color: #fff;
  background: linear-gradient(180deg, rgba(10,7,6,0) 0%, rgba(10,7,6,.72) 55%, rgba(10,7,6,.9) 100%);
}
.hero-media-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}
.hero-media-price {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  white-space: nowrap;
}

/* Small "featured" chip */
.hero-media-chip {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  border-radius: 100px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.top-products { padding-block: var(--sp-section); border-top: 1px solid var(--rule); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 620px)  { .services-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (min-width: 1100px) { .services-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.service-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 4;
  color: #fff;
  isolation: isolate;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.service-card-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--svc-img);
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 1s var(--ease);
}
.service-card:hover .service-card-bg { transform: scale(1.1); }

.service-card-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10,7,6,.05) 0%, rgba(10,7,6,.32) 45%, rgba(10,7,6,.9) 100%);
  transition: background .45s var(--ease);
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(180deg, rgba(231,0,0,.10) 0%, rgba(10,7,6,.44) 45%, rgba(10,7,6,.93) 100%);
}

.service-card-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(16px, 2vw, 24px);
}
.service-card-sub {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ff6a55;
}
.service-card-title { margin: 0; color: #fff; font-size: 1.22rem; letter-spacing: -0.015em; }
.service-card-desc {
  margin: 0;
  font-size: .86rem;
  line-height: 1.55;
  color: rgba(255,255,255,.74);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease), opacity .4s var(--ease), margin-top .5s var(--ease);
}
.service-card:hover .service-card-desc { max-height: 8em; opacity: 1; margin-top: 8px; }

@media (hover: none) {
  .service-card-desc { max-height: 8em; opacity: 1; margin-top: 8px; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { border-top: 1px solid var(--rule); padding-block: var(--sp-section); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
@media (min-width: 900px) { .about-inner { grid-template-columns: 1.05fr .95fr; } }

.about-lead { font-size: 1.06rem; color: var(--ink-body); margin-bottom: 14px; }
.about-text { color: var(--ink-muted); margin-bottom: 0; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--rule);
}
.about-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--red);
  line-height: 1;
}
.about-stat-label {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.about-media { position: relative; }
.about-media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}
.about-media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  margin-top: var(--sp-section);
  padding: clamp(38px, 5.5vw, 68px) clamp(24px, 4vw, 58px);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--paper);
  display: grid;
  gap: 24px;
  align-items: center;
}
@media (min-width: 820px) { .cta-strip { grid-template-columns: 1fr auto; gap: 44px; } }
body.theme-dark .cta-strip { background: #0a0706; border: 1px solid var(--rule); }

.cta-title { margin: 0 0 10px; color: var(--paper); font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
.cta-text { margin: 0; color: color-mix(in srgb, var(--paper) 62%, transparent); max-width: 52ch; }
.cta-strip .btn--primary { background: var(--red); color: #fff; }
.cta-strip .btn--primary:hover { background: #fff; color: var(--ink); }
