/* ==============================================================
   DESIGN SYSTEM
   All values extracted from Figma: tEKpQnAKqjMBXI8mVLoGFq / node 1-444
   ============================================================== */

/* Local fallback declaration; Google Fonts URL already uses `display=swap` */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: local("Inter");
}

:root {
  /* ── Colours ─────────────────────────────────────────────────*/
  --c-dark: #1a1a17;
  --c-white: #ffffff;
  --c-surface: #fafafa;
  --c-ink: #1e1e1e;
  --c-nav: #ececed;
  --c-accent: #ebdce2; /* Figma "Accent" — badge icon fill */
  --c-sep-v: rgba(255, 255, 255, 0.16);
  --c-sep-h: rgba(236, 236, 237, 0.16);

  --gradient-hero: linear-gradient(
    180deg,
    rgba(26, 26, 23, 0.25) 0%,
    rgba(26, 26, 23, 0.8) 100%
  );

  /* ── Typography ──────────────────────────────────────────────*/
  --ff-base: "Inter", sans-serif;
  --fs-h1: clamp(2rem, 2.222vw + 1.5rem, 3.5rem); /* 32→56px */
  --fs-body: 1rem; /* 16px */
  --fs-small: 0.875rem; /* 14px */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --lh-tight: 1;
  --lh-body: 1.5;
  --lh-btn: 1.4286;
  --ls-h1: -0.02em;
  --ls-btn: -0.01em;

  /* ── Spacing (Figma exact values) ────────────────────────────*/
  --sp-8: 0.5rem; /*   8px */
  --sp-12: 0.75rem; /*  12px */
  --sp-15: 0.9375rem; /*  15px */
  --sp-16: 1rem; /*  16px */
  --sp-20: 1.25rem; /*  20px */
  --sp-24: 1.5rem; /*  24px */
  --sp-25: 1.5625rem; /*  25px */
  --sp-32: 2rem; /*  32px */
  --sp-40: 2.5rem; /*  40px */
  --sp-59: 3.6875rem; /*  59px — logo/content left offset */
  --sp-64: 4rem; /*  64px — header height */
  --sp-240: 15rem; /* 240px — hero content bottom pos  */

  /* ── Layout ──────────────────────────────────────────────────*/
  --w-col-logo: 14.4375rem; /* 231px — Figma separator x:231  */
  --w-col-cta: 14.25rem; /* 228px — Figma: 1440-1212=228px */
  --w-hero-txt: 46.875rem; /* 750px */
  --h-header: var(--sp-64);
  --h-hero: 64rem; /* 1024px */

  /* ── Effects ─────────────────────────────────────────────────*/
  --blur-glass: blur(16px);
  --blur-header: blur(12px);
  --r-btn: 0.5rem; /* 8px */
}

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* ==============================================================
   BASE
   ============================================================== */
body {
  font-family: var(--ff-base);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--c-ink);
  background-color: var(--c-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Prevent body scroll when mobile menu is open */
body.no-scroll,
body.body--nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}
picture {
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* Shared content width (matches section containers) */
.container {
  width: calc(100% - 2rem);
  max-width: 82.625rem; /* 1322px -> 59px side gutters at 1440px */
  margin-inline: auto;
}

@media (min-width: 64em) {
  .container {
    width: calc(100% - 7.375rem); /* 118px total -> 59px each side */
  }
}

/* ==============================================================
   BUTTON  (shared component)
   Figma: Inter 500 · 14px · -1% ls · h:32px · px:12px · r:8px
   ============================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--sp-32);
  padding-inline: var(--sp-12);
  font-family: var(--ff-base);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  line-height: var(--lh-btn);
  letter-spacing: var(--ls-btn);
  color: var(--c-ink);
  white-space: nowrap;
  border: none;
  border-radius: var(--r-btn);
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.btn--glass {
  background-color: var(--c-surface);
  -webkit-backdrop-filter: var(--blur-glass);
  backdrop-filter: var(--blur-glass);
}

.btn:hover,
.btn:focus-visible {
  opacity: 0.8;
}

.btn:focus-visible {
  outline: 2px solid var(--c-white);
  outline-offset: 2px;
}

/* ==============================================================
   GLOBAL HEADER
   ============================================================== */

/*
  position: sticky → stays at viewport top while scrolling.
  background: transparent by default → hero image shows through.
  .header--scrolled → adds solid dark bg (via JS on scroll).
*/
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: var(--h-header); /* 64px */
  background-color: transparent;
  border-bottom: 1px solid var(--c-sep-h); /* rgba(236,236,237,0.16) */
  transition:
    background-color 0.3s ease,
    backdrop-filter 0.3s ease;
}

/* Solid background once user starts scrolling */
.header--scrolled {
  background-color: var(--c-dark);
  -webkit-backdrop-filter: var(--blur-header);
  backdrop-filter: var(--blur-header);
}

/*
  3-column grid (desktop — mirrors Figma separator positions):
    Col 1: 0 → 231px  (logo)
    Col 2: 231 → 1212px (nav, flex-1)
    Col 3: 1212 → 1440px (actions, 228px)
*/
.header__inner {
  position: relative; /* anchor for ::before / ::after */
  display: grid;
  grid-template-columns: var(--w-col-logo) 1fr var(--w-col-cta);
  align-items: center;
  height: 100%;
}

/* Vertical separator — left  (Figma: x:231, rgba(255,255,255,0.16)) */
.header__inner::before {
  content: "";
  position: absolute;
  left: var(--w-col-logo);
  top: 0;
  width: 1px;
  height: 100%;
  background-color: var(--c-sep-v);
  pointer-events: none;
}

/* Vertical separator — right (Figma: x:1212, rgba(255,255,255,0.16)) */
.header__inner::after {
  content: "";
  position: absolute;
  right: var(--w-col-cta);
  top: 0;
  width: 1px;
  height: 100%;
  background-color: var(--c-sep-v);
  pointer-events: none;
}

/* ── Logo (Figma: x:59, y:25, 157.34×13.36px) ─────────────── */
.header__logo-link {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 50px;
}

.header__logo {
  display: block;
  width: 8rem; /* enlarged logo */
  height: auto;
}

/* ── Navigation (desktop: inline, mobile: overlay) ─────────── */
.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--sp-20); /* 20px — Figma Navbar gap */
}

