/* Orange Beauty Studio — сайт-візитка
   Cream base, orange as accent only. Boutique-spa: soft, rounded, warm. */

:root{
  /* palette (tweakable) */
  --bg: #FAF6F1;
  --bg-warm: #F6ECE0;      /* subtle warm band */
  --surface: #FFFDFA;
  --ink: #1a0e06;
  --muted: #7A5A40;
  --line: #ECE0D2;
  --accent: #D4580A;       /* primary orange */
  --accent-2: #F07030;     /* light orange */
  --accent-soft: #FBE6D6;  /* peachy tint */

  /* shape (tweakable) */
  --radius: 26px;
  --radius-sm: 16px;
  --radius-pill: 999px;

  /* type (tweakable) */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;

  --shadow-sm: 0 2px 10px rgba(60,30,10,.05);
  --shadow: 0 18px 50px -20px rgba(90,45,15,.22);
  --shadow-lg: 0 40px 80px -30px rgba(90,45,15,.30);

  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 64px);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ display:block; max-width:100%; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; }

h1,h2,h3{ font-family: var(--font-display); font-weight: 600; line-height: 1.06; letter-spacing: -.01em; margin:0; }

.wrap{ max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:.55em; justify-content:center;
  padding: 15px 26px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 15.5px; letter-spacing: .01em;
  border: 1.5px solid transparent; line-height:1; white-space:nowrap;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .2s, color .2s, border-color .2s;
}
.btn svg{ width:18px; height:18px; }
.btn-primary{ background: var(--accent); color:#fff; box-shadow: 0 12px 26px -10px color-mix(in oklab, var(--accent) 75%, transparent); }
.btn-primary:hover{ transform: translateY(-2px); background: var(--accent-2); box-shadow: 0 18px 34px -12px color-mix(in oklab, var(--accent) 75%, transparent); }
.btn-ghost{ background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover{ border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-soft{ background: var(--surface); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-soft:hover{ transform: translateY(-2px); border-color: var(--accent); color: var(--accent); }

/* ---------- header ---------- */
.hdr{
  position: sticky; top:0; z-index: 60;
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.hdr.scrolled{ border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(90,45,15,.5); }
.hdr-in{ display:flex; align-items:center; justify-content:space-between; height: 72px; gap: 20px; }
.brand{ display:flex; align-items:center; gap:11px; font-family: var(--font-display); font-weight:600; font-size: 20px; letter-spacing:-.01em; }
.brand .mark{
  width:42px; height:42px; border-radius: 50%; flex:none;
  display:grid; place-items:center; overflow:hidden;
  background: #fff;
  box-shadow: inset 0 0 0 1.5px color-mix(in oklab, var(--accent) 22%, transparent), var(--shadow-sm);
}
.brand .mark img{ width:100%; height:100%; object-fit: cover; }
.brand small{ display:block; font-family: var(--font-body); font-weight:500; font-size:10.5px; letter-spacing:.22em; text-transform:uppercase; color: var(--muted); margin-top:2px; }
.nav{ display:flex; align-items:center; gap: 30px; }
.nav a{ font-size: 14.5px; font-weight: 500; color: var(--muted); position:relative; padding: 6px 0; transition: color .2s; }
.nav a::after{ content:""; position:absolute; left:0; right:100%; bottom:0; height:2px; background: var(--accent); border-radius:2px; transition: right .28s cubic-bezier(.2,.8,.2,1); }
.nav a:hover{ color: var(--ink); }
.nav a:hover::after{ right:0; }
.hdr-cta{ display:flex; align-items:center; gap:14px; }
.hdr-phone{ display:flex; align-items:center; gap:8px; font-weight:600; font-size:15px; color:var(--ink); }
.hdr-phone svg{ width:16px; height:16px; color: var(--accent); }
.burger{ display:none; width:44px; height:44px; border:none; background:transparent; border-radius:12px; padding:0; }
.burger span{ display:block; width:22px; height:2px; background: var(--ink); margin:5px auto; border-radius:2px; transition: .3s; }

/* mobile menu */
.mnav{ position: fixed; inset:0; z-index: 70; background: var(--bg); transform: translateY(-100%); transition: transform .4s cubic-bezier(.4,0,0,1); display:flex; flex-direction:column; padding: 24px var(--gut); overflow: hidden; }
.mnav.open{ transform: translateY(0); }
.mnav-top{ display:flex; align-items:center; justify-content:space-between; height:48px; flex-shrink:0; }
.mnav-close{ width:44px; height:44px; border:none; background:transparent; font-size:30px; color:var(--ink); line-height:1; }
.mnav-links{ display:flex; flex-direction:column; gap:4px; margin-top: 24px; flex:1; min-height:0; overflow-y:auto; }
.mnav-links a{ font-family: var(--font-display); font-size: 30px; padding: 12px 0; border-bottom:1px solid var(--line); color:var(--ink); }
.mnav-foot{ margin-top: 16px; flex-shrink:0; display:flex; flex-direction:column; gap:12px; padding-bottom: 12px; }

/* ---------- section scaffolding ---------- */
section{ position:relative; }
.sec{ padding: clamp(64px, 9vw, 120px) 0; background: #FFFFFF; }
.sec-warm{ background: var(--bg-warm); }
.eyebrow{ display:inline-flex; align-items:center; gap:9px; font-size: 12.5px; font-weight:600; letter-spacing:.2em; text-transform:uppercase; color: var(--accent); margin-bottom: 18px; }
.eyebrow::before{ content:""; width:26px; height:2px; background: var(--accent); border-radius:2px; }
.sec-title{ font-size: clamp(30px, 4.6vw, 52px); max-width: 16ch; }
.sec-lead{ color: var(--muted); font-size: clamp(16px,1.4vw,18.5px); max-width: 52ch; margin-top: 18px; }
.sec-head{ margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head.center{ text-align:center; }
.sec-head.center .eyebrow{ justify-content:center; }
.sec-head.center .sec-title, .sec-head.center .sec-lead{ margin-left:auto; margin-right:auto; }

/* ---------- hero ---------- */
.hero{ position:relative; padding: clamp(40px, 7vw, 88px) 0 clamp(56px, 8vw, 104px); overflow:hidden; background: #FFFFFF; }
.hero-grid{ display:grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 72px); align-items:center; }
.hero h1{ font-size: clamp(44px, 7vw, 88px); }
.hero h1 em{ font-style: italic; color: var(--accent); }
.hero-sub{ font-size: clamp(17px, 1.6vw, 20px); color: var(--muted); max-width: 44ch; margin: 26px 0 34px; }
.hero-cta{ display:flex; flex-wrap:wrap; gap: 14px; }
.hero-meta{ display:flex; flex-wrap:wrap; gap: 14px 30px; margin-top: 38px; padding-top: 30px; border-top:1px solid var(--line); }
.hero-meta .item{ display:flex; align-items:center; gap:11px; }
.hero-meta .ic{ width:40px; height:40px; border-radius:50%; flex:none; display:grid; place-items:center; background: var(--accent-soft); color: var(--accent); }
.hero-meta .ic svg{ width:18px; height:18px; }
.hero-meta .lbl{ font-size:12px; color:var(--muted); }
.hero-meta .val{ font-size:14.5px; font-weight:600; }

.hero-art{ position:relative; }
.hero-art .photo{ border-radius: calc(var(--radius) + 18px); overflow:hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.hero-art .photo img{ width:100%; height:100%; object-fit:cover; }
.hero-art .photo-2{ position:absolute; width: 44%; bottom: -28px; left: -34px; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); border: 5px solid var(--surface); aspect-ratio: 3/4; }
.hero-art .photo-2 img{ width:100%; height:100%; object-fit:cover; }
.hero-badge{
  position:absolute; top: 22px; right: -10px; z-index:3;
  background: var(--surface); border-radius: var(--radius-sm);
  padding: 14px 18px; box-shadow: var(--shadow); display:flex; align-items:center; gap:12px;
}
.hero-badge .stars{ color: var(--accent); font-size:14px; letter-spacing:2px; }
.hero-badge b{ font-family: var(--font-display); font-size: 22px; display:block; line-height:1; }
.hero-badge span{ font-size:11.5px; color:var(--muted); }
.blob{ position:absolute; border-radius:50%; filter: blur(50px); opacity:.55; z-index:0; pointer-events:none; }
.blob.b1{ width:420px; height:420px; background: var(--accent-soft); top:-160px; right:-120px; }
.blob.b2{ width:320px; height:320px; background: color-mix(in oklab, var(--accent-2) 30%, var(--bg)); bottom:-140px; left:-120px; }

/* ---------- services ---------- */
.svc-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.svc{
  background: var(--surface); border:1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px; box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s;
}
.svc:hover{ transform: translateY(-6px); box-shadow: var(--shadow); border-color: color-mix(in oklab, var(--accent) 25%, var(--line)); }
.svc .ic{ width:58px; height:58px; border-radius: 18px; display:grid; place-items:center; background: var(--accent-soft); color: var(--accent); margin-bottom: 22px; }
.svc .ic svg{ width:28px; height:28px; }
.svc h3{ font-size: 23px; margin-bottom: 10px; }
.svc p{ color: var(--muted); font-size: 15px; margin:0; }
.svc .tags{ display:flex; flex-wrap:wrap; gap:7px; margin-top:16px; }
.svc .tags span{ font-size:12.5px; color:var(--muted); background: var(--bg); border:1px solid var(--line); border-radius: var(--radius-pill); padding: 5px 11px; }

/* ---------- price ---------- */
.price-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap: 22px; align-items:start; max-width: 820px; margin-left: auto; margin-right: auto; }
.price-card{ background: var(--surface); border:1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.price-card .ph{ display:flex; align-items:center; gap:12px; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.price-card .ph .ic{ width:44px; height:44px; border-radius:13px; display:grid; place-items:center; background: var(--accent-soft); color:var(--accent); flex:none; }
.price-card .ph .ic svg{ width:22px; height:22px; }
.price-card .ph h3{ font-size: 21px; }
.prow{ display:flex; align-items:baseline; gap: 12px; padding: 11px 0; }
.prow + .prow{ border-top: 1px dashed var(--line); }
.prow .nm{ font-size: 15px; }
.prow .dots{ flex:1; border-bottom: 1.5px dotted color-mix(in oklab, var(--muted) 45%, transparent); transform: translateY(-3px); }
.prow .pr{ font-weight:700; font-size: 15.5px; color: var(--accent); white-space:nowrap; }
.prow .pr-cols{ display:flex; gap:16px; }
.prow .pr-cols span{ display:inline-block; min-width:64px; text-align:right; }
.prow .pr-cols .pr{ font-weight:700; font-size: 14.5px; color: var(--accent); white-space:nowrap; }
.prow.phead{ padding-top:0; }
.prow.phead .pr-cols span{ font-size:11.5px; font-weight:700; letter-spacing:.05em; text-transform:uppercase; color: var(--muted); }
.price-note{ text-align:center; color: var(--muted); font-size: 15px; margin-top: 30px; }
.price-note a{ color: var(--accent); font-weight:600; border-bottom:1px solid color-mix(in oklab, var(--accent) 40%, transparent); }

/* ---------- masters ---------- */
.masters{ display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.master{ }
.master .pic{ border-radius: var(--radius); overflow:hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-sm); position:relative; cursor:pointer; }
.master .pic img{ width:100%; height:100%; object-fit:cover; object-position: center top; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.master:hover .pic img{ transform: scale(1.05); }
.master .pic .tag{ position:absolute; left:14px; bottom:14px; background: color-mix(in oklab, var(--surface) 92%, transparent); backdrop-filter: blur(6px); border-radius: var(--radius-pill); padding:7px 14px; font-size:12.5px; font-weight:600; color:var(--accent); }
.master h3{ font-size: 25px; margin: 18px 0 6px; }
.master p{ color: var(--ink); font-size: 15px; margin:0; }

/* ---------- gallery (masonry) ---------- */
.gallery{ columns: 4; column-gap: 16px; }
.gallery .ph{ break-inside: avoid; margin-bottom:16px; border-radius: var(--radius-sm); overflow:hidden; position:relative; box-shadow: var(--shadow-sm); }
.gallery .ph img{ width:100%; height:auto; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.gallery .ph{ cursor:pointer; }
.gallery .ph::after{ content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(26,14,6,.32), transparent 45%); opacity:0; transition: opacity .3s; }
.gallery .ph:hover img{ transform: scale(1.06); }
.gallery .ph:hover::after{ opacity:1; }

/* ---------- reviews ---------- */
.rev-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.rev{ background: var(--surface); border:1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); display:flex; flex-direction:column; }
.rev .stars{ color: var(--accent); font-size:14px; letter-spacing:3px; margin-bottom:16px; }
.rev .quote{ font-family: var(--font-display); font-size: 19px; line-height:1.45; font-style: italic; margin:0 0 22px; }
.rev .who{ margin-top:auto; display:flex; align-items:center; gap:12px; }
.rev .who span{ font-size:12.5px; color: var(--muted); }
.rev.feat{ background: var(--accent); color:#fff; border-color: var(--accent); }
.rev.feat .quote{ color:#fff; }
.rev.feat .stars{ color: #ffd9bf; }
.rev.feat .who span{ color: rgba(255,255,255,.8); }

/* ---------- contact ---------- */
.contact-grid{ display:grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px,4vw,56px); align-items:stretch; }
.contact-info{ display:flex; flex-direction:column; }
.cinfo-list{ display:flex; flex-direction:column; gap: 4px; margin: 8px 0 28px; }
.cinfo{ display:flex; gap:16px; align-items:flex-start; padding: 18px 0; border-bottom:1px solid var(--line); }
.cinfo .ic{ width:46px; height:46px; border-radius:14px; flex:none; display:grid; place-items:center; background: var(--accent-soft); color: var(--accent); }
.cinfo .ic svg{ width:22px; height:22px; }
.cinfo > span:not(.ic){ display:flex; flex-direction:column; gap:2px; min-width:0; flex:1; }
.cinfo .lbl{ font-size:12.5px; letter-spacing:.06em; text-transform:uppercase; color: var(--muted); }
.cinfo .val{ font-size: clamp(13px,3.8vw,18px); font-weight:600; word-break:break-all; overflow-wrap:anywhere; }
.cinfo .val a:hover{ color: var(--accent); }
.messengers{ display:flex; flex-wrap:wrap; gap:12px; margin-top: 26px; }
.msg-btn{ display:inline-flex; align-items:center; gap:9px; padding:13px 20px; border-radius: var(--radius-pill); font-weight:600; font-size:14.5px; border:1.5px solid var(--line); background: var(--surface); transition: transform .25s, border-color .25s, color .25s, box-shadow .25s; }
.msg-btn svg{ width:19px; height:19px; }
.msg-btn:hover{ transform: translateY(-2px); border-color: var(--accent); color: var(--accent); box-shadow: var(--shadow-sm); }
.map-wrap{ border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); border:1px solid var(--line); min-height: 420px; background: var(--bg-warm); }
.map-wrap iframe{ width:100%; height:100%; min-height:420px; border:0; display:block; filter: grayscale(.15) saturate(1.05); }

/* ---------- CTA band ---------- */
.cta-band{ position:relative; overflow:hidden; }
.cta-card{
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color:#fff; border-radius: calc(var(--radius) + 8px); padding: clamp(40px,6vw,72px);
  text-align:center; box-shadow: var(--shadow-lg); position:relative; overflow:hidden;
}
.cta-card::before{ content:"🍊"; position:absolute; font-size: 220px; opacity:.10; right:-30px; bottom:-60px; transform: rotate(-12deg); }
.cta-card h2{ font-size: clamp(30px,4.4vw,50px); color:#fff; max-width: 18ch; margin:0 auto; }
.cta-card p{ color: rgba(255,255,255,.9); font-size: 18px; max-width: 46ch; margin: 18px auto 32px; }
.cta-card .btns{ display:flex; flex-wrap:wrap; gap:14px; justify-content:center; }
.cta-card .btn-primary{ background:#fff; color: var(--accent); box-shadow: 0 14px 30px -12px rgba(0,0,0,.3); }
.cta-card .btn-primary:hover{ background: #fff; color: var(--accent-2); }
.cta-card .btn-ghost{ border-color: rgba(255,255,255,.55); color:#fff; }
.cta-card .btn-ghost:hover{ border-color:#fff; color:#fff; background: rgba(255,255,255,.12); }

/* ---------- footer ---------- */
.foot{ background: var(--ink); color: #f3e7da; padding: clamp(48px,6vw,72px) 0 32px; }
.foot-grid{ display:grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; }
.foot .brand{ color:#fff; }
.foot .brand small{ color: rgba(243,231,218,.6); }
.foot p{ color: rgba(243,231,218,.65); font-size:14.5px; max-width: 34ch; }
.foot h4{ font-family: var(--font-body); font-size:12.5px; letter-spacing:.16em; text-transform:uppercase; color: rgba(243,231,218,.5); margin:0 0 16px; }
.foot ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:11px; }
.foot ul a{ color: rgba(243,231,218,.85); font-size:14.5px; transition: color .2s; }
.foot ul a:hover{ color: var(--accent-2); }
.foot-soc{ display:flex; gap:12px; margin-top:6px; }
.foot-soc a{ width:42px; height:42px; border-radius:50%; display:grid; place-items:center; background: rgba(255,255,255,.08); color:#fff; transition: background .25s, transform .25s; }
.foot-soc a svg{ width:19px; height:19px; }
.foot-soc a:hover{ background: var(--accent); transform: translateY(-2px); }
.foot-bot{ margin-top: 44px; padding-top: 24px; border-top:1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:13px; color: rgba(243,231,218,.5); }

/* ---------- lightbox ---------- */
.lb{ position:fixed; inset:0; z-index:200; background:rgba(0,0,0,.93); display:none; align-items:center; justify-content:center; }
.lb.open{ display:flex; }
.lb-content{ max-width:90vw; max-height:90vh; display:flex; align-items:center; justify-content:center; }
.lb-content img{ max-width:90vw; max-height:90vh; object-fit:contain; border-radius:10px; display:block; box-shadow:0 8px 40px rgba(0,0,0,.6); }
.lb-close{ position:absolute; top:18px; right:22px; background:rgba(255,255,255,.12); border:none; color:#fff; font-size:24px; width:44px; height:44px; border-radius:50%; cursor:pointer; display:grid; place-items:center; transition:background .2s; z-index:201; }
.lb-close:hover{ background:rgba(255,255,255,.28); }
.lb-prev,.lb-next{ position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,.12); border:none; color:#fff; font-size:44px; width:54px; height:54px; border-radius:50%; cursor:pointer; display:grid; place-items:center; transition:background .2s; z-index:201; line-height:1; }
.lb-prev{ left:14px; }
.lb-next{ right:14px; }
.lb-prev:hover,.lb-next:hover{ background:rgba(255,255,255,.28); }

/* ---------- reveal animation ---------- */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in{ opacity:1; transform: none; }
.reveal[data-d="1"]{ transition-delay:.08s; }
.reveal[data-d="2"]{ transition-delay:.16s; }
.reveal[data-d="3"]{ transition-delay:.24s; }
.reveal[data-d="4"]{ transition-delay:.32s; }

/* sticky mobile call bar */
.callbar{ display:none; position:fixed; left:12px; right:12px; bottom:12px; z-index:55; gap:10px; }
.callbar .btn{ flex:1; box-shadow: var(--shadow); }

/* ---------- responsive ---------- */
@media (max-width: 980px){
  .nav, .hdr-phone{ display:none; }
  .burger{ display:block; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-art{ max-width: 460px; margin: 8px auto 0; }
  .svc-grid, .price-grid, .rev-grid{ grid-template-columns: repeat(2,1fr); }
  .masters{ grid-template-columns: repeat(2,1fr); }
  .contact-grid{ grid-template-columns: 1fr; }
  .gallery{ columns: 3; }
  .foot-grid{ grid-template-columns: 1fr 1fr; }
  .foot-grid > div:first-child{ grid-column: 1 / -1; }
}
@media (max-width: 640px){
  body{ font-size: 16px; }
  .svc-grid, .price-grid, .rev-grid, .masters{ grid-template-columns: 1fr; }
  .gallery{ columns: 2; column-gap:12px; }
  .gallery .ph{ margin-bottom:12px; }
  .hero h1{ font-size: clamp(40px, 12vw, 60px); }
  .hero-art .photo-2{ width: 40%; left:-12px; bottom:-18px; }
  .foot-grid{ grid-template-columns: 1fr; gap:32px; }
  .callbar{ display:flex; }
  body.has-callbar{ padding-bottom: 76px; }
  .hero-badge{ right: 6px; top: 12px; padding: 10px 13px; }
}

@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto !important; }
  .reveal{ opacity:1 !important; transform:none !important; transition:none !important; }
}

/* ---------- Наш простір ---------- */
.prostir{
  padding: clamp(72px, 10vw, 130px) 0;
  background: #1C0F08;
}
.prostir-intro{
  text-align:center; color:#fff;
  margin-bottom: clamp(32px,5vw,52px);
}
.prostir-video-wrap{
  width:100%; border-radius:20px; overflow:hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
}
.prostir-video-wrap video{
  display:block; width:100%; height:auto; max-height:520px;
  object-fit:cover;
}
.prostir-intro .eyebrow-light{
  color: var(--accent-soft); font-size:12.5px; font-weight:600;
  letter-spacing:.2em; text-transform:uppercase;
  display:inline-flex; align-items:center; gap:9px; margin-bottom:18px;
}
.prostir-intro .eyebrow-light::before{ content:""; width:26px; height:2px; background: var(--accent-soft); border-radius:2px; }
.prostir-intro h2{ font-size: clamp(34px,5vw,60px); color:#fff; margin-bottom:18px; }
.prostir-intro p{ color:rgba(255,255,255,.78); font-size:clamp(16px,1.4vw,19px); max-width:54ch; margin:0 auto; line-height:1.7; }
.prostir-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 52px) clamp(24px, 3vw, 48px);
}
.prostir-cards{ background: #fff; }
.pcard-wrap{ display:flex; flex-direction:column; align-items:center; }
.pcard-frame{
  position:relative; width:100%; max-width:260px;
  margin-bottom:22px;
}
.pcard-deco{
  position:absolute; inset:0;
  background:#fff;
  border-radius:3px;
  box-shadow: 0 8px 28px rgba(0,0,0,.45);
}
.pcd-1{ transform: rotate(-6deg) translate(-10px, 6px); z-index:1; }
.pcd-2{ transform: rotate(4deg) translate(8px, -6px); z-index:2; }
.pcard-inner{
  position:relative; z-index:3;
  background:#fff;
  padding: 10px 10px 38px;
  border-radius:3px;
  box-shadow: 0 16px 52px rgba(0,0,0,.55);
}
.pcard-shots{
  position:relative;
  aspect-ratio: 3/4;
  overflow:hidden;
}
.pshot{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  opacity:0;
  transition: opacity .9s cubic-bezier(.4,0,.2,1);
}
.pshot.active{ opacity:1; }
.pcard-label{
  position:absolute; bottom:48px; left:50%; transform:translateX(-50%);
  z-index:4; text-align:center;
  font-family: var(--font-display); font-style:italic;
  font-size:13px; color: var(--muted);
  white-space:nowrap;
}
.pcard-title{
  font-size:22px; color: var(--ink); margin-bottom:8px; text-align:center;
  font-family: var(--font-display);
}
.pcard-desc{
  font-size:14.5px; color: var(--muted); text-align:center;
  line-height:1.6; max-width:28ch; margin:0;
}
.pcard-dots{
  display:flex; gap:7px; justify-content:center; margin-top:14px;
}
.pcard-dot{
  width:6px; height:6px; border-radius:50%;
  background:rgba(0,0,0,.2);
  transition: background .3s;
  cursor:pointer;
}
.pcard-dot.active{ background: var(--accent); }

@media (max-width:760px){
  .prostir-grid{ grid-template-columns: 1fr 1fr; gap:20px 16px; }
  .pcard-frame{ max-width:200px; }
}
@media (max-width:480px){
  .prostir-grid{ grid-template-columns: 1fr 1fr; gap:16px 12px; }
  .pcard-frame{ max-width:160px; }
  .pcard-inner{ padding:8px 8px 30px; }
  .pcard-title{ font-size:18px; }
  .pcard-desc{ font-size:13px; }
}
