/*
 * Ethan author page
 * A quiet editorial layer for a personal, evidence-aware voice inside Vesta.
 */

:root {
  --ethan-ink: #111214;
  --ethan-soft-ink: #5f6268;
  --ethan-paper: #f6f6f3;
  --ethan-white: #ffffff;
  --ethan-rule: #d9d9d4;
  --ethan-signal: #202124;
  --ethan-warm: #d99b28;
}

html {
  scroll-behavior: smooth;
}

body.ethan-page {
  background: var(--ethan-paper);
  color: var(--ethan-ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

.ethan-page .nav {
  position: sticky;
  background: rgba(246, 246, 243, 0.88);
  border-bottom: 1px solid rgba(17, 18, 20, 0.08);
  backdrop-filter: blur(18px);
}

.ethan-page .nav-inner {
  min-height: 76px;
}

.ethan-page .brand-white img {
  filter: invert(1);
}

.ethan-page .main-menu a:not(.pill),
.ethan-page .mobile-menu {
  color: var(--ethan-ink);
}

.ethan-page .main-menu .pill {
  background: var(--ethan-ink);
  border-color: var(--ethan-ink);
  color: #fff;
}

.ethan-page .main-menu.is-open a:not(.pill) {
  color: #fff;
}

.ethan-page .main-menu.is-open a:not(.pill):hover,
.ethan-page .main-menu.is-open a:not(.pill):focus-visible {
  color: var(--ethan-warm);
}

.ethan-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.ethan-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 12vw, 176px) 0 clamp(76px, 9vw, 132px);
  background: var(--ethan-paper);
}

.ethan-hero::before {
  position: absolute;
  top: 0;
  right: 10%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(54, 88, 245, 0.42) 28%, rgba(54, 88, 245, 0.05) 86%, transparent);
  content: "";
}

.ethan-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: clamp(48px, 9vw, 144px);
  align-items: end;
}

.ethan-kicker,
.ethan-label,
.ethan-note-label,
.ethan-card-label {
  display: block;
  margin: 0 0 18px;
  color: var(--ethan-signal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ethan-hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(76px, 15vw, 190px);
  font-weight: 700;
  letter-spacing: -0.095em;
  line-height: 0.82;
}

.ethan-hero-intro {
  max-width: 460px;
  margin: 42px 0 0;
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.ethan-hero-meta {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 350px;
  padding: 0 0 4px 28px;
  border-left: 2px solid var(--ethan-signal);
}

.ethan-hero-meta p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
}

.ethan-hero-meta strong {
  display: block;
  margin-top: 8px;
  font-size: 21px;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.ethan-hero-meta .ethan-year {
  margin-top: 26px;
  color: var(--ethan-soft-ink);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ethan-page main {
  overflow: clip;
}

.ethan-prologue {
  padding: 0 0 clamp(84px, 12vw, 180px);
}

.ethan-prologue-grid {
  display: grid;
  grid-template-columns: minmax(140px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(36px, 8vw, 128px);
  padding-top: clamp(44px, 7vw, 92px);
  border-top: 1px solid var(--ethan-rule);
}

.ethan-prologue-grid > .ethan-label {
  padding-top: 9px;
}

.ethan-prose {
  max-width: 670px;
  font-size: 18px;
  line-height: 1.68;
}

.ethan-prose p,
.ethan-prose ul,
.ethan-prose blockquote {
  margin: 0 0 28px;
}

.ethan-prose p:last-child,
.ethan-prose ul:last-child,
.ethan-prose blockquote:last-child {
  margin-bottom: 0;
}

.ethan-prose blockquote {
  margin-left: 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--ethan-warm);
  color: var(--ethan-ink);
  font-size: clamp(23px, 3vw, 36px);
  letter-spacing: -0.05em;
  line-height: 1.12;
}

.ethan-prose strong {
  font-weight: 750;
}

.ethan-prose ul {
  padding-left: 20px;
}

.ethan-prose li {
  margin: 0 0 8px;
  padding-left: 4px;
}

.ethan-prose li::marker {
  color: var(--ethan-signal);
}

.ethan-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 18px;
  border: 1px solid var(--ethan-ink);
  border-radius: 999px;
  background: var(--ethan-ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease;
}

.ethan-contact-link::after {
  content: "↗";
  font-size: 16px;
}

.ethan-contact-link:hover {
  background: #303238;
  transform: translateY(-2px);
}

.ethan-reading {
  background: var(--ethan-white);
}

.ethan-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(36px, 8vw, 128px);
  padding: clamp(78px, 10vw, 148px) 0;
  border-bottom: 1px solid var(--ethan-rule);
}

.ethan-section:last-child {
  border-bottom: 0;
}

.ethan-section::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(32% + clamp(18px, 4vw, 64px));
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--ethan-rule) 10%, var(--ethan-rule) 90%, transparent);
  content: "";
}

