/* CSS ROLE: page-specific legacy CSS for index.html.
   Generated during CSS architecture split from darlings-pages.css.
   Keep only selectors scoped to body.page-index. */

body.page-index *::before,
body.page-index *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.page-index::before {
    content: "";
    position: fixed;
    top: env(safe-area-inset-top, 0px);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("../../grain-texture.svg");
    opacity: 0.025;
    mix-blend-mode: multiply;
}

body.page-index::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: env(safe-area-inset-top, 0px);
    z-index: 0;
    pointer-events: none;
    background: var(--bg);
}

body.page-index .bar {
    position: relative;
    z-index: 1;
    background: var(--ink);
    color: var(--bg);
    text-align: center;
    padding: 10px 16px;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 300;
    line-height: 1.5;
}

body.page-index .bar span {
    color: #c9a97a;
    font-weight: 400;
}

body.page-index .btn-cluster {
    display: flex;
    flex-direction: column;
    gap: 9px;
    max-width: 320px;
    margin: 0 auto;
}

body.page-index .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 24px;
    font-size: 12px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    font-weight: 400;
    text-align: center;
    transition: all 0.22s ease;
    font-family: "DM Sans", sans-serif;
    line-height: 1.4;
}

body.page-index .btn-primary {
    background: var(--ink);
    color: var(--bg);
    border: 1px solid var(--ink);
}

body.page-index .btn-primary:hover,
body.page-index .btn-primary:active {
    background: var(--gold);
    border-color: var(--gold);
}

body.page-index .btn-ghost {
    background: transparent;
    color: var(--mid);
    border: 1px solid var(--rule);
}

body.page-index .btn-ghost:hover,
body.page-index .btn-ghost:active {
    border-color: var(--ink);
    color: var(--ink);
}

@media (max-width: 640px) {
  body.page-index .btn-leave-review {
          background: var(--ink);
          color: var(--bg);
          border-color: var(--ink);
      }
}

body.page-index .contact-strip {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 18px clamp(16px, 5vw, 32px) 40px;
    max-width: 680px;
    margin: 0 auto;
    animation: fadeUp 1s 0.35s ease both;
}

body.page-index .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 4px 12px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mid);
    font-weight: 400;
    transition: color 0.2s;
    border-radius: 2px;
}

body.page-index .contact-item:active {
    color: var(--ink);
    background: rgba(0,0,0,0.03);
}

body.page-index .c-icon {
    width: 12px;
    height: 12px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.4;
    flex-shrink: 0;
}

body.page-index .services {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    padding: 0;
}

body.page-index .sub-label {
    font-size: 10px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin: 24px 0 4px;
}

body.page-index .svc-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--rule-lt);
    gap: 28px;
}

body.page-index .svc-row:last-of-type {
    border-bottom: none;
}

body.page-index .svc-name {
    font-size: 12px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--ink);
    flex: 1;
    line-height: 1.6;
    font-weight: 400;
}

body.page-index .svc-time {
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--gold);
    font-weight: 300;
    white-space: nowrap;
    flex-shrink: 0;
    margin: 0 clamp(12px,3vw,24px);
}

body.page-index .svc-note {
    display: block;
    font-size: 10px;
    letter-spacing: 1.6px;
    color: var(--dust);
    margin-top: 3px;
    font-weight: 300;
    text-transform: uppercase;
}

body.page-index .svc-price {
    font-family: "EB Garamond", serif;
    font-size: 21px;
    font-weight: 400;
    color: var(--ink);
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 640px) {
  body.page-index #body-laser .svc-time {
          display: none;
      }
}

@media (max-width: 640px) {
  body.page-index #body-laser .svc-row {
          align-items: flex-start;
          gap: 12px;
      }
}

@media (max-width: 640px) {
  body.page-index #body-laser .svc-name {
          flex: 1;
          min-width: 0;
      }
}

@media (max-width: 640px) {
  body.page-index #body-laser .svc-note {
          white-space: normal;
          display: block;
          line-height: 1.7;
      }
}

@media (max-width: 640px) {
  body.page-index #body-laser .svc-price {
          padding-top: 1px;
          flex-shrink: 0;
      }
}

@media (max-width: 640px) {
  body.page-index .mobile-br {
          display: block;
      }
}

