/* ============================================================
   DAELIE SKIN STUDIO — MAIN STYLESHEET
   Reference: skinconcept.pl structural clone
   ============================================================ */

/* Placeholder fonts. Replace with Novela and Basier Square once licensed from atipofoundry.com to match the reference site exactly. */
:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'General Sans', 'Inter', sans-serif;

  --color-bg: #ebe6df;
  --color-text: #222222;
  --color-accent-blue: #1E3FD1;
  --color-white: #ffffff;
  --color-dark: #1a1a1a;
  --color-dark-band: #1c1c1c;

  --nav-font-size: 15.75px;
  --h1-size: 54px;
  --h1-line-height: 67.5px;
  --testimonial-size: 40.5px;

  --transition-base: 0.35s ease;
  --max-width: 1440px;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&family=Inter:wght@300;400;500&display=swap');

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img, video {
  display: block;
  max-width: 100%;
}

ul { list-style: none; }

button {
  font-family: var(--font-ui);
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: grid;
  font-family: var(--font-ui);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 28px 48px 0;
  height: 146px;
  background-color: var(--color-bg);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.site-header .header-center,
.site-header .header-left .nav-link,
.site-header .header-book,
.site-header .header-right > .nav-link {
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.site-header.header-soft .header-center,
.site-header.header-soft .header-left > .nav-link,
.site-header.header-soft .header-book,
.site-header.header-soft .header-right > .nav-link {
  opacity: 0.12;
}

.site-header.header-minimal .header-center,
.site-header.header-minimal .header-left > .nav-link,
.site-header.header-minimal .header-book,
.site-header.header-minimal .header-right > .nav-link {
  opacity: 0;
  pointer-events: none;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.header-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-center .logo img {
  height: 31px;
  width: auto;
}

.nav-link {
  font-size: var(--nav-font-size);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-text);
  transition: opacity var(--transition-base);
}

.nav-link:hover { opacity: 0.6; }

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--nav-font-size);
  font-weight: 400;
  letter-spacing: 0.02em;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--color-text);
  font-family: var(--font-ui);
  transition: opacity var(--transition-base);
}

.nav-dropdown-trigger:hover { opacity: 0.6; }

.nav-dropdown-trigger .arrow {
  display: inline-block;
  width: 10px;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23222' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.25s ease;
}

.nav-dropdown.open .nav-dropdown-trigger .arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  background: var(--color-bg);
  border: 1px solid rgba(34,34,34,0.1);
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(34,34,34,0.06);
  transition: background var(--transition-base);
}

.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: rgba(34,34,34,0.04); }

.header-book {
  font-size: var(--nav-font-size);
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: opacity var(--transition-base);
}

.header-book:hover { opacity: 0.6; }

.cart-icon {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: opacity var(--transition-base);
}

.cart-icon:hover { opacity: 0.6; }

.cart-icon svg {
  width: 22px;
  height: 22px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  transition: all 0.3s ease;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a,
.mobile-nav button {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  font-family: var(--font-ui);
}

.mobile-submenu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: -8px;
}

.mobile-submenu a {
  font-size: 18px !important;
  font-family: var(--font-ui) !important;
}

/* ============================================================
   PAGE WRAPPER (accounts for fixed header)
   ============================================================ */
.page-content {
  padding-top: 146px;
}

/* ============================================================
   CTA LINK STYLE (text + circled arrow)
   ============================================================ */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: var(--nav-font-size);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: gap var(--transition-base), opacity var(--transition-base);
}

.cta-link:hover { gap: 18px; opacity: 0.7; }

.cta-link .circle-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background var(--transition-base), color var(--transition-base);
}

.cta-link:hover .circle-arrow {
  background: var(--color-text);
  color: var(--color-bg);
}

.cta-link .circle-arrow svg {
  width: 14px;
  height: 14px;
}

/* White variant */
.cta-link.white {
  color: var(--color-white);
}

.cta-link.white .circle-arrow {
  border-color: var(--color-white);
}

.cta-link.white:hover .circle-arrow {
  background: var(--color-white);
  color: var(--color-dark);
}

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-tag {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
  font-family: var(--font-ui);
}

/* ============================================================
   4.1 HERO
   ============================================================ */
.hero {
  overflow: hidden;
  position: relative;
  min-height: 1120px;
  padding-top: 55px;
}

.hero-grid {
  display: flex;
  gap: 7.2vw;
  align-items: flex-start;
  margin-left: 5vw;
  overflow: visible;
}

.hero-tile {
  flex: 0 0 17.1vw;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  background: rgba(34,34,34,0.06);
}

.hero-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Staggered offsets measured against the Skin Concept hero rhythm. */
.hero-tile:nth-child(1) { height: 24.25vw; margin-top: 8.35vw; }
.hero-tile:nth-child(2) { height: 24.25vw; margin-top: 0; }
.hero-tile:nth-child(3) { height: 24.25vw; margin-top: 4.2vw; }
.hero-tile:nth-child(4) { height: 22.7vw; margin-top: 12.55vw; }