.header__nav-link {
  font-family: var(--ff-base);
  font-size: var(--fs-body); /* 16px */
  font-weight: var(--fw-regular); /* 400 */
  line-height: var(--lh-body);
  color: var(--c-nav); /* #ECECED */
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.header__nav-link:hover,
.header__nav-link:focus-visible {
  opacity: 0.7;
}

/* Close button inside mobile overlay — hidden on desktop */
.header__nav-close {
  display: none;
}

/* CTA inside mobile menu — hidden on desktop */
.header__nav-cta {
  display: none;
}

/* ── Actions column (desktop CTA + burger) ──────────────────── */
.header__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-12);
}

/* Desktop CTA (Figma: x:1245, y:16, centered in 228px col) */
.header__cta {
  /* visible by default on desktop */
}

/* Burger: hidden on desktop, shown on mobile */
.header__burger {
  display: none; /* shown via @media below */
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px; /* 3 lines × 2px + 2 gaps × 6px = 18px */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.header__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--c-white);
  border-radius: 1px;
  transform-origin: center;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.2s ease;
}

/*
  Burger → X animation
  Lines 1 & 3 travel ±8px to align with line 2 (center of 18px box)
  then rotate ±45° to form an X.
*/
.header--nav-open .header__burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header--nav-open .header__burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header--nav-open .header__burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==============================================================
   HERO SECTION
   ============================================================== */

/*
  margin-top: calc(-1 * header-height)
  The hero pulls up by 64px, sliding behind the sticky header,
  recreating the Figma "header overlays hero image" effect.
*/
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: transparent;
  margin-top: calc(-1 * var(--h-header)); /* -64px: slide under header */
  min-height: 100vh; /* fallback for older browsers */
  min-height: 100svh; /* mobile viewport-safe full height */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.hero__media {
  position: absolute;
  inset: 0;
  margin: 0;
  line-height: 0;
  z-index: 0;
}

.hero__media picture {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.hero__image,
.hero picture img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.7) 80%,
    rgba(0, 0, 0, 0.9) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  background-color: transparent;
}

.hero__content-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-25);
  padding-bottom: clamp(2rem, 8svh, 5.5rem);
}

.hero__description {
  display: flex;
  flex-direction: column;
  gap: var(--sp-15);
  max-width: var(--w-hero-txt); /* 750px */
}

.hero__title {
  font-family: var(--ff-base);
  font-size: var(--fs-h1);
  font-weight: var(--fw-regular);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-h1);
  color: var(--c-white);
  text-align: left;
}

.hero__subtitle {
  font-family: var(--ff-base);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-white);
  text-align: left;
}

.breadcrumb {
  margin: 0;
}

.breadcrumb__list {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-base);
  font-size: clamp(0.75rem, 0.72rem + 0.2vw, 0.875rem); /* 12px - 14px */
  font-weight: var(--fw-regular);
  line-height: 1.4;
  color: rgba(236, 236, 237, 0.82); /* light gray */
}

.breadcrumb__item + .breadcrumb__item::before {
  content: ">";
  margin-inline: 0.4rem;
  color: rgba(236, 236, 237, 0.66);
}

.breadcrumb__link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.breadcrumb__current {
  color: rgba(236, 236, 237, 0.92);
}

@media (hover: hover) {
  .breadcrumb__link:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
}

/* ==============================================================
   TRUST BADGES SECTION
   Figma: node 1-536 — Trust_Badges_Section (1440×350px, #FAFAFA)
   Desktop: 3 items in a row, space-between
   Mobile: vertical stack
   ============================================================== */

/*
  Mobile-first base: single column stack.
  Upgraded to horizontal row at ≥ 64em.
*/
.trust-badges {
  background-color: var(--c-surface);
  padding: var(--sp-40) var(--sp-16);
}

.trust-badges__inner {
  width: 100%;
  max-width: 83.75rem;
  margin-inline: auto;
}

.trust-badges__list {
  list-style: none;
  display: flex;
  flex-direction: column; /* mobile: stack */
  gap: var(--sp-32); /* 32px between stacked items on mobile */
}

.trust-badges__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--sp-20); /* 20px — Figma icon-text gap */
}

/* CLS prevention: explicit intrinsic dimensions on the icon wrapper */
.trust-badges__icon {
  display: block;
  flex-shrink: 0; /* never shrink the icon */
  line-height: 0; /* collapse baseline gap */
}

.trust-badges__text {
  font-family: var(--ff-base);
  font-size: var(--fs-body); /* 16px */
  font-weight: var(--fw-bold); /* 700 — Figma: Body Text - Bold */
  line-height: var(--lh-body); /* 1.5 */
  color: var(--c-ink); /* #1E1E1E */
}

/* ==============================================================
   INTRO SECTION
   Figma: node 1-539 — Intro_Section (1440×608, Accent #EBDCE2)
   ============================================================== */
.intro {
  background-color: var(--c-accent);
  padding-block: clamp(4rem, 8vw, 6.25rem);
}

.intro__container {
  width: 100%;
  max-width: 83.75rem;
  margin-inline: auto;
  padding-inline: var(--sp-16);
}

.intro__grid {
  display: grid;
  gap: var(--sp-32);
  align-items: center;
}

.intro__content {
  max-width: 46.875rem; /* 750px */
  display: grid;
  gap: var(--sp-24); /* 24px */
  color: var(--c-dark);
}

.intro__media {
  margin: 0;
  width: min(100%, 26.2775rem);
  border-radius: var(--r-btn);
  overflow: hidden;
  aspect-ratio: 420.439 / 420.439;
  justify-self: center;
}

.intro__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro__heading {
  margin: 0;
  font-family: var(--ff-base);
  font-weight: var(--fw-regular);
  font-size: clamp(2rem, 1.3rem + 3vw, 3.5rem);
  line-height: 1; /* 56/56 at desktop */
  letter-spacing: -0.0357em; /* -2px at 56px */
  color: var(--c-dark);
  text-wrap: balance;
}

.intro__text {
  font-family: var(--ff-base);
  font-size: var(--fs-body); /* 16px */
  font-weight: var(--fw-regular); /* 400 */
  line-height: var(--lh-body); /* 24px */
  letter-spacing: 0;
  color: var(--c-dark);
}

.intro__text p {
  margin: 0;
}

