/* ── Shared service-page styles (Wardrobe Reset + At-Home Bespoke) ── */

.page-service {
  scroll-snap-type: none;
}

.page-service .svc-hero,
.page-service .svc-problem,
.page-service .svc-process,
.page-service .svc-benefits,
.page-service .svc-result,
.page-service .cta-footer-wrap {
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

/* ── Hero ── */
.svc-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: max(560px, calc(85svh - 85px));
  padding: 92px 32px 132px;
  background: var(--navy);
  text-align: center;
}

.svc-hero-inner {
  width: min(100%, 720px);
  margin: 0 auto;
}

.svc-hero .eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
}

.svc-hero-heading {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}

.svc-hero-heading .accent {
  color: var(--gold-light);
}

.svc-hero-sub .accent-gold {
  color: var(--gold-light);
}

.svc-hero-sub {
  margin-top: 28px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.svc-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 240px;
  max-width: 100%;
  height: 52px;
  margin-top: 36px;
  padding: 0 26px;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border-radius: 3px;
  white-space: nowrap;
  transition: background 0.22s ease;
}

.svc-hero-cta:hover {
  background: var(--gold-light);
}

.svc-hero-cta img {
  width: 24px;
  height: 24px;
}

.svc-hero-cta .arrow {
  font-size: 22px;
}

.price-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin: 28px auto 0;
  padding: 14px 28px;
  background: rgba(201, 169, 110, 0.10);
  border: 1px solid rgba(227, 199, 137, 0.28);
  border-radius: 14px;
}

.price-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 14px;
  font-family: var(--font-heading);
}

.price-old {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}

.price-new {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-light);
}

.price-note {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  text-align: center;
}

/* ── Problem section ── */
.svc-problem {
  padding: 84px 32px 92px;
  background: var(--cream);
}

.svc-problem .section-inner,
.svc-process .section-inner,
.svc-benefits .section-inner,
.svc-result .section-inner {
  text-align: center;
}

.svc-problem .eyebrow {
  margin-bottom: 14px;
}

.svc-problem .section-heading {
  font-size: 32px;
  line-height: 1.2;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: min(100%, 600px);
  margin: 32px auto 0;
  text-align: left;
}

.problem-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 26px;
  background: var(--white);
  border: 1.5px solid rgba(27, 32, 68, 0.18);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(27, 32, 68, 0.76);
}

.problem-card .dot {
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  margin-top: 10px;
  background: var(--gold);
  border-radius: 50%;
}

/* ── Process (reuses homepage .process pattern, dropped into a service shell) ── */
.svc-process {
  padding: 84px 32px 92px;
  background: var(--white);
}

.svc-process .eyebrow {
  margin-bottom: 8px;
}

.svc-process .section-heading {
  margin: 0 auto 40px;
  font-size: 32px;
  line-height: 1.18;
}

/* ── Benefits ── */
.svc-benefits {
  padding: 84px 32px 92px;
  background: var(--cream);
}

.svc-benefits .eyebrow {
  margin-bottom: 12px;
}

.svc-benefits .section-heading {
  font-size: 32px;
  line-height: 1.2;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 360px));
  justify-content: center;
  gap: 80px clamp(56px, 8vw, 110px);
  width: 100%;
  margin: 84px auto 0;
}

.benefit-card {
  position: relative;
  min-height: 200px;
  padding: 0 26px 28px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 14px;
  text-align: center;
}

.benefit-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 100px;
  margin: -56px auto 0;
}

.benefit-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-card h3 {
  margin-top: 22px;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
}

.benefit-card p {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(61, 61, 61, 0.7);
}

.pull-quote {
  width: min(100%, 580px);
  margin: 56px auto 0;
  font-family: var(--font-heading);
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  color: var(--gold);
  text-align: center;
}

.benefits-tagline {
  margin-top: 32px;
  font-size: 14px;
  font-style: italic;
  color: var(--gold);
}

/* ── Result section (case study) ── */
.svc-result {
  padding: 84px 24px 92px;
  background: var(--navy);
}

.svc-result .eyebrow {
  color: var(--gold);
  margin-bottom: 14px;
}

.svc-result .section-heading {
  color: var(--white);
  font-size: 32px;
  line-height: 1.18;
}

.result-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(100%, 1000px);
  margin: 48px auto 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  overflow: hidden;
}