.hero-content {
  position: absolute;
  top: calc(55px + 24.25vw + 46px);
  left: calc(5vw + 17.1vw + 7.2vw);
  width: min(620px, 36vw);
  padding: 0;
  max-width: none;
  margin: 0;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(94,75,70,0.72);
  margin-bottom: 18px;
  opacity: 1;
  white-space: nowrap;
  font-weight: 300;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--h1-size);
  line-height: var(--h1-line-height);
  font-weight: 300;
  color: rgba(34,34,34,0.92);
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 58px;
  flex-wrap: wrap;
  margin-top: 56px;
  width: min(820px, calc(100vw - 18vw));
}

.hero-ctas .cta-link {
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 19px;
}

/* ============================================================
   HOME EDITORIAL SECTIONS
   ============================================================ */
.section-rule {
  width: min(1520px, calc(100vw - 260px));
  height: 1px;
  background: rgba(34,34,34,0.1);
  margin: 0 auto;
}

.brand-statement-section {
  padding: 0 0 46px;
}

.brand-statement {
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.18;
  font-weight: 300;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(94,75,70,0.74);
  max-width: 1120px;
  margin: 0 auto;
  padding: 84px 24px 88px;
}

.expect-feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(1790px, calc(100vw - 18px));
  height: 680px;
  margin: 0 auto 92px;
  background: rgba(235,230,223,0.78);
}

.expect-feature-image {
  overflow: hidden;
}

.expect-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expect-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 8vw;
  background: rgba(235,230,223,0.92);
}

.expect-feature-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(31px, 2.55vw, 48px);
  line-height: 1.65;
  font-weight: 300;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: rgba(94,75,70,0.78);
  max-width: 640px;
  margin-bottom: 92px;
}

.outline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 276px;
  height: 92px;
  border: 1px solid var(--color-text);
  font-family: var(--font-ui);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--transition-base), color var(--transition-base);
}

.outline-cta:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

.reviews-scroll-section {
  overflow: hidden;
  padding: 20px 0 96px;
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 24px;
  padding: 18px 0;
  animation: review-scroll 62s linear infinite;
  will-change: transform;
}

.review-card {
  flex: 0 0 250px;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 28px;
  border: 1px solid rgba(94,75,70,0.14);
  border-radius: 28px;
  background: rgba(244,241,236,0.72);
  box-shadow: 0 20px 44px rgba(34,34,34,0.045);
  color: rgba(34,34,34,0.9);
}

.review-card:nth-child(even) {
  transform: translateY(28px);
}

.review-rating {
  font-family: var(--font-ui);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #8f766d;
}

.review-card p:not(.review-rating) {
  font-size: 28px;
  line-height: 1.16;
  font-weight: 300;
}

.review-card span {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(34,34,34,0.52);
}

.review-card-summary {
  background: rgba(94,75,70,0.1);
}

@keyframes review-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.pinned-story-section {
  position: relative;
  height: 300vh;
}

.pinned-story-panel {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 39% 61%;
  align-items: center;
  width: min(1600px, calc(100vw - 270px));
  margin: 0 auto;
}

.scroll-cue {
  position: absolute;
  left: 0;
  bottom: 84px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(94,75,70,0.62);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.pinned-story-panel.is-final-step .scroll-cue {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.scroll-cue-line {
  position: relative;
  width: 1px;
  height: 58px;
  overflow: hidden;
  background: rgba(94,75,70,0.18);
}

.scroll-cue-line span {
  position: absolute;
  left: 0;
  top: -28px;
  width: 1px;
  height: 28px;
  background: rgba(94,75,70,0.76);
  animation: scroll-cue-drop 1.65s ease-in-out infinite;
}

.scroll-cue-text {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes scroll-cue-drop {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  78% {
    opacity: 1;
  }
  100% {
    transform: translateY(88px);
    opacity: 0;
  }
}

.story-copy {
  position: relative;
  min-height: 420px;
}

.story-step {
  position: absolute;
  inset: 0 auto auto 0;
  width: min(430px, 100%);
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.story-step.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.story-step h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 3.2vw, 55px);
  line-height: 1.12;
  font-weight: 400;
  margin-bottom: 42px;
}

.story-step p {
  font-size: 21px;
  line-height: 1.45;
  letter-spacing: 0.01em;
  max-width: 430px;
  margin-bottom: 86px;
}

.story-step .cta-link {
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 20px;
}

.story-images {
  position: relative;
  height: 620px;
}

.story-image {
  position: absolute;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.6s ease;
  box-shadow: 0 22px 48px rgba(34,34,34,0.09);
}

.story-image.is-active {
  opacity: 1;
}

.story-image-back {
  left: 12%;
  top: 9%;
  width: 42%;
  height: 84%;
  transform: translateY(22px);
}

.story-image-front {
  right: 5%;
  top: 0;
  width: 44%;
  height: 78%;
  transform: translateY(-22px);
}

.story-image-back.is-active,
.story-image-front.is-active {
  transform: translateY(0);
}

.story-image[src*="feature-gift-card"],
.story-image[src*="product-aloe"] {
  object-fit: contain;
  background: #f4f1ec;
  padding: 34px;
}

.before-after-story .story-step h2 {
  font-weight: 300;
  letter-spacing: 0.02em;
}

.before-after-story .story-step p {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 300;
}

.before-after-images {
  height: 650px;
  perspective: 1200px;
}

.before-after-set {
  left: 7%;
  top: 3%;
  width: 88%;
  height: 92%;
  display: block;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.before-after-panel {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: #d8d0c7;
  box-shadow: 0 34px 64px rgba(34,34,34,0.15);
  transform-style: preserve-3d;
}

.before-after-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-card {
  left: 4%;
  top: 13%;
  width: 48%;
  height: 78%;
  transform: rotateY(-7deg) rotateZ(-1.5deg) translateZ(12px);
}

.after-card {
  right: 4%;
  top: 0;
  width: 48%;
  height: 84%;
  transform: rotateY(6deg) rotateZ(1.2deg) translateZ(54px);
  z-index: 2;
}

.before-after-panel span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 1;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(34,34,34,0.58);
  padding: 8px 10px;
  background: rgba(235,230,223,0.72);
  backdrop-filter: blur(8px);
}

.showcase-section {
  position: relative;
  min-height: 980px;
  padding: 108px 0 0;
  width: min(1520px, calc(100vw - 260px));
  margin: 0 auto;
  overflow: hidden;
}

.showcase-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 3.3vw, 58px);
  line-height: 1.12;
  font-weight: 400;
  margin-bottom: 44px;
}

