/* =========================================================
   SARAH BRITTNER FOTOGRAFIE
   ULTRA LUXURY EDITORIAL CSS
========================================================= */

/* =========================
   ROOT / LUXURY TOKENS
========================= */
:root {
  --sb-bg: #f8f2ed;
  --sb-bg-soft: #f1e6dd;
  --sb-bg-deep: #e7d6ca;
  --sb-bg-rose: #eddcd2;
  --sb-bg-champagne: #f4ece4;

  --sb-surface: rgba(255, 250, 246, 0.76);
  --sb-surface-strong: rgba(255, 250, 246, 0.90);
  --sb-surface-soft: rgba(255, 255, 255, 0.55);
  --sb-surface-glass: rgba(255, 250, 246, 0.64);

  --sb-text: #4b3d34;
  --sb-text-soft: #7c695d;
  --sb-text-fade: #9f8a7c;
  --sb-heading: #2b211d;

  --sb-primary: #b68c72;
  --sb-primary-dark: #9a7158;
  --sb-primary-deep: #845d47;
  --sb-primary-light: #d4b39c;
  --sb-primary-soft: #ecdacd;

  --sb-accent: #dbc1b2;
  --sb-accent-soft: #f5ebe4;
  --sb-accent-rose: #e7d0c4;
  --sb-accent-gold: #dec0a4;
  --sb-accent-cream: #faf4ee;

  --sb-line: rgba(112, 86, 67, 0.10);
  --sb-line-strong: rgba(112, 86, 67, 0.18);
  --sb-line-gold: rgba(182, 140, 114, 0.28);

  --sb-white: #ffffff;

  --sb-shadow-xs: 0 10px 24px rgba(67, 45, 29, 0.04);
  --sb-shadow-sm: 0 16px 34px rgba(67, 45, 29, 0.07);
  --sb-shadow-md: 0 26px 54px rgba(67, 45, 29, 0.11);
  --sb-shadow-lg: 0 42px 88px rgba(67, 45, 29, 0.16);
  --sb-shadow-xl: 0 56px 120px rgba(67, 45, 29, 0.20);
  --sb-shadow-glow: 0 24px 60px rgba(182, 140, 114, 0.16);
  --sb-shadow-glow-soft: 0 18px 44px rgba(219, 193, 178, 0.20);

  --sb-radius-sm: 14px;
  --sb-radius-md: 20px;
  --sb-radius-lg: 30px;
  --sb-radius-xl: 40px;
  --sb-radius-2xl: 50px;
  --sb-radius-3xl: 64px;
  --sb-radius-pill: 999px;

  --sb-max: 1320px;
  --sb-max-narrow: 900px;

  --sb-font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --sb-font-heading: "Cormorant Garamond", Georgia, serif;

  --sb-header-height: 108px;
  --sb-header-height-mobile: 84px;

  --sb-ease: 0.28s ease;
  --sb-ease-slow: 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================
   ANIMATIONS
========================= */
@keyframes sbGlowDriftOne {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(28px, -24px, 0) scale(1.08);
  }
}

@keyframes sbGlowDriftTwo {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-24px, 20px, 0) scale(1.1);
  }
}

@keyframes sbGlowDriftThree {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(16px, 18px, 0) scale(1.06);
  }
}

@keyframes sbGradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 52%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes sbSheen {
  0% {
    transform: translateX(-130%);
  }
  100% {
    transform: translateX(130%);
  }
}

@keyframes sbPulseSoft {
  0%, 100% {
    opacity: 0.72;
  }
  50% {
    opacity: 1;
  }
}

/* =========================
   RESET / BASE
========================= */
html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  font-family: var(--sb-font-body);
  color: var(--sb-text);
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0) 26%),
    radial-gradient(circle at 88% 10%, rgba(219, 193, 178, 0.22) 0%, rgba(219, 193, 178, 0) 24%),
    radial-gradient(circle at 78% 82%, rgba(182, 140, 114, 0.16) 0%, rgba(182, 140, 114, 0) 28%),
    linear-gradient(180deg, #fcf8f4 0%, #f7f0ea 34%, #f3ebe4 68%, #efe4dc 100%);
  line-height: 1.7;
  font-size: 16px;
  padding-top: var(--sb-header-height);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
  filter: blur(90px);
}

body::before {
  top: 90px;
  left: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(223, 195, 177, 0.34) 0%, rgba(223, 195, 177, 0) 72%);
  animation: sbGlowDriftOne 18s ease-in-out infinite;
}

body::after {
  right: -160px;
  bottom: 70px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(182, 140, 114, 0.20) 0%, rgba(182, 140, 114, 0) 74%);
  animation: sbGlowDriftTwo 22s ease-in-out infinite;
}

body.sb-menu-open {
  overflow: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    color var(--sb-ease),
    background var(--sb-ease),
    border-color var(--sb-ease),
    transform var(--sb-ease),
    box-shadow var(--sb-ease),
    opacity var(--sb-ease);
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

/* =========================
   TYPOGRAPHY
========================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.55em;
  color: var(--sb-heading);
  font-family: var(--sb-font-heading);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(48px, 6vw, 96px);
}

h2 {
  font-size: clamp(36px, 4.5vw, 64px);
}

h3 {
  font-size: clamp(24px, 3vw, 34px);
}

p {
  margin: 0 0 1.1em;
}

.sb-lead {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.9;
  color: var(--sb-text-soft);
}

.sb-text-center {
  text-align: center;
}

/* =========================
   LAYOUT
========================= */
.sb-wrap,
.sb-footer-shell {
  width: min(100% - 48px, var(--sb-max));
  margin: 0 auto;
}

.sb-wrap-narrow {
  width: min(100% - 48px, var(--sb-max-narrow));
  margin: 0 auto;
}

.sb-site-main {
  min-height: 60vh;
}

.sb-section {
  position: relative;
  padding: 110px 0;
}

.sb-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(88vw, 1160px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    rgba(182, 140, 114, 0) 0%,
    rgba(182, 140, 114, 0.16) 18%,
    rgba(223, 195, 177, 0.42) 50%,
    rgba(182, 140, 114, 0.16) 82%,
    rgba(182, 140, 114, 0) 100%
  );
  pointer-events: none;
}

.sb-section:first-child::before {
  display: none;
}

.sb-section-soft {
  background:
    radial-gradient(circle at 14% 18%, rgba(255,255,255,0.52) 0%, rgba(255,255,255,0) 26%),
    radial-gradient(circle at 82% 80%, rgba(223,195,177,0.12) 0%, rgba(223,195,177,0) 28%),
    linear-gradient(180deg, rgba(255, 250, 246, 0.54) 0%, rgba(241, 230, 221, 0.72) 100%);
}

.sb-section-accent {
  background:
    radial-gradient(circle at 84% 18%, rgba(255,255,255,0.34) 0%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 10% 76%, rgba(219,193,178,0.18) 0%, rgba(219,193,178,0) 26%),
    linear-gradient(180deg, #efe0d5 0%, #e8d7cb 100%);
}

.sb-section-intro,
.sb-services-intro,
.sb-testimonials-intro,
.sb-services-head,
.sb-contact-head {
  max-width: 780px;
  margin: 0 auto;
}

/* =========================
   EYEBROW / MICRO BRANDING
========================= */
.sb-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 16px;
  border: 1px solid rgba(182, 140, 114, 0.18);
  border-radius: var(--sb-radius-pill);
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.94) 0%, rgba(255, 250, 246, 0.76) 100%);
  color: var(--sb-text-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 10px 24px rgba(67, 45, 29, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.86);
  overflow: hidden;
}

.sb-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sb-primary) 0%, var(--sb-accent) 100%);
  box-shadow: 0 0 0 6px rgba(223, 195, 177, 0.18);
  animation: sbPulseSoft 3s ease-in-out infinite;
}

/* =========================
   BUTTONS
========================= */
.sb-btn,
.sb-btn:visited {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: var(--sb-radius-pill);
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  overflow: hidden;
}

.sb-btn-primary,
.sb-btn-primary:visited {
  background:
    linear-gradient(135deg, var(--sb-primary-deep) 0%, var(--sb-primary) 28%, #c79d80 58%, var(--sb-primary) 100%);
  background-size: 220% 220%;
  color: var(--sb-white);
  box-shadow:
    0 18px 34px rgba(154, 113, 88, 0.22),
    0 0 0 1px rgba(255,255,255,0.08) inset,
    inset 0 1px 0 rgba(255,255,255,0.28);
  animation: sbGradientFlow 9s ease infinite;
}

.sb-btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(255,255,255,0) 18%,
    rgba(255,255,255,0.22) 48%,
    rgba(255,255,255,0) 78%
  );
  transform: translateX(-130%);
}

.sb-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 40px rgba(154, 113, 88, 0.26),
    0 0 0 1px rgba(255,255,255,0.10) inset,
    inset 0 1px 0 rgba(255,255,255,0.30);
}

.sb-btn-primary:hover::after {
  animation: sbSheen 1.3s ease;
}

.sb-btn-secondary,
.sb-btn-secondary:visited {
  background:
    linear-gradient(180deg, rgba(255,250,246,0.92) 0%, rgba(255,250,246,0.74) 100%);
  color: var(--sb-heading);
  border-color: rgba(182, 140, 114, 0.18);
  box-shadow:
    var(--sb-shadow-xs),
    inset 0 1px 0 rgba(255,255,255,0.82);
}

.sb-btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.94);
  box-shadow: var(--sb-shadow-sm);
}

.sb-btn-block {
  width: 100%;
}

.sb-text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--sb-heading);
}

.sb-text-link::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: width var(--sb-ease);
}

.sb-text-link:hover::after {
  width: 42px;
}

/* =========================
   SHARED LUXURY SURFACES
========================= */
.sb-feature-card,
.sb-hero-card,
.sb-content-card,
.sb-content-card-page,
.sb-page-card,
.sb-cta-box,
.sb-quote-box,
.sb-portfolio-card,
.sb-testimonial-card,
.sb-testimonial-card-clean,
.sb-contact-info,
.sb-contact-form-card,
.sb-legal-card,
.sb-service-card {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* =========================
   HEADER
========================= */
.sb-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  width: 100%;
  background: rgba(248, 242, 237, 0.74);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(112, 86, 67, 0.07);
  box-shadow: 0 12px 30px rgba(67, 45, 29, 0.05);
  transition:
    background var(--sb-ease),
    box-shadow var(--sb-ease),
    border-color var(--sb-ease);
}

.sb-header.is-scrolled {
  background: rgba(248, 242, 237, 0.90);
  border-bottom-color: rgba(112, 86, 67, 0.11);
  box-shadow: 0 18px 36px rgba(67, 45, 29, 0.09);
}

.sb-header-topline {
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(182, 140, 114, 0) 0%,
    rgba(182, 140, 114, 0.72) 20%,
    rgba(223, 195, 177, 1) 50%,
    rgba(182, 140, 114, 0.72) 80%,
    rgba(182, 140, 114, 0) 100%
  );
}

.sb-header-bottom-gradient {
  width: 100%;
  height: 6px;
  background: linear-gradient(
    90deg,
    rgba(182, 140, 114, 0) 0%,
    rgba(182, 140, 114, 0.50) 16%,
    rgba(223, 195, 177, 0.96) 50%,
    rgba(182, 140, 114, 0.50) 84%,
    rgba(182, 140, 114, 0) 100%
  );
  opacity: 0.95;
  pointer-events: none;
}

.sb-header-shell {
  width: 100%;
  padding: 0 34px;
  min-height: calc(var(--sb-header-height) - 2px);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
}

.sb-header.is-scrolled .sb-header-shell {
  min-height: 90px;
}

.sb-header-brand {
  display: flex;
  align-items: center;
  justify-self: start;
}

.sb-logo-link,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.sb-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,250,246,0.98) 0%, rgba(247,238,229,0.96) 100%);
  border: 1px solid rgba(112, 86, 67, 0.09);
  box-shadow:
    0 12px 26px rgba(67, 45, 29, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.90);
  transition:
    transform var(--sb-ease),
    box-shadow var(--sb-ease),
    padding var(--sb-ease);
}

.sb-logo-link:hover .sb-logo-badge {
  transform: translateY(-2px);
  box-shadow:
    0 16px 32px rgba(67, 45, 29, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.94);
}

.custom-logo {
  width: auto;
  max-height: 54px;
  transition: max-height var(--sb-ease), transform var(--sb-ease);
}

.sb-header-logo-img {
  display: block;
  width: auto;
  height: 58px;
  object-fit: contain;
  transition: height var(--sb-ease);
}

.sb-header.is-scrolled .custom-logo {
  max-height: 44px;
}

.sb-header.is-scrolled .sb-header-logo-img {
  height: 48px;
}

.sb-logo-link:hover .custom-logo,
.custom-logo-link:hover .custom-logo {
  transform: translateY(-2px);
}

.sb-nav {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.sb-nav-list,
.sb-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px;
  list-style: none;
  border-radius: var(--sb-radius-pill);
  background: rgba(255, 250, 246, 0.54);
  border: 1px solid rgba(112, 86, 67, 0.08);
  box-shadow:
    0 12px 26px rgba(67, 45, 29, 0.03),
    inset 0 1px 0 rgba(255,255,255,0.76);
}

.sb-nav li {
  margin: 0;
}

.sb-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--sb-radius-pill);
  color: var(--sb-text);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.sb-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(182, 140, 114, 0) 0%,
    rgba(182, 140, 114, 1) 50%,
    rgba(182, 140, 114, 0) 100%
  );
  transform: scaleX(0);
  transition: transform var(--sb-ease);
}

.sb-nav a:hover::after,
.sb-nav .current-menu-item > a::after,
.sb-nav .current_page_item > a::after,
.sb-nav .current-menu-ancestor > a::after {
  transform: scaleX(1);
}

.sb-nav a:hover,
.sb-nav .current-menu-item > a,
.sb-nav .current_page_item > a,
.sb-nav .current-menu-ancestor > a {
  background: rgba(255,255,255,0.86);
  color: var(--sb-heading);
  box-shadow: 0 10px 20px rgba(67, 45, 29, 0.05);
}

.sb-header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

/* =========================
   SOCIAL / INSTAGRAM
========================= */
.sb-mobile-actions {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-left: auto;
}

.sb-social-link,
.sb-social-link-desktop,
.sb-social-link-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  text-decoration: none;
  background: transparent;
  border: none;
  box-shadow: none;
  color: var(--sb-heading);
  transition:
    transform 0.22s ease,
    color 0.22s ease,
    opacity 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}

