@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/source-sans-pro-v21-latin-300.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/source-sans-pro-v21-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/source-sans-pro-v21-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/source-sans-pro-v21-latin-700.woff2') format('woff2');
}

:root {
  --color-accent: #df7366;
  --color-accent-hover: #ef8376;
  --color-dark: #2b252c;
  --color-dark-hover: #3b353c;
  --color-bg: #f0f4f4;
  --color-white: #ffffff;
  --color-text: #5b5b5b;
  --color-heading: #483949;
  --color-border: #e5e5e5;
  --color-green: #009640;
  --font-main: 'Source Sans Pro', 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-hover);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading);
  font-weight: 600;
  line-height: 1.3;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(43, 37, 44, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--nav-height);
  gap: 2rem;
}

.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: block;
  padding: 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  list-style: none;
}

.nav__item:hover > .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--color-text);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}

.nav__dropdown a:hover {
  background: var(--color-bg);
  color: var(--color-accent);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  position: relative;
}

.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  position: absolute;
  left: 8px;
}

.nav__toggle span {
  top: 50%;
  transform: translateY(-50%);
}

.nav__toggle span::before {
  content: '';
  top: -7px;
}

.nav__toggle span::after {
  content: '';
  top: 7px;
}

.nav__toggle.active span {
  background: transparent;
}

.nav__toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav__toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('../images/header.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: calc(var(--nav-height) + 2rem) 2rem 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 9, 32, 0.7) 0%,
    rgba(43, 37, 44, 0.5) 50%,
    rgba(28, 9, 32, 0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__logo {
  width: 650px;
  max-width: 90vw;
  margin: 0 auto 2rem;
  filter: brightness(1.1);
}

.hero__divider {
  width: 80px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  margin: 0 auto 1.5rem;
  border: none;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}

.hero__cta:hover {
  background: var(--color-accent-hover);
  color: var(--color-white);
  transform: translateY(-2px);
}

.hero__cta svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.hero__cta:hover svg {
  transform: translateY(2px);
}

/* ============================================
   Section base
   ============================================ */

.section {
  padding: 5rem 0;
}

.section--white {
  background: var(--color-white);
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--color-text);
  max-width: 600px;
  margin: 0 auto;
}

.section__divider {
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 1rem auto 0;
  border: none;
  border-radius: 2px;
}

/* ============================================
   Services (Dienstleistungen)
   ============================================ */

.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.services__group {
  display: flex;
  flex-direction: column;
}

.services__group-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-accent);
}

.service-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--color-white);
  border-radius: 10px;
  border: 1px solid var(--color-border);
  margin-bottom: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.section--white .service-card {
  background: var(--color-bg);
  border-color: transparent;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-card__image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.service-card__body {
  flex: 1;
  min-width: 0;
}

.service-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 0.25rem;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.5;
}

.service-card__arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition), transform var(--transition);
}

.service-card:hover .service-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Services Grid (overview pages) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.services-grid .service-card {
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  margin-bottom: 0;
  text-decoration: none;
  color: inherit;
}

.services-grid .service-card__image {
  width: 100%;
  height: 180px;
  border-radius: 10px 10px 0 0;
}

.services-grid .service-card__body {
  padding: 1.25rem;
}

.services-grid .service-card__text {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.6;
  margin-top: 0.25rem;
}

.services-grid .service-card__arrow {
  margin-top: 0.75rem;
  display: inline-block;
}

.services-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.service-card--static {
  cursor: default;
}

.service-card--static:hover {
  transform: none;
  box-shadow: none;
}

/* ============================================
   About teaser
   ============================================ */

.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-teaser__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.about-teaser__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-teaser__content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.about-teaser__content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), color var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn--outline:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ============================================
   Page Header (Content Pages)
   ============================================ */

.page-header {
  background-image: url('../images/header.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 9, 32, 0.75) 0%,
    rgba(43, 37, 44, 0.65) 100%
  );
}

.page-header__content {
  position: relative;
  z-index: 1;
}

