:root {
  --ink: #263126;
  --muted: #657062;
  --sage: #71866a;
  --sage-dark: #3f553f;
  --sage-soft: #e3ebde;
  --cream: #fbf7ef;
  --warm: #f3e7d7;
  --clay: #bd765b;
  --clay-dark: #8f4f3e;
  --white: #fffdf8;
  --line: rgba(38, 49, 38, .15);
  --shadow: 0 18px 48px rgba(38, 49, 38, .10);
  --max: 1160px;
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
body.lang-pl .lang-en-content,
body.lang-en .lang-pl-content { display: none !important; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--sage-dark); }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid rgba(113, 134, 106, .35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 100;
  background: var(--sage-dark);
  color: white;
  padding: .7rem 1rem;
  border-radius: 999px;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}
.narrow { max-width: 900px; }
.section { padding: 88px 0; }
.muted-band {
  background: #f5efe4;
  border-block: 1px solid rgba(38, 49, 38, .08);
}
.stack { display: grid; gap: 18px; align-content: start; }
.hero-copy, .stack, .card, .form-card, .article-body { min-width: 0; }
.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}
.grid-3, .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 247, 239, .94);
  border-bottom: 1px solid rgba(38, 49, 38, .1);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  min-width: max-content;
}
.brand img { width: 44px; height: 44px; }
.brand small {
  display: block;
  color: var(--muted);
  font-size: .76rem;
  text-transform: uppercase;
  font-weight: 700;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}
