/* ============================================================
   Make Up By Oliwia — Soft Glamour · v3
   ============================================================ */

:root {
  --bg:        #FDF8F5;
  --blush:     #F0DADE;
  --blush-lt:  #F8EEF0;
  --rose:      #D4A5A5;
  --rose-dark: #B07070;
  --gold:      #C9A96E;
  --gold-lt:   #E8D5B0;
  --text:      #2C1810;
  --muted:     #8A6E6E;
  --white:     #FFFFFF;
  --dark:      #1A0808;

  --f-head: 'Cormorant Garamond', Georgia, serif;
  --f-body: 'Jost', 'Segoe UI', sans-serif;

  --r-md:   16px;
  --r-lg:   24px;
  --r-pill: 50px;

  --sh-soft: 0 4px 24px rgba(44,24,16,.08);
  --sh-mid:  0 10px 44px rgba(44,24,16,.13);
  --sh-rose: 0 10px 40px rgba(176,112,112,.2);
  --sh-card: 0 2px 0 rgba(212,165,165,.2), 0 8px 36px rgba(44,24,16,.07);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }

body {
  font-family: var(--f-body);
  font-weight: 300;
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  /* Rich curtain background */
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 900px 700px at -5%  0%,  rgba(240,218,222,.95) 0%, transparent 60%),
    radial-gradient(ellipse 800px 700px at 105% 100%,rgba(240,218,222,.9)  0%, transparent 60%),
    radial-gradient(ellipse 500px 400px at 105% 0%,  rgba(212,165,165,.15) 0%, transparent 60%),
    radial-gradient(ellipse 400px 400px at -5%  100%,rgba(212,165,165,.18) 0%, transparent 60%),
    linear-gradient(180deg, rgba(240,218,222,.25) 0%, transparent 20%, rgba(240,218,222,.2) 85%, transparent 100%);
  background-attachment: fixed;
}

a  { text-decoration:none; color:inherit; }
button { border:none; background:none; }
img { max-width:100%; height:auto; display:block; }
ul  { list-style:none; }

/* ── SVG Icons ──────────────────────────────────────────── */
.icon { width:20px; height:20px; flex-shrink:0; display:inline-block; vertical-align:middle; }
.btn .icon { width:18px; height:18px; }
.scard .icon { width:44px; height:44px; color:var(--rose-dark); stroke-width:1.2; }
.ccard .icon { width:42px; height:42px; color:var(--rose-dark); stroke-width:1.2; }

/* ── Intro Overlay ──────────────────────────────────────── */
.intro {
  position:fixed; inset:0;
  background:var(--dark);
  z-index:9000;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px;
  transition:transform .9s cubic-bezier(.76,0,.24,1);
}
.intro.out { transform:translateY(-100%); }
.intro__logo {
  font-family:var(--f-head); font-style:italic; font-size:clamp(1.5rem,4vw,2.3rem);
  color:var(--rose); opacity:0; transform:translateY(10px);
  animation:iUp .7s ease .4s forwards; letter-spacing:.03em;
}
.intro__line { width:0; height:1px; background:var(--gold); animation:iLine .6s ease 1s forwards; }
.intro__sub {
  font-size:.72rem; letter-spacing:.25em; text-transform:uppercase;
  color:rgba(212,165,165,.45); opacity:0;
  animation:iUp .6s ease 1.35s forwards;
}
@keyframes iUp   { to { opacity:1; transform:none; } }
@keyframes iLine { to { width:80px; } }

/* ── Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity:0;
  transform:translateY(22px) scale(.99);
  transition:
    opacity .72s cubic-bezier(.215,.61,.355,1),
    transform .72s cubic-bezier(.215,.61,.355,1);
  transition-delay:var(--d,0s);
}
.reveal.in { opacity:1; transform:translateY(0) scale(1); }

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:500;
  padding:20px 0;
  transition:background .4s, padding .4s, box-shadow .4s;
}
.nav.solid {
  background:rgba(253,248,245,.95);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  padding:12px 0;
  box-shadow:0 2px 20px rgba(44,24,16,.05);
}
.nav__inner {
  max-width:1160px; margin:0 auto; padding:0 28px;
  display:flex; align-items:center; justify-content:space-between;
}
.nav__logo {
  font-family:var(--f-head); font-style:italic; font-size:1.3rem; font-weight:500;
  color:var(--rose-dark); letter-spacing:.02em; white-space:nowrap;
}
.nav__links { display:flex; gap:34px; }
.nav__links a {
  font-size:.78rem; font-weight:300; letter-spacing:.2em; text-transform:uppercase;
  color:var(--text); position:relative; transition:color .3s; padding-bottom:3px;
}
.nav__links a::after {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:1px; background:var(--rose); transition:width .3s;
}
.nav__links a:hover, .nav__links a.active { color:var(--rose-dark); }
.nav__links a:hover::after, .nav__links a.active::after { width:100%; }

.nav__burger {
  display:none; flex-direction:column; gap:5px; padding:8px; z-index:501; cursor:pointer;
}
.nav__burger span {
  display:block; width:22px; height:1.5px; background:var(--text);
  transition:transform .3s, opacity .3s;
}
.nav__burger.open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity:0; }
.nav__burger.open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  position:fixed; inset:0;
  background:rgba(253,248,245,.97); backdrop-filter:blur(20px);
  z-index:499; display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity .35s;
}
.nav__mobile.open { opacity:1; pointer-events:all; }
.nav__mobile ul { display:flex; flex-direction:column; align-items:center; gap:36px; }
.nav__mobile a {
  font-family:var(--f-head); font-size:2.2rem; font-weight:400; color:var(--text);
  transition:color .3s;
}
.nav__mobile a:hover { color:var(--rose-dark); }

/* ── Marquee ─────────────────────────────────────────────── */
.marquee {
  overflow:hidden; padding:14px 0;
  background:var(--dark);
  border-top:1px solid rgba(201,169,110,.15);
  border-bottom:1px solid rgba(201,169,110,.15);
}
.marquee__track {
  display:flex; align-items:center; gap:40px;
  width:max-content;
  animation:marq 30s linear infinite;
}
.marquee__track span {
  font-size:.68rem; letter-spacing:.25em; text-transform:uppercase;
  color:rgba(255,255,255,.38); white-space:nowrap;
}
.marquee__sep { color:var(--gold) !important; opacity:.6; }
@keyframes marq { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  padding:13px 30px; border-radius:var(--r-pill);
  font-family:var(--f-body); font-weight:400; font-size:.87rem; letter-spacing:.07em;
  min-height:48px; position:relative; overflow:hidden;
  transition:transform .3s, box-shadow .3s, background .3s, color .3s;
}
.btn--rose { background:var(--rose); color:var(--white); }
.btn--rose:hover { background:var(--rose-dark); transform:translateY(-2px); box-shadow:var(--sh-rose); }
.btn--outline { background:transparent; color:var(--rose-dark); border:1.5px solid var(--rose); }
.btn--outline:hover { background:var(--blush); border-color:var(--rose-dark); transform:translateY(-2px); }
.btn--gold { background:var(--gold); color:var(--white); }
.btn--gold:hover { background:#b8904a; transform:translateY(-2px); box-shadow:0 8px 28px rgba(201,169,110,.3); }
.btn--dark { background:transparent; color:var(--white); border:1.5px solid rgba(255,255,255,.3); }
.btn--dark:hover { background:rgba(255,255,255,.08); border-color:var(--rose); transform:translateY(-2px); }

.shimmer::after {
  content:''; position:absolute; top:0; left:-100%;
  width:100%; height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.22),transparent);
}
.shimmer:hover::after { left:100%; transition:left .55s ease; }

/* ── Separator ──────────────────────────────────────────── */
.sep { display:flex; justify-content:center; padding:36px 0; }
.sep span { display:block; width:54px; height:1px; background:var(--gold); opacity:.5; }