body.page-index .btn-book-desktop:hover,
body.page-index .btn-book-desktop:active {
    background: #D38C9D;
    border-color: #D38C9D;
    color: var(--ink);
}

body.page-index main {
    max-width: 100%;
    overflow-x: clip;
}

@supports not (overflow: clip) {
  body.page-index main {
          overflow-x: hidden;
      }
}


body.page-index .rev-section {
    background: #f0eeea;
    padding: clamp(56px,10vw,80px) 0;
    border-top: 1px solid #d9d3c8;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: min(100%, 760px);
    margin: 0 auto;
}

body.page-index .rev-head {
    padding: 0 clamp(24px,5vw,64px);
    margin-bottom: clamp(8px,2vw,12px);
    order: 1;
}

body.page-index .rev-subline {
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #9b7e58;
    font-weight: 300;
    margin-bottom: clamp(12px,2vw,16px);
}

body.page-index .rev-head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: clamp(28px,5vw,44px);
}

body.page-index .rev-title {
    font-family: "EB Garamond",serif;
    font-size: clamp(28px,5vw,42px);
    font-weight: 400;
    color: #1c1813;
    line-height: 1.1;
}

body.page-index .rev-google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border: 1px solid #9b7e58;
    background: transparent;
    color: #1c1813;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    font-family: "DM Sans",sans-serif;
    white-space: nowrap;
    transition: background .2s,border-color .2s,color .2s;
}

body.page-index .rev-google-btn:hover {
    background: #9b7e58;
    border-color: #9b7e58;
    color: #f0eeea;
}

body.page-index .rev-google-btn-mobile {
    display: none;
}

body.page-index .rev-stars-row {
    display: flex;
    gap: 3px;
    align-items: center;
}

body.page-index .rev-star {
    width: 12px;
    height: 12px;
    fill: #9b7e58;
}

body.page-index .rev-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 0 clamp(24px,5vw,64px) 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    order: 2;
}

body.page-index .rev-track::-webkit-scrollbar {
    display: none;
}

body.page-index .rev-track.rev-dragging {
    cursor: grabbing;
    user-select: none;
}

body.page-index .rev-card {
    flex: 0 0 min(320px,78vw);
    scroll-snap-align: start;
    background: #e8e5df;
    border: 1px solid #d9d3c8;
    padding: clamp(20px,3vw,28px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

body.page-index .rev-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body.page-index .rev-card-date {
    font-size: 10px;
    letter-spacing: 1px;
    color: #a89b8c;
    font-weight: 300;
}

body.page-index .rev-text {
    font-family: "EB Garamond",serif;
    font-size: 16px;
    font-style: italic;
    line-height: 1.8;
    color: #3a3330;
    flex: 1;
}

body.page-index .rev-author-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #d9d3c8;
}

body.page-index .rev-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #9b7e58;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    letter-spacing: 0.5px;
    color: #f0eeea;
    font-weight: 400;
    flex-shrink: 0;
    font-family: "DM Sans",sans-serif;
}

body.page-index .rev-name {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1c1813;
    font-weight: 400;
}

body.page-index .rev-footer {
    padding: clamp(20px,3vw,28px) clamp(24px,5vw,64px) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    order: 3;
}

body.page-index .rev-dots {
    display: flex;
    gap: 5px;
    align-items: center;
}

body.page-index .rev-dot {
    height: 1px;
    background: #d9d3c8;
    transition: all .25s;
}

body.page-index .rev-dot.rev-active {
    background: #9b7e58;
    width: 20px;
}

body.page-index .rev-dot:not(.rev-active) {
    width: 6px;
}

body.page-index .rev-nav {
    display: flex;
    gap: 8px;
}

body.page-index .rev-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #d9d3c8;
    border-radius: 50%;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    -webkit-tap-highlight-color: transparent;
}

body.page-index .rev-btn:hover {
    background: #1c1813;
    border-color: #1c1813;
}

body.page-index .rev-btn:hover .rev-arr {
    stroke: #f0eeea;
}

body.page-index .rev-arr {
    stroke: #1c1813;
    transition: stroke .2s;
}

body.page-index .rev-leave {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a89b8c;
    font-weight: 300;
    text-decoration: none;
    transition: color .2s;
    font-family: "DM Sans",sans-serif;
}