.ethan-section-heading {
  position: relative;
  z-index: 1;
  align-self: start;
  padding-right: 28px;
}

.ethan-section-heading h2 {
  max-width: 290px;
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(35px, 4vw, 62px);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.96;
}

.ethan-section-heading p {
  max-width: 230px;
  margin: 20px 0 0;
  color: var(--ethan-soft-ink);
  font-size: 13px;
  line-height: 1.45;
}

.ethan-section .ethan-prose {
  position: relative;
  z-index: 1;
  padding-left: clamp(0px, 3vw, 44px);
}

.ethan-section .ethan-prose::before {
  position: absolute;
  top: 10px;
  left: -5px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--ethan-signal);
  border-radius: 50%;
  background: var(--ethan-white);
  content: "";
}

.ethan-section .ethan-prose > p:first-child {
  font-size: clamp(21px, 2.2vw, 29px);
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.ethan-section .ethan-prose > p:first-child + p {
  margin-top: 32px;
}

.ethan-note {
  margin: 42px 0 34px;
  padding: 24px 0 0;
  border-top: 1px solid var(--ethan-ink);
}

.ethan-note p {
  max-width: 560px;
  margin: 0;
  font-size: clamp(25px, 3.2vw, 43px) !important;
  letter-spacing: -0.065em !important;
  line-height: 1.03 !important;
}

.ethan-quote-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 28px;
  margin: 32px 0 34px;
  padding: 20px 0 0;
  border-top: 1px solid var(--ethan-rule);
}

.ethan-quote-list span {
  color: var(--ethan-soft-ink);
  font-size: 14px;
}

.ethan-market-line {
  margin: 34px 0;
  padding: 22px 0;
  border-top: 1px solid var(--ethan-ink);
  border-bottom: 1px solid var(--ethan-ink);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.ethan-market-line span {
  color: var(--ethan-signal);
}

.ethan-areas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 32px;
  margin-top: 34px;
  border-top: 1px solid var(--ethan-rule);
}

.ethan-area {
  padding: 22px 0 25px;
  border-bottom: 1px solid var(--ethan-rule);
}

.ethan-area strong,
.ethan-area span {
  display: block;
}

.ethan-area strong {
  margin-bottom: 8px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.ethan-area span {
  color: var(--ethan-soft-ink);
  font-size: 14px;
  line-height: 1.45;
}

.ethan-articles {
  background: var(--ethan-paper);
}

.ethan-articles-placeholder {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--ethan-rule);
  background: var(--ethan-white);
}

.ethan-articles-placeholder strong {
  max-width: 410px;
  font-size: clamp(24px, 3vw, 42px);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.ethan-articles-placeholder small {
  color: var(--ethan-soft-ink);
  font-size: 13px;
}

.ethan-articles-placeholder a {
  align-self: flex-start;
  margin-top: 30px;
  color: var(--ethan-signal);
  font-size: 14px;
  font-weight: 750;
}

.ethan-cta {
  padding: clamp(88px, 12vw, 170px) 0;
  background: var(--ethan-ink);
  color: #fff;
}

.ethan-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}

.ethan-cta h2 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(46px, 7vw, 96px);
  font-weight: 650;
  letter-spacing: -0.09em;
  line-height: 0.9;
}

.ethan-cta-copy {
  max-width: 370px;
}

.ethan-cta-copy p {
  margin: 0 0 28px;
  color: #c9cbd1;
  font-size: 17px;
  line-height: 1.55;
}

