*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
}

body.seyrek-site {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-family: var(--s-font-body);
  font-size: var(--s-body);
  font-weight: 400;
  line-height: 1.5;
  color: var(--s-ink);
  background: var(--s-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  text-transform: none;
}

#willkommen,
#leistungen,
#objekte,
#tippgeber,
#erbschaft,
#grundsteuer,
#referenzen,
#formulare,
#kontakt {
  scroll-margin-top: var(--s-sticky-offset);
}

body.seyrek-site h1,
body.seyrek-site h2,
body.seyrek-site h3,
body.seyrek-site h4,
body.seyrek-site h5 {
  font-family: var(--s-font-head);
  font-style: normal;
  text-decoration: none;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 0.5em;
}

body.seyrek-site h1 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--s-muted);
}

body.seyrek-site h2 {
  font-size: var(--s-heading);
  font-weight: 400;
  line-height: 1.3;
  color: var(--s-navy);
}

body.seyrek-site h3 {
  font-size: var(--s-subheading);
  font-weight: 500;
  line-height: 1.5;
  color: var(--s-muted);
}

body.seyrek-site h4,
body.seyrek-site h5 {
  font-size: var(--s-h4);
  font-weight: 600;
  line-height: 1.5;
  color: var(--s-muted);
}

body.seyrek-site h6 {
  font-family: var(--s-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  color: var(--s-ink);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.sy-wrap {
  width: min(var(--s-wrap), calc(100% - 48px));
  margin: 0 auto;
}

/* Contact bar */
.contact-bar {
  background: var(--s-grey-dark);
  color: #fff;
  font-family: var(--s-font-body);
  font-size: 1rem;
  padding: 8px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.contact-bar a { color: #fff; text-decoration: none; }
.contact-bar a.contact-bar-phone { color: rgba(255,255,255,0.88); }
.contact-bar a:hover,
.contact-bar a:focus { color: #fff; opacity: 0.85; }

/* Nav */
.sy-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--s-border);
}
.sy-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  gap: 24px;
}
.sy-logo img {
  height: 56px;
  width: auto;
  image-rendering: high-quality;
}
.sy-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.sy-nav a {
  font-family: var(--s-font-head);
  font-size: var(--s-nav);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--s-ink);
  padding: 0.5rem;
  transition: color 0.3s ease-in-out;
}
.sy-nav a:hover,
.sy-nav a.is-active { color: var(--s-muted); }
.sy-nav-has-sub {
  position: relative;
}
.sy-nav-sub {
  display: none;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--s-border);
  box-shadow: 0 8px 24px rgba(68, 87, 115, 0.12);
  z-index: 50;
}
.sy-nav-has-sub:hover > .sy-nav-sub,
.sy-nav-has-sub.is-open > .sy-nav-sub {
  display: block;
}
.sy-nav-sub a {
  display: block;
  padding: 1rem;
  white-space: nowrap;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--s-ink);
}
.sy-nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  color: var(--s-navy);
  cursor: pointer;
}
.sy-nav-toggle svg { width: 20px; height: 20px; }

.sy-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.sy-lang-flags {
  display: flex;
  align-items: center;
  gap: 6px;
}
.sy-lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 22px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 3px;
  background: none;
  cursor: pointer;
  opacity: 0.72;
  transition: opacity 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.sy-lang-flag svg {
  display: block;
  width: 24px;
  height: 16px;
  border-radius: 1px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.sy-lang-flag:hover { opacity: 1; }
.sy-lang-flag.is-active {
  opacity: 1;
  border-color: var(--s-navy);
  box-shadow: 0 1px 4px rgba(68, 87, 115, 0.2);
}

/* Section headings */
.section-heading-wrap {
  text-align: center;
  padding: 0 0 24px;
}
.section-heading {
  font-family: var(--s-font-head);
  font-size: var(--s-heading);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--s-navy);
  text-align: center;
  display: inline-block;
  position: relative;
  padding: 16px 40px;
  margin: 0;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
}
.section-heading::before,
.section-heading::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--s-navy);
  opacity: 0.35;
}
.section-heading::before { margin-bottom: 14px; }
.section-heading::after { margin-top: 14px; }
.section-subtitle {
  font-family: var(--s-font-body);
  font-size: var(--s-body);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--s-muted);
  text-align: center;
  margin: 0 0 32px;
  line-height: 1.5;
}

