/*
 * about.css — Page-specific styles for the LKB About Us page.
 *
 * All rules scoped under .page-about so nothing leaks into other pages.
 * No new CSS variables — every value uses tokens defined in style.css :root {}.
 */

/* ==================== NAV ACTIVE STATE ==================== */
.page-about .nav-link.active {
  color: var(--accent);
}
.page-about .nav-link.active::after {
  width: 100%;
}

/* ==================== ABOUT HERO ==================== */
.page-about .about-hero {
  position: relative;
  height: 80vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-about .about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-about .about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.page-about .about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.65) 55%,
    rgba(153,88,56,0.5) 100%
  );
  z-index: 2;
}

.page-about .about-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 2rem;
  max-width: 860px;
}

.page-about .about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--secondary);
  line-height: 1.08;
  margin-bottom: 1.75rem;
}

.page-about .about-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.85;
  opacity: 0;
  animation: fadeInUp 1s ease 1s forwards;
}

.page-about .about-hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.page-about .about-hero-scroll span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ==================== PILLARS STRIP ==================== */
.page-about .about-pillars-strip {
  background: var(--black);
  display: flex;
  align-items: stretch;
  justify-content: center;
  border-bottom: 1px solid rgba(201,169,98,0.12);
}

.page-about .pillar-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem 3.5rem;
  flex: 1;
  max-width: 320px;
}

.page-about .pillar-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201,169,98,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.page-about .pillar-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.page-about .pillar-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
}

.page-about .pillar-sub {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.page-about .pillar-divider {
  width: 1px;
  background: rgba(255,255,255,0.06);
  margin: 1.5rem 0;
}

/* ==================== STORY SECTION ==================== */
.page-about .about-story {
  padding: 8rem 5%;
  background: var(--secondary);
}

.page-about .about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

/* Image cluster */
.page-about .story-images {
  position: relative;
}

.page-about .story-img-main {
  position: relative;
  z-index: 2;
  box-shadow: 16px 16px 0 rgba(153,88,56,0.15), 0 20px 60px rgba(0,0,0,0.18);
}

.page-about .story-img-main img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.page-about .story-img-accent {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 220px;
  z-index: 3;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  border: 4px solid var(--secondary);
}

.page-about .story-img-accent img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.page-about .story-years-badge {
  position: absolute;
  top: -24px;
  left: -24px;
  z-index: 4;
  width: 110px;
  height: 110px;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(153,88,56,0.4);
}

.page-about .badge-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.page-about .badge-plus {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
  line-height: 1;
  margin-top: -4px;
}

.page-about .badge-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,237,214,0.7);
  text-align: center;
  margin-top: 4px;
  padding: 0 8px;
  line-height: 1.4;
}

/* Story text */
.page-about .story-content {
  padding-bottom: 3rem; /* offset for accent image overflow */
}

.page-about .story-text {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.95;
  margin-bottom: 1.5rem;
}

.page-about .story-text em {
  font-style: italic;
  color: var(--primary);
}

.page-about .story-quote {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 2.5rem 0 2.5rem;
  padding: 1.75rem 2rem;
  background: var(--primary);
  border-left: 3px solid var(--accent);
}

.page-about .quote-mark {
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}

.page-about .story-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  color: var(--secondary);
  line-height: 1.5;
}

/* ==================== VALUES SECTION ==================== */
.page-about .about-values {
  padding: 8rem 5%;
  background: var(--primary);
}

.page-about .about-values .section-title {
  color: var(--secondary);
}

.page-about .about-values .section-tag {
  color: var(--accent-light);
}

.page-about .values-intro {
  font-size: 0.95rem;
  color: rgba(247,237,214,0.7);
  line-height: 1.85;
}

.page-about .values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(201,169,98,0.12);
}

.page-about .value-card {
  background: var(--primary);
  padding: 3rem 2.5rem;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.page-about .value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,169,98,0.04);
  opacity: 0;
  transition: var(--transition);
}

.page-about .value-card:hover::before {
  opacity: 1;
}

.page-about .value-card:hover {
  transform: translateY(-4px);
}

.page-about .value-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201,169,98,0.12);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  transition: var(--transition);
}

