:root {
  --bg: #060707;
  --bg-soft: #0c0d0e;
  --panel: #101112;
  --panel-2: #151719;
  --line: rgba(255,255,255,.12);
  --muted: #b5b7ba;
  --text: #f7f7f5;
  --yellow: #f3c400;
  --yellow-2: #ffd91a;
  --yellow-soft: rgba(243,196,0,.12);
  --white: #fff;
  --shadow: 0 22px 60px rgba(0,0,0,.42);
  --radius: 16px;
  --container: 1220px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; background: var(--bg); color: var(--text); line-height: 1.55; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { display:block; max-width:100%; }
.container { width:min(calc(100% - 40px), var(--container)); margin:0 auto; }
.section { padding: 100px 0; position: relative; }
.section--light { color:#101010; background:#fff; }
.section--dark { background: radial-gradient(circle at top left, #1b1d1e 0, #0a0b0c 34%, #050606 72%); }
.eyebrow { font-size:11px; color:var(--yellow); text-transform:uppercase; font-weight:800; letter-spacing:.17em; margin:0 0 10px; }
.section-title { font-size: clamp(32px, 4vw, 50px); line-height:1.05; margin:0; letter-spacing:-.03em; }
.section-title .accent { color:var(--yellow); }
.section-lead { color:var(--muted); max-width:680px; margin:16px auto 0; font-size:17px; }
.section--light .section-lead { color:#60646a; }
.text-center { text-align:center; }
.btn { display:inline-flex; align-items:center; justify-content:center; gap:10px; border-radius:8px; min-height:52px; padding:0 20px; font-weight:800; font-size:14px; border:1px solid transparent; transition: transform .2s ease, background .2s ease, border-color .2s ease; cursor:pointer; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background:var(--yellow); color:#080808; box-shadow: 0 10px 28px rgba(243,196,0,.18); }
.btn--primary:hover { background:var(--yellow-2); }
.btn--ghost { color:#fff; border-color:rgba(255,255,255,.42); background:rgba(5,6,7,.2); }
.btn--ghost:hover { border-color:var(--yellow); color:var(--yellow); }
.btn--small { min-height:42px; padding:0 14px; font-size:13px; }
.arrow { font-size:18px; line-height:1; }

/* Header */
.site-header { position:sticky; top:0; z-index:50; background:rgba(5,6,7,.93); backdrop-filter: blur(14px); border-bottom:1px solid rgba(255,255,255,.06); }
.header-inner { min-height:76px; display:flex; align-items:center; justify-content:space-between; gap:26px; }
.brand { display:flex; flex-direction:column; font-weight:900; line-height:.8; letter-spacing:-.08em; font-size:22px; min-width:128px; }
.brand span:last-child { color:var(--yellow); font-size:18px; letter-spacing:-.09em; }
.main-nav { display:flex; gap:23px; align-items:center; }
.main-nav a { font-size:13px; font-weight:700; color:#d3d4d5; transition:color .2s ease; white-space:nowrap; }
.main-nav a:hover, .main-nav a.is-active { color:var(--yellow); }
.header-actions { display:flex; align-items:center; gap:12px; }
.mobile-toggle { display:none; width:44px; height:44px; border:1px solid var(--line); color:#fff; background:transparent; border-radius:8px; font-size:20px; }

/* Hero */
.hero { min-height:720px; display:grid; grid-template-columns: .88fr 1.12fr; align-items:stretch; position:relative; overflow:hidden; border-bottom:1px solid var(--line); }
.hero::before { content:""; position:absolute; inset:0; background:linear-gradient(90deg, #070808 0%, rgba(7,8,8,.97) 27%, rgba(7,8,8,.28) 61%, rgba(7,8,8,.18) 100%); z-index:1; pointer-events:none; }
.hero-media { position:absolute; inset:0; z-index:0; }
.hero-media img { width:100%; height:100%; object-fit:cover; object-position:center right; opacity:.98; }
.hero-content { grid-column:1 / 2; align-self:center; z-index:2; padding:90px 0 50px; max-width:590px; }
.hero-title { font-size:clamp(44px,5.1vw,76px); line-height:.93; letter-spacing:-.055em; margin:0 0 24px; font-weight:900; text-transform:uppercase; }
.hero-title .accent { color:var(--yellow); }
.hero-copy { color:#d6d6d7; font-size:18px; max-width:480px; margin:0 0 28px; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; }
.hero-points { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:55px; max-width:600px; }
.hero-point { display:flex; gap:10px; align-items:flex-start; font-size:12px; line-height:1.35; color:#d4d5d6; }
.hero-point .mini-icon { color:var(--yellow); border:1px solid rgba(243,196,0,.7); border-radius:8px; width:32px; height:32px; display:grid; place-items:center; flex:0 0 32px; font-size:16px; }
.hero-point b { display:block; color:#fff; font-size:13px; margin-bottom:3px; }
.hero-badge { z-index:3; position:absolute; right:clamp(20px,4vw,72px); bottom:42px; background:#fff; color:#252525; border-radius:12px; padding:13px 18px; box-shadow:var(--shadow); display:flex; gap:12px; align-items:center; font-size:12px; }
.hero-badge .g { font-weight:900; font-size:27px; color:#4285f4; }
.hero-badge strong { display:block; font-size:14px; }
.hero-badge .stars { color:#f7b900; letter-spacing:1px; }

/* Stats strip */
.stats-wrap { margin-top:-40px; position:relative; z-index:4; }
.stats { background:linear-gradient(90deg, #101112, #121415); border:1px solid var(--line); border-radius:16px; box-shadow:var(--shadow); display:grid; grid-template-columns:repeat(4,1fr); overflow:hidden; }
.stat { padding:24px 28px; display:flex; align-items:center; gap:14px; border-right:1px solid var(--line); }
.stat:last-child { border-right:0; }
.stat-icon { color:var(--yellow); font-size:27px; }
.stat b { display:block; font-size:18px; line-height:1.1; }
.stat span { color:#c4c5c6; font-size:12px; }

/* Service cards */
.services-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:42px; }
.service-card { border:1px solid #e7e7e7; background:#fff; color:#171717; border-radius:13px; overflow:hidden; box-shadow:0 15px 33px rgba(7,7,7,.1); transition:transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform:translateY(-6px); box-shadow:0 24px 42px rgba(7,7,7,.17); }
.service-image { height:205px; background:#101112; position:relative; overflow:hidden; }
.service-image img { width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.service-card:hover .service-image img { transform:scale(1.06); }
.service-tag { position:absolute; left:16px; bottom:-18px; width:40px; height:40px; border-radius:50%; display:grid; place-items:center; background:var(--yellow); color:#111; font-weight:900; box-shadow:0 7px 15px rgba(0,0,0,.23); }
.service-body { padding:32px 19px 18px; }
.service-body h3 { margin:0 0 8px; font-size:18px; letter-spacing:-.025em; }
.service-body p { margin:0 0 13px; font-size:13px; line-height:1.55; color:#696b70; min-height:62px; }
.text-link { color:#dba900; font-weight:800; font-size:13px; }
.text-link:hover { color:#111; }

/* Portfolio */
.portfolio { overflow:hidden; }
.portfolio::before { content:""; position:absolute; inset:0; opacity:.25; pointer-events:none; background:repeating-radial-gradient(ellipse at bottom, rgba(255,255,255,.13) 0 1px, transparent 2px 11px); mask-image: linear-gradient(to bottom, transparent, black 30%, transparent); }
.filter-row { display:flex; justify-content:center; flex-wrap:wrap; gap:9px; margin:30px 0 26px; position:relative; z-index:1; }
.filter { border:1px solid rgba(255,255,255,.2); background:#111; color:#d4d4d4; padding:8px 14px; border-radius:7px; font-weight:700; font-size:12px; cursor:pointer; }
.filter.is-active, .filter:hover { background:var(--yellow); color:#111; border-color:var(--yellow); }
.gallery { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; position:relative; z-index:1; }
.gallery-card { position:relative; aspect-ratio:1.35; border-radius:10px; overflow:hidden; border:1px solid rgba(255,255,255,.13); background:#17191b; cursor:pointer; }
.gallery-card img { width:100%; height:100%; object-fit:cover; transition:transform .3s ease, filter .3s ease; }
.gallery-card:hover img { transform:scale(1.07); filter:brightness(1.14); }
.gallery-card::after { content:""; position:absolute; inset:0; background:linear-gradient(transparent 42%, rgba(0,0,0,.9)); }
.gallery-caption { position:absolute; z-index:2; bottom:12px; left:13px; right:13px; font-size:12px; font-weight:700; }
.gallery-caption small { display:block; color:var(--yellow); font-size:10px; text-transform:uppercase; letter-spacing:.1em; margin-bottom:3px; }
.gallery-card[hidden] { display:none; }

/* Why us */
.why-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:55px; align-items:center; }
.check-list { margin:25px 0 29px; padding:0; list-style:none; display:grid; gap:11px; }
.check-list li { display:flex; gap:12px; align-items:flex-start; color:#55575c; font-size:15px; }
.check { width:20px; height:20px; border-radius:50%; color:#151515; background:var(--yellow); display:grid; place-items:center; font-size:12px; font-weight:900; flex:0 0 20px; margin-top:2px; }
.why-image { border-radius:18px; overflow:hidden; min-height:380px; border:1px solid #ddd; background:#121415; box-shadow:0 22px 45px rgba(0,0,0,.23); position:relative; }
.why-image img { width:100%; height:100%; position:absolute; inset:0; object-fit:cover; }
.why-image::after { content:""; position:absolute; inset:0; background:linear-gradient(110deg, rgba(0,0,0,.02), rgba(0,0,0,.4)); }

/* Contact band and footer */
.contact-band { border-top:1px solid var(--line); background:#0d0e0f; }
.contact-band-inner { min-height:156px; display:grid; grid-template-columns:1fr auto auto; align-items:center; gap:30px; }
.contact-band h2 { font-size:30px; line-height:1.05; margin:0 0 8px; letter-spacing:-.03em; }
.contact-band h2 span { color:var(--yellow); }
.contact-band p { margin:0; color:#c0c1c2; font-size:14px; }
.contact-phone { color:#fff; font-weight:900; font-size:19px; white-space:nowrap; }
.site-footer { background:#050506; padding:58px 0 24px; }
.footer-grid { display:grid; grid-template-columns:1.25fr .75fr .85fr 1.25fr; gap:42px; }
.footer-logo { font-size:27px; margin-bottom:19px; }
.footer-about { color:#a5a5a7; font-size:13px; max-width:245px; }
.footer-heading { color:#fff; font-size:13px; font-weight:900; margin:5px 0 13px; text-transform:uppercase; letter-spacing:.08em; }
.footer-list { list-style:none; padding:0; margin:0; display:grid; gap:8px; }
.footer-list a, .footer-list li { color:#aeb0b2; font-size:13px; }
.footer-list a:hover { color:var(--yellow); }
.footer-contact { color:#b1b2b4; font-size:13px; display:grid; gap:9px; }
.footer-bottom { border-top:1px solid var(--line); margin-top:42px; padding-top:22px; display:flex; align-items:center; justify-content:space-between; gap:18px; color:#74767a; font-size:12px; }

/* Pages */
.page-hero { padding:105px 0 72px; background:radial-gradient(circle at 78% 10%, rgba(243,196,0,.19), transparent 21%), linear-gradient(120deg,#080909,#181a1c 70%,#0a0b0b); border-bottom:1px solid var(--line); }
.page-hero-grid { display:grid; grid-template-columns:1fr .9fr; gap:40px; align-items:center; }
.page-hero h1 { font-size:clamp(40px,5vw,66px); line-height:.98; margin:0 0 18px; letter-spacing:-.06em; text-transform:uppercase; }
.page-hero p { font-size:18px; color:#c8c9cb; max-width:650px; }
.page-art { border:1px solid var(--line); border-radius:18px; overflow:hidden; background:#0d0e0f; min-height:300px; }
.page-art img { width:100%; height:100%; object-fit:cover; }
.info-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:38px; }
.info-card { background:#fff; color:#171717; border:1px solid #e5e5e5; padding:25px; border-radius:12px; }
.info-card h3 { margin:0 0 9px; font-size:19px; }
.info-card p { margin:0; color:#65676b; font-size:14px; }
.content-grid { display:grid; grid-template-columns:1fr 1fr; gap:34px; align-items:start; }
.content-panel { background:#101112; border:1px solid var(--line); border-radius:14px; padding:27px; }
.content-panel h2 { margin:0 0 13px; font-size:28px; }
.content-panel p { color:#c0c1c3; }
.price-list { display:grid; gap:10px; margin-top:18px; }
.price-line { display:flex; justify-content:space-between; gap:20px; border-bottom:1px solid var(--line); padding-bottom:10px; color:#e7e7e8; font-size:14px; }
.price-line span:last-child { color:var(--yellow); font-weight:900; white-space:nowrap; }
.contact-layout { display:grid; grid-template-columns:.83fr 1.17fr; gap:30px; }
.contact-card { background:#101112; border:1px solid var(--line); padding:30px; border-radius:14px; }
.contact-card h2 { margin-top:0; font-size:30px; }
.contact-detail { padding:17px 0; border-bottom:1px solid var(--line); }
.contact-detail:last-child { border-bottom:0; }
.contact-detail b { display:block; color:var(--yellow); font-size:12px; text-transform:uppercase; letter-spacing:.09em; margin-bottom:4px; }
.contact-detail a, .contact-detail span { font-size:17px; color:#f4f4f4; }
.form { display:grid; gap:14px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form label { display:grid; gap:7px; font-size:13px; color:#d9d9da; font-weight:700; }
.form input, .form select, .form textarea { border:1px solid rgba(255,255,255,.18); border-radius:8px; background:#070808; color:#fff; padding:13px 14px; outline:0; min-height:48px; }
.form textarea { min-height:142px; resize:vertical; }
.form input:focus, .form select:focus, .form textarea:focus { border-color:var(--yellow); box-shadow:0 0 0 3px rgba(243,196,0,.11); }
.form-note { color:#96989b; font-size:12px; margin:0; }

/* Modal */
.modal { position:fixed; inset:0; z-index:90; background:rgba(0,0,0,.78); backdrop-filter:blur(7px); display:none; align-items:center; justify-content:center; padding:20px; }
.modal.is-open { display:flex; }
.modal-inner { width:min(780px,100%); border-radius:15px; overflow:hidden; background:#111; border:1px solid var(--line); position:relative; box-shadow:var(--shadow); }
.modal-inner img { width:100%; aspect-ratio:1.55; object-fit:cover; }
.modal-copy { padding:19px; }
.modal-copy b { display:block; font-size:20px; margin-bottom:4px; }
.modal-copy p { color:#b9bbbe; margin:0; }
.modal-close { position:absolute; right:10px; top:10px; z-index:1; width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.3); background:#111; color:#fff; font-size:22px; cursor:pointer; }

.reveal { opacity:0; transform:translateY(18px); transition:opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity:1; transform:none; }

@media (max-width:1050px) {
  .main-nav { gap:15px; }
  .header-actions .btn { padding:0 14px; }
  .services-grid, .gallery { grid-template-columns:repeat(2,1fr); }
  .hero { min-height:690px; }
  .hero::before { background:linear-gradient(90deg, #070808 0%, rgba(7,8,8,.96) 47%, rgba(7,8,8,.35) 84%); }
  .hero-content { max-width:520px; }
  .footer-grid { grid-template-columns:1.2fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column:1/-1; }
}
@media (max-width:780px) {
  .container { width:min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height:67px; }
  .main-nav { display:none; position:absolute; top:67px; left:0; right:0; padding:18px 20px 22px; background:#0c0d0e; border-bottom:1px solid var(--line); flex-direction:column; align-items:flex-start; gap:14px; }
  .main-nav.is-open { display:flex; }
  .header-actions .btn { display:none; }
  .mobile-toggle { display:block; }
  .brand { font-size:19px; min-width:auto; }
  .brand span:last-child { font-size:16px; }
  .hero { min-height:670px; display:block; }
  .hero::before { background:linear-gradient(180deg, rgba(7,8,8,.97) 0%, rgba(7,8,8,.78) 60%, rgba(7,8,8,.67) 100%); }
  .hero-media img { object-position:65% center; }
  .hero-content { padding:74px 0 52px; max-width:100%; }
  .hero-title { font-size:47px; max-width:430px; }
  .hero-copy { font-size:16px; max-width:440px; }
  .hero-points { grid-template-columns:1fr; gap:12px; margin-top:34px; max-width:300px; }
  .hero-point { font-size:11px; }
  .hero-badge { display:none; }
  .stats-wrap { margin-top:0; }
  .stats { border-radius:0; grid-template-columns:1fr 1fr; }
  .stat { padding:20px 16px; border-bottom:1px solid var(--line); }
  .stat:nth-child(2) { border-right:0; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom:0; }
  .stat b { font-size:15px; }
  .stat-icon { font-size:22px; }
  .section { padding:72px 0; }
  .services-grid, .gallery, .info-grid { grid-template-columns:1fr; }
  .service-image { height:220px; }
  .why-grid, .content-grid, .contact-layout, .page-hero-grid { grid-template-columns:1fr; gap:25px; }
  .why-image { min-height:240px; }
  .contact-band-inner { grid-template-columns:1fr; padding:36px 0; gap:20px; }
  .contact-band h2 { font-size:28px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:30px; }
  .footer-grid > :last-child { grid-column:1/-1; }
  .footer-bottom { align-items:flex-start; flex-direction:column; }
  .form-row { grid-template-columns:1fr; }
  .page-hero { padding:80px 0 55px; }
  .page-hero h1 { font-size:46px; }
}
@media (max-width:460px) { .footer-grid { grid-template-columns:1fr; } .footer-grid > :last-child { grid-column:auto; } .hero-actions { display:grid; grid-template-columns:1fr; max-width:240px; } .btn { width:100%; } }

/* Online booking */
.booking-page-hero { padding:100px 0 76px; background:radial-gradient(circle at 83% 8%, rgba(243,196,0,.24), transparent 23%), linear-gradient(120deg,#070808,#17191b 70%,#0a0b0b); }
.booking-intro { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.booking-intro h1 { font-size:clamp(42px,5vw,68px); line-height:.98; margin:0 0 19px; letter-spacing:-.06em; text-transform:uppercase; }
.booking-intro > div > p:not(.eyebrow) { color:#c8c9cb; max-width:635px; font-size:18px; margin:0; }
.booking-intro-points { border-left:1px solid var(--line); padding-left:34px; display:grid; gap:18px; }
.booking-intro-points > div { display:grid; grid-template-columns:36px 1fr; column-gap:12px; align-items:center; }
.booking-intro-points span { grid-row:1/3; width:32px; height:32px; display:grid; place-items:center; border-radius:50%; background:var(--yellow); color:#111; font-weight:900; }
.booking-intro-points b { color:#fff; font-size:15px; }
.booking-intro-points small { color:#a9abad; font-size:13px; }
.booking-section { padding-top:74px; }
.booking-layout { display:grid; grid-template-columns:.82fr 1.18fr; gap:26px; align-items:stretch; }
.booking-sidecard, .booking-widget-wrap { border:1px solid var(--line); border-radius:16px; background:linear-gradient(150deg,#111315,#0b0c0d); }
.booking-sidecard { padding:35px; }
.booking-sidecard h2 { font-size:29px; line-height:1.06; letter-spacing:-.04em; margin:0 0 16px; }
.booking-sidecard > p:not(.eyebrow) { color:#bbbdbf; font-size:15px; margin:0; }
.booking-checks { list-style:none; padding:0; margin:27px 0; display:grid; gap:12px; }
.booking-checks li { color:#e5e5e5; display:flex; gap:10px; font-size:14px; }
.booking-checks span { color:#111; background:var(--yellow); width:20px; height:20px; border-radius:50%; display:grid; place-items:center; font-size:12px; font-weight:900; flex:0 0 20px; }
.booking-alternative { border-top:1px solid var(--line); padding-top:20px; display:grid; gap:4px; }
.booking-alternative b { color:#929498; font-size:12px; text-transform:uppercase; letter-spacing:.1em; }
.booking-alternative a { color:var(--yellow); font-size:19px; font-weight:900; }
.booking-widget-wrap { min-height:565px; padding:16px; }
.cal-booking { min-height:530px; width:100%; display:none; overflow:hidden; border-radius:12px; }
.cal-booking.is-active { display:block; }
.booking-demo { overflow:hidden; border-radius:12px; background:#f6f7f8; color:#151515; min-height:530px; }
.booking-demo[hidden] { display:none; }
.booking-demo-top { padding:23px 28px; display:flex; justify-content:space-between; gap:18px; align-items:center; border-bottom:1px solid #dedfe1; }
.booking-demo-top > div { display:flex; gap:11px; align-items:center; }
.booking-demo-top strong { display:block; font-size:17px; }
.booking-demo-top small { display:block; color:#777a80; font-size:12px; margin-top:2px; }
.booking-demo-mark { width:38px; height:38px; display:grid; place-items:center; border-radius:10px; background:#111; color:var(--yellow); font-size:19px; }
.demo-status { background:#fff4bc; color:#735b00; border:1px solid #e7cf55; border-radius:99px; padding:6px 10px; font-size:11px; font-weight:800; white-space:nowrap; }
.booking-demo-body { display:grid; grid-template-columns:1.15fr .85fr; min-height:380px; }
.demo-calendar { padding:26px 28px; border-right:1px solid #dedfe1; }
.demo-month { display:flex; align-items:center; justify-content:space-between; margin-bottom:22px; }
.demo-month b { font-size:17px; }
.demo-month button { width:32px; height:32px; border:1px solid #d8dadd; background:#fff; border-radius:8px; color:#25272a; font-size:22px; cursor:default; }
.demo-weekdays, .demo-days { display:grid; grid-template-columns:repeat(7,1fr); gap:7px; text-align:center; }
.demo-weekdays { margin-bottom:10px; color:#7f8286; font-size:11px; font-weight:800; }
.demo-days span, .demo-days i { aspect-ratio:1; display:grid; place-items:center; font-style:normal; font-size:13px; border-radius:50%; }
.demo-days .is-off { color:#b7b9bd; }
.demo-days .is-selected { color:#111; background:var(--yellow); font-weight:900; box-shadow:0 5px 11px rgba(243,196,0,.35); }
.demo-times { padding:28px 24px; background:#fff; }
.demo-times p { margin:0 0 19px; }
.demo-times p b { display:block; font-size:15px; }
.demo-times p small { color:#777a80; font-size:11px; }
.demo-times button { width:100%; border:1px solid #d6d8db; border-radius:8px; background:#fff; color:#171717; padding:10px; margin:0 0 9px; font-weight:800; cursor:default; }
.demo-times em { display:block; color:#777a80; font-size:10px; line-height:1.4; margin-top:12px; font-style:normal; }
.booking-demo-bottom { padding:14px 28px; border-top:1px solid #dedfe1; display:flex; align-items:center; justify-content:space-between; gap:16px; color:#73767b; font-size:12px; }
.booking-demo-bottom a { color:#141414; font-weight:900; }
.booking-privacy { color:#909296; font-size:12px; margin:17px 0 0; text-align:right; }
.booking-mini-link { display:inline-block; color:var(--yellow); border:1px solid rgba(243,196,0,.45); border-radius:8px; font-size:13px; font-weight:800; padding:9px 12px; margin-bottom:23px; }
.booking-mini-link:hover { background:rgba(243,196,0,.1); }
@media (max-width:780px) {
 .booking-intro, .booking-layout { grid-template-columns:1fr; gap:26px; }
 .booking-intro-points { border-left:0; border-top:1px solid var(--line); padding:24px 0 0; }
 .booking-demo-body { grid-template-columns:1fr; }
 .demo-calendar { border-right:0; border-bottom:1px solid #dedfe1; padding:24px 19px; }
 .demo-times { padding:22px 19px; }
 .booking-demo-top { align-items:flex-start; padding:20px; }
 .demo-status { display:none; }
 .booking-demo-bottom { padding:14px 19px; align-items:flex-start; flex-direction:column; }
 .booking-sidecard { padding:27px; }
 .booking-widget-wrap { padding:9px; }
 .booking-privacy { text-align:left; }
}


/* Materials section and materials page */
.materials-teaser { background:linear-gradient(135deg,#141618 0%,#090a0b 62%,#111415 100%); overflow:hidden; }
.materials-teaser::before { content:""; position:absolute; inset:0; pointer-events:none; background:radial-gradient(circle at 84% 20%, rgba(243,196,0,.17), transparent 22%), repeating-linear-gradient(120deg, transparent 0 18px, rgba(255,255,255,.025) 19px 20px); }
.materials-teaser-grid { position:relative; display:grid; grid-template-columns:.88fr 1.12fr; gap:65px; align-items:center; }
.materials-teaser-copy .section-title { margin-bottom:18px; }
.materials-teaser-copy > p:not(.eyebrow) { color:#c7c8cb; max-width:560px; font-size:16px; }
.materials-teaser-copy .btn { margin-top:13px; }
.materials-mini-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.materials-mini-grid article { min-height:235px; padding:25px 22px; border:1px solid rgba(255,255,255,.13); border-radius:14px; background:linear-gradient(155deg,rgba(255,255,255,.055),rgba(255,255,255,.015)); position:relative; overflow:hidden; }
.materials-mini-grid article::after { content:""; position:absolute; inset:auto -40px -45px auto; width:130px; height:130px; border-radius:50%; background:rgba(243,196,0,.14); filter:blur(2px); }
.materials-mini-no { display:inline-block; color:var(--yellow); font-size:11px; font-weight:900; letter-spacing:.1em; }
.materials-mini-grid p { margin:32px 0 5px; color:#aeb0b3; font-size:12px; text-transform:uppercase; letter-spacing:.08em; }
.materials-mini-grid h3 { margin:0 0 13px; color:#fff; font-size:21px; letter-spacing:-.04em; }
.materials-mini-grid small { color:#d0d1d3; line-height:1.55; font-size:12px; position:relative; z-index:1; }
.materials-hero { padding:112px 0 88px; border-bottom:1px solid var(--line); overflow:hidden; background:radial-gradient(circle at 74% 19%,rgba(243,196,0,.22),transparent 15%), radial-gradient(circle at 96% 84%,rgba(255,255,255,.08),transparent 24%), linear-gradient(120deg,#080909,#17191b 68%,#0b0c0d); }
.materials-hero-grid { display:grid; grid-template-columns:1fr .86fr; gap:52px; align-items:center; }
.materials-hero h1 { font-size:clamp(40px,5vw,68px); line-height:.98; margin:0 0 20px; letter-spacing:-.06em; text-transform:uppercase; }
.materials-hero h1 .accent { color:var(--yellow); }
.materials-hero p:not(.eyebrow) { max-width:620px; color:#c6c7c9; font-size:18px; }
.materials-hero-visual { min-height:390px; position:relative; perspective:1100px; }
.material-sheet { position:absolute; width:75%; min-height:196px; border-radius:16px; padding:27px; border:1px solid rgba(255,255,255,.2); box-shadow:0 28px 60px rgba(0,0,0,.35); display:flex; flex-direction:column; justify-content:flex-end; overflow:hidden; }
.material-sheet::after { content:""; position:absolute; inset:0; background:linear-gradient(135deg,rgba(255,255,255,.22),transparent 29%, transparent 72%, rgba(255,255,255,.1)); pointer-events:none; }
.material-sheet span { font-size:13px; letter-spacing:.2em; font-weight:900; color:#efefef; }
.material-sheet b { position:relative; z-index:1; font-size:31px; letter-spacing:-.06em; margin:16px 0 5px; }
.material-sheet small { position:relative; z-index:1; color:#e7e7e7; font-size:12px; }
.material-sheet--ppf { left:2%; top:0; z-index:3; transform:rotate(-7deg); background:linear-gradient(130deg,#c2cbd7,#5c6673 56%,#15191c); color:#111; }
.material-sheet--ppf span,.material-sheet--ppf small { color:#212730; }
.material-sheet--wrap { right:0; top:102px; z-index:2; transform:rotate(8deg); background:linear-gradient(135deg,#0d0f11,#f3c400 230%); }
.material-sheet--print { left:13%; bottom:0; z-index:1; transform:rotate(-1deg); background:linear-gradient(135deg,#503b0b,#111314 60%); }
.materials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:43px; }
.material-card { border-radius:16px; padding:30px; border:1px solid #e5e5e5; box-shadow:0 16px 36px rgba(6,7,7,.08); }
.material-card--light { background:#fff; color:#151515; }
.material-card-top { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:35px; }
.material-mark { width:41px; height:41px; display:grid; place-items:center; border-radius:11px; background:#181a1c; color:var(--yellow); font-size:12px; font-weight:900; }
.material-label { color:#8a8c90; font-size:11px; text-transform:uppercase; font-weight:900; letter-spacing:.11em; }
.material-card h3 { margin:0 0 9px; font-size:28px; letter-spacing:-.05em; }
.material-subtitle { min-height:52px; margin:0; color:#595b60; font-size:15px; }
.material-list { display:grid; gap:15px; list-style:none; padding:0; margin:25px 0 22px; }
.material-list li { font-size:13px; line-height:1.52; color:#55575c; padding-left:20px; position:relative; }
.material-list li::before { content:""; position:absolute; left:0; top:8px; width:7px; height:7px; border-radius:50%; background:var(--yellow); }
.material-list b { color:#1a1a1a; }
.material-note { border-top:1px solid #ececed; padding-top:16px; font-size:12px; line-height:1.52; color:#77797d; min-height:84px; }
.selection-grid { display:grid; grid-template-columns:.88fr 1.12fr; gap:70px; align-items:center; }
.selection-copy p:not(.eyebrow) { color:#bebfc1; font-size:17px; max-width:510px; }
.selection-steps { border:1px solid var(--line); border-radius:16px; overflow:hidden; background:#101112; }
.selection-steps article { display:grid; grid-template-columns:56px 1fr; gap:16px; padding:24px 27px; border-bottom:1px solid var(--line); }
.selection-steps article:last-child { border-bottom:0; }
.selection-steps span { width:35px; height:35px; display:grid; place-items:center; border-radius:50%; background:var(--yellow); color:#141414; font-weight:900; }
.selection-steps h3 { margin:0 0 3px; font-size:17px; }
.selection-steps p { margin:0; color:#b3b5b7; font-size:14px; }
.materials-faq-grid { display:grid; grid-template-columns:.75fr 1.25fr; gap:80px; align-items:start; }
.faq-stack { display:grid; gap:12px; }
.faq-stack details { border:1px solid #e2e2e2; border-radius:12px; padding:0 22px; background:#fff; }
.faq-stack summary { padding:20px 33px 20px 0; list-style:none; cursor:pointer; font-size:17px; font-weight:900; position:relative; }
.faq-stack summary::-webkit-details-marker { display:none; }
.faq-stack summary::after { content:"+"; position:absolute; right:0; top:15px; color:#d7a900; font-size:26px; font-weight:400; }
.faq-stack details[open] summary::after { content:"−"; }
.faq-stack p { margin:0 0 20px; color:#626469; font-size:14px; line-height:1.65; }
.material-detail-section { background:#f7f7f6; color:#151515; }
.material-detail-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:23px; }
.material-detail-card { border-radius:14px; padding:31px; border:1px solid #dedede; background:#fff; }
.material-detail-card--brand { background:linear-gradient(135deg,#151719,#0b0c0d); color:#fff; border-color:#222426; }
.material-detail-card--brand p:not(.eyebrow) { color:#c6c7c9; max-width:510px; }
.material-brand { margin:18px 0 15px; font-size:38px; font-weight:900; letter-spacing:-.07em; line-height:.85; }
.material-brand span { color:var(--yellow); display:block; font-size:22px; letter-spacing:.04em; margin-top:10px; }
.material-detail-card h2 { font-size:29px; letter-spacing:-.05em; margin:0 0 10px; }
.material-detail-card .check-list { margin:17px 0 0; }
.material-detail-card .check-list li { color:#54565b; font-size:14px; }
.tint-material-callout { background:linear-gradient(120deg,#161819,#0a0b0c); padding:53px 0; }
.tint-material-inner { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.tint-material-inner h2 { margin:0; font-size:32px; letter-spacing:-.05em; }
.tint-material-inner > p { color:#bfc0c3; margin:0; font-size:16px; }
@media (max-width:1180px) and (min-width:781px) { .main-nav { gap:12px; } .main-nav a { font-size:11px; } .brand { min-width:104px; font-size:20px; } .brand span:last-child { font-size:16px; } .header-actions .btn { font-size:11px; padding:0 12px; min-height:44px; } }
@media (max-width:900px) { .materials-teaser-grid,.materials-hero-grid,.selection-grid,.materials-faq-grid,.material-detail-grid,.tint-material-inner { grid-template-columns:1fr; gap:30px; } .materials-mini-grid { grid-template-columns:repeat(3,1fr); } .materials-hero-visual { min-height:320px; max-width:590px; width:100%; } }
@media (max-width:780px) { .materials-mini-grid,.materials-grid { grid-template-columns:1fr; } .materials-mini-grid article { min-height:180px; } .materials-hero { padding:86px 0 70px; } .materials-hero-visual { min-height:290px; } .material-sheet { width:82%; min-height:150px; padding:20px; } .material-sheet b { font-size:25px; } .material-sheet--wrap { top:70px; } .materials-grid { margin-top:30px; } .material-card { padding:25px; } .material-subtitle { min-height:auto; } .material-note { min-height:auto; } .selection-steps article { padding:21px; } .materials-faq-grid { gap:27px; } .material-detail-card { padding:25px; } .tint-material-inner { gap:18px; } }

/* Update – materials, wrap variants, tint chooser and detailing pricing */
.btn--dark { background:#111; color:#fff; border-color:#111; }
.btn--dark:hover { background:#2a2a2a; color:#fff; }
.wrap-method-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:19px; margin-top:42px; }
.wrap-method-card { position:relative; padding:33px; border:1px solid #e2e2e2; border-radius:16px; background:#fff; color:#181818; box-shadow:0 16px 36px rgba(6,7,7,.08); overflow:hidden; }
.wrap-method-card--dark { background:linear-gradient(145deg,#151719,#0a0b0c); color:#fff; border-color:#242629; }
.wrap-method-card--wide { grid-column:1/-1; background:linear-gradient(135deg,#fff,#f4f4f2); }
.method-no { position:absolute; top:22px; right:25px; color:#b8b8b8; font-size:13px; font-weight:900; letter-spacing:.12em; }
.wrap-method-card--dark .method-no { color:var(--yellow); }
.wrap-method-card h3 { font-size:38px; line-height:.93; margin:0 0 12px; letter-spacing:-.06em; text-transform:uppercase; }
.wrap-method-card h3 span { color:var(--yellow); }
.wrap-method-card--dark .method-lead { color:#d3d4d5; }
.method-lead { min-height:49px; color:#5e6064; font-size:16px; margin:0 0 23px; }
.method-columns { display:grid; grid-template-columns:1fr 1fr; gap:23px; }
.method-columns b { display:block; font-size:14px; margin-bottom:9px; }
.method-columns ul { margin:0; padding:0; list-style:none; display:grid; gap:10px; }
.method-columns li { position:relative; padding-left:16px; color:#595b60; font-size:13px; line-height:1.52; }
.wrap-method-card--dark .method-columns li { color:#c9cacc; }
.method-columns li::before { content:""; position:absolute; left:0; top:8px; width:6px; height:6px; border-radius:50%; background:var(--yellow); }
.method-price { border-top:1px solid rgba(0,0,0,.12); margin-top:24px; padding-top:16px; color:#66686d; font-size:13px; }
.wrap-method-card--dark .method-price { border-color:var(--line); color:#cbcdd0; }
.method-price strong { color:inherit; font-size:17px; margin-left:4px; }
.wrap-method-card .text-link { margin-top:20px; }
.partial-wrap-layout { display:grid; grid-template-columns:.85fr 1.15fr; gap:45px; align-items:start; }
.partial-list { list-style:none; display:grid; gap:17px; padding:0; margin:0; }
.partial-list li { display:grid; grid-template-columns:32px 1fr; gap:11px; }
.partial-list li > span { width:27px; height:27px; display:grid; place-items:center; border-radius:50%; background:var(--yellow); color:#111; font-weight:900; }
.partial-list b { display:block; font-size:15px; margin:0 0 2px; }
.partial-list p { margin:0; color:#5d5f63; font-size:13px; }

.materials-grid--3 { grid-template-columns:repeat(3,1fr); }
.material-utility-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.material-utility-card { border:1px solid var(--line); border-radius:16px; padding:31px; background:linear-gradient(145deg,#141619,#0c0d0e); }
.material-utility-card h2 { margin:0 0 8px; font-size:31px; letter-spacing:-.05em; }
.material-utility-card p:not(.eyebrow) { color:#c5c6c8; min-height:86px; }
.material-utility-card--yellow { background:var(--yellow); color:#141414; border-color:var(--yellow); }
.material-utility-card--yellow .eyebrow,.material-utility-card--yellow p:not(.eyebrow) { color:#3c3300; }
.material-utility-card--yellow .btn { margin-top:14px; }

.tint-picker { max-width:980px; margin:42px auto 0; padding:29px; border:1px solid #dedede; border-radius:16px; background:#fff; box-shadow:0 16px 34px rgba(0,0,0,.07); }
.picker-step { display:flex; gap:13px; align-items:flex-start; margin:0 0 15px; }
.picker-step > span { width:31px; height:31px; display:grid; place-items:center; border-radius:50%; background:#151719; color:var(--yellow); font-size:13px; font-weight:900; flex:0 0 31px; }
.picker-step b { display:block; font-size:16px; }
.picker-step p { margin:0; color:#686a6e; font-size:13px; }
.tint-options { display:grid; gap:12px; margin:0 0 28px; }
.tint-options--cars { grid-template-columns:repeat(3,1fr); }
.tint-options--films { grid-template-columns:repeat(3,1fr); }
.tint-choice { appearance:none; text-align:left; display:flex; flex-direction:column; gap:5px; min-height:115px; border:1px solid #dedede; border-radius:12px; padding:19px; color:#171717; background:#f8f8f7; cursor:pointer; transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease,background .2s ease; }
.tint-choice:hover { transform:translateY(-2px); border-color:#b6a100; }
.tint-choice.is-selected { border:2px solid var(--yellow); background:#fffdf2; box-shadow:0 9px 23px rgba(243,196,0,.13); }
.tint-choice b { font-size:16px; }
.tint-choice small { color:#66686d; line-height:1.4; font-size:12px; }
.tint-choice strong { color:#191919; font-size:14px; margin-top:auto; }
.tint-summary { display:flex; justify-content:space-between; gap:20px; align-items:center; border-top:1px solid #e4e4e4; padding-top:24px; }
.tint-summary .eyebrow { color:#917600; }
.tint-summary h3 { margin:0 0 3px; color:#171717; font-size:23px; letter-spacing:-.04em; }
.tint-summary p:not(.eyebrow) { margin:0; color:#606267; font-size:14px; }
.tint-safety-callout { display:flex; justify-content:space-between; gap:30px; align-items:center; max-width:980px; margin:18px auto 0; border-radius:15px; background:#151719; color:#fff; padding:25px 28px; }
.tint-safety-callout h3 { margin:0 0 3px; font-size:20px; }
.tint-safety-callout p:not(.eyebrow) { color:#bebfc1; margin:0; font-size:14px; }

.service-price-grid { display:grid; gap:18px; margin-top:42px; }
.service-price-grid--3 { grid-template-columns:repeat(3,1fr); }
.service-price-card { display:flex; flex-direction:column; min-height:285px; padding:30px; border:1px solid #e3e3e3; border-radius:15px; background:#fff; color:#171717; box-shadow:0 16px 34px rgba(0,0,0,.07); }
.service-price-card--featured { border-color:#cbae00; box-shadow:0 17px 34px rgba(216,177,0,.18); }
.service-price-card h3 { margin:0 0 9px; font-size:27px; letter-spacing:-.04em; }
.service-price-card > p:not(.eyebrow) { color:#5f6165; font-size:14px; }
.includes { border-top:1px solid #e7e7e7; margin-top:auto; padding-top:14px; color:#5d5f64; font-size:12px; line-height:1.52; }
.includes b { display:block; color:#222; margin-bottom:4px; }
.large-price { display:block; margin-top:17px; color:#171717; font-size:23px; letter-spacing:-.04em; }
.service-price-grid--dark .service-price-card { background:#111315; border-color:var(--line); color:#fff; box-shadow:none; }
.service-price-grid--dark .service-price-card > p:not(.eyebrow) { color:#c2c3c5; }
.service-price-grid--dark .large-price,.service-price-grid--dark .includes b { color:var(--yellow); }
.detailing-note { max-width:820px; margin:27px auto 0; text-align:center; color:#6d6f73; font-size:13px; }
.wash-process { display:grid; grid-template-columns:1.18fr .82fr; gap:25px; margin-top:42px; align-items:stretch; }
.wash-steps { display:grid; grid-template-columns:1fr 1fr; gap:13px; }
.wash-steps article { display:grid; grid-template-columns:39px 1fr; gap:13px; padding:21px; border:1px solid #e2e2e2; border-radius:13px; }
.wash-steps span { width:31px; height:31px; display:grid; place-items:center; border-radius:50%; background:var(--yellow); color:#121212; font-size:12px; font-weight:900; }
.wash-steps h3 { font-size:16px; margin:0 0 3px; }
.wash-steps p { margin:0; color:#5c5e62; font-size:13px; line-height:1.48; }
.wash-price-card { display:flex; flex-direction:column; border-radius:15px; padding:31px; background:linear-gradient(145deg,#191b1d,#0e1011); color:#fff; }
.wash-price-card h3 { margin:0 0 9px; font-size:29px; line-height:1; letter-spacing:-.05em; }
.wash-price-card p:not(.eyebrow) { color:#c8c9cb; font-size:15px; }
.wash-price-card .large-price { color:var(--yellow); margin-top:auto; }
.wash-price-card .btn { margin-top:18px; }

.gallery-caption .project-price { display:block; margin-top:5px; color:#fff; font-size:11px; line-height:1.35; font-weight:800; }
.modal-price { display:block; color:var(--yellow); font-size:13px; font-weight:900; margin-bottom:8px; }
.price-category-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.price-category { border:1px solid #e2e2e2; border-radius:15px; padding:25px; background:#fff; color:#171717; box-shadow:0 16px 33px rgba(0,0,0,.06); }
.price-category h3 { margin:0 0 8px; font-size:23px; line-height:1.05; letter-spacing:-.04em; }
.price-list--light .price-line { border-bottom-color:#e5e5e5; }
.price-list--light .price-line span:first-child { color:#4e5055; }
.price-list--light .price-line span:last-child { color:#141414; }
.price-project-cta { margin-top:28px; padding:30px; border-radius:15px; background:#141618; color:#fff; display:flex; align-items:center; justify-content:space-between; gap:28px; }
.price-project-cta h2 { margin:0 0 7px; font-size:27px; letter-spacing:-.04em; }
.price-project-cta p:not(.eyebrow) { margin:0; max-width:670px; color:#c2c3c5; font-size:14px; }

@media (max-width:1050px) { .wrap-method-grid,.price-category-grid,.material-utility-grid { grid-template-columns:repeat(2,1fr); } .material-utility-card--yellow { grid-column:1/-1; } }
@media (max-width:780px) { .wrap-method-grid,.method-columns,.partial-wrap-layout,.tint-options--cars,.tint-options--films,.service-price-grid--3,.wash-process,.wash-steps,.material-utility-grid,.price-category-grid { grid-template-columns:1fr; } .wrap-method-card--wide,.material-utility-card--yellow { grid-column:auto; } .wrap-method-card { padding:26px; } .wrap-method-card h3 { font-size:31px; } .tint-picker { padding:21px; } .tint-summary,.tint-safety-callout,.price-project-cta { align-items:flex-start; flex-direction:column; } .tint-summary .btn,.tint-safety-callout .btn,.price-project-cta .btn { width:100%; } .wash-price-card { min-height:280px; } }


/* Update – rozsah celopolepu */
.full-wrap-scope { display:grid; grid-template-columns:1fr auto; gap:36px; align-items:center; margin-top:19px; padding:29px 32px; border-radius:16px; border:1px solid #2a2d30; background:linear-gradient(135deg,#17191b,#0b0c0d); color:#fff; }
.full-wrap-scope h3 { margin:0 0 7px; color:#fff; font-size:26px; letter-spacing:-.045em; }
.full-wrap-scope p:not(.eyebrow) { margin:0; max-width:780px; color:#c8cacd; font-size:14px; }
.scope-price { display:flex; flex-direction:column; align-items:flex-end; text-align:right; min-width:255px; }
.scope-price span { color:#d1d2d4; font-size:12px; line-height:1.35; }
.scope-price strong { margin:3px 0; color:var(--yellow); font-size:38px; line-height:1; letter-spacing:-.06em; }
.scope-price small { max-width:310px; color:#a7aaad; font-size:11px; line-height:1.45; }
@media (max-width:780px) { .full-wrap-scope { display:flex; flex-direction:column; align-items:flex-start; } .scope-price { align-items:flex-start; text-align:left; min-width:0; } }


/* Update – orientační doby realizace, PPF precuty a matná PPF */
.service-duration { display:inline-flex; align-items:center; gap:7px; margin-top:2px; color:#111; font-size:11px; line-height:1.35; font-weight:800; }
.service-duration::before { content:"◷"; width:20px; height:20px; display:grid; place-items:center; border-radius:50%; background:#fff0a6; color:#675300; font-size:12px; }
.install-time { display:inline-flex; align-items:center; gap:8px; margin-top:17px; padding:8px 11px; border-radius:8px; background:rgba(243,196,0,.14); color:#6e5800; font-size:12px; line-height:1.35; font-weight:800; }
.install-time::before { content:"◷"; color:#141414; width:22px; height:22px; display:grid; place-items:center; background:var(--yellow); border-radius:50%; font-size:13px; }
.section--dark .install-time, .wrap-method-card--dark .install-time { color:#ffe67a; background:rgba(243,196,0,.14); }
.duration-strip { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:36px; }
.duration-card { border:1px solid #e2e2e2; background:#fff; border-radius:14px; padding:20px; color:#171717; box-shadow:0 12px 28px rgba(0,0,0,.06); }
.duration-card .duration-label { display:block; margin-bottom:5px; color:#7d6500; text-transform:uppercase; letter-spacing:.12em; font-size:10px; font-weight:900; }
.duration-card b { display:block; font-size:18px; line-height:1.12; letter-spacing:-.03em; }
.duration-card p { margin:7px 0 0; color:#5e6065; font-size:12px; line-height:1.48; }
.precut-grid { display:grid; grid-template-columns:.88fr 1.12fr; gap:24px; align-items:stretch; }
.precut-lead { border-radius:17px; padding:35px; color:#fff; background:linear-gradient(145deg,#1a1d20,#08090a); border:1px solid rgba(255,255,255,.12); }
.precut-lead h2 { margin:0 0 12px; color:#fff; font-size:38px; line-height:1; letter-spacing:-.055em; }
.precut-lead h2 .accent { color:var(--yellow); }
.precut-lead p:not(.eyebrow) { margin:0; color:#c7c9cb; font-size:15px; }
.precut-benefits { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.precut-benefit { border:1px solid #e1e1e1; border-radius:14px; padding:22px; background:#fff; color:#171717; }
.precut-benefit .precut-mark { display:grid; place-items:center; width:34px; height:34px; border-radius:50%; color:#171717; background:var(--yellow); font-weight:900; margin-bottom:15px; }
.precut-benefit h3 { margin:0 0 7px; color:#171717; font-size:18px; letter-spacing:-.03em; }
.precut-benefit p { margin:0; color:#5d5f63; font-size:13px; line-height:1.52; }
.precut-note { grid-column:1/-1; margin:0; padding:14px 18px; border-radius:10px; background:#fff6cf; color:#544400; font-size:12px; line-height:1.5; }
.matte-ppf-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:26px; align-items:stretch; }
.matte-ppf-card { padding:35px; border-radius:17px; color:#fff; background:linear-gradient(135deg,#25282b,#0c0d0e); border:1px solid rgba(255,255,255,.13); }
.matte-ppf-card h2 { margin:0 0 12px; color:#fff; font-size:37px; line-height:1; letter-spacing:-.055em; }
.matte-ppf-card h2 .accent { color:var(--yellow); }
.matte-ppf-card p:not(.eyebrow) { color:#c9cbce; max-width:740px; font-size:15px; }
.matte-ppf-list { list-style:none; padding:0; margin:22px 0 0; display:grid; gap:11px; }
.matte-ppf-list li { display:flex; gap:11px; color:#e2e3e5; font-size:14px; }
.matte-ppf-list li::before { content:"✓"; display:grid; place-items:center; width:19px; height:19px; flex:0 0 19px; margin-top:1px; border-radius:50%; background:var(--yellow); color:#191919; font-weight:900; font-size:11px; }
.matte-ppf-aside { padding:32px; border-radius:17px; color:#171717; background:var(--yellow); }
.matte-ppf-aside h3 { margin:0 0 12px; font-size:25px; line-height:1; letter-spacing:-.045em; }
.matte-ppf-aside p { margin:0 0 13px; color:#3e3300; font-size:14px; }
.matte-ppf-aside small { color:#584900; line-height:1.48; font-size:12px; }
.price-line--with-time { align-items:flex-start; gap:16px; }
.price-line--with-time > span:first-child { display:flex; flex-direction:column; gap:3px; }
.price-time { color:#7a6500; font-size:10px; text-transform:uppercase; letter-spacing:.08em; font-weight:900; }
.section--dark .price-time { color:#f4cf2d; }
.method-time { display:inline-flex; align-items:center; gap:8px; margin:16px 0 0; padding:8px 10px; border-radius:8px; background:#f5e7a7; color:#5e4a00; font-size:12px; font-weight:900; }
.wrap-method-card--dark .method-time { background:rgba(243,196,0,.15); color:#ffe77b; }
@media (max-width:900px) { .precut-grid,.matte-ppf-grid { grid-template-columns:1fr; } .duration-strip { grid-template-columns:1fr; } }
@media (max-width:620px) { .precut-benefits { grid-template-columns:1fr; } .precut-lead,.matte-ppf-card,.matte-ppf-aside { padding:26px; } .precut-lead h2,.matte-ppf-card h2 { font-size:31px; } }


/* Update – designové polepy / externí katalog */
.design-wrap-panel { display:grid; grid-template-columns:1.15fr .85fr; gap:24px; align-items:stretch; }
.design-wrap-copy { padding:36px; border:1px solid #e2e2e2; border-radius:17px; background:#fff; color:#171717; box-shadow:0 16px 34px rgba(0,0,0,.06); }
.design-wrap-copy h2 { margin:0 0 15px; font-size:37px; line-height:1; letter-spacing:-.055em; }
.design-wrap-copy h2 .accent { color:#aa8700; }
.design-wrap-copy p:not(.eyebrow) { max-width:760px; color:#5e6065; font-size:15px; }
.design-wrap-copy p:last-child { margin-bottom:0; font-size:13px; }
.design-wrap-note { display:flex; flex-direction:column; padding:34px; border-radius:17px; background:linear-gradient(145deg,#191b1d,#0b0c0d); color:#fff; border:1px solid rgba(255,255,255,.13); }
.design-wrap-note h3 { margin:0 0 10px; color:#fff; font-size:28px; line-height:1.02; letter-spacing:-.045em; }
.design-wrap-note p:not(.eyebrow) { color:#c7c9cc; font-size:14px; }
.design-wrap-note .btn { margin-top:auto; align-self:flex-start; }
.design-wrap-note small { display:block; margin-top:16px; color:#aeb1b4; font-size:11px; line-height:1.5; }
@media (max-width:900px) { .design-wrap-panel { grid-template-columns:1fr; } }
@media (max-width:620px) { .design-wrap-copy,.design-wrap-note { padding:26px; } .design-wrap-copy h2 { font-size:31px; } .design-wrap-note .btn { width:100%; text-align:center; } }