/* Section backgrounds */
.sec-white {
  background: var(--s-white);
  padding: var(--s-section-pad);
}
.sec-grey {
  background: var(--s-grey-bg);
  padding: var(--s-section-pad);
}
.sec-photo {
  position: relative;
  padding: var(--s-section-pad);
  overflow: hidden;
  min-height: 400px;
  color: #fff;
}
.sec-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.72);
}
.sec-photo .sec-content {
  position: relative;
  z-index: 1;
}
.sec-photo .section-heading,
.sec-photo .section-subtitle,
.sec-photo .sy-prose p,
.sec-photo .sy-ref-milestones strong,
.sec-photo .sy-ref-milestones span {
  color: #fff;
}
.sec-photo .section-heading::before,
.sec-photo .section-heading::after {
  background: #fff;
  opacity: 0.5;
}

.sec-grundsteuer {
  position: relative;
  overflow: hidden;
  background: var(--s-grey-bg);
}
.sec-grundsteuer-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(1.05) saturate(0.85);
  opacity: 0.22;
  pointer-events: none;
}
.sec-grundsteuer .sec-content { position: relative; z-index: 1; }
.sec-grundsteuer .sy-prose p {
  color: #374151;
  text-align: center;
}
@media (max-width: 900px) {
  .sec-grundsteuer-bg { background-attachment: scroll; }
}

@media (max-width: 900px) {
  .sec-photo-bg { background-attachment: scroll; }
  .sec-white, .sec-grey, .sec-photo { padding: var(--s-section-pad-sm); }
  .contact-bar { padding: 8px 20px; gap: 16px; }
  .sy-header-inner { padding: 0 20px; }
  .sy-nav-toggle { display: inline-flex; }
  .sy-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--s-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px 20px;
    gap: 14px;
  }
  .sy-nav.is-open { display: flex; }
  .sy-nav-has-sub { width: 100%; }
  .sy-nav-sub {
    position: static;
    display: none;
    border: 0;
    box-shadow: none;
    padding: 4px 0 4px 14px;
    min-width: 0;
  }
  .sy-nav-has-sub.is-open > .sy-nav-sub { display: block; }
  .sy-nav-has-sub:hover > .sy-nav-sub { display: none; }
  .sy-nav-has-sub.is-open:hover > .sy-nav-sub { display: block; }
}

/* Hero — single image, slow Ken Burns */
.hero {
  position: relative;
  height: 82vh;
  min-height: 560px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/seyrek/hero_main.jpg?v=20260813d');
  background-size: cover;
  background-position: center center;
  animation: ken-burns 20s ease-in-out infinite alternate;
}
@keyframes ken-burns {
  from {
    transform: scale(1);
    background-position: center center;
  }
  to {
    transform: scale(1.08);
    background-position: center 40%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 70%,
    rgba(0,0,0,0.45) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero-mark {
  width: min(360px, 70vw);
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35));
}
.hero-motto {
  margin: 0;
  max-width: 720px;
  font-family: var(--s-font-head);
  font-size: var(--s-subheading);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}
.sy-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 0;
  background: rgba(68, 87, 115, 0.85);
  color: #fff;
  font-family: var(--s-font-body);
  font-size: var(--s-btn);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.sy-pill:hover { background: var(--s-muted); border-color: transparent; }

/* Welcome */
.welcome-section {
  background: var(--s-white);
  padding: var(--s-section-pad);
  text-align: center;
}
.welcome-slogan {
  font-family: var(--s-font-head);
  font-size: var(--s-subheading);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--s-muted);
  margin: 0 0 32px;
  line-height: 1.5;
}
.welcome-body {
  max-width: 760px;
  margin: 0 auto;
}
.welcome-body p,
.sy-prose p {
  font-family: var(--s-font-body);
  font-size: var(--s-body);
  font-weight: 400;
  color: var(--s-ink);
  line-height: 1.5;
  margin: 0 0 16px;
  text-align: center;
}
.welcome-body p:last-child,
.sy-prose p:last-child { margin-bottom: 0; }
.sec-photo .sy-prose p { text-align: left; color: #fff; }

/* Leistungen — alternating text + photo rows */
.leistungen-block {
  padding: 0 0 40px;
}
.leistungen-intro {
  padding: var(--s-section-pad);
  padding-bottom: 40px;
  background: var(--s-grey-bg);
}
.leistungen-section {
  padding: 0;
}
.leistung-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}
.leistung-row:nth-child(even) .leistung-text { order: 2; }
.leistung-row:nth-child(even) .leistung-photo { order: 1; }
.leistung-text {
  background: var(--s-grey-bg);
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.leistung-row:nth-child(odd) .leistung-text {
  background: #fff;
}
.leistung-text h3 {
  font-family: var(--s-font-head);
  font-size: var(--s-subheading);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--s-muted);
  margin: 0 0 20px;
}
.leistung-text p {
  font-family: var(--s-font-body);
  font-size: var(--s-body);
  color: var(--s-ink);
  line-height: 1.85;
  margin: 0;
}
.leistung-photo {
  overflow: hidden;
  min-height: 280px;
}
.leistung-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .leistung-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .leistung-row:nth-child(even) .leistung-text { order: 1; }
  .leistung-row:nth-child(even) .leistung-photo { order: 2; }
  .leistung-text { padding: 40px 24px; }
  .leistung-photo { min-height: 260px; }
}

