/* ========================================
   CEO Profile Page - Modern Legal Aesthetic
   ======================================== */

/* CSS Variables - Design System - Blue, White, Gold Only */
:root {
  --ceo-primary: #0A1F44;
  --ceo-secondary: #1A3A6B;
  --ceo-gold-start: #D4AF37;
  --ceo-gold-mid: #C8A84E;
  --ceo-gold-end: #B8960F;
  --ceo-white: #FFFFFF;
  --ceo-max-width: 1200px;
  --ceo-section-padding: 3rem 0;
  --ceo-section-padding-mobile: 2rem 0;
}

/* Typography - Playfair Display for headings */
.ceo-hero h1,
.ceo-hero h2,
.ceo-signature blockquote,
.ceo-biography h2,
.ceo-focus-areas h2,
.ceo-timeline h2,
.ceo-impact h2,
.ceo-thought-leadership h2,
.ceo-personal h2,
.ceo-closing h2 {
  font-family: 'Playfair Display', serif;
}

/* ========================================
   SECTION 1: HERO SECTION
   ======================================== */

.ceo-hero {
  background: linear-gradient(135deg, var(--ceo-primary) 0%, var(--ceo-secondary) 100%);
  color: var(--ceo-white);
  padding: 2rem 0;
  margin-top: 10vh;
  min-height: calc(90vh - 10vh);
  display: flex;
  align-items: center;
}

.ceo-hero .container {
  max-width: var(--ceo-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.ceo-hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.ceo-hero__content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  background: linear-gradient(90deg, var(--ceo-white) 0%, var(--ceo-gold-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ceo-hero__content .subtitle {
  font-size: 1.3rem;
  background: linear-gradient(90deg, var(--ceo-gold-start), var(--ceo-gold-mid), var(--ceo-gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.ceo-hero__content .tagline {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.ceo-hero__content .intro {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.ceo-hero__cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.ceo-hero__cta .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.ceo-hero__cta .btn-primary {
  background: linear-gradient(90deg, var(--ceo-gold-start), var(--ceo-gold-mid), var(--ceo-gold-end));
  color: var(--ceo-primary);
  border: 2px solid var(--ceo-gold-mid);
}

.ceo-hero__cta .btn-primary:hover {
  background: transparent;
  color: var(--ceo-gold-mid);
  border-color: var(--ceo-gold-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.ceo-hero__cta .btn-secondary {
  background: transparent;
  color: var(--ceo-white);
  border: 2px solid var(--ceo-white);
}

.ceo-hero__cta .btn-secondary:hover {
  background: var(--ceo-white);
  color: var(--ceo-primary);
  transform: translateY(-2px);
}

.ceo-hero__image {
  text-align: center;
}

.ceo-hero__image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  padding: 0.5rem;
  background: linear-gradient(135deg, var(--ceo-primary), var(--ceo-secondary));
}

/* ========================================
   SECTION 2: SIGNATURE STATEMENT
   ======================================== */

.ceo-signature {
  background: var(--ceo-white);
  padding: var(--ceo-section-padding);
  position: relative;
}

.ceo-signature .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.ceo-signature blockquote {
  font-size: 2rem;
  font-style: italic;
  color: var(--ceo-primary);
  line-height: 1.6;
  position: relative;
  padding: 3rem 0;
  margin: 0;
}

.ceo-signature blockquote::before,
.ceo-signature blockquote::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ceo-gold-start), var(--ceo-gold-mid), var(--ceo-gold-end), transparent);
}

.ceo-signature blockquote::before {
  top: 0;
}

.ceo-signature blockquote::after {
  bottom: 0;
}

.ceo-signature__icon {
  font-size: 3rem;
  background: linear-gradient(90deg, var(--ceo-gold-start), var(--ceo-gold-mid), var(--ceo-gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.8;
  margin-bottom: 1rem;
}

/* ========================================
   SECTION 3: BIOGRAPHY
   ======================================== */

.ceo-biography {
  background: var(--ceo-white);
  padding: var(--ceo-section-padding);
}

.ceo-biography .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ceo-biography h2 {
  font-size: 2.5rem;
  color: var(--ceo-primary);
  margin-bottom: 3rem;
  position: relative;
  padding-left: 1.5rem;
}

.ceo-biography h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--ceo-gold-start), var(--ceo-gold-mid), var(--ceo-gold-end));
}

.ceo-biography__content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ceo-primary);
  margin-bottom: 1.5rem;
}

/* ========================================
   SECTION 4: LEADERSHIP FOCUS AREAS
   ======================================== */

.ceo-focus-areas {
  background: var(--ceo-white);
  padding: var(--ceo-section-padding);
}

.ceo-focus-areas .container {
  max-width: var(--ceo-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.ceo-focus-areas h2 {
  font-size: 2.5rem;
  color: var(--ceo-primary);
  text-align: center;
  margin-bottom: 3rem;
}

.ceo-focus-areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ceo-focus-card {
  background: var(--ceo-white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
}

.ceo-focus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--ceo-gold-start), var(--ceo-gold-mid), var(--ceo-gold-end)) 1;
}

.ceo-focus-card__icon {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--ceo-gold-start), var(--ceo-gold-mid), var(--ceo-gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.ceo-focus-card h3 {
  font-size: 1.3rem;
  color: var(--ceo-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.ceo-focus-card p {
  font-size: 0.95rem;
  color: var(--ceo-primary);
  opacity: 0.8;
  line-height: 1.6;
}

/* ========================================
   SECTION 5: CAREER TIMELINE
   ======================================== */

.ceo-timeline {
  background: var(--ceo-white);
  padding: var(--ceo-section-padding);
}

.ceo-timeline .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ceo-timeline h2 {
  font-size: 2.5rem;
  color: var(--ceo-primary);
  text-align: center;
  margin-bottom: 4rem;
}

.ceo-timeline__track {
  position: relative;
  padding: 2rem 0;
}

.ceo-timeline__track::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--ceo-gold-start), var(--ceo-gold-mid), var(--ceo-gold-end));
  transform: translateX(-50%);
}

.ceo-timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.ceo-timeline-item:nth-child(odd) {
  padding-right: calc(50% + 2rem);
  text-align: right;
}

.ceo-timeline-item:nth-child(even) {
  padding-left: calc(50% + 2rem);
  text-align: left;
}

.ceo-timeline-item::before {
  content: '';
  position: absolute;
  top: 0.5rem;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--ceo-gold-start), var(--ceo-gold-end));
  border: 4px solid var(--ceo-white);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--ceo-gold-mid);
}

.ceo-timeline-item:nth-child(odd)::before {
  right: calc(50% - 8px);
}

.ceo-timeline-item:nth-child(even)::before {
  left: calc(50% - 8px);
}

.ceo-timeline-item__date {
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--ceo-gold-start), var(--ceo-gold-mid), var(--ceo-gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.ceo-timeline-item__title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ceo-primary);
  margin-bottom: 0.5rem;
}

