/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── TOKENS ── */
:root {
  --bg:        #FFFFFF;
  --bg-2:      #FFFFFF;
  --cream:     #F7F2EA;
  --ink:       #1E1A15;
  --ink-2:     #4A4239;
  --muted:     #837868;
  --line:      #E5DDD0;
  --line-2:    #EEE7DB;
  --accent:    #A95028;
  --accent-d:  #7E3A1C;
  --shadow-sm: 0 1px 2px rgba(30,26,21,.04);
  --shadow-md: 0 14px 40px -14px rgba(30,26,21,.12);
}

/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── LAYOUT ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.section        { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--ink   { background: var(--ink); color: #EFE7D6; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; line-height: 1.1; letter-spacing: -.01em; color: var(--ink); }

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: inline-block;
}
.eyebrow--center { text-align: center; }
.eyebrow--light  { color: rgba(239,231,214,.7); }

.h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); line-height: 1.05; }
.h2 { font-size: clamp(1.7rem, 2.4vw, 2.375rem); line-height: 1.15; }
.h3 { font-size: clamp(1.2rem, 1.6vw, 1.5rem); }

.lede {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 56ch;
}

em.italic { font-style: italic; color: var(--accent); font-weight: 400; }

/* ── SECTION HEADER ── */
.sec-head { margin-bottom: 56px; max-width: 760px; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { margin-bottom: 14px; }
.sec-head .lede { color: var(--muted); font-size: 16px; }
.sec-head--center .lede { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background .18s, color .18s, border-color .18s, transform .18s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--accent-d); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-light { background: var(--bg); color: var(--ink); }
.btn-light:hover { background: #fff; }
.btn-outline-light { background: transparent; color: var(--bg); border-color: rgba(247,242,234,.4); }
.btn-outline-light:hover { border-color: var(--bg); }
.btn-lg { padding: 16px 32px; font-size: 14px; }

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,242,234,.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-2);
  transition: background .25s ease, border-color .25s ease;
}

/* Transparent nav over hero (home page, before scroll) */
body:has(.hero-bg) .site-nav {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
body:has(.hero-bg) .site-nav .nav-logo { color: #FBF6EC; }
body:has(.hero-bg) .site-nav .nav-logo em { color: #fff; }
body:has(.hero-bg) .site-nav .nav-links a { color: rgba(251,246,236,.85); }
body:has(.hero-bg) .site-nav .nav-links a:hover,
body:has(.hero-bg) .site-nav .nav-links a.active { color: #fff; }
body:has(.hero-bg) .site-nav .nav-cta {
  background: rgba(255,255,255,.12) !important;
  color: #FBF6EC !important;
  border: 1px solid rgba(251,246,236,.4);
  backdrop-filter: blur(8px);
}
body:has(.hero-bg) .site-nav .nav-cta:hover {
  background: var(--accent) !important;
  border-color: var(--accent);
  color: #fff !important;
}
body:has(.hero-bg) .site-nav .nav-burger span { background: #FBF6EC; }

/* Scrolled state: restore cream nav */
body:has(.hero-bg) .site-nav.is-scrolled {
  background: rgba(247,242,234,.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom-color: var(--line-2);
}
body:has(.hero-bg) .site-nav.is-scrolled .nav-logo { color: var(--ink); }
body:has(.hero-bg) .site-nav.is-scrolled .nav-logo em { color: var(--accent); }
body:has(.hero-bg) .site-nav.is-scrolled .nav-links a { color: var(--ink-2); }
body:has(.hero-bg) .site-nav.is-scrolled .nav-links a:hover,
body:has(.hero-bg) .site-nav.is-scrolled .nav-links a.active { color: var(--ink); }
body:has(.hero-bg) .site-nav.is-scrolled .nav-cta {
  background: var(--ink) !important;
  color: var(--bg) !important;
  border-color: transparent;
  backdrop-filter: none;
}
body:has(.hero-bg) .site-nav.is-scrolled .nav-cta:hover { background: var(--accent-d) !important; color: #fff !important; }
body:has(.hero-bg) .site-nav.is-scrolled .nav-burger span { background: var(--ink); }
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.nav-logo em { font-style: italic; color: var(--accent); font-weight: 500; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  transition: color .18s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-cta {
  background: var(--ink) !important;
  color: var(--bg) !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13.5px !important;
}
.nav-cta:hover { background: var(--accent-d) !important; }
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: .25s;
}

/* ── HERO (background image) ── */
.hero-bg {
  position: relative;
  isolation: isolate;
  min-height: clamp(620px, 92vh, 880px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -72px;
  padding-top: 72px;
  border-bottom: 1px solid var(--line);
}
.hero-bg--page {
  min-height: clamp(420px, 60vh, 560px);
}
.hero-bg--page .hero-bg-inner { padding: 64px 32px; }
.hero-bg--page .hero-bg-title { font-size: clamp(2.2rem, 5vw, 4.4rem); }
.hero-bg--page .hero-bg-sub { margin-bottom: 32px; }
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,14,10,.55) 0%, rgba(20,14,10,.40) 40%, rgba(20,14,10,.70) 100%),
    radial-gradient(ellipse at center, rgba(20,14,10,0) 0%, rgba(20,14,10,.35) 100%);
}

.hero-bg-inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 96px 32px;
  text-align: center;
  color: #FBF6EC;
}

.hero-bg-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(251,246,236,.78);
}
.hero-bg-rule .hero-bg-line { width: 56px; height: 1px; background: rgba(251,246,236,.4); }

.hero-bg-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.6rem, 6.6vw, 5.6rem);
  line-height: 1;
  letter-spacing: -.018em;
  color: #FBF6EC;
  margin: 0 auto 22px;
  max-width: 18ch;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
}

.hero-bg-sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.5rem);
  line-height: 1.5;
  color: rgba(251,246,236,.88);
  max-width: 50ch;
  margin: 0 auto 44px;
}

