    /* ─── TOKENS ──────────────────────────────────────── */
    :root {
      --pink: #FADADD;
      --pink-mid: #F2C4C9;
      --brown-lt: #C9A99F;
      --brown: #9B7B74;
      --brown-dk: #7A5A55;
      --brown-dkr: #4D3530;
      --white: #FFFFFF;
      --text: #3D2825;
      --text-mid: #6B4A45;
      --r: 14px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--pink);
      color: var(--text);
      overflow-x: hidden;
    }

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

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

    button {
      cursor: pointer;
      font-family: inherit;
    }

    ul {
      list-style: none;
    }

    /* ─── LANGUAGE ────────────────────────────────────── */
    body:not(.en) .lang-en {
      display: none !important;
    }

    body.en .lang-el {
      display: none !important;
    }

    /* ─── REVEAL ──────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .65s ease, transform .65s ease;
    }

    .reveal.in {
      opacity: 1;
      transform: none;
    }

    .rd1 {
      transition-delay: .1s;
    }

    .rd2 {
      transition-delay: .18s;
    }

    .rd3 {
      transition-delay: .26s;
    }

    .rd4 {
      transition-delay: .34s;
    }

    /* ─── NAVBAR ──────────────────────────────────────── */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 900;
      background: rgba(250, 218, 221, .93);
      backdrop-filter: blur(14px);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3rem;
      padding: .9rem 2.5rem;
      border-bottom: 1px solid rgba(155, 123, 116, .14);
    }

    .nav-logo {
      display: none;
    }

    .nav-links {
      display: flex;
      gap: 2.2rem;
      align-items: center;
    }

    .nav-links a {
      font-size: .85rem;
      font-weight: 500;
      color: var(--text-mid);
      transition: color .2s;
    }

    .nav-links a:hover {
      color: var(--brown-dk);
    }

    .nav-cta {
      background: var(--brown-dk) !important;
      color: var(--white) !important;
      padding: .48rem 1.4rem;
      border-radius: 30px;
      font-weight: 600 !important;
      font-size: .84rem !important;
      transition: background .2s;
    }

    .nav-cta:hover {
      background: var(--brown-dkr) !important;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 1.1rem;
    }

    .lang-sw {
      display: flex;
      gap: .4rem;
    }

    .lang-sw button {
      border: 1.5px solid var(--brown-lt);
      background: none;
      padding: .2rem .62rem;
      border-radius: 20px;
      font-size: .74rem;
      font-weight: 600;
      color: var(--brown);
      transition: all .2s;
    }

    .lang-sw button.active {
      background: var(--brown-dk);
      color: var(--white);
      border-color: var(--brown-dk);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      padding: .2rem;
    }

    .hamburger span {
      display: block;
      width: 23px;
      height: 2px;
      background: var(--brown-dk);
      border-radius: 2px;
      transition: .3s;
    }

    .drawer {
      position: fixed;
      top: 67px;
      left: 0;
      right: 0;
      height: calc(100vh - 67px);
      z-index: 800;
      background: rgba(250, 218, 221, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 3rem 2.5rem;
      flex-direction: column;
      gap: 1.8rem;
      display: flex;
      visibility: hidden;
      clip-path: circle(0% at 100% 0%);
      transition: clip-path 0.7s cubic-bezier(0.65, 0, 0.15, 1), visibility 0.7s;
      pointer-events: none;
    }

    .drawer.open {
      visibility: visible;
      clip-path: circle(150% at 100% 0%);
      pointer-events: auto;
    }

    .drawer a {
      font-size: 1.8rem;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      color: var(--brown-dk);
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
      display: inline-block;
      width: fit-content;
    }

    .drawer a:hover {
      color: var(--brown);
    }

    .drawer.open a {
      opacity: 1;
      transform: translateY(0);
    }

    .drawer.open a:nth-child(1) {
      transition-delay: 0.15s;
    }

    .drawer.open a:nth-child(2) {
      transition-delay: 0.22s;
    }

    .drawer.open a:nth-child(3) {
      transition-delay: 0.29s;
    }

    .drawer.open a:nth-child(4) {
      transition-delay: 0.36s;
    }

    .drawer.open a:nth-child(5) {
      transition-delay: 0.43s;
    }

    .drawer .lang-sw {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      margin-top: 2rem !important;
    }

    .drawer.open .lang-sw {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.5s;
    }

    .drawer-socials {
      margin-top: auto;
      padding-top: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      gap: .9rem;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      transition-delay: 0.58s;
    }

    .drawer-socials-icons {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .drawer-socials-icons .sico {
      width: 48px;
      height: 48px;
      min-width: 48px;
      min-height: 48px;
      flex-shrink: 0;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
    }

    .drawer-socials-icons .sico svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }

    .drawer.open .drawer-socials {
      opacity: 1;
      transform: translateY(0);
    }

    .drawer-email {
      font-size: .78rem;
      font-weight: 500;
      color: var(--brown);
      letter-spacing: .3px;
      transition: color .2s;
    }

    .drawer-email:hover {
      color: var(--brown-dk);
    }

    /* ─── HERO ────────────────────────────────────────── */
    .hero {
      padding-top: 67px;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }

    .hero-bg-name {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: 'Dancing Script', cursive;
      font-size: clamp(150px, 26vw, 420px);
      color: var(--brown);
      white-space: nowrap;
      pointer-events: none;
      user-select: none;
      z-index: 0;
    }

    .hero-body {
      flex: 1;
      display: flex;
      align-items: flex-end;
      justify-content: flex-end;
      padding: 3.5rem 0 0 3rem;
      position: relative;
      z-index: 1;
    }

    /* hero SVG composition — right column, bottom-aligned so ticker starts here */
    .hero-photos {
      flex-shrink: 0;
      width: clamp(360px, 50vw, 680px);
      display: flex;
      align-items: flex-end;
      justify-content: center;
      align-self: flex-end;
    }

    .hero-svg {
      width: 100%;
      height: auto;
      display: block;
      filter: drop-shadow(0 16px 40px rgba(77, 53, 48, .12));
    }

    .hero-overlay {
      display: none;
    }

    /* text side */
    .hero-text {
      display: none;
    }

    .hero-label {
      font-size: .7rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--brown);
      margin-bottom: .6rem;
    }

    .hero-name {
      font-family: 'Dancing Script', cursive;
      font-size: clamp(3.2rem, 6.5vw, 5.5rem);
      color: var(--brown-dk);
      line-height: 1;
      margin-bottom: 1.5rem;
    }

    .hero-desc {
      font-size: .93rem;
      line-height: 1.75;
      color: var(--text-mid);
      margin-bottom: 1rem;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: .48rem;
      background: var(--brown-dk);
      color: var(--white);
      padding: .78rem 1.95rem;
      border-radius: 30px;
      font-size: .87rem;
      font-weight: 600;
      border: none;
      transition: background .22s, transform .18s;
    }

    .btn-primary:hover {
      background: var(--brown-dkr);
      transform: translateY(-2px);
    }

    .hero-stats {
      display: flex;
      gap: 2.4rem;
      margin-top: 2.4rem;
    }

    .hstat-num {
      display: block;
      font-family: 'Dancing Script', cursive;
      font-size: 2rem;
      font-weight: 700;
      color: var(--brown-dk);
    }

    .hstat-lbl {
      font-size: .64rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--brown);
    }

    /* ─── TICKER ──────────────────────────────────────── */
    .ticker-wrap {
      background: var(--brown);
      overflow: hidden;
      padding: .54rem 0;
      white-space: nowrap;
    }

    .ticker-track {
      display: inline-block;
      animation: scrollx 34s linear infinite;
    }

    .ticker-track:hover {
      animation-play-state: paused;
    }

    .t-item {
      display: inline-block;
      color: rgba(255, 255, 255, .88);
      font-size: .69rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin: 0 1.35rem;
    }

    .t-dot {
      display: inline-block;
      width: 4px;
      height: 4px;
      background: rgba(255, 255, 255, .4);
      border-radius: 50%;
      vertical-align: middle;
      margin: 0 .25rem;
    }

    @keyframes scrollx {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* ─── SHARED SECTION ──────────────────────────────── */
    .s-tag {
      display: inline-block;
      font-size: .69rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--brown);
      border: 1px solid var(--brown-lt);
      padding: .27rem .82rem;
      border-radius: 30px;
    }

    /* ─── ABOUT ───────────────────────────────────────── */
    .about-wrap {
      padding: 7rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .about-img-box {
      position: relative;
    }

    .about-img {
      width: 100%;
      height: 575px;
      object-fit: cover;
      object-position: top center;
      border-radius: var(--r);
    }

    .about-frame {
      position: absolute;
      inset: -13px -13px 13px 13px;
      border: 2px solid var(--brown-lt);
      border-radius: var(--r);
      z-index: -1;
    }

    .about-tag {
      margin-bottom: 1.35rem;
    }

    .about-title {
      font-family: 'Dancing Script', cursive;
      font-size: 3.1rem;
      color: var(--brown-dk);
      margin-bottom: 1.4rem;
    }

    .about-text {
      font-size: .91rem;
      line-height: 1.8;
      color: var(--text-mid);
      margin-bottom: 1rem;
    }

    /* ─── NICHES ──────────────────────────────────────── */
    .niches {
      padding: 4rem 0 5rem;
    }

    .niches-head {
      padding: 0 2rem;
      margin-bottom: 2.5rem;
      text-align: center;
    }

    .niches-scroll {
      display: flex;
      gap: 1.35rem;
      padding: 0 2rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .niches-scroll::-webkit-scrollbar {
      display: none;
    }

    .n-card {
      flex-shrink: 0;
      width: 272px;
      height: 400px;
      border-radius: var(--r);
      overflow: hidden;
      scroll-snap-align: start;
      position: relative;
      transition: transform .28s;
    }

    .n-card:hover {
      transform: scale(1.025);
    }

    .n-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }

    .n-ov {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.4rem;
    }

    .ov0 {
      background: linear-gradient(to top, rgba(107, 76, 71, .9) 0%, rgba(107, 76, 71, .1) 100%);
    }

    .ov1 {
      background: linear-gradient(to top, rgba(72, 52, 88, .9) 0%, rgba(72, 52, 88, .1) 100%);
    }

    .ov2 {
      background: linear-gradient(to top, rgba(42, 66, 95, .9) 0%, rgba(42, 66, 95, .1) 100%);
    }

    .ov3 {
      background: linear-gradient(to top, rgba(98, 66, 42, .9) 0%, rgba(98, 66, 42, .1) 100%);
    }

    .ov4 {
      background: linear-gradient(to top, rgba(50, 86, 70, .9) 0%, rgba(50, 86, 70, .1) 100%);
    }

    .n-cat {
      color: var(--white);
      font-size: .73rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: .42rem;
    }

    .n-desc {
      color: rgba(255, 255, 255, .88);
      font-size: .77rem;
      line-height: 1.52;
      margin-bottom: .95rem;
    }

    .n-btn {
      display: inline-block;
      border: 1.5px solid rgba(255, 255, 255, .72);
      color: var(--white);
      padding: .37rem 1.1rem;
      border-radius: 25px;
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      transition: all .22s;
    }

    .n-btn:hover {
      background: var(--white);
      color: var(--brown-dk);
      border-color: var(--white);
    }

    /* ─── PROCESS ─────────────────────────────────────── */
    .process {
      padding: 7rem 2rem;
    }

    .process-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .process-head {
      text-align: center;
      margin-bottom: 4rem;
    }

    .p-head-title {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-family: 'Times New Roman', serif;
      color: var(--brown-dkr);
      position: relative;
      width: fit-content;
      margin: 0.5rem auto 0;
    }

    .p-head-title::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: -5%;
      width: 110%;
      height: 20px;
      background: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 20' preserveAspectRatio='none'%3E%3Cpath d='M2.5,14 C45,6 120,4 290,11 C295,11.5 295,13.5 290,14 C150,11 60,11 2.5,15 C1.5,15.2 1.5,14.5 2.5,14 Z' fill='%23eabebf'/%3E%3Cpath d='M15,16 C85,10 180,9 270,14 C275,14.5 275,16 270,16 C180,13 85,13 15,17 C13,17.2 13,16.5 15,16 Z' fill='%23eabebf' opacity='0.6'/%3E%3Cpath d='M40,18 C110,13 190,12 250,15 C255,15.5 255,16.5 250,16.5 C190,15 110,15 40,18.5 C38,18.7 38,18.2 40,18 Z' fill='%23eabebf' opacity='0.4'/%3E%3C/svg%3E") no-repeat center;
      background-size: 100% 100%;
      z-index: -1;
    }

    .process-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 3rem;
      align-items: center;
    }

    .process-grid>div:first-child {
      position: relative;
      z-index: 2;
    }

    .p-step {
      border-radius: 24px;
      padding: 1.8rem 2.2rem;
      box-shadow: 0 6px 16px rgba(122, 90, 85, 0.05), 0 0 25px rgba(255, 255, 255, 0.9);
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      border: 1px solid rgba(255, 255, 255, 0.8);
      position: relative;
      overflow: hidden;
    }

    .p-step:last-child {
      margin-bottom: 0;
    }

    .p-step:nth-child(1) {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.75)), url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    }

    .p-step:nth-child(2) {
      background: linear-gradient(225deg, rgba(255, 255, 255, 0.95), rgba(252, 238, 240, 0.85)), url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    }

    .p-step:nth-child(3) {
      background: linear-gradient(315deg, rgba(255, 255, 255, 0.95), rgba(250, 242, 238, 0.85)), url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
    }

    .p-icon-box {
      width: 64px;
      height: 64px;
      flex-shrink: 0;
      border-radius: 50%;
      background: rgba(242, 196, 201, 0.2);
      border: 1px solid rgba(242, 196, 201, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--brown);
    }

    .p-content {
      flex: 1;
      border-left: 1px dashed rgba(201, 169, 159, 0.6);
      padding-left: 1.5rem;
    }

    .p-num {
      font-size: 1rem;
      font-weight: 700;
      color: var(--brown-dk);
      margin-bottom: .4rem;
    }

    .p-body {
      font-size: .85rem;
      color: var(--text-mid);
      line-height: 1.6;
    }

    .p-big-num {
      font-size: 3.5rem;
      font-family: 'Times New Roman', serif;
      color: var(--pink-mid);
      opacity: 0.8;
      font-weight: 600;
      flex-shrink: 0;
    }

    .process-photo-box {
      position: relative;
      z-index: 2;
      /* Front of cards */
    }

    .process-photo {
      width: 100%;
      height: auto;
      max-height: 700px;
      object-fit: contain;
      filter: drop-shadow(0 12px 30px rgba(155, 123, 116, 0.12));
    }

    /* ─── GALLERY ─────────────────────────────────────── */
    .gallery {
      padding: 5rem 2rem;
    }

    .gallery-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: center;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: .48rem;
      height: 500px;
      overflow: hidden;
      border-radius: 10px;
    }

    .g-img {
      width: 100%;
      height: 100%;
      min-height: 0;
      max-height: 100%;
      object-fit: cover;
      object-position: top center;
      border-radius: 10px;
      display: block;
    }

    .g-tall {
      grid-row: span 2;
    }

    .g-wrap {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 0;
      overflow: hidden;
      border-radius: 10px;
    }

    .g-wrap .g-img {
      border-radius: 0;
    }

    .g-views {
      position: absolute;
      bottom: 8px;
      left: 8px;
      display: flex;
      align-items: center;
      gap: 4px;
      background: rgba(0, 0, 0, 0.55);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      padding: 3px 7px;
      border-radius: 4px;
      pointer-events: none;
    }

    .g-views::before {
      content: '';
      display: inline-block;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 5px 0 5px 9px;
      border-color: transparent transparent transparent #fff;
      flex-shrink: 0;
    }

    /* ── TikTok embed cells ── */
    .g-tt {
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      background: #000;
    }

    .g-tt-frame {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }

    .gallery-quote {
      font-size: clamp(1.55rem, 2.5vw, 1.9rem);
      font-weight: 800;
      color: var(--brown-dkr);
      line-height: 1.25;
      margin-bottom: 1.15rem;
    }

    .gallery-sub {
      font-size: .89rem;
      color: var(--text-mid);
      line-height: 1.75;
    }

    /* ─── BRANDS ──────────────────────────────────────── */
    .brands {
      padding: 5rem 2rem;
      background: var(--white);
    }

    .brands-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .brands-title {
      text-align: center;
      font-size: .93rem;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--brown-dk);
      margin-bottom: 3rem;
    }

    .brands-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 3rem 4rem;
    }

    .brand-logo {
      height: 46px;
      max-width: 148px;
      object-fit: contain;
    }

    /* ─── STATS ───────────────────────────────────────── */
    .stats {
      padding: 5rem 2rem;
      background: var(--brown-dk);
    }

    .stats-inner {
      max-width: 1050px;
      margin: 0 auto;
    }

    .stats-lbl {
      text-align: center;
      font-size: .68rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .58);
      margin-bottom: 3rem;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      text-align: center;
    }

    .st-num {
      display: block;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 1.55rem;
      color: var(--white);
      margin-bottom: .38rem;
      letter-spacing: .1rem;
    }

    .st-lbl {
      font-size: .63rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .58);
    }

    /* ─── USAGE ───────────────────────────────────────── */
    .usage {
      padding: 7rem 2rem;
    }

    .usage-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .usage-head {
      text-align: center;
      margin-bottom: 4rem;
    }

    .usage-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border: 1px solid rgba(155, 123, 116, .22);
      border-radius: 16px;
      overflow: hidden;
    }

    .u-card {
      position: relative;
      padding: 2.8rem 2.2rem 2.4rem;
      border-right: 1px solid rgba(155, 123, 116, .22);
      background: var(--white);
      transition: background .3s;
      overflow: hidden;
    }

    .u-card:last-child {
      border-right: none;
    }

    .u-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--brown-lt), var(--brown-dk));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s cubic-bezier(.16, 1, .3, 1);
    }

    .u-card:hover::before {
      transform: scaleX(1);
    }

    .u-card:hover {
      background: var(--pink);
    }

    .u-num {
      display: block;
      font-family: 'Poppins', sans-serif;
      font-weight: 800;
      font-size: 3.8rem;
      line-height: 1;
      color: rgba(155, 123, 116, .18);
      margin-bottom: 1.6rem;
      letter-spacing: -2px;
      transition: color .3s;
    }

    .u-card:hover .u-num {
      color: rgba(122, 90, 85, .28);
    }

    .u-card-body {
      position: relative;
    }

    .u-cat {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--brown-dk);
      margin-bottom: .75rem;
      display: block;
    }

    .u-desc {
      font-size: .84rem;
      color: var(--text-mid);
      line-height: 1.7;
    }

    .usage-cta {
      display: flex;
      justify-content: center;
      margin-top: 3rem;
    }

    /* ─── TAGS ────────────────────────────────────────── */
    .tags-sec {
      padding: 4rem 2rem;
      background: var(--white);
    }

    .tags-inner {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: .85rem;
    }

    .tag {
      padding: .53rem 1.4rem;
      border-radius: 30px;
      font-size: .73rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .tag-lt {
      background: var(--pink);
      color: var(--brown-dk);
    }

    .tag-dk {
      background: var(--brown-dk);
      color: var(--white);
    }

    /* ─── CTA ─────────────────────────────────────────── */
    .cta {
      padding: 8rem 2rem;
    }

    .cta-inner {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
    }

    .cta-inner .btn-primary {
      margin-top: 2rem;
    }

    .cta-email {
      display: block;
      margin-top: 1.1rem;
      font-size: .83rem;
      color: var(--brown);
      letter-spacing: .3px;
      transition: color .2s;
    }

    .cta-email:hover {
      color: var(--brown-dk);
    }

    .cta-title {
      font-size: clamp(1.55rem, 3vw, 2.1rem);
      font-weight: 800;
      color: var(--brown-dkr);
      line-height: 1.2;
      text-transform: uppercase;
      margin-bottom: 2rem;
    }

    .cta-photo {
      width: 100%;
      height: 500px;
      object-fit: cover;
      object-position: top center;
      display: block;
      border-radius: var(--r);
    }

    /* ─── FOOTER ──────────────────────────────────────── */
    footer {
      background: var(--pink-mid);
      padding: 3rem 2.5rem 1.5rem;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
    }

    .footer-logo {
      font-family: 'Dancing Script', cursive;
      font-size: 2.1rem;
      color: var(--brown-dk);
    }

    .socials {
      display: flex;
      gap: .82rem;
    }

    .sico {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1.5px solid var(--brown-lt);
      color: var(--brown);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .22s;
    }

    .sico:hover {
      background: var(--brown-dk);
      color: var(--white);
      border-color: var(--brown-dk);
    }

    .sico svg {
      width: 17px;
      height: 17px;
      fill: currentColor;
    }

    .footer-bottom {
      border-top: 1px solid rgba(155, 123, 116, .2);
      padding-top: 1.35rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: .5rem;
    }

    .footer-copy {
      font-size: .77rem;
      color: var(--text-mid);
    }

    .footer-handle {
      font-size: .77rem;
      color: var(--brown);
    }

    /* ─── MOBILE INTRO BLOCK ─────────────────────────── */
    .mobile-intro {
      display: none;
      /* hidden on desktop */
      padding: 2.5rem 1.8rem 2rem;
      text-align: center;
      background: var(--pink);
    }

    .mobile-intro .hero-name {
      font-family: 'Dancing Script', cursive;
      font-size: 3.4rem;
      color: var(--brown-dk);
      line-height: 1;
      margin-bottom: 1.2rem;
    }

    .mobile-intro .hero-label {
      font-size: .7rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--brown);
      margin-bottom: .5rem;
    }

    .mobile-intro .hero-desc {
      font-size: .9rem;
      line-height: 1.75;
      color: var(--text-mid);
      margin-bottom: .85rem;
    }

    .mobile-intro .btn-primary {
      margin-top: .6rem;
    }

    /* ─── PHONE MOCKUP – MOBILE PROCESS ─────────────── */

    /* Hide desktop grid on mobile, show mobile layout on desktop hides */
    .process-mobile {
      display: none;
    }

    /* ── Scroll wrapper: gives the section its 300vh scroll height ── */
    .pm-scroll-wrapper {
      position: relative;
      height: 300vh;
    }

    /* ── Sticky viewport: row — phone left, title right ── */
    .pm-sticky-viewport {
      position: sticky;
      top: 67px;
      height: calc(100vh - 67px);
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      pointer-events: none;
      z-index: 1;
      padding: 0 1.2rem;
    }

    /* Title on the right, next to the phone */
    .pm-sticky-title {
      flex: 1;
      text-align: left;
      pointer-events: none;
    }

    .pm-sticky-title .p-head-title {
      font-size: clamp(0.9rem, 3.8vw, 1.4rem);
      margin: 0;
      width: auto;
    }

    .pm-sticky-title .p-head-title::after {
      bottom: -2px;
      left: 0;
      width: 100%;
    }

    /* ── Invisible IO-trigger panels ── */
    .pm-panel {
      position: absolute;
      left: 0;
      width: 100%;
      height: 100vh;
      pointer-events: none;
    }

    .pm-panel[data-step="0"] {
      top: 0;
    }

    .pm-panel[data-step="1"] {
      top: 100vh;
    }

    .pm-panel[data-step="2"] {
      top: 200vh;
    }

    /* ── iPhone Bezel ── */
    .pm-bezel {
      width: 210px;
      height: 445px;
      background: #111;
      border-radius: 3rem;
      box-shadow:
        inset 0 0 0 2px #52525B,
        inset 0 0 0 7px #000,
        0 40px 80px -15px rgba(0, 0, 0, .55),
        0 15px 30px -5px rgba(0, 0, 0, .4);
      position: relative;
      flex-shrink: 0;
      pointer-events: auto;
    }

    /* Side hardware buttons */
    .pm-btn {
      position: absolute;
      background: linear-gradient(90deg, #404040 0%, #1a1a1a 100%);
      box-shadow: -2px 0 4px rgba(0, 0, 0, .7), inset -1px 0 1px rgba(255, 255, 255, .12);
      border-radius: 2px;
    }

    .pm-btn-vol-up {
      left: -3px;
      top: 100px;
      width: 3px;
      height: 22px;
    }

    .pm-btn-vol-dn {
      left: -3px;
      top: 134px;
      width: 3px;
      height: 38px;
    }

    .pm-btn-pwr {
      right: -3px;
      top: 148px;
      width: 3px;
      height: 56px;
      background: linear-gradient(270deg, #404040 0%, #1a1a1a 100%);
    }

    /* ── Screen ── */
    .pm-screen {
      position: absolute;
      inset: 7px;
      background: #050914;
      border-radius: 2.5rem;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      color: #fff;
    }

    .pm-glare {
      position: absolute;
      inset: 0;
      background: linear-gradient(115deg, rgba(255, 255, 255, .06) 0%, transparent 45%);
      pointer-events: none;
      z-index: 40;
      border-radius: inherit;
    }

    /* Dynamic Island */
    .pm-notch {
      position: absolute;
      top: 5px;
      left: 50%;
      transform: translateX(-50%);
      width: 88px;
      height: 24px;
      background: #000;
      border-radius: 20px;
      z-index: 50;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding-right: 8px;
    }

    .pm-notch-cam {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #1a1a1a;
      box-shadow: 0 0 0 1px #2a2a2a, inset 0 0 3px rgba(0, 0, 0, .9);
    }

    /* Status bar */
    .pm-status-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 14px 0;
      font-size: 9px;
      font-weight: 700;
      color: rgba(255, 255, 255, .9);
      flex-shrink: 0;
      position: relative;
      z-index: 10;
    }

    .pm-time {
      letter-spacing: .4px;
    }

    .pm-status-icons {
      display: flex;
      align-items: center;
      gap: 4px;
      color: rgba(255, 255, 255, .9);
    }

    /* App header */
    .pm-app-header {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 38px 14px 8px;
      border-bottom: 1px solid rgba(255, 255, 255, .05);
      flex-shrink: 0;
    }

    .pm-app-avatar {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--brown-lt), var(--brown-dk));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 9px;
      font-weight: 800;
      color: #fff;
      flex-shrink: 0;
    }

    .pm-app-name {
      font-size: 11px;
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
      font-family: 'Dancing Script', cursive;
      font-size: 13px;
    }

    .pm-app-sub {
      font-size: 8px;
      color: rgba(255, 255, 255, .45);
      letter-spacing: .5px;
      text-transform: uppercase;
      line-height: 1;
    }

    /* Cards container */
    .pm-cards-container {
      flex: 1;
      position: relative;
      overflow: hidden;
      padding: 10px 12px 0;
    }

    /* Individual step card */
    .pm-card {
      position: absolute;
      inset: 10px 12px 0;
      background: linear-gradient(145deg, rgba(201, 169, 159, 0.15) 0%, rgba(155, 123, 116, 0.03) 100%);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(201, 169, 159, 0.15);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      border-radius: 20px;
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      opacity: 0;
      transform: translateY(30px) scale(0.96);
      transition: opacity .52s cubic-bezier(.22, 1, .36, 1), transform .52s cubic-bezier(.22, 1, .36, 1);
      will-change: transform, opacity;
      pointer-events: none;
    }

    .pm-card.pm-card-active {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .pm-card.pm-card-exit {
      opacity: 0;
      transform: translateY(-20px) scale(0.96);
      transition: opacity .35s ease-in, transform .35s ease-in;
    }

    /* Card header row */
    .pm-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .pm-card-icon-wrap {
      width: 36px;
      height: 36px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(242, 196, 201, 0.2), rgba(242, 196, 201, 0.05));
      border: 1px solid rgba(242, 196, 201, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--pink-mid);
    }

    .pm-card-num {
      font-family: 'Times New Roman', serif;
      font-size: 2rem;
      font-weight: 700;
      color: rgba(242, 196, 201, 0.15);
      line-height: 1;
    }

    .pm-card-title {
      font-size: 15px;
      font-weight: 600;
      color: #ffffff;
      line-height: 1.2;
      letter-spacing: .3px;
    }

    .pm-card-body {
      font-size: 11.5px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.6;
      flex: 1;
    }

    .pm-card-progress {
      height: 3px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 3px;
      overflow: hidden;
      margin-top: auto;
    }

    .pm-card-progress-bar {
      height: 100%;
      background: linear-gradient(90deg, var(--brown-lt), var(--brown-dk));
      border-radius: 3px;
      transition: width .6s ease;
    }

    /* Step dot indicators */
    .pm-dots {
      display: flex;
      justify-content: center;
      gap: 5px;
      padding: 8px 0 4px;
      flex-shrink: 0;
    }

    .pm-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .2);
      transition: background .3s, transform .3s;
    }

    .pm-dot.active {
      background: var(--brown-lt);
      transform: scale(1.3);
    }

    /* Home indicator bar */
    .pm-home-indicator {
      width: 90px;
      height: 3px;
      background: rgba(255, 255, 255, .18);
      border-radius: 3px;
      margin: 6px auto 8px;
      flex-shrink: 0;
    }

    /* ─── RESPONSIVE ──────────────────────────────────── */
    @media (max-width: 900px) {
      .nav {
        justify-content: space-between;
        gap: 0;
      }

      .nav-logo {
        display: block;
        font-family: 'Dancing Script', cursive;
        font-size: 1.9rem;
        color: var(--brown-dk);
      }

      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      /* ── mobile hero adjustments to match desktop ── */
      .hero {
        min-height: 80vh;
      }

      .hero-body {
        padding: 2rem 0 0 0;
      }

      .hero-photos {
        width: 100%;
        max-width: 450px;
      }

      .mobile-intro {
        display: block;
      }

      .about-wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 1.5rem;
      }

      .about-img {
        height: 400px;
      }

      .about-frame {
        display: none;
      }

      .process-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .process-desktop {
        display: none;
      }

      .process-mobile {
        display: block;
        position: relative;
      }

      /* Hide the original heading — it now lives inside the sticky viewport */
      .process-head {
        display: none;
      }

      /* Remove standard process section padding so scroll-track fills correctly */
      .process {
        padding: 0;
      }

      .process-inner {
        padding: 0;
      }

      .p-step {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.2rem;
      }

      .p-content {
        border-left: none;
        padding-left: 0;
      }

      .p-big-num {
        display: none;
        /* Hide huge numbers on mobile to save space, or style them differently */
      }

      .process-photo-box {
        order: -1;
      }

      .process-photo {
        height: 360px;
      }

      .gallery-inner {
        grid-template-columns: 1fr;
      }

      .gallery-grid {
        height: 380px;
      }

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

      .usage-cards {
        grid-template-columns: 1fr;
        border-radius: 12px;
      }

      .u-card {
        border-right: none;
        border-bottom: 1px solid rgba(155, 123, 116, .22);
        padding: 2rem 1.6rem;
      }

      .u-card:last-child {
        border-bottom: none;
      }

      .u-num {
        font-size: 2.8rem;
        margin-bottom: 1rem;
      }

      .cta-inner {
        max-width: 100%;
      }

      .footer-top {
        flex-direction: column;
        gap: 1.35rem;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }

    @media (max-width: 540px) {
      .nav {
        padding: .82rem 1.35rem;
      }

      .tags-inner {
        flex-direction: column;
        align-items: stretch;
        gap: .6rem;
      }

      .tag {
        text-align: center;
        padding: .7rem 1.2rem;
      }

      .brands-grid {
        gap: 2rem 2.5rem;
      }

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

      .stats-grid> :nth-child(5) {
        grid-column: span 2;
      }

      .hero-photos {
        width: 100%;
      }
    }