.intro__text p + p {
  margin-top: var(--sp-24); /* 24px */
}

.intro__subheading {
  margin: var(--sp-24) 0 var(--sp-12);
  font-family: var(--ff-base);
  font-size: clamp(1.25rem, 1.05rem + 0.8vw, 1.625rem);
  font-weight: var(--fw-bold);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--c-dark);
}

.intro__list {
  margin: var(--sp-16) 0;
  padding-left: 1.25rem;
  display: grid;
  gap: var(--sp-12);
}

.intro__list li {
  margin: 0;
}

@media (min-width: 64em) {
  .intro {
    padding-block: 6.25rem; /* 100px */
  }

  .intro__container {
    min-height: 25.5rem; /* 408px */
    padding-inline: 3.125rem;
  }

  .intro__grid {
    width: 100%;
    grid-template-columns: 46.875rem minmax(0, 26.2775rem);
    justify-content: space-between;
  }

  .intro__content {
    max-width: none;
  }

  .intro__heading {
    font-size: 3.5rem; /* 56px */
  }
}

/* ==============================================================
   SERVICE STEPS SECTION
   Reusable for service pages (Laser / Injectables)
   ============================================================== */
.service-steps {
  background-color: var(--c-surface);
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.service-steps__container {
  width: 100%;
  max-width: 83.75rem;
  margin-inline: auto;
  padding-inline: var(--sp-16);
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.service-steps__title {
  margin: 0;
  max-width: 40rem;
  font-family: var(--ff-base);
  font-size: clamp(2rem, 1.3rem + 2.8vw, 3.25rem);
  font-weight: var(--fw-regular);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}

.service-steps__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--sp-20);
}

.service-steps__item {
  background-color: var(--c-white);
  border: 1px solid rgba(30, 30, 30, 0.12);
  border-radius: var(--r-card);
  padding: clamp(1rem, 2.5vw, 1.5rem);
  display: grid;
  gap: var(--sp-8);
}

.service-steps__item-title {
  margin: 0;
  font-family: var(--ff-base);
  font-size: clamp(1.125rem, 1.02rem + 0.5vw, 1.375rem);
  font-weight: var(--fw-bold);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}

.service-steps__item-text {
  margin: 0;
  font-family: var(--ff-base);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--c-ink);
}

@media (min-width: 64em) {
  .service-steps__container {
    padding-inline: 3.125rem;
  }

  .service-steps__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--sp-24);
  }
}

/* ==============================================================
   IMAGE DIVIDER SECTION
   Figma: node 6:16 (1440x939)
   ============================================================== */
.image-divider {
  width: 100%;
}

.image-divider__media {
  width: 100%;
  height: clamp(
    20rem,
    calc(100vw * 0.6520833),
    58.6875rem
  ); /* 939/1440 ratio, max 939px */
  background-image:
    linear-gradient(
      180deg,
      rgba(26, 26, 23, 0.08) 0%,
      rgba(26, 26, 23, 0.08) 100%
    ),
    url("assets/images/laser-hair-removal-session-chalandri.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed; /* desktop parallax */
}

/* Disable parallax on touch/mobile for paint stability (iOS Safari etc.) */
@media (max-width: 48em), (hover: none), (pointer: coarse) {
  .image-divider__media {
    background-attachment: scroll;
  }
}

/* ==============================================================
   PILLARS SECTION
   Figma: node 1-570 — Pillar_Section
   ============================================================== */
.pillars {
  --pillars-card-height: 35.4375rem; /* 567px */
  background-color: var(--c-surface);
  padding-block: clamp(4rem, 10vw, 7.5rem);
}

.pillars__container {
  width: 100%;
  max-width: 83.75rem;
  margin-inline: auto;
  padding-inline: var(--sp-16);
}

.pillars__heading {
  margin: 0;
  max-width: 46.875rem; /* 750px */
  font-family: var(--ff-base);
  font-weight: var(--fw-regular);
  font-size: clamp(2rem, 1.2rem + 3.2vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  text-wrap: balance;
}

.pillars__layout {
  margin-top: clamp(2rem, 6vw, 4.0625rem); /* up to 65px */
  display: grid;
  gap: var(--sp-32); /* 32px */
}

.pillars__image-card {
  position: relative;
  width: 100%;
  max-width: 26.2775rem; /* 420.44px */
  border-radius: var(--r-btn);
  overflow: hidden;
  aspect-ratio: 420.439 / 567;
  background-color: #d9d9d9;
  transition: all 0.3s ease;
}

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

.pillars__image-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.pillars__cards {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: var(--sp-20);
}

.pillar-card {
  position: relative;
  min-height: clamp(26rem, 88vw, 35.4375rem); /* up to 567px */
  border-radius: var(--r-btn);
  padding: clamp(1.5rem, 3vw, 3rem) clamp(1.25rem, 2.5vw, 2rem) 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pillar-card::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 5.0534rem; /* 80.85px */
  height: 5.0625rem; /* 81px */
  border-radius: var(--r-btn);
  background-color: var(--c-accent);
  pointer-events: none;
}

.pillar-card--laser {
  background-color: var(--c-surface);
  border: 1px solid rgba(30, 30, 30, 0.16); /* #1e1e1e29 */
  color: var(--c-ink);
}

.pillar-card--botox {
  background-color: var(--c-dark);
  color: var(--c-white);
}

.pillar-card__content,
.pillar-card__cta {
  position: relative;
  z-index: 1;
}

.pillar-card__content {
  display: grid;
  gap: var(--sp-20); /* 20px */
  max-width: none;
  flex: 1 1 auto;
  padding-bottom: var(--sp-16);
}

.pillar-card__media {
  margin: 0;
  width: 100%;
  max-width: none;
  border-radius: var(--r-btn);
  overflow: hidden;
  aspect-ratio: 388 / 242;
  background-color: #d9d9d9;
}

.pillar-card__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.pillar-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pillar-card__title {
  margin: 0;
  max-width: 21rem;
  font-family: var(--ff-base);
  font-weight: var(--fw-regular);
  font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem); /* up to 40px */
  line-height: 1;
  letter-spacing: -0.02em;
}

.pillar-card__text {
  margin: 0;
  max-width: 21rem;
  font-family: var(--ff-base);
  font-weight: var(--fw-regular);
  font-size: clamp(1rem, 0.9rem + 0.35vw, 1.125rem); /* up to 18px */
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.pillar-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2.75rem; /* 44px touch target */
  margin-top: auto;
  margin-bottom: var(--sp-8);
  padding-inline: 1rem;
  border-radius: var(--r-btn);
  font-family: var(--ff-base);
  font-size: var(--fs-small); /* 14px */
  font-weight: var(--fw-medium);
  line-height: 1.4286; /* 20px */
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
}

.pillar-card__cta--dark {
  background-color: var(--c-dark);
  color: var(--c-white);
}

.pillar-card__cta--light {
  background-color: var(--c-surface);
  color: var(--c-dark);
}

@media (min-width: 48em) {
  .pillars__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--sp-32);
  }
}