.hero-bg-links {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13.5px;
  letter-spacing: .02em;
}
.hero-bg-link {
  color: #FBF6EC;
  text-decoration: none;
  border-bottom: 1px solid rgba(251,246,236,.55);
  padding-bottom: 4px;
  transition: color .18s, border-color .18s;
}
.hero-bg-link:hover { color: #fff; border-color: #fff; }
.hero-bg-link--accent {
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 9px 20px;
}
.hero-bg-link--accent:hover { background: var(--accent-d); border-color: var(--accent-d); color: #fff; }
.hero-bg-dot { color: rgba(251,246,236,.5); font-size: 16px; }

/* ── INFO BAR ── */
.info-bar {
  background: var(--ink);
  color: rgba(239,231,214,.85);
}
.info-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 32px;
  font-size: 14px;
}
.info-item { display: flex; align-items: center; gap: 10px; }
.info-item strong { color: #FFF; font-weight: 500; }
.info-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img { position: relative; }
.about-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-body p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-sig {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
}
.about-sig small {
  display: block;
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
}

/* ── BOXES (HOME FEATURED) ── */
.boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.box-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.box-card-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 18px;
}
.box-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.22,.61,.36,1);
}
.box-card:hover .box-card-img img { transform: scale(1.05); }
.box-card-cat {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.box-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.15;
}
.box-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.box-card-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.box-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}
.box-card-price small { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--muted); font-weight: 400; margin-left: 4px; }
.box-card-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  transition: color .15s;
}
.box-card:hover .box-card-link { color: var(--accent-d); }