body.page-index .rev-leave:hover {
    color: #9b7e58;
}

body.page-index .rev-footer-main {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex: 1;
    flex-wrap: wrap;
}

body.page-index .rev-footer-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

body.page-index .rev-leave-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 12px 18px;
    border: 1px solid #1c1813;
    background: #1c1813;
    color: #f0eeea;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    font-family: "DM Sans",sans-serif;
    transition: background .2s,border-color .2s,color .2s;
}

body.page-index .rev-leave-btn:hover {
    background: #9b7e58;
    border-color: #9b7e58;
    color: #f0eeea;
}

@media (max-width: 640px) {
  body.page-index .rev-section {
          padding-top: 100px;
          margin-top: -20px;
      }
}

@media (max-width: 640px) {
  body.page-index .rev-head {
          margin-bottom: 8px;
      }
}

@media (max-width: 640px) {
  body.page-index .rev-head-row {
          align-items: flex-start;
          margin-bottom: 20px;
      }
}

@media (max-width: 640px) {
  body.page-index .rev-subline {
          margin-bottom: 14px;
      }
}

@media (max-width: 640px) {
  body.page-index .rev-google-btn {
          display: none;
      }
}

@media (max-width: 640px) {
  body.page-index .rev-footer {
          order: 2;
          padding-top: 0;
          padding-bottom: 18px;
      }
}

@media (max-width: 640px) {
  body.page-index .rev-track {
          order: 3;
      }
}

@media (max-width: 640px) {
  body.page-index .rev-footer-main {
          width: 100%;
          justify-content: space-between;
      }
}

@media (max-width: 640px) {
  body.page-index .rev-footer-actions {
          width: 100%;
          justify-content: space-between;
          align-items: center;
      }
}

@media (max-width: 640px) {
  body.page-index .rev-nav {
          margin-left: auto;
      }
}

@media (max-width: 640px) {
  body.page-index .rev-google-btn-mobile {
          display: inline-flex;
          width: calc(100% - 48px);
          margin: 20px 24px 0;
          min-height: 44px;
          align-items: center;
          justify-content: center;
          order: 4;
      }
}

body.page-index .home-stats-section {
    padding: clamp(52px,9vw,80px) clamp(24px,5vw,48px);
    background: var(--bg);
    border-top: 1px solid #d9d3c8;
}

body.page-index .home-stats-inner {
    max-width: 760px;
    margin: 0 auto;
}

body.page-index .home-stats-rule {
    width: 100%;
    height: 1px;
    background: #d9d3c8;
    margin-bottom: clamp(34px,5vw,48px);
}

body.page-index .home-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

