:root {
  --cream: #f8f4ee;
  --paper: #fffdf9;

  --ink: #2b2724;
  --muted: #746d67;

  --sage: #a9b6a3;
  --sage-dark: #6c7c67;

  --rose: #d6aaa6;
  --rose-light: #f1dfdc;

  --line: #ded7cf;
}


/* ===============================
   GLOBAL
================================ */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.1;
  font-weight: 600;
}


/* ===============================
   NAVIGATION
================================ */

nav {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(248, 244, 238, 0.95);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1150px;
  margin: 0 auto;

  padding: 13px 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 22px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.32rem;
  font-weight: 600;

  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;

  gap: 18px;

  list-style: none;
}

.nav-links a {
  color: var(--muted);

  text-decoration: none;

  font-size: 0.88rem;

  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--sage-dark);
}


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

.section {
  max-width: 1150px;

  margin: 0 auto;

  padding-left: 28px;
  padding-right: 28px;
}


/* HOME HERO */

.hero {
  padding-top: 30px;
  padding-bottom: 28px;
}

.hero-grid {
  display: grid;

  grid-template-columns: minmax(0, 1fr) 290px;

  gap: 48px;

  align-items: center;
}

.hero-inner {
  min-width: 0;
  max-width: 700px;
}

.eyebrow {
  margin-bottom: 8px;

  color: var(--sage-dark);

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

  font-size: 0.72rem;
  font-weight: 600;
}

.hero h1 {
  margin-bottom: 14px;

  font-size: clamp(4rem, 8vw, 6.5rem);

  letter-spacing: -0.05em;
}

.hero h1 span {
  color: var(--sage-dark);
  font-style: italic;
}

.hero-copy {
  max-width: 630px;

  color: var(--muted);

  font-size: 1.1rem;
}

.hero-buttons {
  margin-top: 20px;

  display: flex;
  flex-wrap: wrap;

  gap: 11px;
}


/* HEADSHOT */

.hero-photo-wrap {
  width: 290px;

  justify-self: end;

  transform: translate(-24px, 18px);
}

.hero-photo {
  display: block;

  width: 290px;
  height: 330px;

  object-fit: cover;
  object-position: center 42%;

  border-radius: 18px;

  box-shadow: 0 12px 30px rgba(43, 39, 36, 0.11);
}


/* BUTTONS */

.button {
  display: inline-block;

  padding: 10px 19px;

  border-radius: 999px;

  text-decoration: none;

  font-size: 0.88rem;
  font-weight: 500;
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button-light {
  background: var(--paper);

  border: 1px solid var(--line);
}


/* HOME ABOUT */

.about-section {
  padding-top: 18px;
  padding-bottom: 18px;
}

.intro-grid {
  display: grid;

  grid-template-columns: 0.9fr 1.45fr;

  gap: 42px;

  align-items: start;
}

.intro-grid h2 {
  font-size: clamp(2.1rem, 4vw, 3rem);
}

.intro-copy {
  color: var(--muted);
}

.intro-copy p + p {
  margin-top: 10px;
}

.text-link {
  display: inline-block;

  margin-top: 16px;

  text-decoration: none;

  font-size: 0.88rem;
  font-weight: 600;

  border-bottom: 1px solid var(--rose);
}


/* HOME HIGHLIGHTS */

.highlights-section {
  padding-top: 44px;
  padding-bottom: 26px;
}

.highlights-section h2 {
  margin-bottom: 18px;

  font-size: clamp(2.1rem, 4vw, 3rem);
}

.highlight-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 16px;
}

.highlight-card {
  min-height: 205px;

  padding: 23px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border: 1px solid var(--line);
  border-radius: 18px;
}

.writing-card {
  background: var(--sage);
}

.crochet-card {
  background: var(--paper);
}

.accomplishments-card {
  background: var(--rose-light);
}