@media (min-width: 80em) {
  .pillars {
    padding-block: 7.5rem; /* 120px */
  }

  .pillars__layout {
    grid-template-columns: 26.2775rem minmax(0, 1fr);
    align-items: stretch;
    gap: var(--sp-32); /* 32px */
    margin-top: 4.0625rem; /* 65px */
  }

  .pillars__image-card {
    min-height: var(--pillars-card-height);
    height: 100%;
    aspect-ratio: auto;
    max-width: none;
  }

  .pillars__cards {
    grid-template-columns: 26.2775rem 27.195rem; /* 420.44px / 435.12px */
    grid-auto-rows: 1fr;
    gap: var(--sp-32);
  }

  .pillars__container {
    padding-inline: 3.125rem;
  }

  .pillar-card {
    min-height: var(--pillars-card-height);
    height: 100%;
    padding-bottom: 2rem;
  }

  .pillar-card__title {
    font-size: 2.5rem; /* 40px */
  }
}

@media (hover: hover) {
  .pillars__image-card:hover,
  .pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(26, 26, 23, 0.12);
  }

  .pillar-card__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 26, 23, 0.22);
  }
}

/* ==============================================================
   FAQ SECTION
   Figma: node 1-650 — Faq_Section (1440x720)
   ============================================================== */
.faq {
  background-color: var(--c-accent);
  padding-block: clamp(4rem, 10vw, 7.5rem); /* up to 120px */
}

.faq__container {
  width: 100%;
  max-width: 83.75rem;
  margin-inline: auto;
  padding-inline: var(--sp-16);
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
}

.faq__title {
  margin: 0;
  max-width: 29.1875rem; /* 467px */
  font-family: var(--ff-base);
  font-weight: var(--fw-regular);
  font-size: clamp(2rem, 1.2rem + 3.2vw, 3.5rem); /* up to 56px */
  line-height: 1;
  letter-spacing: -0.02em; /* -1.12px at 56px */
  color: var(--c-ink);
}

.faq__content {
  width: 100%;
  max-width: 40rem; /* 640px */
}

.faq__item {
  border-top: 1px solid rgba(30, 30, 30, 0.16); /* Border-Black */
}

.faq__item:last-child {
  border-bottom: 1px solid rgba(30, 30, 30, 0.16);
}

.faq__question {
  list-style: none;
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
  padding: 2rem 2.5rem 2rem 0;
  font-family: var(--ff-base);
  font-weight: 700;
  font-size: clamp(1.25rem, 1.1rem + 0.8vw, 1.5rem); /* up to 24px */
  line-height: 1.1667; /* 28px at 24px */
  letter-spacing: -0.03em;
  color: var(--c-ink);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::marker {
  content: "";
}

/* Custom icon (+/-) */
.faq__question::before,
.faq__question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.25rem;
  width: 0.875rem;
  height: 0.125rem;
  background-color: rgba(30, 30, 30, 0.72);
  transform: translateY(-50%);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.faq__question::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq__item[open] .faq__question::after {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scaleX(0);
}

/* Smooth answer reveal without JS */
.faq__answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq__item[open] .faq__answer-wrap {
  grid-template-rows: 1fr;
}

.faq__answer {
  margin: 0;
  overflow: hidden;
  padding: 0 0 2rem;
  font-family: var(--ff-base);
  font-weight: var(--fw-regular);
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.25rem); /* up to 20px */
  line-height: 1.4; /* 28px at 20px */
  letter-spacing: -0.03em;
  color: var(--c-ink);
}

@media (min-width: 64em) {
  .faq {
    padding-block: 7.5rem; /* 120px */
  }

  .faq__container {
    grid-template-columns: 29.1875rem 40rem; /* 467px / 640px */
    justify-content: space-between;
    align-items: start;
    gap: 2rem;
    min-height: 30rem; /* 480px container height */
    padding-inline: 3.125rem;
  }
}

/* ==============================================================
   CTA SECTION
   Figma: node 1-932 — CTA_Section (1440x540)
   ============================================================== */
.cta {
  --cta-bg-image: url("assets/images/botox-enesimes-therapeies-chalandri-hero.webp");
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 33.75rem; /* 540px */
  padding: clamp(4rem, 8vw, 6.875rem) var(--sp-16);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--c-white);
  background-color: var(--c-dark);
  background-image: var(--cta-bg-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cta--home {
  --cta-bg-image: url("assets/images/baby-botox-forehead-lines-chalandri.webp");
}

.cta--laser {
  --cta-bg-image: url("assets/images/laser-alexandritis-chalandri-treatment.webp");
}

.cta--botox {
  --cta-bg-image: url("assets/images/botox-enesimes-therapeies-chalandri-hero.webp");
}

/* Light tint overlay from Figma */
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: rgba(30, 30, 30, 0.16);
}

/* Black gradient overlays from Figma (main + bottom emphasis) */
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      to top,
      rgba(30, 30, 30, 0.94) 0%,
      rgba(30, 30, 30, 0.62) 34%,
      rgba(30, 30, 30, 0.24) 64%,
      rgba(30, 30, 30, 0) 100%
    ),
    linear-gradient(to top, rgba(30, 30, 30, 0.92) 0%, rgba(30, 30, 30, 0) 27%);
}

.cta__wrapper {
  width: min(100%, 40.5625rem); /* 649px */
  display: grid;
  justify-items: center;
  gap: var(--sp-24); /* 24px */
}

