/*
Theme Name: AIMMCO Skin Journey Center
Theme URI: https://aimmco.example
Author: AIMMCO
Description: A custom one-page WordPress theme for AIMMCO Skin Journey Center.
Version: 1.0.11
Requires at least: 6.0
Tested up to: 6.6
Text Domain: aimmco
*/

:root {
  --ink: #2b241f;
  --muted: #665a51;
  --line: #dfd1c6;
  --cream: #fbf7f2;
  --paper: #fffdf9;
  --soft: #f2ebe3;
  --copper: #9f704f;
  --copper-dark: #7d5338;
  --shadow: 0 18px 44px rgba(56, 43, 33, .11);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Inter", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
main,
.site-header,
.site-footer {
  max-width: 100%;
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  padding: 24px clamp(22px, 4vw, 64px);
  background: rgba(255, 252, 248, .92);
  border-bottom: 1px solid rgba(223, 209, 198, .55);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  gap: 2px;
  min-width: 220px;
}

.brand__name {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  letter-spacing: .22em;
  line-height: 1;
  font-weight: 300;
}

.brand__tagline {
  padding-left: .24em;
  font-size: .78rem;
  letter-spacing: .43em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 58px);
  font-size: 1rem;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.nav a:hover::after { transform: scaleX(1); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 32px;
  border: 1px solid var(--copper);
  border-radius: 6px;
  background: transparent;
  color: var(--copper-dark);
  font-weight: 500;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover { transform: translateY(-1px); }
.button--solid {
  background: linear-gradient(135deg, #b48764, #875b3d);
  color: #fff;
}

.mobile-toggle { display: none; }
.nav__close,
.nav__book {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(340px, .9fr) minmax(420px, 1.25fr);
  min-height: calc(100vh - 112px);
  background: var(--cream);
  overflow: hidden;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 8vw, 116px) clamp(28px, 6vw, 92px);
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--copper);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .5em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: .98;
}

h1 { font-size: clamp(4.2rem, 7vw, 7.4rem); }
h2 { font-size: clamp(3rem, 5vw, 5.1rem); text-align: center; }
h3 { font-size: clamp(1.8rem, 2.4vw, 2.5rem); }

.rule {
  display: block;
  width: 54px;
  height: 1px;
  margin: 32px 0;
  background: var(--copper);
}

.hero p {
  max-width: 560px;
  margin: 0 0 36px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.35vw, 1.5rem);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 20px; }

.hero__image {
  min-height: 620px;
  background:
    linear-gradient(90deg, rgba(251,247,242,.9), rgba(251,247,242,.08) 28%),
    url("assets/images/hero.png") center / cover no-repeat;
}

.section {
  position: relative;
  padding: clamp(74px, 8vw, 122px) clamp(22px, 5vw, 76px);
  overflow: hidden;
}

.section--soft { background: var(--cream); }
.section--white { background: var(--paper); }

.section__head {
  max-width: 900px;
  margin: 0 auto clamp(40px, 5vw, 76px);
  text-align: center;
}

.section__head .rule { margin-left: auto; margin-right: auto; }
.section__head p {
  max-width: 660px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.3vw, 1.34rem);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  max-width: 1420px;
  margin: 0 auto;
}

.promise {
  min-height: 232px;
  padding: 0 26px;
  text-align: center;
  border-left: 1px solid var(--line);
}
.promise:first-child { border-left: 0; }

.promise__icon {
  width: 126px;
  height: 126px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 0;
  border-radius: 50% 50% 2px 2px;
  background: rgba(226, 211, 199, .45);
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.9rem;
}

.promise h3 {
  min-height: 68px;
  font-size: clamp(1.45rem, 2vw, 2.35rem);
}
.promise p {
  margin: 14px auto 0;
  max-width: 220px;
  color: var(--muted);
  font-size: .98rem;
}

.quote-band, .cta-band, .newsletter {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  max-width: 1380px;
  margin: clamp(42px, 5vw, 76px) auto 0;
  padding: 28px clamp(28px, 5vw, 70px);
  border-radius: 8px;
  background: rgba(242, 235, 227, .78);
  border: 1px solid rgba(223, 209, 198, .55);
}

.quote-mark {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--copper);
  color: #fff;
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
}

.quote-band p { margin: 0; font-family: var(--serif); font-size: clamp(1.4rem, 2vw, 2rem); font-style: italic; }

.cta-band {
  min-height: 92px;
  margin-top: 28px;
}
.cta-band .icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  font-size: 1.25rem;
}
.cta-band h3 {
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  line-height: 1.15;
}
.cta-band p { margin: 4px 0 0; color: var(--muted); }
.cta-band .button {
  min-height: 54px;
  min-width: 220px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
  max-width: 1420px;
  margin: 0 auto;
}