.card-label {
  margin-bottom: 9px;

  color: var(--sage-dark);

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

  font-size: 0.69rem;
  font-weight: 600;
}

.highlight-card h3 {
  margin-bottom: 7px;

  font-size: 1.5rem;
}

.highlight-card p {
  color: var(--muted);

  font-size: 0.9rem;
}

.card-link {
  display: inline-block;

  width: fit-content;

  margin-top: 16px;

  text-decoration: none;

  font-size: 0.86rem;
  font-weight: 600;

  border-bottom: 1px solid var(--rose);
}


/* HOME CONTACT */

.contact-section {
  padding-top: 24px;
  padding-bottom: 26px;
}

.contact-panel {
  padding: 32px 38px;

  background: var(--ink);

  color: white;

  border-radius: 22px;
}

.contact-panel h2 {
  margin-bottom: 7px;

  font-size: clamp(2.1rem, 4vw, 3rem);
}

.contact-panel p {
  color: #d8d3cf;
}


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

.about-main {
  width: min(100% - 56px, 1050px);

  margin: 0 auto;
}


/* ABOUT HERO */

.about-hero {
  max-width: 820px;

  padding: 58px 0;
}

.about-kicker {
  margin-bottom: 8px;

  color: var(--sage-dark);

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

  font-size: 0.72rem;
  font-weight: 600;
}

.about-hero h1 {
  margin-bottom: 20px;

  font-size: clamp(4rem, 8vw, 6.3rem);

  letter-spacing: -0.045em;
}

.about-lead {
  max-width: 760px;

  color: var(--muted);

  font-size: 1.17rem;
  line-height: 1.7;
}


/* MAJOR ABOUT SECTIONS */

.about-section,
.about-section-row {
  padding: 58px 0;

  border-top: 1px solid var(--line);
}

.about-section h2,
.about-section-heading h2 {
  margin-bottom: 30px;

  font-size: clamp(2rem, 4vw, 2.8rem);
}


/* BACKGROUND */

.about-section-row {
  display: grid;

  grid-template-columns: 0.75fr 1.5fr;

  gap: 80px;
}

.about-section-row .about-section-heading h2 {
  margin-bottom: 0;
}

.about-copy {
  max-width: 690px;

  color: var(--muted);

  font-size: 1.02rem;
  line-height: 1.75;
}

.about-copy p + p {
  margin-top: 22px;
}


/* EDUCATION */

.simple-list {
  border-top: 1px solid var(--line);
}

.education-row {
  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 30px;

  padding: 27px 0;

  border-bottom: 1px solid var(--line);
}

.education-row h3 {
  margin-bottom: 5px;

  font-size: 1.35rem;
}

.education-row p,
.education-row span {
  color: var(--muted);
}

.education-row span {
  font-size: 0.9rem;

  white-space: nowrap;
}


/* ===============================
   AWARDS
================================ */

.awards-list {
  border-top: 1px solid var(--line);
}

.award {
  padding: 32px 0;

  border-bottom: 1px solid var(--line);
}

.award-content h3 {
  margin-bottom: 6px;

  font-size: 1.42rem;
}

.award-content > p {
  color: var(--muted);

  font-size: 0.94rem;
}

.award-detail {
  max-width: 660px;

  margin-top: 10px;

  line-height: 1.65;
}

.award-link {
  display: inline-block;

  margin-top: 9px;

  text-decoration: none;

  font-size: 0.86rem;
  font-weight: 600;

  border-bottom: 1px solid var(--rose);
}


/* AWARD + IMAGE LAYOUT */

.award-media {
  display: grid;

  grid-template-columns: minmax(0, 1fr) 300px;

  gap: 42px;

  align-items: center;
}


/* ===============================
   STAR PHOTO
================================ */

.star-image-wrap {
  width: 300px;

  justify-self: end;
}

.star-image {
  display: block;

  width: 300px;
  height: 195px;

  object-fit: cover;

  border-radius: 12px;
}