.cta__title {
  margin: 0;
  font-family: var(--ff-base);
  font-weight: var(--fw-regular);
  font-size: clamp(2rem, 1.2rem + 3.2vw, 3.5rem); /* up to 56px */
  line-height: 1;
  letter-spacing: -0.02em; /* -1.12px at 56px */
  color: var(--c-white);
  text-wrap: balance;
}

.cta__text {
  margin: 0;
  max-width: 40.5625rem; /* 649px */
  font-family: var(--ff-base);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body); /* 16px */
  line-height: var(--lh-body); /* 24px */
  color: var(--c-white);
  text-wrap: pretty;
}

.cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-24); /* 24px */
}

.cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem; /* 40px from 8px+24px+8px */
  padding: var(--sp-8) var(--sp-16);
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  font-family: var(--ff-base);
  font-size: var(--fs-body); /* 16px */
  font-weight: var(--fw-regular);
  line-height: var(--lh-body); /* 24px */
  text-align: center;
  white-space: normal;
  transition: all 0.3s ease-in-out;
}

.cta__button--light {
  background-color: var(--c-white);
  border-color: var(--c-white);
  color: var(--c-dark);
}

.cta__button--dark {
  background-color: var(--c-dark);
  border-color: var(--c-dark);
  color: var(--c-white);
}

@media (hover: hover) {
  .cta__button--light:hover {
    background-color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
  }

  .cta__button--dark:hover {
    background-color: #2c2c2c;
    transform: scale(1.05);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
  }
}

@media (max-width: 47.99em) {
  .cta__actions {
    width: 100%;
    flex-direction: column;
    gap: var(--sp-12);
  }

  .cta__button {
    width: 100%;
    max-width: 24rem;
  }
}

/* ==============================================================
   FORM SECTION
   Figma: node 1-1105 — Form_Section (1440x1048)
   ============================================================== */
.form-section {
  background-color: var(--c-white);
  padding-block: clamp(4rem, 9vw, 6.25rem); /* up to 100px */
}

.form-section__container {
  width: 100%;
  max-width: 83.75rem;
  margin-inline: auto;
  padding-inline: var(--sp-16);
}

.form-section__items {
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
}

.form-section__content {
  width: 100%;
}

.form-section__title {
  margin: 0;
  font-family: var(--ff-base);
  font-weight: var(--fw-regular);
  font-size: clamp(2rem, 1.2rem + 3.2vw, 3.5rem); /* up to 56px */
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}

.form-section__meta {
  margin-top: clamp(2rem, 5vw, 4rem); /* up to 64px */
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-24);
}

.form-section__meta-item {
  border-left: 1px solid rgba(30, 30, 30, 0.16);
  padding-left: var(--sp-16);
  display: grid;
  gap: var(--sp-8);
}

.form-section__meta-label {
  margin: 0;
  font-family: var(--ff-base);
  font-size: var(--fs-body); /* 16px */
  font-weight: 700;
  line-height: var(--lh-body); /* 24px */
  color: var(--c-ink);
}

.form-section__meta-value {
  margin: 0;
  font-family: var(--ff-base);
  font-size: var(--fs-body); /* 16px */
  font-weight: var(--fw-regular);
  line-height: var(--lh-body); /* 24px */
  color: var(--c-ink);
  overflow-wrap: anywhere;
}

.contact-form {
  margin-top: clamp(2rem, 5vw, 4rem); /* up to 64px */
  display: grid;
  gap: var(--sp-32); /* 32px */
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-24);
}

.contact-form__group {
  display: grid;
  gap: var(--sp-12); /* 12px */
}

.contact-form__label {
  font-family: var(--ff-base);
  font-size: 0.75rem; /* 12px */
  font-weight: var(--fw-medium); /* 500 */
  line-height: 1.3333; /* 16px */
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-ink);
}

.contact-form__input {
  width: 100%;
  min-height: 3rem; /* 48px touch target */
  padding: 0.75rem var(--sp-16);
  border: 1px solid rgba(30, 30, 30, 0.16);
  border-radius: var(--r-btn);
  background-color: var(--c-white);
  font-family: var(--ff-base);
  font-size: var(--fs-body); /* 16px */
  font-weight: var(--fw-regular);
  line-height: var(--lh-body); /* 24px */
  color: var(--c-ink);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form__input::placeholder {
  color: rgba(30, 30, 30, 0.5);
}

.contact-form__input--textarea {
  min-height: 10.375rem; /* 166px */
  resize: vertical;
}

.contact-form__input:focus,
.contact-form__input:focus-visible {
  outline: none;
  border-color: var(--c-dark);
  box-shadow: 0 0 0 3px rgba(30, 30, 30, 0.12);
}

.contact-form__submit {
  justify-self: start;
  min-height: 2.75rem; /* >=44px touch target */
  padding: var(--sp-8) var(--sp-12);
  border: 1px solid var(--c-dark);
  border-radius: var(--r-btn);
  background-color: var(--c-dark);
  color: var(--c-white);
  font-family: var(--ff-base);
  font-size: var(--fs-small); /* 14px */
  font-weight: var(--fw-medium); /* 500 */
  line-height: 1.4286; /* 20px */
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.contact-form__submit:hover {
  background-color: #2c2c2c;
  border-color: #2c2c2c;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

.contact-form__submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.contact-form__submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 30, 30, 0.18);
}

.contact-form__submit:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.contact-form__status {
  margin-top: var(--sp-16);
  padding: var(--sp-12) var(--sp-16);
  border-radius: var(--r-btn);
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  line-height: 1.45;
}

.contact-form__status--success {
  color: #0f5132;
  background-color: #d1e7dd;
  border: 1px solid #badbcc;
}

.contact-form__status--error {
  color: #842029;
  background-color: #f8d7da;
  border: 1px solid #f5c2c7;
}

.form-section__media {
  margin: 0;
  width: 100%;
  border-radius: var(--r-btn);
  overflow: hidden;
  aspect-ratio: 557 / 848;
  max-width: 34.8125rem; /* 557px */
}

.form-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 48em) {
  .form-section__meta {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-24);
    max-width: 40rem; /* 640px */
  }

  .contact-form__row {
    grid-template-columns: 1fr 1fr;
    max-width: 40rem; /* 640px */
  }

  .contact-form__group--full {
    max-width: 40rem;
  }

  .contact-form__submit {
    min-width: 5.75rem; /* 92px */
  }
}