.showcase-copy p {
  font-size: 21px;
  line-height: 1.42;
  max-width: 470px;
}

.showcase-link {
  position: absolute;
  top: 148px;
  right: 70px;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 21px;
}

.showcase-items {
  position: absolute;
  inset: auto 0 0 0;
  height: 560px;
  perspective: 1200px;
}

.showcase-item {
  position: absolute;
  display: block;
  color: var(--color-text);
  animation: product-float 9s ease-in-out infinite;
  transform-style: preserve-3d;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(34,34,34,0.12));
  transition: transform 0.45s ease, filter 0.45s ease;
}

.showcase-item:hover img {
  transform: translateY(-12px) scale(1.035);
  filter: drop-shadow(0 36px 42px rgba(34,34,34,0.16));
}

.showcase-item span {
  display: block;
  margin-top: 18px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.62;
}

.showcase-item-tilt {
  left: 5%;
  bottom: 70px;
  width: 310px;
  height: 250px;
  --base-rotate: 14deg;
  transform: rotate(var(--base-rotate));
}

.showcase-item-wide {
  left: 38%;
  bottom: 58px;
  width: 360px;
  height: 250px;
  animation-delay: -2s;
}

.showcase-item-wide img {
  object-fit: cover;
}

.showcase-item-product {
  right: 9%;
  bottom: 98px;
  width: 210px;
  height: 310px;
  animation-delay: -4.5s;
}

.showcase-item-lift {
  left: 22%;
  bottom: 285px;
  width: 210px;
  height: 270px;
  --base-rotate: -5deg;
  transform: rotate(var(--base-rotate));
  animation-delay: -1s;
}

.showcase-item-lift img,
.showcase-item-body img,
.showcase-item-nails img,
.showcase-item-brows img {
  object-fit: cover;
}

.showcase-item-body {
  left: 56%;
  bottom: 304px;
  width: 250px;
  height: 250px;
  --base-rotate: 4deg;
  transform: rotate(var(--base-rotate));
  animation-delay: -5.5s;
}

.showcase-item-nails {
  right: 1%;
  bottom: 338px;
  width: 178px;
  height: 220px;
  --base-rotate: -7deg;
  transform: rotate(var(--base-rotate));
  animation-delay: -3.25s;
}

.showcase-item-brows {
  left: 74%;
  bottom: 26px;
  width: 175px;
  height: 220px;
  --base-rotate: 6deg;
  transform: rotate(var(--base-rotate));
  animation-delay: -6.5s;
}

.showcase-item-gift-alt {
  left: 0;
  bottom: 326px;
  width: 210px;
  height: 150px;
  --base-rotate: -10deg;
  transform: rotate(var(--base-rotate));
  animation-delay: -7.5s;
}

@keyframes product-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(var(--base-rotate, 0deg));
  }
  50% {
    transform: translate3d(0, -22px, 34px) rotate(calc(var(--base-rotate, 0deg) * -0.45));
  }
}

/* ============================================================
   4.2 TESTIMONIAL
   ============================================================ */
.testimonial-section {
  padding: 100px 48px;
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: var(--testimonial-size);
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-text);
  max-width: 900px;
  margin: 0 auto;
  font-style: italic;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 1.2em;
  opacity: 0.4;
}

.testimonial-quote::after {
  content: '\201D';
  font-size: 1.2em;
  opacity: 0.4;
}