/* ===============================
   NOTRE DAME THUMBNAIL
================================ */

.notre-dame-media {
  width: 300px;

  justify-self: end;

  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: 9px;
}

.notre-dame-image-link {
  display: block;

  width: 300px;
  height: 195px;

  line-height: 0;

  overflow: hidden;

  border-radius: 12px;
}

.notre-dame-image {
  display: block;

  width: 300px;
  height: 195px;

  max-width: none;

  object-fit: cover;

  border-radius: 12px;
}

.notre-dame-link {
  display: inline-block;

  margin-top: 0;

  text-decoration: none;

  font-size: 0.86rem;
  font-weight: 600;

  border-bottom: 1px solid var(--rose);
}


/* ===============================
   NOTRE DAME THUMBNAIL â€” ENLARGED
   Add class "notre-dame-award-media" to the
   .award-media wrapper around the Notre Dame
   Merit Fellowship section in your HTML, e.g.:
   <div class="award-media notre-dame-award-media">
================================ */

.notre-dame-award-media {
  grid-template-columns: minmax(0, 1fr) 380px;
}

.notre-dame-award-media .notre-dame-media {
  width: 380px;
}

.notre-dame-award-media .notre-dame-image-link,
.notre-dame-award-media .notre-dame-image {
  width: 380px;
  height: 247px;
}


/* ===============================
   INTERESTS
================================ */

.interests-section {
  padding-bottom: 64px;
}

.interest-list {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;
}

.interest-list span {
  padding: 10px 16px;

  background: var(--paper);

  border: 1px solid var(--line);
  border-radius: 999px;

  color: var(--muted);

  font-size: 0.9rem;
}


/* ===============================
   FOOTER
================================ */

footer {
  max-width: 1150px;

  margin: 0 auto;

  padding: 20px 28px 28px;

  border-top: 1px solid var(--line);

  color: var(--muted);

  font-size: 0.8rem;
}


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

@media (max-width: 900px) {

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 240px;
  }

  .hero-photo-wrap {
    width: 240px;

    transform: translate(-10px, 14px);
  }

  .hero-photo {
    width: 240px;
    height: 285px;
  }

  .highlight-grid,
  .intro-grid,
  .about-section-row {
    grid-template-columns: 1fr;
  }

  .about-section-row {
    gap: 28px;
  }

  .nav-inner {
    flex-direction: column;

    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-start;
  }

}


/* ===============================
   MOBILE
================================ */

@media (max-width: 650px) {

  .nav-inner {
    padding: 12px 20px;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .hero-photo-wrap {
    width: 100%;

    justify-self: start;

    transform: none;
  }

  .hero-photo {
    width: 230px;
    height: 270px;
  }


  /* ABOUT */

  .about-main {
    width: calc(100% - 40px);
  }

  .about-hero {
    padding: 40px 0;
  }

  .about-section,
  .about-section-row {
    padding: 42px 0;
  }

  .education-row {
    flex-direction: column;

    align-items: flex-start;

    gap: 5px;
  }


  /* AWARD PHOTOS */

  .award-media {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .star-image-wrap,
  .notre-dame-media {
    justify-self: start;
  }

  .star-image-wrap {
    width: 260px;
  }

  .star-image {
    width: 260px;
    height: 170px;
  }

  .notre-dame-media {
    width: 260px;
  }

  .notre-dame-image-link {
    width: 260px;
    height: 170px;
  }

  .notre-dame-image {
    width: 260px;
    height: 170px;
  }

  /* Notre Dame enlarged version stays same size as
     the regular one on mobile since screen is narrow */
  .notre-dame-award-media .notre-dame-media {
    width: 260px;
  }

  .notre-dame-award-media .notre-dame-image-link,
  .notre-dame-award-media .notre-dame-image {
    width: 260px;
    height: 170px;
  }

}

/* =========================================
   CROCHET GALLERY
========================================= */

.crochet-gallery-main {
  width: min(100% - 56px, 1050px);
  margin: 0 auto;
}


/* PAGE INTRO */

.crochet-gallery-hero {
  max-width: 800px;
  padding: 58px 0 52px;
}

.crochet-gallery-kicker {
  margin-bottom: 8px;

  color: var(--sage-dark);

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

  font-size: 0.72rem;
  font-weight: 600;
}

.crochet-gallery-hero h1 {
  margin-bottom: 18px;

  font-family: "Playfair Display", serif;

  font-size: clamp(4rem, 8vw, 6.3rem);
  line-height: 1;

  letter-spacing: -0.045em;
}

.crochet-gallery-hero p {
  max-width: 650px;

  color: var(--muted);

  font-size: 1.08rem;
  line-height: 1.7;
}


/* GALLERY */

.crochet-gallery-section {
  padding: 48px 0 68px;

  border-top: 1px solid var(--line);
}

.crochet-gallery-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  column-gap: 24px;
  row-gap: 38px;

  align-items: start;
}


/* INDIVIDUAL PROJECT */

.gallery-project {
  margin: 0;
}


/* 
   Every source image is already cropped 4:5,
   so the browser does not need to crop anything.
*/

.gallery-image-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;

  overflow: hidden;

  background: var(--paper);

  border-radius: 14px;
}