.ethan-cta .ethan-contact-link {
  border-color: #fff;
  background: #fff;
  color: var(--ethan-ink);
}

.ethan-cta .ethan-contact-link:hover {
  background: #e9e9e6;
}

.ethan-page footer {
  background: var(--ethan-ink);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 900px) {
  .ethan-hero-grid,
  .ethan-cta-grid {
    grid-template-columns: 1fr;
  }

  .ethan-hero-meta {
    max-width: 430px;
    min-height: 120px;
  }

  .ethan-section,
  .ethan-prologue-grid {
    grid-template-columns: 1fr;
  }

  .ethan-section::before {
    display: none;
  }

  .ethan-section-heading {
    padding-right: 0;
  }

  .ethan-section-heading h2 {
    max-width: 560px;
  }

  .ethan-section-heading p {
    max-width: 480px;
  }

  .ethan-section .ethan-prose {
    padding-left: 28px;
  }

  .ethan-section .ethan-prose::before {
    left: -5px;
  }
}

@media (max-width: 620px) {
  .ethan-shell {
    width: min(100% - 36px, 560px);
  }

  .ethan-page .nav-inner {
    min-height: 66px;
  }

  .ethan-hero {
    padding-top: 76px;
  }

  .ethan-hero::before {
    right: 18px;
  }

  .ethan-hero h1 {
    font-size: clamp(74px, 25vw, 142px);
  }

  .ethan-hero-intro {
    margin-top: 32px;
    font-size: 24px;
  }

  .ethan-hero-meta {
    padding-left: 20px;
  }

  .ethan-prologue-grid {
    gap: 28px;
    padding-top: 38px;
  }

  .ethan-prose {
    font-size: 17px;
    line-height: 1.62;
  }

  .ethan-section {
    gap: 40px;
    padding: 68px 0 76px;
  }

  .ethan-section-heading h2 {
    font-size: 43px;
  }

  .ethan-section .ethan-prose {
    padding-left: 22px;
  }

  .ethan-section .ethan-prose::before {
    top: 8px;
    left: -5px;
    width: 9px;
    height: 9px;
  }

  .ethan-quote-list,
  .ethan-areas {
    grid-template-columns: 1fr;
  }

  .ethan-articles-placeholder {
    min-height: 220px;
  }

  .ethan-cta h2 {
    font-size: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ethan-contact-link {
    transition: none;
  }
}

/* Calm reading pass: the author's words are the visual focus. */
body.ethan-page {
  background: #fff;
  color: #202124;
}

.ethan-page .nav {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: #ececec;
  box-shadow: none;
}

.ethan-page .main-menu a:not(.pill),
.ethan-page .mobile-menu {
  color: #202124;
}

.ethan-page .main-menu .pill {
  background: #f2f2f2;
  border-color: #f2f2f2;
  color: #202124;
}

.ethan-page .main-menu .pill:hover,
.ethan-page .main-menu .pill:focus-visible {
  background: #e8e8e8;
}

.ethan-shell {
  width: min(760px, calc(100% - 44px));
}

.ethan-hero {
  padding: 58px 0 22px;
  background: #fff;
}

.ethan-hero::before {
  display: none;
}

.ethan-hero-grid {
  display: block;
}

.ethan-kicker,
.ethan-note-label,
.ethan-year,
.ethan-section-heading .ethan-label {
  display: none;
}

.ethan-hero h1 {
  max-width: none;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.2;
  text-transform: none;
}

.ethan-hero-intro {
  max-width: none;
  margin: 22px 0 0;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.55;
}

.ethan-hero-meta {
  display: block;
  max-width: none;
  min-height: 0;
  margin-top: 24px;
  padding: 0;
  border: 0;
  color: #6b6d70;
  font-size: 13px;
}

.ethan-hero-meta p,
.ethan-hero-meta strong {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.55;
}

.ethan-hero-meta p:first-of-type::after {
  content: " · ";
}

.ethan-prologue {
  padding: 0 0 38px;
  background: #fff;
}

.ethan-prologue-grid {
  display: block;
  padding-top: 0;
  border-top: 0;
}

.ethan-prologue-grid > .ethan-label {
  display: none;
}

.ethan-prose {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.76;
}

.ethan-prose p,
.ethan-prose ul,
.ethan-prose blockquote {
  margin-bottom: 24px;
}

.ethan-prologue .ethan-lead {
  font-weight: 700;
}

.ethan-prose blockquote {
  padding: 1px 0 1px 18px;
  border-left: 3px solid #d9d9d9;
  color: #45474a;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.55;
}

.ethan-prose strong {
  font-weight: 700;
}

.ethan-prose li::marker {
  color: #202124;
}

.ethan-note {
  margin: 26px 0;
  padding: 0;
  border-top: 0;
}

.ethan-note p {
  max-width: none;
  margin: 0 0 24px;
  font-size: 16px !important;
  letter-spacing: 0 !important;
  line-height: 1.76 !important;
}

.ethan-contact-link {
  display: inline;
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #202124;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.76;
  text-decoration: underline;
  text-decoration-color: #bdbdbd;
  text-underline-offset: 4px;
  transition: color 160ms ease;
}

.ethan-contact-link::after {
  content: " ↗";
  font-size: 14px;
}

.ethan-contact-link:hover {
  background: transparent;
  color: #666;
  transform: none;
}

.ethan-reading,
.ethan-articles {
  background: #fff;
}

.ethan-section {
  display: block;
  padding: 38px 0;
  border-bottom-color: #e5e5e5;
}

.ethan-section::before,
.ethan-section .ethan-prose::before {
  display: none;
}

.ethan-section-heading {
  padding: 0;
}

.ethan-section-heading h2 {
  max-width: none;
  margin: 0 0 24px;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.3;
}

.ethan-section .ethan-prose {
  padding-left: 0;
}

.ethan-section .ethan-prose > p:first-child {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.76;
}

.ethan-section .ethan-prose > p:first-child + p {
  margin-top: 0;
}

.ethan-quote-list {
  display: block;
  margin: 24px 0;
  padding: 0;
  border-top: 0;
}

.ethan-quote-list span {
  display: block;
  margin-bottom: 10px;
  color: #202124;
  font-size: 16px;
  line-height: 1.6;
}

.ethan-market-line {
  margin: 24px 0;
  padding: 16px 0;
  border-top-color: #d9d9d9;
  border-bottom-color: #d9d9d9;
  color: #202124;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.55;
}

.ethan-market-line span {
  color: inherit;
}

.ethan-areas {
  display: block;
  margin-top: 24px;
  border-top: 0;
}

.ethan-area {
  padding: 0 0 20px;
  border-bottom: 0;
}

.ethan-area strong,
.ethan-area span {
  font-size: 16px;
  line-height: 1.6;
}

.ethan-area strong {
  margin-bottom: 2px;
}

.ethan-area span {
  color: #5e6063;
}

.ethan-articles-placeholder {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.ethan-articles-placeholder small {
  display: none;
}

.ethan-articles-placeholder strong {
  display: block;
  max-width: none;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.76;
}

.ethan-articles-placeholder a {
  display: inline;
  margin: 0;
  color: #202124;
  font-size: 16px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #bdbdbd;
  text-underline-offset: 4px;
}

.ethan-cta {
  padding: 48px 0 58px;
  background: #fff;
  color: #202124;
  border-top: 1px solid #e5e5e5;
}

.ethan-cta-grid {
  display: block;
}

.ethan-cta h2 {
  max-width: none;
  margin: 0 0 24px;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.3;
}

.ethan-cta-copy {
  max-width: none;
}

.ethan-cta-copy p {
  margin: 0 0 24px;
  color: #202124;
  font-size: 16px;
  line-height: 1.76;
}

.ethan-cta .ethan-contact-link {
  border: 0;
  background: transparent;
  color: #202124;
}

.ethan-cta .ethan-contact-link:hover {
  background: transparent;
}

.ethan-page footer {
  background: #fff;
  color: #202124;
  border-top: 1px solid #e5e5e5;
}

.ethan-page footer a,
.ethan-page footer .footer-company-address,
.ethan-page footer .footer-company-name,
.ethan-page footer .footer-brand span {
  color: #5e6063;
}

.ethan-page footer .footer-brand strong,
.ethan-page footer .footer-links strong,
.ethan-page footer .footer-bottom {
  color: #202124;
}

@media (max-width: 620px) {
  .ethan-shell {
    width: min(100% - 36px, 760px);
  }

  .ethan-hero {
    padding-top: 42px;
  }

  .ethan-hero h1 {
    font-size: 28px;
  }

  .ethan-section {
    padding: 34px 0;
  }

  .ethan-section-heading h2,
  .ethan-cta h2 {
    font-size: 23px;
  }
}

/* Personal creator masthead: a real photograph, framed like a notebook print. */
.ethan-hero {
  padding: 76px 0 82px;
  background: #f5f5f4;
  border-bottom: 1px solid #dededc;
}

.ethan-hero .ethan-shell {
  width: min(1040px, calc(100% - 44px));
}

.ethan-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 64px;
  align-items: center;
}

.ethan-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(48px, 6vw, 72px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.ethan-hero-intro {
  margin-top: 0;
  font-size: 18px;
  line-height: 1.55;
}

.ethan-hero-photo {
  width: 188px;
  aspect-ratio: 1;
  margin: 0 12px 12px 0;
  padding: 7px;
  border: 1px solid #202124;
  background: #fff;
  box-shadow: 10px 10px 0 -1px #f5f5f4, 10px 10px 0 0 #cfcfcd;
}

.ethan-hero-photo img {
  width: 100%;
  height: 100%;
  border-radius: 1px;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 620px) {
  .ethan-hero {
    padding: 48px 0 58px;
  }

  .ethan-hero .ethan-shell {
    width: min(100% - 36px, 760px);
  }

  .ethan-hero-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .ethan-hero-photo {
    order: -1;
    width: 148px;
    margin-left: 8px;
  }

  .ethan-hero h1 {
    font-size: 42px;
  }

  .ethan-hero-intro {
    font-size: 17px;
  }
}

/* Editorial author banner: compact, aligned with the reading column, and quiet. */
.ethan-page .ethan-hero {
  padding: 44px 0 48px;
  background-color: #f5f5f4;
  border-bottom: 1px solid #dededc;
}

.ethan-page .ethan-hero .ethan-shell {
  width: min(760px, calc(100% - 44px));
}

.ethan-page .ethan-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 152px;
  gap: 48px;
  align-items: center;
}

.ethan-page .ethan-hero h1 {
  margin: 0;
  max-width: 500px;
  font-family: "Bodoni 72", Didot, "Iowan Old Style", Baskerville, Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.3vw, 50px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
}

.ethan-page .ethan-hero-copy {
  position: relative;
  padding-left: 22px;
}

.ethan-page .ethan-hero-copy::after {
  display: block;
  width: 58px;
  height: 1px;
  margin-top: 28px;
  background: #202124;
  content: "";
  opacity: 0.48;
}

.ethan-page .ethan-hero-mark {
  position: absolute;
  top: -30px;
  left: -2px;
  color: #c7c2bb;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 112px;
  font-weight: 400;
  line-height: 1;
  pointer-events: none;
}

.ethan-page .ethan-hero-photo {
  width: 136px;
  aspect-ratio: 1;
  margin: 0 8px 8px 0;
  padding: 6px;
  border: 1px solid #202124;
  background: #fff;
  box-shadow: 7px 7px 0 -1px #f5f5f4, 7px 7px 0 0 #cfcfcd;
}

.ethan-page .ethan-greeting {
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 620px) {
  .ethan-page .ethan-hero {
    padding: 36px 0 42px;
  }

  .ethan-page .ethan-hero-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .ethan-page .ethan-hero-photo {
    order: -1;
    width: 126px;
    margin-left: 6px;
  }

  .ethan-page .ethan-hero h1 {
    max-width: 330px;
    font-size: 36px;
    line-height: 1.02;
  }

  .ethan-page .ethan-hero-copy {
    padding-left: 18px;
  }

  .ethan-page .ethan-hero-mark {
    top: -22px;
    left: -5px;
    font-size: 84px;
  }
}
