/* CSS Reset & Normalize */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  min-height: 100vh;
  background: #F6F0ED;
  color: #31445A;
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}

/* Import Google Fonts (fallback handled by system fonts above) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Roboto:wght@400;500;700&display=swap');

:root {
  --brand-primary: #31445A;
  --brand-secondary: #F6F0ED;
  --brand-light: #FFFFFF;
  --brand-gold: #9C5332;
  --brand-accent: #B9806B;
  --brand-gray: #E4DDD7;
  --box-shadow: 0 4px 24px rgba(49, 68, 90, 0.07), 0 1.5px 6px rgba(156, 83, 50, 0.07);
}

/* Container utilities */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

/* Header & Main Nav */
header {
  background: var(--brand-light);
  box-shadow: 0 2px 12px rgba(49,68,90,.04);
  border-bottom: 1.5px solid var(--brand-gray);
  position: relative;
  z-index: 40;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
header img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.03em;
  padding: 6px 10px;
  color: var(--brand-primary);
  text-decoration: none;
  transition: color 0.25s;
  border-radius: 4px;
  position: relative;
}
.main-nav a:not(.button-primary):hover,
.main-nav a:not(.button-primary):focus {
  color: var(--brand-gold);
  background: rgba(156,83,50,0.07);
}
.button-primary {
  background: var(--brand-gold);
  color: var(--brand-light);
  padding: 12px 28px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(156,83,50,0.07);
  transition: background 0.3s, color 0.3s, box-shadow 0.2s;
  letter-spacing: 0.05em;
  text-decoration: none;
  margin-left: 8px;
  outline: none;
}
.button-primary:hover,
.button-primary:focus {
  background: #B9806B;
  color: var(--brand-light);
  box-shadow: 0 4px 16px rgba(185,128,107,0.13);
}
.button-secondary {
  background: transparent;
  color: var(--brand-gold);
  border: 2px solid var(--brand-gold);
  padding: 12px 28px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  border-radius: 28px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
  outline: none;
}
.button-secondary:hover,
.button-secondary:focus {
  background: var(--brand-gold);
  color: var(--brand-light);
  box-shadow: 0 4px 16px rgba(156,83,50,0.13);
}

.mobile-menu-toggle {
  display: none;
  background: var(--brand-gold);
  color: #fff;
  border: none;
  font-size: 28px;
  line-height: 1;
  border-radius: 50%;
  padding: 10px 17px 10px 15px;
  cursor: pointer;
  margin-left: 20px;
  transition: background 0.2s;
  box-shadow: 0 2px 10px rgba(49,68,90,0.13);
  z-index: 105;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--brand-accent);
  color: #fff;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  background: var(--brand-primary);
  color: var(--brand-light);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.53,.17,.17,.96);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 24px 0 0 24px;
  background: transparent;
  color: var(--brand-gold);
  border: none;
  font-size: 32px;
  font-weight: bold;
  outline: none;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  margin: 50px 0 0 32px;
}
.mobile-nav a {
  color: var(--brand-light);
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 0;
  letter-spacing: 0.04em;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: rgba(156,83,50,0.15);
  color: var(--brand-gold);
}

/* MAIN LAYOUTS */
main {
  margin-bottom: 64px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  margin-bottom: 24px;
}
.text-section {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
ul, ol {
  margin-top: 12px;
  margin-bottom: 12px;
  padding-left: 25px;
  font-size: 16px;
}
ul li { margin-bottom: 9px; }
ul:last-child li:last-child { margin-bottom: 0; }

/* TYPOGRAPHY STYLES */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--brand-primary);
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.8rem;
  line-height: 1.18;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 13px;
}
h3 {
  font-size: 1.2rem;
  font-weight: 700;
}
.subheadline {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--brand-accent);
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
p, li, td, th, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: var(--brand-primary);
}
blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  border-left: 4px solid var(--brand-gold);
  padding-left: 16px;
  margin: 14px 0 12px 0;
  color: var(--brand-accent);
  background: #f9f6f3;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}
/* Links */
a {
  color: var(--brand-accent);
  text-decoration: none;
  transition: color 0.21s;
}
a:hover, a:focus {
  color: var(--brand-gold);
  text-decoration: underline;
}

/* Hero Section */
.hero-section {
  padding: 64px 0 48px 0;
  background: var(--brand-secondary);
}
.hero-section .container {
  flex-direction: column;
  align-items: flex-start;
}
.hero-section h1 {
  color: var(--brand-primary);
  margin-bottom: 16px;
  font-size: 2.8rem;
  font-family: 'Playfair Display', serif;
  text-shadow: 0 2px 8px rgba(49,68,90,0.03);
}
.hero-section .subheadline {
  margin-top: 0;
  max-width: 540px;
}

/* Feature Grid using Flex */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin: 24px 0 0 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--brand-light);
  border-radius: 16px;
  box-shadow: var(--box-shadow);
  padding: 32px 26px 22px 26px;
  border-left: 4px solid var(--brand-gold);
  min-width: 240px;
  max-width: 330px;
  flex: 1 1 270px;
  transition: box-shadow 0.16s, transform 0.21s;
}
.feature-item img {
  width: 40px;
  height: auto;
  margin-bottom: 6px;
}
.feature-item h3 {
  color: var(--brand-gold);
  margin-bottom: 4px;
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 8px 28px rgba(49, 68, 90, 0.14);
  transform: translateY(-3px) scale(1.03);
}

