@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap");

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

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

body {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #323335;
  background-color: #fff;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1,
h2,
h3 {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
}

.section-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
  color: #000;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
}

.main-nav {
  display: flex;
  gap: 2.5rem;
}

.main-nav a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #818181;
  transition: color 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #000;
  transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #000;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #000;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.nav-toggle span:nth-child(1) {
  top: 0;
}

.nav-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle span:nth-child(3) {
  bottom: 0;
}

.nav-toggle.open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  background: #eae8e4;
}

.hero-image {
  position: relative;
  flex: 0 0 58%;
  order: 2;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.hero-overlay {
  position: relative;
  flex: 1 1 42%;
  order: 1;
  background: #eae8e4;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(2rem, 5vw, 5rem);
}

.hero-content {
  color: #000;
  max-width: 640px;
}

.hero-name {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero-titles {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-intro,
.hero-intro p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  opacity: 0.75;
}

.hero-intro p:last-child {
  margin-bottom: 0;
}

.section {
  padding: 8rem 0;
}

.section-angebot {
  background: #eae8e4;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.offer-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.offer-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.offer-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.offer-card:hover .offer-card-image img {
  transform: scale(1.03);
}

.offer-card-body {
  padding: 2rem 2rem 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-card-body h3 {
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  color: #000;
}

.offer-card-body p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #323335;
  margin-bottom: 1rem;
}

.offer-card-body p:last-child {
  margin-bottom: 0;
}

.section-about {
  padding-top: 0;
  padding-bottom: 6rem;
  background: #fff;
}

.section-about .about-layout {
  position: relative;
  width: 100vw;
  min-height: 80vh;
  overflow: hidden;
  margin-bottom: 6rem;
  display: flex;
  background: #eae8e4;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.section-about .about-image {
  flex: 0 0 50%;
  min-height: 500px;
  overflow: hidden;
}

.section-about .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.section-about .about-text-overlay {
  position: relative;
  flex: 1 1 50%;
  background: #eae8e4;
  padding: clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-about .about-text-overlay .section-heading {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.section-about .about-text-overlay p {
  font-size: 1rem;
  line-height: 1.85;
  color: #323335;
  margin-bottom: 1rem;
}

.section-about .about-text-overlay p:last-child {
  margin-bottom: 0;
}

.cv-section {
  padding-top: 2rem;
}

.cv-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.cv-column h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #000;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.cv-column ul {
  list-style: none;
}

.cv-column li {
  font-size: 0.92rem;
  line-height: 1.7;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: #323335;
}

.cv-column li:last-child {
  border-bottom: none;
}

.cv-column p {
  font-size: 0.92rem;
  line-height: 1.7;
  padding: 0.75rem 0;
  color: #323335;
}

.cv-column a {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.cv-column a:hover {
  color: #000;
}

.section-faq {
  background: #eae8e4;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-heading {
  margin: 0;
}

.accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.75rem 0;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #000;
  text-align: left;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.accordion-trigger:hover {
  color: #818181;
}

.accordion-title {
  display: block;
}

.accordion-icon {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: 1rem;
  color: #818181;
  transition: transform 0.35s ease;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-panel p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #323335;
  margin-bottom: 1rem;
  padding-right: 2rem;
}

.accordion-panel p:last-child {
  margin-bottom: 0;
}

.accordion-item.open .accordion-panel {
  padding-bottom: 1.75rem;
}

.section-news {
  padding: 6rem 0;
  background: #fff;
}

.section-news .section-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #323335;
}

.section-praxis {
  padding: 0;
}

.section-praxis .container {
  max-width: none;
  padding: 0;
}

.section-praxis .about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}

.section-praxis .about-image {
  overflow: hidden;
}

.section-praxis .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.section-praxis .about-text-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
  background: #eae8e4;
}

.section-praxis .about-text-overlay .section-heading {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
}

.section-praxis .about-text-overlay p {
  font-size: 1rem;
  line-height: 1.85;
  color: #323335;
  max-width: 500px;
}

.section-contact {
  background: #323335;
  color: #eae8e4;
  padding: 5rem 0 4rem;
}

.section-contact .section-content {
  color: inherit;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-map {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.contact-map img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.contact-map:hover img {
  transform: scale(1.03);
}

.contact-map:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
}

.contact-intro h5 {
  font-family: "Raleway", sans-serif;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.contact-intro h5:first-of-type {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.contact-intro h5:not(:first-of-type) {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.contact-intro p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #eae8e4;
  opacity: 0.85;
  margin-bottom: 2.25rem;
}

.contact-intro p:last-child {
  margin-bottom: 0;
}

.contact-intro a {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s ease;
}

.contact-intro a:hover {
  opacity: 1;
  color: #fff;
}

.garuda-contact {
  margin-top: 1.7rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.garuda-contact-status {
  margin: 0 0 0.95rem;
  padding: 0.65rem 0.8rem;
  font-weight: 500;
}

.garuda-contact-status.is-success {
  border: 1px solid #8fb995;
  background: rgba(143, 185, 149, 0.17);
  color: #dcedd8;
}

.garuda-contact-status.is-error {
  border: 1px solid #d29f9f;
  background: rgba(210, 159, 159, 0.2);
  color: #ffd9d9;
}

.garuda-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.garuda-contact-field {
  display: grid;
  gap: 0.32rem;
}

.garuda-contact-field-full {
  grid-column: 1 / -1;
}

.garuda-contact-field span {
  font-size: 0.92rem;
  color: rgba(234, 232, 228, 0.8);
}

.garuda-contact-field input,
.garuda-contact-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #eae8e4;
  font: inherit;
  padding: 0.6rem 0.7rem;
}

.garuda-contact-field textarea {
  min-height: 9rem;
  resize: vertical;
}

.garuda-contact-submit {
  grid-column: 1 / -1;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
  font: inherit;
  padding: 0.55rem 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.garuda-contact-submit:hover {
  background: rgba(255, 255, 255, 0.08);
}

.garuda-contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .offers-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

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

  .section-praxis .about-layout {
    grid-template-columns: 1fr;
  }

  .section-praxis .about-text-overlay {
    padding: 4rem 2rem;
  }

  .section-about .about-text-overlay {
    width: 70%;
    padding: 3rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: stretch;
  }

  .contact-map {
    aspect-ratio: 3 / 2;
    order: 2;
  }

  .contact-grid {
    order: 1;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    font-size: 1.1rem;
    letter-spacing: 0.12em;
  }

  .hero {
    display: block;
    background: transparent;
  }

  .hero-image {
    position: absolute;
    inset: 0;
    flex: none;
  }

  .hero-image img {
    object-position: center 20%;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    flex: none;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.15) 50%,
      rgba(0, 0, 0, 0.55) 100%
    );
    align-items: flex-end;
    padding: 4rem 2rem;
  }

  .hero-content {
    color: #fff;
    max-width: 100%;
  }

  .hero-name {
    font-size: 2.8rem;
  }

  .hero-titles {
    font-size: 0.9rem;
    color: #fff;
  }

  .hero-intro,
  .hero-intro p {
    color: rgba(255, 255, 255, 0.85);
    opacity: 1;
  }

  .section {
    padding: 5rem 0;
  }

  .section-about .about-layout {
    flex-direction: column;
    min-height: auto;
  }

  .section-about .about-text-overlay {
    flex: none;
    width: 100%;
    padding: 3rem 2rem;
  }

  .section-about .about-image {
    flex: none;
    width: 100%;
    height: 50vh;
    min-height: 350px;
  }

  .section-about .about-image img {
    object-position: center 20%;
  }

  .section-praxis .about-text-overlay {
    padding: 3rem 2rem;
  }

  .header-inner {
    padding: 1rem 1.5rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .accordion-trigger {
    font-size: 1rem;
    padding: 1.5rem 0;
  }

  .offer-card-body {
    padding: 1.5rem 1.5rem 2rem;
  }
}

@media (max-width: 480px) {
  .hero-name {
    font-size: 2.2rem;
  }

  .hero-titles {
    font-size: 0.8rem;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .garuda-contact-form {
    grid-template-columns: 1fr;
  }

  .garuda-contact-field-full,
  .garuda-contact-submit {
    grid-column: auto;
  }
}
