:root {
  --bg: #fff6f2;
  --bg2: #ffe1cf;
  --text: #2b1810;
  --muted: #6b4235;
  --accent: #f2896a;
  --border: #ffcbae;
  --pop: #f2896a;
  --pop-soft: #fff6f2;
  --pop-muted: #ffebe0;
  --footer-muted: #a8705a;
  --nav-bg: rgba(255, 246, 242, 0.9);
  --link: #d6432a;
  --selection: #ffc2a6;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Jost", system-ui, sans-serif;
  overflow-x: hidden;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--selection);
}
a {
  color: var(--link);
  text-decoration: none;
}
a:hover {
  color: var(--accent);
}
h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  margin: 0;
}
img {
  display: block;
  max-width: 100%;
}
ul {
  margin: 0;
  padding: 0;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 6vw;
  background: var(--nav-bg);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.nav__brand-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav__brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text);
}

.subtitle {
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: var(--text);
  opacity: 0.65;
  margin: 0;
  white-space: nowrap;
}
.nav__links {
  display: flex;
  gap: 36px;
  font-size: 15px;
  letter-spacing: 0.3px;
}
.nav__cta {
  padding: 10px 22px;
  border: 1px solid var(--text);
  border-radius: 100px;
  font-size: 14px;
  color: var(--text);
}
.nav__cta:hover {
  background: var(--text);
  color: var(--bg);
}

/* SHARED */
.eyebrow {
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

#main-title {
  font-size: 24px;
}
.btn {
  display: inline-block;
  padding: 15px 30px;
  background: var(--pop);
  color: #fff;
  border-radius: 100px;
  font-size: 15px;
  transition: filter 0.15s ease;
}
.btn:hover {
  filter: brightness(0.92);
  color: #fff;
}
.btn--lg {
  padding: 17px 38px;
  font-size: 16px;
}
.btn--outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 17px 26px;
  background: none;
  border: 1px solid var(--text);
  color: var(--text);
  border-radius: 100px;
  font-size: 15px;
  font-family: "Jost", sans-serif;
  cursor: pointer;
}
.link-underline {
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
}
.link-underline:hover {
  color: var(--pop);
  border-color: var(--pop);
}
.photo {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: var(--bg2) center/cover no-repeat;
  aspect-ratio: 4/5;
}
.photo--contain {
  background-size: contain;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 100px 6vw 110px;
  max-width: 1400px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.08;
  margin: 22px 0 28px;
  max-width: 620px;
}
.hero p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 500px;
  margin: 0 0 36px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero .photo {
  background-color: var(--bg);
}

/* ABOUT (home) */
.about {
  padding: 100px 6vw;
  background: var(--bg2);
}
.about__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.about h2 {
  font-size: clamp(30px, 3.2vw, 42px);
  margin: 18px 0 24px;
  max-width: 560px;
}
.about p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 620px;
  margin: 0 0 20px;
}

#about-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.about__grid--text-only {
  grid-template-columns: 1fr;
  text-align: center;
}

.about__grid--text-only > div {
  max-width: 700px;
  margin: 0 auto;
}

/* TESTIMONIAL (excerpt, home) */
.testimonial {
  padding: 100px 6vw;
  background: var(--pop);
  color: #fff;
  text-align: center;
}
.testimonial blockquote {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(19px, 1.7vw, 22px);
  line-height: 1.65;
  margin: 0 auto 22px;
  max-width: 800px;
}
.testimonial .attr {
  font-size: 15px;
  color: var(--pop-muted);
}

/* SERVICES */
.services {
  padding: 110px 6vw;
  max-width: 1400px;
  margin: 0 auto;
}
.services__head {
  text-align: center;
  margin-bottom: 64px;
}
.services__head h2 {
  font-size: clamp(30px, 3.2vw, 42px);
  margin: 18px 0 16px;
}
.services__head p {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 34px;
}
.card__mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg2);
  margin-bottom: 26px;
}
.card h3 {
  font-size: 22px;
  margin: 0 0 14px;
}
.card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 22px;
}
.card a {
  font-size: 14.5px;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
}
.card a:hover {
  color: var(--pop);
  border-color: var(--pop);
}

/* WORDS (poem quote, home) */
.words {
  padding: 100px 6vw;
  background: var(--pop);
  color: #fff;
  text-align: center;
}
.words blockquote {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.5;
  margin: 0 auto 30px;
  max-width: 1000px;
}
.words__attr {
  font-size: 15px;
  color: var(--pop-muted);
}

/* CONTACT (home teaser) */
.contact {
  padding: 120px 6vw;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.contact h2 {
  font-size: clamp(32px, 4vw, 50px);
  margin: 18px 0 24px;
}
.contact p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 40px;
}

/* CONTACT PAGE */
.contact-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 6vw;
}
.contact-page__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contact-page h1 {
  font-size: clamp(30px, 3.6vw, 44px);
  margin: 18px 0 24px;
}
.contact-page p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 34px;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