/* Services/Preis Table styles */
.price-table {
  width: 100%;
  background: var(--brand-light);
  border-radius: 16px;
  box-shadow: var(--box-shadow);
  margin: 32px 0 24px 0;
  border-collapse: collapse;
  overflow: hidden;
}
.price-table caption {
  padding: 12px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.11rem;
  color: var(--brand-gold);
}
.price-table th, .price-table td {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  padding: 16px 10px;
  text-align: left;
  border-bottom: 1px solid #ece5e0;
}
.price-table th {
  background: var(--brand-accent);
  color: #fff;
  letter-spacing: .02em;
  font-size: 17px;
}
.price-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px) {
  .price-table th, .price-table td {
    padding: 12px 5px;
    font-size: 15px;
  }
}

/* Cards, Testimonials */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--brand-light);
  border-radius: 14px;
  box-shadow: var(--box-shadow);
  padding: 26px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--brand-secondary);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(185,128,107,0.08);
  padding: 20px 28px 18px 34px;
  margin-bottom: 20px;
  border-left: 4px solid var(--brand-gold);
  color: #292929;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #222;
}
.testimonial-card strong {
  color: var(--brand-gold);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.testimonial-card div {
  font-size: 1.02em;
}
.testimonial-card:last-child {
  margin-bottom: 0;
}

/* Cards/Columns/Sections Layouts using Flex */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

/* ABOUT Feature Bullets Grid */
.content-bullets {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 18px;
  margin-left: 14px;
}

/* SERVICES GRID */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.service-category {
  background: var(--brand-light);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(49,68,90,0.06);
  padding: 22px 18px 17px 18px;
  min-width: 230px;
  flex: 1 1 250px;
  border-left: 4px solid var(--brand-accent);
  margin-bottom: 12px;
  transition: box-shadow 0.16s, transform 0.19s;
}
.service-category h2 {
  color: var(--brand-accent);
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.4rem;
}
.service-category:hover,
.service-category:focus-within {
  box-shadow: 0 6px 28px rgba(185,128,107,0.15);
  transform: translateY(-2px) scale(1.02);
}

/* TEAM PAGE */
.team-bio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 16px;
}
.team-member {
  background: var(--brand-light);
  border-radius: 14px;
  box-shadow: var(--box-shadow);
  padding: 26px 18px 24px 22px;
  min-width: 210px;
  max-width: 330px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-left: 4px solid var(--brand-gold);
  transition: box-shadow 0.16s, transform 0.18s;
}
.team-member img {
  width: 48px;
  height: auto;
  margin-bottom: 6px;
}
.team-member h2 {
  color: var(--brand-gold);
  font-size: 1.2rem;
}
.team-member:hover,
.team-member:focus-within {
  box-shadow: 0 12px 36px rgba(49,68,90,0.13);
  transform: translateY(-3px) scale(1.04);
}
.expertise-icons {
  display: flex;
  gap: 12px;
  margin: 20px 0 10px 0;
}
.expertise-icons img {
  width: 32px;
  opacity: .82;
}
.personal-quotes blockquote {
  margin-bottom: 0;
}

/* Kontakt Details */
.contact-details {
  background: #fff;
  border-left: 4px solid var(--brand-gold);
  border-radius: 14px;
  box-shadow: var(--box-shadow);
  padding: 22px 16px 17px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
}
.contact-details ul {
  list-style: none;
  padding: 0;
  gap: 14px;
  display: flex;
  flex-direction: column;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  margin-bottom: 0;
}
.contact-details img {
  width: 22px;
  opacity: 0.78;
  margin-top: 0;
}
.location-map {
  margin-top: 12px;
  font-size: 0.99rem;
  color: var(--brand-primary);
  padding-left: 12px;
}

/* Galerie/Page Testimonial mini-cards */
.client-success-stories {
  margin-top: 34px;
}
.client-success-stories h2 {
  color: var(--brand-gold);
  font-size: 1.2rem;
  margin-bottom: 7px;
}