.sb-social-link:hover {
  transform: translateY(-1px);
  color: var(--sb-primary);
  opacity: 0.92;
}

.sb-social-link:focus,
.sb-social-link:focus-visible {
  outline: none;
  box-shadow: none;
}

.sb-social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
}

/* =========================
   MENU TOGGLE / MOBILE BUTTONS
========================= */
.sb-menu-toggle {
  display: none;
  position: relative;
  width: 50px;
  height: 50px;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(112, 86, 67, 0.12);
  border-radius: 16px;
  background: rgba(255, 250, 246, 0.84);
  box-shadow:
    0 10px 20px rgba(67, 45, 29, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.84);
  -webkit-tap-highlight-color: transparent;
}

.sb-menu-toggle span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--sb-heading);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: all var(--sb-ease);
}

.sb-menu-toggle span:nth-child(1) {
  top: 17px;
}

.sb-menu-toggle span:nth-child(2) {
  top: 24px;
}

.sb-menu-toggle span:nth-child(3) {
  top: 31px;
}

.sb-menu-toggle.is-active span:nth-child(1) {
  top: 24px;
  transform: translateX(-50%) rotate(45deg);
}

.sb-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.sb-menu-toggle.is-active span:nth-child(3) {
  top: 24px;
  transform: translateX(-50%) rotate(-45deg);
}

.sb-menu-toggle,
.sb-menu-toggle:hover,
.sb-menu-toggle:focus,
.sb-menu-toggle:focus-visible,
.sb-menu-toggle:active,
.sb-mobile-close,
.sb-mobile-close:hover,
.sb-mobile-close:focus,
.sb-mobile-close:focus-visible,
.sb-mobile-close:active {
  outline: none !important;
  border-color: rgba(112, 86, 67, 0.12) !important;
  -webkit-tap-highlight-color: transparent;
}

.sb-menu-toggle::-moz-focus-inner,
.sb-mobile-close::-moz-focus-inner {
  border: 0;
}

/* =========================
   MOBILE PANEL
========================= */
.sb-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1290;
  background: rgba(33, 22, 15, 0.38);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--sb-ease), visibility var(--sb-ease);
}

.sb-mobile-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.sb-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1300;
  width: min(92vw, 390px);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start !important;
  padding: 20px 18px 28px !important;
  overflow-y: auto;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.36) 0%, rgba(255,255,255,0) 34%),
    linear-gradient(180deg, #f9f2ec 0%, #ede0d4 100%);
  border-left: 1px solid rgba(112, 86, 67, 0.12);
  box-shadow: -24px 0 56px rgba(49, 31, 18, 0.18);
  transform: translateX(104%);
  transition: transform 0.34s ease;
}

.sb-mobile-panel.is-open {
  transform: translateX(0);
}

.sb-mobile-panel-top {
  flex: 0 0 auto;
}

.sb-mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.sb-mobile-logo {
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 60px);
}

.sb-mobile-logo .custom-logo,
.sb-mobile-logo-img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.sb-mobile-close {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(255, 250, 246, 0.84);
  box-shadow:
    0 8px 18px rgba(67, 45, 29, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.82);
}

.sb-mobile-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--sb-heading);
  border-radius: 999px;
}

.sb-mobile-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.sb-mobile-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.sb-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 0 0 auto !important;
  margin-bottom: 18px;
}

.sb-mobile-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sb-mobile-nav-list li {
  margin: 0 0 10px;
}

.sb-mobile-nav-list a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(255,250,246,0.72);
  border: 1px solid rgba(112, 86, 67, 0.10);
  font-size: 16px;
  font-weight: 700;
  color: var(--sb-heading);
  box-shadow:
    0 8px 16px rgba(67, 45, 29, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.74);
}

.sb-mobile-nav-list a:hover,
.sb-mobile-nav-list .current-menu-item > a,
.sb-mobile-nav-list .current_page_item > a {
  transform: translateX(4px);
  background: rgba(255,255,255,0.88);
}

.sb-mobile-panel-footer {
  position: relative;
  flex: 0 0 auto;
  margin-top: 8px;
  padding-top: 24px;
  border-top: none !important;
}

.sb-mobile-panel-footer,
.sb-mobile-panel-footer *,
.sb-mobile-cta,
.sb-mobile-cta *,
.sb-mobile-cta-wrap,
.sb-mobile-cta-wrap * {
  border-top: none !important;
}

.sb-mobile-cta::before,
.sb-mobile-cta::after,
.sb-mobile-cta-wrap::before,
.sb-mobile-cta-wrap::after {
  content: none !important;
  display: none !important;
}

.sb-mobile-panel-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - 8px);
  max-width: 370px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(182, 140, 114, 0) 0%,
    rgba(182, 140, 114, 0.55) 16%,
    rgba(223, 195, 177, 0.95) 50%,
    rgba(182, 140, 114, 0.55) 84%,
    rgba(182, 140, 114, 0) 100%
  );
  pointer-events: none;
}

.sb-mobile-cta,
.sb-mobile-cta-wrap,
.sb-mobile-panel .sb-mobile-cta {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 0 0 auto !important;
  align-self: stretch;
  margin-top: 0 !important;
}

.sb-mobile-panel-footer .sb-btn,
.sb-mobile-panel-footer a,
.sb-mobile-cta .sb-btn,
.sb-mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 16px 22px;
  border-radius: 999px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--sb-primary) 0%, #c39b7d 50%, var(--sb-primary) 100%);
  color: var(--sb-white);
  box-shadow:
    0 14px 28px rgba(159, 119, 91, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.24);
}

/* =========================
   HERO
========================= */
.sb-hero {
  position: relative;
  padding: 96px 0 112px;
  overflow: hidden;
}

.sb-hero::before,
.sb-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(24px);
}

.sb-hero::before {
  top: -110px;
  left: -130px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(223,195,177,0.30) 0%, rgba(223,195,177,0) 72%);
  animation: sbGlowDriftOne 16s ease-in-out infinite;
}

.sb-hero::after {
  right: -150px;
  bottom: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(182,140,114,0.20) 0%, rgba(182,140,114,0) 74%);
  animation: sbGlowDriftTwo 20s ease-in-out infinite;
}

.sb-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 58px;
  align-items: center;
}

.sb-hero-copy {
  position: relative;
  z-index: 2;
}

.sb-hero-copy h1 {
  margin-bottom: 18px;
}

.sb-hero-copy .sb-lead {
  max-width: 34ch;
}

.sb-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.sb-hero-visual {
  position: relative;
}

.sb-hero-card {
  position: relative;
  padding: 18px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255,250,246,0.82) 0%, rgba(255,250,246,0.62) 100%);
  border: 1px solid rgba(112, 86, 67, 0.10);
  box-shadow:
    var(--sb-shadow-xl),
    inset 0 1px 0 rgba(255,255,255,0.68);
  overflow: hidden;
}

.sb-hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(182,140,114,0) 0%,
    rgba(182,140,114,0.60) 50%,
    rgba(182,140,114,0) 100%
  );
}

.sb-hero-card::after {
  content: "";
  position: absolute;
  top: -42%;
  right: -12%;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}

.sb-hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 640px;
  background: #f3ede7;
}

.sb-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

.sb-hero-slider {
  position: relative;
  min-height: 640px;
  isolation: isolate;
}

.sb-hero-slider img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  opacity: 0;
  z-index: 1;
  transition:
    opacity 1s ease,
    transform 5s ease;
  transform: translate3d(0, 0, 0) scale(1.03);
  -webkit-transform: translate3d(0, 0, 0) scale(1.03);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: opacity, transform;
  pointer-events: none;
}

.sb-hero-slider img.is-active {
  opacity: 1;
  z-index: 2;
  transform: translate3d(0, 0, 0) scale(1);
  -webkit-transform: translate3d(0, 0, 0) scale(1);
}

.sb-hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20, 12, 8, 0.03) 0%, rgba(20, 12, 8, 0) 38%, rgba(20, 12, 8, 0.20) 100%),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 30%);
}

.sb-hero-card-badge {
  position: absolute;
  left: 26px;
  bottom: 26px;
  z-index: 5;
  padding: 12px 18px;
  border-radius: var(--sb-radius-pill);
  background: rgba(255,250,246,0.88);
  border: 1px solid rgba(112, 86, 67, 0.10);
  box-shadow: 0 12px 24px rgba(67, 45, 29, 0.10);
  color: var(--sb-heading);
  font-size: 13px;
  font-weight: 700;
}

.sb-home-hero .sb-hero-image,
.sb-home-hero .sb-hero-slider {
  min-height: 680px;
}

.sb-home-hero .sb-hero-slider img {
  min-height: 680px;
}

/* =========================
   CARDS / CONTENT
========================= */
.sb-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.sb-cards-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.sb-services-grid,
.sb-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.sb-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.sb-feature-card,
.sb-service-card,
.sb-testimonial-card,
.sb-testimonial-card-clean,
.sb-portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,250,246,0.90) 0%, rgba(255,250,246,0.74) 100%);
  border: 1px solid rgba(182, 140, 114, 0.14);
  box-shadow:
    var(--sb-shadow-sm),
    inset 0 1px 0 rgba(255,255,255,0.72);
  transition:
    transform var(--sb-ease-slow),
    box-shadow var(--sb-ease-slow),
    border-color var(--sb-ease),
    background var(--sb-ease);
}

.sb-feature-card::before,
.sb-service-card::before,
.sb-portfolio-card::before,
.sb-testimonial-card::before,
.sb-testimonial-card-clean::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(182,140,114,0) 0%,
    rgba(182,140,114,0.32) 50%,
    rgba(182,140,114,0) 100%
  );
}

.sb-feature-card::after,
.sb-service-card::after,
.sb-portfolio-card::after,
.sb-testimonial-card::after,
.sb-testimonial-card-clean::after {
  content: "";
  position: absolute;
  top: -58%;
  right: -36%;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0) 74%);
  pointer-events: none;
}

.sb-feature-card:hover,
.sb-service-card:hover,
.sb-portfolio-card:hover,
.sb-testimonial-card:hover,
.sb-testimonial-card-clean:hover {
  transform: translateY(-8px);
  border-color: rgba(182, 140, 114, 0.22);
  box-shadow:
    var(--sb-shadow-md),
    var(--sb-shadow-glow-soft),
    inset 0 1px 0 rgba(255,255,255,0.76);
}

.sb-feature-card,
.sb-service-card {
  padding: 34px 30px;
}

.sb-feature-line,
.sb-portfolio-line,
.sb-service-card .sb-feature-line {
  display: block;
  width: 54px;
  height: 2px;
  margin: 0 0 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sb-primary) 0%, var(--sb-accent) 100%);
  box-shadow: 0 0 18px rgba(182, 140, 114, 0.18);
}

.sb-service-card h3,
.sb-feature-card h3 {
  margin-bottom: 12px;
}

.sb-service-card p,
.sb-feature-card p {
  margin-bottom: 0;
  color: var(--sb-text-soft);
}

/* =========================
   SPLIT / ABOUT
========================= */
.sb-split-image {
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--sb-shadow-lg);
}

.sb-split-image img {
  width: 100%;
  min-height: 580px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.sb-split-image:hover img {
  transform: scale(1.04);
}

.sb-split-copy {
  position: relative;
}

.sb-split-about,
.sb-about-clean {
  grid-template-columns: 0.78fr 1.22fr;
  gap: 44px;
  align-items: center;
}

.sb-about-image-wrap,
.sb-about-image-card {
  width: 100%;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255,250,246,0.92) 0%, rgba(255,250,246,0.84) 100%);
  border: 1px solid rgba(182, 140, 114, 0.14);
  border-radius: 30px;
  box-shadow: var(--sb-shadow-md);
  overflow: hidden;
}

.sb-about-image-wrap {
  max-width: 360px;
}

.sb-about-image-card {
  max-width: 430px;
  padding: 12px;
}

.sb-about-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: none !important;
  filter: none !important;
}

.sb-about-image-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  object-fit: cover;
}

.sb-about-copy,
.sb-about-copy-clean {
  max-width: 720px;
}

.sb-about-copy .sb-lead,
.sb-about-copy-clean .sb-lead {
  margin-bottom: 1.2em;
}

.sb-about-copy-clean h2 {
  margin: 0 0 20px;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.sb-about-copy-clean p {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.92;
}

.sb-about-signature {
  margin-top: 30px;
  padding-top: 20px;
  position: relative;
}

.sb-about-signature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 78px;
  height: 1px;
  background: rgba(182, 140, 114, 0.42);
}

.sb-about-signature span {
  display: inline-block;
  font-family: var(--sb-font-heading);
  font-size: 31px;
  line-height: 1;
  color: var(--sb-heading);
}

/* =========================
   CTA / QUOTES
========================= */
.sb-cta-box,
.sb-quote-box {
  position: relative;
  overflow: hidden;
  padding: 62px 44px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0) 28%),
    linear-gradient(180deg, rgba(255,250,246,0.86) 0%, rgba(255,250,246,0.70) 100%);
  border: 1px solid rgba(182, 140, 114, 0.14);
  box-shadow:
    var(--sb-shadow-lg),
    inset 0 1px 0 rgba(255,255,255,0.68);
  text-align: center;
}

.sb-cta-box::before,
.sb-quote-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 74%;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    rgba(182,140,114,0) 0%,
    rgba(182,140,114,0.72) 50%,
    rgba(182,140,114,0) 100%
  );
}

.sb-quote {
  margin: 0;
}

.sb-quote p {
  margin: 0 0 16px;
  color: var(--sb-heading);
  font-family: var(--sb-font-heading);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
}

.sb-quote footer {
  color: var(--sb-text-soft);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.sb-quote-actions {
  margin-top: 28px;
}

/* =========================
   PORTFOLIO
========================= */
.sb-portfolio-card {
  border-radius: 30px;
}

.sb-portfolio-image {
  overflow: hidden;
}

.sb-portfolio-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.sb-portfolio-card:hover .sb-portfolio-image img {
  transform: scale(1.05);
}

.sb-portfolio-content {
  padding: 28px 24px 24px;
}

.sb-portfolio-content h3 {
  margin-bottom: 12px;
}

.sb-portfolio-content p {
  margin-bottom: 0;
  color: var(--sb-text-soft);
}

/* =========================
   TESTIMONIALS
========================= */
.sb-testimonials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.sb-testimonials-block {
  margin-top: 96px;
  padding: 60px 34px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255,255,255,0.48) 0%, rgba(255,255,255,0) 28%),
    linear-gradient(180deg, rgba(255,250,246,0.95) 0%, rgba(239,231,223,0.84) 100%);
  border: 1px solid rgba(182, 140, 114, 0.14);
  box-shadow:
    0 22px 48px rgba(63, 51, 44, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.50);
}

