/* ===== SECTION 1: ABOUT HERO — Letter-led, personal, direct ===== */
.about-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--bg-base);
}

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

.about-hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(61, 155, 155, 0.10) 0%, transparent 65%);
  filter: blur(40px);
}

.about-hero-container {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.about-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  padding: 6px 14px;
  background: rgba(61, 155, 155, 0.08);
  border-radius: var(--radius-button);
  border: 1px solid rgba(61, 155, 155, 0.15);
}

.about-hero-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Typographic Anchor: large Fraunces question */
.about-hero-question {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 4.75rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 32px;
  color: var(--text-primary);
}

.hero-emphasis {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

/* Answer: spacious, confident statement */
.about-hero-answer {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 620px;
}

.about-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== SECTION 2: ANDREW'S STORY — Letter-led narrative ===== */
.story-letter {
  max-width: 680px;
  position: relative;
}

.story-letter::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, transparent 80%);
  opacity: 0.3;
}

.story-paragraph {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.story-paragraph:last-of-type {
  margin-bottom: 40px;
}

.story-signature {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.story-signature-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.story-signature-role {
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.story-sdg {
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* ===== SECTION 3: PROMISES — Typography-led, each gets weight and space ===== */
.promises-list {
  display: flex;
  flex-direction: column;
  max-width: 800px;
}

.promise {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 32px 0;
  border-top: 1px solid var(--border-subtle);
}

.promise:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

.promise-number {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  flex-shrink: 0;
  width: 36px;
  padding-top: 10px;
}

.promise-text {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text-primary);
  flex: 1;
}

/* ===== SECTION 4: BOUNDARIES — Direct, matter-of-fact, compact ===== */
.boundaries-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 900px;
}

.boundary {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  border-top: 1px solid var(--border-subtle);
}

/* Create a seamless 2-column grid with clean borders */
.boundary:nth-child(odd) {
  border-right: 1px solid var(--border-subtle);
}

.boundary:nth-last-child(-n+2) {
  border-bottom: 1px solid var(--border-subtle);
}

.boundary-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(220, 100, 100, 0.08);
  color: rgba(220, 120, 120, 0.7);
  font-size: 14px;
  font-weight: 400;
  flex-shrink: 0;
  margin-top: 2px;
  line-height: 1;
}

.boundary-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-primary);
}

/* ===== SECTION 5: WHO YOU'LL WORK WITH — Solo as advantage ===== */
.who-content {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  max-width: 820px;
}

.who-monogram {
  flex-shrink: 0;
}

.who-monogram-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(61, 155, 155, 0.12) 0%, rgba(61, 155, 155, 0.04) 100%);
  border: 1px solid var(--border-accent);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  font-style: italic;
  color: var(--accent);
  letter-spacing: -0.02em;
  box-shadow: 0 0 30px rgba(61, 155, 155, 0.1);
}

.who-text {
  flex: 1;
}

.who-lead {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.who-body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.who-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 500;
}

/* ===== SECTION 6: TALK TO ANDREW — Personal CTA ===== */
.talk-wrapper {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-standard);
  border-radius: 24px;
  padding: 64px 48px;
  overflow: hidden;
  transition: border-color var(--transition-smooth);
}

.talk-wrapper:hover {
  border-color: var(--border-accent);
}

.talk-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(61, 155, 155, 0.08) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.talk-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.talk-content .section-label {
  justify-content: center;
}

.talk-content .section-label::before {
  display: none;
}

.talk-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 16px 0 40px;
}

.talk-title .text-accent {
  font-style: italic;
}

.talk-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  text-align: left;
}

.talk-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-standard);
  border-radius: var(--radius-panel);
  text-decoration: none;
  color: var(--text-primary);
  transition: background var(--transition-smooth), border-color var(--transition-smooth), transform var(--transition-smooth);
  min-height: 44px;
}