.page-header__title {
  color: var(--color-white);
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.page-header__subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  font-weight: 300;
}

.page-header__breadcrumb {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.page-header__breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.page-header__breadcrumb a:hover {
  color: var(--color-white);
}

.page-header__breadcrumb span {
  margin: 0 0.4rem;
}

/* ============================================
   Content Layout
   ============================================ */

.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.content-main {
  min-width: 0;
}

.content-main__hero-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.content-main h2,
.content-layout--full h2 {
  font-size: 1.6rem;
  margin: 2rem 0 1rem;
}

.content-main h3,
.content-layout--full h3 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--color-green);
  display: inline-block;
}

.content-main h4,
.content-layout--full h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
  color: var(--color-text);
}

.content-main p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.content-main ul:not(.download-list):not(.sidebar-card__list),
.content-layout--full ul:not(.download-list):not(.sidebar-card__list) {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content-main ul:not(.download-list):not(.sidebar-card__list) li,
.content-layout--full ul:not(.download-list):not(.sidebar-card__list) li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.content-main ul:not(.download-list):not(.sidebar-card__list) li::before,
.content-layout--full ul:not(.download-list):not(.sidebar-card__list) li::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
}

.content-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.content-images img {
  width: 100%;
  border-radius: 8px;
}

.contact-box {
  background: var(--color-bg);
  border-left: 4px solid var(--color-green);
  padding: 1.25rem 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
}

.section--white .contact-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-green);
}

.contact-box__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.contact-box__name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-heading);
}

.contact-box__phone {
  color: var(--color-text);
}

/* Sidebar */

.content-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.sidebar-card {
  background: var(--color-white);
  border-radius: 10px;
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.section--white .sidebar-card {
  background: var(--color-bg);
  border-color: transparent;
}

.sidebar-card__header {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sidebar-card__list {
  list-style: none;
  padding: 0.5rem 0;
}

.sidebar-card__item {
  border-bottom: 1px solid var(--color-border);
}

.sidebar-card__item:last-child {
  border-bottom: none;
}

.sidebar-card__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  color: var(--color-text);
  transition: background var(--transition), color var(--transition);
}

.sidebar-card__link:hover,
.sidebar-card__link--active {
  background: var(--color-bg);
  color: var(--color-accent);
}

.section--white .sidebar-card__link:hover,
.section--white .sidebar-card__link--active {
  background: var(--color-white);
}

.sidebar-card__link img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.sidebar-card__link span {
  font-size: 0.95rem;
  font-weight: 500;
}

/* Content layout without sidebar */

.content-layout--full {
  display: block;
  max-width: 900px;
  margin: 0 auto;
}

/* ============================================
   Team / Steckbrief Cards
   ============================================ */

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 0 2rem;
  margin-top: 2rem;
}

.team-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0 1.5rem;
  background: var(--color-white);
  border-radius: 10px;
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  transition: box-shadow var(--transition);
}

.section--white .team-card {
  background: var(--color-bg);
  border-color: transparent;
}

.team-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.team-card__photo {
  width: 110px;
  border-radius: 8px;
  object-fit: cover;
  object-position: top;
  grid-row: 1 / -1;
  align-self: start;
  height: 140px;
}

.team-card__name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 0.15rem;
  grid-column: 2;
}

.team-card__role {
  font-size: 0.9rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
  grid-column: 2;
}

.team-card__quote {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.6;
  grid-column: 2;
}

/* ============================================
   Timeline (Geschichte)
   ============================================ */

.timeline {
  position: relative;
  margin: 3rem 0;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-green);
  border-radius: 2px;
}

.timeline__item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.35em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--color-green);
  border: 3px solid var(--color-bg);
}

.section--white .timeline__item::before {
  border-color: var(--color-white);
}

.timeline__year {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 0.25rem;
}

.timeline__text {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.7;
}

.timeline__image {
  margin-top: 1rem;
  border-radius: 8px;
  max-width: 100%;
}