.step { position: relative; text-align: center; }
.step__number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--copper);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.25rem;
}
.step img {
  width: 100%;
  aspect-ratio: 1.9 / 1;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.step p { color: var(--muted); }

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1420px;
  margin: 0 auto;
}

.card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(223, 209, 198, .58);
}

.card img {
  width: 100%;
  aspect-ratio: 1.48 / 1;
  object-fit: cover;
}

.card__body { padding: 24px 30px 28px; }
.card__body h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(1.45rem, 2vw, 2.25rem);
}
.card__body p {
  min-height: 90px;
  color: var(--muted);
  font-size: .98rem;
}
.treatment-icon {
  display: inline-grid;
  flex: 0 0 48px;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #d5b899;
  color: #fff;
}
.treatment-icon::before {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1;
}
.treatment-icon-facial::before { content: "◌"; }
.treatment-icon-hair::before { content: "⌁"; }
.treatment-icon-carbon::before { content: "✧"; }
.treatment-icon-fpl::before { content: "☼"; }
.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  color: var(--copper-dark);
  font-weight: 500;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  max-width: 1420px;
  margin: 0 auto;
}

.brand-story {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
  max-width: 1420px;
  margin: 0 auto;
}

.brand-story__copy .rule {
  margin-left: 0;
  margin-right: 0;
}

.brand-story__copy p {
  max-width: 560px;
  color: var(--muted);
}

.brand-story__visual {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.brand-story__visual img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.brand-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1420px;
  margin: 34px auto 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 246, .86);
}

.brand-benefits article {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  border-left: 1px solid var(--line);
}

.brand-benefits article:first-child {
  border-left: 0;
}

.brand-benefits span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--copper-dark);
  font-family: var(--serif);
}

.brand-benefits p {
  margin: 0;
  color: var(--ink);
}

.result h3 { margin-bottom: 18px; text-align: center; font-size: clamp(1.4rem, 1.9vw, 2rem); }
.result__photo {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #eee;
  box-shadow: var(--shadow);
}
.result__photo img {
  width: 100%;
  aspect-ratio: 1.13 / 1;
  object-fit: cover;
}
.result__labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 8px 18px 10px;
  color: var(--copper-dark);
  text-align: center;
  background: #fffaf4;
}

.stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  margin: -30px auto 56px;
  color: var(--copper);
}
.stars { font-size: 2.1rem; letter-spacing: .18em; }
.score { font-family: var(--serif); font-size: 3rem; color: var(--ink); }

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  max-width: 1280px;
  margin: 0 auto;
}

