/* ============================================================
   ABOUT TEASER — index.html compact version
   ============================================================ */
.about-teaser {
  background: #EDE5DC;
  border-top: 1px solid rgba(39,39,39,0.08);
  padding: clamp(64px, 8vw, 100px) 0;
}
.about-teaser-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.about-teaser-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #272727;
  margin-top: 20px;
}
.about-teaser-headline--dim { color: rgba(39,39,39,0.30); }
.about-teaser-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about-teaser-body p {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(39,39,39,0.62);
}
.about-teaser-cta {
  display: inline-block;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #272727;
  border: 1px solid rgba(39,39,39,0.35);
  padding: 14px 32px;
  border-radius: 2px;
  align-self: flex-start;
  transition: background 250ms ease, border-color 250ms ease;
}
.about-teaser-cta:hover {
  background: rgba(39,39,39,0.06);
  border-color: rgba(39,39,39,0.70);
}
.about-teaser .about-eyebrow { color: #C4886A; }
.about-teaser .about-eyebrow::before { background: #C4886A; }

@media (max-width: 768px) {
  .about-teaser-inner { grid-template-columns: 1fr; gap: clamp(32px, 6vw, 48px); }
}

/* ============================================================
   ABOUT PAGE HEADER — about.html hero strip
   ============================================================ */
.about-page-header {
  background: #272727;
  padding: clamp(100px, 14vw, 160px) 0 clamp(56px, 7vw, 88px);
  border-bottom: 1px solid rgba(226,207,196,0.08);
}
.about-page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

/* ============================================================
   ABOUT SECTION — full version (index + about.html)
   ============================================================ */
.about-page-header + .about-section {
  padding-top: clamp(56px, 7vw, 88px);
}

.about-section {
  background: #272727;
  padding: clamp(80px, 10vw, 140px) 0 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(226,207,196,0.08);
}
.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  z-index: 0;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  position: relative;
  z-index: 1;
}

.about-header {
  margin-bottom: clamp(56px, 7vw, 96px);
}
.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #C4886A;
  margin-bottom: 24px;
}
.about-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: #C4886A;
  opacity: 0.6;
  flex-shrink: 0;
}

.about-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(52px, 7.5vw, 104px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #E2CFC4;
}

/* Per-line stagger animation */
.about-headline-line {
  display: block;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-headline-line:nth-child(2) { transition-delay: 0.13s; }
.about-headline-line:nth-child(3) { transition-delay: 0.26s; }
.about-headline-line--dim { color: rgba(226,207,196,0.35); }
.about-headline.about-in .about-headline-line { opacity: 1; transform: translateY(0); }

/* Body grid */
.about-body {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

/* Image column */
.about-image-col {
  position: relative;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}
.about-image-col.about-in { opacity: 1; transform: translateX(0); }

.about-image-main {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-image-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-image-col:hover .about-image-main img { transform: scale(1.04); }

.about-image-caption {
  position: absolute;
  bottom: 20px; left: 20px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(226,207,196,0.75);
  background: rgba(39,39,39,0.68);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 7px 13px;
}

/* Floating inset photo — bottom right */
.about-image-float {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 42%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 4px solid #272727;
  opacity: 0;
  transform: translateY(20px) scale(0.94);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.55s,
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.55s;
}
.about-image-col.about-in .about-image-float { opacity: 1; transform: translateY(0) scale(1); }
.about-image-float img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Text column */
.about-text-col {
  padding-top: clamp(16px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about-body-text {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(226,207,196,0.68);
}
.about-pull-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.45;
  color: #E2CFC4;
  border-left: 2px solid #C4886A;
  padding-left: 24px;
  margin: 4px 0;
  quotes: none;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}
.about-tag {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(196,136,106,0.85);
  border: 1px solid rgba(196,136,106,0.28);
  padding: 7px 16px;
  border-radius: 2px;
}

/* Stats strip */
.about-stats {
  display: flex;
  align-items: stretch;
  margin-top: clamp(72px, 9vw, 120px);
  border-top: 1px solid rgba(226,207,196,0.08);
  position: relative;
  z-index: 1;
}
.about-stat {
  flex: 1;
  padding: clamp(28px, 4vw, 52px) clamp(20px, 3vw, 40px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: background 300ms ease;
}
.about-stat:hover { background: rgba(226,207,196,0.03); }
.about-stat + .about-stat { border-left: 1px solid rgba(226,207,196,0.08); }
.about-stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #E2CFC4;
}
.about-stat-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(226,207,196,0.38);
}

@media (max-width: 900px) {
  .about-body { grid-template-columns: 1fr; }
  .about-image-col { max-width: 560px; }
  .about-image-float { right: -16px; bottom: -16px; }
}
@media (max-width: 600px) {
  .about-stats { flex-direction: column; }
  .about-stat + .about-stat { border-left: none; border-top: 1px solid rgba(226,207,196,0.08); }
  .about-image-float { display: none; }
}