/* ============================================
   Download List
   ============================================ */

.download-list {
  list-style: none;
  margin: 1rem 0 2rem;
}

.download-list li {
  margin-bottom: 0.5rem;
}

.download-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: var(--color-accent);
  font-weight: 500;
  transition: color var(--transition), padding-left var(--transition);
}

.download-list a:hover {
  color: var(--color-accent-hover);
  padding-left: 4px;
}

.download-list a::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--color-accent);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E") no-repeat center / contain;
  flex-shrink: 0;
}

/* ============================================
   Award Cards (Auszeichnungen)
   ============================================ */

.award-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 2rem;
}

.award-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: var(--color-white);
  border-radius: 10px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.award-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.award-card__image {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: contain;
  background: var(--color-bg);
  padding: 1.5rem;
  cursor: zoom-in;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  cursor: zoom-out;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  transform: scale(0.92);
  transition: transform 0.3s;
}

.lightbox.active .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.award-card__body {
  padding: 2rem;
}

.award-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 0.75rem;
}

.award-card__text {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
}

/* ============================================
   Info Notice
   ============================================ */

.info-notice {
  background: var(--color-bg);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
  border: 1px solid var(--color-border);
}

.section--white .info-notice {
  background: var(--color-white);
}

.info-notice p {
  font-size: 1.1rem;
  color: var(--color-text);
  margin: 0;
}

/* ============================================
   Alert Notice
   ============================================ */

.alert-notice {
  background: #fef3f2;
  border: 1px solid #f3d1cd;
  border-left: 4px solid var(--color-accent);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.alert-notice__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  margin-top: 0.1rem;
}

.alert-notice__content {
  flex: 1;
}

.alert-notice__title {
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.alert-notice__text {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
}

.alert-notice__text a {
  font-weight: 600;
  color: var(--color-accent);
}

.alert-notice__text a:hover {
  text-decoration: underline;
}

/* ============================================
   Responsive additions
   ============================================ */

@media (max-width: 960px) {
  .content-layout {
    grid-template-columns: 1fr;
  }

  .content-sidebar {
    position: static;
  }

  .page-header {
    background-attachment: scroll;
  }

  .page-header__title {
    font-size: 1.8rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .award-card {
    grid-template-columns: 1fr;
  }

  .award-card__image {
    min-height: 400px;
  }

  .services-grid--2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .team-card {
    flex-direction: column;
    text-align: center;
  }

  .team-card__photo {
    width: 100%;
    height: 200px;
  }
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__heading {
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer__text {
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer__text a {
  color: rgba(255, 255, 255, 0.85);
}

.footer__text a:hover {
  color: var(--color-accent-hover);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.6rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  transition: color var(--transition), padding-left var(--transition);
}

.footer__links a:hover {
  color: var(--color-accent-hover);
  padding-left: 4px;
}

.footer__map {
  border-radius: 8px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.footer__map img {
  width: 100%;
  border-radius: 8px;
  transition: opacity var(--transition);
}

.footer__map img:hover {
  opacity: 0.9;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.45);
}

.footer__bottom a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transition: background var(--transition), color var(--transition);
}

.footer__social a:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   Animations
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 960px) {
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: rgba(43, 37, 44, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    gap: 0;
    overflow-y: auto;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__link {
    padding: 0.9rem 1rem;
    font-size: 1.1rem;
  }

  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    padding: 0 0 0 1rem;
  }

  .nav__dropdown a {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1rem;
  }

  .nav__dropdown a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
  }

  .nav__toggle {
    display: block;
  }

  .services {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-teaser {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero {
    background-attachment: scroll;
  }
}

@media (max-width: 600px) {
  html {
    font-size: 15px;
  }

  .hero__logo {
    width: 340px;
  }

  .hero__subtitle {
    font-size: 1.1rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section__title {
    font-size: 1.6rem;
  }

  .service-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .service-card__image {
    width: 100%;
    height: 160px;
  }

  .service-card__arrow {
    display: none;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
