/* =============================================
   TEAKBLOOM — ABOUT PAGE
   Premium editorial layout · scoped to .about-page
   ============================================= */

.about-page {
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.12);
  --gold-glow: rgba(212, 175, 55, 0.35);
  --charcoal: #0e0e0c;
  --surface: #1a1815;
  --surface-glass: rgba(26, 24, 21, 0.72);
  --text: rgba(229, 226, 221, 0.82);
  --text-muted: rgba(255, 255, 255, 0.45);
  --border: rgba(212, 175, 55, 0.14);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* Spacing rhythm */
  --page-gutter: clamp(1.125rem, 4.5vw, 2.5rem);
  --section-y: clamp(4rem, 8vw, 7.5rem);
  --block-gap: clamp(1.5rem, 3vw, 3rem);
  --content-max: 1280px;

  background: var(--charcoal);
  color: var(--text);
  overflow-x: clip;
  width: 100%;
}

.about-container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  box-sizing: border-box;
}

.about-page section {
  position: relative;
}

/* ---- Shared typography ---- */
.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.about-eyebrow::before,
.about-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.about-eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.about-eyebrow.center {
  justify-content: center;
}

.about-title {
  font-family: "Playfair Display", serif;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.about-lead {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 52ch;
}

.about-lead--center {
  margin-inline: auto;
  text-align: center;
}

.about-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}

.about-section-header .about-title {
  font-size: clamp(1.85rem, 4vw, 3rem);
}

/* ---- HERO ---- */
.about-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: calc(5.5rem + env(safe-area-inset-top, 0px)) calc(3.5rem + env(safe-area-inset-bottom, 0px));
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.about-hero .about-container {
  flex: 0 0 auto;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.about-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: aboutKenBurns 18s ease-in-out infinite alternate;
}

@keyframes aboutKenBurns {
  from { transform: scale(1.06) translateY(0); }
  to   { transform: scale(1.12) translateY(-1.5%); }
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14, 14, 12, 0.55) 0%, rgba(14, 14, 12, 0.25) 35%, rgba(14, 14, 12, 0.92) 100%),
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(212, 175, 55, 0.08), transparent 60%);
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--block-gap);
  align-items: end;
  width: 100%;
}

.about-hero__brand {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.75rem, 7.5vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 0%, #fff 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0.5rem 0 1.25rem;
  overflow-wrap: anywhere;
}

.about-hero__tagline {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.25rem;
}

.about-hero__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.75rem 0;
  max-width: 220px;
}

.about-hero__divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.about-hero__divider i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 12px var(--gold-glow);
}

.about-hero__card {
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(1.35rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2.25rem);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.about-hero__card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.about-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.65rem, 2vw, 1rem);
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-hero__stat {
  min-width: 0;
  text-align: center;
}

.about-hero__stat strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.about-hero__stat span {
  display: block;
  font-size: clamp(0.5rem, 1.4vw, 0.62rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.about-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.about-scroll-cue .line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: aboutScrollPulse 2s ease-in-out infinite;
}

@keyframes aboutScrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.7); }
  50%      { opacity: 1; transform: scaleY(1); }
}

/* ---- MARQUEE ---- */
.about-marquee {
  padding: 1.1rem 0;
  border-block: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.about-marquee__track {
  display: flex;
  width: max-content;
  animation: aboutMarquee 28s linear infinite;
}

.about-marquee__track span {
  flex-shrink: 0;
  padding: 0 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  white-space: nowrap;
}

.about-marquee__track span em {
  font-style: normal;
  color: var(--gold);
  opacity: 0.7;
}

@keyframes aboutMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- STORY ---- */
.about-story {
  padding-block: var(--section-y);
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-story__visual {
  position: relative;
  padding: 0.75rem 0.75rem 2.5rem 0;
  max-width: 100%;
}

.about-story__frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.about-story__frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--gold);
  opacity: 0.28;
  pointer-events: none;
  z-index: 1;
}

.about-story__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
}

.about-story__visual:hover .about-story__frame img {
  transform: scale(1.04);
}

.about-story__badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  z-index: 2;
  max-width: calc(100% - 1rem);
}

.about-story__badge strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.about-story__badge span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-story__content .about-title {
  font-size: clamp(1.85rem, 4vw, 3.4rem);
  margin-bottom: 1.5rem;
}

.about-story__content {
  min-width: 0;
}

.about-story__content p {
  margin-bottom: 1.35rem;
  line-height: 1.9;
  color: var(--text-muted);
}