.leistungen-block .sy-cta-row {
  background: var(--s-grey-bg);
  padding: 0 24px 48px;
  margin: 0;
  text-align: center;
}
.sy-cta-row {
  text-align: center;
  margin: 28px 0 0;
}
.sy-btn {
  display: inline-block;
  background: var(--s-navy);
  color: #fff;
  font-family: var(--s-font-body);
  font-size: var(--s-btn);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 0.5rem 2rem;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.sy-btn:hover { background: var(--s-muted); }
.sy-btn-ghost {
  background: transparent;
  color: var(--s-navy);
  border: 1px solid var(--s-navy);
}
.sy-btn-ghost:hover { background: var(--s-navy); color: #fff; }
.sec-photo .sy-btn {
  background: #fff;
  color: var(--s-navy);
}
.sec-photo .sy-btn:hover { background: var(--s-grey-bg); }

/* Tippgeber */
.tipp-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.tipp-inner p { margin: 0 0 12px; color: var(--s-ink); }
.tipp-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.tipp-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--s-border);
  color: var(--s-grey-dark);
}

/* Referenzen milestones */
.sy-ref-milestones {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  text-align: center;
}
@media (min-width: 700px) {
  .sy-ref-milestones { grid-template-columns: repeat(3, 1fr); }
}
.sy-ref-milestones div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 0 16px;
  border-bottom: 1px solid var(--s-border);
}
.sy-ref-milestones strong {
  font-family: var(--s-font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--s-navy);
}
.sy-ref-milestones span {
  font-family: var(--s-font-body);
  font-size: 14px;
  color: var(--s-grey);
}
.sy-google-reviews {
  margin: 8px 0 36px;
  min-height: 280px;
  width: 100%;
  background: #fff;
  padding: 12px;
  border: 1px solid var(--s-border);
}

/* Formulare */
.sy-form-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.sy-form-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  padding: 16px 0;
  border-bottom: 1px solid var(--s-border);
}
.sy-form-list strong {
  display: block;
  font-family: var(--s-font-body);
  color: var(--s-navy);
  margin-bottom: 4px;
}
.sy-form-list span {
  font-size: 14px;
  color: var(--s-grey);
}
.sy-form-hint {
  margin-top: 18px;
  font-size: 13px;
  color: var(--s-grey);
  text-align: center;
}

/* Listings */
.sy-listings-lead {
  text-align: center;
  color: var(--s-grey);
  margin: 0 0 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
}
.sy-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
}
.sy-filter-pill {
  border: 1px solid var(--s-border);
  background: #fff;
  color: var(--s-ink);
  font-family: var(--s-font-body);
  font-size: var(--s-btn);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 0;
}
.sy-filter-pill.is-active {
  background: var(--s-navy);
  color: #fff;
  border-color: var(--s-navy);
}
.sy-filter-select {
  border: 1px solid var(--s-border);
  background: #fff;
  color: var(--s-navy);
  padding: 8px 10px;
  font-size: 13px;
}
.sy-filter-count {
  font-size: 13px;
  color: var(--s-grey);
}
.sy-listing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (min-width: 700px) {
  .sy-listing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .sy-listing-grid { grid-template-columns: repeat(3, 1fr); }
}
.sy-empty {
  text-align: center;
  color: var(--s-grey);
  padding: 40px 16px;
}

