/* =============================================
   1. RESET & CUSTOM PROPERTIES
   ============================================= */
:root {
  --bg: #ffffff;
  --bg-soft: #ffffff;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #131110;
  --text-inv: #f3f2f0;
  --muted: #6a6059;
  --muted-light: #a89e96;
  --line: rgba(19, 17, 16, 0.08);
  --line-strong: rgba(19, 17, 16, 0.16);
  --accent: #6a4f3a;
  --accent-deep: #181412;
  --accent-warm: #8c6e58;
  --dark-surface: #0e0c0b;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow: 0 16px 52px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 32px 80px rgba(0, 0, 0, 0.14);
  --radius: 24px;
  --radius-sm: 14px;
  --content: 1180px;

  /* Wabi-Sabi extensions */
  --ink: #0a0908;
  --paper: #ffffff;
  --enso-stroke: rgba(19, 17, 16, 0.07);
  --grain-opacity: 0.032;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* =============================================
   2. BASE
   ============================================= */
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #ffffff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Organic grain texture  Wabi-Sabi depth layer */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
  mix-blend-mode: multiply;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  line-height: 1.78;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.025em;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

/* =============================================
   3. LAYOUT
   ============================================= */
.site-shell {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
}

/* =============================================
   4. ANIMATIONS
   ============================================= */

/* Header: CSS animation (zawsze widoczny od razu) */
.site-header {
  opacity: 0;
  animation: reveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

@keyframes reveal {
  to { opacity: 1; transform: none; }
}

/* Scroll-triggered: [data-anim] via IntersectionObserver */
[data-anim] {
  opacity: 0;
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-anim="up"]    { transform: translateY(36px); }
[data-anim="left"]  { transform: translateX(-48px); }
[data-anim="right"] { transform: translateX(48px); }
[data-anim="scale"] { transform: scale(0.96); }

[data-anim].is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* =============================================
   5. HEADER / NAV
   ============================================= */
.site-header {
  position: sticky;
  top: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 1.25rem 0 1.25rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(150px, 18vw, 160px);
  flex-shrink: 0;
  color: var(--text);
  line-height: 0;
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 0;
  opacity: 1;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}

.site-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.22rem;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* =============================================
   5b. NAV DROPDOWN
   ============================================= */
.nav-has-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s ease;
}

.nav-dropdown-toggle:hover {
  color: var(--text);
}

.nav-chevron {
  font-style: normal;
  font-size: 0.6rem;
  display: inline-block;
  transition: transform 0.2s ease;
  margin-top: 0.05em;
}

.nav-has-dropdown:hover .nav-chevron,
.nav-has-dropdown.is-open .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 0.4rem 0;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s 0.2s;
  z-index: 200;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown a {
  display: block;
  padding: 0.6rem 1.25rem;
  white-space: nowrap;
  color: var(--muted);
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-dropdown a::after {
  display: none;
}

.nav-dropdown a:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.03);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  margin: 5px 0;
  background: var(--text);
  transition: transform 0.22s ease, opacity 0.22s ease;
  border-radius: 1px;
}

/* =============================================
   6. SECTIONS
   ============================================= */
.section {
  padding: 5rem 0;
}

/* =============================================
   7. HERO
   ============================================= */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  align-items: center;
  min-height: calc(100vh - 10rem);
}

.hero h1 {
  font-size: clamp(3.4rem, 7.5vw, 6.6rem);
  max-width: 12ch;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.lead,
.section-intro {
  max-width: 56ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.82;
}

.hero-copy {
  display: grid;
  gap: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

/* Hero visual  kształt taki sam jak portret w "O mnie" */
.hero-visual {
  position: relative;
}

.hero-visual-logo {
  position: absolute;
  bottom: 2rem;
  left: -6rem;
  width: clamp(160px, 20vw, 240px);
  height: auto;
  opacity: 0.9;
  pointer-events: none;
}

.hero-visual img:first-child {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* =============================================
   8. EYEBROW / KICKER
   ============================================= */
.eyebrow,
.card-kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
}

/* =============================================
   9. SECTION HEADINGS
   ============================================= */
.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 4.5rem;
}

.section-heading h2,
.o-mnie-copy h2,
.om-body-text h2,
.feature-copy h2,
.contact-card h2,
.detail-copy h1,
.simple-page h1 {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
}

/* =============================================
   10. CARD PANEL (shared surface)
   ============================================= */
.card-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(158deg, rgba(255, 252, 246, 0.96), rgba(248, 240, 226, 0.88));
  box-shadow: var(--shadow);
}