/* ── WHY ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.why-list { list-style: none; }
.why-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.why-list li:first-child { border-top: 1px solid var(--line); }
.why-list strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.why-list p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
}
.why-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* ── OCCASIONS ── */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.occasion {
  background: var(--cream);
  padding: 36px 32px;
}
.occasion h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.2;
}
.occasion p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── STEPS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  counter-reset: step;
}
.step { counter-increment: step; }
.step::before {
  content: "0" counter(step);
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}
.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}
.step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 32ch;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--ink);
  color: #EFE7D6;
  padding: 96px 28px;
  text-align: center;
}
.cta-band h2 {
  color: #EFE7D6;
  margin-bottom: 14px;
}
.cta-band p {
  color: rgba(239,231,214,.7);
  font-size: 16px;
  max-width: 50ch;
  margin: 0 auto 36px;
}
.cta-band-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── AREA STRIP ── */
.area-strip {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.area-text {
  font-size: 13.5px;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
}
.area-text strong { color: var(--ink); font-weight: 600; }

/* ── PAGE HEADER ── */
.page-header {
  padding: 88px 0 64px;
  border-bottom: 1px solid var(--line);
}
.page-header .eyebrow { margin-bottom: 18px; }
.page-header h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  margin-bottom: 18px;
  max-width: 16ch;
}
.page-header .lede { color: var(--muted); }
.page-header-actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ── MENU LIST ── */
.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  row-gap: 48px;
}
.menu-cat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink);
}
.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-2);
}
.menu-row:last-child { border-bottom: none; }
.menu-row-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}
.menu-row-note {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 4px;
  line-height: 1.55;
}
.menu-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.individual-card {
  margin-top: 32px;
  padding: 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.individual-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  margin-bottom: 8px;
}
.individual-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

/* ── OFFER TABLE ── */
.offer-table {
  width: 100%;
  border-collapse: collapse;
}
.offer-table thead tr { border-bottom: 1px solid var(--ink); }
.offer-table thead th {
  padding: 14px 0;
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-right: 24px;
}
.offer-table thead th:last-child { text-align: right; padding-right: 0; }
.offer-table tbody tr { border-bottom: 1px solid var(--line-2); }
.offer-table td {
  padding: 18px 0;
  font-size: 15px;
  color: var(--ink-2);
  vertical-align: top;
  padding-right: 24px;
}
.offer-table td:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}
.offer-table td:last-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--accent);
  text-align: right;
  padding-right: 0;
  white-space: nowrap;
}
.offer-table .t-note {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 3px;
}

/* ── FORM ── */
.form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 48px;
}
.form-section { margin-bottom: 36px; }
.form-section:last-of-type { margin-bottom: 0; }
.form-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.form-section-sub {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 22px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-full { grid-column: 1/-1; }
label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
}
input, textarea, select {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 13px 15px;
  transition: border-color .18s, box-shadow .18s;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  border-radius: 4px;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(169,80,40,.1);
}
input::placeholder, textarea::placeholder { color: #B5A992; }
textarea { resize: vertical; min-height: 120px; }
select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23837868' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  border-radius: 4px;
  background: var(--bg-2);
}
.check-item:hover { border-color: var(--accent); }
.check-item:has(input:checked) { border-color: var(--accent); background: rgba(169,80,40,.04); }
.check-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
}
.ci-name  { font-size: 14px; color: var(--ink); display: block; line-height: 1.35; font-weight: 500; }
.ci-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-top: 2px;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  gap: 24px;
  flex-wrap: wrap;
}
.form-note { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.form-note strong { color: var(--ink); font-weight: 600; }

#form-success {
  display: none;
  background: #F4F8F0;
  border: 1px solid #C8DAB8;
  padding: 40px;
  text-align: center;
  border-radius: 4px;
}
#form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: #3D6233;
  margin-bottom: 10px;
}
#form-success p { font-size: 15px; color: #4F7445; }

/* ── ZAMOW LAYOUT ── */
.zamow-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}
.zamow-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 24px;
}
.sidebar-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.sidebar-list { list-style: none; }
.sidebar-list li {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  padding: 6px 0;
}
.sidebar-list strong { color: var(--ink); font-weight: 600; }
.sidebar-list a { color: var(--ink); text-decoration: none; font-weight: 600; }
.sidebar-list a:hover { color: var(--accent); }

