/**
 * About page — scoped editorial sections (story, values, band, CTA).
 * Warm-neutral palette consistent with the rest of the site.
 * Reused sections (counter/process/testimonials) keep their base styles.
 */

.page-about {
  --ink: #17171a;
  --muted: #6b6660;
  --paper: #f4f2ee;
  --line: rgba(23, 23, 26, 0.1);
}

.page-about .ws-about-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

/* —— Story —— */
.page-about .ws-about-story {
  padding-top: clamp(3.5rem, 7vw, 6.5rem);
  padding-bottom: clamp(3rem, 6vw, 5.5rem);
}

.page-about .ws-about-story__row {
  align-items: flex-start;
}

.page-about .ws-about-story__row > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

.page-about .ws-about-story__media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 34px 70px -40px rgba(23, 23, 26, 0.6);
  width: 100%;
}

.page-about .ws-about-story__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.page-about .ws-about-story__content {
  display: flex;
  flex-direction: column;
}

.page-about .ws-about-story__body {
  flex: 0 1 auto;
}

.page-about .ws-about-story__cta {
  flex: 0 0 auto;
  margin-top: 1.25rem;
  padding-top: 0;
  align-self: flex-start;
}

.page-about .ws-about-story__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.4em 0.9em;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 999px;
}

.page-about .ws-about-story__title {
  font-family: "Mona Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 3.6vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #17171a;
  margin-bottom: 1.35rem;
  max-width: 22ch;
  text-wrap: balance;
  white-space: normal;
  opacity: 1;
}

.page-about .ws-about-story__lead {
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 1rem;
}

.page-about .ws-about-story__text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.page-about .ws-about-story__text em {
  font-style: italic;
  color: var(--ink);
}

.page-about .ws-about-points {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.page-about .ws-about-points li {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-weight: 500;
  color: var(--ink);
}

.page-about .ws-about-points i {
  flex: 0 0 auto;
  width: 1.6em;
  height: 1.6em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.8em;
}

.page-about .ws-about-inline-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  color: #ffffff !important;
  text-decoration: none;
  background-color: #cd2525 !important;
  border: 1px solid #cd2525;
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  transition: background-color 0.3s ease, border-color 0.3s ease, gap 0.3s ease, transform 0.3s ease;
}

.page-about .ws-about-inline-btn:hover,
.page-about .ws-about-inline-btn:focus-visible {
  gap: 0.8em;
  color: #ffffff !important;
  background-color: #a81e1e !important;
  border-color: #a81e1e;
  transform: translateY(-1px);
}

/* —— Vision / Mission —— */
.page-about .ws-about-vm {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.page-about .ws-vm-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(1.75rem, 3.5vw, 3rem);
  background: #fff;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.page-about .ws-vm-card:hover {
  border-color: var(--ws-brand, #cd2525);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -28px rgba(205, 37, 37, 0.35);
}

.page-about .ws-vm-card--dark {
  background: var(--ink);
  border-color: var(--ink);
}

.page-about .ws-vm-card--dark:hover {
  border-color: var(--ws-brand, #cd2525);
  box-shadow: 0 18px 40px -28px rgba(205, 37, 37, 0.45);
}

.page-about .ws-vm-card__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.page-about .ws-vm-card--dark .ws-vm-card__label {
  color: #d7ff3e;
}

.page-about .ws-vm-card__text {
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 1rem;
}

.page-about .ws-vm-card__text:last-child {
  margin-bottom: 0;
}

.page-about .ws-vm-card--dark .ws-vm-card__text {
  color: rgba(255, 255, 255, 0.86);
}

/* —— Values —— */
.page-about .ws-about-values {
  background: var(--paper);
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.page-about .ws-value-card--compact {
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
}

.page-about .ws-value-card--compact .ws-value-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.2rem;
  border-radius: 14px;
  margin-bottom: 1rem;
}

.page-about .ws-value-card--compact .ws-value-card__title {
  font-family: "Mona Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 0.55rem;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.page-about .ws-value-card--compact .ws-value-card__text {
  font-size: 0.9rem;
}

.page-about .ws-about-values__head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.page-about .ws-about-values__title {
  font-family: "Mona Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}

.page-about .ws-value-card {
  position: relative;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.page-about .ws-value-card:hover {
  transform: translateY(-4px);
  border-color: var(--ws-brand, #cd2525);
  box-shadow: 0 18px 40px -28px rgba(205, 37, 37, 0.35);
}

.page-about .ws-value-card:hover .ws-value-card__icon {
  background: var(--ws-brand, #cd2525);
  color: #ffffff;
}

.page-about .ws-value-card__num {
  position: absolute;
  top: 1.1rem;
  right: 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  opacity: 0.25;
  font-variant-numeric: tabular-nums;
}

.page-about .ws-value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: background-color 0.35s ease, color 0.35s ease;
}

.page-about .ws-value-card__title {
  font-family: "Mona Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.6rem;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.page-about .ws-value-card__text {
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* —— Atmosphere band —— */
.page-about .ws-about-band {
  position: relative;
  padding-block: clamp(5rem, 14vw, 10rem);
  overflow: hidden;
  isolation: isolate;
}

.page-about .ws-about-band__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-about .ws-about-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-about .ws-about-band__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.page-about .ws-about-band__quote {
  max-width: 30ch;
  margin: 0;
  color: #fff;
}

.page-about .ws-about-band__quote p {
  font-size: clamp(1.6rem, 3.6vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
  /* body sets word-break:break-word which chopped words mid-glyph; keep
     whole words together here. */
  word-break: normal;
  overflow-wrap: normal;
}

.page-about .ws-about-band__quote cite {
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 992px) {
  .page-about .ws-about-story__title {
    font-size: clamp(2rem, 2.8vw, 2.85rem);
    white-space: normal;
    letter-spacing: -0.03em;
  }
}

@media (min-width: 1200px) {
  .page-about .ws-about-story__title {
    font-size: clamp(2.15rem, 2.6vw, 3rem);
  }
}

@media (max-width: 991px) {
  .page-about .ws-about-story__media {
    max-width: 460px;
    margin-inline: auto;
  }
}