/* =============================================
   11. O MNIE (about)
   ============================================= */
.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

/* New: O mnie with portrait */
.o-mnie-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 6rem;
  align-items: center;
}

.o-mnie-portrait {
  position: relative;
}

.o-mnie-portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.o-mnie-copy {
  display: grid;
  gap: 1.4rem;
}

.o-mnie-copy .flow p {
  font-size: 1.05rem;
  line-height: 1.82;
  color: var(--muted);
}

.section-copy {
  display: grid;
  gap: 1rem;
}

.flow {
  display: grid;
  gap: 1.1rem;
}

/* =============================================
   12. PRAKTYKA CISZY
   ============================================= */
.praktyka-list {
  display: grid;
  gap: 5rem;
  margin-top: 1rem;
}

.praktyka-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.praktyka-item--flip .praktyka-visual { order: 2; }
.praktyka-item--flip .praktyka-copy   { order: 1; }

.praktyka-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 15%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.praktyka-visual:hover img {
  transform: scale(1.02);
}

.praktyka-copy {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.praktyka-copy h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0.25rem 0 0.5rem;
}

.art-highlight,
.detail-visual {
  padding: 2rem;
}

.art-highlight h3 {
  font-size: 2rem;
  margin: 0.4rem 0 0.85rem;
  line-height: 1.08;
}

.feature-list {
  color: var(--muted);
  display: grid;
  gap: 0.5rem;
  margin-top: 0.8rem;
  font-size: 0.93rem;
}

.edition-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(24, 20, 18, 0.24);
  background: rgba(24, 20, 18, 0.08);
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.5);
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.card-cta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 1.5rem;
}


/* =============================================
   13. BUTTONS
   ============================================= */
.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2.85rem;
  padding: 0.78rem 1.35rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.22s ease,
    color 0.22s ease,
    box-shadow 0.24s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent-deep);
  color: #fff9f2;
}

.button-primary:hover {
  background: var(--accent);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.52);
  color: var(--text);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.85);
}

.text-link {
  padding: 0.75rem 1.25rem;
  min-height: 2.75rem;
  background: rgba(77, 46, 18, 0.07);
  border: 1px solid rgba(77, 46, 18, 0.18);
  border-radius: 999px;
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}

/* =============================================
   14. FEATURE BAND (book)
   ============================================= */
.feature-band,
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.feature-band.feature-band--visual-wide {
  grid-template-columns: 1fr 2fr;
}

.feature-copy {
  display: grid;
  gap: 1.2rem;
}

.feature-visual {
  /* container for book visuals */
}

.book-cover {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}

/* =============================================
   15. ART MASONRY (homepage)
   ============================================= */
.art-masonry {
  columns: 3;
  column-gap: 0.85rem;
}

.art-masonry-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  break-inside: avoid;
  margin-bottom: 0.85rem;
  cursor: pointer;
  isolation: isolate;
  will-change: transform;
}

.art-masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.art-masonry-item:hover img {
  transform: scale(1.04);
}

.art-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1rem 0.9rem;
  background: linear-gradient(to top, rgba(28, 19, 12, 0.65) 0%, transparent 100%);
  opacity: 0;
  will-change: opacity;
  transition: opacity 0.28s ease;
}

.art-masonry-item:hover .art-overlay {
  opacity: 1;
}

