/* home.css — page-specific styles only.
   Tokens/reset/base + shared buttons live in base.css;
   site chrome lives in header.css / footer.css. */

/* ============================================================
   home.css — alexdryclean.net homepage
   Alex's Dry Cleaning Valet · alexdryclean.net
   Generated by adv_generate_homepage.py — edit here, redeploy.
   ============================================================ */

/* ── Design tokens ───────────────────────────────────────────── */

/* ── Reset & base ────────────────────────────────────────────── */

/* ── Typography helpers ──────────────────────────────────────── */

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.section-inner > h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 680px;
  margin-bottom: 2.4rem;
  line-height: 1.6;
}
.section-cta { text-align: center; margin-top: 2.4rem; }

/* ── Buttons ─────────────────────────────────────────────────── */

.btn-primary-lg   { padding: 0.8rem 2rem;   font-size: 1rem; }

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.4rem;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.btn-outline:hover { background: var(--navy); color: #fff; text-decoration: none; }

/* ── Header ──────────────────────────────────────────────────── */

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.78) 0%,
    rgba(15, 23, 42, 0.62) 60%,
    rgba(10, 22, 40, 0.50) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 32px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  max-width: 700px;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
.hero-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

/* ── Trust bar ───────────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px;
}
.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3rem;
  text-align: center;
}
.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.trust-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-top: 0.25rem;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── How it works ────────────────────────────────────────────── */
.hiw-section {
  background: var(--cream);
  padding: var(--section-py) 0;
}
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 0.5rem;
}
.hiw-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.hiw-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hiw-icon svg { width: 100%; height: 100%; }
.hiw-num {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  user-select: none;
}
.hiw-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.hiw-step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}
.hiw-step p a { color: var(--navy); font-weight: 600; }

/* ── Services ────────────────────────────────────────────────── */
.services-section {
  background: var(--white);
  padding: var(--section-py) 0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--border);
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.04); }
.service-body { padding: 1.2rem 1.4rem 1.4rem; }
.service-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.4rem;
}
.service-body p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }
.service-link { display: block; color: inherit; height: 100%; }
.service-link:hover { text-decoration: none; }
.service-more {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.15s;
}
.service-card:hover .service-more { color: var(--gold); }

/* ── Scrolling marquee ───────────────────────────────────────── */
.marquee-section {
  background: var(--navy-deep);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-outer { overflow: hidden; }
.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
  animation: marquee-scroll 22s linear infinite;
  padding: 0 2rem;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Three steps ─────────────────────────────────────────────── */
.three-steps-section {
  background: var(--white);
  padding: var(--section-py) 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow-sm);
}
.step-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.step-icon img { width: 64px; height: 64px; object-fit: contain; }
.step-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.4;
}

/* ── Schedule CTA strip ──────────────────────────────────────── */
.cta-strip {
  background: var(--navy);
  padding: 28px 32px;
  text-align: center;
}
.cta-strip-btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 2.4rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.18s, transform 0.12s;
}
.cta-strip-btn:hover { background: var(--gold-light); transform: translateY(-1px); text-decoration: none; }

/* ── Fine dry cleaning section ───────────────────────────────── */
.fine-section {
  background: var(--cream);
  padding: var(--section-py) 0;
}
.fine-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3.5rem;
  align-items: start;
}
.fine-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.25;
  margin-bottom: 1.8rem;
}
.fine-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; }
.fine-item {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
  align-items: flex-start;
}
.fine-check {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.fine-item h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.fine-item p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
.fine-carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
  background: var(--border);
}
.fine-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.fine-carousel img.active { opacity: 1; }

/* ── Services examples ───────────────────────────────────────── */
.svc-examples-section {
  background: var(--white);
  padding: var(--section-py) 0;
}
.svc-examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-bottom: 0.5rem;
}
.svc-example-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.svc-example-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.svc-example-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--border);
}
.svc-example-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.svc-example-card:hover .svc-example-img img { transform: scale(1.04); }
.svc-example-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-deep);
  padding: 1.2rem 1.4rem 0.4rem;
}
.svc-example-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
  padding: 0 1.4rem;
  flex: 1;
}
.svc-example-link {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  padding: 0.8rem 1.4rem 1.2rem;
  text-decoration: none;
}
.svc-example-link:hover { color: var(--gold-light); text-decoration: none; }

/* ── Reviews carousel ────────────────────────────────────────── */
.reviews-section {
  background: var(--cream);
  padding: var(--section-py) 0;
}
.rv-carousel-wrap {
  display: flex;
  align-items: stretch;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.rv-track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
}
.rv-track::-webkit-scrollbar { display: none; }
.rv-card {
  flex: 0 0 calc((100% - 2 * 1.2rem) / 3);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
}
.rv-nav {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  color: var(--navy);
  transition: background 0.15s, border-color 0.15s;
  box-shadow: var(--shadow-sm);
}
.rv-nav svg { width: 18px; height: 18px; }
.rv-nav:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.rv-stars { font-size: 1rem; letter-spacing: 1px; line-height: 1; }
.rv-text {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}
.rv-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  border-top: 1px solid var(--border);
  padding-top: 0.7rem;
}
.rv-name { font-size: 0.82rem; font-weight: 700; color: var(--navy); }
.rv-date { font-size: 0.75rem; color: var(--muted-light); }

/* ── Geo section ─────────────────────────────────────────────── */
.geo-section {
  background: var(--white);
  padding: var(--section-py) 0;
}
.geo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 1.6rem;
}
.geo-region-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.geo-list { list-style: none; }
.geo-list li { margin-bottom: 0.3rem; }
.geo-list a {
  font-size: 0.83rem;
  color: var(--muted);
  transition: color 0.15s;
}
.geo-list a:hover { color: var(--navy); text-decoration: none; }
.geo-note {
  font-size: 0.83rem;
  color: var(--muted-light);
  text-align: center;
}
.geo-note a { color: var(--navy); font-weight: 600; }

/* ── Blog section ────────────────────────────────────────────── */
.blog-section {
  background: var(--cream);
  padding: var(--section-py) 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-img-link { display: block; }
.blog-card-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--border);
}
.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.04); }
.blog-card-body {
  padding: 1.2rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.blog-card-date { font-size: 0.72rem; color: var(--muted-light); font-weight: 600; letter-spacing: 0.05em; }
.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.35;
}
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--navy); text-decoration: none; }
.blog-card-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.65; flex: 1; }
.blog-card-more { font-size: 0.8rem; font-weight: 700; color: var(--gold); margin-top: auto; }
.blog-card-more:hover { color: var(--gold-light); text-decoration: none; }

/* ── CTA section ─────────────────────────────────────────────── */

/* ── Footer ──────────────────────────────────────────────────── */

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  
  
  .hiw-grid, .service-grid, .rv-scroll, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .geo-grid { grid-template-columns: repeat(2, 1fr); }
  
  .trust-item { padding: 0 1.5rem; }
  /* fixed 420px column overflows phones — stack and cap the carousel */
  .fine-inner { grid-template-columns: 1fr; gap: 2rem; }
  .fine-carousel { max-width: 420px; width: 100%; margin: 0 auto; }
}

@media (max-width: 640px) {
  .fine-features { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  
  .section-inner { padding: 0 20px; }
  .hero-content { padding: 60px 20px; }
  .hero-headline { font-size: 2rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  
  .hiw-grid, .service-grid, .rv-scroll, .blog-grid { grid-template-columns: 1fr; }
  .geo-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  
  
  .trust-inner { gap: 0; }
  .trust-item { padding: 0.8rem 1.2rem; }
  .trust-divider { width: 100%; height: 1px; }
  
  
}