.gallery-image-wrap img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;

  border-radius: 14px;

  transition: transform 0.2s ease;
}


/* VERY SUBTLE HOVER */

.gallery-project:hover .gallery-image-wrap img {
  transform: scale(1.01);
}


/* PROJECT NAME */

.gallery-project figcaption {
  margin-top: 10px;

  color: var(--ink);

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

  font-size: 0.9rem;
  font-weight: 500;

  line-height: 1.4;
}


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

@media (max-width: 900px) {

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

    column-gap: 20px;
    row-gap: 32px;
  }

}


/* =========================================
   CROCHET MOBILE
========================================= */

@media (max-width: 650px) {

  .crochet-gallery-main {
    width: calc(100% - 40px);
  }

  .crochet-gallery-hero {
    padding: 40px 0 40px;
  }

  .crochet-gallery-hero h1 {
    font-size: clamp(3.5rem, 17vw, 5rem);
  }

  .crochet-gallery-section {
    padding: 38px 0 50px;
  }

  .crochet-gallery-grid {
    grid-template-columns: 1fr;

    row-gap: 30px;
  }

  .gallery-project figcaption {
    margin-top: 9px;

    font-size: 0.9rem;
  }

}

/* =========================================
   EXPERIENCE PAGE
========================================= */

.experience-main {
  width: min(100% - 56px, 1050px);
  margin: 0 auto;
}


/* PAGE HEADER */

.experience-hero {
  max-width: 900px;
  padding: 58px 0 52px;
}

.experience-kicker {
  margin-bottom: 8px;

  color: var(--sage-dark);

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

  font-size: 0.72rem;
  font-weight: 600;
}

.experience-hero h1 {
  font-family: "Playfair Display", serif;

  font-size: clamp(4rem, 8vw, 6.3rem);
  line-height: 1;

  letter-spacing: -0.045em;
}


/* EXPERIENCE LIST */

.experience-section {
  padding: 48px 0 70px;

  border-top: 1px solid var(--line);
}

.experience-list {
  border-top: 1px solid var(--line);
}

.experience-row {
  display: grid;

  grid-template-columns: minmax(0, 1fr) auto;

  gap: 45px;

  align-items: center;

  padding: 30px 0;

  border-bottom: 1px solid var(--line);
}


/* COMPANY + TITLE */

.experience-info h2 {
  margin-bottom: 7px;

  font-family: "Playfair Display", serif;

  font-size: 1.5rem;
  line-height: 1.2;
}

