@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Shrikhand&display=swap');

:root {
  --cream: #eee3c5;
  --forest: #304a3a;
  --sage: #7f9275;
  --brown: #42362e;
  --gold: #b58a45;
  --soft-cream: #f8f2e3;
}

/* =========================
   RESET / RESPONSIVE SAFETY
   ========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
}

body {
  background-color: var(--cream);
  color: var(--brown);
  font-family: "DM Sans", sans-serif;
}

img,
svg,
video {
  max-width: 100%;
}

#quarto-content,
.page-columns,
.page-layout-full,
main {
  max-width: 100%;
}

h1,
h2,
h3 {
  font-family: "Shrikhand", serif;
  font-weight: 400;
}

a {
  color: var(--forest);
}

a:hover {
  color: var(--sage);
}


/* =========================
   NAVBAR
   ========================= */

.navbar {
  background-color: var(--cream) !important;
  border-bottom: 1.5px solid var(--brown);
  min-height: 58px;
}

.navbar-nav .nav-link {
  color: var(--brown) !important;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar-nav .nav-link:hover {
  color: var(--forest) !important;
}


/* =========================
   HOMEPAGE HERO
   ========================= */

.landing-page {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;

  width: min(1400px, calc(100% - 2rem));

  height: calc(100vh - 90px);
  min-height: 620px;
  max-height: 820px;

  margin: 1rem auto;

  overflow: hidden;
}


/* =========================
   LEFT PHOTO
   ========================= */

.landing-photo {
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

.landing-photo p {
  width: 100%;
  height: 100%;
  margin: 0;
}

.hero-photo {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  /*
  Adjust this number if you ever want
  slightly more/less space around your face.
  */
  object-position: 57% center;
}


/* =========================
   RIGHT PANEL
   ========================= */

.landing-content {
  min-width: 0;
  height: 100%;

  background-color: var(--soft-cream);

  display: flex;
  flex-direction: column;

  padding: 1.3rem 3.5rem 1.8rem;
}


/* =========================
   LOGO
   ========================= */

.right-logo {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;

  margin: 0 0 0.4rem;
}

.right-logo p {
  margin: 0;
}

.right-logo-image {
  display: block;

  width: clamp(280px, 72%, 390px);
  height: auto;
}


/* =========================
   HERO TEXT
   ========================= */

.right-body {
  min-width: 0;
  width: 100%;
  max-width: 580px;

  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;

  margin: 0 auto;
}

.eyebrow {
  color: var(--sage);

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.16em;
  text-transform: uppercase;

  margin-bottom: 1rem;
}

.right-body h1 {
  color: var(--forest);

  font-family: "Shrikhand", serif;

  font-size: clamp(2.5rem, 3.5vw, 3.8rem);
  line-height: 0.98;

  margin: 0 0 1rem;
}

.right-body h2 {
  color: var(--brown);

  font-family: "DM Sans", sans-serif;

  font-size: clamp(1rem, 1.3vw, 1.22rem);
  font-weight: 600;
  line-height: 1.4;

  margin: 0 0 0.9rem;
}

.right-body p {
  font-size: 0.98rem;
  line-height: 1.55;

  margin: 0 0 0.7rem;
}


/* =========================
   HERO BUTTONS
   ========================= */

.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 0.75rem;

  margin-top: 0.5rem;
}

.hero-actions p {
  display: contents;
}

.btn {
  display: inline-block;

  width: fit-content;
  max-width: 100%;

  padding: 0.8rem 1.35rem;

  border-radius: 999px;

  font-size: 0.92rem;
  font-weight: 700;

  text-align: center;
  text-decoration: none;

  white-space: normal;

  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.btn-primary {
  background-color: var(--forest);

  border: 2px solid var(--forest);

  color: var(--soft-cream) !important;
}

.btn-primary:hover {
  background-color: var(--brown);
  border-color: var(--brown);
}

.btn-outline {
  background: transparent;

  border: 2px solid var(--brown);

  color: var(--brown) !important;
}

.btn-outline:hover {
  background-color: var(--sage);
  border-color: var(--sage);
}


/* =========================
   FIND YOUR PATH
   ========================= */

.path-title {
  color: var(--forest);

  font-family: "Shrikhand", serif;

  font-size: 2.6rem;
  line-height: 1.1;

  margin-top: 3rem;
  margin-bottom: 1rem;
}

.path-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 1.5rem;

  margin-top: 2rem;
  margin-bottom: 5rem;
}

.path-tile {
  min-width: 0;

  background-color: var(--soft-cream);

  padding: 0.8rem;

  border-radius: 18px;

  overflow: hidden;

  transition: transform 0.2s ease;
}

.path-tile:hover {
  transform: translateY(-5px);
}

.path-image {
  display: block;

  width: 100%;
  height: 220px;

  object-fit: cover;

  border-radius: 14px;
}

.path-tile h3 {
  color: var(--forest);

  font-family: "Shrikhand", serif;

  font-size: 1.15rem;
  line-height: 1.25;

  margin: 0.8rem 0 0.35rem;
}

.path-tile h3 a {
  color: inherit;
  text-decoration: none;
}

.path-tile p {
  color: var(--brown);

  font-family: "DM Sans", sans-serif;

  font-size: 0.95rem;
  line-height: 1.45;

  margin: 0 0 0.7rem;
}


/* =========================
   ABOUT PAGE
   ========================= */

.about-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;

  gap: 3rem;

  align-items: center;

  margin: 3rem auto;
}

