.about-page {
  --about-max: 1180px;
  --about-ink: #122c38;
  --about-muted: #5c7078;
  --about-warm: #f5f2ea;
  --about-red: #c33040;
  width: 100%;
  padding: 0;
  background: #fff;
  color: var(--about-ink);
  overflow: hidden;
}

.about-page *,
.about-page *::before,
.about-page *::after { box-sizing: border-box; }

.about-page img {
  display: block;
  width: 100%;
  height: auto;
}

.about-container {
  width: min(calc(100% - 40px), var(--about-max));
  margin-inline: auto;
}

.about-eyebrow {
  margin: 0 0 12px;
  color: var(--brand-primary);
  font-family: var(--brand-font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.about-section { padding: clamp(72px, 8vw, 112px) 0; }

.about-hero {
  padding: clamp(38px, 5vw, 72px) 0 clamp(54px, 7vw, 88px);
  background:
    radial-gradient(circle at 12% 8%, rgba(192, 149, 81, .16), transparent 28%),
    linear-gradient(135deg, #faf8f3 0%, #f2eee5 100%);
}

.about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: clamp(38px, 6vw, 82px);
}

.about-hero__grid > * { min-width: 0; }

.about-hero__copy { padding-block: 20px; }

.about-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #102b38;
  font-size: clamp(52px, 6.2vw, 86px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.02em;
}

.about-hero__lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--about-muted);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.about-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--brand-border);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

.about-button:hover,
.about-button:focus-visible {
  transform: translateY(-2px);
  text-decoration: none;
}

.about-button--primary {
  border-color: var(--about-red);
  background: var(--about-red);
  color: #fff;
}

.about-button--primary:hover,
.about-button--primary:focus-visible {
  border-color: #a92332;
  background: #a92332;
  color: #fff;
}

.about-button--secondary {
  border-color: rgba(18, 44, 56, .22);
  background: #fff;
  color: var(--about-ink);
}

.about-button--secondary:hover,
.about-button--secondary:focus-visible {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.about-hero__media {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 26px;
  background: #dce6e8;
  box-shadow: 0 24px 60px rgba(18, 44, 56, .18);
}

.about-hero__media > img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.about-hero__badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 2px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 14px;
  background: rgba(6, 59, 71, .9);
  color: #fff;
  box-shadow: 0 12px 30px rgba(6, 59, 71, .28);
  backdrop-filter: blur(10px);
}

.about-hero__badge span {
  color: rgba(255,255,255,.76);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-hero__badge strong { font-size: 16px; }

.about-trust {
  position: relative;
  z-index: 2;
  padding: 0 0 36px;
  background: #fff;
}

.about-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: -26px;
  overflow: hidden;
  border: 1px solid var(--brand-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(18, 44, 56, .11);
}

.about-trust article {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  padding: 24px;
}

.about-trust article + article { border-left: 1px solid var(--brand-border); }

.about-trust svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 12px;
  background: #edf4f5;
  fill: none;
  stroke: var(--brand-primary);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-trust strong,
.about-trust span { display: block; }

.about-trust strong {
  color: var(--about-ink);
  font-size: 16px;
}

.about-trust span {
  margin-top: 2px;
  color: var(--about-muted);
  font-size: 14px;
  line-height: 1.35;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.about-story__media {
  position: relative;
  padding: 0 0 34px 34px;
}

.about-story__media::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72%;
  height: 72%;
  border-radius: 24px;
  background: var(--about-warm);
}

.about-story__media img {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 20px 45px rgba(18, 44, 56, .15);
}

.about-story__media p {
  position: relative;
  z-index: 2;
  width: min(88%, 460px);
  margin: -28px 0 0 auto;
  padding: 18px 20px;
  border: 1px solid var(--brand-border);
  border-radius: 14px;
  background: #fff;
  color: var(--about-muted);
  font-size: 14px;
  line-height: 1.45;
  box-shadow: 0 14px 34px rgba(18, 44, 56, .12);
}

.about-story__copy h2,
.about-heading h2,
.about-company__content h2,
.about-final h2 {
  margin: 0;
  color: var(--about-ink);
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.02;
}

.about-story__copy > p:not(.about-eyebrow) {
  margin: 18px 0 0;
  color: var(--about-muted);
  font-size: 17px;
  line-height: 1.7;
}

.about-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--about-red);
  font-weight: 700;
  text-decoration: none;
}

.about-text-link:hover,
.about-text-link:focus-visible { text-decoration: underline; }

.about-principles { background: var(--about-warm); }

.about-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: end;
  gap: clamp(28px, 6vw, 88px);
  margin-bottom: 38px;
}

.about-heading > p {
  margin: 0 0 4px;
  color: var(--about-muted);
  font-size: 17px;
  line-height: 1.6;
}

.about-principles__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.about-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--brand-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(18, 44, 56, .05);
}

.about-card__number {
  color: var(--about-red);
  font-family: var(--brand-font-display);
  font-size: 18px;
  letter-spacing: .12em;
}

.about-card h3 {
  margin: auto 0 12px;
  color: var(--about-ink);
  font-size: 28px;
}

.about-card p {
  margin: 0;
  color: var(--about-muted);
  font-size: 15px;
  line-height: 1.55;
}

.about-process {
  padding: clamp(72px, 8vw, 108px) 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(192, 149, 81, .15), transparent 34%),
    var(--brand-ocean);
  color: #fff;
}

.about-heading--light h2,
.about-heading--light .about-eyebrow { color: #fff; }
.about-heading--light > p { color: rgba(255,255,255,.72); }

.about-process__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.18);
  list-style: none;
}