.sb-testimonials-intro {
  max-width: 760px;
  margin: 0 auto 38px;
}

.sb-testimonial-card,
.sb-testimonial-card-clean {
  height: 100%;
  padding: 34px 30px 28px;
}

.sb-testimonial-quote-mark {
  margin: 0 0 18px;
  font-family: var(--sb-font-heading);
  font-size: 44px;
  line-height: 1;
  font-weight: 600;
  color: rgba(182, 140, 114, 0.28);
}

.sb-testimonial-card p,
.sb-testimonial-card-clean p {
  margin: 0 0 24px;
  line-height: 2;
  font-style: italic;
  color: rgba(75, 61, 52, 0.94);
}

.sb-testimonial-author,
.sb-testimonial-card h3,
.sb-testimonial-card-clean h3 {
  margin: 0;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  color: var(--sb-heading);
}

.sb-testimonial-card-clean .sb-feature-line {
  display: none;
}

/* =========================
   PAGE / CONTENT
========================= */
.sb-page-head,
.sb-page-hero {
  padding: 46px 0 20px;
}

.sb-page-hero-inner,
.sb-page-head-card {
  text-align: center;
}

.sb-page-head-card {
  padding: 28px 24px 10px;
}

.sb-page-head-card h1 {
  margin-bottom: 0;
}

.sb-page-content {
  padding: 14px 0 76px;
}

.sb-page-shell {
  position: relative;
  padding: 0 0 clamp(60px, 7vw, 100px);
}

.sb-page-entry {
  display: block;
}

.sb-page-entry > *:first-child {
  margin-top: 0 !important;
}

.sb-page-entry > *:last-child {
  margin-bottom: 0 !important;
}

.sb-content-card,
.sb-content-card-page,
.sb-page-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.26) 0%, rgba(255,255,255,0) 26%),
    linear-gradient(180deg, rgba(255,250,246,0.88) 0%, rgba(255,250,246,0.78) 100%);
  border: 1px solid rgba(182, 140, 114, 0.14);
  box-shadow:
    var(--sb-shadow-md),
    inset 0 1px 0 rgba(255,255,255,0.70);
}

.sb-content-card,
.sb-content-card-page {
  padding: 36px 32px;
}

.sb-page-card {
  border-radius: 38px;
  box-shadow:
    var(--sb-shadow-lg),
    inset 0 1px 0 rgba(255,255,255,0.70);
}

.sb-page-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(182,140,114,0) 0%,
    rgba(182,140,114,0.65) 50%,
    rgba(182,140,114,0) 100%
  );
}

.sb-page-card-head {
  padding: 44px 44px 22px;
  text-align: center;
}

.sb-page-card-head h1 {
  margin-bottom: 0;
}

.sb-page-card-content {
  padding: 8px 44px 44px;
}

.sb-content-card > *:last-child,
.sb-content-card-page > *:last-child,
.sb-page-card-content > *:last-child {
  margin-bottom: 0;
}

.sb-content-card-page h2,
.sb-content-card-page h3,
.sb-content-card-page h4,
.sb-page-card-content h3 {
  margin-top: 1.15em;
}

.sb-content-card-page h2:first-child,
.sb-content-card-page h3:first-child,
.sb-content-card-page h4:first-child {
  margin-top: 0;
}

.sb-page-card-content h2 {
  margin-top: 0.4em;
  margin-bottom: 0.45em;
  font-size: clamp(28px, 3vw, 42px);
}

.sb-page-card-content .sb-section {
  padding: 0;
}

.sb-page-card-content .sb-section-soft,
.sb-page-card-content .sb-section-accent {
  background: transparent;
}

.sb-page-card-content .sb-wrap,
.sb-page-card-content .sb-wrap-narrow {
  width: 100%;
  margin: 0;
}

.sb-page-card-content .sb-section-intro {
  max-width: 760px;
  margin: 0 auto 34px;
}

/* =========================
   SERVICES SUBPAGE
========================= */
.sb-services-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: clamp(74px, 9vw, 122px) 0 clamp(64px, 8vw, 104px);
}

.sb-services-intro .sb-lead {
  margin-bottom: 0;
}

.sb-services-head {
  max-width: 860px;
  margin: 0 auto 40px;
}

.sb-services-head h1 {
  margin: 10px 0 14px;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.01;
  letter-spacing: -0.04em;
}

.sb-services-head .sb-lead {
  margin: 0 auto;
  max-width: 62ch;
  font-size: 17px;
  line-height: 1.88;
  color: var(--sb-text);
}

/* =========================
   CONTACT PAGE
========================= */
.sb-contact-section {
  padding: clamp(74px, 9vw, 122px) 0 clamp(64px, 8vw, 104px);
}

.sb-contact-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.sb-contact-head {
  max-width: 860px;
  margin: 0 auto 40px;
}

.sb-contact-head h1 {
  margin: 10px 0 14px;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.01;
  letter-spacing: -0.04em;
}

.sb-contact-lead {
  margin: 0 auto;
  max-width: 62ch;
  font-size: 17px;
  line-height: 1.88;
  color: var(--sb-text);
}

.sb-contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(24px, 3vw, 36px);
  align-items: stretch;
}

.sb-contact-info,
.sb-contact-form-card {
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0) 26%),
    linear-gradient(180deg, rgba(255,250,246,0.92) 0%, rgba(255,250,246,0.84) 100%);
  border: 1px solid rgba(182, 140, 114, 0.16);
  border-radius: 32px;
  box-shadow:
    0 24px 64px rgba(63, 51, 44, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.72);
}

.sb-contact-info {
  padding: clamp(30px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sb-contact-form-card {
  padding: clamp(30px, 4vw, 44px);
}

.sb-contact-logo {
  margin: 0 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sb-contact-logo img {
  display: block;
  max-width: 270px;
  width: 100%;
  height: auto;
}

.sb-contact-info h1 {
  margin: 10px 0 16px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.sb-contact-links {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.sb-contact-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(182, 140, 114, 0.18);
  box-shadow: 0 12px 30px rgba(63, 51, 44, 0.05);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.sb-contact-link:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.97);
  border-color: rgba(182, 140, 114, 0.28);
  box-shadow: 0 18px 34px rgba(63, 51, 44, 0.08);
}

.sb-contact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sb-primary);
}

.sb-contact-value {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--sb-heading);
}

.sb-contact-note {
  margin-top: 22px;
}

.sb-contact-note p,
.sb-contact-privacy-note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--sb-text-soft);
}

.sb-form-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sb-primary);
}

.sb-contact-form-card h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.sb-form-intro {
  margin: 0 0 26px;
  font-size: 16px;
  line-height: 1.76;
  color: var(--sb-text);
}

.sb-contact-privacy-note {
  margin-top: 18px;
}

/* =========================
   FLUENT FORMS
========================= */
.sb-contact-form-card .ff_el_group {
  margin-bottom: 18px;
}

.sb-contact-form-card .ff-el-form-control,
.sb-contact-form-card input[type="text"],
.sb-contact-form-card input[type="email"],
.sb-contact-form-card input[type="tel"],
.sb-contact-form-card input[type="number"],
.sb-contact-form-card input[type="url"],
.sb-contact-form-card input[type="date"],
.sb-contact-form-card textarea,
.sb-contact-form-card select {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(182, 140, 114, 0.20);
  background: rgba(255,255,255,0.84);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.56);
  font-size: 15px;
  line-height: 1.5;
  color: var(--sb-heading);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease;
}

.sb-contact-form-card textarea {
  min-height: 150px;
  resize: vertical;
}

.sb-contact-form-card .ff-el-form-control::placeholder,
.sb-contact-form-card input::placeholder,
.sb-contact-form-card textarea::placeholder {
  color: #9a8779;
  opacity: 1;
}

.sb-contact-form-card .ff-el-form-control:focus,
.sb-contact-form-card input:focus,
.sb-contact-form-card textarea:focus,
.sb-contact-form-card select:focus {
  outline: none;
  background: rgba(255,255,255,0.98);
  border-color: rgba(182, 140, 114, 0.42);
  box-shadow:
    0 0 0 4px rgba(182, 140, 114, 0.10),
    0 14px 24px rgba(182, 140, 114, 0.06);
}

.sb-contact-form-card .ff-el-input--label label,
.sb-contact-form-card .ff-el-is-required.asterisk-right label,
.sb-contact-form-card label {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sb-heading);
}

.sb-contact-form-card .ff-message-success {
  border-radius: 18px;
  border: 1px solid rgba(182, 140, 114, 0.18);
  background: rgba(255,255,255,0.90);
  color: var(--sb-heading);
  padding: 16px 18px;
}

.sb-contact-form-card .text-danger,
.sb-contact-form-card .error,
.sb-contact-form-card .ff-el-error {
  font-size: 13px;
  margin-top: 7px;
  color: #b85c5c;
}

.sb-contact-form-card .ff_submit_btn_wrapper {
  margin-top: 8px;
}

.sb-contact-form-card .ff-btn-submit,
.sb-contact-form-card button.ff-btn,
.sb-contact-form-card input[type="submit"].ff-btn {
  appearance: none;
  border: none;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sb-primary), var(--sb-primary-dark));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 30px rgba(154, 113, 88, 0.24);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    opacity 0.22s ease;
}

.sb-contact-form-card .ff-btn-submit:hover,
.sb-contact-form-card button.ff-btn:hover,
.sb-contact-form-card input[type="submit"].ff-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(154, 113, 88, 0.30);
}

.sb-contact-form-card .ff-btn-submit:focus,
.sb-contact-form-card button.ff-btn:focus,
.sb-contact-form-card input[type="submit"].ff-btn:focus {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(182, 140, 114, 0.14),
    0 16px 30px rgba(154, 113, 88, 0.24);
}

.sb-contact-form-card .ff-el-form-check {
  margin-top: 6px;
}

.sb-contact-form-card .ff-el-form-check label,
.sb-contact-form-card .ff-el-form-check-label {
  font-size: 14px;
  line-height: 1.7;
  color: var(--sb-text);
}

.sb-contact-form-card input[type="checkbox"] {
  accent-color: var(--sb-primary);
}

/* =========================
   LEGAL PAGES
========================= */
.sb-legal-section {
  position: relative;
  padding: clamp(78px, 10vw, 124px) 20px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.74), transparent 42%),
    linear-gradient(180deg, #f8f1eb 0%, #f3ece5 100%);
}

.sb-legal-wrap {
  width: min(100%, 980px);
  margin: 0 auto;
}

.sb-legal-wrap .sb-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}

.sb-legal-wrap h1 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.sb-legal-wrap > p,
.sb-legal-wrap > .sb-legal-source {
  color: var(--sb-text-soft);
}

.sb-legal-card {
  position: relative;
  margin-top: 26px;
  padding: clamp(26px, 3.2vw, 36px);
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0) 24%),
    linear-gradient(180deg, rgba(255,250,246,0.90) 0%, rgba(255,250,246,0.82) 100%);
  border: 1px solid rgba(182, 140, 114, 0.16);
  border-radius: 30px;
  box-shadow:
    0 18px 44px rgba(63, 51, 44, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.60);
  overflow: hidden;
}

.sb-legal-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(182,140,114,0.22),
    rgba(182,140,114,0.04)
  );
}

.sb-legal-card h2 {
  margin: 0 0 16px;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.sb-legal-card h3 {
  margin: 26px 0 10px;
  font-size: 1.02rem;
  line-height: 1.45;
  font-weight: 700;
  color: var(--sb-heading);
}

.sb-legal-card h3:first-of-type {
  margin-top: 0;
}

.sb-legal-card p,
.sb-legal-card li {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.78;
  color: var(--sb-text);
}

.sb-legal-card p:last-child,
.sb-legal-card li:last-child {
  margin-bottom: 0;
}

.sb-legal-card ul {
  margin: 10px 0 16px;
  padding-left: 20px;
}

.sb-legal-card li {
  padding-left: 4px;
}

.sb-legal-card strong {
  color: var(--sb-heading);
  font-weight: 700;
}

.sb-legal-card a,
.sb-legal-source a {
  color: var(--sb-primary-dark);
  border-bottom: 1px solid rgba(182, 140, 114, 0.35);
}

.sb-legal-card a:hover,
.sb-legal-source a:hover {
  color: var(--sb-primary);
  border-color: rgba(182, 140, 114, 0.75);
}

.sb-legal-source {
  margin-top: 22px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--sb-text-soft);
}

.sb-legal-card + .sb-legal-card {
  margin-top: 22px;
}

/* =========================
   FOOTER
========================= */
.sb-footer {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 100px 0 30px;
  background:
    radial-gradient(circle at top left, rgba(255,248,242,0.36) 0%, rgba(255,248,242,0) 30%),
    radial-gradient(circle at 84% 18%, rgba(223,195,177,0.20) 0%, rgba(223,195,177,0) 24%),
    linear-gradient(180deg, #ebddd0 0%, #e3d2c3 100%);
  border-top: 1px solid rgba(112, 86, 67, 0.10);
}

.sb-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(182,140,114,0) 0%,
    rgba(182,140,114,0.70) 20%,
    rgba(223,195,177,1) 50%,
    rgba(182,140,114,0.70) 80%,
    rgba(182,140,114,0) 100%
  );
}

.sb-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.1fr 0.9fr;
  gap: 30px;
  padding-bottom: 30px;
}

.sb-footer-col h4 {
  margin: 0 0 14px;
  font-size: 22px;
  color: var(--sb-heading);
}

.sb-footer-logo-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}

.sb-footer-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,250,246,0.92) 0%, rgba(247,238,230,0.96) 100%);
  border: 1px solid rgba(112, 86, 67, 0.10);
  box-shadow:
    0 12px 24px rgba(67, 45, 29, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.80);
}

.sb-footer-logo-link .custom-logo,
.sb-footer-logo-img {
  max-height: 64px;
  width: auto;
  object-fit: contain;
}

.sb-footer-text {
  max-width: 420px;
  color: var(--sb-text-soft);
  line-height: 1.86;
}

.sb-footer-menu,
.sb-footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sb-footer-menu li,
.sb-footer-list li {
  margin-bottom: 12px;
}

