/* Scoped styles for About Us Page (/about-us/) */
.about-page {
  --ab-white: #ffffff;
  --ab-paper: #fbf9f5;
  --ab-paper-2: #f5f1e8;
  --ab-ink: #1a1712;
  --ab-muted: #7a7468;
  --ab-line: #e6e0d4;
  --ab-line-2: #d8d0bf;
  --ab-gold: #a8842f;
  --ab-gold-2: #c9a85c;
  --ab-gold-soft: #f3ead3;
  --ab-serif: 'Cormorant Garamond', Georgia, serif;
  --ab-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ab-max: 1240px;
  --ab-gutter: clamp(20px, 4vw, 60px);

  /* Gray placeholder variables */
  --ab-ph-bg: #ece9e3;
  --ab-ph-border: #dcd7cc;
  --ab-ph-text: #8c867a;

  font-family: var(--ab-sans);
  color: var(--ab-ink);
  background: var(--ab-white);
  line-height: 1.65;
  font-size: 16px;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box;
}

.about-page * {
  box-sizing: border-box;
}

.about-page a {
  color: inherit;
  text-decoration: none;
}

.ab-wrap {
  max-width: var(--ab-max);
  margin: 0 auto;
  padding: 0 var(--ab-gutter);
  width: 100%;
}

/* Gray Placeholders */
.ab-ph {
  background-color: var(--ab-ph-bg);
  border: 1px solid var(--ab-ph-border);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  min-height: 240px;
  background-image: 
    linear-gradient(var(--ab-ph-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--ab-ph-border) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: center center;
}

.ab-ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(236, 233, 227, 0.84);
}

.ab-ph-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.ab-ph-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--ab-ph-border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ab-ph-text);
  font-size: 15px;
  background: rgba(255, 255, 255, 0.7);
}

.ab-ph-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ab-ph-text);
  font-weight: 600;
}

.ab-ph-desc {
  font-size: 13px;
  color: var(--ab-muted);
  max-width: 260px;
  line-height: 1.45;
}

.ab-ph-tall { min-height: 460px; height: 100%; }
.ab-ph-square { min-height: 280px; }

/* Real Media Box Containers */
.ab-media-box {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--ab-line);
  background: var(--ab-paper-2);
  box-shadow: 0 10px 28px rgba(26, 23, 18, 0.06);
}
.ab-media-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ab-team-card:hover .ab-media-box img,
.ab-scene-card:hover .ab-media-box img,
.ab-split:hover .ab-media-box img,
.ab-hero:hover .ab-media-box img {
  transform: scale(1.02);
}
.ab-media-tall {
  min-height: 440px;
  height: 100%;
  max-height: 520px;
}
.ab-media-square {
  height: 240px;
}

/* Tag & Labels */
.ab-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ab-gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.ab-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--ab-gold);
}

.ab-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ab-gold);
  font-weight: 600;
  margin-bottom: 16px;
}

/* Typography */
.about-page h1,
.about-page h2,
.about-page h3,
.about-page h4 {
  font-family: var(--ab-serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ab-ink);
  margin-top: 0;
}

.about-page h1 {
  font-size: clamp(38px, 5.2vw, 66px);
  line-height: 1.06;
  margin-bottom: 24px;
}

.about-page h2 {
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.15;
  margin-bottom: 18px;
}

.about-page h3 {
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.25;
  margin-bottom: 10px;
}

.about-page h1 em,
.about-page h2 em,
.about-page h3 em {
  font-style: italic;
  font-weight: 400;
  color: var(--ab-gold);
}

.about-page p {
  color: var(--ab-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
  font-weight: 400;
}

.ab-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--ab-muted);
  margin-bottom: 32px;
}

/* Buttons */
.ab-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.ab-btn {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 100px;
  transition: all 0.25s ease;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.ab-btn-solid {
  background: var(--ab-gold);
  color: var(--ab-white);
  border: 1px solid var(--ab-gold);
}
.ab-btn-solid:hover {
  background: var(--ab-gold-2);
  border-color: var(--ab-gold-2);
}

.ab-btn-line {
  border: 1px solid var(--ab-line-2);
  color: var(--ab-ink);
  background: transparent;
}
.ab-btn-line:hover {
  border-color: var(--ab-gold);
  color: var(--ab-gold);
}

/* Hero Section */
.ab-hero {
  background: var(--ab-paper);
  padding: clamp(64px, 8vw, 110px) 0 clamp(54px, 6vw, 84px);
  border-bottom: 1px solid var(--ab-line);
}

.ab-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}