.result-image-wrap {
  position: relative;
  min-height: 380px;
}

.result-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

body.page-wardrobe-reset .result-card {
  align-items: stretch;
}

body.page-wardrobe-reset .result-image-wrap {
  min-height: 0;
  background: #efe6d5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

body.page-wardrobe-reset .result-image {
  position: static;
  inset: auto;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.result-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.result-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 36px;
  text-align: left;
}

.result-name {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
}

.result-role {
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.result-quote {
  margin-top: 24px;
  font-size: 16px;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.result-stars {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.result-stars img {
  width: 22px;
  height: 22px;
}

.result-star-half {
  position: relative;
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.result-star-half img {
  position: absolute;
  inset: 0;
  width: 22px;
  height: 22px;
}

.result-star-half .result-star-fill {
  width: 11px !important;
  left: 0;
  right: auto;
}

/* Stats row */
.result-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 1000px);
  margin: 32px auto 0;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}

.stat-cell:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

/* ── Final CTA (reuses .final-cta but ensures spacing for service pages) ── */
.svc-final-cta {
  padding: 100px 32px 110px;
  background: var(--cream);
  text-align: center;
}

.svc-final-cta .cta-heading {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  white-space: normal;
}

.svc-final-cta .trust-btn {
  width: auto;
  min-width: 220px;
  padding: 0 32px;
  margin-top: 36px;
  white-space: nowrap;
}

.svc-final-cta .trust-btn span {
  white-space: nowrap;
}

/* ── Tablet ── */
@media (max-width: 980px) {
  .result-card {
    grid-template-columns: 1fr;
  }

  .result-image-wrap {
    min-height: 340px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    width: min(100%, 320px);
    gap: 70px;
  }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .svc-hero {
    min-height: calc(85svh - 68px);
    padding: 56px 24px 96px;
  }

  .svc-hero-heading {
    font-size: 28px;
    line-height: 1.22;
  }

  .svc-hero-sub {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.65;
  }

  .svc-hero-cta {
    width: 100%;
    max-width: 340px;
    height: 56px;
    margin-top: 28px;
    padding: 0 18px;
    gap: 10px;
    font-size: 13px;
    letter-spacing: 1.2px;
    white-space: normal;
  }

  .svc-hero-cta img {
    width: 26px;
    height: 26px;
  }

  .svc-hero-cta .arrow {
    font-size: 18px;
  }

  .price-overlay {
    margin-top: 24px;
    padding: 10px 18px;
    gap: 2px;
    border-radius: 12px;
  }

  .price-row {
    gap: 10px;
  }

  .price-old {
    font-size: 15px;
  }

  .price-new {
    font-size: 22px;
  }

  .price-note {
    font-size: 12px;
    line-height: 1.35;
  }

  .svc-problem,
  .svc-process,
  .svc-benefits,
  .svc-result {
    padding: 56px 24px 64px;
  }

  .svc-problem .section-heading,
  .svc-process .section-heading,
  .svc-benefits .section-heading,
  .svc-result .section-heading {
    font-size: 24px;
    line-height: 1.25;
  }

  .problem-list {
    margin-top: 28px;
  }

  .problem-card {
    padding: 18px 20px;
    font-size: 14px;
  }

  .benefits-grid {
    margin-top: 70px;
    gap: 56px;
  }

  .benefit-card {
    min-height: 180px;
    padding: 0 20px 24px;
  }

  .pull-quote {
    margin-top: 40px;
    font-size: 17px;
    line-height: 1.5;
  }

  .result-content {
    padding: 24px 22px 28px;
  }

  .result-name {
    font-size: 28px;
  }

  .result-role {
    font-size: 12px;
  }

  .result-quote {
    margin-top: 18px;
    font-size: 14px;
  }

  .result-stars img {
    width: 20px;
    height: 20px;
  }

  .result-star-half,
  .result-star-half img {
    width: 20px;
    height: 20px;
  }

  .result-star-half .result-star-fill {
    width: 10px !important;
  }

  .result-stats {
    margin-top: 24px;
    padding: 22px 0;
  }

  .stat-value {
    font-size: 22px;
  }

  .stat-label {
    font-size: 11px;
  }

  .svc-final-cta {
    padding: 72px 24px 80px;
  }

  .svc-final-cta .cta-heading {
    font-size: 26px;
  }
}