body.page-index .home-stat {
    min-width: 0;
    min-height: 184px;
    border: 1px solid #e2dcd2;
    background: #f5f3ef;
    padding: 22px 18px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

body.page-index .home-stat-number {
    display: block;
    font-family: "EB Garamond",serif;
    font-size: clamp(46px,5.2vw,64px);
    font-weight: 400;
    line-height: .9;
    color: #1c1813;
    margin-bottom: 12px;
    white-space: nowrap;
    letter-spacing: -.03em;
}

body.page-index .home-stat-number--compact {
    font-size: clamp(40px,4.6vw,56px);
}

body.page-index .home-stat-number--long {
    font-size: clamp(34px,4.1vw,50px);
}

body.page-index .home-stat-number--rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

body.page-index .home-stat-star {
    font-size: .92em;
    line-height: 1;
}

body.page-index .home-stat-label {
    display: block;
    font-size: 10px;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    color: #9b7e58;
    font-weight: 300;
    line-height: 1.6;
}

@media (max-width: 900px) {
  body.page-index .home-stats-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
}

@media (max-width: 900px) {
  body.page-index .home-stat {
          min-height: 168px;
      }
}

@media (max-width: 640px) {
  body.page-index .home-stats-section {
          padding-top: 44px;
          padding-bottom: 56px;
      }
}

@media (max-width: 640px) {
  body.page-index .home-stats-rule {
          margin-bottom: 28px;
      }
}

@media (max-width: 640px) {
  body.page-index .home-stats-grid {
          gap: 12px;
      }
}

@media (max-width: 640px) {
  body.page-index .home-stat {
          min-height: 138px;
          padding: 18px 14px 16px;
      }
}

@media (max-width: 640px) {
  body.page-index .home-stat-number {
          font-size: clamp(34px, 10vw, 48px);
          margin-bottom: 8px;
      }
}

@media (max-width: 640px) {
  body.page-index .home-stat-number--compact {
          font-size: clamp(31px, 8.6vw, 42px);
      }
}

@media (max-width: 640px) {
  body.page-index .home-stat-number--long {
          font-size: clamp(27px, 7.8vw, 38px);
      }
}

@media (max-width: 640px) {
  body.page-index .home-stat-number--rating {
          gap: 8px;
      }
}

@media (max-width: 640px) {
  body.page-index .home-stat-label {
          font-size: 8px;
          letter-spacing: 2.4px;
          line-height: 1.5;
      }
}

body.page-index .home-salon-section {
    padding: clamp(56px,10vw,84px) 0;
    background: var(--bg);
    border-top: 1px solid #d9d3c8;
}

body.page-index .home-salon-inner {
    max-width: 1080px;
    margin: 0 auto;
}

body.page-index .home-salon-head {
    padding: 0 clamp(24px,5vw,64px);
    margin-bottom: clamp(28px,5vw,40px);
}

body.page-index .home-salon-label {
    display: block;
    font-size: 9px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: #9b7e58;
    font-weight: 300;
    margin-bottom: 12px;
}

body.page-index .home-salon-title {
    font-family: "EB Garamond",serif;
    font-size: clamp(28px,5vw,42px);
    font-weight: 400;
    color: #1c1813;
    line-height: 1.08;
}

body.page-index .home-salon-strip {
    display: flex;
    gap: clamp(8px,1vw,10px);
    overflow-x: auto;
    padding: 0 clamp(24px,5vw,64px);
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

body.page-index .home-salon-strip::-webkit-scrollbar {
    display: none;
}

body.page-index .home-salon-strip.grabbing {
    cursor: grabbing;
}

body.page-index .home-salon-item {
    flex-shrink: 0;
    overflow: hidden;
    scroll-snap-align: start;
    background: #e8e5df;
    position: relative;
    cursor: pointer;
}

body.page-index .home-salon-item.wide {
    width: clamp(240px,38vw,480px);
}

body.page-index .home-salon-item.tall {
    width: clamp(150px,22vw,280px);
}

body.page-index .home-salon-item img {
    width: 100%;
    height: clamp(220px,28vw,340px);
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

body.page-index .home-salon-item:hover img {
    transform: scale(1.03);
}

body.page-index .home-salon-item:focus-visible {
    outline: 2px solid #9b7e58;
    outline-offset: 4px;
}

body.page-index .home-salon-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: clamp(18px,3vw,22px) clamp(24px,5vw,64px) 0;
}

body.page-index .home-salon-bar-track {
    flex: 1;
    height: 1px;
    background: #d9d3c8;
    position: relative;
}

body.page-index .home-salon-bar-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 25%;
    background: #9b7e58;
    transition: width .3s ease;
}

body.page-index .home-salon-hint {
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #a89b8c;
    font-weight: 300;
    white-space: nowrap;
}

body.page-index.home-salon-lightbox-open {
    overflow: hidden;
}

body.page-index .home-salon-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1400;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

body.page-index .home-salon-lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

body.page-index .home-salon-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16,13,10,.88);
}

body.page-index .home-salon-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(100vw - 32px, 1080px);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 0 32px;
}

body.page-index .home-salon-lightbox-figure {
    margin: 0;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: none;
    user-select: none;
    cursor: grab;
}

body.page-index .home-salon-lightbox-figure.is-dragging {
    cursor: grabbing;
}

