:root {
  --bg: #fbf6ec;
  --paper: #fffdf8;
  --ink: #181512;
  --muted: #6b6258;
  --gold: #a87b27;
  --gold2: #d3aa55;
  --orange: #e87422;
  --line: rgba(168,123,39,.24);
  --shadow: 0 22px 70px rgba(49,33,14,.14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1160px, calc(100% - 36px));
  margin-inline: auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251,246,236,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(168,123,39,.16);
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

.brand-text strong {
  font-family: Georgia, serif;
  font-size: 1.18rem;
  letter-spacing: .18em;
  white-space: nowrap;
}

.brand-text span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
  white-space: nowrap;
}

/* MENU DESKTOP - ważne dla WordPressowego ul/li */

.nav {
  display: flex;
  align-items: center;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav li {
  margin: 0;
  padding: 0;
}

.nav a {
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
  font-weight: 700;
  color: #302923;
  white-space: nowrap;
}

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

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  background: #111;
  color: #fff;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  border: 0;
  background: #111;
  color: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 800;
  cursor: pointer;
}

/* HERO */

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #fff;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  filter: saturate(1.02);
  transform: scale(1.02);
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251,246,236,.96) 0%, rgba(251,246,236,.74) 42%, rgba(251,246,236,.10) 100%),
    linear-gradient(0deg, rgba(251,246,236,1) 0%, rgba(251,246,236,0) 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 145px 0 88px;
  max-width: 700px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .82rem;
}

.kicker:before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

.hero h1 {
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 7vw, 7.2rem);
  letter-spacing: .035em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero p {
  max-width: 640px;
  margin: 24px 0 0;
  font-size: 1.22rem;
  color: #40362f;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .88rem;
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, #c99a43, #8f681d);
  color: #fff !important;
  box-shadow: 0 14px 36px rgba(91,61,18,.22);
  text-align: center;
}

.btn.secondary {
  background: rgba(255,255,255,.82);
  color: var(--gold) !important;
  box-shadow: none;
}

/* SEKCJE */

.section {
  padding: 92px 0;
}

.section.alt {
  background: #fffaf2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-title {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 44px;
}

.eyebrow {
  display: block;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .78rem;
  margin-bottom: 14px;
}

.section-title h2,
.text h2 {
  font-family: Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  color: #2b2118;
}

.section-title p,
.text p {
  color: var(--muted);
  font-size: 1.12rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}

.card {
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card.pad {
  padding: 34px;
}

.photo-stack {
  position: relative;
}

.photo-stack img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.photo-badge {
  position: absolute;
  left: -20px;
  bottom: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 18px;
  box-shadow: 0 14px 40px rgba(49,33,14,.13);
  font-weight: 900;
  color: var(--gold);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 22px;
  text-align: center;
  min-height: 238px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(49,33,14,.12);
}

.ico {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  background: linear-gradient(180deg, #fff, #fff7e6);
  border: 1px solid var(--line);
  font-size: 1.65rem;
}

.benefit h3 {
  font-family: Georgia, serif;
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery img:first-child {
  grid-row: span 2;
}

.offer-box {
  background: linear-gradient(135deg, #1b1714, #30261e);
  color: #fff;
  border-radius: var(--radius);
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.offer-box:after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211,170,85,.34), transparent 68%);
}

.offer-box h2 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  color: #fff;
}

.offer-box p {
  color: rgba(255,255,255,.76);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.step {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(211,170,85,.28);
  border-radius: 20px;
  padding: 22px;
}

.step strong {
  display: block;
  color: var(--gold2);
  font-family: Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 14px;
}

.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.menu-card {
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 42px rgba(49,33,14,.08);
}

.menu-card h3 {
  font-family: Georgia, serif;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.menu-card p {
  color: var(--muted);
}

.final {
  text-align: center;
  background:
    radial-gradient(circle at 20% 0%, rgba(211,170,85,.24), transparent 32%),
    radial-gradient(circle at 85% 30%, rgba(232,116,34,.12), transparent 34%),
    var(--paper);
}

.final h2 {
  font-family: Georgia, serif;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
}

.final p {
  max-width: 760px;
  margin: 18px auto 28px;
  color: var(--muted);
  font-size: 1.15rem;
}

.site-footer {
  padding: 34px 0;
  background: #111;
  color: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inner small {
  color: rgba(255,255,255,.62);
}

.wp-content {
  padding: 80px 0;
  background: #fff;
}

.wp-content h1 {
  font-family: Georgia, serif;
  color: var(--gold);
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.wp-content .entry {
  max-width: 880px;
  margin: auto;
}

/* TABLET / MOBILE */

@media (max-width: 980px) {
  .header-inner {
    height: 86px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    height: 64px;
    border-radius: 18px;
    font-size: 1rem;
  }

  .header-phone {
    display: none;
  }

  .nav {
    display: none;
    position: fixed;
    top: 86px;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fffaf2;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 28px 36px;
    box-shadow: 0 20px 50px rgba(49,33,14,.16);
    max-height: calc(100vh - 86px);
    overflow-y: auto;
  }

  .nav.open {
    display: block;
  }

  .nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav li {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .nav a {
    display: block;
    width: 100%;
    font-size: 1rem;
    letter-spacing: .12em;
  }

  .hero {
    min-height: 660px;
  }

  .hero:before {
    background-position: center top;
  }

  .hero:after {
    background:
      linear-gradient(0deg, rgba(251,246,236,1) 0%, rgba(251,246,236,.88) 52%, rgba(251,246,236,.55) 100%);
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    padding: 125px 0 72px;
  }

  .kicker {
    justify-content: center;
  }

  .kicker:before {
    display: none;
  }

  .cta-row {
    justify-content: center;
  }

  .grid-2,
  .benefits,
  .gallery,
  .steps,
  .menu-cards {
    grid-template-columns: 1fr;
  }

  .gallery img:first-child {
    grid-row: auto;
  }

  .gallery img {
    min-height: auto;
  }

  .photo-badge {
    left: 18px;
    bottom: 18px;
  }
}

/* MAŁE TELEFONY */

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .brand-text strong {
    font-size: .9rem;
    letter-spacing: .11em;
  }

  .brand-text span {
    font-size: .6rem;
    letter-spacing: .12em;
  }

  .header-inner {
    height: 82px;
    gap: 10px;
  }

  .menu-toggle {
    min-width: 88px;
    height: 58px;
    padding: 10px 13px;
    border-radius: 17px;
    font-size: .95rem;
  }

  .nav {
    top: 82px;
    padding: 26px 28px;
    max-height: calc(100vh - 82px);
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 90px 0 54px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 14vw, 3.25rem);
    line-height: .98;
    letter-spacing: .025em;
  }

  .hero p {
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .cta-row .btn,
  .btn {
    width: 100%;
    white-space: normal;
  }

  .section-title h2,
  .text h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .offer-box {
    padding: 30px 22px;
  }

  .card.pad {
    padding: 24px;
  }

  .benefit {
    min-height: auto;
  }
}