.about-story__quote {
  margin-top: 2rem;
  padding: 1.5rem 0 0 clamp(1rem, 3vw, 1.75rem);
  border-left: 2px solid var(--gold);
}

.about-story__quote blockquote {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.about-story__quote cite {
  display: block;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.about-story__quote cite span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---- TEAM ---- */
.about-team {
  padding-block: var(--section-y);
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

.about-team__role {
  position: relative;
  z-index: 1;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem !important;
}

/* ---- WOOD (NILAMBUR TEAK) ---- */
.about-wood {
  padding-block: var(--section-y);
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(212, 175, 55, 0.04), transparent 70%),
    var(--charcoal);
}

.about-wood__banner {
  margin: 0 0 clamp(2.25rem, 5vw, 3.5rem);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.12);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  aspect-ratio: 21 / 9;
}

.about-wood__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- PHILOSOPHY ---- */
.about-philosophy {
  padding-block: var(--section-y);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212, 175, 55, 0.04), transparent 70%),
    var(--charcoal);
}

.about-philosophy__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2.25rem, 5vw, 3.5rem);
  padding-inline: 0;
}

.about-philosophy__header .about-title {
  font-size: clamp(1.85rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.about-philosophy__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

.about-pillar {
  position: relative;
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.15rem, 2.5vw, 1.75rem);
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  text-align: center;
  overflow: hidden;
  min-width: 0;
  transition: transform 0.55s var(--ease-out-expo), border-color 0.4s ease, box-shadow 0.55s ease;
}

.about-pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--gold-soft), transparent 65%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.about-pillar:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.08);
}

.about-pillar:hover::before {
  opacity: 1;
}

.about-pillar__icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(212, 175, 55, 0.06);
  color: var(--gold);
  font-size: 1.75rem;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.about-pillar:hover .about-pillar__icon {
  background: rgba(212, 175, 55, 0.14);
  box-shadow: 0 0 24px var(--gold-glow);
}

.about-pillar h3 {
  position: relative;
  z-index: 1;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.about-pillar p {
  position: relative;
  z-index: 1;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ---- CRAFT JOURNEY ---- */
.about-craft {
  padding-block: var(--section-y);
}

.about-craft__header {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.about-craft__header .about-title {
  font-size: clamp(1.85rem, 4vw, 3rem);
}

.about-craft__scroll-wrap {
  /* Full-bleed scroll area with safe edge padding */
  margin-inline: calc(-1 * var(--page-gutter));
  padding-inline: var(--page-gutter);
  overflow: hidden;
}

.about-journey-track {
  display: flex;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  overflow-x: auto;
  overflow-y: hidden;
  padding-block: 0.5rem 1.75rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-inline: var(--page-gutter);
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

.about-journey-track::-webkit-scrollbar {
  height: 3px;
}

.about-journey-track::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 99px;
}

.about-step-card {
  flex: 0 0 clamp(260px, 78vw, 320px);
  scroll-snap-align: start;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.55s var(--ease-out-expo), border-color 0.4s ease, box-shadow 0.55s ease;
}

.about-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.about-step-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.about-step-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out-expo);
}

.about-step-card:hover .about-step-card__img img {
  transform: scale(1.08);
}

.about-step-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--surface) 5%, transparent 55%);
}

.about-step-card__num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(212, 175, 55, 0.25);
}

.about-step-card__body {
  padding: 1.35rem 1.5rem 1.5rem;
  position: relative;
}

.about-step-card__body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.about-step-card__body p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.about-craft__hint {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
  padding-inline: var(--page-gutter);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.45);
  text-align: center;
}

/* ---- METRICS ---- */
.about-metrics {
  padding-block: var(--section-y);
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.03), transparent);
}

.about-metrics__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

.about-metric {
  padding: clamp(1.75rem, 3vw, 2.75rem) clamp(1.25rem, 2.5vw, 2rem);
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  min-width: 0;
  transition: border-color 0.4s ease, transform 0.5s var(--ease-out-expo);
}

.about-metric:hover {
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-4px);
}

.about-metric__icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.85;
}

.about-metric__value {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 3.75rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.about-metric__label {
  display: block;
  font-size: clamp(0.62rem, 1.5vw, 0.72rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.75rem;
  overflow-wrap: anywhere;
}

.about-metric p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ---- PROMISE STRIP ---- */
.about-promise {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.about-promise__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.about-promise__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  min-width: 0;
}

.about-promise__item .material-symbols-outlined {
  color: var(--gold);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.about-promise__item h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.35rem;
}

.about-promise__item p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ---- CTA ---- */
.about-cta {
  position: relative;
  min-height: clamp(420px, 55vh, 520px);
  display: flex;
  align-items: center;
  padding-block: var(--section-y);
  isolation: isolate;
  overflow: hidden;
}

.about-cta__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.about-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(14, 14, 12, 0.92) 0%, rgba(14, 14, 12, 0.65) 55%, rgba(14, 14, 12, 0.4) 100%),
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1), transparent 50%);
}