@media (min-width: 80em) {
  .form-section {
    padding-block: 6.25rem; /* 100px */
  }

  .form-section__items {
    grid-template-columns: 40rem 34.8125rem; /* 640px / 557px */
    justify-content: space-between;
    align-items: center;
    min-height: 53rem; /* 848px */
    gap: 8.9375rem; /* 143px */
  }

  .form-section__container {
    padding-inline: 3.125rem;
  }

  .contact-form__row {
    grid-template-columns: 19rem 19.5rem; /* 304px / 312px */
    gap: var(--sp-24);
  }
}

/* ==============================================================
   GLOBAL FOOTER
   Figma: node 8-82 — Footer_Section
   ============================================================== */
.footer {
  background-color: var(--c-dark); /* #1E1E1E */
  color: var(--c-nav); /* #ECECED */
  padding: 5rem var(--sp-16) var(--sp-20);
}

.footer__container {
  width: 100%;
  max-width: 83.75rem;
  margin-inline: auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer__brand {
  max-width: 21.25rem; /* 340px */
}

.footer__logo-link {
  display: inline-block;
}

.footer__logo {
  width: min(100%, 13.75rem); /* 220px */
  height: auto;
}

.footer__brand-text {
  margin: 1.25rem 0 0; /* 20px from logo */
  font-family: var(--ff-base);
  font-size: var(--fs-body); /* 16px */
  font-weight: var(--fw-regular);
  line-height: var(--lh-body); /* 24px */
  color: var(--c-white);
}

.footer__heading {
  margin: 0 0 0.625rem;
  font-family: var(--ff-base);
  font-size: 1.5rem; /* 24px */
  font-weight: var(--fw-regular);
  line-height: 1.1667; /* 28px */
  letter-spacing: -0.03em;
  color: var(--c-nav);
}

.footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.625rem; /* 10px */
}

.footer__item {
  margin: 0;
}

.footer__link {
  position: relative;
  display: inline-block;
  font-family: var(--ff-base);
  font-size: var(--fs-body); /* 16px */
  font-weight: var(--fw-regular);
  line-height: var(--lh-body); /* 24px */
  color: var(--c-nav);
  transition:
    opacity 0.25s ease,
    color 0.25s ease;
}

.footer__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.125rem;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.footer__address {
  margin: 0;
  font-style: normal;
  display: grid;
  gap: 0.625rem; /* 10px */
}

.footer__address-line {
  margin: 0;
  max-width: 18.75rem; /* 300px */
  font-family: var(--ff-base);
  font-size: var(--fs-body); /* 16px */
  font-weight: var(--fw-regular);
  line-height: var(--lh-body); /* 24px */
  color: var(--c-nav);
}

.footer__bottom {
  margin-top: 2.25rem; /* 36px */
  padding-block: 2rem; /* 32px */
  border-top: 1px solid rgba(250, 250, 250, 0.48);
  border-bottom: 1px solid rgba(250, 250, 250, 0.48);
  display: grid;
  gap: var(--sp-12);
}

.footer__copyright,
.footer__privacy {
  margin: 0;
  font-family: var(--ff-base);
  font-size: var(--fs-small); /* 14px */
  font-weight: var(--fw-medium); /* 500 */
  line-height: 1.4286; /* 20px */
  letter-spacing: -0.01em;
  color: var(--c-white);
}

.footer__privacy {
  justify-self: start;
  transition: opacity 0.25s ease;
}

@media (hover: hover) {
  .footer__link:hover,
  .footer__privacy:hover {
    opacity: 0.75;
  }

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

@media (min-width: 64em) {
  .footer {
    padding: 5rem 3.125rem 1.25rem; /* 80px 50px 20px */
  }

  .footer__top {
    grid-template-columns: 21.25rem 9.6875rem 18.75rem; /* 340 / 155 / 300 */
    justify-content: space-between;
    align-items: start;
    min-height: 13.628rem; /* 218.05px */
  }

  .footer__nav {
    margin-top: 2.75rem; /* 44px */
  }

  .footer__contact {
    margin-top: 2rem; /* 32px */
  }

  .footer__bottom {
    margin-top: 2.25rem; /* 36px */
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: var(--sp-16);
  }

  .footer__privacy {
    justify-self: end;
  }
}

/* ==============================================================
   RESPONSIVE — Mobile-First
   ============================================================== */

/* ──────────────────────────────────────────────────────────────
   MOBILE  (< 1024px / 64em)
   - Header: 2-col grid (logo | actions)
   - Nav: full-screen overlay
   - Burger: visible, desktop CTA: hidden
   ────────────────────────────────────────────────────────────── */
@media (max-width: 63.99em) {
  /* 2-column grid: logo | actions */
  .header__inner {
    grid-template-columns: 1fr auto;
  }

  /* Hide column separators */
  .header__inner::before,
  .header__inner::after {
    display: none;
  }

  .header__logo-link {
    padding-left: 16px;
  }

  /* Right-align actions with edge padding */
  .header__actions {
    padding-right: var(--sp-16);
  }

  /* Hide desktop CTA, show burger */
  .header__cta {
    display: none;
  }
  .header__burger {
    display: flex;
  }

  /* Full-screen nav overlay */
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh; /* fallback */
    height: 100svh;
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-40);

    /* Brand dark glass background */
    background-color: rgba(26, 26, 23, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);

    /* Hidden state — opacity+visibility removes from a11y tree */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  /*
    Close button: absolutely positioned top-right of the overlay,
    aligned with the burger button position (right:16px, height:64px)
  */
  .header__nav-close {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    width: calc(var(--sp-16) + 24px + var(--sp-16)); /* 56px tap target */
    height: var(--h-header); /* 64px — same as header bar */
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--c-white);
    padding: 0;
    transition: opacity 0.2s ease;
  }

  .header__nav-close:hover,
  .header__nav-close:focus-visible {
    opacity: 0.6;
  }

  /* Open state: triggered by JS adding .header--nav-open to <header> */
  .header--nav-open .header__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Vertical nav list with large fluid type */
  .header__nav-list {
    flex-direction: column;
    align-items: center;
    gap: var(--sp-40);
  }

  .header__nav-link {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    letter-spacing: -0.02em;
    color: var(--c-white);
    text-align: center;
    transition: opacity 0.2s ease;
  }

  .header__nav-link:hover,
  .header__nav-link:focus-visible {
    opacity: 0.6;
  }

  /* CTA shown inside mobile menu */
  .header__nav-cta {
    display: inline-flex;
    margin-top: var(--sp-8);
    height: 2.5rem; /* slightly larger for touch targets */
    padding-inline: var(--sp-24);
    font-size: var(--fs-body);
  }

  .hero__content-inner {
    padding-bottom: clamp(2rem, 10svh, 5.5rem);
  }
}

