/* Stół Wspomnień — Toruń · hospitality memorial tables
   palette_4: berry · honey · ivory · ink | fonts: Spectral + Figtree | radius 24px
   Classes: sw- prefix · from scratch · not a grave-care clone */

@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Spectral:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap");

:root {
  --c1: #6b2d5c;
  --c2: #e8a838;
  --c3: #fff8f0;
  --c4: #1f1418;
  --c1-soft: #8a4a78;
  --c1-deep: #4a1f3f;
  --c2-soft: #f5c56a;
  --c2-deep: #c4891f;
  --cream: #fdf6ee;
  --paper: #ffffff;
  --muted: #6a5560;
  --line: rgba(107, 45, 92, 0.12);
  --shadow: 0 18px 48px rgba(31, 20, 24, 0.1);
  --shadow-sm: 0 8px 24px rgba(31, 20, 24, 0.07);
  --r: 24px;
  --r-sm: 14px;
  --r-pill: 999px;
  --font-d: "Spectral", Georgia, "Times New Roman", serif;
  --font-b: "Figtree", system-ui, -apple-system, sans-serif;
  --max: 1140px;
  --pad: clamp(1rem, 3vw, 1.5rem);
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-b);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--c4);
  background: var(--c3);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--c1);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--c1-deep);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-d);
  font-weight: 600;
  line-height: 1.2;
  color: var(--c4);
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0 0 1em;
  padding-left: 1.2em;
}

.sw-wrap {
  width: min(100% - 2 * var(--pad), var(--max));
  margin-inline: auto;
}

.sw-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--c1);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 10000;
}

.sw-skip:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* —— util bar —— */
.sw-util {
  background: var(--c1-deep);
  color: rgba(255, 248, 240, 0.88);
  font-size: 0.84rem;
}

.sw-util__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.sw-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: #fff;
}

.sw-live__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6dd38a;
  box-shadow: 0 0 0 0 rgba(109, 211, 138, 0.55);
  animation: sw-pulse 2s infinite;
}

@keyframes sw-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(109, 211, 138, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(109, 211, 138, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(109, 211, 138, 0);
  }
}

.sw-util a {
  color: var(--c2-soft);
  text-decoration: none;
  font-weight: 600;
}

.sw-util a:hover {
  color: #fff;
}

/* —— header —— */
.sw-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.sw-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.sw-logo {
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--c4);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.sw-logo span {
  color: var(--c1);
  font-style: italic;
  font-weight: 500;
}

.sw-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.1rem;
}

.sw-nav a {
  color: var(--c4);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.sw-nav a:hover,
.sw-nav a[aria-current="page"] {
  color: var(--c1);
}

.sw-menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--c4);
  border-radius: var(--r-sm);
  padding: 0.55rem 0.9rem;
  font-family: var(--font-b);
  font-weight: 600;
  cursor: pointer;
}

/* —— buttons —— */
.sw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.7rem 1.35rem;
  border-radius: var(--r-pill);
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}

.sw-btn:hover {
  transform: translateY(-1px);
}

.sw-btn--primary {
  background: var(--c1);
  color: #fff;
}

.sw-btn--primary:hover {
  background: var(--c1-deep);
  color: #fff;
}

.sw-btn--accent {
  background: var(--c2);
  color: var(--c4);
}

.sw-btn--accent:hover {
  background: var(--c2-deep);
  color: #fff;
}

.sw-btn--ghost {
  background: transparent;
  border-color: rgba(107, 45, 92, 0.28);
  color: var(--c1);
}

.sw-btn--ghost:hover {
  border-color: var(--c1);
  background: rgba(107, 45, 92, 0.05);
  color: var(--c1-deep);
}

.sw-btn--light {
  background: #fff;
  color: var(--c1);
}

.sw-btn--sm {
  min-height: 40px;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
}

/* —— hero split reverse: image LEFT, text RIGHT —— */
.sw-hero {
  padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(2rem, 5vw, 3.5rem);
}

.sw-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

.sw-hero__media {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4;
  background: var(--c1-soft);
}

.sw-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sw-hero__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 248, 240, 0.94);
  backdrop-filter: blur(8px);
  border-radius: var(--r-sm);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-sm);
  max-width: calc(100% - 2rem);
}