.page-about .value-card:hover .value-num {
  color: rgba(201,169,98,0.22);
}

.page-about .value-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.page-about .value-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--secondary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.page-about .value-text {
  font-size: 0.88rem;
  color: rgba(247,237,214,0.65);
  line-height: 1.85;
}

/* ==================== BESPOKE PROCESS SECTION ==================== */
.page-about .about-process {
  position: relative;
  padding: 9rem 5%;
  overflow: hidden;
}

.page-about .about-process-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-about .about-process-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-about .about-process-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 2;
}

.page-about .about-process-inner {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
}

.page-about .about-process-header {
  max-width: 560px;
  margin-bottom: 5rem;
}

.page-about .about-process-header .section-tag {
  color: var(--accent);
}

.page-about .section-title.light {
  color: var(--secondary);
}

.page-about .process-intro {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-top: -0.5rem;
}

/* Process steps — horizontal flow */
/* No overflow-x here on purpose: setting it would compute overflow-y to
   `auto`, and the staggered entrance animation (translateY) would flash a
   scrollbar on load. The steps shrink to fit instead — see min-width below. */
.page-about .process-steps {
  display: flex;
  align-items: flex-start;
  /* Each step owns its stroke, so the gutter is a real gap rather than spacer
     columns. Column width is unchanged: (W - 4 * 48) / 5. */
  gap: 48px;
  margin-bottom: 3.5rem;
  padding-bottom: 0.5rem;
}

.page-about .process-step {
  flex: 1;
  min-width: 0;
}

/* Stroke and number ride on one line whose left edge is the step's left edge —
   the same edge as the heading and the paragraph underneath. */
.page-about .process-step-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.page-about .process-step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.page-about .process-step-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.page-about .process-step-content p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

.page-about .process-connector {
  flex-shrink: 0;
  width: 36px;
  height: 1px;
  background: linear-gradient(to right, var(--accent), rgba(201,169,98,0.2));
}

/* Process disclaimer note */
.page-about .process-note {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem 1.5rem;
  background: rgba(201,169,98,0.08);
  border-left: 2px solid var(--accent);
  margin-bottom: 2.5rem;
}

.page-about .process-note svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.page-about .process-note span {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.page-about .process-note a {
  color: var(--accent);
  border-bottom: 1px solid rgba(201,169,98,0.4);
  transition: var(--transition);
}

.page-about .process-note a:hover {
  color: var(--accent-light);
  border-color: var(--accent-light);
}

/* ==================== SERVICES SECTION ==================== */
.page-about .about-services {
  padding: 8rem 5%;
  background: var(--secondary);
}

.page-about .about-services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.page-about .services-intro {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.8;
}

.page-about .services-list {
  display: flex;
  flex-direction: column;
}

.page-about .service-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.page-about .service-row:first-child {
  border-top: 1px solid var(--gray-200);
}

.page-about .service-row:hover {
  padding-left: 0.75rem;
}

.page-about .service-row-icon {
  width: 64px;
  height: 64px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}

.page-about .service-row:hover .service-row-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--accent);
}

.page-about .service-row-body {
  flex: 1;
}

.page-about .service-row-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.page-about .service-row-body p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 600px;
}

.page-about .service-row-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}

.page-about .service-row-link:hover {
  gap: 0.75rem;
  color: var(--accent-dark);
}

/* ==================== POLICIES SECTION ==================== */
.page-about .about-policies {
  padding: 8rem 5%;
  background: var(--gray-100);
}

.page-about .about-policies-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.page-about .policies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.page-about .policy-card {
  background: var(--white);
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.page-about .policy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-bottom-color: var(--accent);
}

.page-about .policy-card-highlight {
  background: var(--primary);
  border-bottom-color: var(--accent) !important;
}

.page-about .policy-card-highlight:hover {
  box-shadow: 0 12px 40px rgba(153,88,56,0.35);
}

.page-about .policy-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.page-about .policy-card-highlight .policy-icon {
  color: var(--accent-light);
}

.page-about .policy-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 0.875rem;
}

.page-about .policy-card-highlight h3 {
  color: var(--secondary);
}