/* ============================================================
   4.3 PROMO BANNER
   ============================================================ */
.promo-banner {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-banner-bg {
  position: absolute;
  inset: 0;
  background: var(--color-dark);
}

.promo-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.promo-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
}

.promo-label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.promo-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.1;
}

.promo-availability {
  font-size: 14px;
  letter-spacing: 0.06em;
  opacity: 0.7;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.cta-pill {
  display: inline-block;
  padding: 16px 40px;
  background: var(--color-accent-blue);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: opacity var(--transition-base), transform var(--transition-base);
  font-family: var(--font-body);
}

.cta-pill:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ============================================================
   4.4 ABOUT US
   ============================================================ */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.about-content {
  padding: 80px 64px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 1.2;
}

.about-content p {
  font-size: 16px;
  line-height: 1.75;
  opacity: 0.85;
  margin-bottom: 16px;
}

.about-content p:last-of-type {
  margin-bottom: 40px;
}

.about-video {
  position: relative;
  overflow: hidden;
}

.about-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   4.5 WHAT TO EXPECT
   ============================================================ */
.expect-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--color-bg);
}

.expect-content {
  padding: 80px 64px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.expect-content h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 1.2;
}

.expect-content p {
  font-size: 16px;
  line-height: 1.75;
  opacity: 0.85;
  margin-bottom: 14px;
}

.expect-content p:last-of-type {
  margin-bottom: 40px;
}

.expect-image {
  position: relative;
  overflow: hidden;
}

.expect-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   4.6 TREATMENTS GRID
   ============================================================ */
.treatments-section {
  padding: 80px 0;
}

.treatments-heading {
  padding: 0 80px 48px;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  height: 520px;
}

.treatment-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-dark);
}

.treatment-tile-bg {
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  transition: transform 0.6s ease;
}

.treatment-tile:hover .treatment-tile-bg {
  transform: scale(1.04);
}

.treatment-tile-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity 0.4s ease;
}

.treatment-tile:hover .treatment-tile-bg img {
  opacity: 0.4;
}

.treatment-tile-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  z-index: 2;
  color: var(--color-white);
}

.treatment-tile-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
}

.treatment-tile-desc {
  font-size: 13px;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  max-width: 200px;
  margin-bottom: 16px;
}

.treatment-tile.in-view .treatment-tile-desc,
.treatment-tile:hover .treatment-tile-desc {
  opacity: 0.85;
  transform: translateY(0);
}

.treatment-tile .cta-link {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.08s, transform 0.4s ease 0.08s;
  font-size: 12px;
}

.treatment-tile.in-view .cta-link,
.treatment-tile:hover .cta-link {
  opacity: 1;
  transform: translateY(0);
}