.about-image {
  text-align: center;
}

.profile-photo {
  display: block;

  width: 100%;
  max-width: 420px;

  margin: 0 auto;

  border-radius: 22px;
}

.wide-photo {
  display: block;

  width: 100%;

  margin: 1rem 0;

  border-radius: 22px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 1.25rem;

  margin-top: 1.5rem;
}

.gallery-photo {
  display: block;

  width: 100%;
  height: 320px;

  object-fit: cover;

  border-radius: 14px;
}


/* =========================
   SMALLER DESKTOP / ZOOM
   ========================= */

@media (max-width: 1150px) {

  .landing-page {
    width: calc(100% - 1rem);
  }

  .landing-content {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .right-logo-image {
    width: clamp(250px, 68%, 340px);
  }

  .right-body h1 {
    font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  }
}


/* =========================
   TABLETS / HIGH ZOOM
   ========================= */

@media (max-width: 950px) {

  .landing-page {
    display: grid;
    grid-template-columns: 1fr;

    width: min(760px, 100%);

    height: auto;
    max-height: none;
    min-height: 0;

    margin: 1rem auto;

    overflow: visible;
  }

  .landing-photo {
    width: 100%;
    height: auto;

    aspect-ratio: 4 / 3;
  }

  .landing-content {
    width: 100%;
    height: auto;

    padding: 2.5rem 3rem 3rem;
  }

  .right-logo-image {
    width: 300px;
  }

  .right-body {
    justify-content: flex-start;
  }

  .path-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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


/* =========================
   PHONES
   ========================= */

@media (max-width: 600px) {

  .landing-page {
    width: 100%;
    margin: 0;
  }

  .landing-photo {
    aspect-ratio: 4 / 5;
  }

  .landing-content {
    padding: 2rem 1.25rem 3rem;
  }

  .right-logo-image {
    width: 240px;
  }

  .right-body h1 {
    font-size: 2.65rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .path-gallery {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   FINAL OVERFLOW PROTECTION
   ========================= */

html,
body,
#quarto-content,
.page-columns,
.page-layout-full,
main,
.landing-page,
.landing-photo,
.landing-content,
.right-body,
.path-gallery,
.about-hero {
  max-width: 100%;
  min-width: 0;
}

html,
body {
  overflow-x: hidden !important;
}
/* =========================
   HERO COMPRESSION
   ========================= */

.landing-page {
  height: calc(100vh - 78px);
  min-height: 600px;
  margin: 0.6rem auto;
}

.landing-content {
  padding: 1rem 3rem 1.3rem;
}

.right-logo {
  margin-bottom: 0.25rem;
}

.right-logo-image {
  width: clamp(260px, 64%, 350px);
}

.right-body {
  justify-content: flex-start;
  padding-top: 0.25rem;
}

.eyebrow {
  font-size: 0.76rem;
  margin-bottom: 0.65rem;
}

.right-body h1 {
  font-size: clamp(2.35rem, 3.2vw, 3.35rem);
  line-height: 1;
  margin-bottom: 0.7rem;
}

.right-body h2 {
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  line-height: 1.35;
  margin-bottom: 0.7rem;
}

.right-body p {
  font-size: 0.94rem;
  line-height: 1.45;
  margin-bottom: 0.55rem;
}

.hero-actions {
  gap: 0.55rem;
  margin-top: 0.25rem;
}

.btn {
  padding: 0.7rem 1.15rem;
  font-size: 0.88rem;
}
/* =========================
   FINAL HOMEPAGE POLISH
   ========================= */

/* Optically center the logo */
.right-logo {
  width: 100%;
  justify-content: center;
}

.right-logo-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  transform: translateX(10px);
}


/* Keep typography roles consistent */

/* Main retro headline only */
.right-body h1 {
  font-family: "Shrikhand", serif;
  font-weight: 400;
}

/* Everything informational stays clean */
.eyebrow,
.right-body h2,
.right-body p,
.btn,
.navbar-nav .nav-link {
  font-family: "DM Sans", sans-serif;
}
/* ==================================================
   ABOUT + APPROACH PAGES
   ================================================== */

.about-page,
.approach-page {
  width: min(1180px, calc(100% - 2rem));
  margin: 2.5rem auto 5rem;
}

.page-kicker {
  color: var(--sage);
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: "Shrikhand", serif;
  color: var(--forest);
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-top: 4.5rem;
  margin-bottom: 1.5rem;
}


/* =========================
   ABOUT
   ========================= */

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-intro-photo {
  overflow: hidden;
  border-radius: 22px;
}

.about-main-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
}

.about-intro-copy h1 {
  font-family: "Shrikhand", serif;
  color: var(--forest);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  margin: 0 0 1rem;
}

.about-intro-copy h2 {
  font-family: "DM Sans", sans-serif;
  color: var(--brown);
  font-size: 1.35rem;
  line-height: 1.4;
  margin: 0 0 1.4rem;
}

.about-intro-copy p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.about-value {
  background: var(--soft-cream);
  border-radius: 18px;
  padding: 1.6rem;
}

.about-value h3 {
  font-family: "Shrikhand", serif;
  color: var(--forest);
  font-size: 1.5rem;
  margin: 0 0 0.7rem;
}

.about-value p {
  margin: 0;
  line-height: 1.6;
}

.about-second {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  margin-top: 5rem;
}

.about-second-copy h2 {
  font-family: "Shrikhand", serif;
  color: var(--forest);
  font-size: 2.5rem;
  margin-top: 0;
}

.about-second-copy li {
  margin-bottom: 0.35rem;
}

.about-secondary-photo {
  display: block;
  width: 100%;
  border-radius: 22px;
}


/* =========================
   APPROACH
   ========================= */

.approach-header {
  max-width: 850px;
  margin: 4rem auto 5rem;
  text-align: center;
}

.approach-header h1 {
  font-family: "Shrikhand", serif;
  color: var(--forest);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.95;
  margin: 0 0 1.5rem;
}

.approach-header p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.7;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.approach-step {
  background: var(--soft-cream);
  border-radius: 18px;
  padding: 1.5rem;
}

.step-number {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
}

.approach-step h3 {
  font-family: "Shrikhand", serif;
  color: var(--forest);
  font-size: 1.4rem;
  line-height: 1.15;
  margin: 0 0 0.7rem;
}

.approach-step p {
  line-height: 1.55;
  margin: 0;
}


/* =========================
   RECORD / EAR METHOD
   ========================= */

.record-method {
  background-color: var(--soft-cream);
  border-radius: 24px;
  padding: 3rem;
  margin-top: 5rem;
}

.record-method h2 {
  font-family: "Shrikhand", serif;
  color: var(--forest);
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  margin: 0 0 1rem;
}

.record-method p {
  line-height: 1.7;
}

.ear-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 2rem 0;
}

.ear-flow div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;

  padding: 0.8rem;

  border: 2px solid var(--forest);
  border-radius: 999px;

  color: var(--forest);

  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
}


/* =========================
   CONNECTION FLOW
   ========================= */

.connection-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;

  background: var(--soft-cream);

  border-radius: 20px;

  padding: 2rem;

  margin: 2rem 0;
}