.art-overlay span {
  color: rgba(246, 240, 230, 0.92);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

/* =============================================
   16. CONTACT
   ============================================= */
.contact-band {
  padding-bottom: 5rem;
}

.contact-card {
  padding: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  background: var(--bg-soft);
  color: var(--text);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.contact-card-body {
  display: grid;
  gap: 1.3rem;
  flex: 1;
}

.contact-card-logo {
  flex-shrink: 0;
}

.contact-card-logo img {
  width: clamp(260px, 28vw, 380px);
  height: auto;
  opacity: 0.85;
}

.contact-card .eyebrow {
  color: var(--accent);
}

.contact-card h2 {
  color: var(--text);
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.contact-card > p {
  color: var(--muted);
  max-width: 52ch;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2.5rem;
  align-items: center;
  color: var(--muted-light);
  margin-top: 0.25rem;
}

.contact-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(35, 26, 18, 0.2);
  transition: text-decoration-color 0.2s ease;
}

.contact-links a:hover {
  text-decoration-color: var(--accent-warm);
}

/* =============================================
   17. FOOTER
   ============================================= */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted-light);
  font-size: 0.88rem;
}

.footer-note {
  color: var(--muted-light);
  font-weight: 500;
  font-size: 0.88rem;
  white-space: nowrap;
}

.footer-right {
  display: grid;
  gap: 0.6rem;
  text-align: right;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.1rem;
  justify-content: flex-end;
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-credit {
  font-size: 0.88rem;
  color: var(--muted-light);
}

.footer-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.footer-credit a:hover {
  opacity: 1;
}

/* =============================================
   18. PRODUCT PAGE (obraz.html)
   ============================================= */

/* Breadcrumb */
.breadcrumb {
  display: inline-block;
  margin: 0.5rem 0 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
}

.breadcrumb:hover {
  color: var(--text);
}

/* Layout */
.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
  padding-bottom: 5rem;
}

/* Gallery */
.product-gallery {
  display: grid;
  gap: 0.85rem;
  position: sticky;
  top: 6rem;
}

.product-main-wrap {
  overflow: hidden;
  border-radius: var(--radius);
}