/* Placeholder color blocks for tiles until images supplied */
.treatment-tile:nth-child(1) .treatment-tile-bg { background: #2a2520; }
.treatment-tile:nth-child(2) .treatment-tile-bg { background: #1e2225; }
.treatment-tile:nth-child(3) .treatment-tile-bg { background: #22201e; }
.treatment-tile:nth-child(4) .treatment-tile-bg { background: #1f2018; }
.treatment-tile:nth-child(5) .treatment-tile-bg { background: #22201a; }

/* ============================================================
   4.7 PRODUCTS & GIFT CARDS
   ============================================================ */
.products-section {
  padding: 80px 0 80px 80px;
  overflow: hidden;
}

.products-header {
  padding-right: 80px;
  margin-bottom: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.products-header h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.2;
}

.products-header p {
  max-width: 360px;
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.75;
  text-align: right;
}

.carousel-wrapper {
  position: relative;
}

.carousel-track-outer {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.product-card {
  flex: 0 0 300px;
  background: rgba(255,255,255,0.5);
  overflow: hidden;
}

.product-card-image {
  width: 100%;
  height: 340px;
  background: rgba(34,34,34,0.08);
  overflow: hidden;
  position: relative;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  opacity: 0.4;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card-info {
  padding: 20px 20px 24px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 6px;
}

.product-price {
  font-size: 14px;
  opacity: 0.65;
  margin-bottom: 16px;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--color-text);
  opacity: 0.7;
  transition: opacity 0.25s;
}

.product-cta:hover { opacity: 1; }

.carousel-controls {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  padding-right: 80px;
}

.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-text);
  border-radius: 50%;
  background: none;
  cursor: pointer;
  transition: background var(--transition-base), color var(--transition-base);
}

.carousel-btn:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

.carousel-btn svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   4.8 NEWSLETTER BAND
   ============================================================ */
.newsletter-band {
  background: var(--color-dark-band);
  color: var(--color-white);
  padding: 80px 48px;
  text-align: center;
}

.newsletter-band h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 12px;
}

.newsletter-band p {
  font-size: 15px;
  opacity: 0.6;
  margin-bottom: 36px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.newsletter-form input[type="email"] {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 15px;
  color: var(--color-white);
  padding: 14px 0;
  font-family: var(--font-body);
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-form button {
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 0 14px 20px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: opacity 0.25s;
}

.newsletter-form button:hover { opacity: 0.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-bg);
  border-top: 1px solid rgba(34,34,34,0.1);
  padding: 64px 80px 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  margin-bottom: 8px;
}

.footer-logo img {
  height: 28px;
  width: auto;
  margin-bottom: 8px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 15px;
  margin-bottom: 6px;
}

.footer-copyright {
  font-size: 12px;
  opacity: 0.5;
  margin-top: 8px;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 400;
}

.footer-col address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.75;
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col nav a {
  font-size: 14px;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.footer-col nav a:hover { opacity: 1; }

.footer-col .footer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col .footer-actions a {
  font-size: 14px;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.footer-col .footer-actions a:hover { opacity: 1; }

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.footer-instagram svg {
  width: 18px;
  height: 18px;
}

.footer-contact {
  margin-top: 16px;
  font-size: 13px;
  opacity: 0.65;
  line-height: 1.9;
}

.footer-contact a {
  transition: opacity 0.2s;
}

.footer-contact a:hover { opacity: 0.5; }

.footer-bottom {
  border-top: 1px solid rgba(34,34,34,0.08);
  padding-top: 24px;
  font-size: 12px;
  opacity: 0.45;
  text-align: center;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--color-dark-band);
  color: var(--color-white);
  width: min(420px, calc(100vw - 40px));
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  z-index: 2000;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  flex-direction: column;
  font-family: var(--font-ui);
}

.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 12px;
  line-height: 1.45;
  opacity: 0.9;
  flex: none;
  min-width: 0;
}

.cookie-banner p a {
  text-decoration: underline;
  opacity: 0.7;
}

.cookie-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0;
  font-size: 12px;
  letter-spacing: 0.02em;
  font-family: var(--font-ui);
  cursor: pointer;
  transition: opacity 0.2s;
}

.cookie-btn.accept {
  padding: 9px 18px;
  background: var(--color-white);
  color: var(--color-dark);
  border: 1px solid var(--color-white);
  border-radius: 4px;
}

.cookie-btn.preferences {
  background: none;
  color: var(--color-white);
  border: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-btn:hover { opacity: 0.75; }

/* Cookie preferences modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal {
  background: var(--color-bg);
  color: var(--color-text);
  padding: 48px;
  max-width: 520px;
  width: 90%;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.cookie-modal-overlay.open .cookie-modal {
  transform: translateY(0);
}

.cookie-modal h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 24px;
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(34,34,34,0.08);
}

.cookie-toggle-row:first-of-type { border-top: 1px solid rgba(34,34,34,0.08); }

.cookie-toggle-label {
  font-size: 15px;
}

.cookie-toggle-label small {
  display: block;
  font-size: 12px;
  opacity: 0.5;
  margin-top: 2px;
}

.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(34,34,34,0.2);
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.25s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.25s;
}

.toggle input:checked + .toggle-slider {
  background: var(--color-text);
}

.toggle input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-modal-actions button {
  flex: 1;
  min-width: 100px;
  padding: 12px 20px;
  font-size: 13px;
  letter-spacing: 0.06em;
  font-family: var(--font-body);
  cursor: pointer;
  transition: opacity 0.2s;
}

.cookie-modal-actions .btn-reject {
  background: none;
  border: 1px solid rgba(34,34,34,0.3);
  color: var(--color-text);
}

.cookie-modal-actions .btn-allow {
  background: var(--color-text);
  border: 1px solid var(--color-text);
  color: var(--color-bg);
}

.cookie-modal-actions .btn-save {
  background: none;
  border: 1px solid rgba(34,34,34,0.3);
  color: var(--color-text);
}

.cookie-modal-actions button:hover { opacity: 0.75; }

/* ============================================================
   CALLBACK MODAL
   ============================================================ */
.callback-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.callback-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.callback-modal {
  background: var(--color-bg);
  padding: 52px 48px;
  max-width: 480px;
  width: 90%;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.callback-modal-overlay.open .callback-modal {
  transform: translateY(0);
}

.callback-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  color: var(--color-text);
  opacity: 0.5;
  transition: opacity 0.2s;
}

.callback-modal-close:hover { opacity: 1; }
.callback-modal { position: relative; }

.callback-modal h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 8px;
}

.callback-modal .phone-display {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 28px;
  opacity: 0.7;
}

.callback-modal p {
  font-size: 14px;
  opacity: 0.65;
  margin-bottom: 28px;
  line-height: 1.65;
}

.callback-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.callback-form input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(34,34,34,0.3);
  padding: 12px 0;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s;
}

.callback-form input:focus {
  border-color: var(--color-text);
}

.callback-form input::placeholder {
  opacity: 0.4;
}

.callback-submit {
  margin-top: 8px;
  padding: 16px;
  background: var(--color-text);
  color: var(--color-bg);
  border: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  transition: opacity 0.2s;
}

.callback-submit:hover { opacity: 0.8; }


/* ============================================================
   SERVICES PAGE
   ============================================================ */
.page-hero {
  padding: 80px 80px 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
}

.page-hero p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 680px;
  opacity: 0.8;
}

.services-list {
  padding: 0 80px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-list-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 48px;
  padding: 40px 0;
  border-top: 1px solid rgba(34,34,34,0.1);
}

.service-list-item:last-child {
  border-bottom: 1px solid rgba(34,34,34,0.1);
}

.service-list-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 10px;
}

