/* =========================================================
   Mikke Photo - Home Page Styles
   ========================================================= */

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 48px 0 80px;
  overflow: hidden;
}
.hero__bg-circle-1 {
  position: absolute;
  top: 60px; right: -120px;
  width: 360px; height: 360px;
  background: var(--accent-green-soft);
  border-radius: 50%;
  z-index: 0;
}
.hero__bg-circle-2 {
  position: absolute;
  bottom: -80px; left: -60px;
  width: 220px; height: 220px;
  background: var(--accent-yellow-soft);
  border-radius: 50%;
  z-index: 0;
}
.hero__grid {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
}
.hero__kicker-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent-green);
}
.hero__title {
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 24px 0 0;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(transparent 62%, var(--accent-yellow) 62%);
  padding: 0 6px;
}
.hero__title .g {
  background: linear-gradient(transparent 62%, var(--accent-green) 62%);
  padding: 0 6px;
}
.hero__lead {
  margin-top: 24px;
  max-width: 480px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2;
}
.hero__actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__stat {
  margin-top: 48px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero__stat li {
  list-style: none;
}
.hero__stat-num {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}
.hero__stat-num small {
  font-size: 16px;
  margin-left: 2px;
}
.hero__stat-lbl {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: .1em;
  font-weight: 700;
}

/* Hero visual (photo collage) */
.hero__visual {
  position: relative;
  aspect-ratio: 1/1.05;
  max-width: 520px;
  margin-left: auto;
  width: 100%;
}
.hero__img {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-l);
  background: var(--bg-soft);
  box-shadow: 0 18px 40px rgba(26,26,26,.08);
}
.hero__img img { width:100%; height:100%; object-fit: cover; display: block; }
.hero__img--1 { top: 0; left: 10%; width: 66%; height: 72%; }
.hero__img--2 { bottom: 0; right: 0; width: 52%; height: 50%; border-radius: var(--radius-xl); }
.hero__img--3 { bottom: 8%; left: 0; width: 40%; height: 38%; border-radius: 50%; }

.hero__badge {
  position: absolute;
  top: -10px; right: -10px;
  width: 120px; height: 120px;
  background: var(--accent-green);
  color: var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 800;
  font-size: 12px;
  line-height: 1.5;
  transform: rotate(-12deg);
  z-index: 3;
  border: 2px solid var(--ink);
  letter-spacing: .02em;
}
.hero__badge strong { display: block; font-size: 26px; }

.hero__doodle {
  position: absolute;
  pointer-events: none;
}
.hero__doodle--1 { top: 30%; left: -22px; }
.hero__doodle--2 { bottom: 18%; right: -10px; }

/* ---------- Strengths / 3 pillars ---------- */
.pillars {
  padding: 80px 0;
}
.pillars__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.pillars__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  background: #fff;
  border-radius: var(--radius-l);
  padding: 40px 32px 36px;
  border: 2px solid var(--ink);
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.pillar:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ink);
}
.pillar__num {
  position: absolute;
  top: -18px; left: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 18px;
}
.pillar:nth-child(1) { background: var(--accent-yellow-wash); }
.pillar:nth-child(2) { background: var(--accent-green-wash); }
.pillar:nth-child(3) { background: #fff; }
.pillar__icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--ink);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.pillar h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.4;
}
.pillar p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2;
  margin: 0;
}

/* ---------- Service teaser ---------- */
.services {
  padding: 80px 0;
  background: var(--bg-soft);
  position: relative;
}
.services__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.services__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 20px;
  margin-bottom: 40px;
}
.services__head a {
  font-weight: 800;
  font-size: 14px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 3px;
}
.service-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.chip {
  aspect-ratio: 1;
  border-radius: var(--radius-m);
  overflow: hidden;
  position: relative;
  background: #fff;
  border: 2px solid var(--ink);
  transition: transform .2s;
}
.chip:hover { transform: translateY(-4px); }
.chip img, .chip .ph {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.chip__label {
  position: absolute;
  left: 14px; bottom: 14px;
  background: #fff;
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  border: 2px solid var(--ink);
}

/* ---------- Flow ---------- */
.flow {
  padding: 100px 0;
}
.flow__grid {
  max-width: var(--max);
  margin: 40px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.flow__step {
  position: relative;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius-m);
  padding: 24px 18px;
  text-align: center;
}
.flow__step:nth-child(odd) { background: var(--accent-yellow-wash); }
.flow__step:nth-child(even) { background: var(--accent-green-wash); }
.flow__step-num {
  display: inline-block;
  padding: 4px 10px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: .2em;
  font-weight: 800;
  margin-bottom: 10px;
}
.flow__step h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
}
.flow__step p {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin: 0;
}

/* ---------- Price preview ---------- */
.price-tease {
  padding: 80px 0;
  background: #fff;
}
.price-tease__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.price-tease__inner h2 { color: #fff; margin: 10px 0 0; }
.price-tease .eyebrow { color: #fff; }
.price-tease .eyebrow::before { background: var(--accent-green); }
.price-tease p { color: #dcdcd7; margin: 16px 0 0; }
.price-tease__table {
  display: grid;
  gap: 14px;
  font-size: 15px;
}
.price-tease__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dashed rgba(255,255,255,.2);
  padding-bottom: 12px;
}
.price-tease__row strong {
  font-size: 22px;
  font-weight: 800;
}
.price-tease__row strong small {
  font-size: 12px;
  margin-left: 2px;
  color: var(--accent-green);
}

/* ---------- News / blog preview (skipped for now) ---------- */

/* ---------- Final CTA ---------- */
.home-cta {
  padding: 100px 0 0;
}
.home-cta__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 48px;
  background: var(--accent-green);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.home-cta__inner::before {
  content: "";
  position: absolute;
  top: -60px; left: -60px;
  width: 220px; height: 220px;
  background: var(--accent-yellow);
  border-radius: 50%;
  opacity: .5;
}
.home-cta__inner::after {
  content: "";
  position: absolute;
  bottom: -80px; right: -40px;
  width: 240px; height: 240px;
  background: #fff;
  border-radius: 50%;
  opacity: .3;
}
.home-cta h2 {
  position: relative;
  z-index: 2;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.5;
}
.home-cta p {
  position: relative; z-index: 2;
  color: var(--ink); margin: 0 0 32px;
}
.home-cta__buttons {
  position: relative; z-index: 2;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 460px; margin: 0 auto; }
  .pillars__grid { grid-template-columns: 1fr; }
  .service-chips { grid-template-columns: repeat(2, 1fr); }
  .flow__grid { grid-template-columns: repeat(2, 1fr); }
  .price-tease__inner { grid-template-columns: 1fr; padding: 48px 32px; }
}
@media (max-width: 560px) {
  .hero { padding-top: 24px; }
  .hero__stat { gap: 24px; }
  .hero__stat-num { font-size: 32px; }
  .service-chips { grid-template-columns: 1fr 1fr; gap: 10px; }
  .home-cta__inner { padding: 48px 24px; }
  .services__head { grid-template-columns: 1fr; }
}