.sb-footer-menu a,
.sb-footer-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sb-text-soft);
}

.sb-footer-menu a::before,
.sb-footer-list a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sb-primary) 0%, var(--sb-accent) 100%);
  box-shadow: 0 0 0 4px rgba(255,250,246,0.22);
}

.sb-footer-menu a:hover,
.sb-footer-list a:hover {
  color: var(--sb-heading);
  transform: translateX(4px);
}

.sb-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sb-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,250,246,0.58);
  border: 1px solid rgba(112, 86, 67, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 8px 18px rgba(67, 45, 29, 0.04);
  transition:
    transform var(--sb-ease),
    background var(--sb-ease),
    box-shadow var(--sb-ease),
    border-color var(--sb-ease);
}

.sb-footer-contact-item:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.84);
  border-color: rgba(112, 86, 67, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.76),
    0 14px 24px rgba(67, 45, 29, 0.07);
}

.sb-footer-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(182,140,114,0.18) 0%, rgba(223,195,177,0.34) 100%);
  color: var(--sb-heading);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
}

.sb-footer-icon svg {
  width: 18px;
  height: 18px;
}

.sb-footer-contact-text {
  color: var(--sb-text-soft);
  line-height: 1.7;
}

.sb-footer-contact-text strong {
  color: var(--sb-heading);
  font-weight: 700;
}

.sb-footer-contact-text a {
  color: var(--sb-text-soft);
  font-weight: 600;
}

.sb-footer-contact-text a:hover {
  color: var(--sb-heading);
}

.sb-footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(112, 86, 67, 0.12);
}

.sb-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.sb-footer-bottom p {
  margin: 0;
  color: var(--sb-text-soft);
  font-size: 14px;
}

.sb-footer-bottom-logo {
  display: inline-flex;
  align-items: center;
  opacity: 0.78;
}

.sb-footer-bottom-logo-img {
  display: block;
  width: auto;
  height: 38px;
  object-fit: contain;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1180px) {
  .sb-header-shell {
    grid-template-columns: auto 1fr auto;
  }

  .sb-header-actions {
    display: none;
  }

  .sb-cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  body {
    padding-top: 92px;
  }

  .sb-wrap,
  .sb-wrap-narrow,
  .sb-footer-shell {
    width: min(100% - 36px, var(--sb-max));
  }

  .sb-header-shell {
    padding: 0 20px;
    min-height: 90px;
    grid-template-columns: auto 1fr auto;
  }

  .sb-header.is-scrolled .sb-header-shell {
    min-height: 78px;
  }

  .sb-nav,
  .sb-header-actions {
    display: none;
  }

  .sb-mobile-actions {
    display: flex;
  }

  .sb-menu-toggle {
    display: block !important;
    justify-self: end;
    margin-left: 0;
    flex: 0 0 auto;
  }

  .sb-hero-grid,
  .sb-split,
  .sb-split-about,
  .sb-about-clean,
  .sb-contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .sb-cards-3,
  .sb-services-grid,
  .sb-testimonials,
  .sb-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .sb-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sb-hero-image,
  .sb-hero-slider,
  .sb-hero-image img,
  .sb-hero-slider img,
  .sb-home-hero .sb-hero-image,
  .sb-home-hero .sb-hero-slider,
  .sb-home-hero .sb-hero-slider img {
    min-height: 460px;
  }

  .sb-about-image-wrap {
    max-width: 320px;
  }

  .sb-about-image-card {
    max-width: 360px;
  }
}

@media (max-width: 980px) {
  .sb-header-actions {
    display: none;
  }

  .sb-mobile-actions {
    display: flex;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: var(--sb-header-height-mobile);
  }

  .sb-wrap,
  .sb-wrap-narrow,
  .sb-footer-shell {
    width: min(100% - 24px, var(--sb-max));
  }

  .sb-header-shell {
    padding: 0 14px;
    min-height: var(--sb-header-height-mobile);
    gap: 14px;
  }

  .sb-header.is-scrolled .sb-header-shell {
    min-height: 72px;
  }

  .custom-logo {
    max-height: 44px;
  }

  .sb-logo-badge {
    padding: 8px 12px;
  }

  .sb-header-logo-img {
    height: 44px;
  }

  .sb-header.is-scrolled .sb-header-logo-img,
  .sb-header.is-scrolled .custom-logo {
    height: 38px;
    max-height: 38px;
  }

  .sb-header-bottom-gradient {
    height: 3px;
  }

  .sb-hero {
    padding: 28px 0 72px;
  }

  .sb-hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "copy";
    gap: 24px;
  }

  .sb-hero-visual {
    grid-area: visual;
  }

  .sb-hero-copy {
    grid-area: copy;
  }

  .sb-section {
    padding: 74px 0;
  }

  .sb-section::before {
    width: calc(100% - 32px);
  }

  .sb-hero-card {
    padding: 12px;
    border-radius: 26px;
  }

  .sb-hero-image,
  .sb-hero-slider,
  .sb-hero-image img,
  .sb-hero-slider img {
    min-height: 380px;
  }

  .sb-home-hero .sb-hero-image,
  .sb-home-hero .sb-hero-slider,
  .sb-home-hero .sb-hero-slider img {
    min-height: 400px;
  }

  .sb-split-image img {
    min-height: 360px;
  }

  .sb-feature-card,
  .sb-service-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .sb-cta-box,
  .sb-quote-box,
  .sb-testimonials-block {
    padding: 40px 22px;
    border-radius: 24px;
  }

  .sb-content-card,
  .sb-content-card-page {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .sb-page-shell {
    padding: 18px 0 48px;
  }

  .sb-page-card {
    border-radius: 24px;
  }

  .sb-page-card-head {
    padding: 26px 20px 14px;
  }

  .sb-page-card-content {
    padding: 4px 20px 24px;
  }

  .sb-page-card-content .sb-section-intro {
    margin: 0 auto 24px;
  }

  .sb-services-block {
    gap: 22px;
    padding: 56px 0 66px;
  }

  .sb-services-head {
    margin-bottom: 28px;
  }

  .sb-services-head h1 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .sb-service-card h3 {
    font-size: 23px;
  }

  .sb-about-image-wrap {
    max-width: 260px;
  }

  .sb-about-image-card {
    max-width: 320px;
    padding: 10px;
    border-radius: 24px;
  }

  .sb-about-image-card img {
    border-radius: 18px;
  }

  .sb-about-copy-clean h2 {
    font-size: clamp(34px, 9vw, 44px);
    margin-bottom: 16px;
  }

  .sb-about-copy-clean .sb-lead {
    font-size: 18px;
    line-height: 1.65;
  }

  .sb-about-copy-clean p {
    font-size: 16px;
    line-height: 1.8;
  }

  .sb-about-signature span {
    font-size: 26px;
  }

  .sb-testimonials {
    gap: 18px;
    margin-top: 26px;
  }

  .sb-testimonial-card,
  .sb-testimonial-card-clean {
    padding: 26px 20px 22px;
    border-radius: 24px;
  }

  .sb-testimonials-block {
    margin-top: 60px;
  }

  .sb-testimonials-intro {
    margin-bottom: 28px;
  }

  .sb-portfolio-image img {
    height: 220px;
  }

  .sb-contact-section {
    padding: 56px 0 66px;
  }

  .sb-contact-wrap {
    width: min(100% - 24px, 100%);
  }

  .sb-contact-head {
    margin-bottom: 28px;
  }

  .sb-contact-head h1 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .sb-contact-info,
  .sb-contact-form-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .sb-contact-logo img {
    max-width: 170px;
  }

  .sb-contact-link {
    padding: 16px;
    border-radius: 18px;
  }

  .sb-contact-value {
    font-size: 16px;
  }

  .sb-contact-form-card .ff-el-form-control,
  .sb-contact-form-card input[type="text"],
  .sb-contact-form-card input[type="email"],
  .sb-contact-form-card input[type="tel"],
  .sb-contact-form-card input[type="number"],
  .sb-contact-form-card input[type="url"],
  .sb-contact-form-card input[type="date"],
  .sb-contact-form-card textarea,
  .sb-contact-form-card select {
    min-height: 54px;
    padding: 15px 16px;
    border-radius: 16px;
  }

  .sb-contact-form-card textarea {
    min-height: 140px;
  }

  .sb-contact-form-card .ff-btn-submit,
  .sb-contact-form-card button.ff-btn,
  .sb-contact-form-card input[type="submit"].ff-btn {
    width: 100%;
  }

  .sb-footer {
    padding: 76px 0 24px;
  }

  .sb-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sb-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sb-footer-logo-img {
    max-height: 54px;
  }

  .sb-footer-bottom-logo-img {
    height: 30px;
  }

  .sb-legal-section {
    padding: 58px 16px 74px;
  }

  .sb-legal-card {
    margin-top: 18px;
    padding: 22px 18px;
    border-radius: 22px;
  }

  .sb-legal-card h3 {
    margin-top: 22px;
    font-size: 0.98rem;
  }

  .sb-legal-card p,
  .sb-legal-card li {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .sb-legal-card ul {
    padding-left: 18px;
  }
}

@media (max-width: 480px) {
  .sb-btn,
  .sb-btn:visited {
    width: 100%;
  }

  .sb-hero-actions {
    flex-direction: column;
  }

  .sb-hero-card-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: center;
  }
}

@media (min-width: 1025px) {
  .sb-menu-toggle {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .sb-legal-wrap {
    width: min(100%, 1020px);
  }
}

/* =========================
   REDUCED MOTION
========================= */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

/* =========================================
   ULTRA LUXURY REFINEMENT
   HEADER / HERO / FOOTER / FRONT PAGE
========================================= */

.sb-header-cta-wrap {
  position: relative;
}

.sb-mobile-panel-intro {
  margin: 0 0 20px;
}

.sb-mobile-panel-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sb-text-soft);
}

.sb-hero-copy {
  max-width: 640px;
}

.sb-hero-copy h1 {
  max-width: 11ch;
}

.sb-hero-copy .sb-lead {
  max-width: 34ch;
}

.sb-hero-card {
  transform: translateY(0);
}

.sb-hero-visual:hover .sb-hero-card {
  transform: translateY(-4px);
}

.sb-portfolio-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sb-portfolio-content p {
  line-height: 1.85;
}

.sb-footer-col-brand {
  padding-right: 10px;
}

.sb-footer-text {
  max-width: 36ch;
}

.sb-footer-bottom {
  text-align: center;
}

.sb-footer-bottom-inner {
  justify-content: center;
}

@media (min-width: 1025px) {
  .sb-header-shell {
    gap: 28px;
  }

  .sb-nav-list {
    padding-left: 12px;
    padding-right: 12px;
  }

  .sb-hero-grid {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .sb-hero-copy h1,
  .sb-hero-copy .sb-lead {
    max-width: none;
  }

  .sb-mobile-panel-intro {
    margin-bottom: 16px;
  }
}

/* =========================================
   FRONT PAGE – ULTRA LUXURY WOW REFINEMENT
========================================= */

.sb-home-intro-band {
  padding-top: 22px;
  padding-bottom: 34px;
}

.sb-home-intro-band::before {
  display: none;
}

.sb-home-intro-card {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 4vw, 52px) clamp(22px, 4vw, 48px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.34) 0%, rgba(255,255,255,0) 28%),
    linear-gradient(180deg, rgba(255,250,246,0.90) 0%, rgba(255,250,246,0.76) 100%);
  border: 1px solid rgba(182, 140, 114, 0.14);
  box-shadow:
    0 24px 56px rgba(67, 45, 29, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.72);
}

.sb-home-intro-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(182,140,114,0) 0%,
    rgba(182,140,114,0.48) 50%,
    rgba(182,140,114,0) 100%
  );
}

.sb-home-intro-card h2 {
  margin-bottom: 16px;
}

.sb-home-intro-card .sb-lead {
  max-width: 50ch;
  margin: 0 auto;
}

.sb-home-section-head {
  max-width: 780px;
  margin: 0 auto 42px;
}

.sb-home-section-head h2 {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.sb-home-section-head .sb-lead {
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.sb-home-hero .sb-hero-copy h1 {
  max-width: 10ch;
}

.sb-home-hero .sb-hero-copy .sb-lead {
  max-width: 35ch;
}

.sb-home-hero .sb-hero-card {
  box-shadow:
    0 46px 100px rgba(67, 45, 29, 0.18),
    0 24px 60px rgba(182, 140, 114, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.68);
}

.sb-home-hero .sb-hero-visual {
  position: relative;
}

.sb-home-hero .sb-hero-visual::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(223,195,177,0.24) 0%, rgba(223,195,177,0) 74%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}

.sb-home-hero .sb-hero-card-badge {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255,250,246,0.76);
  box-shadow:
    0 14px 28px rgba(67, 45, 29, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.72);
}

.sb-portfolio-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.sb-portfolio-image {
  position: relative;
}

.sb-portfolio-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20,12,8,0.02) 0%, rgba(20,12,8,0) 42%, rgba(20,12,8,0.16) 100%);
}

.sb-portfolio-content {
  flex: 1 1 auto;
  padding: 30px 24px 26px;
}

.sb-portfolio-content h3 {
  margin-bottom: 12px;
}

.sb-portfolio-content p {
  margin-bottom: 0;
}

.sb-quote-box-large {
  padding: clamp(48px, 5vw, 74px) clamp(26px, 5vw, 54px);
}

.sb-quote-box-large .sb-quote p {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.sb-home-cta-section {
  overflow: hidden;
}

.sb-home-cta-section .sb-cta-box-home {
  position: relative;
}

.sb-home-cta-section .sb-cta-box-home::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0) 72%);
  pointer-events: none;
}

.sb-home-cta-actions {
  justify-content: center;
}

@media (max-width: 768px) {
  .sb-home-intro-band {
    padding-top: 6px;
    padding-bottom: 18px;
  }

  .sb-home-intro-card {
    padding: 28px 18px;
    border-radius: 24px;
  }

  .sb-home-section-head {
    margin-bottom: 30px;
  }

  .sb-home-section-head h2,
  .sb-home-section-head .sb-lead,
  .sb-home-hero .sb-hero-copy h1,
  .sb-home-hero .sb-hero-copy .sb-lead,
  .sb-quote-box-large .sb-quote p {
    max-width: none;
  }

  .sb-home-cta-actions {
    flex-direction: column;
  }
}