.connection-flow > div:not(.flow-arrow) {
  flex: 1;
  text-align: center;
}

.flow-arrow {
  color: var(--sage);
  font-size: 1.8rem;
}


/* =========================
   PAGE ACTIONS
   ========================= */

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.page-actions p {
  display: contents;
}

.approach-ending {
  margin-top: 5rem;
  padding: 3rem;
  border-radius: 24px;
  background: var(--soft-cream);
}

.approach-ending h2 {
  font-family: "Shrikhand", serif;
  color: var(--forest);
  margin-top: 0;
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 900px) {

  .about-intro,
  .about-second {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-main-photo {
    aspect-ratio: 4 / 3;
  }

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

  .approach-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ear-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .connection-flow {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }
}


/* =========================
   PHONE
   ========================= */

@media (max-width: 600px) {

  .about-page,
  .approach-page {
    width: calc(100% - 2rem);
    margin-top: 2rem;
  }

  .about-intro-copy h1 {
    font-size: 3rem;
  }

  .approach-header {
    margin-top: 2rem;
  }

  .approach-header h1 {
    font-size: 3.6rem;
  }

  .approach-steps {
    grid-template-columns: 1fr;
  }

  .record-method,
  .approach-ending {
    padding: 1.5rem;
  }

  .ear-flow {
    grid-template-columns: 1fr 1fr;
  }

  .page-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* =========================
   SIMPLIFIED APPROACH PAGE
   ========================= */

.approach-page {
  width: min(1000px, calc(100% - 2rem));
  margin: 3rem auto 5rem;

  font-family: "DM Sans", sans-serif;
}

.approach-page p,
.approach-page li,
.approach-page blockquote {
  font-family: "DM Sans", sans-serif !important;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--brown);
}

.approach-header {
  max-width: 800px;
  margin: 3rem auto 4rem;
  text-align: center;
}

.approach-header h1 {
  font-family: "Shrikhand", serif;
  color: var(--forest);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  margin: 0 0 1.25rem;
}

.approach-header p {
  max-width: 700px;
  margin: 0 auto;
}

.section-title {
  font-family: "Shrikhand", serif;
  color: var(--forest);
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-top: 4rem;
  margin-bottom: 1rem;
}

.approach-feature {
  background-color: var(--soft-cream);
  border-radius: 22px;
  padding: 2.5rem;
  margin: 4rem 0;
}

.approach-feature h2 {
  font-family: "Shrikhand", serif;
  color: var(--forest);
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-top: 0;
}

.approach-page blockquote {
  border-left: 4px solid var(--sage);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-weight: 600;
}

@media (max-width: 600px) {
  .approach-page {
    width: calc(100% - 2rem);
    margin-top: 2rem;
  }

  .approach-feature {
    padding: 1.5rem;
  }
}
/* =========================
   SIMPLE APPROACH PAGE
   ========================= */

.approach-simple {
  width: min(850px, calc(100% - 2rem));
  margin: 4rem auto 6rem;
}

.approach-simple h1 {
  font-family: "Shrikhand", serif;
  color: var(--forest);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  margin: 0 0 2rem;
}

.approach-simple p {
  font-family: "DM Sans", sans-serif !important;
  color: var(--brown);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 1.7rem;
}

.approach-simple .page-actions {
  margin-top: 2.5rem;
}
/* =========================
   ABOUT PAGE ALIGNMENT FIX
   ========================= */

.about-intro {
  align-items: start;
}

.about-intro-photo {
  align-self: start;
  margin-top: 0;
}

.about-main-photo {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  display: block;
}
/* =========================
   ABOUT PAGE — TWO COLUMN
   ========================= */

.about-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.about-left {
  min-width: 0;
}

.about-main-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
}