.product-main-img {
  width: 100%;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-main-wrap:hover .product-main-img {
  transform: scale(1.02);
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.product-thumb {
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.product-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.product-thumb:not(.is-active) {
  opacity: 0.55;
}

.product-thumb.is-active {
  border-color: var(--accent);
}

.product-thumb:hover {
  opacity: 1;
}

/* Info */
.product-info {
  display: grid;
  gap: 1.1rem;
  align-content: start;
  padding-top: 0.5rem;
}

.product-info h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.product-tagline {
  color: var(--muted);
  font-style: italic;
  font-size: 1rem;
  margin-top: -0.4rem;
}

/* Spec table */
.product-spec {
  display: grid;
  gap: 0;
  margin: 0.5rem 0;
}

.product-spec-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.product-spec-row dt {
  color: var(--muted);
  font-weight: 500;
}

.product-spec-row dd {
  margin: 0;
  color: var(--text);
}

/* Purchase box */
.product-purchase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 0.25rem;
}

.product-purchase-info .purchase-label {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.product-purchase-info .purchase-price {
  display: block;
  margin-top: 0.2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}

/* Legacy - keep for ksiazka.html */
.art-product-visual,
.book-page-visual {
  display: grid;
  gap: 1rem;
}

.hero-visual img,
.detail-visual img,
.product-card img {
  width: 100%;
  object-fit: cover;
}

.purchase-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 20px;
  padding: 1.15rem 1.3rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.purchase-label {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.purchase-price {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.1rem;
  color: var(--accent-deep);
  font-weight: 700;
}

.detail-copy {
  display: grid;
  gap: 1.2rem;
  max-width: 44rem;
  align-content: start;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.detail-meta span {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
}

/* =============================================
   19. COLLECTION PAGE (obrazy.html)
   ============================================= */
.collection-hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  max-width: 14ch;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-card {
  display: grid;
  gap: 1.2rem;
  padding: 1.25rem;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-card img {
  aspect-ratio: 0.9 / 1;
  border-radius: calc(var(--radius) - 8px);
  object-fit: cover;
}

.product-card h2 {
  font-size: 2rem;
  line-height: 1.08;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--muted);
}

.product-meta span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.87rem;
}

/* =============================================
   20. LEGAL / SIMPLE PAGES
   ============================================= */
.simple-page {
  width: min(calc(100% - 2rem), 780px);
  margin: 0 auto;
  padding: 5rem 0;
}

.legal-page {
  display: grid;
  gap: 1rem;
}

.legal-intro {
  color: var(--muted-light);
  font-size: 0.88rem;
  margin-top: 0.25rem;
}

.legal-page h2 {
  font-size: 1.9rem;
  margin-top: 1.75rem;
}

.legal-page h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: -0.25rem;
}

.legal-page a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page ul {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
}

.center-page {
  min-height: 100vh;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 1.5rem;
}

/* =============================================
   19b. GALLERY PAGE (obrazy.html)
   ============================================= */

.gallery-hero {
  padding-bottom: 0.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.gallery-hero-copy {
  display: grid;
  gap: 1rem;
  max-width: 48rem;
}

.gallery-hero-maz img {
  height: auto;
  flex-shrink: 0;
}

.gallery-hero-logo-svg {
  width: clamp(300px, 36vw, 480px);
  height: auto;
  opacity: 1;
  display: block;
}

.gallery-hero-zn {
  width: 288px;
  height: 66px;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: 100px;
  opacity: 0.8;
}

.gallery-hero-copy h1 {
  font-size: clamp(3.6rem, 8vw, 7rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

/* Grid */
.collection-grid-section {
  padding-top: 1.5rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

/* Artwork card */
.artwork-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: #ffffff;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.artwork-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.artwork-card-img {
  display: block;
  position: relative;
  overflow: hidden;
}

.artwork-card-img img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.artwork-card:hover .artwork-card-img img {
  transform: scale(1.04);
}

.artwork-card-img--nomatch img {
  aspect-ratio: 3 / 4;
  object-position: center;
}

.artwork-card-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--accent-deep);
  color: #fff9f2;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.artwork-card-badge--muted {
  background: rgba(28, 19, 12, 0.55);
}

.artwork-card-body {
  padding: 1.4rem;
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.artwork-card-body h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.07;
  margin: 0.15rem 0 0;
}

/* Dimensions table */
.artwork-dims {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.75rem;
  row-gap: 0.3rem;
  font-size: 0.82rem;
  line-height: 1.5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0;
  margin: 0.2rem 0;
}

.dims-label {
  color: var(--muted-light);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.artwork-card-footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.artwork-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}



/* Hero */
.gallery-hero {
  padding-bottom: 1rem;
}

.gallery-hero-copy {
  display: grid;
  gap: 1.2rem;
  max-width: 56rem;
}

.gallery-hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

/* Featured work */
.gallery-featured {
  padding-top: 1rem;
}

.gallery-featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}

.gallery-featured-visual {
  position: relative;
}

.gallery-featured-img-link {
  display: block;
  overflow: hidden;
}

.gallery-featured-img-link img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-featured-img-link:hover img {
  transform: scale(1.03);
}

.gallery-featured-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--accent-deep);
  color: #fff9f2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}

.gallery-featured-copy {
  padding: 3rem 3rem 3rem 3.5rem;
  display: grid;
  gap: 1rem;
  align-content: center;
}

.gallery-featured-copy h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.03;
}

.gallery-featured-copy > p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.78;
}

.gallery-featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gallery-featured-meta span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.gallery-price-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--line);
}

.gallery-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}

/* Secondary cards grid */
.gallery-grid-section {
  padding-top: 3rem;
}

.gallery-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.gallery-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-card-img-wrap {
  overflow: hidden;
}