body.page-index .home-salon-lightbox-figure img {
    display: block;
    max-width: min(100%, 940px);
    max-height: calc(100vh - 140px);
    width: auto;
    height: auto;
    object-fit: contain;
    background: #f0eeea;
    box-shadow: 0 24px 64px rgba(0,0,0,0.28);
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

body.page-index .home-salon-lightbox-close {
    position: absolute;
    top: 18px;
    right: 0;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(240,238,234,0.26);
    background: rgba(240,238,234,0.06);
    color: #f0eeea;
    backdrop-filter: blur(6px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    line-height: 1;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

body.page-index .home-salon-lightbox-close:hover,
body.page-index .home-salon-lightbox-close:active {
    background: rgba(240,238,234,0.12);
    border-color: rgba(240,238,234,0.46);
    transform: translateY(-1px);
}

@media (max-width: 640px) {
  body.page-index .home-salon-section {
          padding: 48px 0 56px;
      }
}

@media (max-width: 640px) {
  body.page-index .home-salon-head {
          margin-bottom: 24px;
      }
}

@media (max-width: 640px) {
  body.page-index .home-salon-item.wide {
          width: min(78vw, 320px);
      }
}

@media (max-width: 640px) {
  body.page-index .home-salon-item.tall {
          width: min(48vw, 190px);
      }
}

@media (max-width: 640px) {
  body.page-index .home-salon-item img {
          height: 220px;
      }
}

@media (max-width: 640px) {
  body.page-index .home-salon-progress {
          padding-top: 16px;
      }
}

@media (max-width: 640px) {
  body.page-index .home-salon-lightbox-dialog {
          width: calc(100vw - 20px);
          padding: 72px 0 22px;
      }
}

@media (max-width: 640px) {
  body.page-index .home-salon-lightbox-figure img {
          max-height: calc(100vh - 120px);
      }
}

@media (max-width: 640px) {
  body.page-index .home-salon-lightbox-close {
          top: 10px;
          right: 0;
          width: 44px;
          height: 44px;
      }
}

@media (prefers-reduced-motion: reduce) {
  body.page-index .home-salon-item img,
  body.page-index .home-salon-bar-fill,
  body.page-index .home-salon-lightbox,
  body.page-index .home-salon-lightbox-close {
          transition: none;
      }
}

body.page-index .why-darlings-section {
    padding: clamp(56px,10vw,80px) 0 clamp(52px,8vw,68px);
    background: #e8e5df;
    border-top: 1px solid #d9d3c8;
    border-bottom: 1px solid #d9d3c8;
    overflow: hidden;
}

body.page-index .why-darlings-inner {
    max-width: 1080px;
    margin: 0 auto;
}

body.page-index .why-darlings-head {
    padding: 0 clamp(24px,5vw,48px);
    margin-bottom: clamp(28px,5vw,40px);
}

body.page-index .why-darlings-title {
    margin: 0;
}

body.page-index .why-darlings-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 0 clamp(24px,5vw,48px);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
}

body.page-index .why-darlings-track::-webkit-scrollbar {
    display: none;
}

body.page-index .why-darlings-track.why-darlings-dragging {
    cursor: grabbing;
    user-select: none;
}

body.page-index .why-card {
    flex: 0 0 min(320px,78vw);
    scroll-snap-align: start;
    background: #f0eeea;
    border: 1px solid #d9d3c8;
    padding: clamp(22px,3vw,30px);
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

body.page-index .why-card-num {
    font-size: 10px;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: #9b7e58;
    font-weight: 300;
    margin-bottom: 18px;
}

body.page-index .why-card-title {
    font-family: "EB Garamond",serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.16;
    color: #1c1813;
    margin-bottom: 18px;
}

body.page-index .why-card-text {
    font-size: 15px;
    line-height: 1.85;
    color: #6e6660;
    font-weight: 300;
}

body.page-index .why-darlings-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: clamp(20px,3vw,28px) clamp(24px,5vw,48px) 0;
}

body.page-index .why-darlings-bar-track {
    flex: 1;
    height: 1px;
    background: #d9d3c8;
    position: relative;
}

body.page-index .why-darlings-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 25%;
    background: #9b7e58;
    transition: width .3s ease;
}

body.page-index .why-darlings-hint {
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #a89b8c;
    font-weight: 300;
    white-space: nowrap;
}

@media (max-width:640px) {
  body.page-index .why-darlings-head {
          text-align: center;
      }
}

@media (max-width:640px) {
  body.page-index .why-card {
          min-height: 280px;
      }
}

@media (max-width:640px) {
  body.page-index .why-card-title {
          font-size: 22px;
      }
}

@media (max-width:640px) {
  body.page-index .why-card-text {
          font-size: 14px;
      }
}

body.page-index,
body.page-index main {
    background: var(--bg);
}

body.page-index .first-visit-popup {
    position: fixed;
    inset: 0;
    z-index: 1400;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: transparent;
    transition: opacity .25s ease, visibility 0s linear .25s;
}

body.page-index .first-visit-popup.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .25s ease;
}

