.fascia-style-section {
  padding: 42px 0 26px;
  background: #f5f5f5;
}

.fascia-style-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.fascia-style-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  padding-left: 18px;
}

.fascia-style-mark::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 4px;
  height: calc(100% - 8px);
  border-radius: 999px;
  background: linear-gradient(180deg, #a0b45b 0%, #5b6c31 100%);
}

.fascia-style-mark::after {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  width: 98px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #111111, rgba(17, 17, 17, 0.12));
}

.fascia-style-mark strong {
  color: #111111;
  font-family: var(--headline);
  font-size: clamp(2.5rem, 4.2vw, 4.2rem);
  font-style: italic;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.fascia-style-mark span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #a8b864 0%, #697c39 100%);
  color: #ffffff;
  font-size: clamp(0.94rem, 1.3vw, 1.12rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(105, 124, 57, 0.18);
}

.fascia-style-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 36px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 800;
  white-space: nowrap;
}

.fascia-style-visual {
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: #121212;
  box-shadow: 0 22px 44px rgba(20, 12, 12, 0.14);
}

.fascia-style-visual img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.02);
}

@media (max-width: 1100px) {
  .fascia-style-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 860px) {
  .fascia-style-visual img {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .fascia-style-section {
    padding: 32px 0 20px;
  }

  .fascia-style-mark strong {
    font-size: 2.05rem;
  }

  .fascia-style-mark span {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
  }

  .fascia-style-button {
    width: 100%;
  }

  .fascia-style-visual {
    border-radius: 20px;
  }

  .fascia-style-visual img {
    height: 300px;
  }
}