.sw-hours-badge {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--c2), var(--c2-deep));
  color: var(--c4);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.15;
  box-shadow: 0 6px 16px rgba(232, 168, 56, 0.4);
}

.sw-hours-badge small {
  display: block;
  font-weight: 600;
  opacity: 0.85;
}

.sw-hero__copy {
  padding: 0.25rem 0;
}

.sw-kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c1);
  margin-bottom: 0.75rem;
}

.sw-lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 38ch;
}

.sw-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.4rem 0 1.1rem;
}

.sw-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(107, 45, 92, 0.07);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 0.45rem 0.95rem;
  font-size: 0.9rem;
  color: var(--c4);
  margin-bottom: 1rem;
}

.sw-status em {
  font-style: normal;
  font-weight: 700;
  color: var(--c1);
}

.sw-palette {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.35rem;
}

.sw-palette span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 4px rgba(31, 20, 24, 0.15);
}

.sw-palette span:nth-child(1) {
  background: var(--c1);
}
.sw-palette span:nth-child(2) {
  background: var(--c2);
}
.sw-palette span:nth-child(3) {
  background: var(--c3);
  border-color: var(--line);
}
.sw-palette span:nth-child(4) {
  background: var(--c4);
}

/* —— sections —— */
.sw-sec {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.sw-sec--alt {
  background: var(--cream);
}

.sw-sec--ink {
  background: linear-gradient(160deg, var(--c1-deep), var(--c4) 70%);
  color: rgba(255, 248, 240, 0.92);
}

.sw-sec--ink h2,
.sw-sec--ink h3 {
  color: #fff;
}

.sw-sec--ink .sw-muted {
  color: rgba(255, 248, 240, 0.75);
}

.sw-sec__head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.sw-sec__head--center {
  text-align: center;
  margin-inline: auto;
}

.sw-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c1);
  margin: 0 0 0.5rem;
}

.sw-sec--ink .sw-eyebrow {
  color: var(--c2);
}

.sw-muted {
  color: var(--muted);
}

/* —— trust —— */
.sw-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.sw-trust__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.25rem 1.15rem;
  box-shadow: var(--shadow-sm);
}

.sw-trust__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(232, 168, 56, 0.25), rgba(107, 45, 92, 0.1));
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  color: var(--c1);
  font-size: 1.15rem;
}

.sw-trust__card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.sw-trust__card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
}

/* —— offer cards —— */
.sw-offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.sw-offer {
  background: var(--paper);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.sw-offer:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.sw-offer__img {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--c1-soft);
}

.sw-offer__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.sw-offer:hover .sw-offer__img img {
  transform: scale(1.04);
}

.sw-offer__body {
  padding: 1.25rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sw-offer__price {
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--c1);
  margin: 0.15rem 0 0.65rem;
}

.sw-offer__body ul {
  margin: 0 0 1.1rem;
  padding-left: 1.1em;
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.sw-offer--featured {
  border-color: rgba(232, 168, 56, 0.55);
  box-shadow: 0 16px 40px rgba(107, 45, 92, 0.12);
}

.sw-offer__tag {
  display: inline-block;
  background: var(--c2);
  color: var(--c4);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--r-pill);
  margin-bottom: 0.5rem;
}

/* —— process —— */
.sw-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: sw-step;
}

.sw-step {
  position: relative;
  background: var(--paper);
  border-radius: var(--r);
  padding: 1.35rem 1.2rem 1.3rem;
  border: 1px solid var(--line);
  counter-increment: sw-step;
}

.sw-step::before {
  content: counter(sw-step);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c1);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.sw-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.sw-step p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
}

/* —— gallery —— */
.sw-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.sw-gallery figure {
  margin: 0;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-sm);
  background: var(--c1-soft);
}

.sw-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.sw-gallery figure:hover img {
  transform: scale(1.05);
}

.sw-gallery figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* —— FAQ —— */
.sw-faq {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.sw-faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.15rem 1.1rem;
}

.sw-faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.95rem 0;
  list-style: none;
  font-family: var(--font-d);
  font-size: 1.1rem;
}

