/* ============================================================
   ABOUT PAGE — about.html specific styles
   ============================================================ */

/* ---- Page hero ---- */
.about-page-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding-top: 68px;
  overflow: hidden;
}
.about-page-hero-bg {
  position: absolute;
  inset: 0;
}
.about-page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.about-page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(39,39,39,0.90) 0%,
    rgba(39,39,39,0.55) 45%,
    rgba(39,39,39,0.20) 100%
  );
}
.about-page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px) clamp(56px, 7vw, 96px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about-page-hero-eyebrow {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #C4886A;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: #C4886A;
  opacity: 0.7;
}
.about-page-hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(52px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #E2CFC4;
  max-width: 14ch;
}
.about-page-hero-title span { color: rgba(226,207,196,0.38); }
.about-page-hero-sub {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(226,207,196,0.62);
  max-width: 44ch;
}
.about-page-hero-scroll {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(226,207,196,0.35);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.about-page-hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(226,207,196,0.25);
}

/* ---- Story section ---- */
.about-story {
  background: #272727;
  padding: clamp(80px, 10vw, 140px) 0 clamp(80px, 10vw, 140px);
  position: relative;
  overflow: hidden;
}
.about-story::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  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;
}
.about-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  position: relative;
  z-index: 1;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.about-story-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-story-image-col.about-in { opacity: 1; transform: translateX(0); }
.about-story-main-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-story-main-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-story-image-col:hover .about-story-main-img img { transform: scale(1.04); }
.about-story-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;
}
.about-story-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-story-image-col.about-in .about-story-float { opacity: 1; transform: translateY(0) scale(1); }
.about-story-float img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-story-text {
  padding-top: clamp(16px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about-story-body {
  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.65);
}
.about-story-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-story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}
.about-story-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;
}

/* ---- Photo strip ---- */
.about-photo-strip {
  background: #272727;
  padding: clamp(72px, 9vw, 110px) 0 0;
  position: relative;
}
.about-photo-strip::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: clamp(80px, 12vw, 160px);
  background: linear-gradient(to right, transparent, #272727);
  pointer-events: none;
  z-index: 2;
}
.about-photo-strip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto clamp(24px, 3vw, 36px);
  padding: 0 clamp(24px, 5vw, 80px);
}
.about-photo-strip-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(226,207,196,0.30);
}
.about-photo-strip-hint {
  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.22);
}
.about-photo-strip-row {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 clamp(24px, 5vw, 80px);
  cursor: grab;
  scroll-snap-type: x proximity;
  user-select: none;
}
.about-photo-strip-row.is-dragging { cursor: grabbing; }
.about-photo-strip-row::-webkit-scrollbar { display: none; }
.about-photo-strip-item {
  flex-shrink: 0;
  height: clamp(220px, 28vw, 380px);
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
}
.about-photo-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.about-photo-strip-item:hover img { transform: scale(1.05); }

/* ---- Values section ---- */
.about-values {
  background: #EDE5DC;
  padding: clamp(80px, 10vw, 130px) 0;
  border-top: 1px solid rgba(39,39,39,0.08);
}
.about-values-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}
.about-values-header {
  margin-bottom: clamp(56px, 7vw, 88px);
}
.about-values-eyebrow {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #C4886A;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.about-values-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: #C4886A; opacity: 0.6;
}
.about-values-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #272727;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(39,39,39,0.10);
  border: 1px solid rgba(39,39,39,0.10);
}
.about-value-card {
  background: #EDE5DC;
  padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-value-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(196,136,106,0.22);
}
.about-value-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #272727;
}
.about-value-body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(39,39,39,0.62);
}

/* ---- Stats strip ---- */
.about-page-stats {
  display: flex;
  align-items: stretch;
  background: #272727;
  border-top: 1px solid rgba(226,207,196,0.08);
}
.about-page-stat {
  flex: 1;
  padding: clamp(40px, 5vw, 64px) clamp(20px, 3vw, 40px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: background 300ms ease;
}
.about-page-stat:hover { background: rgba(226,207,196,0.03); }
.about-page-stat + .about-page-stat { border-left: 1px solid rgba(226,207,196,0.08); }
.about-page-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-page-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.35);
}

/* ---- Visit CTA ---- */
.about-visit-cta {
  background: #272727;
  padding: clamp(72px, 9vw, 110px) 0;
  text-align: center;
  border-top: 1px solid rgba(226,207,196,0.08);
}
.about-visit-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.about-visit-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #E2CFC4;
}
.about-visit-detail {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(226,207,196,0.45);
}
.about-visit-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.about-visit-btn-primary {
  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;
  background: #E2CFC4;
  border: 1px solid #E2CFC4;
  padding: 14px 36px;
  border-radius: 2px;
  transition: background 250ms ease, border-color 250ms ease;
}
.about-visit-btn-primary:hover { background: #C4886A; border-color: #C4886A; }
.about-visit-btn-ghost {
  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: #E2CFC4;
  border: 1px solid rgba(226,207,196,0.35);
  padding: 14px 36px;
  border-radius: 2px;
  transition: background 250ms ease, border-color 250ms ease;
}
.about-visit-btn-ghost:hover {
  background: rgba(226,207,196,0.08);
  border-color: rgba(226,207,196,0.7);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .about-story-image-col { max-width: 560px; }
  .about-story-float { right: -16px; bottom: -16px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-page-stats { flex-direction: column; }
  .about-page-stat + .about-page-stat { border-left: none; border-top: 1px solid rgba(226,207,196,0.08); }
}
@media (max-width: 600px) {
  .about-story-float { display: none; }
  .about-page-hero-title { font-size: clamp(44px, 12vw, 72px); }
}