.ceo-timeline-item__description {
  font-size: 1rem;
  color: var(--ceo-primary);
  opacity: 0.8;
  line-height: 1.6;
}

/* ========================================
   SECTION 6: IMPACT & CONTRIBUTIONS
   ======================================== */

.ceo-impact {
  background: linear-gradient(135deg, var(--ceo-primary) 0%, var(--ceo-secondary) 100%);
  color: var(--ceo-white);
  padding: var(--ceo-section-padding);
}

.ceo-impact .container {
  max-width: var(--ceo-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.ceo-impact h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.ceo-impact__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.ceo-impact-metric {
  text-align: center;
}

.ceo-impact-metric__number {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--ceo-gold-start), var(--ceo-gold-mid), var(--ceo-gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.ceo-impact-metric__label {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.5;
}

.ceo-impact__narrative {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.95;
}

/* ========================================
   SECTION 7: THOUGHT LEADERSHIP
   ======================================== */

.ceo-thought-leadership {
  background: var(--ceo-white);
  padding: var(--ceo-section-padding);
}

.ceo-thought-leadership .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ceo-thought-leadership h2 {
  font-size: 2.5rem;
  color: var(--ceo-primary);
  text-align: center;
  margin-bottom: 3rem;
}

.ceo-thought-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ceo-thought-item {
  background: var(--ceo-white);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid;
  border-image: linear-gradient(180deg, var(--ceo-gold-start), var(--ceo-gold-mid), var(--ceo-gold-end)) 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.ceo-thought-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.ceo-thought-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--ceo-primary);
  font-size: 1.2rem;
  font-weight: 600;
}

.ceo-thought-item a::after {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  background: linear-gradient(90deg, var(--ceo-gold-start), var(--ceo-gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.ceo-thought-item:hover a::after {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   SECTION 8: PERSONAL DIMENSION
   ======================================== */

.ceo-personal {
  background: var(--ceo-white);
  padding: var(--ceo-section-padding);
}

.ceo-personal .container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.ceo-personal h2 {
  font-size: 2.5rem;
  font-style: italic;
  color: var(--ceo-primary);
  margin-bottom: 2rem;
}

.ceo-personal__content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ceo-primary);
}

/* ========================================
   SECTION 9: CLOSING SECTION
   ======================================== */

.ceo-closing {
  background: linear-gradient(135deg, var(--ceo-primary) 0%, var(--ceo-secondary) 100%);
  color: var(--ceo-white);
  padding: var(--ceo-section-padding);
  text-align: center;
}

.ceo-closing .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ceo-closing h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.ceo-closing__text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.ceo-closing__cta .btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(90deg, var(--ceo-gold-start), var(--ceo-gold-mid), var(--ceo-gold-end));
  color: var(--ceo-primary);
  border: 2px solid var(--ceo-gold-mid);
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.ceo-closing__cta .btn:hover {
  background: transparent;
  color: var(--ceo-gold-mid);
  border-color: var(--ceo-gold-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet - 768px to 1024px */
@media (max-width: 1024px) {
  :root {
    --ceo-section-padding: 4rem 0;
  }

  .ceo-hero__content h1 {
    font-size: 3rem;
  }

  .ceo-hero__grid {
    gap: 3rem;
  }

  .ceo-focus-areas__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ceo-impact__metrics {
    gap: 2rem;
  }

  .ceo-impact-metric__number {
    font-size: 3rem;
  }
}

/* Mobile - Below 768px */
@media (max-width: 768px) {
  :root {
    --ceo-section-padding: 3rem 0;
  }

  .ceo-hero {
    min-height: auto;
    padding: 4rem 0;
  }

  .ceo-hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .ceo-hero__content h1 {
    font-size: 2.5rem;
  }

  .ceo-hero__content .subtitle {
    font-size: 1.2rem;
  }

  .ceo-hero__content .tagline {
    font-size: 1.1rem;
  }

  .ceo-hero__content .intro {
    font-size: 1rem;
  }

  .ceo-hero__cta {
    justify-content: center;
  }

  .ceo-hero__image {
    order: -1;
  }

  .ceo-hero__image img {
    max-width: 300px;
    margin: 0 auto;
  }

  .ceo-signature blockquote {
    font-size: 1.5rem;
    padding: 2rem 0;
  }

  .ceo-biography h2,
  .ceo-focus-areas h2,
  .ceo-timeline h2,
  .ceo-impact h2,
  .ceo-thought-leadership h2,
  .ceo-personal h2,
  .ceo-closing h2 {
    font-size: 2rem;
  }

  .ceo-focus-areas__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ceo-timeline__track::before {
    left: 1rem;
  }

  .ceo-timeline-item {
    padding-left: 3rem !important;
    padding-right: 0 !important;
    text-align: left !important;
  }

  .ceo-timeline-item::before {
    left: 0.5rem !important;
    right: auto !important;
  }

  .ceo-impact__metrics {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ceo-impact-metric__number {
    font-size: 3rem;
  }

  .ceo-thought-item {
    padding: 1.5rem;
  }

  .ceo-thought-item a {
    font-size: 1.1rem;
  }
}

/* Small Mobile - Below 480px */
@media (max-width: 480px) {
  .ceo-hero__content h1 {
    font-size: 2rem;
  }

  .ceo-hero__content .subtitle {
    font-size: 1.1rem;
  }

  .ceo-hero__content .tagline {
    font-size: 1rem;
  }

  .ceo-hero__cta .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  .ceo-signature blockquote {
    font-size: 1.3rem;
  }

  .ceo-biography h2,
  .ceo-focus-areas h2,
  .ceo-timeline h2,
  .ceo-impact h2,
  .ceo-thought-leadership h2,
  .ceo-personal h2,
  .ceo-closing h2 {
    font-size: 1.8rem;
  }

  .ceo-focus-card {
    padding: 2rem 1.5rem;
  }

  .ceo-impact-metric__number {
    font-size: 2.5rem;
  }

  .ceo-closing__cta .btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}