/* PROCESS (contact page) */
.process {
  padding: 100px 6vw;
  background: var(--bg2);
}
.process__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.process h2 {
  font-size: clamp(26px, 2.8vw, 34px);
  margin: 0 0 46px;
  text-align: center;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) and (min-width: 821px) {
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.process-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
}
.process-step__num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 44px;
  color: var(--border);
  margin-bottom: 10px;
}
.process-step h3 {
  font-size: 19px;
  font-weight: 500;
  margin: 0 0 14px;
}
.process-step p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

/* ABOUT PAGE */
.pagehead {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 90px 6vw 100px;
  max-width: 1400px;
  margin: 0 auto;
}
.pagehead h1 {
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.12;
  margin: 22px 0 24px;
  max-width: 620px;
}
.pagehead p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 520px;
  margin: 0;
}
.back {
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--muted);
  display: inline-block;
  margin-bottom: 22px;
}
.story {
  padding: 90px 6vw;
  background: var(--bg2);
}
.story__wrap {
  max-width: 760px;
  margin: 0 auto;
}
.story h2 {
  font-size: clamp(26px, 2.8vw, 34px);
  margin: 0 0 26px;
}
.story p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 22px;
}

/* CREDENTIALS */
.credentials {
  padding: 90px 6vw;
}
.credentials__wrap {
  max-width: 760px;
  margin: 0 auto;
}
.credentials h4 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 26px;
}
.cred-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 46px;
}
.cred-list:last-child {
  margin-bottom: 0;
}
.cred-item {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.cred-list > .cred-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.cred-item h3 {
  font-size: 18px;
  margin: 0 0 6px;
}
.cred-item .org {
  font-size: 14.5px;
  font-style: italic;
  color: var(--footer-muted);
}
.cred-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 6px;
}

/* WHO I WORK WITH */
.who {
  padding: 90px 6vw;
  background: var(--bg2);
}
.who__wrap {
  max-width: 760px;
  margin: 0 auto;
}
.who h2 {
  font-size: clamp(26px, 2.8vw, 34px);
  margin: 0 0 26px;
}
.who ul {
  margin: 0 0 34px;
  padding-left: 20px;
  list-style: disc;
}
.who li {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 10px;
}
.who h3 {
  font-size: 20px;
  margin: 0 0 14px;
}
.who p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}

/* AIMS */
.aims {
  padding: 100px 6vw;
  max-width: 1100px;
  margin: 0 auto;
}
.aims h2 {
  font-size: clamp(26px, 2.8vw, 34px);
  margin: 0 0 46px;
  text-align: center;
}
.aim__num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 30px;
  color: var(--accent);
  margin-bottom: 14px;
}
.aim h3 {
  font-family: "Jost", sans-serif;
  font-size: 19px;
  font-weight: 500;
  margin: 0 0 10px;
}
.aim p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

/* QUOTE (about page) */
.quote {
  padding: 90px 6vw;
  background: var(--bg2);
  text-align: center;
}
.quote p {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(21px, 1.7vw, 24px);
  line-height: 1.65;
  color: var(--text);
  max-width: 780px;
  margin: 0 auto 22px;
}
.quote .attr {
  font-size: 15px;
  color: var(--muted);
}

.cta {
  padding: 110px 6vw;
  background: var(--pop);
  color: #fff;
  text-align: center;
}
.cta h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin: 0 0 26px;
}

/* FOOTER */
.footer {
  padding: 40px 6vw;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--footer-muted);
}
.footer__links {
  display: flex;
  gap: 24px;
}

/* MOBILE */
@media (max-width: 820px) {
  .nav {
    padding: 16px 6vw;
  }
  .nav__links {
    order: 3;
    width: 100%;
    gap: 20px;
    font-size: 14px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 56px 6vw 64px;
  }
  .hero .photo {
    order: -1;
    aspect-ratio: 1/1;
    max-height: 420px;
  }
  .about {
    padding: 64px 6vw;
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .testimonial {
    padding: 64px 6vw;
  }
  .services {
    padding: 72px 6vw;
  }
  .services__head {
    margin-bottom: 44px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .words {
    padding: 64px 6vw;
  }
  .contact {
    padding: 80px 6vw;
  }
  .contact-page {
    padding: 80px 6vw;
  }
  .process {
    padding: 64px 6vw;
  }
  .process__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pagehead {
    grid-template-columns: 1fr;
    padding: 48px 6vw 60px;
  }
  .story {
    padding: 64px 6vw;
  }
  .credentials {
    padding: 64px 6vw;
  }
  .who {
    padding: 64px 6vw;
  }
  .aims {
    padding: 72px 6vw;
  }
  .aims h2 {
    margin-bottom: 34px;
  }
  .quote {
    padding: 64px 6vw;
  }
  .cta {
    padding: 76px 6vw;
  }
  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