/* ──────────────────────────────────────────────────────────────
   TABLET  (480px – 767px)
   ────────────────────────────────────────────────────────────── */
@media (min-width: 30em) {
  .hero__content-inner {
    padding-bottom: clamp(2.5rem, 10svh, 6rem);
  }
}

/* ──────────────────────────────────────────────────────────────
   LARGE TABLET  (768px – 1023px)
   ────────────────────────────────────────────────────────────── */
@media (min-width: 48em) and (max-width: 63.99em) {
  .hero::after {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.45) 70%,
      rgba(0, 0, 0, 0.78) 100%
    );
  }
}

/* ──────────────────────────────────────────────────────────────
   DESKTOP  (≥ 1024px / 64em)
   - Header: full 3-column grid, separators visible
   - Nav: inline flex, burger hidden
   ────────────────────────────────────────────────────────────── */
@media (min-width: 64em) {
  /* Restore 3-column Figma layout */
  .header__inner {
    grid-template-columns: var(--w-col-logo) 1fr var(--w-col-cta);
  }

  .header__inner::before,
  .header__inner::after {
    display: block;
  }

  /* Show desktop CTA, hide burger */
  .header__cta {
    display: inline-flex;
  }
  .header__burger {
    display: none;
  }

  /* Inline nav: reset overlay styles */
  .header__nav {
    position: static;
    flex-direction: row;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transition: none; /* no transition needed on desktop */
  }

  .header__nav-list {
    flex-direction: row;
    gap: var(--sp-20);
  }

  .header__nav-link {
    font-size: var(--fs-body);
    color: var(--c-nav);
  }

  /* Hide mobile-only CTA */
  .header__nav-cta {
    display: none;
  }

  /* Hero: proportional Figma ratio */
  .hero {
    min-height: 0; /* disable mobile fullscreen behavior on desktop */
    aspect-ratio: 45 / 32; /* 1440:1024 */
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }

  .hero::after {
    background: var(--gradient-hero);
  }

  .hero__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 23.4375%; /* 240px / 1024px */
  }

  .hero__content-inner {
    padding-bottom: 0;
  }

  /* Trust Badges: switch to horizontal row (Figma layout) */
  .trust-badges {
    display: flex;
    align-items: center;
    min-height: 21.875rem; /* 350px — Figma section height */
    padding: 1.875rem 3.125rem; /* 30px 50px */
  }

  .trust-badges__inner {
    padding: var(--sp-25) 0; /* 25px 0 — Figma container inner padding */
  }

  .trust-badges__list {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2.0625rem; /* 33px — Figma container gap */
  }
}

/* ──────────────────────────────────────────────────────────────
   WIDE DESKTOP  (≥ 1440px / 90em)
   Pin to exact Figma pixel values
   ────────────────────────────────────────────────────────────── */
@media (min-width: 90em) {
  .hero {
    min-height: 0;
    aspect-ratio: unset;
    height: var(--h-hero); /* 1024px fixed */
  }

  .hero__content {
    bottom: var(--sp-240); /* 240px exact */
  }
}

@media (min-width: 64em) {
  .cta {
    padding-inline: 3.125rem;
  }
}

/* ==============================================================
   LEGAL PAGE
   ============================================================== */
.legal-page {
  background-color: var(--c-surface);
  padding-top: calc(var(--h-header) + 2rem);
  padding-bottom: 4rem;
}

.legal-page__section {
  padding-inline: var(--sp-16);
}

.legal-page__container {
  width: 100%;
  max-width: 52rem;
  margin-inline: auto;
}

.legal-page__title {
  margin: 0;
  font-family: var(--ff-base);
  font-size: clamp(2rem, 1.2rem + 3.2vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}

.legal-page__content {
  margin-top: 2rem;
}

.legal-page__content h2 {
  margin: 1.5rem 0 0.75rem;
  font-family: var(--ff-base);
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.3rem);
  line-height: 1.3;
  color: var(--c-ink);
}

.legal-page__content p {
  margin: 0 0 0.75rem;
  font-family: var(--ff-base);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--c-ink);
}

.legal-page__content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 64em) {
  .legal-page {
    padding-top: calc(var(--h-header) + 3rem);
    padding-bottom: 5rem;
  }
}

/* ==============================================================
   COOKIE CONSENT (JS + localStorage)
   ============================================================== */

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 10000;
  display: grid;
  gap: 0.75rem;
  align-items: center;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(236, 236, 237, 0.24);
  border-radius: 0.5rem;
  background-color: rgba(26, 26, 23, 0.94);
  color: #ececed;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.cookie-consent__text {
  margin: 0;
  font-family: var(--ff-base);
  font-size: 0.8125rem; /* 13px */
  line-height: 1.45;
}

.cookie-consent__link {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent__link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  border-radius: 0.25rem;
}

.cookie-consent__accept {
  appearance: none;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  border: 1px solid #ffffff;
  background-color: #ffffff;
  color: #1e1e1e;
  font-family: var(--ff-base);
  font-size: 0.8125rem; /* 13px */
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.cookie-consent--hidden {
  display: none;
}

.cookie-consent__accept:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

@media (hover: hover) {
  .cookie-consent__accept:hover {
    opacity: 0.92;
  }
}

@media (min-width: 48em) {
  .cookie-consent {
    left: 2rem;
    right: 2rem;
    max-width: 62rem;
    margin-inline: auto;
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }
}

/* ==============================================================
   BLOG FEED SECTION
   Figma: node 25:7
   ============================================================== */
.blog-feed {
  background-color: var(--c-surface);
  padding-block: clamp(4rem, 8vw, 6.625rem);
}

.blog-feed__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.blog-feed__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: min(100%, 40rem);
  text-align: center;
}

.blog-feed__title {
  margin: 0;
  font-family: var(--ff-base);
  font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
  font-weight: var(--fw-regular);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}

