
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital@0;1&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}
:root {
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Inter", sans-serif;

  --fs-h1: 64px;
  --fs-h2: 40px;
  --fs-h3: 28px;
  --fs-body: 18px;
  --fs-small: 14px;

  --lh-h1: 72px;
  --lh-h2: 48px;
  --lh-h3: 36px;
  --lh-body: 30px;

  --text-light: #f1ede9;
  --text-dark: #2e1f1a;

  --page-x: 120px;
  --page-x-tight: 72px;
  --page-x-mobile: 16px;

  --page-edge: clamp(24px, 8vw, 120px);
  --page-edge-tight: clamp(16px, 5vw, 72px);

  --content-max: 1200px;
}
body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-dark);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga", "kern";
}


h1 {
  font-size: var(--fs-h1);
  line-height: var(--lh-h1);
}
h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
}

h3 {
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
}
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}


/*formatting*/
.container {
  padding: 96px 0;
}

.row {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

html {
  scroll-behavior: smooth;
}

ul {
    display: flex;
}

li {
    list-style-type: none;
}

/*NAVBAR*/
.site-header {
  position: absolute;
  top: 8px;  
  left: 0;
  width: 100%;
  padding-left: var(--page-edge-tight);
  padding-right: var(--page-edge-tight);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  display: block;
  height: 150px;
  width: auto;
}

.site-logo {
  transform: translateY(1px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-nav a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #2e1f1a;
  opacity: 0.88;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}
.menu-toggle {
  display: none;
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: #2e1f1a;
  top: 16px;
  right: 16px;
  bottom: 16px;
  left: 16px;
  border: 1px solid rgba(241, 237, 233, 0.25);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 100;
}
body.menu--open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}
.menu-links {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.menu-links a {
  font-family: var(--font-serif);
  font-size: 32px;
  color: #f1ede9;
  text-decoration: none;
}
.menu-close {
  position: absolute;
  top: 24px;
  right: 24px;

  background: none;
  border: none;
  color: #f1ede9;
  font-size: 32px;
  cursor: pointer;
}
body.menu--open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 90;
}

 /*Landing*/

.landing h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.landing p {
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
  margin-top: 24px;
  max-width: 560px;
}

.cta {
    margin-top: 16px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.btn__secondary, .btn__primary {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #f1ede9;
  transition: all 300ms; 
  text-decoration: none;
  padding: 12px 20px;
  border: 1px solid rgba(241, 237, 233, 0.5);
  border-radius: 8px;
}

.btn__secondary:hover, .btn__primary:hover {
  background: rgba(241, 237, 233, 0.08);
  border: 1px solid #f1ede9;
  border-radius: 8px;
  color: #f1ede9;
  transform: translateY(-1px);
  
}
.landing {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #f1ede9;
}

  .landing__content {
  max-width: 620px;
  margin-left: var(--page-edge);
  margin-right: var(--page-edge-tight);
  margin-top: 120px;
  z-index: 2;
  text-decoration: none;
  position: relative;
}

.landing__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.landing__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.05) 70%,
    rgba(0,0,0,0) 100%
  );
  z-index: 1;
}

/*plans*/
.pathways {
  padding: 40px 0;
  background: #ebe3db;
  color: #2e1f1a;
  overflow-x: hidden;
}

.pathways h3,
.pathways p,
.pathways .eyebrow {
  color: #2e1f1a;
}
.section-inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px;
  padding-left: clamp(16px, 3vw, 48px);
  padding-right: clamp(16px, 3vw, 48px);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.6;
}

.pathways h2 {
  max-width: 640px;
  margin-bottom: 64px;
}
.pathways__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
}