.experience-title {
  color: var(--muted);

  font-size: 0.95rem;
  line-height: 1.5;
}


/* INCOMING LABEL */

.experience-note {
  display: inline-block;

  margin-top: 8px;

  color: var(--sage-dark);

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

  font-size: 0.7rem;
  font-weight: 600;
}


/* DATES */

.experience-date {
  color: var(--muted);

  font-size: 0.88rem;

  white-space: nowrap;

  text-align: right;
}

/* =========================================
   EXPERIENCE MOBILE
========================================= */

@media (max-width: 650px) {

  .experience-main {
    width: calc(100% - 40px);
  }

  .experience-hero {
    padding: 40px 0 40px;
  }

  .experience-hero h1 {
    font-size: clamp(3.5rem, 17vw, 5rem);
  }

  .experience-section {
    padding: 38px 0 50px;
  }

  .experience-row {
    grid-template-columns: 1fr;

    gap: 7px;

    padding: 25px 0;
  }

  .experience-date {
    margin-top: 3px;

    text-align: left;
  }

}

/* =========================================
   COMMUNITY WORK PAGE
========================================= */

.community-main {
  width: min(100% - 56px, 1050px);
  margin: 0 auto;
}


/* PAGE HEADER */

.community-hero {
  padding: 70px 0 50px;
}

.community-hero h1 {
  margin: 0;

  font-family: "Playfair Display", serif;

  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 1;

  letter-spacing: -0.045em;
}


/* =========================================
   DAVIS POLK
========================================= */

.community-project {
  padding: 50px 0 70px;

  border-top: 1px solid var(--line);
}


/* HEADING */

.community-project-heading {
  margin-bottom: 28px;
}

.community-project-heading h2 {
  margin: 0 0 8px;

  font-family: "Playfair Display", serif;

  font-size: 2rem;
  line-height: 1.2;
}

.community-project-heading p {
  margin: 0;

  color: var(--muted);

  font-size: 0.95rem;
}

.community-project-date {
  display: block;

  margin-top: 6px;

  color: var(--muted);

  font-size: 0.83rem;
}


/* FEATURED SPEAKING PHOTO */

.community-feature-photo {
  width: 520px;
  max-width: 100%;

  margin: 30px 0 38px;
}

.community-feature-photo img {
  display: block;

  width: 100%;
  height: auto;

  border-radius: 12px;
}


/* PROJECT DESCRIPTION */

.community-project-copy {
  max-width: 760px;

  margin-bottom: 42px;
}

.community-project-copy p {
  margin: 0 0 18px;

  color: var(--muted);

  font-size: 1rem;
  line-height: 1.7;
}


/* =========================================
   PHOTO GALLERY
========================================= */

.community-photo-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 18px;

  width: 100%;
  max-width: 760px;
}

.community-photo {
  display: block;

  width: 100%;

  padding: 0;

  background: none;

  border: 0;
  border-radius: 11px;

  overflow: hidden;

  cursor: zoom-in;
}