/* =========================================
   FRONT PAGE PORTFOLIO – UNTEREINANDER
========================================= */

.sb-cards-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.sb-portfolio-card {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  align-items: stretch;
  min-height: 100%;
}

.sb-portfolio-image {
  height: 100%;
}

.sb-portfolio-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.sb-portfolio-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 30px;
}

@media (max-width: 768px) {
  .sb-portfolio-card,
  .sb-portfolio-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .sb-portfolio-card:nth-child(even) .sb-portfolio-image,
  .sb-portfolio-card:nth-child(even) .sb-portfolio-content {
    order: initial;
  }

  .sb-portfolio-image img {
    min-height: 240px;
  }

  .sb-portfolio-content {
    padding: 24px 20px;
  }
}

/* =========================================
   HEADER BRANDLINE – DESKTOP
========================================= */

.sb-header-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: start;
}

.sb-header-brandline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 2px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(75, 61, 52, 0.58);
  opacity: 0.95;
  transition:
    color var(--sb-ease),
    opacity var(--sb-ease),
    transform var(--sb-ease);
}

.sb-header-brandline-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sb-primary) 0%, var(--sb-accent) 100%);
  box-shadow: 0 0 0 4px rgba(223, 195, 177, 0.12);
  flex: 0 0 auto;
}

.sb-header-brand:hover .sb-header-brandline {
  color: rgba(43, 33, 29, 0.78);
  opacity: 1;
}

/* =========================================
   HEADER BRANDLINE – MOBILE FEINVERSION
========================================= */

@media (max-width: 1180px) {
  .sb-header-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }

  .sb-header-brandline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(75, 61, 52, 0.56);
    opacity: 0.95;
  }

  .sb-header-brandline-dot {
    width: 3px;
    height: 3px;
    flex: 0 0 3px;
    box-shadow: 0 0 0 3px rgba(223, 195, 177, 0.10);
  }
}

@media (max-width: 768px) {
  .sb-header-brand {
    gap: 8px;
  }

  .sb-header-brandline {
    max-width: 118px;
    gap: 5px;
    font-size: 8px;
    letter-spacing: 0.10em;
  }

  .sb-header-brandline-dot {
    width: 3px;
    height: 3px;
    flex: 0 0 3px;
  }
}

@media (max-width: 420px) {
  .sb-header-brandline {
    max-width: 98px;
    font-size: 7px;
    letter-spacing: 0.08em;
    gap: 4px;
  }

  .sb-header-brandline-dot {
    width: 2px;
    height: 2px;
    flex: 0 0 2px;
    box-shadow: 0 0 0 2px rgba(223, 195, 177, 0.08);
  }
}

/* =========================================
   HEADER BRANDLINE – DESKTOP + MOBILE CLEAN
========================================= */

.sb-header-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: start;
  min-width: 0;
}

.sb-header-brandline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(75, 61, 52, 0.58);
  opacity: 0.95;
  min-width: 0;
}

.sb-header-brandline-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sb-primary) 0%, var(--sb-accent) 100%);
  box-shadow: 0 0 0 4px rgba(223, 195, 177, 0.12);
  flex: 0 0 auto;
}

.sb-brandline-mobile {
  display: none;
}

.sb-header-brand:hover .sb-header-brandline {
  color: rgba(43, 33, 29, 0.78);
  opacity: 1;
}

/* Tablet */
@media (max-width: 1180px) {
  .sb-header-brand {
    gap: 10px;
  }

  .sb-header-brandline {
    gap: 6px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .sb-header-brandline-dot {
    width: 3px;
    height: 3px;
    box-shadow: 0 0 0 3px rgba(223, 195, 177, 0.10);
  }
}

/* Mobile: kurze Version anzeigen */
@media (max-width: 768px) {
  .sb-header-brand {
    gap: 8px;
    min-width: 0;
  }

  .sb-header-brandline {
    gap: 5px;
    font-size: 8px;
    letter-spacing: 0.10em;
    max-width: 110px;
    overflow: hidden;
  }

  .sb-brandline-desktop {
    display: none;
  }

  .sb-brandline-mobile {
    display: inline;
  }

  .sb-header-brandline-dot.sb-brandline-desktop {
    display: none;
  }

  .sb-header-brandline-dot.sb-brandline-mobile {
    display: inline-block;
    width: 3px;
    height: 3px;
    flex: 0 0 3px;
  }
}

/* Sehr kleine Geräte */
@media (max-width: 420px) {
  .sb-header-brandline {
    font-size: 7px;
    letter-spacing: 0.08em;
    max-width: 92px;
    gap: 4px;
  }

  .sb-header-brandline-dot.sb-brandline-mobile {
    width: 2px;
    height: 2px;
    flex: 0 0 2px;
    box-shadow: 0 0 0 2px rgba(223, 195, 177, 0.08);
  }
}

/* =========================================
   MOBILE HEADER LAYOUT FIX
========================================= */

@media (max-width: 768px) {
  .sb-header-shell {
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center;
    gap: 10px;
  }

  .sb-header-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
  }

  .sb-logo-link {
    flex: 0 0 auto;
  }

  .sb-logo-badge {
    padding: 6px 10px;
    border-radius: 18px;
  }

  .sb-header-logo-img {
    height: 38px;
    width: auto;
    max-width: 118px;
    object-fit: contain;
  }

  .sb-mobile-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex: 0 0 auto;
    margin-left: 0;
  }

  .sb-social-link-mobile {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .sb-menu-toggle {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .sb-menu-toggle span:nth-child(1) {
    top: 15px;
  }

  .sb-menu-toggle span:nth-child(2) {
    top: 21px;
  }

  .sb-menu-toggle span:nth-child(3) {
    top: 27px;
  }

  .sb-menu-toggle.is-active span:nth-child(1),
  .sb-menu-toggle.is-active span:nth-child(3) {
    top: 21px;
  }

  .sb-header-brandline {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(75, 61, 52, 0.56);
  }

  .sb-header-brandline span {
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .sb-header-brandline-dot {
    width: 3px;
    height: 3px;
    flex: 0 0 3px;
    box-shadow: 0 0 0 2px rgba(223, 195, 177, 0.10);
  }
}

/* Kleine Smartphones: Brandline lieber ausblenden als abschneiden */
@media (max-width: 430px) {
  .sb-header-brandline {
    display: none;
  }

  .sb-header-logo-img {
    height: 40px;
    max-width: 130px;
  }

  .sb-logo-badge {
    padding: 6px 12px;
  }
}

/* =========================================
   FEEDBACK / KUNDENSTIMMEN PAGE – FINAL
========================================= */

.sb-feedback-page {
  padding: clamp(74px, 9vw, 122px) 0 clamp(72px, 8vw, 112px);
}

.sb-feedback-page .sb-services-head {
  max-width: 860px;
  margin: 0 auto 40px;
}

.sb-feedback-page .sb-services-head h1 {
  margin: 10px 0 14px;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.sb-feedback-page .sb-services-head .sb-lead {
  margin: 0 auto;
  max-width: 40ch;
  font-size: 17px;
  line-height: 1.95;
  color: var(--sb-text-soft);
}

/* =========================================
   FEEDBACK FLOW
========================================= */

.sb-feedback-flow-wrap {
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin-top: 8px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 14px 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* ganz sanfter Fade links / rechts */
.sb-feedback-flow-wrap::before,
.sb-feedback-flow-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 34px;
  z-index: 4;
  pointer-events: none;
}

.sb-feedback-flow-wrap::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(248, 242, 237, 0.78) 0%,
    rgba(248, 242, 237, 0.24) 45%,
    rgba(248, 242, 237, 0) 100%
  );
}

.sb-feedback-flow-wrap::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(248, 242, 237, 0.78) 0%,
    rgba(248, 242, 237, 0.24) 45%,
    rgba(248, 242, 237, 0) 100%
  );
}

.sb-feedback-flow {
  position: relative;
  width: 100%;
}

.sb-feedback-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: max-content;
  padding: 0 26px;
  will-change: transform;
  animation: sbFeedbackMarquee 220s linear infinite;
  animation-play-state: running;
}

.sb-feedback-flow.is-paused .sb-feedback-track {
  animation-play-state: paused;
}

/* =========================================
   FEEDBACK CARDS
========================================= */

.sb-feedback-card,
.sb-feedback-card-large {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex: 0 0 390px;
  min-height: 240px;
  padding: 32px 28px 28px;
  border-radius: 34px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 251, 248, 0.95) 0%,
      rgba(255, 248, 244, 0.88) 100%
    );
  border: 1px solid rgba(182, 140, 114, 0.10);
  box-shadow:
    0 18px 38px rgba(67, 45, 29, 0.05),
    0 6px 14px rgba(67, 45, 29, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.sb-feedback-card-large {
  flex-basis: 450px;
}

.sb-feedback-card:hover,
.sb-feedback-card-large:hover {
  transform: translateY(-6px);
  background:
    linear-gradient(
      180deg,
      rgba(255, 253, 250, 0.99) 0%,
      rgba(255, 250, 246, 0.94) 100%
    );
  border-color: rgba(182, 140, 114, 0.18);
  box-shadow:
    0 24px 48px rgba(67, 45, 29, 0.08),
    0 10px 18px rgba(67, 45, 29, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.sb-feedback-card::before,
.sb-feedback-card-large::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(182, 140, 114, 0) 0%,
    rgba(182, 140, 114, 0.30) 50%,
    rgba(182, 140, 114, 0) 100%
  );
}

.sb-feedback-card::after,
.sb-feedback-card-large::after {
  content: "“";
  position: absolute;
  top: 16px;
  right: 22px;
  font-family: var(--sb-font-heading);
  font-size: 68px;
  line-height: 1;
  color: rgba(182, 140, 114, 0.14);
  pointer-events: none;
}

.sb-feedback-card p,
.sb-feedback-card-large p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--sb-heading);
  font-size: 18px;
  line-height: 1.82;
  max-width: 30ch;
}

/* =========================================
   FEEDBACK BUTTON
========================================= */

.sb-feedback-controls {
  display: flex;
  justify-content: center;
  margin: 20px 0 0;
}

.sb-feedback-toggle,
.sb-feedback-toggle:visited {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(182, 140, 114, 0.16) !important;
  background:
    linear-gradient(
      180deg,
      rgba(255, 250, 246, 0.95) 0%,
      rgba(247, 238, 229, 0.92) 100%
    ) !important;
  color: var(--sb-heading) !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow:
    0 10px 24px rgba(67, 45, 29, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
  cursor: pointer;
  outline: none !important;
}

.sb-feedback-toggle:hover {
  transform: translateY(-1px);
  color: var(--sb-heading) !important;
  border-color: rgba(182, 140, 114, 0.24) !important;
  background:
    linear-gradient(
      180deg,
      rgba(255, 252, 249, 0.99) 0%,
      rgba(250, 243, 236, 0.96) 100%
    ) !important;
  box-shadow:
    0 14px 28px rgba(67, 45, 29, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.sb-feedback-toggle:focus,
.sb-feedback-toggle:focus-visible,
.sb-feedback-toggle:active {
  outline: none !important;
  color: var(--sb-heading) !important;
  border-color: rgba(182, 140, 114, 0.24) !important;
  background:
    linear-gradient(
      180deg,
      rgba(255, 252, 249, 0.99) 0%,
      rgba(250, 243, 236, 0.96) 100%
    ) !important;
  box-shadow:
    0 0 0 4px rgba(182, 140, 114, 0.10),
    0 14px 28px rgba(67, 45, 29, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
}

.sb-feedback-toggle[aria-pressed="true"] {
  color: var(--sb-white) !important;
  border-color: rgba(154, 113, 88, 0.30) !important;
  background:
    linear-gradient(
      135deg,
      var(--sb-primary-deep) 0%,
      var(--sb-primary) 45%,
      #c79d80 100%
    ) !important;
  box-shadow:
    0 14px 30px rgba(154, 113, 88, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

.sb-feedback-toggle[aria-pressed="true"]:hover,
.sb-feedback-toggle[aria-pressed="true"]:focus,
.sb-feedback-toggle[aria-pressed="true"]:focus-visible,
.sb-feedback-toggle[aria-pressed="true"]:active {
  color: var(--sb-white) !important;
  border-color: rgba(154, 113, 88, 0.36) !important;
  background:
    linear-gradient(
      135deg,
      var(--sb-primary-deep) 0%,
      var(--sb-primary-dark) 45%,
      #bb8f71 100%
    ) !important;
  box-shadow:
    0 18px 34px rgba(154, 113, 88, 0.24),
    0 0 0 4px rgba(182, 140, 114, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.24) !important;
}

.sb-feedback-toggle::-moz-focus-inner {
  border: 0;
}

/* =========================================
   FOLLOW-UP SECTIONS
========================================= */

.sb-google-reviews-block {
  margin-top: 86px;
}

.sb-feedback-cta {
  margin-top: 78px;
}

/* =========================================
   ANIMATION
========================================= */

@keyframes sbFeedbackMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1180px) {
  .sb-feedback-track {
    animation-duration: 190s;
  }
}

@media (max-width: 1024px) {
  .sb-feedback-track {
    gap: 20px;
    padding: 0 20px;
    animation-duration: 170s;
  }

  .sb-feedback-card {
    flex-basis: 340px;
  }

  .sb-feedback-card-large {
    flex-basis: 410px;
  }

  .sb-feedback-card p,
  .sb-feedback-card-large p {
    font-size: 17px;
    line-height: 1.75;
  }
}

@media (max-width: 768px) {
  .sb-feedback-page {
    padding: 56px 0 72px;
  }

  .sb-feedback-flow-wrap {
    padding: 10px 0;
  }

  .sb-feedback-flow-wrap::before,
  .sb-feedback-flow-wrap::after {
    width: 18px;
  }

  .sb-feedback-track {
    gap: 16px;
    padding: 0 14px;
    animation-duration: 135s;
  }

  .sb-feedback-card,
  .sb-feedback-card-large {
    flex: 0 0 82vw;
    min-height: 220px;
    padding: 24px 18px 18px;
    border-radius: 24px;
  }

  .sb-feedback-card p,
  .sb-feedback-card-large p {
    font-size: 16px;
    line-height: 1.68;
    max-width: none;
  }

  .sb-feedback-card::after,
  .sb-feedback-card-large::after {
    top: 12px;
    right: 16px;
    font-size: 52px;
  }

  .sb-feedback-controls {
    margin: 18px 0 0;
  }

  .sb-feedback-toggle,
  .sb-feedback-toggle:visited {
    min-height: 44px;
    padding: 0 16px;
    font-size: 13px;
  }

  .sb-google-reviews-block {
    margin-top: 64px;
  }
}

@media (max-width: 480px) {
  .sb-feedback-track {
    animation-duration: 120s;
  }

  .sb-feedback-card,
  .sb-feedback-card-large {
    flex-basis: 86vw;
  }

  .sb-feedback-card p,
  .sb-feedback-card-large p {
    font-size: 15.5px;
    line-height: 1.66;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sb-feedback-track {
    animation: none !important;
  }
}

/* Nummer unten rechts in jeder Feedback-Karte */
.sb-feedback-card,
.sb-feedback-card-large {
  padding-bottom: 52px;
}

.sb-feedback-count {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.82);
  border: 1px solid rgba(182, 140, 114, 0.14);
  box-shadow:
    0 8px 18px rgba(67, 45, 29, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--sb-text-soft);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 768px) {
  .sb-feedback-card,
  .sb-feedback-card-large {
    padding-bottom: 46px;
  }

  .sb-feedback-count {
    right: 16px;
    bottom: 14px;
    min-width: 50px;
    min-height: 26px;
    padding: 0 9px;
    font-size: 11px;
  }
}

/* =========================================
   GOOGLE REVIEWS – IMAGE SHOWCASE
========================================= */

.sb-google-reviews-block {
  margin-top: 86px;
}

.sb-google-rating-hero {
  display: flex;
  justify-content: center;
  margin: 0 0 34px;
}

.sb-google-rating-badge {
  min-width: min(100%, 520px);
  padding: 26px 28px 24px;
  border-radius: 30px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0) 26%),
    linear-gradient(180deg, rgba(255,250,246,0.95) 0%, rgba(247,238,229,0.90) 100%);
  border: 1px solid rgba(182, 140, 114, 0.14);
  box-shadow:
    0 20px 44px rgba(67, 45, 29, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.84);
}

.sb-google-rating-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.sb-google-rating-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(182, 140, 114, 0.14);
  color: var(--sb-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sb-google-rating-score {
  font-family: var(--sb-font-heading);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  color: var(--sb-heading);
}

.sb-google-rating-stars {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1;
  color: #d4a95f;
  text-shadow: 0 2px 10px rgba(212, 169, 95, 0.18);
}

.sb-google-rating-note {
  margin: 0;
  color: var(--sb-text-soft);
  font-size: 15px;
  line-height: 1.8;
}

.sb-google-reviews-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.sb-google-review-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,251,248,0.95) 0%, rgba(255,248,244,0.88) 100%);
  border: 1px solid rgba(182, 140, 114, 0.12);
  box-shadow:
    0 20px 42px rgba(67, 45, 29, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.84);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.22s ease;
}

.sb-google-review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(182, 140, 114, 0.20);
  box-shadow:
    0 26px 54px rgba(67, 45, 29, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.88);
}

