@import url('fonts.css');

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

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

body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #1E242E;
  background: #fff;
  line-height: 1.7;
}

a {
  color: #5a7fa8;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #B3171C;
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  padding-bottom: 13px;
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: 13px;
  left: 0;
  right: 0;
  height: 2px;
  background: #B3171C;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.logo-wrap {
  flex: 2.25;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 90px;
  width: auto;
  display: block;
  margin-left: 20%;
}

.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 34px;
  justify-content: flex-start;
  margin-top: 48px;
}

.nav-link {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.02rem;
  letter-spacing: 0;
  color: #555;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #B3171C;
  text-decoration: none;
}

.nav-link.nav-active {
  color: #B3171C;
}

.hero {
  background-color: #B3171C;
  padding: 109px 40px 97px;
  min-height: 340px;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.hero-text-wrap {
  display: inline-block;
  text-align: right;
  max-width: 1000px;
}

.hero-title {
  display: inline-block;
  font-family: 'Times New Roman', Times, serif;
  font-size: 68px;
  font-weight: 400;
  color: #1E242E;
  text-align: left;
  line-height: 1.25;
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 2px;
  text-underline-offset: 12px;
  text-decoration-skip-ink: none;
  margin: 0 auto;
  max-width: 1000px;
}

.hero-attribution {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #1E242E;
  text-align: right;
  margin-top: 15px;
  letter-spacing: 0.04em;
}

.main-content {
  background: #fff;
}

.content-section {
  padding: 40px 40px;
  border-bottom: none;
  scroll-margin-top: 130px;
}

#wer.content-section {
  padding-bottom: 120px;
}

.content-section:last-child {
  border-bottom: none;
}

.section-inner {
  max-width: 760px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 26px;
  color: #B3171C;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.content-section p {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: #1E242E;
  line-height: 1.55;
  margin-bottom: 14px;
}

.content-section p:last-child {
  margin-bottom: 0;
}

.formula-banner {
  background-color: #B3171C;
  padding: 105px 40px;
}

.formula-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
}

.formula-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  min-width: 200px;
}

.formula-icon {
  width: 240px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.formula-bomb .formula-img {
  transform: translateY(-20px);
}

.formula-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.formula-icon svg {
  width: 100%;
  height: 100%;
}

.formula-label {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: none;
}

.formula-op {
  width: 30px;
  height: 30px;
  position: relative;
  margin-top: 75px;
  flex-shrink: 0;
}

.op-plus::before, .op-plus::after,
.op-equal::before, .op-equal::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 4px;
}

.op-plus::before {
  width: 100%;
  height: 4px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.op-plus::after {
  width: 4px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.op-equal::before {
  width: 100%;
  height: 4px;
  top: 30%;
  left: 0;
}
.op-equal::after {
  width: 100%;
  height: 4px;
  top: 70%;
  left: 0;
}

.formula-percent {
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
  font-size: 7.5rem;
  color: #fff;
  font-weight: 400;
  line-height: 1;
  display: block;
}

.photo-banner {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: block;
}

.photo-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

.footer-spacer {
  height: 40px;
  background: #fff;
}

.site-footer {
  background: #2D3643;
  padding: 72px 40px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.footer-left-group {
  display: flex;
  align-items: center;
}

.footer-col {
  flex: 0 1 auto;
}

.footer-col p {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #fff;
  margin-bottom: 2px;
  line-height: 1.2;
}

.footer-col-right {
  position: absolute;
  right: 0;
}

.footer-col-right p {
  font-weight: 300 !important;
  font-size: 13px !important;
  color: rgba(255,255,255,0.6);
}

.footer-divider {
  width: 1px;
  height: 90px;
  background: rgba(255,255,255,0.2);
  margin: 0 40px;
  flex-shrink: 0;
}

.footer-brand {
  letter-spacing: 0.05em;
}

.footer-brand-red {
  color: #B3171C;
  font-weight: 400;
}

.footer-name {
  color: #fff;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-top: 48px;
}

.nav-hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #1E242E;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 12px 20px 0;
    justify-content: center;
    position: relative;
  }

  .logo-wrap {
    flex: 1;
    justify-content: center;
  }

  .logo-img {
    margin-left: 0;
    height: 70px;
  }

  .nav-hamburger {
    display: flex;
    position: absolute;
    right: 20px;
    top: 32px;
    margin-top: 0;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin-top: 12px;
    padding: 16px 0 12px;
    align-items: center;
  }

  .main-nav.nav-open {
    display: flex;
  }

  .main-nav a {
    padding: 18px 0;
    width: 100%;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    font-size: 1.4rem !important;
  }

  .hero {
    padding: 50px 24px 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: 36px;
    white-space: normal;
    text-decoration: none;
  }

  .hero-attribution {
    font-size: 12px;
  }

  .content-section {
    padding: 32px 24px;
    scroll-margin-top: 100px;
  }

  .section-title {
    font-size: 22px;
  }

  .content-section p {
    font-size: 15px;
    line-height: 1.6;
  }

  .formula-banner {
    padding: 60px 24px;
  }

  .formula-inner {
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .formula-percent {
    font-size: 3rem;
  }

  .formula-label {
    font-size: 1rem;
  }

  .formula-op {
    width: 24px;
    height: 24px;
    margin-top: 0;
  }

  .formula-op::before, .formula-op::after {
    border-radius: 2px;
  }

  .op-plus::before, .op-equal::before, .op-equal::after {
    height: 2px;
  }

  .op-plus::after {
    width: 2px;
  }

  .formula-icon {
    width: 110px;
    height: 80px;
  }

  .formula-bomb .formula-img {
    transform: none;
  }

  .formula-item {
    min-width: auto;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 0 4px;
  }

  .footer-left-group {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
  }

  .footer-divider {
    display: none;
  }

  .footer-col-right {
    position: static;
    margin-top: 8px;
  }

  .site-footer {
    padding: 48px 24px;
  }
}

.wer-initial-screen {
  height: calc(100vh - 115px);
  display: flex;
  flex-direction: column;
}


.first-spacer {
  flex: 1;
}

.wer-hero-bg {
  position: relative;
  height: 35vh;
  width: 100%;
}

.wer-bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center top;
  z-index: -1;
}

.wer-quote-section {
  background-color: #B3171C;
  padding: 75px 40px 30px 40px;
  position: relative;
  z-index: 1;
}

.wer-quote-title {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  font-size: 68px;
  color: #FFFFFF;
  line-height: 1.1;
  max-width: 1100px;
  margin: 0;
  text-decoration: underline;
  text-decoration-color: #000000;
  text-decoration-thickness: 2px;
  text-underline-offset: 12px;
  text-decoration-skip-ink: none;
  padding-bottom: 8px;
  text-align: left;
  display: inline-block;
}

.quote-inner {
  max-width: 1100px;
  margin-left: calc(50% - 380px);
  margin-right: auto;
}

.wer-quote-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
}