.service-list-desc {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.7;
  max-width: 560px;
}

/* Age groups */
.age-groups-section {
  padding: 80px;
  background: rgba(34,34,34,0.03);
}

.age-groups-section h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 48px;
}

.age-groups-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.age-group h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(34,34,34,0.12);
}

.age-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.age-group p {
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.75;
  margin-bottom: 14px;
}

.age-group li {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.75;
  padding-left: 16px;
  position: relative;
}

.age-group li::before {
  content: '—';
  position: absolute;
  left: 0;
  opacity: 0.4;
}

/* ============================================================
   OUR PHILOSOPHY PAGE
   ============================================================ */
.philosophy-intro {
  padding: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.philosophy-intro h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 36px;
  line-height: 1.15;
}

.philosophy-intro p {
  font-size: 16px;
  line-height: 1.85;
  opacity: 0.8;
  max-width: 720px;
  margin-bottom: 20px;
}

.process-steps {
  padding: 0 80px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.process-steps h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(34,34,34,0.1);
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 36px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(34,34,34,0.08);
}

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  opacity: 0.15;
  line-height: 1;
  padding-top: 4px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 16px;
}

.step-content p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.75;
  max-width: 600px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  padding: 80px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-page h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 56px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(34,34,34,0.08);
}

.contact-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.45;
  padding-top: 2px;
}

.contact-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
}

.contact-value a {
  transition: opacity 0.2s;
}

.contact-value a:hover { opacity: 0.6; }

/* ============================================================
   STORE PAGE
   ============================================================ */