/* ── Section Header ─────────────────────────────────────── */
.section-head { text-align:center; margin-bottom:56px; }
.section-head .label {
  display:inline-block; font-size:.72rem; font-weight:300;
  letter-spacing:.25em; text-transform:uppercase; color:var(--gold); margin-bottom:10px;
}
.section-head h2 {
  font-family:var(--f-head); font-size:clamp(2rem,4vw,3rem);
  font-weight:400; color:var(--text); line-height:1.2;
}
.section-head p { margin-top:10px; color:var(--muted); font-size:.93rem; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height:100vh; display:flex; align-items:center;
  padding:110px 0 70px; position:relative; overflow:hidden;
  background: linear-gradient(135deg, #EDD8DC 0%, #FDF8F5 42%, #F5E6E8 75%, #EDD8DC 100%);
  background-size: 300% 300%;
  animation: heroGrad 12s ease infinite;
}
@keyframes heroGrad {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero__blobs { position:absolute; inset:0; pointer-events:none; z-index:0; }
.hero__blob { position:absolute; border-radius:50%; filter:blur(80px); }
.hero__blob--a { width:420px; height:420px; background:var(--blush); opacity:.55; top:-80px; right:3%; }
.hero__blob--b { width:240px; height:240px; background:var(--rose);  opacity:.12; bottom:10%; left:2%; }
.hero__blob--c { width:180px; height:180px; background:var(--gold-lt); opacity:.18; top:60%; right:35%; }

.hero__watermark {
  position:absolute; right:-2%; bottom:-5%;
  font-family:var(--f-head); font-style:italic; font-weight:500;
  font-size:clamp(280px,38vw,600px);
  color:var(--rose); opacity:.05; line-height:.8;
  pointer-events:none; user-select:none; z-index:0;
}

.hero__inner {
  max-width:1160px; margin:0 auto; padding:0 28px;
  display:grid; grid-template-columns:1fr 1fr; gap:64px;
  align-items:center; position:relative; z-index:1; width:100%;
}
.hero__badge {
  display:inline-flex; align-items:center; gap:6px;
  font-size:.78rem; letter-spacing:.14em; color:var(--muted); margin-bottom:18px;
}
.hero__title {
  font-family:var(--f-head); font-size:clamp(2.8rem,5.5vw,5rem);
  font-weight:400; line-height:1.1; color:var(--text); margin-bottom:22px;
}
.hero__title em { color:var(--rose-dark); font-style:italic; }
.hero__desc { font-size:1rem; color:var(--muted); max-width:420px; margin-bottom:36px; line-height:1.8; }
.hero__btns { display:flex; gap:14px; flex-wrap:wrap; }

.hero__photo { position:relative; }
.hero__photo-frame { position:relative; max-width:460px; margin-left:auto; }
.hero__photo-frame::before {
  content:''; position:absolute; inset:-14px -14px 14px 14px;
  border:1.5px solid var(--rose); border-radius:var(--r-lg);
  opacity:.4; z-index:0;
}
.hero__photo-frame img {
  width:100%; border-radius:var(--r-lg); position:relative; z-index:1;
  box-shadow:var(--sh-rose); transition:transform .55s ease;
}
.hero__photo-frame:hover img { transform:scale(1.025); }
.hero__dot {
  position:absolute; border-radius:50%; background:var(--rose); z-index:2;
  animation:float 4s ease-in-out infinite;
}
.hero__dot--1 { width:10px; height:10px; top:12%;  left:-18px; opacity:.5; }
.hero__dot--2 { width:7px;  height:7px;  bottom:22%; right:-14px; opacity:.5; background:var(--gold); animation-delay:.8s; }
.hero__dot--3 { width:13px; height:13px; top:68%;  left:-28px; opacity:.22; animation-delay:1.6s; }
@keyframes float { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-7px); } }