.blog-feed__subtitle {
  margin: 0;
  font-family: var(--ff-base);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-ink);
}

.blog-feed__status {
  margin: 0;
  min-height: 1.5rem;
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #575752;
  text-align: center;
}

.blog-feed__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
  gap: 2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.blog-card__image-link {
  display: block;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #ececed;
}

.blog-card__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 292 / 429;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.blog-card__title {
  margin: 0;
  font-family: var(--ff-base);
  font-size: clamp(1.125rem, 0.8vw + 0.9rem, 1.25rem);
  font-weight: var(--fw-regular);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}

.blog-card__title-link {
  color: inherit;
  transition: opacity 0.2s ease;
}

.blog-card__excerpt {
  margin: 0;
  font-family: var(--ff-base);
  font-size: 0.9375rem;
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: #3e3e39;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.25rem;
  font-family: var(--ff-base);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-thickness: 1px;
  transition: opacity 0.2s ease;
}

.blog-card__image-link:focus-visible,
.blog-card__title-link:focus-visible,
.blog-card__link:focus-visible {
  outline: 2px solid var(--c-dark);
  outline-offset: 2px;
}

@media (hover: hover) {
  .blog-card__image-link:hover .blog-card__image {
    transform: scale(1.03);
  }

  .blog-card__title-link:hover,
  .blog-card__link:hover {
    opacity: 0.8;
  }
}

@media (min-width: 64em) {
  .blog-feed__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 47.99em) {
  .blog-feed__grid {
    gap: 1.5rem;
  }
}

/* ==============================================================
   BLOG ARTICLE TEMPLATE
   Figma: node 25:117
   ============================================================== */
.article-page {
  background-color: var(--c-surface);
  padding-top: calc(var(--h-header) + 3.5rem);
  padding-bottom: clamp(4rem, 8vw, 7.5rem);
}

.article-page__container {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 5.5rem);
}

.article-page__status {
  margin: 0;
  font-family: var(--ff-base);
  font-size: 0.95rem;
  line-height: 1.45;
  color: #575752;
}

.article-page__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.article-page__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.article-page__date {
  margin: 0;
  font-family: var(--ff-base);
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  line-height: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-dark);
}

.article-page__title {
  margin: 0;
  font-family: var(--ff-base);
  font-size: clamp(2rem, 3vw + 1rem, 3.5rem);
  font-weight: var(--fw-regular);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #0e0e0e;
}

.article-page__excerpt {
  margin: 0;
  font-family: var(--ff-base);
  font-size: clamp(1rem, 1vw + 0.7rem, 1.25rem);
  font-weight: var(--fw-regular);
  line-height: 1.4;
  letter-spacing: -0.03em;
  color: #16231b;
}

.article-page__media {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #ececed;
}

.article-page__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.article-page__body {
  width: 100%;
  color: #16231b;
}

.article-page__body p,
.article-page__body li,
.article-page__body blockquote {
  margin: 0 0 1.5rem;
  font-family: var(--ff-base);
  font-size: clamp(1rem, 1vw + 0.7rem, 1.25rem);
  font-weight: var(--fw-regular);
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.article-page__body h2,
.article-page__body h3,
.article-page__body h4 {
  margin: 2rem 0 1rem;
  font-family: var(--ff-base);
  font-weight: var(--fw-regular);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #0e0e0e;
}

.article-page__body h2 {
  font-size: clamp(1.5rem, 1.6vw + 1rem, 2rem);
}

.article-page__body h3 {
  font-size: clamp(1.3rem, 1.2vw + 0.95rem, 1.7rem);
}

.article-page__body h4 {
  font-size: clamp(1.15rem, 1vw + 0.9rem, 1.35rem);
}

.article-page__body ul,
.article-page__body ol {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
}

.article-page__body a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-page__body blockquote {
  padding-left: 1rem;
  border-left: 2px solid rgba(26, 26, 23, 0.25);
}

.article-page__body hr {
  border: 0;
  border-top: 1px solid rgba(26, 26, 23, 0.16);
  margin: 2rem 0;
}

.article-page__back {
  display: flex;
}

.article-page__back-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-base);
  font-size: 0.9rem;
  font-weight: var(--fw-medium);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-page__back-link:focus-visible,
.article-page__body a:focus-visible {
  outline: 2px solid var(--c-dark);
  outline-offset: 2px;
}

/* ==============================================================
   RELATED ARTICLES (Blog Article)
   Figma: node 25:128
   ============================================================== */
.related-articles {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(2.5rem, 6vw, 5rem);
  width: 100%;
}

.related-articles__title {
  margin: 0;
  font-family: var(--ff-base);
  font-size: clamp(2rem, 3vw + 1rem, 3.5rem);
  font-weight: var(--fw-regular);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #1e1e1e;
}

.related-articles__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
}

.related-articles__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.related-articles__image-link {
  display: block;
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #ececed;
}

.related-articles__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 421 / 240;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.related-articles__date {
  margin: 0;
  font-family: var(--ff-base);
  font-size: 0.875rem; /* 14px */
  font-weight: var(--fw-medium);
  line-height: 1.4286; /* 20px */
  letter-spacing: -0.01em;
  color: #1e1e1e;
}

.related-articles__card-title {
  margin: 0;
  width: 100%;
  font-family: var(--ff-base);
  font-size: clamp(1.25rem, 0.6vw + 1.1rem, 1.5rem); /* 20-24 */
  font-weight: var(--fw-regular);
  line-height: 1.1667; /* 28px @24px */
  letter-spacing: -0.03em;
  color: #1e1e1e;
}

.related-articles__card-link {
  color: inherit;
  transition: opacity 0.2s ease;
}

.related-articles__image-link:focus-visible,
.related-articles__card-link:focus-visible {
  outline: 2px solid var(--c-dark);
  outline-offset: 2px;
}

@media (hover: hover) {
  .related-articles__image-link:hover .related-articles__image {
    transform: scale(1.03);
  }

  .related-articles__card-link:hover {
    opacity: 0.8;
  }
}

@media (min-width: 48em) {
  .related-articles__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 64em) {
  .article-page__hero {
    grid-template-columns: minmax(0, 40.25rem) minmax(0, 40rem);
    justify-content: space-between;
    column-gap: 1.75rem;
  }

  .article-page__body {
    max-width: 82rem;
  }

  .related-articles__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