.why-teach {
  margin-top: 2rem;
}

.why-teach h2 {
  font-family: "Shrikhand", serif;
  color: var(--forest);
  font-size: 2rem;
  margin: 0 0 1rem;
}

.why-teach p,
.why-teach blockquote {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

.why-teach blockquote {
  border-left: 3px solid var(--sage);
  padding-left: 1rem;
  margin: 0.8rem 0;
}

.about-intro-copy {
  min-width: 0;
}

.about-intro-copy h1 {
  margin-top: 0;
}

@media (max-width: 850px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/* =========================
   MY APPROACH — ABOUT STYLE
   ========================= */

.approach-page-new {
  width: min(1180px, calc(100% - 2rem));
  margin: 3rem auto 6rem;
}

.approach-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

/* LEFT SIDE */

.approach-left {
  min-width: 0;
}

.approach-logo {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto;
}

.approach-side-note {
  margin-top: 2rem;
}

.approach-side-note h2 {
  font-family: "Shrikhand", serif;
  color: var(--forest);
  font-size: 2rem;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.approach-side-note p {
  font-family: "DM Sans", sans-serif !important;
  color: var(--brown);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

/* RIGHT SIDE */

.approach-copy {
  min-width: 0;
}

.approach-copy h1 {
  font-family: "Shrikhand", serif;
  color: var(--forest);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  margin: 0 0 1.4rem;
}

.approach-copy p {
  font-family: "DM Sans", sans-serif !important;
  color: var(--brown);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 1.4rem;
}

/* TABLET / PHONE */

@media (max-width: 850px) {
  .approach-intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .approach-logo {
    max-width: 320px;
  }
}

@media (max-width: 600px) {
  .approach-page-new {
    width: calc(100% - 2rem);
    margin-top: 2rem;
  }

  .approach-copy h1 {
    font-size: 3rem;
  }
}
/* =========================
   ABOUT — FINAL POLISH
   ========================= */

.about-intro {
  grid-template-columns: 1fr 1.08fr;
  gap: 3.5rem;
  align-items: start;
}

/* Crop inward so Ben is actually visible */
.about-main-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 57% 48%;
  border-radius: 22px;
  display: block;
}

.struggle-photo {
  margin: 1.4rem 0 1.7rem;
  max-width: 320px;
}

.struggle-photo p {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  font-style: italic;
  opacity: 0.78;
}

.young-guitar-photo {
  width: 100%;
  display: block;
  border-radius: 16px;
}

/* =========================
   APPROACH — BALANCE LEFT SIDE
   ========================= */

.approach-intro {
  grid-template-columns: 0.72fr 1.28fr;
  gap: 4.5rem;
  align-items: start;
}

/*
   Keeps the logo + short thought together while
   the longer writing occupies the right.
*/
.approach-left {
  position: sticky;
  top: 6rem;
  align-self: start;
  padding-top: 1rem;
}

.approach-logo {
  width: 100%;
  max-width: 390px;
  margin: 0 auto 2.5rem;
}

.approach-side-note {
  max-width: 390px;
  margin: 0 auto;
}

@media (max-width: 850px) {
  .about-intro,
  .approach-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .approach-left {
    position: static;
  }

  .struggle-photo {
    max-width: 360px;
  }
}
.why-teach blockquote,
.why-teach blockquote p,
.why-teach blockquote strong {
  color: var(--forest) !important;
}

.struggle-photo p {
  font-size: 0.85rem;
  opacity: 0.7;
}
/* =========================
   MY APPROACH — FINAL LAYOUT
   ========================= */

.approach-clean {
  width: min(1180px, calc(100% - 2rem));
  margin: 3rem auto 6rem;

  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4.5rem;

  align-items: start;
}

/* LEFT — LOGO */

.approach-visual {
  min-width: 0;
  position: static;

  display: flex;
  justify-content: center;
  align-items: flex-start;

  padding-top: 1rem;
}
.approach-visual {
  padding-top: 0;
  align-items: flex-start;
}

.approach-main-logo {
  margin-top: 1rem;
}

/* RIGHT — WRITING */

.approach-text {
  min-width: 0;
}

.approach-text h1 {
  font-family: "Shrikhand", serif;
  color: var(--forest);

  font-size: clamp(3.5rem, 5vw, 5rem);
  line-height: 0.95;

  margin: 0 0 2rem;
}

.approach-text p {
  font-family: "DM Sans", sans-serif !important;
  color: var(--brown);

  font-size: 1.06rem;
  line-height: 1.8;

  margin: 0 0 1.6rem;
}

@media (max-width: 850px) {
  .approach-clean {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .approach-main-logo {
    max-width: 300px;
  }

  .approach-text h1 {
    font-size: 3.3rem;
  }
}
/* ACTUAL APPROACH LOGO ALIGNMENT */

.approach-visual {
  position: static !important;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0 !important;
}

.approach-main-logo {
  display: block;
  width: 100%;
  max-width: 390px;
  height: auto;
  margin: 0 auto !important;

  /* visibly move logo upward */
  transform: translateY(-4rem);
}
/* =========================
   FINAL MOBILE HOMEPAGE FIX
   ========================= */

@media (max-width: 600px) {

  .landing-page {
    display: flex !important;
    flex-direction: column !important;

    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;

    margin: 0 !important;
    overflow: visible !important;
  }

  .landing-photo {
    display: block !important;

    width: 100% !important;
    height: 480px !important;
    min-height: 480px !important;

    aspect-ratio: auto !important;
    overflow: hidden !important;
  }

  @media (max-width: 600px) {

  .landing-photo {
    width: 100% !important;
    height: 380px !important;
    min-height: 380px !important;
    overflow: hidden !important;
  }

  .hero-photo {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;

    /* keeps your face/guitar framed */
    object-position: 57% 38% !important;
  }

  .landing-content {
    padding: 1.4rem 1.25rem 2.5rem !important;
  }
}