.pathways__inner {
  max-width: 1500px;
  margin: 0 auto;

  padding-left: clamp(16px, 3vw, 48px);
  padding-right: clamp(16px, 3vw, 48px);
}
.path-card {
  display: flex;
  width: 100%;
  min-height: 20px;
  background: #dad0c4;
  border: 1px solid rgba(0,0,0,0.1);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.path-card__symbol {
  display: flex;
  align-items: center;
  font-size: 32px;
  height: 48px;
  line-height: 1;
  margin: 0;
  margin-bottom: 12px;
  opacity: 0.6;
  color: #2e1f1a;
  position: relative;
}
.path__img {
  width: 45%;
  position: relative;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: flex;
}
.path-card h3 {
  height: 44px;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  margin: 0;
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
}

.path-card p {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
}
.path-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,0,0,0.2);
  background: rgba(255,255,255,0.55);
}
.path__card--text {
  width: 55%;
  padding: 28px;
  display: grid;
  grid-template-rows: 48px 44px auto;;
}
/*featuredwork*/
.featured-work {
  background: #ebe3db;
  color: #2e1f1a;
  
}

.featured-work h2,
.featured-work h3,
.featured-work p,
.featured-work .eyebrow {
  color: #2e1f1a;
}
.section-heading {
  margin-bottom: 24px;
  max-width: 640px;
}
.featured-work__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.work-card {
  display: block;
}
.work-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  filter: contrast(0.95) saturate(0.9);
  transition: transform 0.4s ease;
}
.work-card:hover img {
  transform: scale(1.02);
}
.work-card__meta {
  margin-top: 12px;
}

.work-card__meta h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-h3);
}

.work-card__meta p {
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  opacity: 0.7;
}
.text-link {
  display: inline-block;
  margin-top: 48px;
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;

  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, opacity 0.25s ease;
}

.text-link:hover {
  border-bottom-color: currentColor;
}

/*workshop*/
.workshop {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: #e6ddd2; /* base tone */
  height: 380px;
  position: relative;
}

.workshop__media {
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.workshop__media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
  object-position: 40% center;
}
.workshop__content {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;

  background:
    linear-gradient(
      135deg,
      #c8af97 0%,
      #c9b19a 35%,
      #bea288 65%,
      #af9174 100%
    );
}
.workshop__content-inner {
  position: relative;
  z-index: 2;
  padding: 44px 64px;
}
.workshop__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("KAssets/paper-texture.png"),
  radial-gradient(
      circle at 80% 30%,
      rgba(255,255,255,0.25),
      transparent 60%
    );
    background-size: cover;
    background-repeat: no-repeat;
  opacity: 0.35;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

.workshop__content::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("KAssets/floral-overlay.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 55%;
  opacity: 0.35;
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0,0,0,0.6) 35%,
    rgba(0,0,0,1) 60%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0,0,0,0.6) 35%,
    rgba(0,0,0,1) 60%
  );
  pointer-events: none;
  z-index: 1;
}

.workshop__content h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  margin: 12px 0 16px;
  color:#2e1f1a
}
.workshop__content p {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 28px;
  color:#2e1f1a
}
.workshop__content a {
  display: inline-block;
  margin-top: 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  color:#2e1f1a
}
.workshop__meta {
  font-family: var(--font-sans);
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 16px;
}

.workshop__desc {
  max-width: 420px;
  margin-bottom: 24px;
}

.btn--dark {
  color: #2e1f1a;
  border: 1px solid rgba(46, 31, 26, 0.4);
  background: transparent;
}

.btn--dark:hover {
  border-color: #2e1f1a;
  background: rgba(46, 31, 26, 0.06);
  color:#2e1f1a;
  transform: translateY(-1px);
}

/*about*/
.about {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 360px;
  background: #ebe3db;
  color: #2e1f1a;
}

.about__media {
  overflow: hidden;
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(100%) contrast(0.9);
}

.about__content {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f1ede9;
}

.about__content::after {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("KAssets/floral-overlay.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 55%;

  opacity: 0.28;
  filter: contrast(1.05);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

.about__inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 56px 64px;
}

.about h2 {
  color: #2e1f1a;
  margin-bottom: 16px;
}

.about p {
  color: #2e1f1a;
  max-width: 460px;
}

.about .text-link {
  color: #2e1f1a;
}

/* recent writing */

.recent-writing {
  background: #ebe3db;
  color: #2e1f1a;
  padding: 44px 0 52px;
}

.recent-writing__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding-left: clamp(24px, 4vw, 64px);
  padding-right: clamp(24px, 4vw, 64px);
}

.recent-writing__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.recent-writing .eyebrow {
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #2e1f1a;
  opacity: 0.85;
  margin: 0;
}