body.page-index .first-visit-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12,10,8,0.58);
}

body.page-index .first-visit-popup-card {
    position: relative;
    z-index: 1;
    width: min(520px, calc(100vw - 32px));
    margin: min(14vh, 120px) auto 0;
    background: #f6f2ec;
    border: 1px solid #d9d3c8;
    box-shadow: 0 24px 70px rgba(28,24,19,0.18);
    padding: clamp(28px,5vw,42px);
}

body.page-index .first-visit-popup-kicker {
    display: block;
    margin-bottom: 16px;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #9b7e58;
}

body.page-index .first-visit-popup-title {
    font-family: "EB Garamond",serif;
    font-size: clamp(34px,7vw,52px);
    line-height: 0.98;
    font-weight: 400;
    color: #1c1813;
    margin-bottom: 16px;
    max-width: 340px;
}

body.page-index .first-visit-popup-text {
    font-size: 13px;
    line-height: 1.9;
    color: #6e6660;
    font-weight: 300;
    margin-bottom: 26px;
    max-width: 360px;
}

body.page-index .first-visit-popup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    background: #1c1813;
    color: #f0eeea;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s ease;
}

body.page-index .first-visit-popup-btn:hover,
body.page-index .first-visit-popup-btn:active {
    background: #9b7e58;
}

body.page-index .first-visit-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    border: 1px solid #d9d3c8;
    border-radius: 50%;
    background: transparent;
    color: #1c1813;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}

body.page-index .first-visit-popup-close:hover,
body.page-index .first-visit-popup-close:active {
    border-color: #9b7e58;
    color: #9b7e58;
    background: rgba(155,126,88,0.06);
}

@media (max-width:640px) {
  body.page-index .first-visit-popup-card {
          margin-top: max(72px, env(safe-area-inset-top, 0px) + 24px);
      }
}

@media (max-width:640px) {
  body.page-index .first-visit-popup-title {
          max-width: none;
      }
}

body.page-index .rev-title,
body.page-index .home-salon-title,
body.page-index .why-darlings-title {
    font-family: "EB Garamond", serif;
    font-size: clamp(28px,6vw,44px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0;
}

body.page-index .home-find-desc,
body.page-index .home-find-address,
body.page-index .home-find-phone,
body.page-index .why-desc {
    font-size: var(--index-body-size);
    line-height: var(--index-body-line);
    font-weight: 300;
}

body.page-index .svc-name {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 1.2px;
}

body.page-index .svc-time {
    font-size: 12px;
    line-height: 1.6;
}

body.page-index .svc-note {
    font-size: 11px;
    line-height: 1.55;
    letter-spacing: 1.2px;
}

@media (max-width: 640px) {
  body.page-index .svc-name {
          font-size: 13px;
      }
}

@media (max-width: 640px) {
  body.page-index .svc-time {
          font-size: 11px;
      }
}

@media (max-width: 640px) {
  body.page-index .svc-note {
          font-size: 10px;
          letter-spacing: 1px;
      }
}

@media (min-width: 641px) {
  body.page-index .contact-strip,
  body.page-index .services,
  body.page-index .rev-inner,
  body.page-index .home-stats-inner,
  body.page-index .home-salon-inner,
  body.page-index .why-darlings-inner,
  body.page-index .home-visit-inner {
          max-width: 760px;
          margin-left: auto;
          margin-right: auto;
      }
}

body.page-index .u-index-001 {
    flex: 0 0 clamp(8px,4vw,40px);
    flex-shrink: 0;
}

body.page-index .u-index-002 {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a89b8c;
    font-weight: 300;
    font-family: 'DM Sans',sans-serif;
}

body.page-index .u-index-003 {
    margin-bottom: 8px;
    margin-top: 4px;
}

body.page-index .u-index-004 {
    height: clamp(80px,14vw,128px);
    background: var(--bg);
}
