.ab-h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 74px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.ab-h2 em { font-style: italic; color: var(--ink-soft); font-weight: 300; }

.ab-hero { padding: 150px 0 0; }
.ab-hero__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ab-hero__inner .eyebrow { display: block; margin-bottom: 24px; }
.ab-hero__title {
  font-size: clamp(48px, 6.4vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.018em;
  margin-bottom: 28px;
  max-width: 16ch;
}
.ab-hero__title em { font-style: italic; font-weight: 300; color: var(--ink-soft); }
.ab-hero__lead {
  max-width: 60ch;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.7;
  color: var(--ink-soft);
}
.ab-hero__media {
  position: relative;
  margin-top: 64px;
  aspect-ratio: 16 / 7;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 50px 70px -50px rgba(78, 55, 33, 0.45);
}
.ab-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
}

.ab-story { padding: 110px 0; }
.ab-story .sec__head { align-items: start; margin-bottom: 0; }
.ab-story__body { display: flex; flex-direction: column; gap: 22px; }
.ab-story__body p {
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.78;
  color: var(--ink-soft);
  max-width: 62ch;
}

.ab-approach {
  background: var(--cream-soft);
  padding: 112px 0;
  position: relative;
}
.ab-approach::before, .ab-approach::after {
  content: "";
  position: absolute;
  left: 0; right: 0; height: 1px;
  background: rgba(179, 159, 127, 0.4);
}
.ab-approach::before { top: 0; }
.ab-approach::after { bottom: 0; }
.ab-approach__inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: stretch;
}
.ab-approach__media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  min-height: 480px;
}
.ab-approach__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ab-approach__intro {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 46ch;
}
.ab-points {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.ab-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(78, 55, 33, 0.18);
}
.ab-point__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.ab-point h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.ab-point p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 48ch;
}

.ab-space { padding: 110px 0; }
.ab-space__head { margin-bottom: 56px; }
.ab-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  grid-template-rows: 250px 250px;
  gap: 18px;
  grid-template-areas:
    "a b e"
    "c d e";
}
.ab-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
}
.ab-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease);
}
.ab-gallery figure:hover img { transform: scale(1.05); }

.ab-values {
  background: var(--cream-soft);
  padding: 112px 0;
  position: relative;
}
.ab-values::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: rgba(179, 159, 127, 0.4);
}
.ab-values__head { margin-bottom: 60px; }
.ab-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.ab-value {
  padding-top: 30px;
  border-top: 1px solid rgba(78, 55, 33, 0.22);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ab-value__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
}
.ab-value h3 {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.008em;
  color: var(--ink);
}
.ab-value h3 em { font-style: italic; font-weight: 300; color: var(--ink-soft); }
.ab-value p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

@media (max-width: 1100px) {
  .ab-story .sec__head { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 980px) {
  .ab-approach__inner { grid-template-columns: 1fr; gap: 40px; }
  .ab-approach__media { min-height: 0; aspect-ratio: 16 / 10; order: -1; }
  .ab-values__grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 820px) {
  .ab-hero { padding: 124px 0 0; }
  .ab-story, .ab-space { padding: 80px 0; }
  .ab-approach, .ab-values { padding: 80px 0; }
  .ab-hero__media { margin-top: 44px; aspect-ratio: 16 / 10; }
  .ab-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 190px 190px 300px;
    grid-template-areas:
      "a e"
      "b e"
      "c d";
  }
}
@media (max-width: 480px) {
  .ab-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px) 360px;
    grid-template-areas: "a" "b" "c" "d" "e";
  }
}