.community-photo img {
  display: block;

  width: 100%;
  height: 230px;

  object-fit: cover;

  border-radius: 11px;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.community-photo:hover img {
  transform: scale(1.02);
  opacity: 0.92;
}

.gallery-hint {
  margin-top: 11px;

  color: var(--muted);

  font-size: 0.75rem;
}


/* =========================================
   LIGHTBOX
========================================= */

.photo-lightbox {
  position: fixed;

  inset: 0;

  z-index: 5000;

  display: none;

  align-items: center;
  justify-content: center;

  padding: 40px;

  background: rgba(25, 22, 20, 0.88);
}

.photo-lightbox.open {
  display: flex;
}

.photo-lightbox img {
  display: block;

  max-width: 92vw;
  max-height: 88vh;

  width: auto;
  height: auto;

  object-fit: contain;

  border-radius: 8px;

  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: fixed;

  top: 24px;
  right: 30px;

  width: 44px;
  height: 44px;

  padding: 0;

  background: transparent;

  border: 0;

  color: white;

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

  font-size: 2.3rem;
  line-height: 1;

  cursor: pointer;
}

body.lightbox-open {
  overflow: hidden;
}


/* =========================================
   JUSTICE IN EDUCATION
========================================= */

.justice-project {
  padding: 55px 0 70px;

  border-top: 1px solid var(--line);
}

.justice-project-copy {
  max-width: 760px;

  margin-top: 24px;
}

.justice-project-copy p {
  margin: 0;

  color: var(--muted);

  font-size: 1rem;
  line-height: 1.7;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

  .community-main {
    width: calc(100% - 40px);
  }

  .community-hero {
    padding: 48px 0 40px;
  }

  .community-hero h1 {
    font-size: clamp(3.4rem, 16vw, 4.8rem);
  }

  .community-project {
    padding: 40px 0 50px;
  }

  .community-project-heading h2 {
    font-size: 1.7rem;
  }

  .community-feature-photo {
    width: 100%;

    margin: 24px 0 30px;
  }

  .community-project-copy {
    margin-bottom: 30px;
  }

  .community-project-copy p,
  .justice-project-copy p {
    font-size: 0.96rem;
  }

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

    width: 100%;

    gap: 14px;
  }

  .community-photo img {
    height: auto;

    aspect-ratio: 4 / 3;

    object-fit: cover;
  }

  .justice-project {
    padding: 45px 0 60px;
  }

  .photo-lightbox {
    padding: 20px;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
  }

}


/* =========================================
   CONTACT PAGE
========================================= */

.contact-main {
  width: min(100% - 56px, 1050px);
  margin: 0 auto;
}


/* HEADER */

.contact-hero {
  max-width: 760px;

  padding: 70px 0 58px;
}

.contact-hero h1 {
  margin: 0 0 22px;

  font-family: "Playfair Display", serif;

  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 1;

  letter-spacing: -0.045em;
}

.contact-hero p {
  max-width: 620px;

  margin: 0;

  color: var(--muted);

  font-size: 1.05rem;
  line-height: 1.7;
}


/* CONTACT DETAILS */

.contact-details {
  padding: 10px 0 90px;

  border-top: 1px solid var(--line);
}

.contact-row {
  display: grid;

  grid-template-columns: 180px minmax(0, 1fr);

  gap: 40px;

  align-items: center;

  padding: 30px 0;

  border-bottom: 1px solid var(--line);
}

