/* Paw Studio — design system CSS (self-hosted, no external CDN) */

@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/instrument-serif-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/instrument-serif-italic-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+1E00-1E9F, U+2020;
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/instrument-serif-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/instrument-serif-normal-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+1E00-1E9F, U+2020;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+1E00-1E9F, U+2020;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/jetbrains-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/jetbrains-mono-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+1E00-1E9F, U+2020;
}

:root {
  --bg: #FBF6EF;
  --bg-alt: #F6EFE5;
  --dark: #2A2320;
  --dark-2: #3A302B;
  --dark-3: #453A33;
  --text: #2A2320;
  --text-muted: #5E5249;
  --text-muted-2: #6E6259;
  --text-light: #8A7A6C;
  --text-light-2: #9C8973;
  --accent: #C2643E;
  --accent-dark: #9E4C2B;
  --accent-light: #E0A882;
  --border: #E8DDD0;
  --border-light: #EDE2D5;
  --border-input: #DFD1C0;
  --cream: #F3E7D9;
  --tan: #EFE3D4;
  --tan-2: #E7D8C6;
  --tan-3: #F1E7DA;
  --tan-4: #E9DCCC;
  --tan-text: #7A5A44;
  --row-alt: #FCFAF6;
  --green-bg: #EAF0E7;
  --green-border: #CBDCC5;
  --green-text: #42513F;
  --green-icon: #6E8F6B;
  --footer-muted: #C8B8A8;
  --footer-border: #3E332D;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --container: 1240px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); text-decoration: underline; }
input, textarea, select, button { font-family: inherit; }
h1, h2, h3, p, ul, ol, dl, figure { margin: 0; }
ul { padding: 0; list-style: none; }
button { border: none; background: none; cursor: pointer; }

@keyframes pawfloat { 0% { transform: translateY(0); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0); } }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--dark); color: var(--bg); padding: 12px 18px; border-radius: 10px; font-weight: 600;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--dark); color: var(--cream); font-size: 13px; letter-spacing: .02em;
  padding: 9px 24px; display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; text-align: center;
}
.topbar .sep { opacity: .4; }
.topbar a { color: var(--cream); }
.topbar a:hover { color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(251,246,239,0.94); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { padding: 16px 24px; display: flex; align-items: center; gap: 32px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center; color: var(--bg);
  font-family: var(--font-serif); font-size: 20px; flex-shrink: 0;
}
.brand-text { line-height: 1; }
.brand-name { font-family: var(--font-serif); font-size: 24px; letter-spacing: .01em; }
.brand-sub { font-family: var(--font-mono); font-size: 9px; letter-spacing: .22em; color: var(--text-light); margin-top: 3px; white-space: nowrap; }

.main-nav { display: flex; gap: 22px; margin-left: auto; flex-wrap: wrap; font-size: 15px; font-weight: 500; color: #4A403A; }
.main-nav a { color: #4A403A; }
.main-nav a:hover, .main-nav a.is-active { color: var(--accent); text-decoration: none; }

.header-actions { display: flex; align-items: center; gap: 12px; margin-left: 12px; }
.cart-btn {
  position: relative; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border-input);
  display: flex; align-items: center; justify-content: center; font-size: 18px; background: transparent; cursor: pointer;
}
.cart-btn:hover { border-color: var(--accent); }
.cart-count {
  position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; border-radius: 10px;
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; padding: 0 5px;
}
.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border-input);
  align-items: center; justify-content: center; cursor: pointer; flex-direction: column; gap: 4px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  cursor: pointer; border-radius: var(--radius-sm); padding: 16px 28px; font-weight: 600; font-size: 16px;
  border: 1px solid transparent; transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover { text-decoration: none; }
.btn-sm { padding: 12px 20px; font-size: 14px; border-radius: 12px; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); color: #fff; }
.btn-dark { background: var(--dark); color: var(--bg); }
.btn-dark:hover { background: var(--accent); color: #fff; }
.btn-outline { border-color: var(--border-input); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--dark); color: var(--text); }
.btn-outline-light { border-color: rgba(255,255,255,0.6); color: #fff; background: transparent; }
.btn-outline-light:hover { border-color: #fff; color: #fff; }
.btn-white { background: #fff; color: var(--dark); }
.btn-white:hover { background: #fff; opacity: .92; color: var(--dark); }
.btn-tan { background: var(--tan); color: var(--tan-text); }
.btn-tan:hover { background: var(--accent); color: #fff; }
.btn-block { display: flex; width: 100%; }

/* ---------- Sections & typography ---------- */
.section { padding: 80px 24px; }
.section-tight { padding: 64px 24px; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .22em; color: var(--accent); margin-bottom: 14px; text-transform: uppercase;
}
.eyebrow-light { color: var(--accent-light); }
h1, .h1 { font-family: var(--font-serif); font-weight: 400; font-size: 56px; line-height: 1.05; margin: 0 0 16px; text-wrap: pretty; }
h2, .h2 { font-family: var(--font-serif); font-weight: 400; font-size: 44px; margin: 0; text-wrap: pretty; }
h3, .h3 { font-family: var(--font-serif); font-weight: 400; font-size: 24px; margin: 0; }
.lede { font-size: 17px; line-height: 1.7; color: var(--text-muted); max-width: 720px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 38px; flex-wrap: wrap; }
.section-head .more { font-weight: 600; color: var(--accent); white-space: nowrap; }
.prose { font-size: 16px; line-height: 1.8; color: #4A403A; display: flex; flex-direction: column; gap: 26px; }
.prose h2 { font-size: 26px; margin: 0 0 8px; }
.prose p { margin: 0; }
.page-lede-block { padding: 64px 24px 40px; }

/* ---------- Grid helpers ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Hero ---------- */
.hero { padding: 64px 24px 40px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--tan); color: var(--tan-text);
  padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; margin-bottom: 22px;
}
.hero h1 { font-size: 64px; letter-spacing: -.01em; }
.hero-lede { font-size: 18px; line-height: 1.65; color: var(--text-muted); margin: 0 0 30px; max-width: 520px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stats .num { font-family: var(--font-serif); font-size: 32px; }
.hero-stats .label { font-size: 13px; color: var(--text-light); }
.hero-media { position: relative; }
.photo {
  border-radius: var(--radius-xl); overflow: hidden; height: 520px; background: var(--tan);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute; bottom: -22px; left: -24px; background: #fff; border-radius: 18px; padding: 18px 22px;
  box-shadow: 0 18px 40px rgba(42,35,32,.12); display: flex; gap: 14px; align-items: center; max-width: calc(100% - 20px);
}
.hero-float-card .check {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green-icon); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.hero-float-card .title { font-weight: 700; font-size: 15px; }
.hero-float-card .sub { font-size: 13px; color: var(--text-light); }

/* ---------- Feature strip ---------- */
.feature-strip {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-alt);
}
.feature-strip .container { padding: 26px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; font-size: 14px; color: var(--text-muted); }
.feature-item { display: flex; gap: 10px; align-items: center; }
.feature-item .ic { font-size: 20px; }

/* ---------- Cards ---------- */
.card { background: #fff; border-radius: 20px; padding: 26px; border: 1px solid var(--border-light); }
.card-flush { background: #fff; border-radius: 20px; border: 1px solid var(--border-light); overflow: hidden; }
.service-icon { font-size: 28px; margin-bottom: 14px; }
.card h3 { margin: 0 0 10px; font-size: 24px; }
.card-text { font-size: 14px; line-height: 1.6; color: var(--text-muted-2); margin: 0 0 14px; }
.card-price { font-weight: 700; font-size: 15px; }

.product-card { display: flex; flex-direction: column; }
.product-thumb { height: 170px; position: relative; overflow: hidden; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb .tag {
  position: absolute; top: 12px; left: 12px; background: #fff; border-radius: 999px; padding: 5px 11px;
  font-size: 11px; font-weight: 600; color: var(--tan-text);
}
.product-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-name { font-weight: 600; font-size: 15px; margin-bottom: 6px; }
.product-desc { font-size: 13px; color: var(--text-light); margin-bottom: 14px; line-height: 1.5; }
.product-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-foot .price { font-weight: 700; }
.add-btn { cursor: pointer; background: var(--tan); color: var(--tan-text); padding: 9px 14px; border-radius: 10px; font-size: 13px; font-weight: 600; }
.add-btn:hover { background: var(--accent); color: #fff; }

.testimonial-card { background: #fff; border-radius: 20px; padding: 28px; border: 1px solid var(--border-light); }
.stars { color: var(--accent); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-quote { font-size: 15px; line-height: 1.7; color: #4A403A; margin: 0 0 18px; }
.testimonial-name { font-weight: 600; font-size: 14px; }
.testimonial-meta { font-size: 13px; color: var(--text-light); }

.team-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid var(--border-light); }
.team-photo { height: 230px; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-body { padding: 24px; }
.team-name { font-family: var(--font-serif); font-size: 24px; }
.team-role { font-size: 13px; color: var(--accent); font-weight: 600; margin: 6px 0 10px; }
.team-bio { font-size: 14px; line-height: 1.65; color: var(--text-muted-2); margin: 0; }

.blog-card { background: #fff; border: 1px solid var(--border-light); border-radius: 20px; overflow: hidden; }
.blog-thumb { height: 180px; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 24px; }
.blog-date { font-size: 12px; color: var(--text-light); margin-bottom: 10px; }
.blog-body h3 { font-size: 24px; margin: 0 0 10px; }
.blog-body p { font-size: 14px; line-height: 1.65; color: var(--text-muted-2); margin: 0 0 14px; }
.blog-link { font-weight: 600; color: var(--accent); font-size: 14px; }

.blog-feature { background: #fff; border: 1px solid var(--border-light); border-radius: 24px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 26px; }
.blog-feature-media { min-height: 320px; overflow: hidden; }
.blog-feature-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-feature-body { padding: 44px; }
.blog-feature-body h2 { font-size: 34px; margin: 0 0 14px; }
.blog-feature-body p { font-size: 15px; line-height: 1.7; color: var(--text-muted-2); margin: 0 0 18px; }

/* ---------- How it works ---------- */
.steps-section { background: var(--dark); color: var(--cream); }
.steps-section .container { padding: 78px 24px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.steps-photo { border-radius: var(--radius-lg); height: 380px; overflow: hidden; background: var(--dark-2); }
.steps-photo img { width: 100%; height: 100%; object-fit: cover; }
.steps-list { display: flex; flex-direction: column; gap: 22px; }
.step { display: flex; gap: 18px; }
.step-num { font-family: var(--font-serif); font-size: 28px; color: var(--accent-light); min-width: 38px; }
.step-title { font-weight: 700; margin-bottom: 5px; }
.step-text { font-size: 14px; line-height: 1.6; color: var(--footer-muted); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--accent); border-radius: var(--radius-xl); padding: 56px; display: grid;
  grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; color: #fff;
}
.cta-banner h2 { font-size: 42px; margin: 0 0 14px; color: #fff; }
.cta-banner p { font-size: 16px; line-height: 1.65; margin: 0; opacity: .92; max-width: 560px; }
.cta-actions { display: flex; gap: 14px; justify-content: flex-end; flex-wrap: wrap; }

/* ---------- Pricing table ---------- */
.price-table { background: #fff; border: 1px solid var(--border-light); border-radius: 22px; overflow: hidden; }
.price-table-scroll { overflow-x: auto; }
.price-row {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; padding: 18px 24px; border-bottom: 1px solid #F0E7DB; font-size: 15px; min-width: 560px;
}
.price-row:last-child { border-bottom: none; }
.price-row.alt { background: var(--row-alt); }
.price-row.head { background: var(--dark); color: var(--cream); font-size: 13px; font-weight: 700; padding: 16px 24px; }
.price-row .svc { font-weight: 600; }
.price-note { font-size: 13px; color: var(--text-light); margin-top: 14px; }
.plan-card { background: var(--bg-alt); border-radius: 20px; padding: 28px; }
.plan-card .plan-title { font-family: var(--font-serif); font-size: 26px; margin-bottom: 10px; }
.plan-card p { font-size: 14px; line-height: 1.65; color: var(--text-muted-2); margin: 0 0 14px; }
.plan-card .plan-value { font-weight: 700; font-size: 18px; }

/* ---------- Info tiles (shop shipping/returns/payment) ---------- */
.info-tile { border: 1px solid var(--border-light); border-radius: 18px; padding: 24px; background: #fff; }
.info-tile .title { font-weight: 700; margin-bottom: 8px; }
.info-tile .text { font-size: 14px; color: var(--text-muted-2); line-height: 1.6; }

/* ---------- Values list ---------- */
.value-item { border-left: 3px solid var(--accent); padding: 6px 0 6px 20px; }
.value-item .title { font-weight: 700; margin-bottom: 6px; }
.value-item .text { font-size: 15px; line-height: 1.65; color: var(--text-muted-2); }

/* ---------- Service detail cards (storitve page) ---------- */
.svc-detail { background: #fff; border: 1px solid var(--border-light); border-radius: 22px; overflow: hidden; }
.svc-detail-media { height: 190px; overflow: hidden; }
.svc-detail-media img { width: 100%; height: 100%; object-fit: cover; }
.svc-detail-body { padding: 30px; }
.svc-detail-body h2 { font-size: 30px; margin: 0 0 12px; }
.svc-detail-body p.desc { font-size: 15px; line-height: 1.7; color: var(--text-muted-2); margin: 0 0 16px; }
.svc-detail-list { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: #4A403A; margin-bottom: 18px; }
.svc-detail-price { font-weight: 700; font-size: 17px; }
.svc-note { background: var(--bg-alt); border-radius: 14px; padding: 16px; font-size: 14px; color: #4A403A; line-height: 1.6; }
.svc-plain { background: #fff; border: 1px solid var(--border-light); border-radius: 22px; padding: 30px; }
.extra-tile { background: #fff; border-radius: 16px; padding: 22px; border: 1px solid var(--border-light); }
.extra-tile .title { font-weight: 700; margin-bottom: 6px; }
.extra-tile .sub { font-size: 14px; color: var(--text-light); margin-bottom: 10px; }
.extra-tile .price { font-weight: 700; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 18px; }
.gallery-item { border-radius: 20px; overflow: hidden; position: relative; background: var(--tan); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item .cap {
  position: absolute; left: 12px; bottom: 12px; background: rgba(42,35,32,.72); color: #F3E7D9;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; padding: 6px 10px; border-radius: 8px;
}
.gallery-span-2 { grid-column: span 2; }
.gallery-span-2r { grid-row: span 2; }

/* ---------- FAQ ---------- */
.faq-item { background: #fff; border: 1px solid var(--border-light); border-radius: 16px; padding: 20px 24px; }
.faq-item summary { cursor: pointer; font-weight: 600; font-size: 16px; }
.faq-item summary::-webkit-details-marker { color: var(--accent); }
.faq-item p { font-size: 15px; line-height: 1.7; color: var(--text-muted-2); margin: 14px 0 0; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 7px; font-size: 14px; font-weight: 600; }
.field input, .field select, .field textarea {
  border: 1px solid var(--border-input); border-radius: 12px; padding: 13px 15px; font-size: 15px; background: #fff; color: var(--text); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.field textarea { resize: vertical; }
.field-span-2 { grid-column: span 2; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkbox-field { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--text-muted-2); line-height: 1.6; font-weight: 400; }
.checkbox-field input { margin-top: 3px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.success-box { background: var(--green-bg); border: 1px solid var(--green-border); border-radius: 18px; padding: 28px; }
.success-box .title { font-family: var(--font-serif); font-size: 26px; margin-bottom: 8px; }
.success-box p { font-size: 15px; line-height: 1.7; color: var(--green-text); margin: 0 0 16px; }
.success-inline { background: var(--green-bg); border: 1px solid var(--green-border); border-radius: 12px; padding: 16px; font-size: 14px; color: var(--green-text); }
.error-box { background: #FBEAE7; border: 1px solid #E9C3BA; border-radius: 12px; padding: 16px; font-size: 14px; color: #8A3D2A; }
.stacked-form { display: flex; flex-direction: column; gap: 14px; }

/* ---------- Contact / info blocks ---------- */
.info-rows { display: flex; flex-direction: column; gap: 20px; font-size: 16px; line-height: 1.6; }
.info-rows .k { font-weight: 700; margin-bottom: 4px; }
.info-rows .v { color: var(--text-muted); }
.map-embed { border-radius: var(--radius-lg); height: 100%; min-height: 400px; overflow: hidden; background: var(--tan); }
.map-embed iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }

/* ---------- Booking sidebar ---------- */
.hours-card { background: var(--dark); color: var(--cream); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 22px; }
.hours-card .title { font-family: var(--font-serif); font-size: 28px; margin-bottom: 18px; }
.hours-row { display: flex; justify-content: space-between; font-size: 15px; }
.hours-row.muted { opacity: .6; }
.hours-rows { display: flex; flex-direction: column; gap: 10px; }
.hours-foot { border-top: 1px solid var(--footer-border); margin: 20px 0 0; padding-top: 20px; font-size: 14px; line-height: 1.7; color: var(--footer-muted); }
.policy-card { background: var(--bg-alt); border-radius: var(--radius-lg); padding: 32px; }
.policy-card .title { font-family: var(--font-serif); font-size: 24px; margin-bottom: 14px; }
.policy-card p { font-size: 14px; line-height: 1.7; color: var(--text-muted-2); margin: 0; }

/* ---------- Legal tables (podatki, piskotki) ---------- */
.data-table { background: #fff; border: 1px solid var(--border-light); border-radius: 20px; overflow: hidden; font-size: 15px; }
.data-row { display: grid; grid-template-columns: 1fr 1.4fr; padding: 16px 22px; border-bottom: 1px solid #F0E7DB; }
.data-row:last-child { border-bottom: none; }
.data-row.alt { background: var(--row-alt); }
.data-row .k { color: var(--text-light); }
.data-row .v { font-weight: 600; }

.cookie-table { background: #fff; border: 1px solid var(--border-light); border-radius: 20px; overflow: hidden; }
.cookie-table-scroll { overflow-x: auto; }
.cookie-row { display: grid; grid-template-columns: 1fr 1fr 1.6fr .8fr; padding: 14px 20px; border-bottom: 1px solid #F0E7DB; font-size: 14px; min-width: 640px; }
.cookie-row:last-child { border-bottom: none; }
.cookie-row.alt { background: var(--row-alt); }
.cookie-row.head { background: var(--dark); color: var(--cream); font-size: 13px; font-weight: 700; padding: 14px 20px; }

/* ---------- Checkout confirmation ---------- */
.confirm-wrap { max-width: 820px; margin: 0 auto; padding: 90px 24px 110px; text-align: center; }
.confirm-icon {
  width: 76px; height: 76px; border-radius: 50%; background: var(--green-icon); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 34px; margin: 0 auto 24px;
}
.confirm-wrap h1 { font-size: 46px; }
.confirm-wrap p { font-size: 17px; line-height: 1.7; color: var(--text-muted); margin: 0 0 12px; }
.confirm-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: var(--footer-muted); margin-top: auto; }
.footer-grid { padding: 64px 24px 30px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; }
.footer-brand { font-family: var(--font-serif); font-size: 28px; color: var(--cream); margin-bottom: 12px; }
.footer-desc { font-size: 14px; line-height: 1.7; margin: 0 0 18px; }
.footer-addr { font-size: 13px; line-height: 1.8; }
.footer-col-title { color: var(--cream); font-weight: 700; font-size: 14px; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; font-size: 14px; }
.footer-links a { color: var(--footer-muted); }
.footer-links a:hover { color: var(--accent-light); text-decoration: none; }
.footer-bottom { border-top: 1px solid var(--footer-border); }
.footer-bottom .container { padding: 20px 24px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; }
.footer-bottom a { color: var(--accent-light); }

/* ---------- Cart drawer ---------- */
.cart-overlay { position: fixed; inset: 0; z-index: 60; display: none; justify-content: flex-end; }
.cart-overlay.is-open { display: flex; }
.cart-backdrop { position: absolute; inset: 0; background: rgba(42,35,32,.45); border: 0; cursor: pointer; }
.cart-panel {
  position: relative; width: 430px; max-width: 100%; background: var(--bg); height: 100%;
  display: flex; flex-direction: column; box-shadow: -20px 0 60px rgba(0,0,0,.2);
}
.cart-head { padding: 24px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-head .title { font-family: var(--font-serif); font-size: 26px; }
.cart-close { cursor: pointer; font-size: 22px; color: var(--text-light); background: none; border: 0; line-height: 1; }
.cart-body { flex: 1; overflow: auto; padding: 20px 24px; }
.cart-empty { text-align: center; padding: 60px 10px; color: var(--text-light); }
.cart-empty .ic { font-size: 36px; margin-bottom: 14px; }
.cart-line { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border-light); }
.cart-line-thumb { width: 64px; height: 64px; border-radius: 12px; background: var(--tan-3); flex-shrink: 0; overflow: hidden; }
.cart-line-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-info { flex: 1; }
.cart-line-name { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.cart-line-price { font-size: 13px; color: var(--text-light); margin-bottom: 8px; }
.qty-row { display: flex; align-items: center; gap: 10px; }
.qty-btn { cursor: pointer; width: 26px; height: 26px; border-radius: 8px; border: 1px solid var(--border-input); display: flex; align-items: center; justify-content: center; background: #fff; }
.qty-val { font-size: 14px; font-weight: 600; min-width: 18px; text-align: center; }
.remove-link { cursor: pointer; margin-left: auto; font-size: 12px; color: #A98F7A; background: none; border: 0; }
.cart-line-total { font-weight: 700; font-size: 14px; }
.cart-foot { padding: 22px 24px; border-top: 1px solid var(--border); background: var(--bg-alt); }
.cart-sum-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-muted-2); margin-bottom: 8px; }
.cart-total-row { display: flex; justify-content: space-between; font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.cart-vat-note { font-size: 12px; color: var(--text-light); margin-bottom: 16px; }
.cart-terms { text-align: center; font-size: 12px; color: var(--text-light); margin-top: 10px; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 24px; bottom: 24px; z-index: 70; max-width: 430px; width: calc(100% - 48px);
  background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 24px;
  box-shadow: 0 22px 60px rgba(42,35,32,.18); display: none;
}
.cookie-banner.is-open { display: block; }
.cookie-banner .title { font-family: var(--font-serif); font-size: 22px; margin-bottom: 8px; }
.cookie-banner p { font-size: 13px; line-height: 1.65; color: var(--text-muted-2); margin: 0 0 16px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 11px 18px; font-size: 13px; border-radius: 11px; }
.cookie-actions .link-btn { cursor: pointer; padding: 11px 8px; font-size: 13px; color: var(--text-light); background: none; border: 0; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.mono-label { font-family: var(--font-mono); font-size: 12px; color: var(--text-light-2); letter-spacing: .1em; }

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header.is-nav-open .main-nav {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg);
    flex-direction: column; padding: 16px 24px 24px; border-bottom: 1px solid var(--border); gap: 14px;
  }
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; }
  .hero h1 { font-size: 44px; }
  .hero-media .photo { height: 340px; }
  .feature-strip .container { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .steps-section .container { grid-template-columns: 1fr; }
  .steps-photo { height: 260px; }
  .cta-banner { grid-template-columns: 1fr; padding: 40px; }
  .cta-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-span-2 { grid-column: span 2; }
  .form-grid { grid-template-columns: 1fr; }
  .field-span-2 { grid-column: span 1; }
  .blog-feature { grid-template-columns: 1fr; }
  .blog-feature-media { min-height: 220px; }
  h1, .h1 { font-size: 42px; }
  h2, .h2 { font-size: 34px; }
}

@media (max-width: 640px) {
  .topbar { font-size: 12px; gap: 14px; padding: 8px 16px; }
  .site-header .container { padding: 14px 16px; gap: 14px; }
  .brand-name { font-size: 20px; }
  .brand-sub { display: none; }
  .header-actions .btn-sm { padding: 10px 14px; font-size: 13px; }
  .section, .section-tight, .page-lede-block { padding: 48px 16px; }
  .hero { padding: 32px 16px 24px; }
  .hero h1 { font-size: 34px; }
  .hero-lede { font-size: 16px; }
  .hero-stats { gap: 22px; }
  .hero-float-card { position: static; margin-top: 16px; }
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .cta-banner h2 { font-size: 30px; }
  .footer-grid { grid-template-columns: 1fr; padding: 44px 16px 24px; gap: 30px; }
  .footer-bottom .container { padding: 16px; flex-direction: column; gap: 8px; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-span-2 { grid-column: span 1; }
  .cart-panel { width: 100%; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; width: auto; max-width: none; }
  h1, .h1 { font-size: 32px; }
  h2, .h2 { font-size: 28px; }
  .price-row.head { display: none; }
  .price-table-scroll, .cookie-table-scroll { -webkit-overflow-scrolling: touch; }
}