.sb-google-review-image {
  position: relative;
  padding: 12px;
}

.sb-google-review-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  object-fit: cover;
}

.sb-google-review-link-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

@media (max-width: 1024px) {
  .sb-google-reviews-gallery {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .sb-google-reviews-block {
    margin-top: 64px;
  }

  .sb-google-rating-badge {
    padding: 22px 18px 20px;
    border-radius: 24px;
  }

  .sb-google-rating-stars {
    gap: 6px;
    font-size: 24px;
  }

  .sb-google-review-card {
    border-radius: 24px;
  }

  .sb-google-review-image {
    padding: 10px;
  }

  .sb-google-review-image img {
    border-radius: 18px;
  }

  .sb-google-review-link-wrap {
    margin-top: 22px;
  }
}

/* =========================================
   PRICING / PREISE
========================================= */

.sb-pricing-section {
  padding: clamp(74px, 9vw, 122px) 0 clamp(70px, 8vw, 110px);
}

.sb-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.sb-pricing-card,
.sb-pricing-gift-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0) 26%),
    linear-gradient(180deg, rgba(255,250,246,0.94) 0%, rgba(255,250,246,0.84) 100%);
  border: 1px solid rgba(182, 140, 114, 0.16);
  box-shadow:
    0 24px 64px rgba(63, 51, 44, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.sb-pricing-card::before,
.sb-pricing-gift-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(182,140,114,0) 0%,
    rgba(182,140,114,0.46) 50%,
    rgba(182,140,114,0) 100%
  );
}

.sb-pricing-card {
  padding: 32px 30px 30px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.22s ease;
}

.sb-pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(182, 140, 114, 0.24);
  box-shadow:
    0 30px 70px rgba(63, 51, 44, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.78);
}

.sb-pricing-card-wide {
  grid-column: span 2;
}

.sb-pricing-card-head {
  margin-bottom: 22px;
}

.sb-pricing-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(182, 140, 114, 0.16);
  color: var(--sb-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sb-pricing-card h2,
.sb-pricing-gift-card h2 {
  margin-bottom: 10px;
}

.sb-pricing-price {
  font-family: var(--sb-font-heading);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  color: var(--sb-heading);
}

.sb-pricing-price span {
  display: inline-block;
  margin-left: 6px;
  font-family: var(--sb-font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--sb-text-soft);
}

.sb-pricing-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.sb-pricing-list li {
  position: relative;
  padding-left: 22px;
  color: var(--sb-text);
  line-height: 1.8;
}

.sb-pricing-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sb-primary) 0%, var(--sb-accent) 100%);
  box-shadow: 0 0 0 6px rgba(223, 195, 177, 0.14);
}

.sb-pricing-extra {
  margin-top: 28px;
  padding-top: 24px;
  position: relative;
}

.sb-pricing-extra::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 92px;
  height: 1px;
  background: rgba(182, 140, 114, 0.32);
}

.sb-pricing-extra h3,
.sb-pricing-block h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.sb-pricing-extra-price,
.sb-pricing-inline-price {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--sb-heading);
}

.sb-pricing-extra p,
.sb-pricing-block p {
  margin: 0;
  color: var(--sb-text-soft);
  line-height: 1.8;
}

.sb-pricing-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.sb-pricing-block {
  padding: 22px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(182, 140, 114, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.76),
    0 10px 24px rgba(63, 51, 44, 0.04);
}

/* Gutschein Highlight */
.sb-pricing-gift-card {
  grid-column: span 2;
  padding: 42px 38px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.40) 0%, rgba(255,255,255,0) 26%),
    linear-gradient(135deg, rgba(239,224,213,0.94) 0%, rgba(247,238,229,0.96) 50%, rgba(232,215,203,0.96) 100%);
  box-shadow:
    0 34px 84px rgba(154, 113, 88, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.78);
}

.sb-pricing-gift-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0) 72%);
  pointer-events: none;
}

.sb-pricing-gift-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(182, 140, 114, 0.18);
  color: var(--sb-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 10px 24px rgba(63, 51, 44, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.84);
}

.sb-pricing-gift-card .sb-eyebrow {
  margin-bottom: 14px;
}

.sb-pricing-gift-card .sb-lead {
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
}

.sb-pricing-gift-card p:not(.sb-lead) {
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.sb-pricing-gift-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .sb-pricing-grid {
    grid-template-columns: 1fr;
  }

  .sb-pricing-card-wide,
  .sb-pricing-gift-card {
    grid-column: span 1;
  }

  .sb-pricing-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sb-pricing-section {
    padding: 56px 0 70px;
  }

  .sb-pricing-grid {
    margin-top: 28px;
    gap: 18px;
  }

  .sb-pricing-card,
  .sb-pricing-gift-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .sb-pricing-price {
    font-size: clamp(30px, 9vw, 42px);
  }

  .sb-pricing-extra {
    margin-top: 22px;
    padding-top: 20px;
  }

  .sb-pricing-block {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .sb-pricing-gift-badge {
    font-size: 11px;
    letter-spacing: 0.07em;
    padding: 0 12px;
  }

  .sb-pricing-gift-actions .sb-btn {
    width: 100%;
  }
}

/* =========================================
   PRICING PAGE INTRO
========================================= */

.sb-pricing-page {
  padding: clamp(76px, 9vw, 126px) 0 clamp(76px, 8vw, 118px);
}

.sb-pricing-hero {
  max-width: 860px;
  margin: 0 auto 46px;
}

.sb-pricing-hero h1 {
  margin-bottom: 18px;
}

.sb-pricing-hero .sb-lead {
  max-width: 34ch;
  margin-left: auto;
  margin-right: auto;
}

.sb-pricing-hero-text {
  max-width: 60ch;
  margin: 18px auto 0;
  color: var(--sb-text-soft);
  line-height: 1.85;
}

/* =========================================
   FAQ
========================================= */

.sb-pricing-faq {
  margin-top: clamp(64px, 8vw, 110px);
}

.sb-pricing-faq-head {
  max-width: 760px;
  margin: 0 auto 34px;
}

.sb-faq-grid {
  display: grid;
  gap: 18px;
}

.sb-faq-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0) 24%),
    linear-gradient(180deg, rgba(255,250,246,0.94) 0%, rgba(255,250,246,0.86) 100%);
  border: 1px solid rgba(182, 140, 114, 0.16);
  box-shadow:
    0 18px 46px rgba(63, 51, 44, 0.07),
    inset 0 1px 0 rgba(255,255,255,0.72);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.sb-faq-card:hover {
  transform: translateY(-3px);
  border-color: rgba(182, 140, 114, 0.22);
  box-shadow:
    0 22px 56px rgba(63, 51, 44, 0.09),
    inset 0 1px 0 rgba(255,255,255,0.76);
}

.sb-faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: var(--sb-heading);
}

.sb-faq-question span:first-child {
  font-family: var(--sb-font-heading);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.3;
}

.sb-faq-icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.sb-faq-icon::before,
.sb-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--sb-primary);
  transform: translate(-50%, -50%);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.sb-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.sb-faq-answer {
  padding: 0 26px 24px;
  color: var(--sb-text-soft);
  line-height: 1.85;
}

.sb-faq-answer p {
  margin: 0;
  max-width: 72ch;
}

/* Optional: Wenn du FAQ erst später per JS aufklappbar machen willst */
.sb-faq-card.is-open .sb-faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scale(0.7);
}

/* Mobile */
@media (max-width: 768px) {
  .sb-pricing-page {
    padding: 58px 0 72px;
  }

  .sb-pricing-hero {
    margin-bottom: 28px;
  }

  .sb-pricing-faq {
    margin-top: 54px;
  }

  .sb-faq-card {
    border-radius: 22px;
  }

  .sb-faq-question {
    padding: 20px 18px;
    gap: 16px;
  }

  .sb-faq-answer {
    padding: 0 18px 20px;
  }

  .sb-faq-question span:first-child {
    font-size: 20px;
  }
}

/* =========================================
   PRICING CTA
========================================= */

.sb-pricing-cta {
  margin-top: clamp(60px, 8vw, 100px);
  padding-top: 40px;
}

.sb-pricing-cta h2 {
  margin-bottom: 14px;
}

.sb-pricing-cta .sb-lead {
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}

.sb-btn-large {
  margin-top: 22px;
  padding: 14px 32px;
  font-size: 16px;
}

/* =========================================
   PRICING BENEFITS
========================================= */

.sb-pricing-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0 0 42px;
}

.sb-pricing-benefit {
  position: relative;
  padding: 28px 24px 24px;
  border-radius: 28px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0) 24%),
    linear-gradient(180deg, rgba(255,250,246,0.92) 0%, rgba(255,250,246,0.84) 100%);
  border: 1px solid rgba(182, 140, 114, 0.14);
  box-shadow:
    0 18px 42px rgba(63, 51, 44, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.74);
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease;
}

.sb-pricing-benefit:hover {
  transform: translateY(-4px);
  border-color: rgba(182, 140, 114, 0.22);
  box-shadow:
    0 24px 54px rgba(63, 51, 44, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
}

.sb-pricing-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(233,221,210,0.95) 0%, rgba(245,237,229,0.98) 100%);
  border: 1px solid rgba(182, 140, 114, 0.16);
  box-shadow:
    0 14px 30px rgba(63, 51, 44, 0.07),
    inset 0 1px 0 rgba(255,255,255,0.8);
  color: var(--sb-primary);
  font-size: 26px;
  line-height: 1;
}

.sb-pricing-benefit h3 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2vw, 28px);
}

.sb-pricing-benefit p {
  margin: 0;
  color: var(--sb-text-soft);
  line-height: 1.8;
}

/* Mobile */
@media (max-width: 1024px) {
  .sb-pricing-benefits {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .sb-pricing-benefit {
    padding: 22px 18px 20px;
    border-radius: 22px;
  }

  .sb-pricing-benefit-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
    font-size: 22px;
  }

  .sb-pricing-benefit h3 {
    font-size: 22px;
  }
}

/* =========================================
   FAQ
========================================= */

.sb-faq-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.45), transparent 34%),
    var(--sb-bg, #f8f4ef);
}

.sb-faq-wrap {
  width: min(100% - 32px, 980px);
  margin: 0 auto;
}

.sb-faq-intro {
  max-width: 760px;
  margin: 0 auto 52px;
}

.sb-faq-intro h1 {
  margin-bottom: 18px;
}

.sb-faq-lead {
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: var(--sb-text-soft);
  max-width: 720px;
}

.sb-faq-list {
  display: grid;
  gap: 16px;
}

.sb-faq-item {
  background: rgba(255, 250, 246, 0.82);
  border: 1px solid rgba(184, 147, 117, 0.16);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(63, 51, 44, 0.07);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.sb-faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(63, 51, 44, 0.1);
  border-color: rgba(184, 147, 117, 0.24);
}

.sb-faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  padding: 24px 26px;
  cursor: pointer;
  color: var(--sb-heading);
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  outline: none;
}

.sb-faq-question:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(184, 147, 117, 0.35);
}

.sb-faq-icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.sb-faq-icon::before,
.sb-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1.8px;
  background: var(--sb-primary);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.sb-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.sb-faq-item.is-open .sb-faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.3);
}

.sb-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.sb-faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 26px 0;
  color: var(--sb-text);
  line-height: 1.85;
}

.sb-faq-item.is-open .sb-faq-answer {
  grid-template-rows: 1fr;
}

.sb-faq-item.is-open .sb-faq-answer > p {
  padding: 0 26px 26px;
}

