.about-page {
  --ab-ink: #1a1a1a;
  --ab-body: #444;
  --ab-muted: #6e6e6e;
  --ab-line: rgba(0, 0, 0, 0.08);
  --ab-beige: #faf8f3;
  --ab-beige-deep: #f3efe6;
  --ab-accent: var(--color-accent, #d3c6a6);
  --ab-accent-ink: #b8965a;
  --ab-radius: var(--radius-m, 12px);
  --ab-ease: cubic-bezier(.2, .8, .2, 1);
}

.about-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #1a1a1a;
}

.about-hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.about-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: aboutHeroZoom 14s ease-out forwards;
}
@keyframes aboutHeroZoom {
  to { transform: scale(1); }
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.32) 0%,
    rgba(0, 0, 0, 0.18) 32%,
    rgba(0, 0, 0, 0.42) 68%,
    rgba(0, 0, 0, 0.78) 100%
  );
}

.about-hero__inner {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: var(--container-width, 1280px);
  margin: 0 auto;
  padding-block: clamp(48px, 14vh, 132px);
  color: #fff;
}

.about-hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 22px;
  padding-left: 2px;
  opacity: 0;
  animation: abFadeUp 0.9s var(--ab-ease) 0.1s forwards;
}

.about-hero__title {
  font-size: clamp(34px, 9vw, 76px);
  line-height: 1.18;
  letter-spacing: 0.02em;
  margin: 0 0 clamp(20px, 4vw, 32px);
  text-wrap: pretty;
  opacity: 0;
  animation: abFadeUp 1s var(--ab-ease) 0.22s forwards;
}

.about-hero__headline {
  font-size: clamp(18px, 4.6vw, 28px);
  line-height: 1.85;
  font-weight: 400;
  letter-spacing: 0.02em;
  max-width: 22em;
  margin: 0 0 clamp(20px, 4vw, 30px);
  color: rgba(255, 255, 255, 0.96);
  text-wrap: pretty;
  opacity: 0;
  animation: abFadeUp 1s var(--ab-ease) 0.36s forwards;
}

.about-hero__text {
  max-width: 60ch;
  opacity: 0;
  animation: abFadeUp 1s var(--ab-ease) 0.5s forwards;
}
.about-hero__text p {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  font-weight: 300;
}

@keyframes abFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.about-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  transform: translateX(-50%);
  width: 1px;
  height: 46px;
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}
.about-hero__scroll::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateY(-100%);
  animation: abScroll 2.2s var(--ab-ease) infinite;
}
@keyframes abScroll {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

@media (min-width: 768px) {
  .about-hero { align-items: center; }
  .about-hero__img { object-position: center 25%; }
}

@media (prefers-reduced-motion: reduce) {
  .about-hero__img,
  .about-hero__eyebrow,
  .about-hero__title,
  .about-hero__headline,
  .about-hero__text,
  .about-hero__scroll::after {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.about-promise {
  background: var(--ab-beige);
  padding-block: clamp(56px, 12vw, 132px);
}
.about-promise__inner {
  width: 90%;
  max-width: var(--container-width, 1280px);
  margin: 0 auto;
}

.about-section-head {
  margin-bottom: clamp(40px, 8vw, 80px);
  max-width: 720px;
}
.about-section-head__eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ab-muted);
  margin-bottom: 16px;
}
.about-section-head__title {
  font-size: clamp(24px, 6vw, 40px);
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--ab-ink);
  margin: 0;
  text-wrap: pretty;
}

.about-promise__list {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 9vw, 96px);
  counter-reset: promise;
}

.about-promise__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 4vw, 28px);
  align-items: center;
}

.about-promise__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--ab-radius);
  background: var(--ab-beige-deep);
}
.about-promise__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.55s var(--ab-ease);
}

.about-promise__body {
  position: relative;
}
.about-promise__num {
  display: block;
  font-family: var(--font-serif, serif);
  font-size: clamp(2.6rem, 9vw, 3.6rem);
  font-style: italic;
  line-height: 1;
  color: var(--ab-accent);
  margin-bottom: 12px;
  user-select: none;
}
.about-promise__title {
  font-size: clamp(19px, 5vw, 26px);
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--ab-ink);
  margin: 0 0 14px;
  text-wrap: pretty;
}
.about-promise__text {
  font-size: clamp(14px, 1.8vw, 15px);
  line-height: 2.1;
  color: var(--ab-body);
  margin: 0;
  max-width: 52ch;
  font-weight: 300;
}

@media (min-width: 768px) {
  .about-promise__item {
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(40px, 6vw, 72px);
  }

  .about-promise__item:nth-child(even) { direction: rtl; }
  .about-promise__item:nth-child(even) > * { direction: ltr; }

  .about-promise__media:hover img { transform: scale(1.03); }
  .about-promise__title { font-size: 26px; }
  .about-promise__text { font-size: 15px; }
}

.about-statement {
  background: #fff;
  padding-block: clamp(64px, 14vw, 150px);
}
.about-statement__inner {
  width: 90%;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.about-statement__text {
  font-size: clamp(18px, 4vw, 27px);
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--ab-ink);
  margin: 0;
  text-wrap: pretty;
  font-weight: 400;
}

.cta-final {
  background: #fff;
  padding-block: clamp(72px, 14vw, 140px);
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.cta-final-inner {
  width: min(92%, 600px);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-final-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #6e6e6e;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.cta-final-title {
  font-size: clamp(22px, 5vw, 36px);
  line-height: 1.6;
  color: #111;
  margin: 0 0 36px;
  font-weight: 400;
}
.cta-final-lead {
  font-size: 13px;
  line-height: 2.0;
  color: #6e6e6e;
  margin: -20px 0 32px;
}

.cta-btn-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.cta-btn {
  position: relative;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 6px;
  padding: 14px 18px;
  min-height: 52px;
  font-size: clamp(14px, 1.7vw, 15px);
  letter-spacing: 0.06em;
  line-height: 1;
}

.cta-final .cta-btn.main {
  background: transparent;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.3);
  min-width: 240px;
  letter-spacing: 0.1em;
  font-size: 13px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.cta-final .cta-btn.main:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}
.cta-final .cta-btn.main::after { display: none; }

.cta-final-tel {
  display: block;
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #6e6e6e;
  text-decoration: none;
  transition: color 0.2s ease;
}
.cta-final-tel:hover { color: #111; }

.cta-final-note {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #6e6e6e;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .cta-final-title { font-size: 34px; }
  .cta-final .cta-btn.main { min-width: 280px; }
  .cta-btn { padding: 15px 22px; }
}

.ab-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ab-ease), transform 0.8s var(--ab-ease);
}
.ab-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .ab-reveal { opacity: 1; transform: none; transition: none; }
}

.sp-br { display: inline; }
@media (min-width: 768px) {
  .sp-br { display: none; }
}

.about-hero__title,
.about-hero__headline,
.about-section-head__title,
.about-statement__text,
.cta-final-title,
.about-promise__title {
  line-break: strict;
  word-break: normal;
  overflow-wrap: normal;
}