.sw-faq summary::-webkit-details-marker {
  display: none;
}

.sw-faq summary::after {
  content: "+";
  float: right;
  color: var(--c1);
  font-weight: 700;
  font-family: var(--font-b);
}

.sw-faq details[open] summary::after {
  content: "–";
}

.sw-faq details p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
}

/* —— CTA band —— */
.sw-cta {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.sw-cta .sw-hero__actions {
  justify-content: center;
}

/* —— page top —— */
.sw-page-top {
  padding: clamp(2rem, 5vw, 3.25rem) 0 0.5rem;
}

.sw-page-top .sw-lead {
  max-width: 52ch;
}

/* —— content prose —— */
.sw-prose {
  max-width: 68ch;
}

.sw-prose h2 {
  margin-top: 1.75rem;
}

.sw-two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.sw-media-card {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sw-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

/* —— pricing table —— */
.sw-table-wrap {
  overflow-x: auto;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.sw-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.sw-table th,
.sw-table td {
  padding: 0.95rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.sw-table th {
  background: rgba(107, 45, 92, 0.06);
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 600;
}

.sw-table tr:last-child td {
  border-bottom: 0;
}

.sw-table td:last-child {
  font-weight: 700;
  color: var(--c1);
  white-space: nowrap;
}

/* —— areas chips —— */
.sw-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sw-chip {
  background: rgba(107, 45, 92, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 0.4rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
}

/* —— contact: map top, form panel —— */
.sw-map {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  background: #e8e0d8;
  min-height: 280px;
}

.sw-map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.sw-contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

.sw-nap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.sw-nap h2 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.sw-nap dl {
  margin: 0;
}

.sw-nap dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c1);
  margin: 0.85rem 0 0.2rem;
}

.sw-nap dd {
  margin: 0;
  color: var(--c4);
}

.sw-nap a {
  text-decoration: none;
  font-weight: 600;
}

.sw-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.sw-form h2 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.sw-field {
  margin-bottom: 0.95rem;
}

.sw-field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.sw-field input,
.sw-field select,
.sw-field textarea {
  width: 100%;
  border: 1px solid rgba(107, 45, 92, 0.22);
  border-radius: var(--r-sm);
  padding: 0.7rem 0.9rem;
  font-family: var(--font-b);
  font-size: 1rem;
  background: var(--c3);
  color: var(--c4);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sw-field input:focus,
.sw-field select:focus,
.sw-field textarea:focus {
  outline: none;
  border-color: var(--c1);
  box-shadow: 0 0 0 3px rgba(107, 45, 92, 0.12);
  background: #fff;
}

.sw-field textarea {
  min-height: 120px;
  resize: vertical;
}

.sw-check {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.sw-check input {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* —— thank you —— */
.sw-thanks {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

.sw-thanks__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--c2), var(--c2-soft));
  display: grid;
  place-items: center;
  margin: 0 auto 1.25rem;
  font-size: 1.8rem;
  color: var(--c4);
  box-shadow: 0 10px 28px rgba(232, 168, 56, 0.35);
}

/* —— legal —— */
.sw-legal {
  max-width: 72ch;
}

.sw-legal h2 {
  margin-top: 2rem;
  font-size: 1.3rem;
  color: var(--c1-deep);
}

.sw-legal h2:first-child {
  margin-top: 0;
}

/* —— footer —— */
.sw-footer {
  background: var(--c4);
  color: rgba(255, 248, 240, 0.82);
  padding: 2.75rem 0 1.5rem;
  margin-top: 0;
}

.sw-footer a {
  color: var(--c2-soft);
  text-decoration: none;
}

.sw-footer a:hover {
  color: #fff;
}

.sw-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.sw-footer__brand {
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.65rem;
}

.sw-footer__brand span {
  color: var(--c2);
  font-style: italic;
  font-weight: 500;
}

.sw-footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.sw-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sw-footer li {
  margin-bottom: 0.4rem;
}

.sw-footer__bottom {
  border-top: 1px solid rgba(255, 248, 240, 0.1);
  padding-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(255, 248, 240, 0.55);
}

/* —— widgets: scroll progress, FAB, sticky —— */
.sw-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--c1), var(--c2));
  z-index: 1200;
  pointer-events: none;
}

.sw-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.sw-fab__msg {
  background: var(--c4);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}

.sw-fab:hover .sw-fab__msg {
  opacity: 1;
  transform: translateY(0);
}

.sw-fab__call {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--c2), var(--c2-deep));
  color: var(--c4);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(232, 168, 56, 0.45);
  text-decoration: none;
  transition: transform 0.2s var(--ease);
}