/* Footer Styles */
footer {
  background: var(--brand-primary);
  color: var(--brand-light);
  padding: 46px 0 11px 0;
  border-top: 3px solid var(--brand-gold);
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  color: var(--brand-light);
  font-size: 15px;
  font-family: 'Roboto', Arial, sans-serif;
  opacity: 0.83;
  transition: color 0.22s, opacity 0.17s;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--brand-gold);
  opacity: 1;
  text-decoration: underline;
}
.footer-contact {
  font-size: 15px;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--brand-light);
  opacity: 0.96;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-contact a {
  color: var(--brand-gold);
  font-weight: 500;
}
.footer-copy {
  font-size: 14px;
  opacity: 0.7;
  margin-top: 10px;
}
footer img {
  width: 48px;
  height: auto;
  margin-bottom: 10px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 14px 18px 14px;
  background: var(--brand-dark, #31445A);
  color: #fff;
  box-shadow: 0 -2px 16px rgba(49,68,90,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1200;
  font-size: 15px;
  border-top: 4px solid var(--brand-gold);
  animation: fadeInBanner 0.7s;
}
@keyframes fadeInBanner {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner__actions {
  display: flex;
  gap: 15px;
  margin-top: 5px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-size: 15px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  padding: 11px 21px;
  border-radius: 25px;
  border: none;
  margin: 0 3px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(49,68,90,0.10);
  transition: background 0.2s, color 0.22s, box-shadow 0.16s;
}
.cookie-banner .accept {
  background: var(--brand-gold);
  color: var(--brand-light);
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: var(--brand-accent);
  color: var(--brand-light);
}
.cookie-banner .reject {
  background: transparent;
  color: var(--brand-gold);
  border: 2px solid var(--brand-gold);
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: var(--brand-gold);
  color: var(--brand-light);
}
.cookie-banner .settings {
  background: transparent;
  color: var(--brand-accent);
  border: 2px solid var(--brand-accent);
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: var(--brand-accent);
  color: var(--brand-light);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  max-width: 480px;
  width: 95vw;
  background: #fff;
  color: #222;
  border-radius: 18px;
  box-shadow: 0 14px 70px 0 rgba(49,68,90,0.25);
  transform: translate(-50%, -50%) scale(0.92);
  z-index: 1300;
  padding: 38px 30px;
  animation: modalSlideIn 0.45s cubic-bezier(.49,1,.31,1.4);
  display: none;
}
.cookie-modal.open {
  display: block;
  animation: modalSlideIn 0.42s cubic-bezier(.49,1,.31,1.4);
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translate(-50%, -30%) scale(.85); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.cookie-modal h3 {
  color: var(--brand-gold);
  font-size: 1.3rem;
  margin-bottom: 18px;
  font-family: 'Playfair Display', serif;
}
.cookie-modal .cookie-categories {
  margin: 19px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}
.cookie-modal .category input[type=checkbox] {
  width: 21px;
  height: 21px;
  accent-color: var(--brand-gold);
}
.cookie-modal .note {
  font-size: 14px;
  color: #888;
  margin-left: 32px;
  margin-bottom: 5px;
}
.cookie-modal__actions {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 22px;
  background: none;
  border: none;
  color: var(--brand-accent);
  font-size: 28px;
  cursor: pointer;
}

/* Section/Responsive Spacing Patterns */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .header-container, .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    height: auto;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .main-nav {
    gap: 16px;
  }
  .feature-grid, .services-grid, .team-bio-grid {
    gap: 18px;
  }
}
@media (max-width: 850px) {
  .feature-grid,
  .services-grid, .team-bio-grid, .content-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-container {
    flex-direction: column;
    gap: 16px;
    padding-top: 20px;
    padding-bottom: 14px;
  }
  .content-wrapper, .text-section {
    gap: 15px;
  }
  .section {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .header-container {
    height: 58px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .footer-container {
    flex-direction: column;
    gap: 12px;
    padding: 0 4px;
  }
  .section {
    margin-bottom: 38px;
    padding: 27px 4px 27px 4px;
  }
  .content-wrapper {
    gap: 9px;
    margin-bottom: 12px;
  }
  .testimonial-card {
    padding: 11px 8px 11px 14px;
    font-size: 0.97em;
  }
  .contact-details {
    padding: 13px 5px 10px 11px;
  }
  .feature-item,
  .card,
  .service-category,
  .team-member {
    padding: 15px 8px 13px 11px;
    min-width: 0;
    max-width: 100%;
  }
  .feature-grid, .services-grid, .team-bio-grid {
    gap: 13px;
  }
  .team-member {
    gap: 5px;
  }
  h1 {
    font-size: 2.0rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .mobile-menu {
    width: 100vw;
    padding: 0;
  }
  .mobile-nav {
    margin: 35px 0 0 18px;
    gap: 17px;
  }
  .cookie-modal {
    padding: 23px 5vw;
    max-width: 95vw;
  }
}
@media (max-width: 555px) {
  .container {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .footer-container {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .section {
    padding: 14px 4px 16px 4px;
    margin-bottom: 21px;
  }
  .cookie-banner {
    padding: 10px 4vw 12px 4vw;
  }
  .cookie-modal {
    padding: 16px 3vw;
  }
}

/* Animations & Focus Styles */
*:focus {
  outline: 2px solid var(--brand-gold);
  outline-offset: 2px;
}
button:focus, a:focus {
  outline: 2px solid var(--brand-accent);
}

/* Micro-interactions for buttons */
.button-primary, .button-secondary, .cookie-banner button, .cookie-modal button {
  transition: background 0.22s, color 0.18s, box-shadow 0.18s, border 0.19s;
}
.button-primary:active, .button-secondary:active, .cookie-banner button:active {
  transform: scale(0.97);
}

/* Hide modal & cookie banner utility */
.hide {
  display: none !important;
  visibility: hidden;
  opacity: 0;
}

/* End of CSS */