.page-about .policy-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.8;
}

.page-about .policy-card-highlight p {
  color: rgba(247,237,214,0.7);
}

.page-about .policies-cta {
  text-align: center;
}

/* ==================== FAQ SECTION ==================== */
.page-about .about-faq {
  padding: 8rem 5%;
  background: var(--secondary);
}

.page-about .about-faq-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-about .about-faq-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.page-about .faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 5rem;
  margin-bottom: 4rem;
}

.page-about .faq-group-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-200);
}

.page-about .faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.page-about .faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.35rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--primary);
  transition: var(--transition);
}

.page-about .faq-question:hover {
  color: var(--accent-dark);
}

.page-about .faq-icon {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.35s ease;
}

.page-about .faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.page-about .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-about .faq-item.open .faq-answer {
  max-height: 260px;
  padding-bottom: 1.5rem;
}

.page-about .faq-answer p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.9;
}

.page-about .faq-more {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.page-about .faq-more p {
  font-size: 0.95rem;
  color: var(--gray-500);
}

/* ==================== CLOSING CTA ==================== */
.page-about .about-cta {
  position: relative;
  padding: 10rem 5%;
  overflow: hidden;
}

.page-about .about-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-about .about-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-about .about-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  z-index: 2;
}

.page-about .about-cta-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* Reuse shared .cta-title / .cta-text styles from style.css — they apply here */

.page-about .about-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
  .page-about .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-about .policies-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-about .policy-card-highlight {
    grid-column: span 2;
  }

  /* Give the five steps more room as the row tightens */
  .page-about .process-steps {
    gap: 28px;
  }

  .page-about .process-connector {
    width: 18px;
  }

  .page-about .process-step-head {
    gap: 10px;
  }
}

@media (max-width: 1024px) {
  .page-about .about-story-inner {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .page-about .story-images {
    max-width: 520px;
    margin: 0 auto;
  }

  .page-about .story-img-main img {
    height: 440px;
  }

  .page-about .about-pillars-strip {
    flex-wrap: wrap;
  }

  .page-about .pillar-item {
    max-width: 50%;
    flex-basis: 50%;
  }

  .page-about .pillar-divider:nth-child(4) {
    display: none;
  }

  .page-about .process-steps {
    flex-direction: column;
    gap: 2.5rem;
  }

  .page-about .process-connector {
    width: 36px;
  }

  .page-about .process-step-head {
    gap: 12px;
  }

  .page-about .faq-columns {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .page-about .about-hero {
    height: 70vh;
  }

  .page-about .about-story,
  .page-about .about-values,
  .page-about .about-services,
  .page-about .about-policies,
  .page-about .about-faq {
    padding: 5rem 5%;
  }

  .page-about .about-process {
    padding: 5rem 5%;
  }

  .page-about .about-cta {
    padding: 6rem 5%;
  }

  .page-about .story-img-accent {
    right: -16px;
    bottom: -24px;
    width: 150px;
  }

  .page-about .story-img-accent img {
    height: 170px;
  }

  .page-about .story-years-badge {
    width: 90px;
    height: 90px;
    top: -16px;
    left: -16px;
  }

  .page-about .badge-num {
    font-size: 2rem;
  }

  .page-about .values-grid {
    grid-template-columns: 1fr;
  }

  .page-about .about-pillars-strip {
    flex-direction: column;
  }

  .page-about .pillar-item {
    max-width: none;
    flex-basis: auto;
    padding: 1.25rem 1.5rem;
  }

  .page-about .pillar-divider {
    width: auto;
    height: 1px;
    margin: 0;
  }

  .page-about .service-row {
    flex-wrap: wrap;
    gap: 1.25rem;
  }

  .page-about .service-row-link {
    margin-left: calc(64px + 1.25rem);
  }

  .page-about .policies-grid {
    grid-template-columns: 1fr;
  }

  .page-about .policy-card-highlight {
    grid-column: span 1;
  }

  .page-about .about-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .page-about .about-cta-buttons .btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .page-about .about-hero-title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .page-about .story-img-accent {
    display: none;
  }

  .page-about .process-steps {
    gap: 2rem;
  }
}