.contact-label {
  color: var(--muted);

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

  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-value a {
  color: var(--ink);

  font-family: "Playfair Display", serif;

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

  text-decoration: none;

  border-bottom: 1px solid var(--rose);

  transition: color 0.2s ease;
}

.contact-value a:hover {
  color: var(--sage-dark);
}


/* MOBILE */

@media (max-width: 650px) {

  .contact-main {
    width: calc(100% - 40px);
  }

  .contact-hero {
    padding: 48px 0 45px;
  }

  .contact-hero h1 {
    font-size: clamp(3.4rem, 16vw, 4.8rem);
  }

  .contact-details {
    padding-bottom: 60px;
  }

  .contact-row {
    grid-template-columns: 1fr;

    gap: 8px;

    padding: 25px 0;
  }

  .contact-value a {
    font-size: 1.2rem;

    overflow-wrap: anywhere;
  }

}


/* =========================================
   CREATIVE PROJECTS LANDING PAGE
========================================= */

.creative-main {
  width: min(100% - 56px, 1050px);
  margin: 0 auto;
}


/* PAGE HEADER */

.creative-hero {
  max-width: 780px;

  padding: 70px 0 60px;
}

.creative-hero h1 {
  margin: 0 0 22px;

  font-family: "Playfair Display", serif;

  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 1;

  letter-spacing: -0.045em;
}

.creative-hero p {
  max-width: 600px;

  margin: 0;

  color: var(--muted);

  font-size: 1.05rem;
  line-height: 1.7;
}


/* =========================================
   CREATIVE OPTIONS
========================================= */

.creative-options {
  padding-bottom: 100px;

  border-top: 1px solid var(--line);
}


/* INDIVIDUAL CATEGORY */

.creative-option {
  display: grid;

  grid-template-columns: 80px minmax(0, 1fr);

  gap: 35px;

  padding: 48px 0;

  color: var(--ink);

  text-decoration: none;

  border-bottom: 1px solid var(--line);

  transition: padding-left 0.2s ease;
}

.creative-option:hover {
  padding-left: 12px;
}


/* NUMBER */

.creative-number {
  padding-top: 7px;

  color: var(--muted);

  font-size: 0.75rem;
  font-weight: 600;

  letter-spacing: 0.12em;
}


/* CATEGORY TEXT */

.creative-option-content h2 {
  margin: 0 0 12px;

  font-family: "Playfair Display", serif;

  font-size: 2.2rem;
  line-height: 1.2;
}

.creative-option-content p {
  max-width: 600px;

  margin: 0 0 22px;

  color: var(--muted);

  font-size: 0.98rem;
  line-height: 1.65;
}


/* VIEW LINK */

.creative-link {
  display: inline-block;

  color: var(--sage-dark);

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

  text-transform: uppercase;
  letter-spacing: 0.1em;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

  .creative-main {
    width: calc(100% - 40px);
  }

  .creative-hero {
    padding: 48px 0 45px;
  }

  .creative-hero h1 {
    font-size: clamp(3.4rem, 16vw, 4.8rem);
  }

  .creative-option {
    grid-template-columns: 45px minmax(0, 1fr);

    gap: 18px;

    padding: 35px 0;
  }

  .creative-option:hover {
    padding-left: 0;
  }

  .creative-option-content h2 {
    font-size: 1.8rem;
  }

  .creative-options {
    padding-bottom: 70px;
  }

}


/* =========================================
   CREATIVE PROJECTS SUBNAV
========================================= */

.creative-subnav {
  padding: 34px 0 0;
}

.creative-subnav-parent {
  display: inline-block;

  margin-bottom: 8px;

  color: var(--sage-dark);

  text-decoration: none;

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

  font-size: 0.7rem;
  font-weight: 600;
}

.creative-subnav-links {
  display: flex;
  align-items: center;

  gap: 10px;

  color: var(--muted);

  font-size: 0.86rem;
}

.creative-subnav-links a {
  color: var(--muted);

  text-decoration: none;

  transition: color 0.2s ease;
}

.creative-subnav-links a:hover {
  color: var(--sage-dark);
}

.creative-subnav-links a.active {
  color: var(--ink);

  font-weight: 600;

  border-bottom: 1px solid var(--rose);
}


/* SLIGHTLY TIGHTER CROCHET HEADER
   NOW THAT SUBNAV IS ABOVE IT */

.crochet-gallery-hero {
  padding-top: 40px;
}


/* MOBILE */

@media (max-width: 650px) {

  .creative-subnav {
    padding-top: 26px;
  }

  .creative-subnav-links {
    flex-wrap: wrap;
  }

  .crochet-gallery-hero {
    padding-top: 32px;
  }

}


/* ========================================
   STATIONERY DESIGNS
======================================== */

.stationery-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 70px 24px 100px;
}

.stationery-header {
    margin-bottom: 55px;
}

.stationery-header h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 500;
    line-height: 1;
    margin: 0 0 24px;
}

.stationery-header p {
    max-width: 620px;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 22px;
}


/* Etsy button */

.etsy-button {
    display: inline-block;
    padding: 12px 22px;
    background-color: #2f2a26;
    color: #f8f4ef;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 3px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.etsy-button:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}


/* Gallery */

.stationery-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 55px 32px;
}

.stationery-item {
    min-width: 0;
}