@media (max-width: 767px) {
  .sb-faq-section {
    padding: 84px 0;
  }

  .sb-faq-lead {
    font-size: 16px;
    line-height: 1.75;
  }

  .sb-faq-question {
    padding: 20px 20px;
    font-size: 16px;
    gap: 14px;
  }

  .sb-faq-answer > p {
    padding: 0 20px 0;
    font-size: 15px;
    line-height: 1.8;
  }

  .sb-faq-item.is-open .sb-faq-answer > p {
    padding: 0 20px 22px;
  }
}

/* =========================================
   FAQ PAGE – CLEAN / WARM / EDITORIAL
========================================= */

.sb-faq-page {
  padding: clamp(76px, 9vw, 126px) 0 clamp(72px, 8vw, 112px);
}

.sb-faq-page-head {
  max-width: 820px;
  margin: 0 auto 40px;
}

.sb-faq-page-head h1 {
  margin-bottom: 18px;
}

.sb-faq-page-head .sb-lead {
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.sb-faq-list-modern {
  display: grid;
  gap: 18px;
}

.sb-faq-item-modern {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0) 24%),
    linear-gradient(180deg, rgba(255,250,246,0.94) 0%, rgba(255,250,246,0.86) 100%);
  border: 1px solid rgba(182, 140, 114, 0.14);
  box-shadow:
    0 18px 46px rgba(63, 51, 44, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.74);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.sb-faq-item-modern:hover {
  transform: translateY(-2px);
  border-color: rgba(182, 140, 114, 0.22);
  box-shadow:
    0 24px 56px rgba(63, 51, 44, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.78);
}

.sb-faq-item-modern::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(182,140,114,0) 0%,
    rgba(182,140,114,0.42) 50%,
    rgba(182,140,114,0) 100%
  );
}

/* WICHTIG: harte Überschreibung gegen globale Button-Styles */
.sb-faq-toggle,
.sb-faq-toggle:hover,
.sb-faq-toggle:focus,
.sb-faq-toggle:focus-visible,
.sb-faq-toggle:active {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 22px !important;
  padding: 24px 26px !important;
  margin: 0 !important;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: left !important;
  text-decoration: none !important;
  cursor: pointer !important;
  font: inherit !important;
  color: var(--sb-heading) !important;
}

.sb-faq-toggle::-moz-focus-inner {
  border: 0;
}

.sb-faq-title {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--sb-font-heading);
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--sb-heading);
}

.sb-faq-toggle-icon {
  position: relative;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(247,238,229,0.96) 0%, rgba(239,224,213,0.92) 100%);
  border: 1px solid rgba(182, 140, 114, 0.18);
  box-shadow:
    0 10px 22px rgba(67, 45, 29, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.82);
}

.sb-faq-toggle-icon::before,
.sb-faq-toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2.5px;
  border-radius: 999px;
  background: var(--sb-primary-deep);
  transform: translate(-50%, -50%);
  transition:
    transform 0.28s ease,
    opacity 0.28s ease,
    background 0.28s ease;
}

.sb-faq-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.sb-faq-item-modern.is-open .sb-faq-toggle-icon {
  background: linear-gradient(135deg, rgba(182,140,114,0.18) 0%, rgba(223,195,177,0.32) 100%);
  border-color: rgba(182, 140, 114, 0.24);
}

.sb-faq-item-modern.is-open .sb-faq-toggle-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.35);
}

.sb-faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.34s ease;
}

.sb-faq-panel-inner {
  overflow: hidden;
}

.sb-faq-panel-inner p {
  margin: 0;
  padding: 0 26px 0 26px;
  color: var(--sb-text);
  line-height: 1.9;
}

.sb-faq-item-modern.is-open .sb-faq-panel {
  grid-template-rows: 1fr;
}

.sb-faq-item-modern.is-open .sb-faq-panel-inner p {
  padding: 0 26px 26px 26px;
}

.sb-faq-toggle:focus-visible .sb-faq-toggle-icon {
  box-shadow:
    0 0 0 4px rgba(182, 140, 114, 0.12),
    0 10px 22px rgba(67, 45, 29, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.82);
}

/* Mobile */
@media (max-width: 768px) {
  .sb-faq-page {
    padding: 58px 0 72px;
  }

  .sb-faq-page-head {
    margin-bottom: 28px;
  }

  .sb-faq-list-modern {
    gap: 14px;
  }

  .sb-faq-item-modern {
    border-radius: 24px;
  }

  .sb-faq-toggle,
  .sb-faq-toggle:hover,
  .sb-faq-toggle:focus,
  .sb-faq-toggle:focus-visible,
  .sb-faq-toggle:active {
    padding: 18px 18px !important;
    gap: 14px !important;
  }

  .sb-faq-title {
    font-size: 20px;
    line-height: 1.22;
  }

  .sb-faq-toggle-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
  }

  .sb-faq-toggle-icon::before,
  .sb-faq-toggle-icon::after {
    width: 14px;
    height: 2.5px;
  }

  .sb-faq-panel-inner p {
    padding: 0 18px 0 18px;
    font-size: 15px;
    line-height: 1.8;
  }

  .sb-faq-item-modern.is-open .sb-faq-panel-inner p {
    padding: 0 18px 20px 18px;
  }
}

/* =========================================
   FAQ MOBILE FIX / TEXT WRAP
========================================= */

.sb-faq-toggle,
.sb-faq-toggle:hover,
.sb-faq-toggle:focus,
.sb-faq-toggle:focus-visible,
.sb-faq-toggle:active {
  align-items: flex-start !important;
}

.sb-faq-title {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  white-space: normal !important;
  word-break: normal;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.sb-faq-toggle-icon {
  flex: 0 0 auto;
  margin-top: 2px;
}

/* Tablet + Mobile */
@media (max-width: 991px) {
  .sb-faq-toggle,
  .sb-faq-toggle:hover,
  .sb-faq-toggle:focus,
  .sb-faq-toggle:focus-visible,
  .sb-faq-toggle:active {
    padding: 18px 18px !important;
    gap: 12px !important;
    align-items: flex-start !important;
  }

  .sb-faq-title {
    font-size: 20px;
    line-height: 1.28;
    padding-top: 1px;
  }

  .sb-faq-toggle-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    margin-top: 1px;
  }
}

/* Kleine Smartphones */
@media (max-width: 640px) {
  .sb-faq-item-modern {
    border-radius: 22px;
  }

  .sb-faq-toggle,
  .sb-faq-toggle:hover,
  .sb-faq-toggle:focus,
  .sb-faq-toggle:focus-visible,
  .sb-faq-toggle:active {
    padding: 16px 16px !important;
    gap: 10px !important;
  }

  .sb-faq-title {
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.01em;
  }

  .sb-faq-toggle-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }

  .sb-faq-toggle-icon::before,
  .sb-faq-toggle-icon::after {
    width: 12px;
    height: 2.25px;
  }

  .sb-faq-panel-inner p {
    padding: 0 16px 0 16px;
    font-size: 15px;
    line-height: 1.75;
  }

  .sb-faq-item-modern.is-open .sb-faq-panel-inner p {
    padding: 0 16px 18px 16px;
  }
}

/* =========================================
   FRONT PAGE – PORTFOLIO KOMPAKT
========================================= */

.sb-portfolio-grid-compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.sb-portfolio-compact-card {
  position: relative;
  min-width: 0;
}

.sb-portfolio-compact-link {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: stretch;
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0) 24%),
    linear-gradient(180deg, rgba(255,250,246,0.94) 0%, rgba(255,250,246,0.84) 100%);
  border: 1px solid rgba(182, 140, 114, 0.14);
  box-shadow:
    0 18px 40px rgba(63, 51, 44, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.76);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.sb-portfolio-compact-link:hover {
  transform: translateY(-5px);
  border-color: rgba(182, 140, 114, 0.22);
  box-shadow:
    0 24px 54px rgba(63, 51, 44, 0.09),
    inset 0 1px 0 rgba(255,255,255,0.82);
}

.sb-portfolio-compact-link::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(182,140,114,0) 0%,
    rgba(182,140,114,0.42) 50%,
    rgba(182,140,114,0) 100%
  );
  pointer-events: none;
}

.sb-portfolio-compact-image {
  position: relative;
  min-height: 230px;
  overflow: hidden;
}

.sb-portfolio-compact-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,12,8,0.02) 0%, rgba(20,12,8,0) 44%, rgba(20,12,8,0.14) 100%);
  pointer-events: none;
}

.sb-portfolio-compact-image img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform 0.75s ease;
}

.sb-portfolio-compact-link:hover .sb-portfolio-compact-image img {
  transform: scale(1.05);
}

.sb-portfolio-compact-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 24px 22px;
}

.sb-portfolio-compact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sb-primary);
}

.sb-portfolio-compact-kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sb-primary) 0%, var(--sb-accent) 100%);
}

.sb-portfolio-compact-content h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.1vw, 30px);
  line-height: 1.05;
}

.sb-portfolio-compact-content p {
  margin: 0;
  color: var(--sb-text-soft);
  line-height: 1.75;
  font-size: 15px;
}

/* Tablet */
@media (max-width: 1024px) {
  .sb-portfolio-grid-compact {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .sb-portfolio-compact-link {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .sb-portfolio-compact-image,
  .sb-portfolio-compact-image img {
    min-height: 220px;
  }

  .sb-portfolio-compact-content {
    padding: 20px 18px 18px;
  }

  .sb-portfolio-compact-content h3 {
    font-size: 24px;
  }

  .sb-portfolio-compact-content p {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* =========================================
   FRONT PAGE – PORTFOLIO OVERLAY
========================================= */

.sb-portfolio-overlay-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.sb-portfolio-overlay-card {
  min-width: 0;
}

.sb-portfolio-overlay-link {
  position: relative;
  display: block;
  min-height: 420px;
  overflow: hidden;
  border-radius: 30px;
  text-decoration: none;
  background: #ddd;
  box-shadow: 0 18px 40px rgba(63, 51, 44, 0.10);
  isolation: isolate;
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease;
}

.sb-portfolio-overlay-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(63, 51, 44, 0.16);
}

.sb-portfolio-overlay-link img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.9s ease;
}

.sb-portfolio-overlay-link:hover img {
  transform: scale(1.06);
}

.sb-portfolio-overlay-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(28, 20, 16, 0.06) 0%,
      rgba(28, 20, 16, 0.10) 28%,
      rgba(28, 20, 16, 0.34) 62%,
      rgba(28, 20, 16, 0.78) 100%
    );
}

.sb-portfolio-overlay-link::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(184, 147, 117, 0) 0%,
    rgba(184, 147, 117, 0.08) 100%
  );
  pointer-events: none;
}

.sb-portfolio-overlay-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 28px 28px 26px;
  color: #fff;
}

.sb-portfolio-overlay-content h3 {
  margin: 0 0 10px;
  color: #fff !important;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.sb-portfolio-overlay-content p {
  margin: 0;
  max-width: 92%;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.75;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
}