/* ── About ───────────────────────────────────────────────── */
.about {
  padding:90px 0;
  background:linear-gradient(135deg, #EDD8DC 0%, var(--blush) 50%, #EDD8DC 100%);
  position:relative;
}
.about__inner {
  max-width:1160px; margin:0 auto; padding:0 28px;
  display:grid; grid-template-columns:340px 1fr; gap:64px; align-items:center;
}
.about__img-wrap { position:relative; display:flex; justify-content:center; }
.about__img-bg {
  position:absolute; width:270px; height:270px; border-radius:50%;
  background:var(--rose); opacity:.12;
  top:50%; left:50%; transform:translate(-40%,-42%);
}
.about__img-ring {
  width:290px; height:290px; border-radius:50%; overflow:hidden;
  border:3px solid var(--rose); position:relative; z-index:1; box-shadow:var(--sh-rose);
}
.about__img-ring img { width:100%; height:100%; object-fit:cover; }
.about__label { display:inline-block; font-size:.72rem; letter-spacing:.25em; text-transform:uppercase; color:var(--gold); margin-bottom:8px; }
.about__name { font-family:var(--f-head); font-size:clamp(1.8rem,3vw,2.5rem); font-weight:400; margin-bottom:20px; }
.about__text p { color:var(--muted); font-size:.95rem; margin-bottom:14px; }
.pills { display:flex; gap:10px; flex-wrap:wrap; margin-top:24px; }
.pill {
  display:inline-flex; align-items:center; gap:7px;
  padding:9px 18px; background:var(--white); border-radius:var(--r-pill);
  font-size:.83rem; font-weight:400; color:var(--text); min-height:44px;
  transition:background .3s, color .3s; cursor:pointer;
}
.pill .icon { width:15px; height:15px; }
.pill:hover { background:var(--rose); color:var(--white); }

/* ── Services ────────────────────────────────────────────── */
.services {
  padding:72px 0 80px;
  background: linear-gradient(160deg, #F8EAEC 0%, #FDF8F5 50%, #F5E4E7 100%);
  border-top:1px solid rgba(212,165,165,.15);
  border-bottom:1px solid rgba(212,165,165,.15);
}
.services__inner { max-width:1160px; margin:0 auto; padding:0 28px; }
.services__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.services .section-head { margin-bottom:36px; }

.scard {
  background: linear-gradient(150deg, #FAE8EA 0%, #F5E0E3 100%);
  border-radius:var(--r-lg); padding:44px 32px 36px;
  text-align:center;
  border:1px solid rgba(212,165,165,.25);
  box-shadow:var(--sh-card);
  transition:transform .4s cubic-bezier(.215,.61,.355,1), box-shadow .4s ease;
  position:relative; overflow:hidden;
}
.scard::before {
  content:''; position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:60px; height:2px; background:var(--gold); opacity:0; transition:opacity .4s;
}
.scard:hover { transform:translateY(-7px) rotate(.35deg); box-shadow:var(--sh-mid); }
.scard:hover::before { opacity:1; }
.scard__icon-wrap { display:flex; justify-content:center; margin-bottom:20px; }
.scard__title { font-family:var(--f-head); font-size:1.5rem; font-weight:500; margin-bottom:14px; }
.scard__desc { font-size:.9rem; color:var(--muted); margin-bottom:24px; line-height:1.7; }
.scard__price { font-family:var(--f-head); font-size:1.2rem; color:var(--gold); margin-bottom:20px; font-style:italic; }
.scard__cta { display:inline-block; font-size:.82rem; letter-spacing:.1em; color:var(--rose-dark); transition:color .3s; }
.scard__cta:hover { color:var(--gold); }
.scard__list { text-align:left; margin:0 0 20px; display:flex; flex-direction:column; gap:8px; }
.scard__list li { font-size:.88rem; color:var(--muted); padding-left:14px; position:relative; }
.scard__list li::before { content:'—'; position:absolute; left:0; color:var(--rose); }

/* ── Quote ───────────────────────────────────────────────── */
.quote-section {
  padding:80px 28px;
  text-align:center; position:relative; overflow:hidden;
  background:linear-gradient(135deg, #EDD8DC 0%, var(--blush) 60%, #EDD8DC 100%);
}
.quote-section::before {
  content:'"';
  font-family:var(--f-head); font-style:italic;
  font-size:28rem; line-height:.7;
  color:var(--rose); opacity:.07;
  position:absolute; top:0; left:50%; transform:translateX(-50%);
  pointer-events:none; user-select:none;
}
.quote-section__inner { position:relative; z-index:1; max-width:860px; margin:0 auto; }
.quote-section blockquote {
  font-family:var(--f-head); font-size:clamp(1.5rem,3.2vw,2.6rem);
  font-weight:400; font-style:italic; color:var(--text); line-height:1.45; margin-bottom:20px;
}
.quote-section blockquote em { color:var(--rose-dark); }
.quote-section cite { font-size:.75rem; letter-spacing:.22em; text-transform:uppercase; color:var(--gold); font-style:normal; }

/* ── Portfolio Preview ───────────────────────────────────── */
.portfolio-preview {
  padding:90px 0;
  background:var(--white);
  border-top:1px solid rgba(212,165,165,.12);
}
.portfolio-preview__inner { max-width:1160px; margin:0 auto; padding:0 28px; }
.portfolio-preview__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:44px; }

.pcard {
  border-radius:var(--r-md); overflow:hidden; position:relative;
  display:block;
  box-shadow:var(--sh-soft);
  border:1px solid rgba(212,165,165,.15);
  transition:transform .4s cubic-bezier(.215,.61,.355,1), box-shadow .4s;
}
.pcard img { width:100%; height:320px; object-fit:cover; transition:transform .45s ease; display:block; }
.pcard__over {
  position:absolute; inset:0;
  background:linear-gradient(to top,rgba(44,24,16,.45) 0%,transparent 60%);
  opacity:0; transition:opacity .4s;
  display:flex; align-items:flex-end; justify-content:center; padding-bottom:22px;
}
.pcard__over span { font-size:.7rem; letter-spacing:.22em; text-transform:uppercase; color:var(--white); }
.pcard:hover { transform:scale(1.015) rotate(.25deg); box-shadow:var(--sh-mid); }
.pcard:hover img { transform:scale(1.05); }
.pcard:hover .pcard__over { opacity:1; }
.portfolio-preview__more { text-align:center; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials {
  padding:80px 0 48px;
  background:var(--dark);
  position:relative; overflow:hidden;
}
.testimonials::before {
  content:'"';
  font-family:var(--f-head); font-style:italic;
  font-size:40rem; line-height:.7;
  color:rgba(212,165,165,.04);
  position:absolute; top:-40px; left:50%; transform:translateX(-50%);
  pointer-events:none; user-select:none;
}
.testimonials__inner { max-width:800px; margin:0 auto; padding:0 28px; position:relative; z-index:1; }
.testimonials .section-head h2 { color:var(--white); }
.testimonials .section-head .label { color:var(--gold); }
.testimonials .section-head p { color:rgba(255,255,255,.45); }

.tslider { position:relative; overflow:hidden; border-radius:var(--r-lg); }
.tslider__track {
  display:flex;
  transition:transform .65s cubic-bezier(.215,.61,.355,1);
  will-change:transform;
}
.tcard {
  min-width:100%;
  padding:52px 48px 44px;
  background:rgba(255,255,255,.05);
  backdrop-filter:blur(8px);
  border:1px solid rgba(212,165,165,.18);
  border-radius:var(--r-lg);
  text-align:center;
  position:relative;
}
.tcard__mark {
  font-family:var(--f-head); font-style:italic;
  font-size:5rem; color:var(--rose); opacity:.25; line-height:1;
  margin-bottom:-12px; display:block;
}
.tcard__text {
  font-family:var(--f-head); font-style:italic;
  font-size:clamp(1.05rem,2.4vw,1.35rem);
  color:var(--white); line-height:1.65; margin-bottom:20px;
}
.tcard__stars { color:var(--gold); font-size:.95rem; letter-spacing:3px; margin-bottom:12px; }
.tcard__author { font-size:.75rem; letter-spacing:.2em; text-transform:uppercase; color:rgba(212,165,165,.7); }

.tslider__controls {
  display:flex; justify-content:center; align-items:center; gap:20px; margin-top:32px;
}
.tslider__btn {
  width:44px; height:44px; border-radius:50%;
  background:rgba(255,255,255,.06); border:1.5px solid rgba(212,165,165,.35);
  color:var(--rose); font-size:1.3rem;
  display:flex; align-items:center; justify-content:center;
  transition:background .3s, border-color .3s, color .3s; cursor:pointer;
}
.tslider__btn:hover { background:var(--rose); border-color:var(--rose); color:var(--white); }
.tslider__dots { display:flex; gap:8px; align-items:center; }
.tdot {
  width:7px; height:7px; border-radius:50%;
  background:rgba(212,165,165,.3);
  transition:background .3s, transform .3s; cursor:pointer; border:none;
}
.tdot.active { background:var(--rose); transform:scale(1.4); }

/* ── CTA Strip ───────────────────────────────────────────── */
.cta-strip { padding:64px 0 72px; background:linear-gradient(180deg,var(--dark) 0%, #0F0404 100%); text-align:center; }
.cta-strip__inner { max-width:680px; margin:0 auto; padding:0 28px; }
.cta-strip__title { font-family:var(--f-head); font-size:clamp(2rem,4vw,3rem); font-weight:400; color:var(--white); margin-bottom:14px; }
.cta-strip__desc { color:rgba(255,255,255,.55); font-size:.95rem; margin-bottom:40px; }
.cta-strip__btns { display:flex; justify-content:center; gap:16px; flex-wrap:wrap; margin-bottom:34px; }
.cta-strip__phone {
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--f-head); font-size:1.6rem; font-style:italic;
  color:var(--gold); transition:color .3s;
}
.cta-strip__phone:hover { color:var(--rose); }
.cta-strip__phone .icon { width:22px; height:22px; }

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
  padding:160px 0 80px; text-align:center; position:relative; overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg width='28' height='28' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='14' cy='14' r='1' fill='%23D4A5A5' opacity='0.1'/%3E%3C/svg%3E");
}
.page-hero .label { display:inline-block; font-size:.72rem; letter-spacing:.25em; text-transform:uppercase; color:var(--gold); margin-bottom:10px; position:relative; }
.page-hero h1 { font-family:var(--f-head); font-size:clamp(2.4rem,5vw,4rem); font-weight:400; color:var(--text); position:relative; }
.page-hero p { color:var(--muted); font-size:.93rem; margin-top:10px; position:relative; }

/* ── Gallery Page ────────────────────────────────────────── */
.gallery-section { padding:60px 0 100px; background:var(--white); border-top:1px solid rgba(212,165,165,.12); }
.gallery-section__inner { max-width:1160px; margin:0 auto; padding:0 28px; }
.gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.gitem {
  border-radius:var(--r-md); overflow:hidden; position:relative; cursor:pointer;
  border:1px solid rgba(212,165,165,.15);
  box-shadow:var(--sh-soft);
  transition:transform .4s cubic-bezier(.215,.61,.355,1), box-shadow .4s;
}
.gitem img { width:100%; height:340px; object-fit:cover; display:block; transition:transform .45s ease; }
.gitem__over {
  position:absolute; inset:0; background:rgba(212,165,165,.16);
  opacity:0; transition:opacity .4s;
  display:flex; align-items:center; justify-content:center;
}
.gitem__over svg { width:30px; height:30px; stroke:var(--white); fill:none; stroke-width:1.5; }
.gitem:hover { transform:scale(1.015); box-shadow:var(--sh-mid); }
.gitem:hover img { transform:scale(1.04); }
.gitem:hover .gitem__over { opacity:1; }

/* ── Lightbox ────────────────────────────────────────────── */
.lightbox {
  position:fixed; inset:0; background:rgba(26,8,8,.94);
  z-index:8000; display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity .4s;
}
.lightbox.on { opacity:1; pointer-events:all; }
.lightbox img { max-width:88vw; max-height:86vh; border-radius:var(--r-md); object-fit:contain; }
.lb-close,.lb-prev,.lb-next {
  position:absolute; color:var(--white); padding:12px 16px;
  min-width:48px; min-height:48px; display:flex; align-items:center; justify-content:center;
  transition:color .3s; line-height:1; font-size:2rem; cursor:pointer;
}
.lb-close { top:16px; right:20px; font-size:1.8rem; }
.lb-prev  { left:16px; top:50%; transform:translateY(-50%); font-size:3rem; }
.lb-next  { right:16px; top:50%; transform:translateY(-50%); font-size:3rem; }
.lb-close:hover,.lb-prev:hover,.lb-next:hover { color:var(--rose); }

/* ── Services Page ───────────────────────────────────────── */
.services-page { padding:60px 0 100px; background:var(--white); border-top:1px solid rgba(212,165,165,.12); }
.services-page__inner { max-width:1160px; margin:0 auto; padding:0 28px; }
.services-page__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-bottom:60px; }
.price-note {
  background:linear-gradient(135deg, #EDD8DC 0%, var(--blush) 50%, #EDD8DC 100%);
  border-radius:var(--r-lg); padding:44px 40px; text-align:center;
  border:1px solid rgba(212,165,165,.2);
}
.price-note h3 { font-family:var(--f-head); font-size:1.6rem; font-weight:400; margin-bottom:12px; }
.price-note p { color:var(--muted); font-size:.9rem; max-width:480px; margin:0 auto; }

/* ── Contact Page ────────────────────────────────────────── */
.contact-section { padding:60px 0 40px; background:var(--white); border-top:1px solid rgba(212,165,165,.12); }
.contact-section__inner { max-width:780px; margin:0 auto; padding:0 28px; }
.contact-cards { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:28px; }
.ccard {
  background:var(--white); border-radius:var(--r-lg); padding:44px 28px;
  text-align:center;
  border:1px solid rgba(212,165,165,.2);
  box-shadow:var(--sh-card);
  transition:transform .35s cubic-bezier(.215,.61,.355,1), box-shadow .35s;
  display:flex; flex-direction:column; align-items:center; gap:14px; cursor:pointer;
}
.ccard:hover { transform:translateY(-5px) rotate(.3deg); box-shadow:var(--sh-mid); }
.ccard__icon-wrap { display:flex; justify-content:center; }
.ccard__name { font-family:var(--f-head); font-size:1.3rem; font-weight:400; }
.ccard__handle { font-size:.82rem; color:var(--muted); }
.ccard .btn { width:100%; justify-content:center; margin-top:4px; }

.contact-phone {
  background:var(--dark); border-radius:var(--r-lg); padding:44px 28px;
  text-align:center; margin-bottom:28px;
}
.contact-phone__label { font-size:.72rem; letter-spacing:.25em; text-transform:uppercase; color:rgba(255,255,255,.4); margin-bottom:10px; }
.contact-phone__num {
  display:inline-block;
  font-family:var(--f-head); font-size:clamp(2rem,5vw,3rem);
  font-style:italic; color:var(--gold); transition:color .3s;
}
.contact-phone__num:hover { color:var(--rose); }

.contact-info {
  background:linear-gradient(135deg, #EDD8DC 0%, var(--blush) 100%);
  border-radius:var(--r-lg); padding:32px 28px;
  display:flex; align-items:center; justify-content:center;
  gap:24px; flex-wrap:wrap; margin-bottom:28px;
  border:1px solid rgba(212,165,165,.2);
}
.contact-info span { font-size:.88rem; color:var(--muted); display:inline-flex; align-items:center; gap:6px; }
.contact-info .icon { width:16px; height:16px; flex-shrink:0; }

/* ── Map ─────────────────────────────────────────────────── */
.map-section { padding:0 0 80px; }
.map-section__inner { max-width:780px; margin:0 auto; padding:0 28px; }
.map-section__label {
  font-size:.72rem; letter-spacing:.25em; text-transform:uppercase;
  color:var(--gold); margin-bottom:16px; display:block;
}
.map-wrap {
  border-radius:var(--r-lg); overflow:hidden;
  box-shadow:var(--sh-mid);
  border:1px solid rgba(212,165,165,.2);
  height:360px;
}
.map-wrap iframe { width:100%; height:100%; border:0; display:block; }

/* ── Logo image (nav + footer) ───────────────────────────── */
.nav__logo-img  { height:34px; width:auto; display:block; }
.footer__logo-img { height:28px; width:auto; display:block; opacity:.85; transition:opacity .3s; }
.footer__logo:hover .footer__logo-img { opacity:1; }

/* ── Cennik ──────────────────────────────────────────────── */
.cennik {
  background:var(--white);
  border-radius:var(--r-lg);
  border:1px solid rgba(212,165,165,.22);
  box-shadow:var(--sh-soft);
  overflow:hidden;
  margin-bottom:20px;
}
.cennik__head {
  padding:26px 36px 20px;
  background:linear-gradient(135deg, #EDD8DC 0%, var(--blush) 100%);
  border-bottom:1px solid rgba(212,165,165,.2);
}
.cennik__head h3 { font-family:var(--f-head); font-size:1.6rem; font-weight:400; margin-bottom:4px; }
.cennik__head p  { font-size:.78rem; color:var(--muted); }
.cennik__row {
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:18px 36px;
  border-bottom:1px solid rgba(212,165,165,.1);
  transition:background .25s;
}
.cennik__row:last-of-type { border-bottom:none; }
.cennik__row:hover { background:rgba(212,165,165,.05); }
.cennik__name { font-family:var(--f-head); font-size:1.1rem; font-weight:400; color:var(--text); }
.cennik__time { font-size:.75rem; color:var(--muted); margin-top:2px; }
.cennik__price { font-family:var(--f-head); font-size:1.55rem; font-style:italic; color:var(--gold); white-space:nowrap; flex-shrink:0; }
.cennik__price--extra { font-size:1.2rem; color:var(--muted); }
.cennik__notes { padding:14px 36px 20px; background:rgba(212,165,165,.04); border-top:1px solid rgba(212,165,165,.1); }
.cennik__notes p { font-size:.78rem; color:var(--muted); line-height:1.7; margin-bottom:3px; }

/* ── Zalecenia ───────────────────────────────────────────── */
.zalecenia-section {
  padding:72px 0 80px;
  background:linear-gradient(160deg, #F8EAEC 0%, #FDF8F5 50%, #F5E4E7 100%);
  border-top:1px solid rgba(212,165,165,.15);
}
.zalecenia-section__inner { max-width:1000px; margin:0 auto; padding:0 28px; }
.zalecenia-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:36px;
}
.zcard {
  background:var(--white);
  border-radius:var(--r-md);
  padding:26px 24px 24px;
  border:1px solid rgba(212,165,165,.2);
  box-shadow:var(--sh-soft);
}
.zcard__num {
  font-family:var(--f-head); font-size:2.2rem; font-style:italic;
  color:var(--rose); opacity:.35; line-height:1; margin-bottom:10px; display:block;
}
.zcard__text { font-size:.88rem; color:var(--muted); line-height:1.78; }

/* ── Studio videos ───────────────────────────────────────── */
.studio-section {
  padding:80px 0;
  background:linear-gradient(135deg, #EDD8DC 0%, var(--blush) 60%, #EDD8DC 100%);
}
.studio-section__inner { max-width:1160px; margin:0 auto; padding:0 28px; }
.studio-section__grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:40px;
}
.svideo {
  border-radius:var(--r-md); overflow:hidden;
  box-shadow:var(--sh-mid);
  border:1px solid rgba(212,165,165,.2);
  position:relative;
}
.svideo video { width:100%; display:block; border-radius:var(--r-md); aspect-ratio:9/16; object-fit:cover; }

/* ── Zasady section ──────────────────────────────────────── */
.zasady-section { padding:80px 0; background:var(--white); border-top:1px solid rgba(212,165,165,.12); }
.zasady-section__inner { max-width:860px; margin:0 auto; padding:0 28px; }
.zasady-list { margin-top:40px; display:flex; flex-direction:column; }
.zasady-item {
  display:flex; gap:22px; padding:22px 0;
  border-bottom:1px solid rgba(212,165,165,.12);
}
.zasady-item:last-child { border-bottom:none; }
.zasady-item__mark {
  font-family:var(--f-head); font-style:italic; font-size:1.8rem;
  color:var(--rose); opacity:.55; flex-shrink:0; line-height:1.2; min-width:20px;
}
.zasady-item__text { font-size:.9rem; color:var(--muted); line-height:1.9; padding-top:4px; }
.zasady-item__text strong { color:var(--text); font-weight:500; }

/* ── Dlaczego section ────────────────────────────────────── */
.dlaczego-section {
  padding:80px 0;
  background:linear-gradient(160deg, #FDF8F5 0%, #F8EAEC 100%);
  border-top:1px solid rgba(212,165,165,.12);
}
.dlaczego-section__inner { max-width:860px; margin:0 auto; padding:0 28px; }
.dlaczego-list { margin-top:36px; display:flex; flex-direction:column; gap:20px; }
.dlaczego-item { display:flex; gap:18px; align-items:flex-start; }
.dlaczego-item__icon {
  width:38px; height:38px; border-radius:50%;
  background:rgba(212,165,165,.15);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; margin-top:1px;
}
.dlaczego-item__icon svg { width:16px; height:16px; stroke:var(--rose-dark); }
.dlaczego-item__text { font-size:.9rem; color:var(--muted); line-height:1.9; padding-top:8px; }
.dlaczego-closing {
  margin-top:36px; padding:24px 30px;
  background:var(--white);
  border-radius:var(--r-md);
  border-left:3px solid var(--rose);
  font-family:var(--f-head); font-size:1.15rem; font-style:italic;
  color:var(--text); line-height:1.7;
  box-shadow:var(--sh-soft);
}

/* ── Footer ─────────────────────────────────────────────── */
.footer { background:#1A0808; padding:28px 0 24px; }
.footer__inner {
  max-width:1160px; margin:0 auto; padding:0 28px;
  display:grid; grid-template-columns:auto 1fr auto;
  align-items:center; gap:16px 32px;
}
.footer__logo { font-family:var(--f-head); font-style:italic; font-size:1.1rem; font-weight:500; color:var(--rose); white-space:nowrap; }
.footer__nav { display:flex; justify-content:center; gap:24px; flex-wrap:wrap; }
.footer__nav a { font-size:.75rem; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.38); transition:color .3s; }
.footer__nav a:hover { color:var(--rose); }
.footer__right { text-align:right; }
.footer__copy { font-size:.72rem; color:rgba(255,255,255,.25); white-space:nowrap; margin-bottom:4px; }
.footer__credit { font-size:11px; color:rgba(201,169,110,.55); }
.footer__credit a { color:rgba(201,169,110,.75); transition:color .3s; text-decoration:underline; text-underline-offset:2px; text-decoration-color:rgba(201,169,110,.3); }
.footer__credit a:hover { color:var(--rose); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width:1024px) {
  .services__grid, .services-page__grid { grid-template-columns:1fr 1fr; }
  .footer__inner { grid-template-columns:1fr; text-align:center; }
  .footer__right { text-align:center; }
  .footer__nav { margin:6px 0; }
}

@media (max-width:1024px) {
  .zalecenia-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width:768px) {
  .nav__links { display:none; }
  .nav__burger { display:flex; }
  .zalecenia-grid { grid-template-columns:1fr; }
  .studio-section__grid { grid-template-columns:1fr; }
  .cennik__row { padding:14px 20px; }
  .cennik__head { padding:20px 20px 16px; }
  .cennik__notes { padding:12px 20px 16px; }

  .hero { padding:100px 0 60px; min-height:auto; }
  .hero__inner { grid-template-columns:1fr; gap:32px; text-align:center; }
  .hero__desc { margin:0 auto 28px; }
  .hero__btns { justify-content:center; }
  .hero__photo-frame { max-width:290px; margin:0 auto; }
  .hero__blobs, .hero__watermark { display:none; }

  .about__inner { grid-template-columns:1fr; text-align:center; }
  .about__img-wrap { order:-1; }
  .about__img-ring { width:220px; height:220px; }
  .pills { justify-content:center; }

  .services__grid, .services-page__grid { grid-template-columns:1fr; }
  .portfolio-preview__grid { grid-template-columns:1fr 1fr; gap:12px; }
  .pcard img { height:220px; }

  .gallery-grid { grid-template-columns:1fr 1fr; gap:12px; }
  .gitem img { height:220px; }

  .tcard { padding:36px 24px 32px; }
  .contact-cards { grid-template-columns:1fr; }
  .cta-strip__btns { flex-direction:column; align-items:center; }
  .page-hero { padding:130px 0 56px; }

  /* Lighter reveal on mobile */
  .reveal { transform:translateY(12px) scale(.995); }
}

@media (max-width:480px) {
  .portfolio-preview__grid { grid-template-columns:1fr; }
  .gallery-grid { grid-template-columns:1fr; }
  .gitem img { height:280px; }
  .contact-info { flex-direction:column; align-items:flex-start; gap:14px; }
}

/* ── Accessibility ───────────────────────────────────────── */
@media (prefers-reduced-motion:reduce) {
  .reveal { opacity:1 !important; transform:none !important; transition:none !important; }
  .marquee__track { animation-play-state:paused; }
  .hero__dot { animation:none; }
  .intro { display:none; }
  .tslider__track { transition:none; }
}