/* Property cards */
.s-prop-card {
  border: 1px solid var(--s-border);
  background: #fff;
  overflow: hidden;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.s-prop-card:hover { text-decoration: none; }
.s-prop-card.is-closed { cursor: default; }
.s-pc-img-wrap {
  position: relative;
  overflow: hidden;
}
.s-pc-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: #dfe3ea;
}
.s-pc-photo-count {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(75, 85, 99, 0.85);
  color: #fff;
  font-family: var(--s-font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  align-items: center;
  gap: 6px;
}
body.show-photo-count .s-pc-photo-count { display: flex; }
.s-pc-price {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--s-red);
  color: #fff;
  font-family: var(--s-font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 14px;
}
.s-pc-status {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  font-family: var(--s-font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
}
.s-pc-status-reserviert,
.s-pc-status-verkauft { background: var(--s-red); }
.s-pc-status-vermietet { background: var(--s-green); }
.s-pc-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.s-pc-title {
  font-family: var(--s-font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--s-navy);
  line-height: 1.4;
  margin: 0 0 14px;
}
.s-pc-facts {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  flex: 1;
}
.s-pc-facts tr { border-bottom: 1px solid #F3F4F6; }
.s-pc-facts tr:last-child { border-bottom: none; }
.s-pc-facts td {
  font-family: var(--s-font-body);
  font-size: 14px;
  padding: 6px 0;
  color: #4B5563;
}
.s-pc-facts td:first-child {
  color: var(--s-grey);
  font-weight: 400;
}
.s-pc-facts td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--s-navy);
}
.s-pc-btn {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  background: var(--s-navy);
  color: #fff;
  font-family: var(--s-font-body);
  font-size: var(--s-btn);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 10px 20px;
  margin-top: auto;
}
.s-pc-btn:hover { background: var(--s-navy-2); }

/* Contact */
.sy-contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .sy-contact-grid { grid-template-columns: 1fr; }
}
.sy-form {
  display: grid;
  gap: 12px;
}
.sy-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 600px) {
  .sy-form-row { grid-template-columns: 1fr; }
}
.sy-form input,
.sy-form textarea {
  width: 100%;
  border: 1px solid var(--s-border);
  padding: 12px 14px;
  font-family: var(--s-font-body);
  color: #374151;
  background: #fff;
}
.sy-form textarea { min-height: 120px; resize: vertical; }
.sy-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--s-grey);
  line-height: 1.5;
}
.sy-check a { color: var(--s-navy); text-decoration: underline; }
.sy-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}
.sy-submit {
  justify-self: start;
  background: var(--s-navy);
  color: #fff;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0.5rem 2rem;
  font-family: var(--s-font-body);
  font-size: var(--s-btn);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}
.sy-submit:hover { background: var(--s-muted); }
.sy-submit:disabled { opacity: 0.6; cursor: wait; }
.sy-form-msg { font-size: 14px; }
.sy-form-msg.ok { color: var(--s-green); }
.sy-form-msg.err { color: var(--s-red); }
.sy-contact-aside {
  background: var(--s-grey-bg);
  padding: 28px 24px;
}
.sy-contact-aside h3 {
  margin: 0 0 14px;
  font-family: var(--s-font-body);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}
.sy-contact-aside p { margin: 0 0 8px; color: #4B5563; }
.sy-contact-aside a { color: var(--s-navy); }
.sy-contact-photo {
  margin-top: 18px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Footer */
.sy-footer {
  background: var(--s-navy);
  color: rgba(255,255,255,0.88);
  padding: 56px 40px 24px;
  font-family: var(--s-font-body);
}
.sy-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  width: min(var(--s-wrap), 100%);
  margin: 0 auto 32px;
}
@media (max-width: 900px) {
  .sy-footer { padding: 40px 20px 20px; }
  .sy-footer-grid { grid-template-columns: 1fr; }
}
.sy-footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 14px;
}
.sy-footer h3 {
  margin: 0 0 12px;
  font-family: var(--s-font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
}
.sy-footer p { margin: 0 0 6px; }
.sy-footer a { color: rgba(255,255,255,0.88); }
.sy-footer a:hover { color: #fff; }
.sy-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sy-footer li { margin: 0 0 8px; }
.sy-footer-bottom {
  width: min(var(--s-wrap), 100%);
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

/* Welcome + Tippgeber nested block */
.welcome-nest {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
  text-align: left;
}
.welcome-nest-main .welcome-body {
  margin: 0;
  max-width: none;
}
.welcome-nest-main .welcome-body p {
  text-align: left;
}
.welcome-nest-tipp {
  background: var(--s-grey-bg);
  border: 1px solid var(--s-border);
  padding: 32px;
}
.welcome-nest-tipp-title {
  font-family: var(--s-font-head);
  font-size: var(--s-subheading);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--s-muted);
  margin: 0 0 20px;
  text-align: center;
  line-height: 1.5;
}
.welcome-nest-tipp .tipp-inner {
  max-width: none;
  text-align: left;
}
.welcome-nest-tipp .tipp-inner p {
  color: var(--s-ink);
}
@media (max-width: 900px) {
  .welcome-nest {
    grid-template-columns: 1fr;
  }
  .welcome-nest-main .welcome-body p,
  .welcome-nest-tipp .tipp-inner {
    text-align: center;
  }
}