.gallery-card-img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-card:hover .gallery-card-img-wrap img {
  transform: scale(1.04);
}

.gallery-card-body {
  padding: 2rem;
}

.gallery-card-body h3 {
  font-size: clamp(1.75rem, 2.5vw, 2.4rem);
  margin: 0.3rem 0 0.1rem;
}

/* CTA band */
.gallery-cta-band {
  padding-top: 2rem;
}

.gallery-cta-inner {
  padding: 4rem 3.5rem;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: var(--text);
  display: grid;
  gap: 1.2rem;
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
  place-items: center;
}

.gallery-cta-inner .eyebrow {
  color: var(--accent);
}

.gallery-cta-inner h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: var(--text);
}

.gallery-cta-inner > p {
  color: var(--muted);
  max-width: 44ch;
  line-height: 1.78;
}

/* RWD for gallery page  added to tablet media query below */

/* =============================================
   20b. BOOK PAGE  price text variant
   ============================================= */
.book-price-text {
  font-size: 1.75rem;
  letter-spacing: -0.01em;
}

/* =============================================
   21. CONTACT PAGE (kontakt.html)
   ============================================= */
.contact-page-hero {
  padding-bottom: 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  align-items: center;
}

.contact-page-hero-inner {
  display: grid;
  gap: 1.2rem;
}

.contact-page-hero-visual img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.contact-page-hero-inner h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
  padding-top: 2.5rem;
}

/* Form card */
.contact-form-wrap {
  padding: 2.5rem;
}

.contact-form-heading {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 0.25rem;
  margin-top: 0.5rem;
}

/* Form elements */
.contact-form {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(124, 78, 40, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a6756' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option {
  color: var(--text);
}

.form-submit {
  justify-self: start;
  margin-top: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
}

/* Contact info column */
.contact-page-info {
  position: sticky;
  top: 6rem;
}

.contact-info-block {
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem;
  border-radius: var(--radius);
  background: var(--bg-soft);
  color: var(--text);
}

.contact-info-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.contact-info-block .eyebrow {
  color: var(--accent);
}

.contact-info-logo {
  width: min(280px, 100%);
  height: auto;
  display: block;
}

.contact-info-lead {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.78;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.4rem;
}

.contact-info-list li {
  display: grid;
  gap: 0.2rem;
}

.contact-info-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-info-value {
  font-size: 0.97rem;
  color: var(--text);
}

.contact-info-value[href] {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(35, 26, 18, 0.2);
  transition: text-decoration-color 0.2s ease;
}

.contact-info-value[href]:hover {
  text-decoration-color: var(--accent-warm);
}

.contact-info-offers {
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}

.contact-info-offers-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 0.75rem;
}

.contact-topics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.contact-topics li {
  font-size: 0.93rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
}

.contact-topics li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--accent-warm);
}

/* =============================================
   UI/UX Pro Max  Wabi-Sabi Layer
   Style: Japanese Minimalism
   Palette: Warm Ink + Organic Parchment
   ============================================= */

/* Hero: enso (Zen brush circle) background */
.hero {
  position: relative;
  overflow: visible;
}