.about-process__grid li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: clamp(26px, 3vw, 38px);
  background: rgba(255,255,255,.055);
}

.about-process__grid li > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: #fff;
  font-family: var(--brand-font-display);
  font-size: 22px;
}

.about-process__grid h3 {
  margin: 0;
  color: #fff;
  font-size: 25px;
}

.about-process__grid p {
  margin: 9px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.55;
}

.about-process__note {
  max-width: 940px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.65);
  font-size: 15px;
  line-height: 1.55;
}

.about-experiences__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-experience-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid var(--brand-border);
  border-radius: 20px;
  background: #fff;
  color: var(--about-ink);
  box-shadow: 0 12px 32px rgba(18, 44, 56, .07);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.about-experience-card::after {
  content: "";
  position: absolute;
  right: -46px;
  top: -58px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(47, 90, 105, .08);
  transition: transform .22s ease;
}

.about-experience-card:hover,
.about-experience-card:focus-visible {
  border-color: rgba(47, 90, 105, .35);
  box-shadow: 0 20px 44px rgba(18, 44, 56, .12);
  transform: translateY(-3px);
  text-decoration: none;
}

.about-experience-card:hover::after,
.about-experience-card:focus-visible::after { transform: scale(1.12); }

.about-experience-card > span {
  color: var(--brand-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.about-experience-card h3 {
  max-width: 76%;
  margin: 18px 0 10px;
  color: var(--about-ink);
  font-size: clamp(28px, 3vw, 38px);
}

.about-experience-card p {
  max-width: 620px;
  margin: 0 0 28px;
  color: var(--about-muted);
  font-size: 16px;
  line-height: 1.55;
}

.about-experience-card strong {
  margin-top: auto;
  color: var(--about-red);
  font-size: 15px;
}

.about-company { padding-top: 0; }

.about-company__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border-radius: 24px;
  background: var(--about-warm);
}

.about-company__media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.about-company__content {
  padding: clamp(42px, 6vw, 76px);
}

.about-company__content > p:not(.about-eyebrow) {
  margin: 20px 0 0;
  color: var(--about-muted);
  font-size: 17px;
  line-height: 1.65;
}

.about-facts {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
}

.about-facts div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(18, 44, 56, .14);
}

.about-facts dt {
  color: var(--about-ink);
  font-weight: 700;
}

.about-facts dd {
  margin: 0;
  color: var(--about-muted);
  line-height: 1.5;
}

.about-facts a { color: var(--about-red); }

.about-final { padding: 0 0 clamp(72px, 8vw, 108px); }

.about-final__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
  padding: clamp(36px, 5vw, 64px);
  border: 1px solid var(--brand-border);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(192, 149, 81, .14), transparent 40%),
    #faf8f3;
}

.about-final h2 { max-width: 780px; }

.about-final__panel > div > p:not(.about-eyebrow) {
  max-width: 740px;
  margin: 16px 0 0;
  color: var(--about-muted);
  font-size: 17px;
  line-height: 1.55;
}

.about-final .about-actions {
  flex-wrap: nowrap;
  margin: 0;
}

@media (max-width: 1020px) {
  .about-hero__grid { grid-template-columns: 1fr; }
  .about-hero__copy { max-width: 820px; }
  .about-hero__media,
  .about-hero__media > img { min-height: 480px; }
  .about-split { grid-template-columns: 1fr; }
  .about-story__media { max-width: 820px; }
  .about-principles__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-company__grid { grid-template-columns: 1fr; }
  .about-company__media img { min-height: 480px; max-height: 620px; }
  .about-final__panel { grid-template-columns: 1fr; align-items: start; }
  .about-final .about-actions { flex-wrap: wrap; }
}

@media (max-width: 760px) {
  .about-container { width: min(calc(100% - 28px), var(--about-max)); }
  .about-section { padding: 64px 0; }
  .about-hero { padding: 34px 0 54px; }
  .about-hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 11.75vw, 48px);
    overflow-wrap: anywhere;
  }
  .about-hero__lead { margin-top: 18px; font-size: 18px; }
  .about-actions { min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr); width: 100%; }
  .about-button { width: 100%; max-width: 100%; }
  .about-hero__media,
  .about-hero__media > img { min-height: 390px; }
  .about-hero__badge { right: 14px; bottom: 14px; left: 14px; }
  .about-trust { padding-bottom: 20px; }
  .about-trust__grid { grid-template-columns: 1fr; margin-top: -18px; }
  .about-trust article + article { border-top: 1px solid var(--brand-border); border-left: 0; }
  .about-story__media { padding: 0 0 24px 18px; }
  .about-story__media p { width: calc(100% - 18px); margin-top: -18px; }
  .about-heading { grid-template-columns: 1fr; gap: 16px; margin-bottom: 28px; }
  .about-story__copy h2,
  .about-heading h2,
  .about-company__content h2,
  .about-final h2 { font-size: clamp(38px, 11vw, 50px); }
  .about-principles__grid,
  .about-experiences__grid { grid-template-columns: 1fr; }
  .about-card { min-height: 235px; }
  .about-process__grid { grid-template-columns: 1fr; }
  .about-process__grid li + li { border-top: 1px solid rgba(255,255,255,.18); }
  .about-experience-card { min-height: 235px; }
  .about-company__media img { min-height: 360px; }
  .about-company__content { padding: 36px 24px 42px; }
  .about-facts div { grid-template-columns: 1fr; gap: 5px; }
  .about-final__panel { gap: 28px; padding: 34px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .about-button,
  .about-experience-card,
  .about-experience-card::after { transition: none; }
}

/* Long-form copy must remain readable at every breakpoint. */
main p:not(.about-eyebrow){font-size:16px;line-height:1.65;}