/* ── KONTAKT ── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-list { list-style: none; }
.contact-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:first-child { border-top: 1px solid var(--line); }
.contact-list .lbl {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-list .val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  display: block;
  line-height: 1.2;
  transition: color .18s;
}
.contact-list a.val:hover { color: var(--accent); }
.contact-list .sub { font-size: 13.5px; color: var(--muted); margin-top: 4px; }

.about-block h2 { margin-bottom: 22px; max-width: 14ch; }
.about-block p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 14px;
}

.pay-row { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 999px;
  background: var(--bg-2);
}

.zasady-list { list-style: none; }
.zasady-list li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(239,231,214,.12);
  font-size: 15px;
  color: rgba(239,231,214,.65);
  line-height: 1.65;
}
.zasady-list li:first-child { border-top: 1px solid rgba(239,231,214,.12); }
.zasady-list strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: rgba(239,231,214,.95);
  margin-bottom: 6px;
}
.zasady-quote {
  padding: 32px 36px;
  border-left: 2px solid var(--accent);
  background: rgba(255,255,255,.02);
}
.zasady-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  color: rgba(239,231,214,.85);
  line-height: 1.55;
  margin-bottom: 18px;
}
.zasady-quote cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: rgba(239,231,214,.6);
  padding: 80px 28px 32px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(239,231,214,.1);
}
.footer-brand .nav-logo { color: rgba(239,231,214,.95); font-size: 26px; }
.footer-brand .nav-logo em { color: var(--accent); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 10px; max-width: 38ch; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(239,231,214,.95);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(239,231,214,.55);
  text-decoration: none;
  transition: color .15s;
}
.footer-col a:hover { color: rgba(239,231,214,.95); }
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(239,231,214,.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top .15s;
}
.skip-link:focus { top: 0; }

/* ── FOCUS ── */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ── SCROLL OFFSET ── */
.section, [id] { scroll-margin-top: 96px; }

/* ── MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1280px) {
  .why-grid, .about-grid, .kontakt-grid { gap: 64px; }
}

@media (max-width: 1080px) {
  .why-grid, .about-grid, .kontakt-grid { gap: 48px; }
  .boxes { gap: 24px; }
  .hero-bg { min-height: clamp(520px, 78vh, 720px); }
  .hero-bg-inner { padding: 80px 28px; }
}

@media (max-width: 920px) {
  .hero-bg { min-height: 540px; }
  .hero-bg-inner { padding: 64px 24px; }
  .hero-bg-rule { gap: 12px; margin-bottom: 26px; font-size: 10.5px; }
  .hero-bg-rule .hero-bg-line { width: 32px; }
  .hero-bg-sub { margin-bottom: 32px; }
  .hero-bg-overlay {
    background: linear-gradient(180deg, rgba(20,14,10,.55) 0%, rgba(20,14,10,.50) 40%, rgba(20,14,10,.78) 100%);
  }
  .about-grid, .why-grid, .kontakt-grid { grid-template-columns: 1fr; gap: 48px; }
  .boxes { grid-template-columns: 1fr 1fr; }
  .occasions-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .zamow-layout { grid-template-columns: 1fr; }
  .zamow-sidebar { position: static; }
  .menu-cols { grid-template-columns: 1fr; column-gap: 0; }
  .form-wrap { padding: 32px 24px; }
  .checkbox-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 12px 28px 20px;
    gap: 0;
    z-index: 49;
  }
  .nav-links.open a { padding: 14px 0; border-bottom: 1px solid var(--line-2); font-size: 15px; }
  .nav-links.open li:last-child a { border-bottom: none; }
  body:has(.hero-bg) .site-nav .nav-links.open a { color: var(--ink-2); }
  body:has(.hero-bg) .site-nav .nav-links.open .nav-cta {
    background: var(--ink) !important;
    color: var(--bg) !important;
    border-color: transparent;
    backdrop-filter: none;
  }
  .nav-burger { display: flex; }
  .site-nav { position: relative; }
  .section { padding: 64px 0; }
  .form-submit-row { flex-direction: column; align-items: stretch; }
  .info-bar-inner { flex-direction: column; gap: 10px; padding: 18px 28px; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .boxes { grid-template-columns: 1fr; }
  .occasions-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  input, textarea, select { font-size: 16px; }
  .btn { width: 100%; justify-content: center; }
  .hero-bg { min-height: 480px; }
  .hero-bg-inner { padding: 48px 22px; }
  .hero-bg-links { gap: 12px; }
}