.about-cta__inner {
  max-width: 620px;
  width: 100%;
}

.about-cta__inner .about-title {
  font-size: clamp(1.85rem, 4.5vw, 3.5rem);
  margin-bottom: 1.15rem;
}

.about-cta__inner p {
  font-size: clamp(0.92rem, 1.6vw, 1rem);
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 54ch;
}

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-size: clamp(0.62rem, 1.4vw, 0.68rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.about-btn--primary {
  background: var(--gold);
  color: #0e0e0c;
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.28);
}

.about-btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.38);
}

.about-btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.about-btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* =============================================
   RESPONSIVE — tablet, mobile, small mobile
   ============================================= */

/* Tablet landscape / small desktop */
@media (max-width: 1100px) {
  .about-philosophy__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Tablet portrait */
@media (max-width: 900px) {
  .about-hero__grid,
  .about-story__grid {
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 4vw, 2.5rem);
  }

  .about-hero {
    justify-content: center;
    padding-block: calc(6rem + env(safe-area-inset-top, 0px)) calc(2.75rem + env(safe-area-inset-bottom, 0px));
  }

  .about-hero__card {
    max-width: 100%;
  }

  .about-hero__grid > div:first-child {
    text-align: center;
  }

  .about-hero__grid > div:first-child .about-eyebrow {
    justify-content: center;
  }

  .about-hero__divider {
    margin-inline: auto;
  }

  .about-hero__grid > div:first-child .about-lead {
    margin-inline: auto;
    text-align: center;
  }

  .about-story__visual {
    padding: 0;
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
  }

  .about-story__content {
    max-width: 640px;
    margin-inline: auto;
  }

  .about-promise__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }

  .about-cta__inner {
    max-width: 100%;
    text-align: center;
    margin-inline: auto;
  }

  .about-cta__inner .about-eyebrow {
    justify-content: center;
  }

  .about-cta__inner p {
    margin-inline: auto;
  }

  .about-cta__actions {
    justify-content: center;
  }
}

/* Narrow tablet / large phone — stack metrics */
@media (max-width: 720px) {
  .about-metrics__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .about-page {
    --page-gutter: 1.125rem;
    --section-y: 3.75rem;
  }

  .about-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    gap: 0.5rem;
  }

  .about-eyebrow::before,
  .about-eyebrow::after {
    width: 18px;
  }

  .about-hero__tagline {
    font-size: clamp(1.15rem, 5vw, 1.45rem);
  }

  .about-hero__divider {
    max-width: 180px;
    margin-block: 1.25rem;
  }

  .about-story__frame {
    aspect-ratio: 5 / 4;
  }

  .about-wood__banner {
    aspect-ratio: 4 / 3;
  }

  .about-story__badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1rem;
    display: inline-block;
  }

  .about-story__visual {
    max-width: 100%;
  }

  .about-story__quote blockquote {
    font-size: 1.02rem;
  }

  .about-philosophy__grid {
    grid-template-columns: 1fr;
  }

  .about-team__grid {
    grid-template-columns: 1fr;
  }

  .about-pillar:hover {
    transform: none;
  }

  .about-step-card:hover {
    transform: none;
  }

  .about-metric:hover {
    transform: none;
  }

  .about-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-btn {
    width: 100%;
    padding-inline: 1.25rem;
  }

  .about-scroll-cue {
    display: none;
  }

  .about-craft__hint {
    letter-spacing: 0.14em;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .about-hero__brand {
    font-size: 2.35rem;
  }

  .about-hero__stat span {
    letter-spacing: 0.08em;
  }
}

/* Desktop-only refinements */
@media (min-width: 901px) {
  .about-hero__grid > div:first-child {
    padding-bottom: 0.5rem;
  }

  .about-cta__overlay {
    background:
      linear-gradient(105deg, rgba(14, 14, 12, 0.92) 0%, rgba(14, 14, 12, 0.55) 48%, rgba(14, 14, 12, 0.25) 100%),
      radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1), transparent 50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-hero__bg img,
  .about-marquee__track,
  .about-scroll-cue .line {
    animation: none;
  }

  .about-pillar:hover,
  .about-step-card:hover,
  .about-metric:hover {
    transform: none;
  }
}