.review {
  padding: 32px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(223, 209, 198, .6);
  box-shadow: var(--shadow);
}
.review__quote { min-height: 180px; margin: 0 0 24px; font-size: 1.08rem; }
.review__name { margin: 0; font-weight: 700; }
.review__service { margin: 0; color: var(--muted); }

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 1040px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .82);
}

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 0 28px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  margin-left: auto;
  color: var(--copper-dark);
  font-family: var(--sans);
}
.faq-item[open] summary::after { content: "-"; }
.faq-item p {
  margin: 0 28px 24px 80px;
  padding: 24px 28px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 34px;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-list {
  display: grid;
  align-content: start;
  gap: 0;
}

.contact-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item strong { display: block; margin-bottom: 2px; }
.contact-item p { margin: 0; color: var(--muted); }

.contact-visual {
  overflow: hidden;
  min-height: 520px;
  border-radius: 16px;
  background: url("assets/images/contact.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.site-footer {
  color: #f5ede5;
  background:
    linear-gradient(rgba(31, 28, 24, .94), rgba(31, 28, 24, .94)),
    url("assets/images/footer.png") center / cover no-repeat;
}

.footer-newsletter {
  padding: 38px clamp(22px, 4vw, 64px) 18px;
  background: #fffaf6;
}
.newsletter {
  margin: 0 auto;
  color: var(--ink);
  grid-template-columns: auto minmax(260px, .9fr) minmax(280px, 1fr) auto;
}
.newsletter input {
  width: 100%;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  font: inherit;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, .75fr) 1.15fr;
  gap: 52px;
  padding: 72px clamp(22px, 4vw, 64px) 54px;
}

.footer-main h4 {
  margin: 0 0 24px;
  color: #d7bda7;
  letter-spacing: .36em;
  text-transform: uppercase;
}
.footer-main ul { margin: 0; padding: 0; list-style: none; }
.footer-main li { margin: 0 0 18px; }
.footer-main p { color: #eaded4; }
.footer-logo .brand__name { color: #fff; }
.socials { display: flex; gap: 14px; margin-top: 26px; }
.socials a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--copper);
  color: #fff;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 28px clamp(22px, 4vw, 64px);
  background: rgba(19, 17, 15, .65);
}

.wp-admin .site-header { top: 32px; }

@media (max-width: 1100px) {
  .site-header { min-height: 92px; }
  .nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 96px;
    display: none;
    padding: 24px;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .site-header.is-open .nav { display: flex; }
  .mobile-toggle {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: transparent;
  }
  .site-header > .button { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero__image { min-height: 52vw; order: -1; }
  h1 { font-size: clamp(3.35rem, 10vw, 5rem); }
  .promise-grid, .cards, .results-grid, .review-grid, .steps, .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .promise:nth-child(odd) { border-left: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .wp-admin .site-header { top: 46px; }
  .site-header {
    min-height: 82px;
    padding: 16px 18px;
  }
  .brand { min-width: 0; }
  .brand__name { font-size: clamp(1.65rem, 8vw, 2.25rem); letter-spacing: .14em; }
  .brand__tagline { font-size: .58rem; letter-spacing: .22em; }
  .mobile-toggle {
    width: 70px;
    min-width: 70px;
    padding: 0;
    font-size: 1rem;
  }
  .hero {
    min-height: auto;
    overflow: hidden;
  }
  .hero__copy {
    min-width: 0;
    padding: 48px 20px 54px;
  }
  .hero__image {
    min-height: 64vw;
    background-position: center;
  }
  .hero__copy .eyebrow {
    max-width: 100%;
    font-size: .68rem;
    letter-spacing: .28em;
    line-height: 1.7;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 11.6vw, 3.15rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  h2 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
    line-height: 1.08;
  }
  .hero p {
    max-width: 100%;
    font-size: 1rem;
    overflow-wrap: anywhere;
  }
  .section { padding-left: 20px; padding-right: 20px; }
  .hero__actions, .cta-band, .quote-band, .newsletter, .footer-bottom {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .button { width: 100%; }
  .promise-grid, .cards, .results-grid, .review-grid, .steps, .footer-main {
    grid-template-columns: 1fr;
  }
  .promise { border-left: 0; border-top: 1px solid var(--line); padding: 30px 0; }
  .promise:first-child { border-top: 0; }
  .stats { flex-direction: column; gap: 10px; margin-top: -14px; }
  .faq-item p { margin-left: 20px; margin-right: 20px; }
  .contact-visual { min-height: 340px; }
}

@media (max-width: 380px) {
  .hero__copy {
    padding-left: 18px;
    padding-right: 18px;
  }
  h1 {
    font-size: clamp(2.35rem, 11vw, 2.75rem);
  }
  .hero__copy .eyebrow {
    font-size: .62rem;
    letter-spacing: .24em;
  }
  .hero p {
    font-size: .96rem;
  }
}

@media (max-width: 767px) {
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .wp-admin .site-header {
    top: 46px;
  }

  .site-header {
    min-height: 72px;
    height: 72px;
    padding: 10px 20px;
    overflow: visible;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 86px);
  }

  .brand__name {
    font-size: clamp(1.45rem, 7.2vw, 2rem);
    letter-spacing: .14em;
  }

  .brand__tagline {
    font-size: .52rem;
    letter-spacing: .22em;
    white-space: nowrap;
  }

  .mobile-toggle {
    width: 64px;
    min-width: 64px;
    height: 48px;
    border-radius: 8px;
    font-size: .95rem;
  }

  .nav {
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    width: min(82vw, 320px);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 92px 20px 24px;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    background: var(--paper);
    box-shadow: -22px 0 48px rgba(43, 36, 31, .14);
    transform: translateX(100%);
    transition: transform .24s ease;
  }

  .site-header.is-open .nav {
    display: flex;
    transform: translateX(0);
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(223, 209, 198, .55);
  }

  .nav__close {
    position: absolute;
    top: 28px;
    right: 20px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 1.4rem;
  }

  .nav__book {
    display: inline-flex;
    margin-top: auto;
    border-bottom: 0 !important;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero__image {
    order: 1;
    min-height: 300px;
    margin: 0 20px 72px;
    border-radius: 16px;
    background-position: center;
  }

  .hero__copy {
    order: 0;
    width: 100%;
    padding: 72px 20px 24px;
  }

  .eyebrow,
  .hero__copy .eyebrow {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: .68rem;
    letter-spacing: .28em;
    line-height: 1.7;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 11.4vw, 2.75rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(2.05rem, 9vw, 2.25rem);
    line-height: 1.12;
  }

  h3 {
    font-size: clamp(1.45rem, 7vw, 1.8rem);
    line-height: 1.16;
  }

  .hero p,
  .section__head p {
    max-width: 100%;
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .section {
    padding: 72px 20px;
  }

  .section__head {
    margin-bottom: 40px;
  }

  .section__head .rule {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .hero__actions,
  .cta-band {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .button,
  .cta-band .button {
    width: 100%;
    min-width: 0;
  }

  .button + .button,
  .hero__actions .button + .button {
    margin-top: 0;
  }

  .promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .promise {
    min-height: 0;
    padding: 18px 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.72);
  }

  .promise:first-child {
    border-top: 1px solid var(--line);
  }

  .promise:last-child {
    grid-column: 1 / -1;
  }

  .promise__icon {
    width: 72px;
    height: 72px;
    margin-bottom: 12px;
  }

  .promise h3 {
    min-height: 0;
    font-size: 1.08rem;
  }

  .promise p {
    font-size: .82rem;
  }

  .quote-band,
  .cta-band,
  .newsletter {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
    padding: 24px 20px;
    border-radius: 16px;
  }

  .cta-band {
    min-height: 0;
  }

  .cta-band .icon {
    width: 48px;
    height: 48px;
    font-size: .82rem;
  }

  .steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    position: relative;
  }

  .step {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 16px;
    text-align: left;
  }

  .step h3 {
    align-self: center;
  }

  .step::before {
    content: "";
    position: absolute;
    left: 23px;
    top: 48px;
    bottom: -28px;
    width: 1px;
    background: var(--line);
  }

  .step:last-child::before {
    display: none;
  }

  .step__number {
    grid-row: 1 / span 3;
    width: 48px;
    height: 48px;
    margin: 0;
    z-index: 1;
  }

  .step img {
    margin-top: 14px;
    border-radius: 16px;
  }

  .step p {
    margin: 12px 0 0;
  }

  .cards,
  .results-grid,
  .review-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(270px, 86%);
    grid-template-columns: none;
    gap: 16px;
    max-width: none;
    margin-left: -20px;
    margin-right: -20px;
    padding: 0 20px 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }

  .cards::after,
  .results-grid::after,
  .review-grid::after {
    content: "";
    width: 4px;
  }

  .brand-section {
    text-align: center;
  }

  .brand-story {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .brand-story__copy .rule {
    margin-left: auto;
    margin-right: auto;
  }

  .brand-story__visual {
    border-radius: 16px;
  }

  .brand-story__visual img {
    aspect-ratio: 1 / 1.06;
    object-position: center;
  }

  .brand-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .brand-benefits article {
    display: grid;
    place-items: center;
    gap: 10px;
    min-height: 112px;
    padding: 16px 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255,255,255,.82);
    text-align: center;
  }

  .brand-benefits p {
    font-size: .86rem;
  }

  .card,
  .result,
  .review {
    scroll-snap-align: start;
  }

  .card,
  .result__photo,
  .review {
    border-radius: 16px;
  }

  .card__body {
    padding: 22px 22px 24px;
  }

  .card__body h3 {
    font-size: 1.6rem;
  }

  .card__body p {
    min-height: 0;
  }

  .result h3 {
    font-size: 1.45rem;
  }

  .review {
    padding: 26px;
  }

  .review__quote {
    min-height: 0;
  }

  .stats {
    gap: 8px;
    margin: -12px auto 32px;
  }

  .stars {
    font-size: 1.45rem;
  }

  .score {
    font-size: 2.25rem;
  }

  .faq-list {
    gap: 16px;
  }

  .faq-item {
    border-radius: 16px;
  }

  .faq-item summary {
    min-height: 68px;
    padding: 0 18px;
    gap: 14px;
    font-size: 1.2rem;
  }

  .faq-item p {
    margin: 0 16px 18px;
    padding: 18px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-item {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .contact-visual {
    min-height: 320px;
    border-radius: 16px;
  }

  .footer-newsletter {
    padding: 32px 20px 0;
  }

  .footer-main {
    display: block;
    padding: 48px 20px 32px;
  }

  .footer-main > div {
    padding: 18px 0;
    border-bottom: 1px solid rgba(223, 209, 198, .22);
  }

  .footer-main > div:first-child {
    border-bottom: 1px solid rgba(223, 209, 198, .22);
  }

  .footer-main h4 {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  .footer-main h4::after {
    content: "+";
    font-size: 1.35rem;
    letter-spacing: 0;
  }

  .footer-main .footer-section.is-open h4::after {
    content: "-";
  }

  .footer-main ul,
  .footer-main .footer-section p {
    display: none;
    margin-top: 18px;
  }

  .footer-main .footer-section.is-open ul,
  .footer-main .footer-section.is-open p {
    display: block;
  }

  .footer-logo p,
  .footer-logo .socials {
    display: flex;
  }

  .footer-bottom {
    gap: 10px;
    padding: 24px 20px;
    text-align: center;
  }
}
