/* ---------- Base ---------- */

:root {
  --background: #79BAEC;
  --surface: #ffffff;
  --text: #000000;
  --heading: #000000;
  --border: #000000;
  --page-width: 1180px;
  --content-width: 1000px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Helvetica,
    Arial,
    sans-serif;
  line-height: 1.6;
}

.container {
  width: min(calc(100% - 40px), var(--page-width));
  margin: 0 auto;
}

.content-container,
.video-container {
  width: min(calc(100% - 40px), var(--content-width));
  margin: 0 auto;
}


/* ---------- Intro ---------- */

.intro-section {
  padding: 64px 0 48px;
}

h1 {
  width: 100%;
  margin: 0;
  color: var(--heading);
  font-size: clamp(2.7rem, 6.5vw, 5.8rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
}


.intro-heading {
  width: 100%;
}

.intro-photo {
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin-top: 22px;
}

.intro-name {
  width: fit-content;
  margin: 0;
  padding-bottom: 6px;
  border-bottom: 4px solid var(--heading);
}

.intro-subtitle {
  margin-top: 22px;
}

.intro-subtitle p {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 650;
  line-height: 1.45;
}

.intro-subtitle p + p {
  margin-top: 2px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.intro-quote {
  width: 100%;
  margin: 34px 0 0;
  font-size: clamp(0.95rem, 1.6vw, 1.25rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

.intro-copy {
  width: 100%;
  margin: 18px 0 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}


/* ---------- Videos ---------- */


.origin-section {
  padding: 34px 0 44px;
}

.origin-section h2 {
  margin: 0 0 22px;
  color: var(--heading);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.1;
}

.origin-section p {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.7;
}

.origin-section p + p {
  margin-top: 18px;
}

.video-section {
  padding: 0 0 96px;
}

.video-container {
  display: flex;
  flex-direction: column;
  padding-top: 48px;
  border-top: 3px solid var(--border);
}

.video-item {
  width: 100%;
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 3px solid var(--border);
}

.video-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid #000;
  border-radius: 10px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.045);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-copy {
  width: 100%;
  padding-top: 20px;
}

.video-copy h2 {
  width: 100%;
  margin: 0;
  color: var(--heading);
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.video-copy p {
  width: 100%;
  margin: 10px 0 0;
  font-size: 1rem;
  line-height: 1.7;
}


/* ---------- Retirement ---------- */

.closing-section {
  padding: 0 0 64px;
}

.closing-section .content-container {
  padding-top: 48px;
  border-top: 3px solid var(--border);
}

.closing-section h2 {
  width: 100%;
  margin: 0;
  color: var(--heading);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.closing-section p {
  width: 100%;
  margin: 20px 0 0;
  font-size: 1rem;
  line-height: 1.75;
}

.closing-quote {
  margin-top: 28px !important;
  font-size: clamp(1rem, 1.6vw, 1.25rem) !important;
  font-weight: 700;
  font-style: italic;
  line-height: 1.5 !important;
}

.closing-note {
  margin-top: 28px !important;
  font-size: clamp(1rem, 1.6vw, 1.25rem) !important;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 1.5 !important;
}




/* ---------- Contact ---------- */

.contact-section {
  padding: 0 0 180px;
}

.contact-section .content-container {
  padding-top: 48px;
  border-top: 3px solid var(--border);
}

.contact-section h2 {
  width: 100%;
  margin: 0;
  color: var(--heading);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.contact-section p {
  width: 100%;
  margin: 20px 0 0;
  font-size: 1rem;
  line-height: 1.75;
}

.contact-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-link:hover {
  text-decoration-thickness: 2px;
}


/* ---------- Footer ---------- */

.site-footer {
  padding: 28px 0 40px;
  border-top: 5px solid var(--border);
  color: var(--text);
  font-size: 0.85rem;
}

.site-footer p {
  margin: 0;
}


/* ---------- Mobile ---------- */



.contact-note {
  margin-top: 10px !important;
  font-size: 0.78rem !important;
  line-height: 1.5 !important;
}


@media (max-width: 760px) {
  .container,
  .content-container,
  .video-container {
    width: min(calc(100% - 28px), var(--page-width));
  }

  .intro-section {
    padding: 42px 0 34px;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .intro-name {
    border-bottom-width: 3px;
  }


  .intro-quote {
    margin-top: 30px;
  }

  .video-container {
    padding-top: 32px;
  }

  .video-item {
    padding-bottom: 32px;
    margin-bottom: 32px;
  }

  .video-frame {
    border-radius: 7px;
  }

  .video-copy {
    padding-top: 16px;
  }

  .video-section {
    padding-bottom: 52px;
  }

  .closing-section {
    padding-bottom: 48px;
  }

  .closing-section .content-container {
    padding-top: 32px;
  }

  .contact-section {
    padding-bottom: 120px;
  }

  .contact-section .content-container {
    padding-top: 32px;
  }

  .contact-note {
    margin-top: 10px !important;
  }
}