.sw-fab__call:hover {
  transform: scale(1.06);
  color: var(--c4);
}

.sw-fab__call svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.sw-sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 940;
  background: rgba(255, 248, 240, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 0.65rem var(--pad);
  box-shadow: 0 -8px 24px rgba(31, 20, 24, 0.08);
}

.sw-sticky-cta__inner {
  display: flex;
  gap: 0.55rem;
  max-width: var(--max);
  margin: 0 auto;
}

.sw-sticky-cta .sw-btn {
  flex: 1;
  min-height: 46px;
}

body.sw-no-widgets .sw-fab,
body.sw-no-widgets .sw-sticky-cta {
  display: none !important;
}

/* —— cookie banner HARD —— */
.sw-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  padding: 0.85rem var(--pad) calc(0.85rem + env(safe-area-inset-bottom, 0px));
  background: rgba(31, 20, 24, 0.97);
  color: rgba(255, 248, 240, 0.92);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.35s;
}

.sw-cookie.is-on {
  transform: translateY(0);
  opacity: 1;
}

.sw-cookie__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  justify-content: space-between;
}

.sw-cookie p {
  margin: 0;
  flex: 1 1 260px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.sw-cookie a {
  color: var(--c2-soft);
  font-weight: 600;
}

.sw-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.sw-cookie .sw-btn--accept {
  background: var(--c2);
  color: var(--c4);
  border: 0;
  min-height: 42px;
  padding: 0.5rem 1.1rem;
  border-radius: var(--r-pill);
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-b);
}

.sw-cookie .sw-btn--reject {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 248, 240, 0.35);
  min-height: 42px;
  padding: 0.5rem 1.1rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-b);
}

/* —— motion: soft fade scroll —— */
[data-sw-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-sw-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  [data-sw-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .sw-live__dot {
    animation: none;
  }
  .sw-btn:hover,
  .sw-offer:hover {
    transform: none;
  }
}

/* —— responsive —— */
@media (max-width: 960px) {
  .sw-hero__grid {
    grid-template-columns: 1fr;
  }
  .sw-hero__media {
    order: -1;
    max-height: 360px;
    aspect-ratio: 16 / 10;
  }
  .sw-trust {
    grid-template-columns: repeat(2, 1fr);
  }
  .sw-offers {
    grid-template-columns: 1fr;
  }
  .sw-process {
    grid-template-columns: repeat(2, 1fr);
  }
  .sw-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .sw-two-col,
  .sw-contact-panel,
  .sw-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .sw-menu-btn {
    display: inline-flex;
  }
  .sw-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    background: var(--c3);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem var(--pad) 1rem;
    gap: 0.15rem;
    box-shadow: var(--shadow-sm);
  }
  .sw-nav.is-open {
    display: flex;
  }
  .sw-nav a {
    padding: 0.65rem 0.25rem;
  }
  .sw-header {
    position: sticky;
  }
  .sw-header__inner {
    position: relative;
  }
  .sw-sticky-cta {
    display: block;
  }
  .sw-fab {
    bottom: 4.5rem;
  }
  body.sw-no-widgets .sw-fab {
    bottom: 1.1rem;
  }
  .sw-util__inner {
    justify-content: center;
    text-align: center;
  }
  .sw-util__inner > span:nth-child(2) {
    display: none;
  }
}

@media (max-width: 520px) {
  .sw-trust,
  .sw-process {
    grid-template-columns: 1fr;
  }
  .sw-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }
}

/* print soft */
@media print {
  .sw-util,
  .sw-fab,
  .sw-sticky-cta,
  .sw-cookie,
  .sw-scroll-progress {
    display: none !important;
  }
  body {
    background: #fff;
  }
}