.wer-quote-attribution {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000000;
  text-align: right;
  margin-top: 10px;
}

.wer-info-section {
  background: #FFFFFF;
  padding: 100px 40px;
  position: relative;
  z-index: 2;
}

.wer-main-title {
  font-family: 'Times New Roman', Times, serif;
  font-size: 55px;
  color: #1E242E;
  margin-bottom: 40px;
  font-weight: 400;
}

.wer-sub-title {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 20px;
  color: #854345;
  margin: 60px 0 30px 0;
  font-weight: 300;
}

.wer-intro p, .wer-outro p, .wer-list li {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 17px;
  color: #1E242E;
  line-height: 1.3;
  font-weight: 300;
  margin-bottom: 5px;
}

.wer-list {
  list-style: none;
  padding-left: 0;
}

.wer-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 2px;
}

.wer-list li::before {
  content: "•";
  color: #000;
  position: absolute;
  left: 0;
  font-size: 1.6rem;
  line-height: 0.8;
  top: 1px;
}

.wer-co-title {
  font-family: 'Times New Roman', Times, serif;
  font-size: 55px;
  color: #1E242E;
  margin: 40px 0 20px 0;
  font-weight: 400;
}

.wer-underline {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-skip-ink: none;
  white-space: nowrap;
}

.main-nav a.active {
  color: #B3171C !important;
}

@media (max-width: 768px) {
  .wer-bg-image { 
    position: fixed; 
    height: 100vh; 
    z-index: -1;
  }
  .wer-hero-bg { height: 25vh; }
  .wer-quote-section { padding: 40px 24px 28px; }
  .wer-quote-title { font-size: 34px; text-decoration: none; }
  .quote-inner { margin-left: 0; }
  .wer-info-section { padding: 60px 24px; }
  .wer-main-title { font-size: 36px; margin-bottom: 24px; }
  .wer-sub-title { font-size: 16px; margin: 40px 0 20px 0; }
  .wer-intro p, .wer-outro p, .wer-list li { font-size: 15px; }
  .wer-co-title { font-size: 38px; }
}

.weiter-quote-section {
  background-color: #B3171C;
  padding: 120px 40px 30px 40px;
}

.weiter-quote-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
}

.weiter-quote-title {
  font-family: 'Times New Roman', Times, serif;
  font-size: 68px;
  color: #1E242E;
  line-height: 1.1;
  text-decoration: underline;
  text-decoration-color: #FFFFFF;
  text-decoration-thickness: 2px;
  text-underline-offset: 12px;
  text-decoration-skip-ink: none;
  text-align: left;
  margin-bottom: 20px;
  font-weight: 400;
  display: inline-block;
}

@media (max-width: 768px) {
  .weiter-quote-section { padding: 60px 24px 28px; }
  .weiter-quote-title { font-size: 34px; white-space: normal; text-decoration: none; }
  .weiter-contact-section { padding: 60px 24px; }
  .contact-intro p { font-size: 16px; }
}

.weiter-quote-attribution {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #1E242E;
  text-align: right;
  margin-top: 13px;
}

.weiter-contact-section {
  background: #FFFFFF;
  padding: 100px 40px;
}

.contact-intro {
  margin-bottom: 60px;
}

.contact-intro p {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 20px;
  color: #B3171C;
  font-weight: 300;
  line-height: 1.4;
}

.contact-details p {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 17px;
  color: #1E242E;
  font-weight: 100;
  line-height: 1.2;
  margin: 0;
}

.contact-brand {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 17px;
  color: #1E242E;
  font-weight: 100;
  line-height: 1.2;
  margin: 0 !important;
}

.contact-brand-red {
  color: #B3171C;
  font-weight: 400;
}

.contact-details a {
  color: inherit;
  text-decoration: none;
}
