  :root{
    --cream:#FBF3EF;
    --cream-2:#F6E9E3;
    --blush:#F1DCD8;
    --rose:#C98A93;
    --rose-deep:#8F4B54;
    --rose-deeper:#6E353E;
    --gold:#B8935F;
    --gold-light:#E4C99A;
    --ink:#382A28;
    --ink-soft:#7A645F;
    --white:#FFFDFB;
    --shadow: 0 20px 45px -20px rgba(110, 53, 62, 0.28);
    --ease: cubic-bezier(.22,.61,.36,1);
  }

  *,*::before,*::after{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; }
  body{
    margin:0;
    background:var(--cream);
    color:var(--ink);
    font-family:'Jost',sans-serif;
    font-weight:300;
    line-height:1.65;
    -webkit-font-smoothing:antialiased;
  }
  img{ max-width:100%; display:block; }
  a{ color:inherit; text-decoration:none; }
  ul{ list-style:none; margin:0; padding:0; }
  section{ scroll-margin-top:86px; }
  h1,h2,h3{ font-family:'Cormorant Garamond',serif; font-weight:600; margin:0; color:var(--rose-deeper); }
  .container{ width:100%; max-width:1140px; margin:0 auto; padding:0 24px; }

  /* ---------- utility ---------- */
  .eyebrow{
    display:block;
    font-family:'Jost',sans-serif; font-size:12.5px; font-weight:500;
    letter-spacing:.28em; text-transform:uppercase; color:var(--gold);
    margin-bottom:14px;
  }
  .eyebrow::before{ content:""; display:block; width:26px; height:1px; background:var(--gold); margin:0 0 10px; }
  .hero-inner .eyebrow, .section-head .eyebrow, .cta-banner .eyebrow{ text-align:center; }
  .hero-inner .eyebrow::before, .section-head .eyebrow::before, .cta-banner .eyebrow::before{ margin:0 auto 10px; }
  .btn{
    display:inline-flex; align-items:center; gap:8px;
    padding:14px 30px; border-radius:999px; font-family:'Jost',sans-serif;
    font-size:14.5px; font-weight:500; letter-spacing:.03em; cursor:pointer;
    border:1px solid transparent; transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  }
  .btn:hover{ transform:translateY(-3px); }
  .btn-primary{ background:linear-gradient(135deg,var(--gold-light),var(--gold)); color:#3d2c14; box-shadow:0 14px 28px -12px rgba(184,147,95,.55); }
  .btn-primary:hover{ box-shadow:0 20px 34px -12px rgba(184,147,95,.65); }
  .btn-outline{ border-color:var(--rose-deep); color:var(--rose-deep); background:transparent; }
  .btn-outline:hover{ background:var(--rose-deep); color:var(--white); }
  .btn-light{ background:var(--cream); color:var(--rose-deeper); }
  .btn-light:hover{ background:var(--white); }
  a:focus-visible, button:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; border-radius:4px; }

  .reveal{ opacity:0; transform:translateY(26px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
  .reveal.is-visible{ opacity:1; transform:translateY(0); }
  @media (prefers-reduced-motion:reduce){
    .reveal{ opacity:1; transform:none; transition:none; }
    html{ scroll-behavior:auto; }
  }

  .section-head{ max-width:640px; margin:0 auto 56px; text-align:center; }
  .section-head h2{ font-size:clamp(30px,4vw,42px); }
  .section-head p{ color:var(--ink-soft); margin-top:14px; font-size:16px; }
  .section-pad{ padding:96px 0; }

  /* ---------- header ---------- */
  .site-header{
    position:fixed; top:0; left:0; right:0; z-index:100;
    display:flex; align-items:center; justify-content:space-between;
    padding:18px 28px; background:rgba(251,243,239,0);
    transition:background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  }
  .site-header.is-scrolled{
    background:rgba(251,243,239,.92); backdrop-filter:blur(10px);
    box-shadow:0 10px 30px -18px rgba(110,53,62,.35); padding:12px 28px;
  }
  .brand{ display:flex; align-items:center; gap:12px; }
  .brand-mark{
    width:42px; height:42px; border-radius:50%; flex-shrink:0;
    border:1.5px solid var(--gold-light); display:flex; align-items:center; justify-content:center;
    background:linear-gradient(160deg,var(--rose-deep),var(--rose-deeper));
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.05);
    transition:border-color .4s var(--ease);
  }
  .brand-mark img{ width:19px; height:auto; display:block; }
  .brand-text{ display:flex; flex-direction:column; line-height:1.15; }
  .brand-text strong{ font-family:'Cormorant Garamond',serif; font-size:18px; font-weight:600; color:var(--cream); transition:color .4s var(--ease); }
  .brand-text span{ font-size:10.5px; letter-spacing:.22em; color:var(--gold-light); text-transform:uppercase; }

  .nav-desktop{ display:flex; align-items:center; gap:34px; }
  .nav-desktop a{ font-size:14px; letter-spacing:.03em; color:rgba(251,243,239,.95); position:relative; padding:4px 0; transition:color .4s var(--ease); }
  .nav-desktop a::after{
    content:""; position:absolute; left:0; bottom:-2px; width:0; height:1px; background:var(--gold);
    transition:width .3s var(--ease);
  }
  .nav-desktop a:hover::after{ width:100%; }
  .nav-cta{ display:flex; align-items:center; gap:22px; }
  .nav-cta .btn{ padding:11px 24px; font-size:13.5px; }
  .nav-cta .btn-outline{ border-color:rgba(251,243,239,.8); color:var(--cream); }
  .nav-cta .btn-outline:hover{ background:var(--cream); color:var(--rose-deeper); }

  .burger{ display:none; width:42px; height:42px; border-radius:50%; border:1px solid rgba(251,243,239,.7); background:rgba(255,255,255,.12); align-items:center; justify-content:center; cursor:pointer; transition:background .4s var(--ease), border-color .4s var(--ease); }
  .burger span, .burger span::before, .burger span::after{
    content:""; display:block; width:18px; height:1.5px; background:var(--cream); position:relative; transition:.3s;
  }
  .burger span::before{ position:absolute; top:-6px; }
  .burger span::after{ position:absolute; top:6px; }

  .site-header.is-scrolled .brand-mark{ border-color:var(--gold); }
  .site-header.is-scrolled .brand-text strong{ color:var(--rose-deeper); }
  .site-header.is-scrolled .brand-text span{ color:var(--gold); }
  .site-header.is-scrolled .nav-desktop a{ color:var(--ink); }
  .site-header.is-scrolled .nav-cta .btn-outline{ border-color:var(--rose-deep); color:var(--rose-deep); }
  .site-header.is-scrolled .nav-cta .btn-outline:hover{ background:var(--rose-deep); color:var(--white); }
  .site-header.is-scrolled .burger{ background:var(--white); border-color:var(--rose); }
  .site-header.is-scrolled .burger span, .site-header.is-scrolled .burger span::before, .site-header.is-scrolled .burger span::after{ background:var(--rose-deeper); }

  .mobile-menu{
    position:fixed; inset:0; background:var(--cream); z-index:99;
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:30px;
    opacity:0; visibility:hidden; transform:translateY(-12px);
    transition:opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
  }
  .mobile-menu.is-open{ opacity:1; visibility:visible; transform:translateY(0); }
  .mobile-menu a{ font-family:'Cormorant Garamond',serif; font-size:28px; color:var(--rose-deeper); }

  /* ---------- hero ---------- */
  .hero{ position:relative; }
  .hero-photo-frame{
    position:relative; width:100%; aspect-ratio:16/7; max-height:640px; min-height:220px;
    overflow:hidden; background:var(--rose-deeper);
  }
  .hero-photo{
    position:absolute; inset:0;
    background-image:url('hero.jpg'); background-size:cover; background-position:center 40%;
  }
  .hero-photo-frame::after{
    content:""; position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(65,29,35,0) 70%, rgba(251,243,239,.9) 100%);
  }
  .sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
  .hero-inner{ position:relative; max-width:680px; width:100%; margin:0 auto; text-align:center; padding:56px 24px 10px; }
  .hero p.lede{ margin:22px auto 0; max-width:520px; color:var(--ink-soft); font-size:17px; }
  .hero-actions{ margin-top:34px; display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

  .arc-divider{ position:relative; z-index:2; margin-top:70px; width:100%; }
  .arc-divider svg{ width:100%; height:auto; display:block; }

  /* ---------- prestations overview ---------- */
  .overview-grid{ display:grid; grid-template-columns:1fr 1fr 1fr; gap:28px; }
  .overview-card{
    padding:44px 38px; border-radius:26px; position:relative; overflow:hidden;
    box-shadow:var(--shadow); transition:transform .4s var(--ease), box-shadow .4s var(--ease);
  }
  .overview-card:hover{ transform:translateY(-8px); }
  .overview-card.card-nails{ background:linear-gradient(160deg,var(--blush),var(--cream-2)); }
  .overview-card.card-lashes{ background:linear-gradient(160deg,var(--rose-deep),var(--rose-deeper)); color:var(--cream); }
  .overview-card.card-lashes h3{ color:var(--cream); }
  .overview-card.card-lashes p{ color:rgba(251,243,239,.82); }
  .overview-card.card-lashes .eyebrow{ color:var(--gold-light); }
  .overview-card.card-lashes .eyebrow::before{ background:var(--gold-light); }
  .overview-card.card-epil{ background:linear-gradient(160deg,var(--gold-light),var(--cream-2)); }
  .overview-icon{ width:52px; height:52px; margin-bottom:22px; }
  .overview-card h3{ font-size:28px; margin-bottom:12px; }
  .overview-card p{ color:var(--ink-soft); font-size:15.5px; }
  .card-link{ display:inline-flex; align-items:center; gap:8px; margin-top:22px; font-size:14px; font-weight:500; letter-spacing:.03em; }
  .card-link svg{ width:14px; height:14px; transition:transform .3s var(--ease); }
  .card-link:hover svg{ transform:translateX(4px); }

  /* ---------- service cards (onglerie / cils) ---------- */
  .alt-bg{ background:var(--white); }
  .services-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; margin-bottom:52px; }
  .services-grid.four{ grid-template-columns:repeat(auto-fit, minmax(230px,1fr)); }
  .service-card{
    background:var(--cream); border-radius:20px; padding:32px 26px;
    border-top:3px solid var(--gold); box-shadow:0 16px 34px -22px rgba(110,53,62,.3);
    transition:transform .35s var(--ease), box-shadow .35s var(--ease);
  }
  .service-card:hover{ transform:translateY(-6px); box-shadow:0 22px 40px -18px rgba(110,53,62,.32); }
  .service-card h3{ font-size:21px; margin-bottom:10px; text-transform:capitalize; }
  .service-card p{ color:var(--ink-soft); font-size:14.5px; min-height:64px; }
  .service-card a.book{ display:inline-flex; align-items:center; gap:6px; margin-top:16px; font-size:13.5px; color:var(--rose-deep); font-weight:500; border-bottom:1px solid var(--rose); padding-bottom:2px; }
  .service-card a.book:hover{ color:var(--gold); border-color:var(--gold); }
  .price-tag{ display:block; margin-top:16px; padding-top:14px; border-top:1px dashed var(--blush); font-size:13.5px; color:var(--ink-soft); }
  .price-tag strong{ color:var(--gold); font-weight:600; }
  .price-tag .sep{ margin:0 6px; color:var(--blush); }
  .price-tiers{ margin-top:16px; padding-top:14px; border-top:1px dashed var(--blush); display:flex; flex-direction:column; gap:5px; }
  .price-tiers li{ display:flex; justify-content:space-between; gap:10px; font-size:13px; color:var(--ink-soft); }
  .price-tiers li strong{ color:var(--gold); font-weight:600; white-space:nowrap; }

  .tariff-grid{ display:grid; grid-template-columns:1fr 1fr; gap:28px; }
  .tariff-card{ background:var(--cream); border-radius:20px; padding:34px 32px; border-top:3px solid var(--gold); box-shadow:0 16px 34px -22px rgba(110,53,62,.3); }
  .tariff-card h3{ font-size:22px; margin-bottom:8px; }
  .tariff-card p.tariff-hint{ font-size:13px; color:var(--ink-soft); margin:0 0 18px; }
  .tariff-card ul{ display:flex; flex-direction:column; }
  .tariff-card li{ display:flex; justify-content:space-between; gap:12px; padding:9px 0; border-bottom:1px dashed var(--blush); font-size:14.5px; color:var(--ink-soft); }
  .tariff-card li:last-child{ border-bottom:none; }
  .tariff-card li span:last-child{ color:var(--rose-deep); font-weight:500; flex-shrink:0; }

  .price-note{
    display:flex; flex-wrap:wrap; gap:18px 40px; align-items:center; justify-content:space-between;
    background:var(--blush); border-left:3px solid var(--gold); border-radius:14px; padding:26px 30px;
  }
  .price-note ul{ display:flex; flex-wrap:wrap; gap:10px 28px; }
  .price-note li{ font-size:14px; color:var(--ink-soft); }
  .price-note li strong{ color:var(--ink); font-weight:500; }
  .price-note .btn{ flex-shrink:0; }

  /* ---------- about ---------- */
  .about-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:64px; align-items:center; }
  .about-frame{
    width:100%; max-width:300px; aspect-ratio:1; margin:0 auto; border-radius:50%;
    background:linear-gradient(150deg,var(--blush),var(--rose));
    display:flex; align-items:center; justify-content:center;
    position:relative; overflow:hidden; box-shadow:var(--shadow);
  }
  .about-frame img{ width:100%; height:100%; object-fit:cover; border-radius:50%; }
  .about-frame::before{
    content:""; position:absolute; inset:14px; border-radius:50%; border:1px solid var(--gold-light); z-index:2; pointer-events:none;
  }
  .about-frame span{ font-family:'Cormorant Garamond',serif; font-style:italic; font-weight:600; font-size:96px; color:var(--white); }
  .about-caption{ text-align:center; margin-top:18px; font-size:13px; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); }
  .about-text h2{ font-size:clamp(28px,4vw,38px); margin-bottom:22px; }
  .about-text p{ color:var(--ink-soft); margin-bottom:16px; font-size:16px; }
  .about-text p strong{ color:var(--rose-deeper); font-weight:500; }

  /* ---------- CTA banner ---------- */
  .cta-banner{
    background:linear-gradient(120deg,var(--rose-deeper),var(--rose-deep));
    color:var(--cream); text-align:center; padding:90px 0;
  }
  .cta-banner h2{ color:var(--cream); font-size:clamp(28px,4vw,40px); }
  .cta-banner p{ color:rgba(251,243,239,.82); max-width:520px; margin:18px auto 34px; font-size:16px; }
  .cta-banner .contact-modes{ margin-top:26px; font-size:13.5px; letter-spacing:.04em; color:rgba(251,243,239,.7); }

  /* ---------- contact ---------- */
  .contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
  .contact-list{ display:flex; flex-direction:column; gap:26px; }
  .contact-item{ display:flex; gap:16px; align-items:flex-start; }
  .contact-item .icon{
    width:44px; height:44px; border-radius:50%; background:var(--blush); flex-shrink:0;
    display:flex; align-items:center; justify-content:center; color:var(--rose-deep);
  }
  .contact-item h4{ font-family:'Jost',sans-serif; font-size:12.5px; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); margin:0 0 4px; font-weight:500; }
  .contact-item p, .contact-item a{ font-size:15.5px; color:var(--ink); }
  .contact-item a:hover{ color:var(--rose-deep); }

  .social-icon-btn{
    width:42px; height:42px; border-radius:50%; background:var(--blush); color:var(--rose-deep);
    display:flex; align-items:center; justify-content:center;
    transition:background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
  }
  .social-icon-btn:hover{ background:var(--gold); color:var(--white); transform:translateY(-3px); }
  .social-icon-btn svg{ width:19px; height:19px; }

  .hours-table{ width:100%; border-collapse:collapse; margin-top:6px; }
  .hours-table td{ padding:5px 0; font-size:14.5px; color:var(--ink-soft); border-bottom:1px dashed var(--blush); }
  .hours-table td:last-child{ text-align:right; color:var(--ink); }

  .contact-form{ background:var(--white); border-radius:22px; padding:38px; box-shadow:var(--shadow); }
  .contact-form h3{ font-size:24px; margin-bottom:8px; }
  .contact-form p.hint{ color:var(--ink-soft); font-size:14px; margin:0 0 24px; }
  .field{ margin-bottom:18px; }
  .field label{ display:block; font-size:12.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-soft); margin-bottom:7px; }
  .field input, .field textarea{
    width:100%; padding:13px 15px; border-radius:10px; border:1px solid var(--blush);
    background:var(--cream); font-family:'Jost',sans-serif; font-size:15px; color:var(--ink); resize:vertical;
  }
  .field input:focus, .field textarea:focus{ outline:none; border-color:var(--gold); background:var(--white); }
  .form-note{ font-size:12.5px; color:var(--ink-soft); margin-top:10px; }

  /* ---------- footer ---------- */
  footer{ background:var(--ink); color:rgba(251,243,239,.6); padding:44px 0 28px; }
  .footer-inner{ display:flex; flex-wrap:wrap; gap:18px; align-items:center; justify-content:space-between; }
  footer a{ color:rgba(251,243,239,.75); font-size:13.5px; }
  footer a:hover{ color:var(--gold-light); }
  .footer-links{ display:flex; gap:22px; flex-wrap:wrap; }
  .footer-brand{ font-family:'Cormorant Garamond',serif; font-style:italic; font-size:19px; color:var(--cream); }
  .footer-bottom{ margin-top:26px; font-size:12px; color:rgba(251,243,239,.4); text-align:center; }

  /* ---------- responsive ---------- */
  @media (max-width:920px){
    .nav-desktop, .nav-cta .btn.btn-outline{ display:none; }
    .burger{ display:flex; }
    .overview-grid{ grid-template-columns:1fr; }
    .tariff-grid{ grid-template-columns:1fr; }
    .services-grid, .services-grid.four{ grid-template-columns:1fr 1fr; }
    .about-grid{ grid-template-columns:1fr; text-align:center; }
    .contact-grid{ grid-template-columns:1fr; }
    .section-pad{ padding:72px 0; }
  }
  @media (max-width:560px){
    .services-grid, .services-grid.four{ grid-template-columns:1fr; }
    .price-note{ flex-direction:column; align-items:flex-start; }
    .hero-photo-frame{ aspect-ratio:4/5; max-height:420px; }
    .hero-photo{ background-position:center 32%; }
    .hero-inner{ padding-top:40px; }
    .eyebrow{ font-size:10.5px; letter-spacing:.14em; gap:7px; }
    .eyebrow::before{ width:16px; }
    .hero-actions{ flex-direction:column; align-items:center; }
    .hero-actions .btn{ width:100%; max-width:270px; justify-content:center; }
  }

  /* ---------- sub-page hero banner ---------- */
  .page-hero{
    position:relative; width:100%; aspect-ratio:16/6; max-height:420px; min-height:200px;
    overflow:hidden; background:var(--rose-deeper);
  }
  .page-hero-photo{ position:absolute; inset:0; background-size:cover; background-position:center 40%; }
  .page-hero.no-photo .page-hero-photo{
    background:
      radial-gradient(60% 55% at 82% 12%, rgba(228,201,154,.35), transparent 60%),
      radial-gradient(70% 60% at 12% 88%, rgba(201,138,147,.25), transparent 60%),
      linear-gradient(160deg, var(--rose-deeper), var(--rose-deep));
  }
  .page-hero::after{
    content:""; position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(65,29,35,.15) 0%, rgba(65,29,35,.55) 100%);
  }
  .page-hero.no-photo::after{ background:none; }
  .page-hero-content{
    position:relative; z-index:2; height:100%; display:flex; flex-direction:column;
    align-items:center; justify-content:center; text-align:center; padding:110px 24px 0;
  }
  .page-hero.no-photo .page-hero-content{ padding-top:130px; }
  .page-hero-content .eyebrow{ color:var(--gold-light); }
  .page-hero-content .eyebrow::before{ background:var(--gold-light); }
  .page-hero-content h1{ color:var(--white); font-size:clamp(34px,5.5vw,54px); font-style:italic; }
  .page-hero-content p{ color:rgba(255,253,251,.88); max-width:520px; margin-top:12px; font-size:16px; }
  @media (max-width:560px){
    .page-hero{ aspect-ratio:4/3; max-height:365px; min-height:352px; }
    .page-hero-content{ padding-top:70px; }
    .page-hero-content p{ font-size:14.5px; }
  }

  /* ---------- photo gallery ---------- */
  .gallery-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
  .gallery-grid img{ width:100%; height:100%; object-fit:cover; aspect-ratio:1; border-radius:20px; box-shadow:var(--shadow); }
  @media (max-width:700px){ .gallery-grid{ grid-template-columns:1fr; } }

  /* ---------- page intro block ---------- */
  .page-intro{ max-width:640px; margin:0 auto; text-align:center; }