.stationery-item a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.stationery-item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.25s ease;
}

.stationery-item a:hover img {
    transform: scale(1.015);
}

.stationery-item-text {
    padding-top: 16px;
}

.stationery-item-text h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 500;
    margin: 0 0 7px;
}

.stationery-item-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.75;
}


/* Bottom Etsy section */

.stationery-shop {
    margin-top: 90px;
    padding-top: 40px;
    border-top: 1px solid rgba(47, 42, 38, 0.18);
}

.stationery-shop h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 500;
    margin: 0 0 10px;
}

.stationery-shop p {
    margin: 0 0 20px;
    line-height: 1.6;
}


/* Mobile */

@media (max-width: 650px) {

    .stationery-page {
        padding: 45px 20px 70px;
    }

    .stationery-header {
        margin-bottom: 40px;
    }

    .stationery-gallery {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .stationery-shop {
        margin-top: 65px;
    }
}


/* =========================================
   WRITINGS PAGE
========================================= */

.writings-main {
  width: min(100% - 56px, 1050px);
  margin: 0 auto;
}


/* PAGE HEADER */

.writings-hero {
  padding: 82px 0 72px;
}

.writings-hero h1 {
  margin: 0 0 22px;

  font-family: "Playfair Display", serif;
  font-size: clamp(5rem, 10vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;

  color: var(--ink);
}

.writings-hero p {
  margin: 0;

  color: var(--muted);

  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
}


/* =========================================
   WRITING BLOCKS
========================================= */

.writing-card-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 18px;

  padding: 0 0 100px;
}


/* INDIVIDUAL BLOCK */

.writing-block {
  display: flex;
  flex-direction: column;

  min-height: 390px;

  padding: 28px;

  border: 1px solid rgba(47, 42, 38, 0.12);
  border-radius: 16px;
}


/* COLORS — MATCH HOME PAGE */

.writing-block-sage {
  background: #aebba7;
}

.writing-block-cream {
  background: #fbf8f3;
}

.writing-block-blush {
  background: #ead2cf;
}


/* CARD TYPE */

.writing-block-type {
  margin-bottom: 17px;

  color: #697866;

  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 0.15em;
}


/* CARD TITLE */

.writing-block h2 {
  margin: 0 0 10px;

  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
  line-height: 1.15;

  color: var(--ink);
}


/* SUBTITLE */

.writing-block-subtitle {
  margin: 0 0 18px;

  color: var(--ink);

  font-family: "DM Sans", sans-serif;
  font-size: 0.84rem;
  font-weight: 500;

  line-height: 1.45;
}


/* DESCRIPTION */

.writing-block-description {
  margin: 0 0 28px;

  color: #625c56;

  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  line-height: 1.65;
}


/* LINK STAYS AT BOTTOM */

.writing-block-link {
  display: inline-block;

  width: fit-content;

  margin-top: auto;

  padding-bottom: 3px;

  color: var(--ink);

  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;

  text-decoration: none;

  border-bottom: 1px solid #c88f8b;
}

.writing-block-link:hover {
  opacity: 0.65;
}


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

@media (max-width: 900px) {

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

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

  .writings-main {
    width: calc(100% - 40px);
  }

  .writings-hero {
    padding: 55px 0 50px;
  }

  .writings-hero h1 {
    font-size: clamp(4.2rem, 18vw, 5.5rem);
  }

  .writing-card-grid {
    grid-template-columns: 1fr;

    gap: 16px;

    padding-bottom: 70px;
  }

  .writing-block {
    min-height: 340px;

    padding: 25px;
  }

}


/* Fix Contact button on homepage */

.contact-panel .button-light {
  background: #f7f3ee;
  color: #2d2926;
  border: 1px solid #f7f3ee;
}

.contact-panel .button-light:hover {
  background: #ffffff;
  color: #2d2926;
  border-color: #ffffff;
}