.talk-method:hover {
  background: rgba(61, 155, 155, 0.06);
  border-color: var(--border-accent);
  transform: translateX(4px);
  color: var(--text-primary);
}

.talk-method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(61, 155, 155, 0.1);
  border-radius: 12px;
  color: var(--accent);
  flex-shrink: 0;
}

.talk-method-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.talk-method-label {
  font-size: 12px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.talk-method-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* Andrew attribution */
.talk-attribution {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.talk-signature {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.talk-role {
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

/* Cross-navigation explore links */
.talk-explore {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.talk-explore-label {
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.talk-explore-link {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
}

.talk-explore-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition-smooth);
}

.talk-explore-link:hover {
  color: var(--accent-hover);
}

.talk-explore-link:hover::after {
  width: 100%;
}


/* ===== PAGE-SPECIFIC RESPONSIVE ===== */
/* ===== RESPONSIVE ===== */

/* Desktop large (1280px+) */
@media (min-width: 1281px) {
  .story-letter {
    max-width: 720px;
  }
}

/* Tablet / smaller desktop (1024px) */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .who-content {
    gap: 32px;
  }

  .who-monogram-mark {
    width: 80px;
    height: 80px;
    font-size: 1.6rem;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }

  /* Navigation collapses */






  /* Hero — adjusted for mobile */
  .about-hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .about-hero-question {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .about-hero-answer {
    font-size: 1.5rem;
  }

  .about-hero-cta {
    flex-direction: column;
  }

  .about-hero-cta .btn {
    width: 100%;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .section-description {
    font-size: 1rem;
  }

  /* Story — letter adjusts for mobile */
  .story-letter {
    max-width: 100%;
  }

  .story-letter::before {
    left: -16px;
  }

  .story-paragraph {
    font-size: 1.1rem;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .story-signature {
    margin-top: 32px;
  }

  .story-signature-name {
    font-size: 1.3rem;
  }

  /* Promises — stacked, full width */
  .promise {
    gap: 16px;
    padding: 24px 0;
  }

  .promise-number {
    width: 28px;
    font-size: 12px;
    padding-top: 6px;
  }

  .promise-text {
    font-size: clamp(1.15rem, 5vw, 1.4rem);
    line-height: 1.35;
  }

  /* Boundaries — single column on mobile */
  .boundaries-list {
    grid-template-columns: 1fr;
  }

  .boundary {
    padding: 16px 0;
  }

  .boundary:nth-child(odd) {
    border-right: none;
  }

  .boundary:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .boundary:last-child {
    border-bottom: 1px solid var(--border-subtle);
  }

  /* Who — stack monogram above text */
  .who-content {
    flex-direction: column;
    gap: 24px;
  }

  .who-monogram-mark {
    width: 72px;
    height: 72px;
    font-size: 1.4rem;
  }

  .who-lead {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }

  .who-body {
    font-size: 1rem;
  }

  /* Talk/CTA — tightened */
  .talk-wrapper {
    padding: 40px 24px;
    border-radius: 16px;
  }

  .talk-title {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }

  .talk-methods {
    gap: 12px;
  }

  .talk-method {
    padding: 14px 18px;
  }

  .talk-explore {
    margin-top: 28px;
    padding-top: 24px;
    flex-direction: column;
    gap: 12px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Small mobile (375px) */
@media (max-width: 420px) {
  .container {
    padding: 0 16px;
  }

  .about-hero-label {
    font-size: 11px;
  }

  .btn {
    padding: 12px 22px;
    font-size: 14px;
  }

  .story-letter::before {
    left: -8px;
  }

  .story-paragraph {
    font-size: 1.05rem;
  }

  .promise {
    padding: 20px 0;
  }

  .promise-text {
    font-size: 1.1rem;
  }

  .boundary {
    padding: 14px 0;
  }

  .talk-method-icon {
    width: 40px;
    height: 40px;
  }

  .talk-method-value {
    font-size: 0.9rem;
  }
}