.recent-writing__all {
  margin-top: 0;
  border-bottom: 1px solid transparent;
}

.recent-writing__all:hover {
  border-bottom-color: currentColor;
}

.recent-writing__all::after {
  content: " →";
}

.writing-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.writing-card {
  padding: 0 56px;
  border-left: 1px solid rgba(46, 31, 26, 0.25);
}

.writing-card:first-child {
  border-left: none;
  padding-left: 140px;
}

.writing-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
  color: #2e1f1a;
  margin-bottom: 12px;
}

.writing-card p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 24px;
  max-width: 260px;
  color: #2e1f1a;
  opacity: 0.8;
  margin-bottom: 18px;
}

.writing-card time {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #2e1f1a;
  opacity: 0.7;
}

/*newslettter*/

.newsletter {
  position: relative;
  overflow: hidden;

  padding: 48px 24px;
  background-image:
      linear-gradient(
      rgba(235, 227, 219, 0.18),
      rgba(235, 227, 219, 0.18)
    ),
    url("KAssets/stone-texture-dark.png");

  background-size: cover;
  background-position: center;
}

.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;

   background:
    linear-gradient(
      180deg,
      rgba(32, 24, 20, 0.28),
      rgba(32, 24, 20, 0.42)
    );

  z-index: 0;
}
.newsletter::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top center,
      rgba(255,255,255,0.16),
      transparent 52%
    );

  opacity: 0.55;
  mix-blend-mode: screen;

  z-index: 1;
}
.newsletter__inner {
  position: relative;
  z-index: 2;

  max-width: 720px;
  margin: 0 auto;
  text-align: center;

  color: #f1ede9;
}
.newsletter__inner h2 {
  margin-bottom: 8px;
}

.newsletter__inner p {
  margin-bottom: 18px;
}

.newsletter__form {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 0;
}

.newsletter__form input,
.newsletter__form button {
  height: 44px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #f1ede9;
  background: rgba(241, 237, 233, 0.04);
  border: 1px solid rgba(241, 237, 233, 0.5);
}

.newsletter__form input {
  width: min(320px, 60vw);
  padding: 0 16px;
  border-right: none;
}

.newsletter__form input::placeholder {
  color: rgba(241, 237, 233, 0.72);
  letter-spacing: 0.04em;
}

.newsletter__form button {
  padding: 0 28px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.newsletter__form button:hover {
  background: rgba(241, 237, 233, 0.1);
  border-color: #f1ede9;
}

.newsletter__form input:focus {
  outline: none;
  background: rgba(241, 237, 233, 0.08);
  border-color: #f1ede9;
}
/*footer*/
.site-footer {
  background: #ebe3db;
  color: #2e1f1a;
  padding: 44px 0 36px;
}

.site-footer__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding-left: clamp(24px, 4vw, 64px);
  padding-right: clamp(24px, 4vw, 64px);

  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 48px;
  align-items: start;
  position: relative;
}

.footer-mark {
  width: 42px;
  height: 92px;
  position: relative;
  opacity: 0.65;
}

.footer-mark::before,
.footer-mark::after,
.footer-mark span::before,
.footer-mark span::after {
  content: "";
  position: absolute;
  background: #2e1f1a;
  left: 50%;
  transform-origin: center;
}

.footer-mark::before {
  width: 1px;
  height: 72px;
  top: 0;
  transform: translateX(-50%);
}

.footer-mark::after {
  width: 1px;
  height: 36px;
  top: 18px;
  transform: translateX(-50%) rotate(45deg);
}

.footer-mark span::before {
  width: 1px;
  height: 36px;
  top: 18px;
  transform: translateX(-50%) rotate(-45deg);
}

.footer-mark span::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  top: 84px;
  transform: translateX(-50%);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(110px, 1fr));
  gap: 36px;
}

.footer-col h3 {
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #2e1f1a;
}