.store-page {
  padding: 0 80px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.store-filters {
  display: flex;
  gap: 4px;
  padding: 36px 0 48px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(34,34,34,0.08);
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 22px;
  font-size: 13px;
  letter-spacing: 0.06em;
  font-family: var(--font-body);
  cursor: pointer;
  border: 1px solid rgba(34,34,34,0.2);
  background: none;
  color: var(--color-text);
  transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.store-product-card {
  overflow: hidden;
}

.store-product-image {
  width: 100%;
  height: 320px;
  background: rgba(34,34,34,0.06);
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}

.store-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.store-product-card:hover .store-product-image img {
  transform: scale(1.04);
}

.store-product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  opacity: 0.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-product-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 4px;
}

.store-product-price {
  font-size: 14px;
  opacity: 0.6;
  margin-bottom: 14px;
}

.store-product-cta {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
  color: var(--color-text);
}

.store-product-cta:hover { opacity: 1; }

/* ============================================================
   SCROLL FADE-IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET (~768-1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .site-header {
    padding: 0 32px;
  }

  .hero {
    min-height: 670px;
    padding-top: 72px;
  }

  .hero-grid {
    gap: 5vw;
    margin-left: 4vw;
  }

  .hero-tile:nth-child(1), .hero-tile:nth-child(4) { flex: 0 0 22vw; }
  .hero-tile:nth-child(2), .hero-tile:nth-child(3) { flex: 0 0 18vw; }
  .hero-tile:nth-child(1) { height: 300px; margin-top: 100px; }
  .hero-tile:nth-child(2) { height: 330px; }
  .hero-tile:nth-child(3) { height: 300px; margin-top: 40px; }
  .hero-tile:nth-child(4) { height: 250px; margin-top: 140px; }
  .hero-headline { font-size: 42px; line-height: 54px; }
  .hero-content {
    top: 432px;
    left: calc(4vw + 22vw + 5vw);
    width: min(430px, 44vw);
    padding: 0;
    margin: 0;
  }

  .about-section,
  .expect-section {
    grid-template-columns: 1fr;
  }

  .about-video,
  .expect-image {
    height: 360px;
  }

  .about-content,
  .expect-content {
    padding: 56px 48px;
  }

  .treatments-grid {
    grid-template-columns: repeat(3, 1fr);
    height: auto;
  }

  .treatment-tile {
    height: 340px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .age-groups-grid {
    grid-template-columns: 1fr 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-section {
    padding: 80px 0 80px 48px;
  }

  .products-header {
    padding-right: 48px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .products-header p { text-align: left; }

  .store-page,
  .page-hero,
  .services-list,
  .age-groups-section,
  .philosophy-intro,
  .process-steps,
  .contact-page {
    padding-left: 48px;
    padding-right: 48px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤480px)
   ============================================================ */
@media (max-width: 768px) {
  .site-header {
    padding: 0 20px 16px;
    height: 72px;
    align-items: flex-end;
  }

  .page-content { padding-top: 72px; }

  .header-left,
  .header-right { display: none; }

  .menu-toggle { display: flex; }

  /* Hero mobile */
  .hero {
    min-height: auto;
    padding-top: 16px;
  }

  .hero-grid {
    flex-wrap: wrap;
    margin: 0 -8px;
    gap: 8px;
  }

  /* 2×2 grid on mobile — all 4 videos present */
  .hero-tile {
    flex: 0 0 calc(50% - 4px);
    border-radius: 8px;
  }

  .hero-tile:nth-child(1),
  .hero-tile:nth-child(2),
  .hero-tile:nth-child(3),
  .hero-tile:nth-child(4) {
    flex: 0 0 calc(50% - 4px);
    margin-top: 0;
  }

  .hero-tile:nth-child(1) { height: 200px; }
  .hero-tile:nth-child(2) { height: 220px; }
  .hero-tile:nth-child(3) { height: 200px; }
  .hero-tile:nth-child(4) { height: 180px; }

  .hero-content {
    position: static;
    width: auto;
    padding: 36px 20px 56px;
    max-width: 100%;
    margin-top: 0;
  }

  .hero-tagline {
    white-space: normal;
  }

  .hero-headline {
    font-size: 36px;
    line-height: 46px;
  }

  .testimonial-section { padding: 60px 24px; }
  .testimonial-quote { font-size: 26px; }

  .promo-banner { height: 380px; }
  .promo-title { font-size: 32px; }

  .about-section,
  .expect-section {
    grid-template-columns: 1fr;
  }

  .about-content,
  .expect-content {
    padding: 48px 24px;
  }

  .about-video { height: 280px; }
  .expect-image { height: 280px; }

  .treatments-section { padding: 48px 0; }
  .treatments-heading { padding: 0 24px 32px; }
  .treatments-grid {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  .treatment-tile { height: 260px; }

  .newsletter-band { padding: 56px 24px; }
  .newsletter-band h3 { font-size: 24px; }

  .site-footer { padding: 48px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .page-hero,
  .services-list,
  .age-groups-section,
  .philosophy-intro,
  .process-steps,
  .contact-page,
  .store-page {
    padding: 48px 24px;
  }

  .age-groups-grid { grid-template-columns: 1fr; }

  .products-grid { grid-template-columns: 1fr; }

  .products-section { padding: 48px 0 48px 24px; }
  .products-header { padding-right: 24px; }
  .carousel-controls { padding-right: 24px; }

  .process-step { grid-template-columns: 1fr; gap: 12px; }
  .step-number { font-size: 32px; }

  .contact-item { grid-template-columns: 1fr; gap: 8px; }
  .contact-value { font-size: 18px; }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    padding: 18px 18px;
    gap: 12px;
  }

  .cookie-banner p {
    font-size: 12px;
  }

  .cookie-actions {
    gap: 14px;
  }

  .cookie-btn {
    font-size: 12px;
  }

  .cookie-btn.accept {
    padding: 8px 16px;
  }
  .cookie-modal { padding: 32px 24px; }
  .callback-modal { padding: 40px 24px; }

  .treatments-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .treatment-tile { height: 220px; }
  .treatment-tile-desc { opacity: 0.85; transform: none; }
}

@media (max-width: 1200px) {
  .section-rule,
  .pinned-story-panel,
  .showcase-section {
    width: calc(100vw - 96px);
  }

  .expect-feature-section {
    width: calc(100vw - 96px);
    height: 560px;
  }

  .pinned-story-panel {
    grid-template-columns: 42% 58%;
  }

  .story-images {
    height: 540px;
  }

  .showcase-link {
    right: 0;
  }
}

@media (max-width: 1024px) {
  .hero-ctas {
    width: min(680px, calc(100vw - 96px));
    gap: 36px;
  }

  .brand-statement {
    padding: 72px 24px 76px;
  }

  .expect-feature-section {
    grid-template-columns: 1fr;
    height: auto;
  }

  .expect-feature-image {
    height: 460px;
  }

  .expect-feature-copy {
    min-height: 420px;
  }

  .reviews-track {
    animation-duration: 34s;
  }

  .review-card {
    flex-basis: 220px;
    min-height: 360px;
  }

  .pinned-story-section {
    height: auto;
  }

  .pinned-story-panel {
    position: relative;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 90px 0;
  }

  .story-copy {
    min-height: auto;
  }

  .story-step {
    position: relative;
    display: none;
    width: 100%;
  }

  .story-step.is-active {
    display: block;
  }

  .story-step p {
    margin-bottom: 42px;
  }

  .story-images {
    height: 520px;
  }

  .showcase-section {
    min-height: 900px;
  }

  .showcase-items {
    height: 470px;
  }

  .showcase-item-tilt {
    left: 0;
  }

  .showcase-item-wide {
    left: 34%;
  }

  .showcase-item-product {
    right: 0;
  }

  .showcase-item-lift {
    left: 12%;
    bottom: 270px;
    width: 170px;
    height: 210px;
  }

  .showcase-item-body {
    left: 50%;
    bottom: 284px;
    width: 210px;
    height: 210px;
  }

  .showcase-item-nails {
    right: 0;
    bottom: 294px;
    width: 140px;
    height: 178px;
  }

  .showcase-item-brows {
    left: 72%;
    bottom: 18px;
    width: 140px;
    height: 178px;
  }

  .showcase-item-gift-alt {
    left: 0;
    bottom: 338px;
    width: 160px;
    height: 115px;
  }
}

@media (max-width: 768px) {
  .site-header.header-soft .header-center,
  .site-header.header-soft .header-left > .nav-link,
  .site-header.header-soft .header-book,
  .site-header.header-soft .header-right > .nav-link,
  .site-header.header-minimal .header-center,
  .site-header.header-minimal .header-left > .nav-link,
  .site-header.header-minimal .header-book,
  .site-header.header-minimal .header-right > .nav-link {
    opacity: 1;
    pointer-events: auto;
  }

  .hero-ctas {
    width: 100%;
    gap: 22px;
    margin-top: 34px;
    padding-bottom: 44px;
  }

  .hero-ctas .cta-link {
    font-size: 16px;
  }

  .section-rule,
  .pinned-story-panel,
  .showcase-section,
  .expect-feature-section {
    width: calc(100vw - 40px);
  }

  .brand-statement-section {
    padding-bottom: 30px;
  }

  .brand-statement {
    font-size: 24px;
    line-height: 1.3;
    padding: 58px 8px 62px;
  }

  .expect-feature-section {
    margin-bottom: 54px;
    min-height: auto;
  }

  .expect-feature-image {
    height: 310px;
  }

  .expect-feature-copy {
    min-height: 340px;
    padding: 38px 24px;
  }

  .expect-feature-copy h2 {
    font-size: 25px;
    line-height: 1.55;
    margin-bottom: 44px;
  }

  .outline-cta {
    width: 100%;
    height: 68px;
  }

  .reviews-scroll-section {
    padding-bottom: 52px;
  }

  .reviews-track {
    gap: 16px;
    animation-duration: 28s;
  }

  .review-card {
    flex-basis: 196px;
    min-height: 310px;
    padding: 28px 22px;
    border-radius: 22px;
  }

  .review-card p:not(.review-rating) {
    font-size: 22px;
  }

  .review-card:nth-child(even) {
    transform: translateY(18px);
  }

  .pinned-story-panel {
    padding: 68px 0;
    gap: 36px;
  }

  .scroll-cue {
    left: 0;
    bottom: 390px;
    gap: 10px;
  }

  .scroll-cue-line {
    height: 42px;
  }

  .scroll-cue-text {
    font-size: 10px;
  }

  .story-step h2 {
    font-size: 38px;
    margin-bottom: 26px;
  }

  .story-step p {
    font-size: 18px;
    margin-bottom: 34px;
  }

  .story-images {
    height: 430px;
  }

  .before-after-images {
    height: 360px;
  }

  .before-after-set {
    left: 0;
    top: 0;
    width: 100%;
    height: 330px;
  }

  .before-card {
    left: 0;
    top: 46px;
    width: 58%;
    height: 260px;
    transform: rotateY(-5deg) rotateZ(-1.2deg) translateZ(8px);
  }

  .after-card {
    right: 0;
    top: 0;
    width: 58%;
    height: 280px;
    transform: rotateY(5deg) rotateZ(1deg) translateZ(36px);
  }

  .before-after-panel span {
    left: 16px;
    bottom: 16px;
  }

  .story-image-back {
    left: 0;
    top: 20px;
    width: 56%;
    height: 360px;
  }

  .story-image-front {
    right: 0;
    top: 0;
    width: 58%;
    height: 330px;
  }

  .showcase-section {
    min-height: 850px;
    padding-top: 72px;
  }

  .showcase-copy h2 {
    font-size: 40px;
    margin-bottom: 26px;
  }

  .showcase-copy p {
    font-size: 18px;
    max-width: 340px;
  }

  .showcase-link {
    position: static;
    margin-top: 32px;
    font-size: 17px;
  }

  .showcase-items {
    height: 410px;
  }

  .showcase-item span {
    display: none;
  }

  .showcase-item-tilt {
    left: 2%;
    bottom: 32px;
    width: 210px;
    height: 170px;
  }

  .showcase-item-wide {
    left: 26%;
    bottom: 94px;
    width: 210px;
    height: 160px;
  }

  .showcase-item-product {
    right: 0;
    bottom: 20px;
    width: 128px;
    height: 220px;
  }

  .showcase-item-lift {
    left: 0;
    bottom: 246px;
    width: 118px;
    height: 150px;
  }

  .showcase-item-body {
    left: 39%;
    bottom: 252px;
    width: 132px;
    height: 132px;
  }

  .showcase-item-nails,
  .showcase-item-brows,
  .showcase-item-gift-alt {
    display: none;
  }
}