/* Stats Row */
.ab-stats-sec {
  padding: 0;
  margin-top: -34px;
  position: relative;
  z-index: 10;
}

.ab-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ab-line);
  gap: 1px;
  border: 1px solid var(--ab-line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26, 23, 18, 0.04);
}

.ab-stat {
  background: var(--ab-white);
  padding: 28px 24px;
}

.ab-stat .n {
  font-family: var(--ab-serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: 1;
  color: var(--ab-ink);
  margin-bottom: 8px;
}
.ab-stat .n em {
  font-style: italic;
  color: var(--ab-gold);
}

.ab-stat .t {
  font-size: 13px;
  color: var(--ab-muted);
  line-height: 1.4;
}

/* Sections */
.ab-section {
  padding: clamp(64px, 7.5vw, 104px) 0;
}
.ab-section-alt {
  background: var(--ab-paper);
}
.ab-section-gold {
  background: var(--ab-gold-soft);
}
.ab-section-dark {
  background: var(--ab-ink);
  color: var(--ab-white);
}
.ab-section-dark h2,
.ab-section-dark h3,
.ab-section-dark h4 {
  color: var(--ab-white);
}
.ab-section-dark .ab-label {
  color: var(--ab-gold-2);
}
.ab-section-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.ab-head {
  max-width: 700px;
  margin-bottom: clamp(36px, 4vw, 54px);
}
.ab-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--ab-muted);
  margin-top: 12px;
}

/* Splits */
.ab-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
.ab-split.reverse .ab-split-visual {
  order: 2;
}

.ab-checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}
.ab-checklist li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 15px;
  color: var(--ab-ink);
}
.ab-checklist li::before {
  content: "✦";
  color: var(--ab-gold);
  font-size: 13px;
  flex-shrink: 0;
}

/* History Timeline */
.ab-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.ab-time-card {
  background: var(--ab-white);
  border: 1px solid var(--ab-line);
  border-radius: 6px;
  padding: 28px 22px;
  border-top: 3px solid var(--ab-gold);
}
.ab-time-year {
  font-family: var(--ab-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--ab-gold);
  margin-bottom: 8px;
}
.ab-time-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ab-ink);
  margin-bottom: 8px;
}
.ab-time-card p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Team Grid */
.ab-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ab-team-card {
  background: var(--ab-white);
  border: 1px solid var(--ab-line);
  border-radius: 6px;
  overflow: hidden;
}
.ab-team-body {
  padding: 24px 20px;
}
.ab-team-role {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ab-gold);
  font-weight: 600;
  margin-bottom: 6px;
}
.ab-team-body h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.ab-team-body p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Cards Grid */
.ab-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.ab-card {
  background: var(--ab-white);
  border: 1px solid var(--ab-line);
  border-radius: 6px;
  padding: 32px 26px;
  transition: all 0.3s ease;
}
.ab-card:hover {
  transform: translateY(-3px);
  border-color: var(--ab-gold-2);
  box-shadow: 0 14px 30px rgba(168, 132, 47, 0.08);
}
.ab-card-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--ab-gold-2);
  display: grid;
  place-items: center;
  color: var(--ab-gold);
  font-size: 15px;
  margin-bottom: 20px;
}
.ab-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.ab-card p {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 0;
}

/* Scenes / Culture Grid */
.ab-scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ab-scene-card {
  background: var(--ab-white);
  border: 1px solid var(--ab-line);
  border-radius: 6px;
  overflow: hidden;
}
.ab-scene-body {
  padding: 24px 20px;
}
.ab-scene-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.ab-scene-body p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 980px) {
  .ab-hero-grid,
  .ab-split,
  .ab-timeline,
  .ab-team-grid,
  .ab-scene-grid {
    grid-template-columns: 1fr;
  }
  .ab-split.reverse .ab-split-visual {
    order: 0;
  }
  .ab-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ab-stats {
    grid-template-columns: 1fr;
  }
}