.footer-col a {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 22px;
  color: #2e1f1a;
  text-decoration: none;
  opacity: 0.72;
  transition: opacity 0.25s ease;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-social a {
  color: #2e1f1a;
  font-size: 24px;
  opacity: 0.75;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-credit {
  position: absolute;
  right: clamp(24px, 4vw, 64px);
  bottom: -8px;

  font-family: var(--font-sans);
  font-size: 12px;
  color: #2e1f1a;
  opacity: 0.65;
}

/* =========================
   TABLET / SMALL LAPTOP
   786px and below
========================= */

@media (max-width: 786px) {
  :root {
    --fs-h1: 48px;
    --fs-h2: 34px;
    --fs-h3: 26px;
    --fs-body: 16px;

    --lh-h1: 54px;
    --lh-h2: 40px;
    --lh-h3: 32px;
    --lh-body: 26px;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    top: 16px;
    padding-left: var(--page-x-mobile);
    padding-right: var(--page-x-mobile);
  }

  .site-logo {
    width: 100%;
    max-width: 360px;
    display: block;
  }

  .site-logo img {
    width: 100%;
    height: auto;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
  }

  .menu-overlay {
    top: 18px;
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .landing {
    min-height: 90vh;
    align-items: center;
  }

  .landing__content {
    max-width: 92%;
    margin-left: 24px;
    margin-right: 24px;
    margin-top: 120px;
  }

  .landing h1 {
    font-size: clamp(42px, 11vw, 58px);
    line-height: 1.05;
  }

  .landing p {
    max-width: 440px;
    font-size: 16px;
    line-height: 1.55;
  }

  .cta {
    gap: 16px;
  }

  .section-inner,
  .pathways__inner,
  .recent-writing__inner,
  .site-footer__inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .pathways__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .path-card {
    min-height: 220px;
  }

  .featured-work__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .workshop {
    grid-template-columns: 1fr;
    height: auto;
  }

  .workshop__media {
    height: 320px;
  }

  .workshop__content {
    min-height: 360px;
  }

  .workshop__content-inner {
    padding: 44px 32px;
  }

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

  .about__media {
    height: 340px;
  }

  .about__inner {
    padding: 44px 32px;
  }

  .recent-writing__heading {
    align-items: flex-start;
    gap: 20px;
  }

  .writing-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .writing-card,
  .writing-card:first-child {
    border-left: none;
    border-top: 1px solid rgba(46, 31, 26, 0.2);
    padding: 24px 0 0;
  }

  .writing-card:first-child {
    border-top: none;
  }

  .newsletter__form {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .newsletter__form input,
  .newsletter__form button {
    width: 100%;
    max-width: 340px;
  }

  .newsletter__form input {
    border-right: 1px solid rgba(241, 237, 233, 0.5);
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 36px;
  }

  .footer-credit {
    position: static;
    margin-top: 8px;
  }
}


/* =========================
   PHONE
   640px and below
========================= */

@media (max-width: 640px) {
  :root {
    --fs-h1: 42px;
    --fs-h2: 30px;
    --fs-h3: 24px;
    --fs-body: 16px;

    --lh-h1: 46px;
    --lh-h2: 36px;
    --lh-h3: 30px;
    --lh-body: 25px;
  }

  .site-logo {
    max-width: 300px;
  }

  .landing {
    min-height: 92vh;
  }

  .landing__content {
    margin-left: 18px;
    margin-right: 18px;
    margin-top: 104px;
  }

  .landing h1 {
    font-size: clamp(40px, 13vw, 52px);
  }

  .btn__primary,
  .btn__secondary {
    padding: 10px 16px;
    font-size: 11px;
  }

  .pathways {
    padding: 32px 0;
  }

  .path-card {
    flex-direction: column;
  }

  .path__img {
    width: 100%;
    aspect-ratio: 16 / 10;
  }

  .path__card--text {
    width: 100%;
    padding: 24px;
  }

  .featured-work__grid {
    grid-template-columns: 1fr;
  }

  .workshop__media {
    height: 280px;
  }

  .workshop__content-inner {
    padding: 40px 24px;
  }

  .workshop__content::after {
    background-size: 85%;
    opacity: 0.22;
  }

  .about__media {
    height: 300px;
  }

  .about__inner {
    padding: 40px 24px;
  }

  .about__content::after {
    background-size: 85%;
    opacity: 0.16;
  }

  .recent-writing__heading {
    flex-direction: column;
  }

  .recent-writing__all {
    margin-top: 0;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }
}