/* Tablet */
@media (max-width: 1024px) {
  .sb-portfolio-overlay-grid {
    grid-template-columns: 1fr;
  }

  .sb-portfolio-overlay-link,
  .sb-portfolio-overlay-link img {
    min-height: 400px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .sb-portfolio-overlay-grid {
    gap: 18px;
  }

  .sb-portfolio-overlay-link,
  .sb-portfolio-overlay-link img {
    min-height: 340px;
    border-radius: 24px;
  }

  .sb-portfolio-overlay-content {
    padding: 22px 18px 20px;
  }

  .sb-portfolio-overlay-content h3 {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .sb-portfolio-overlay-content p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.65;
  }
}

/* =========================================
   PORTFOLIO OVERLAY – KOMPAKTER
   unten anfügen
========================================= */

.sb-portfolio-overlay-grid {
  gap: 18px;
}

.sb-portfolio-overlay-link {
  min-height: 320px;
  border-radius: 24px;
}

.sb-portfolio-overlay-link img {
  min-height: 320px;
}

.sb-portfolio-overlay-link::after {
  height: 110px;
}

.sb-portfolio-overlay-content {
  padding: 20px 20px 18px;
}

.sb-portfolio-overlay-content h3 {
  font-size: clamp(24px, 2vw, 30px);
  margin: 0 0 8px;
}

.sb-portfolio-overlay-content p {
  max-width: 88%;
  font-size: 14px;
  line-height: 1.6;
}

/* Etwas kompakter auf normalen Laptops */
@media (max-width: 1200px) {
  .sb-portfolio-overlay-link,
  .sb-portfolio-overlay-link img {
    min-height: 290px;
  }

  .sb-portfolio-overlay-content {
    padding: 18px 18px 16px;
  }

  .sb-portfolio-overlay-content h3 {
    font-size: 24px;
  }

  .sb-portfolio-overlay-content p {
    font-size: 13.5px;
    line-height: 1.55;
    max-width: 92%;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .sb-portfolio-overlay-grid {
    gap: 16px;
  }

  .sb-portfolio-overlay-link,
  .sb-portfolio-overlay-link img {
    min-height: 270px;
  }

  .sb-portfolio-overlay-content {
    padding: 18px 18px 16px;
  }

  .sb-portfolio-overlay-content h3 {
    font-size: 23px;
    margin-bottom: 7px;
  }

  .sb-portfolio-overlay-content p {
    font-size: 13.5px;
    line-height: 1.55;
    max-width: 100%;
  }
}

/* Smartphone */
@media (max-width: 768px) {
  .sb-portfolio-overlay-grid {
    gap: 14px;
  }

  .sb-portfolio-overlay-link,
  .sb-portfolio-overlay-link img {
    min-height: 235px;
    border-radius: 20px;
  }

  .sb-portfolio-overlay-link::after {
    height: 90px;
  }

  .sb-portfolio-overlay-content {
    padding: 16px 15px 14px;
  }

  .sb-portfolio-overlay-content h3 {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .sb-portfolio-overlay-content p {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* Sehr kleine Smartphones */
@media (max-width: 480px) {
  .sb-portfolio-overlay-link,
  .sb-portfolio-overlay-link img {
    min-height: 210px;
  }

  .sb-portfolio-overlay-content {
    padding: 14px 14px 12px;
  }

  .sb-portfolio-overlay-content h3 {
    font-size: 20px;
  }

  .sb-portfolio-overlay-content p {
    font-size: 12.5px;
    line-height: 1.45;
  }
}

/* =========================================
   PORTFOLIO OVERLAY – ALLE KARTEN GLEICH HOCH
   unten anfügen
========================================= */

.sb-portfolio-overlay-card {
  display: flex;
}

.sb-portfolio-overlay-link {
  width: 100%;
  min-height: 0 !important;
  aspect-ratio: 16 / 10;
}

.sb-portfolio-overlay-link img {
  width: 100%;
  height: 100%;
  min-height: 0 !important;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Falls einzelne Bilder optisch etwas höher sitzen sollen */
.sb-portfolio-overlay-card:nth-child(1) .sb-portfolio-overlay-link img {
  object-position: center center;
}

.sb-portfolio-overlay-card:nth-child(2) .sb-portfolio-overlay-link img {
  object-position: center center;
}

.sb-portfolio-overlay-card:nth-child(3) .sb-portfolio-overlay-link img {
  object-position: center center;
}

.sb-portfolio-overlay-card:nth-child(4) .sb-portfolio-overlay-link img {
  object-position: center center;
}

/* Tablet */
@media (max-width: 1024px) {
  .sb-portfolio-overlay-link {
    aspect-ratio: 16 / 9;
  }
}

/* Smartphone */
@media (max-width: 768px) {
  .sb-portfolio-overlay-link {
    aspect-ratio: 16 / 11;
  }
}

/* Kleine Smartphones */
@media (max-width: 480px) {
  .sb-portfolio-overlay-link {
    aspect-ratio: 16 / 12;
  }
}

/* =========================================
   FRONT PAGE HERO – FINAL
   größer, höher, bündig zur restlichen Frontpage
========================================= */

.sb-home-hero {
  padding-top: 72px;
  padding-bottom: 72px;
}

/* WICHTIG: gleiche Breite wie die anderen Frontpage-Bereiche */
.sb-home-hero .sb-wrap {
  width: min(100% - 48px, var(--sb-max));
  max-width: none;
}

.sb-home-hero .sb-hero-grid {
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: 34px;
  align-items: center;
}

.sb-home-hero .sb-hero-copy {
  max-width: 470px;
}

.sb-home-hero .sb-hero-copy h1 {
  max-width: 9ch;
  margin-bottom: 18px;
}

.sb-home-hero .sb-hero-copy .sb-lead,
.sb-home-hero .sb-hero-copy p {
  max-width: 32ch;
}

.sb-home-hero .sb-hero-visual,
.sb-home-hero .sb-hero-visual-landscape {
  width: 100%;
  min-width: 0;
}

.sb-home-hero .sb-hero-card,
.sb-home-hero .sb-hero-card-landscape {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  padding: 8px;
  border-radius: 30px;
  background: rgba(255, 248, 243, 0.62);
  border: 1px solid rgba(191, 157, 128, 0.18);
  box-shadow:
    0 32px 80px rgba(83, 58, 39, 0.14),
    0 12px 28px rgba(184, 147, 117, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.sb-home-hero .sb-hero-card::before {
  display: none;
}

.sb-home-hero .sb-hero-image,
.sb-home-hero .sb-hero-slider,
.sb-home-hero .sb-hero-slider-landscape,
.sb-home-hero .sb-hero-slider-landscape.sb-hero-image {
  width: 100%;
  min-height: 620px;
  aspect-ratio: 16 / 10.8;
  border-radius: 24px;
  overflow: hidden;
  background: #efe7df;
}

.sb-home-hero .sb-hero-image img,
.sb-home-hero .sb-hero-slider img,
.sb-home-hero .sb-hero-slider-landscape img {
  width: 100%;
  height: 100%;
  min-height: 620px !important;
  object-fit: cover;
  object-position: center center;
}

.sb-home-hero .sb-hero-card-badge {
  left: 16px;
  bottom: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #4c3e34;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow:
    0 10px 24px rgba(56, 39, 28, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
}

/* große Screens */
@media (min-width: 1400px) {
  .sb-home-hero .sb-hero-grid {
    grid-template-columns: minmax(300px, 0.64fr) minmax(0, 1.36fr);
    gap: 32px;
  }

  .sb-home-hero .sb-hero-image,
  .sb-home-hero .sb-hero-slider,
  .sb-home-hero .sb-hero-slider-landscape,
  .sb-home-hero .sb-hero-slider-landscape.sb-hero-image {
    min-height: 680px;
    aspect-ratio: 16 / 11;
  }

  .sb-home-hero .sb-hero-image img,
  .sb-home-hero .sb-hero-slider img,
  .sb-home-hero .sb-hero-slider-landscape img {
    min-height: 680px !important;
  }
}

/* Laptop */
@media (max-width: 1200px) {
  .sb-home-hero .sb-hero-grid {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 28px;
  }

  .sb-home-hero .sb-hero-image,
  .sb-home-hero .sb-hero-slider,
  .sb-home-hero .sb-hero-slider-landscape,
  .sb-home-hero .sb-hero-slider-landscape.sb-hero-image {
    min-height: 560px;
    aspect-ratio: 16 / 10;
  }

  .sb-home-hero .sb-hero-image img,
  .sb-home-hero .sb-hero-slider img,
  .sb-home-hero .sb-hero-slider-landscape img {
    min-height: 560px !important;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .sb-home-hero {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .sb-home-hero .sb-wrap {
    width: min(100% - 36px, var(--sb-max));
  }

  .sb-home-hero .sb-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sb-home-hero .sb-hero-copy,
  .sb-home-hero .sb-hero-copy h1,
  .sb-home-hero .sb-hero-copy .sb-lead,
  .sb-home-hero .sb-hero-copy p {
    max-width: 100%;
  }

  .sb-home-hero .sb-hero-card,
  .sb-home-hero .sb-hero-card-landscape {
    padding: 8px;
    border-radius: 24px;
  }

  .sb-home-hero .sb-hero-image,
  .sb-home-hero .sb-hero-slider,
  .sb-home-hero .sb-hero-slider-landscape,
  .sb-home-hero .sb-hero-slider-landscape.sb-hero-image {
    min-height: 480px;
    aspect-ratio: 16 / 10;
    border-radius: 18px;
  }

  .sb-home-hero .sb-hero-image img,
  .sb-home-hero .sb-hero-slider img,
  .sb-home-hero .sb-hero-slider-landscape img {
    min-height: 480px !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .sb-home-hero .sb-wrap {
    width: min(100% - 24px, var(--sb-max));
  }

  .sb-home-hero .sb-hero-card,
  .sb-home-hero .sb-hero-card-landscape {
    padding: 7px;
    border-radius: 20px;
  }

  .sb-home-hero .sb-hero-image,
  .sb-home-hero .sb-hero-slider,
  .sb-home-hero .sb-hero-slider-landscape,
  .sb-home-hero .sb-hero-slider-landscape.sb-hero-image {
    min-height: 360px;
    aspect-ratio: 4 / 3.2;
    border-radius: 16px;
  }

  .sb-home-hero .sb-hero-image img,
  .sb-home-hero .sb-hero-slider img,
  .sb-home-hero .sb-hero-slider-landscape img {
    min-height: 360px !important;
  }

  .sb-home-hero .sb-hero-card-badge {
    left: 12px;
    bottom: 12px;
    padding: 8px 12px;
    font-size: 11px;
  }
}

/* =========================================
   FEEDBACK FLOW – SANFTER SCHLEIER LINKS / RECHTS
========================================= */

.sb-feedback-flow-wrap {
  position: relative;
  overflow: hidden;
}

.sb-feedback-flow-wrap::before,
.sb-feedback-flow-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 5;
  pointer-events: none;
}

.sb-feedback-flow-wrap::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(248, 242, 237, 1) 0%,
    rgba(248, 242, 237, 0.92) 20%,
    rgba(248, 242, 237, 0.72) 45%,
    rgba(248, 242, 237, 0.35) 72%,
    rgba(248, 242, 237, 0) 100%
  );
}

.sb-feedback-flow-wrap::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(248, 242, 237, 1) 0%,
    rgba(248, 242, 237, 0.92) 20%,
    rgba(248, 242, 237, 0.72) 45%,
    rgba(248, 242, 237, 0.35) 72%,
    rgba(248, 242, 237, 0) 100%
  );
}

@media (max-width: 768px) {
  .sb-feedback-flow-wrap::before,
  .sb-feedback-flow-wrap::after {
    width: 70px;
  }
}

/* =========================================
   FOOTER – CLEAN EDITORIAL REWORK
========================================= */

.sb-footer {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 64px 0 22px;
  background:
    radial-gradient(circle at top left, rgba(255, 249, 244, 0.52) 0%, rgba(255, 249, 244, 0) 28%),
    radial-gradient(circle at 88% 18%, rgba(223, 195, 177, 0.16) 0%, rgba(223, 195, 177, 0) 24%),
    linear-gradient(180deg, #eadbce 0%, #e4d3c5 100%);
  border-top: 1px solid rgba(112, 86, 67, 0.08);
}

.sb-footer::before {
  display: none;
}

.sb-footer-topline {
  width: min(100%, 220px);
  height: 1px;
  margin: 0 auto 34px;
  background: linear-gradient(
    90deg,
    rgba(182, 140, 114, 0) 0%,
    rgba(182, 140, 114, 0.75) 50%,
    rgba(182, 140, 114, 0) 100%
  );
  opacity: 0.95;
}

.sb-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 34px;
  align-items: start;
  padding-bottom: 24px;
}

.sb-footer-col h4 {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.1;
  color: var(--sb-heading);
}

.sb-footer-col-brand {
  padding-right: 18px;
}

.sb-footer-logo-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
}

.sb-footer-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 22px;
  background: rgba(255, 250, 246, 0.68);
  border: 1px solid rgba(112, 86, 67, 0.08);
  box-shadow:
    0 10px 24px rgba(67, 45, 29, 0.04),
    inset 0 1px 0 rgba(255,255,255,0.74);
}

.sb-footer-logo-img {
  max-height: 56px;
  width: auto;
  object-fit: contain;
}

.sb-footer-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sb-primary-dark);
}

.sb-footer-text {
  max-width: 34ch;
  margin: 0 0 16px;
  color: var(--sb-text-soft);
  line-height: 1.8;
  font-size: 15px;
}

.sb-footer-social {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--sb-heading);
}

.sb-footer-social::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: width var(--sb-ease);
}

.sb-footer-social:hover::after {
  width: 42px;
}

.sb-footer-contact-list {
  display: grid;
  gap: 14px;
}

.sb-footer-contact-item {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  display: grid;
  gap: 4px;
}

.sb-footer-contact-item:hover {
  transform: none;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.sb-footer-contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sb-primary-dark);
}

.sb-footer-contact-text {
  color: var(--sb-text);
  line-height: 1.75;
  font-size: 15px;
}

.sb-footer-contact-text a {
  color: var(--sb-text);
  font-weight: 500;
}

.sb-footer-contact-text a:hover {
  color: var(--sb-heading);
}

.sb-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.sb-footer-menu li {
  margin: 0;
}

.sb-footer-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 2px 0;
  color: var(--sb-text);
  font-size: 15px;
  font-weight: 500;
  transition:
    color var(--sb-ease),
    transform var(--sb-ease);
}

.sb-footer-menu a::before {
  display: none !important;
}

.sb-footer-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: rgba(132, 93, 71, 0.72);
  transition: width var(--sb-ease);
}

.sb-footer-menu a:hover {
  color: var(--sb-heading);
  transform: translateX(2px);
}

.sb-footer-menu a:hover::after,
.sb-footer-menu .current-menu-item > a::after,
.sb-footer-menu .current_page_item > a::after {
  width: 100%;
}

.sb-footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(112, 86, 67, 0.10);
}

.sb-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}

.sb-footer-bottom p {
  margin: 0;
  color: var(--sb-text-soft);
  font-size: 13px;
  line-height: 1.6;
}

.sb-footer-bottom-divider {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(132, 93, 71, 0.34);
}

/* Alte Icon-Kreise im Footer deaktivieren */
.sb-footer-icon {
  display: none !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .sb-footer {
    padding: 56px 0 22px;
  }

  .sb-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .sb-footer-col-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .sb-footer-text {
    max-width: 42ch;
  }
}

@media (max-width: 768px) {
  .sb-footer {
    padding: 48px 0 20px;
  }

  .sb-footer-topline {
    margin-bottom: 26px;
  }

  .sb-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 20px;
  }

  .sb-footer-col h4 {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .sb-footer-logo-badge {
    padding: 9px 12px;
    border-radius: 18px;
  }

  .sb-footer-logo-img {
    max-height: 48px;
  }

  .sb-footer-text,
  .sb-footer-contact-text,
  .sb-footer-menu a {
    font-size: 14px;
    line-height: 1.7;
  }

  .sb-footer-bottom-inner {
    gap: 8px;
  }

  .sb-footer-bottom-divider {
    display: none;
  }

  .sb-footer-bottom {
    text-align: center;
  }
}

/* =========================================
   FOOTER – KONTAKT ACTIONS
========================================= */

.sb-footer-social {
  display: none;
}

.sb-footer-contact-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.sb-footer-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,250,246,0.88) 0%, rgba(247,238,230,0.82) 100%);
  border: 1px solid rgba(112, 86, 67, 0.10);
  box-shadow:
    0 10px 24px rgba(67, 45, 29, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.82);
  color: var(--sb-heading);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease,
    background 0.24s ease;
}

.sb-footer-action:hover {
  transform: translateY(-3px);
  color: var(--sb-primary-deep);
  border-color: rgba(182, 140, 114, 0.22);
  background:
    linear-gradient(180deg, rgba(255,252,249,0.98) 0%, rgba(249,241,234,0.94) 100%);
  box-shadow:
    0 16px 30px rgba(67, 45, 29, 0.08),
    0 6px 16px rgba(182, 140, 114, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.88);
}

.sb-footer-action svg {
  width: 19px;
  height: 19px;
  display: block;
}

.sb-footer-action span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  white-space: nowrap;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(43, 33, 29, 0.92);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
  box-shadow: 0 12px 24px rgba(43, 33, 29, 0.18);
}

.sb-footer-action:hover span,
.sb-footer-action:focus-visible span {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
  .sb-footer-contact-actions {
    gap: 10px;
    margin-top: 16px;
  }

  .sb-footer-action {
    width: 46px;
    height: 46px;
  }

  .sb-footer-action svg {
    width: 18px;
    height: 18px;
  }

  .sb-footer-action span {
    display: none;
  }
}

.sb-footer-col-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.sb-footer-logo-link {
  display: inline-flex;
  margin-bottom: 8px;
}

.sb-footer-kicker {
  display: block;
  margin: 0 0 10px;
}