.nav a, .lang-btn, .nav-toggle {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}
.nav a, .lang-btn {
  border-radius: 999px;
  padding: .58rem .78rem;
}
.nav a:hover, .nav a[aria-current="page"], .lang-btn.active {
  background: var(--sage-soft);
  color: var(--sage-dark);
}
.nav .nav-cta {
  background: var(--ink);
  color: white;
  padding-inline: 1rem;
}
.nav .nav-cta:hover { background: var(--sage-dark); color: white; }
.lang-switch {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, .75);
}
.lang-btn { font-size: .88rem; padding: .38rem .62rem; }
.nav-toggle { display: none; align-items: center; gap: 8px; }
.nav-toggle-mark { display: grid; gap: 4px; }
.nav-toggle-mark span {
  width: 19px;
  height: 2px;
  background: var(--ink);
  display: block;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 650;
}
h1 { font-size: 4.2rem; max-width: 960px; }
h2 { font-size: 2.8rem; }
h3 { font-size: 1.35rem; }
p { margin: 0; color: var(--muted); }
.lead {
  font-size: 1.2rem;
  color: #4c594c;
  max-width: 780px;
}
.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--clay-dark);
  background: rgba(189, 118, 91, .12);
  border: 1px solid rgba(189, 118, 91, .18);
  padding: .42rem .72rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--clay);
  border-radius: 50%;
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251, 247, 239, .99) 0%, rgba(251, 247, 239, .96) 44%, rgba(227, 235, 222, .86) 72%, rgba(189, 118, 91, .16) 100%),
    #f6efe4;
  border-bottom: 1px solid rgba(38, 49, 38, .08);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(251, 247, 239, .98) 0%, rgba(251, 247, 239, .86) 45%, rgba(251, 247, 239, .2) 72%, rgba(251, 247, 239, 0) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(251, 247, 239, 0), var(--cream));
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .78fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100svh - 78px);
}
.hero-copy {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 16px;
  max-width: 780px;
  padding: 34px 0 64px;
}
.hero h1 {
  max-width: 820px;
  font-size: 3.85rem;
}
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .78rem 1.08rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--sage-dark);
  color: white;
  box-shadow: 0 12px 24px rgba(63, 85, 63, .18);
}
.btn-primary:hover { color: white; background: #304430; }
.btn-secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}
.btn-secondary:hover { color: var(--ink); box-shadow: var(--shadow); }
.btn-terra {
  background: var(--clay);
  color: white;
}
.btn-terra:hover { color: white; background: var(--clay-dark); }
.hero-portrait {
  position: absolute;
  z-index: 1;
  right: -62px;
  bottom: -78px;
  width: min(760px, 58%);
  height: calc(100% + 110px);
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  pointer-events: none;
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  max-width: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: right bottom;
  border-radius: 0;
  filter: drop-shadow(0 34px 42px rgba(38, 49, 38, .18));
}
.hero-portrait figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 34px;
}
.section-head p { max-width: 560px; }
.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--warm);
  border: 1px solid var(--line);
}
.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.portrait-small img {
  aspect-ratio: 4 / 5;
  object-position: center top;
}
.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mini-list span {
  background: var(--sage-soft);
  color: var(--sage-dark);
  border-radius: 999px;
  padding: .42rem .72rem;
  font-weight: 800;
  font-size: .92rem;
}
.card {
  background: rgba(255, 253, 248, .82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}
.card h3 { margin-bottom: 10px; }
.icon-badge {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background: var(--sage-soft);
  color: var(--sage-dark);
  font-weight: 900;
}
.testimonial {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial p {
  color: #3c473c;
  font-weight: 700;
}
.placeholder-label {
  width: fit-content;
  border-radius: 999px;
  padding: .3rem .58rem;
  background: rgba(189, 118, 91, .12);
  color: var(--clay-dark);
  font-size: .78rem;
  font-weight: 850;
}
.book-panel {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
  padding: 30px;
}
.book-panel p { color: rgba(255, 255, 255, .76); }
.book-panel img {
  width: min(100%, 220px);
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 36px rgba(0, 0, 0, .25);
}
.book-panel .eyebrow {
  background: rgba(255, 255, 255, .12);
  color: #f7d5c4;
}

.form-split { align-items: start; }
.booking-note {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { color: var(--ink); font-weight: 850; }
.optional { color: var(--muted); font-size: .86rem; font-weight: 650; }
input, textarea, select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdfa;
  color: var(--ink);
  padding: .78rem .86rem;
}
textarea { min-height: 132px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(113, 134, 106, .16);
  outline: none;
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 650;
}
.checkbox input { width: auto; min-height: auto; margin-top: .35rem; }
.form-actions { align-items: start; }
.form-status { color: var(--sage-dark); font-weight: 800; }

.card-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--sage-dark);
  font-size: .82rem;
  font-weight: 850;
}
.card-kicker span:first-child {
  background: var(--sage-soft);
  border-radius: 999px;
  padding: .28rem .56rem;
}
.blog-card {
  min-height: 312px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.blog-card .read-more {
  margin-top: auto;
  color: var(--sage-dark);
  font-weight: 900;
}

.page-hero { padding: 78px 0 44px; }
.book-layout {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.2fr);
  gap: 54px;
  align-items: center;
}
.book-cover-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.book-cover-card img {
  width: min(100%, 420px);
  aspect-ratio: 2 / 3;
  object-fit: cover;
  margin-inline: auto;
  border-radius: var(--radius);
}
.author-section {
  padding-top: 36px;
}
.author-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, .74fr);
  gap: 52px;
  align-items: center;
}
.author-photo {
  justify-self: end;
  width: min(100%, 430px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}
.author-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: calc(var(--radius) - 6px);
}
.info-list {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}
.info-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.info-list span { color: var(--muted); font-weight: 800; }
.feature-list {
  display: grid;
  gap: 14px;
}
.feature-list div, .side-box, .article-cta, .disclaimer, .cta-band {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.final-cta { padding-top: 40px; }

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  gap: 42px;
  align-items: start;
}
.article-body {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 42px;
}
.article-body h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  margin: 34px 0 12px;
}
.article-body h2:first-child { margin-top: 0; }
.article-body p { font-size: 1.04rem; }
.article-meta { font-size: .94rem; }
.back-link {
  color: var(--sage-dark);
  font-weight: 850;
}
.disclaimer {
  margin-top: 32px;
  border-left: 4px solid var(--clay);
  box-shadow: none;
}
.article-cta {
  margin-top: 24px;
  display: grid;
  gap: 14px;
  background: #f5efe4;
  box-shadow: none;
}
.article-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
}
.related-list {
  margin: 10px 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}
.related-list li + li { margin-top: 8px; }
.related-list a { text-decoration: underline; text-underline-offset: 3px; }

.site-footer {
  background: var(--ink);
  color: white;
  padding: 54px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .9fr;
  gap: 34px;
  align-items: start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-brand img { width: 42px; height: 42px; }
.site-footer p, .site-footer a, .site-footer li { color: rgba(255, 255, 255, .72); }
.site-footer a:hover { color: white; }
.footer-links {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 36px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, .66);
  font-size: .92rem;
}

@media (max-width: 980px) {
  h1 { font-size: 3.25rem; }
  .hero h1 { font-size: 3.35rem; }
  h2 { font-size: 2.35rem; }
  .hero-inner, .split, .book-layout, .author-layout, .article-layout {
    grid-template-columns: 1fr;
  }
  .author-photo {
    justify-self: start;
  }
  .grid-3, .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .article-aside { position: static; }
}