.hero-enso {
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translateY(-50%);
  width: min(640px, 75vw);
  height: min(640px, 75vw);
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

/* Ink-brush section divider */
.ink-divider {
  display: block;
  width: 288px;
  height: 66px;
  max-width: 100%;
  margin: 4rem auto 4rem;
  object-fit: contain;
}

/* Quieter section gap  more Ma (negative space) */
@media (min-width: 981px) {
  .section {
    padding: 6rem 0;
  }

  .hero {
    min-height: calc(100svh - 14rem);
  }
}

/* =============================================
   22. RWD  TABLET (≤ 980px)
   ============================================= */
@media (max-width: 980px) {
  .contact-page-layout {
    grid-template-columns: 1fr;
  }

  .contact-page-info {
    position: static;
  }

  .gallery-featured-inner {
    grid-template-columns: 1fr;
  }

  .gallery-featured-copy {
    padding: 2.5rem;
  }

  .gallery-featured-img-link img {
    aspect-ratio: 3 / 2;
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero,
  .two-column,
  .o-mnie-layout,
  .feature-band,
  .art-layout,
  .detail-layout,
  .site-footer,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .hero { gap: 2.5rem; }
  .o-mnie-layout { gap: 2rem; }
  .feature-band { gap: 2rem; }

  .o-mnie-portrait img {
    aspect-ratio: 4 / 3;
    object-position: center 20%;
    border-radius: var(--radius);
  }

  .praktyka-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .praktyka-item--flip .praktyka-visual,
  .praktyka-item--flip .praktyka-copy {
    order: unset;
  }

  .praktyka-visual img {
    aspect-ratio: 3 / 2;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .footer-right {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .site-header {
    border-radius: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  /* Dropdown  mobile */
  .nav-has-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--line);
    border-radius: 0;
    padding: 0.25rem 0 0.25rem 1rem;
    margin-top: 0.4rem;
    background: transparent;
    display: none;
    opacity: 1;
    visibility: visible;
  }

  .nav-has-dropdown.is-open .nav-dropdown {
    display: block;
  }

  .nav-has-dropdown:hover .nav-dropdown {
    transform: none;
  }

  .site-nav.is-open,
  .site-nav.is-static {
    display: flex;
  }
}

/* =============================================
   22. RWD  MOBILE (≤ 720px)
   ============================================= */
@media (max-width: 720px) {
  .site-shell {
    width: min(calc(100% - 1.25rem), var(--content));
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    min-height: auto;
    padding-top: 0.5rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .art-masonry {
    columns: 1;
  }

  .art-masonry {
    columns: 2;
  }

  .art-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .mini-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-gallery {
    position: static;
  }

  .product-purchase {
    flex-direction: column;
    align-items: flex-start;
  }

  .purchase-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-card {
    padding: 2rem 1.5rem;
  }

  .contact-card h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .section-heading h2,
  .o-mnie-copy h2,
  .feature-copy h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .contact-page-hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-page-hero-visual img {
    aspect-ratio: 4 / 3;
    object-position: center 20%;
  }

  .contact-page-hero-inner h1 {
    font-size: clamp(2.6rem, 10vw, 4rem);
  }

  .gallery-cards {
    grid-template-columns: 1fr;
  }

  .gallery-cta-inner {
    padding: 2.5rem 1.75rem;
  }

  .gallery-hero-copy h1 {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 1.75rem 1.5rem;
  }

  .contact-info-block {
    padding: 2rem 1.5rem;
  }
}

/* =============================================
   BOOK SLIDER
   ============================================= */

.book-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 3rem;
}

.book-slider-viewport {
  flex: 1;
  overflow: hidden;
  padding: 3rem 0;
  margin: -3rem 0;
}

.book-slider {
  display: flex;
  overflow: visible;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.book-slide {
  flex: 0 0 100%;
}

.section-heading--center {
  text-align: center;
}

.book-slide img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  cursor: zoom-in;
  transition: opacity 0.2s ease;
}

.book-slide img:hover {
  opacity: 0.92;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 9, 8, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
  padding: 2rem;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  display: block;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.book-slider-btn {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.book-slider-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.book-slider-btn:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

.book-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.book-slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted-light);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.book-slider-dot.is-active {
  background: var(--accent);
  transform: scale(1.4);
}

/* Wartość książki – eleganckie akapity */
.book-scene-img {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  height: 60vh;
}

.book-scene-parallax {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  display: block;
  will-change: transform;
  transform: translateY(0);
}

.book-value-overlap {
  background: #fff;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: -4rem;
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.book-value-text {
  max-width: 56ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--text);
  text-align: center;
}

.book-value-text p {
  margin: 0 0 1.5rem;
}

.book-value-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .book-slider-btn {
    display: none;
  }

  .book-slide {
    width: min(480px, 92vw);
  }
}
