/* ================================================================
   ADRIA PMU STUDIO — kuaounrjvtwayd.shop
   Design tokens ported 1:1 from the Adria PMU Studio design.
   ================================================================ */

:root{
  --bg:#f6f0e9;
  --bg-alt:#efe5d8;
  --bg-alt2:#e8dccd;
  --ink:#2b2622;
  --ink-soft:#3a332d;
  --muted:#5a534c;
  --muted-2:#9a8f82;
  --accent:#8a5a4e;
  --accent-dark:#5f3b32;
  --accent-light:#c9a394;
  --card:#fff;
  --line:#e4d7c8;
  --line-2:#e9ddce;
  --line-3:#d9c9b6;
  --line-4:#c9b6a3;
  --dark:#2b2622;
  --serif:'Cormorant Garamond', Georgia, serif;
  --sans:'Jost', system-ui, -apple-system, Segoe UI, sans-serif;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family:var(--sans);
  color:var(--ink);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
}
img{ display:block; max-width:100%; }
a{ color:var(--accent); text-decoration:none; transition:color .2s; }
a:hover{ color:var(--accent-dark); }
::selection{ background:#d8bfae; }
button{ font-family:inherit; }

.page{ min-height:100vh; display:flex; flex-direction:column; background:var(--bg); }
main{ flex:1; }

.container{ max-width:1200px; margin:0 auto; padding-left:28px; padding-right:28px; }
.container-1100{ max-width:1100px; margin:0 auto; padding-left:28px; padding-right:28px; }
.container-1000{ max-width:1000px; margin:0 auto; padding-left:28px; padding-right:28px; }
.container-900{ max-width:900px; margin:0 auto; padding-left:28px; padding-right:28px; }
.container-820{ max-width:820px; margin:0 auto; padding-left:28px; padding-right:28px; }

.eyebrow{ font-size:12px; letter-spacing:4px; color:var(--accent); margin-bottom:14px; text-transform:uppercase; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-block; cursor:pointer; font-family:inherit; font-size:14px;
  letter-spacing:1px; padding:15px 32px; border-radius:2px; border:1px solid transparent;
  transition:background .2s, color .2s, border-color .2s; text-align:center;
}
.btn-primary{ background:var(--accent); color:#fff; }
.btn-primary:hover{ background:var(--accent-dark); color:#fff; }
.btn-outline{ background:none; color:var(--ink); border-color:var(--line-4); }
.btn-outline:hover{ background:#eaddce; color:var(--ink); }
.btn-dark{ background:var(--dark); color:#fff; font-size:12px; letter-spacing:1px; padding:10px 18px; }
.btn-dark:hover{ background:#000; color:#fff; }
.btn-sm{ padding:14px 34px; }

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:40;
  background:rgba(246,240,233,.92);
  -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  max-width:1200px; margin:0 auto; padding:18px 28px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.brand{ display:block; text-align:left; line-height:1; }
.brand-name{ font-family:var(--serif); font-size:26px; font-weight:600; letter-spacing:3px; color:var(--ink); line-height:1; }
.brand-sub{ font-family:var(--sans); font-size:10px; letter-spacing:5px; color:var(--accent); margin-top:3px; }
.nav{ display:flex; align-items:center; gap:28px; font-size:14px; letter-spacing:1px; }
.nav-link{ background:none; border:none; cursor:pointer; font-family:inherit; font-size:14px; letter-spacing:1px; color:var(--ink); padding:4px 0; position:relative; }
.nav-link:hover{ color:var(--accent); }
.nav-link.active{ color:var(--accent); }
.nav-link.active::after{ content:""; position:absolute; left:0; right:0; bottom:-2px; height:1px; background:var(--accent); }
.btn-cart{
  position:relative; background:var(--accent); color:#fff; border:none; cursor:pointer;
  font-family:inherit; font-size:13px; letter-spacing:1px; padding:9px 18px; border-radius:2px;
  transition:background .2s;
}
.btn-cart:hover{ background:var(--accent-dark); }
.nav-toggle{ display:none; background:none; border:none; cursor:pointer; padding:6px; }
.nav-toggle span{ display:block; width:24px; height:2px; background:var(--ink); margin:5px 0; transition:.25s; }
.mobile-nav{ display:none; }

/* ---------- Hero ---------- */
.hero{
  max-width:1200px; margin:0 auto; padding:70px 28px 40px;
  display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center;
}
.hero h1{ font-family:var(--serif); font-size:62px; font-weight:500; line-height:1.05; color:var(--ink); margin-bottom:24px; }
.hero p{ font-size:17px; line-height:1.7; color:var(--muted); max-width:480px; margin-bottom:34px; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }
.hero-media{ aspect-ratio:4/5; border-radius:3px; overflow:hidden; }
.hero-media img{ width:100%; height:100%; object-fit:cover; }

/* ---------- Stats ---------- */
.stats-band{ background:var(--bg-alt); margin-top:40px; }
.stats{ max-width:1200px; margin:0 auto; padding:56px 28px; display:grid; grid-template-columns:repeat(4,1fr); gap:32px; text-align:center; }
.stat-num{ font-family:var(--serif); font-size:44px; color:var(--accent); line-height:1; }
.stat-label{ font-size:13px; letter-spacing:1px; color:var(--muted); margin-top:6px; }

/* ---------- Section head ---------- */
.section{ max-width:1200px; margin:0 auto; padding:72px 28px; }
.section-head{ text-align:center; margin-bottom:48px; }
.section-head .eyebrow{ margin-bottom:14px; }
.section-head h2{ font-family:var(--serif); font-size:42px; font-weight:500; color:var(--ink); }

/* ---------- Service cards ---------- */
.services-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.card{ background:var(--card); border:1px solid var(--line-2); border-radius:3px; overflow:hidden; display:flex; flex-direction:column; }
.card-media{ overflow:hidden; }
.card-media img{ width:100%; height:100%; object-fit:cover; }
.card-media.ratio-32{ aspect-ratio:3/2; }
.card-body{ padding:26px; display:flex; flex-direction:column; flex:1; }
.card-body h3{ font-family:var(--serif); font-size:26px; margin-bottom:10px; font-weight:500; }
.card-body p{ font-size:14px; line-height:1.65; color:var(--muted); margin-bottom:14px; flex:1; }
.price-tag{ font-size:14px; color:var(--accent); letter-spacing:1px; }
.center-cta{ text-align:center; margin-top:40px; }

/* ---------- Why (dark) ---------- */
.why{ background:var(--dark); color:#f0e7db; }
.why-inner{ max-width:1200px; margin:0 auto; padding:72px 28px; display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.why-media{ aspect-ratio:4/3; border-radius:3px; overflow:hidden; }
.why-media img{ width:100%; height:100%; object-fit:cover; }
.why .eyebrow{ color:var(--accent-light); }
.why h2{ font-family:var(--serif); font-size:40px; font-weight:500; margin-bottom:22px; color:var(--bg); }
.why-list{ list-style:none; display:flex; flex-direction:column; gap:16px; }
.why-list li{ display:flex; gap:12px; font-size:15px; line-height:1.6; color:#d8cdc0; }
.why-list li span{ color:var(--accent-light); }

/* ---------- Testimonials ---------- */
.testimonials{ max-width:1000px; margin:0 auto; padding:72px 28px; text-align:center; }
.testimonials h2{ font-family:var(--serif); font-size:40px; font-weight:500; margin-bottom:44px; }
.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.testi-card{ background:var(--card); border:1px solid var(--line-2); border-radius:3px; padding:28px; text-align:left; }
.stars{ color:var(--accent-light); margin-bottom:12px; letter-spacing:2px; }
.testi-card p{ font-family:var(--serif); font-style:italic; font-size:19px; line-height:1.55; color:var(--ink-soft); margin-bottom:16px; }
.testi-author{ font-size:13px; letter-spacing:1px; color:var(--accent); }

/* ---------- Page hero (inner pages) ---------- */
.page-head{ padding-top:64px; }
.page-head h1{ font-family:var(--serif); font-size:52px; font-weight:500; margin-bottom:20px; }
.lead{ font-size:16px; line-height:1.7; color:var(--muted); max-width:640px; margin-bottom:44px; }

/* ---------- Price list (usluge) ---------- */
.price-list{ display:flex; flex-direction:column; border-top:1px solid var(--line); }
.price-row{ display:flex; justify-content:space-between; align-items:baseline; gap:24px; padding:24px 0; border-bottom:1px solid var(--line); }
.price-row h3{ font-family:var(--serif); font-size:26px; margin-bottom:6px; font-weight:500; }
.price-row p{ font-size:14px; color:var(--muted); line-height:1.6; max-width:520px; }
.price-amount{ font-family:var(--serif); font-size:26px; color:var(--accent); white-space:nowrap; }
.process{ margin-top:56px; background:var(--bg-alt); border-radius:3px; padding:40px; }
.process h2{ font-family:var(--serif); font-size:30px; margin-bottom:20px; font-weight:500; }
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.step-num{ font-family:var(--serif); font-size:32px; color:var(--accent); margin-bottom:8px; }
.step p{ font-size:14px; line-height:1.6; color:var(--muted); }

/* ---------- Shop ---------- */
.shop-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.product-media{ aspect-ratio:1/1; overflow:hidden; background:var(--bg-alt2); }
.product-media img{ width:100%; height:100%; object-fit:cover; }
.product-body{ padding:22px; display:flex; flex-direction:column; flex:1; }
.product-body h3{ font-family:var(--serif); font-size:22px; margin-bottom:8px; font-weight:500; }
.product-body p{ font-size:13px; line-height:1.55; color:var(--muted); margin-bottom:16px; flex:1; }
.product-foot{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
.product-price{ font-family:var(--serif); font-size:24px; color:var(--accent); }

/* ---------- About ---------- */
.about-media{ aspect-ratio:16/7; border-radius:3px; overflow:hidden; margin-bottom:40px; }
.about-media img{ width:100%; height:100%; object-fit:cover; }
.prose p{ font-size:17px; line-height:1.8; color:var(--ink-soft); margin-bottom:22px; }
.values-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:20px; }
.value-card{ background:var(--bg-alt); border-radius:3px; padding:32px; }
.value-card h3{ font-family:var(--serif); font-size:26px; margin-bottom:12px; font-weight:500; }
.value-card p{ font-size:15px; line-height:1.7; color:var(--muted); }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; }
.contact-intro{ font-size:16px; line-height:1.7; color:var(--muted); margin-bottom:32px; }
.info-list{ display:flex; flex-direction:column; gap:22px; }
.info-block .info-label{ font-size:12px; letter-spacing:2px; color:var(--accent); margin-bottom:5px; }
.info-block .info-val{ font-size:16px; color:var(--ink); line-height:1.6; }
.contact-map{ margin-top:28px; aspect-ratio:16/9; border-radius:3px; overflow:hidden; border:1px solid var(--line); }
.contact-map iframe{ width:100%; height:100%; border:0; display:block; }
.form-card{ background:var(--card); border:1px solid var(--line-2); border-radius:3px; padding:36px; }
.form{ display:flex; flex-direction:column; gap:18px; }
.field label{ display:block; font-size:12px; letter-spacing:1px; color:var(--muted); margin-bottom:6px; }
.field input, .field textarea{
  width:100%; padding:12px 14px; border:1px solid var(--line-3); border-radius:2px;
  font-family:inherit; font-size:15px; background:#faf6f0; color:var(--ink);
}
.field textarea{ resize:vertical; }
.field input:focus, .field textarea:focus{ outline:none; border-color:var(--accent); background:#fff; }
.check{ display:flex; gap:10px; align-items:flex-start; font-size:12px; color:var(--muted); line-height:1.5; }
.check input{ margin-top:3px; }
.form-success{ padding:40px 0; text-align:center; }
.form-success .big{ font-family:var(--serif); font-size:30px; color:var(--accent); margin-bottom:12px; }
.form-success p{ font-size:15px; color:var(--muted); line-height:1.6; }

/* ---------- Legal ---------- */
.legal{ max-width:820px; margin:0 auto; padding:64px 28px 80px; }
.back-link{ background:none; border:none; cursor:pointer; font-family:inherit; font-size:13px; color:var(--accent); margin-bottom:24px; padding:0; display:inline-block; }
.legal h1{ font-family:var(--serif); font-size:46px; font-weight:500; margin-bottom:10px; }
.legal .updated{ font-size:13px; color:var(--muted-2); margin-bottom:36px; }
.legal-body{ font-size:15px; line-height:1.8; color:var(--ink-soft); }
.legal-body h2{ font-family:var(--serif); font-size:24px; font-weight:500; margin:28px 0 8px; }
.legal-body p{ margin-bottom:16px; }
.legal-body address{ font-style:normal; margin-bottom:16px; }

/* ---------- Footer ---------- */
.site-footer{ background:var(--dark); color:#c7bcae; margin-top:auto; }
.footer-grid{ max-width:1200px; margin:0 auto; padding:56px 28px 32px; display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; }
.footer-brand-name{ font-family:var(--serif); font-size:24px; font-weight:600; letter-spacing:2px; color:var(--bg); margin-bottom:6px; }
.footer-brand-sub{ font-size:11px; letter-spacing:3px; color:var(--accent-light); margin-bottom:18px; }
.footer-brand p{ font-size:13px; line-height:1.7; color:#a89c8e; max-width:280px; }
.footer-col h4{ font-size:12px; letter-spacing:2px; color:var(--bg); margin-bottom:16px; font-weight:500; }
.footer-links{ display:flex; flex-direction:column; gap:10px; font-size:14px; }
.footer-links a{ color:#c7bcae; }
.footer-links a:hover{ color:var(--bg); }
.footer-contact{ font-size:13px; line-height:1.8; color:#a89c8e; }
.footer-bottom{ border-top:1px solid #3d3630; }
.footer-bottom-inner{ max-width:1200px; margin:0 auto; padding:22px 28px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:12px; color:#8a7f72; }

/* ---------- Cart drawer ---------- */
.cart-root{ position:fixed; inset:0; z-index:60; display:none; }
.cart-root.open{ display:flex; justify-content:flex-end; }
.cart-overlay{ position:absolute; inset:0; background:rgba(43,38,34,.5); }
.cart-drawer{ position:relative; width:420px; max-width:90vw; height:100%; background:var(--bg); box-shadow:-8px 0 40px rgba(0,0,0,.2); display:flex; flex-direction:column; animation:slideIn .28s ease; }
@keyframes slideIn{ from{ transform:translateX(30px); opacity:.6; } to{ transform:translateX(0); opacity:1; } }
.cart-head{ padding:24px 28px; border-bottom:1px solid var(--line); display:flex; justify-content:space-between; align-items:center; }
.cart-head h2{ font-family:var(--serif); font-size:26px; font-weight:500; }
.cart-close{ background:none; border:none; cursor:pointer; font-size:24px; color:var(--accent); line-height:1; }
.cart-items{ flex:1; overflow-y:auto; padding:20px 28px; }
.cart-empty{ text-align:center; padding:60px 0; color:var(--muted-2); font-size:15px; }
.cart-item{ display:flex; gap:14px; padding:16px 0; border-bottom:1px solid var(--line); }
.cart-item-media{ width:64px; height:64px; flex-shrink:0; border-radius:2px; overflow:hidden; background:var(--bg-alt2); }
.cart-item-media img{ width:100%; height:100%; object-fit:cover; }
.cart-item-info{ flex:1; }
.cart-item-name{ font-family:var(--serif); font-size:18px; margin-bottom:4px; }
.cart-item-price{ font-size:13px; color:var(--accent); margin-bottom:8px; }
.qty{ display:flex; align-items:center; gap:10px; }
.qty button{ width:26px; height:26px; border:1px solid var(--line-3); background:#fff; cursor:pointer; border-radius:2px; font-size:15px; color:var(--muted); line-height:1; }
.qty button:hover{ border-color:var(--accent); color:var(--accent); }
.qty .count{ font-size:14px; min-width:20px; text-align:center; }
.cart-remove{ margin-left:auto; background:none; border:none; cursor:pointer; font-size:12px; color:#a2907c; text-decoration:underline; }
.cart-foot{ padding:22px 28px; border-top:1px solid var(--line); background:var(--bg-alt); }
.cart-total{ display:flex; justify-content:space-between; margin-bottom:16px; font-size:16px; align-items:baseline; }
.cart-total .amount{ font-family:var(--serif); font-size:24px; color:var(--accent); }
.cart-checkout{ width:100%; background:var(--accent); color:#fff; border:none; cursor:pointer; font-family:inherit; font-size:14px; letter-spacing:1px; padding:15px; border-radius:2px; transition:background .2s; }
.cart-checkout:hover{ background:var(--accent-dark); }
.cart-note{ font-size:11px; color:var(--muted-2); text-align:center; margin-top:12px; }

/* ---------- Cookie banner ---------- */
.cookie{ position:fixed; bottom:20px; left:20px; right:20px; z-index:70; max-width:560px; margin:0 auto; background:var(--dark); color:#e6ddd0; border-radius:4px; box-shadow:0 12px 40px rgba(0,0,0,.3); padding:24px 26px; display:none; }
.cookie.show{ display:block; }
.cookie h3{ font-family:var(--serif); font-size:20px; margin-bottom:8px; color:var(--bg); font-weight:500; }
.cookie p{ font-size:13px; line-height:1.65; color:#b8ac9d; margin-bottom:18px; }
.cookie p a, .cookie p button{ color:var(--accent-light); text-decoration:underline; background:none; border:none; cursor:pointer; font-family:inherit; font-size:13px; padding:0; }
.cookie-actions{ display:flex; gap:12px; flex-wrap:wrap; }
.cookie-accept{ background:var(--accent-light); color:var(--dark); border:none; cursor:pointer; font-family:inherit; font-size:13px; letter-spacing:1px; padding:11px 22px; border-radius:2px; }
.cookie-accept:hover{ background:#d8b7a8; }
.cookie-decline{ background:none; color:#e6ddd0; border:1px solid #5a534c; cursor:pointer; font-family:inherit; font-size:13px; letter-spacing:1px; padding:11px 22px; border-radius:2px; }
.cookie-decline:hover{ border-color:#8a7f72; }

/* ---------- Toast ---------- */
.toast{ position:fixed; bottom:24px; left:50%; transform:translateX(-50%) translateY(20px); z-index:80; background:var(--dark); color:var(--bg); padding:14px 24px; border-radius:3px; font-size:14px; letter-spacing:.5px; box-shadow:0 8px 30px rgba(0,0,0,.25); opacity:0; pointer-events:none; transition:opacity .25s, transform .25s; }
.toast.show{ opacity:1; transform:translateX(-50%) translateY(0); }

/* ================= RESPONSIVE ================= */
@media (max-width:960px){
  .nav .nav-link{ display:none; }
  .nav-toggle{ display:block; }
  .site-header.menu-open .nav-toggle span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .site-header.menu-open .nav-toggle span:nth-child(2){ opacity:0; }
  .site-header.menu-open .nav-toggle span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
  .mobile-nav{ display:none; border-top:1px solid var(--line); background:rgba(246,240,233,.98); }
  .site-header.menu-open .mobile-nav{ display:block; }
  .mobile-nav a{ display:block; padding:14px 28px; font-size:15px; letter-spacing:1px; color:var(--ink); border-bottom:1px solid var(--line); }
  .mobile-nav a:last-child{ border-bottom:none; }

  .hero{ grid-template-columns:1fr; gap:36px; padding:48px 28px 30px; }
  .hero h1{ font-size:46px; }
  .hero-media{ max-width:440px; }
  .stats{ grid-template-columns:repeat(2,1fr); gap:36px 24px; padding:44px 28px; }
  .services-grid{ grid-template-columns:1fr; max-width:420px; margin:0 auto; }
  .why-inner{ grid-template-columns:1fr; gap:32px; }
  .testi-grid{ grid-template-columns:1fr; }
  .steps{ grid-template-columns:1fr 1fr; }
  .shop-grid{ grid-template-columns:1fr 1fr; }
  .contact-grid{ grid-template-columns:1fr; gap:36px; }
  .values-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; gap:32px; }
  .section-head h2{ font-size:34px; }
  .page-head h1{ font-size:40px; }
}
@media (max-width:560px){
  .container, .container-1100, .container-1000, .container-900, .container-820, .header-inner, .hero, .stats, .section, .why-inner, .testimonials, .footer-grid, .footer-bottom-inner{ padding-left:20px; padding-right:20px; }
  .hero h1{ font-size:38px; }
  .hero p{ font-size:16px; }
  .stats{ grid-template-columns:repeat(2,1fr); }
  .stat-num{ font-size:36px; }
  .shop-grid{ grid-template-columns:1fr; max-width:360px; margin:0 auto; }
  .steps{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .page-head h1, .legal h1{ font-size:34px; }
  .price-row{ flex-direction:column; gap:8px; }
  .btn{ padding:14px 26px; }
  .hero-actions .btn{ flex:1; }
}