@media (max-width: 760px) {
  .container, .header-inner { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 64px 0; }
  .page-hero { padding: 56px 0 28px; }
  .header-inner {
    min-height: 70px;
    flex-wrap: wrap;
  }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav {
    display: none;
    width: 100%;
    align-items: stretch;
    justify-content: start;
    padding-bottom: 14px;
  }
  .nav.is-open { display: grid; grid-template-columns: 1fr 1fr; }
  .nav a, .lang-switch { width: 100%; justify-content: center; }
  h1 { font-size: 2.25rem; }
  .hero h1 { font-size: 2rem; }
  h2 { font-size: 2rem; }
  .hero {
    min-height: auto;
  }
  .hero::before {
    background: linear-gradient(180deg, rgba(251, 247, 239, .98) 0%, rgba(251, 247, 239, .9) 48%, rgba(251, 247, 239, .24) 76%, rgba(251, 247, 239, 0) 100%);
  }
  .hero::after { height: 14%; }
  .hero-inner {
    min-height: auto;
    display: grid;
  }
  .hero-copy {
    padding: 54px 0 18px;
    max-width: 350px;
  }
  .hero-portrait {
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: center;
    width: min(100%, 460px);
    height: 540px;
    margin: -10px auto -22px;
  }
  .hero-portrait img {
    object-position: center bottom;
  }
  .grid-3, .blog-grid, .form-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-head, .cta-band, .book-panel {
    display: grid;
  }
  .book-panel { grid-template-columns: 1fr; }
  .form-card, .article-body { padding: 22px; }
  .footer-bottom { display: grid; }
}


/* Testimonials demo cards and detail pages */
.testimonial-grid { align-items: stretch; }
.testimonial-card {
  min-height: 100%;
  justify-content: flex-start;
  gap: 18px;
  overflow: hidden;
}
.testimonial-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-photo-frame {
  flex: 0 0 98px;
  width: 98px;
  height: 98px;
  padding: 6px;
  border: 1px solid rgba(113, 134, 106, .24);
  border-radius: 50%;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(113, 134, 106, .38), rgba(189, 118, 91, .35)) border-box;
  box-shadow: 0 14px 28px rgba(38, 49, 38, .12);
}
.testimonial-photo-frame img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: var(--testimonial-object-position, center);
}
.testimonial-card-meta {
  display: grid;
  gap: 5px;
  min-width: 0;
}
.testimonial-card-meta h3 { margin: 0; }
.testimonial-card-meta p {
  color: var(--muted);
  font-size: .94rem;
  font-weight: 700;
}
.testimonial-tag {
  width: fit-content;
  border-radius: 999px;
  padding: .28rem .58rem;
  background: var(--sage-soft);
  color: var(--sage-dark);
  font-size: .78rem;
  font-weight: 850;
}
.testimonial-format { font-size: .88rem !important; }
.testimonial-preview {
  display: grid;
  gap: 10px;
}
.testimonial-preview p {
  color: #3c473c;
  font-size: 1rem;
  font-weight: 700;
}
.testimonial-read-more {
  margin-top: auto;
  color: var(--sage-dark);
  font-weight: 900;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 800;
}
.breadcrumb a {
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.testimonial-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 54px;
  align-items: center;
}
.testimonial-hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.testimonial-hero-meta div {
  display: grid;
  gap: 2px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.testimonial-hero-meta span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 850;
}
.testimonial-hero-photo-card {
  width: min(100%, 360px);
  justify-self: end;
  padding: 12px;
  border: 1px solid rgba(113, 134, 106, .2);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 253, 248, .95), rgba(227, 235, 222, .78));
  box-shadow: var(--shadow);
}
.testimonial-hero-photo-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: var(--testimonial-object-position, center);
  border: 1px solid rgba(38, 49, 38, .1);
}
.testimonial-story-section { padding-top: 44px; }
.testimonial-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 900px);
}
.testimonial-story {
  display: grid;
  gap: 24px;
}
.testimonial-quote-block {
  display: grid;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}
.testimonial-quote-block p {
  color: #3c473c;
  font-size: 1.05rem;
}
.testimonial-quote-block p + p { margin-top: 16px; }
.testimonial-section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.testimonial-detail-card {
  box-shadow: none;
  background: rgba(255, 253, 248, .9);
}
.testimonial-detail-card h2 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}
.testimonial-detail-card p {
  color: var(--muted);
  font-weight: 650;
}
.testimonial-footnote {
  padding: 16px 18px;
  background: rgba(189, 118, 91, .1);
  border: 1px solid rgba(189, 118, 91, .18);
  border-radius: var(--radius);
  color: var(--clay-dark);
  font-size: .94rem;
  font-weight: 800;
}
.testimonial-actions { justify-content: space-between; }
@media (max-width: 980px) {
  .testimonial-hero-grid { grid-template-columns: 1fr; }
  .testimonial-section-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonial-hero-photo-card { justify-self: start; }
}
@media (max-width: 760px) {
  .testimonial-card-top { align-items: flex-start; }
  .testimonial-photo-frame { flex-basis: 84px; width: 84px; height: 84px; }
  .testimonial-hero-meta, .testimonial-section-grid { grid-template-columns: 1fr; }
  .testimonial-quote-block { padding: 24px; }
}
