:root {
  --ivory: #f8f3ea;
  --paper: #fffdf9;
  --ink: #302d28;
  --muted: #6c675e;
  --line: #ddd4c6;
  --sage: #6f806f;
  --sage-dark: #526456;
  --rose: #b98687;
  --blush: #ead9d4;
  --sun: #f6bd36;
  --sun-soft: #fff4c9;
  --coral: #e96f5f;
  --coral-dark: #c95348;
  --sky: #dceff5;
  --green: #668c51;
  --green-dark: #4f733e;
  --shadow: 0 24px 70px rgb(72 58 37 / 10%);
  --serif: Baskerville, "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  background: var(--ink);
  color: #fff;
  left: 12px;
  padding: 12px 18px;
  position: fixed;
  top: -100px;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgb(248 243 234 / 94%);
  border-bottom: 1px solid var(--line);
  display: flex;
  min-height: 78px;
  justify-content: space-between;
  padding: 0 clamp(22px, 5vw, 76px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header--home {
  position: relative;
}

.site-header--sunny {
  background: rgb(255 250 232 / 94%);
  border-bottom-color: #eadcac;
}

.brand {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-contact,
.desktop-nav,
.simple-nav {
  font-size: 0.9rem;
}

.header-contact {
  align-items: center;
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  min-height: 44px;
  padding: 8px 0 5px;
}

.desktop-nav,
.simple-nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.8vw, 42px);
}

.desktop-nav a,
.simple-nav a,
.header-contact,
.footer-nav a,
.site-footer > a:not(.brand) {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.simple-nav a:hover,
.header-contact:hover,
.footer-nav a:hover,
.site-footer > a:not(.brand):hover {
  color: var(--rose);
}

.home-link {
  border: 1px solid currentColor;
  padding: 9px 14px;
}

.mobile-menu {
  display: none;
  position: relative;
}

.eyebrow,
.creator-label,
.choice-kicker {
  color: var(--sage);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.45;
  margin: 0 0 20px;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 22px;
  justify-content: space-between;
  letter-spacing: 0.045em;
  min-height: 54px;
  padding: 15px 21px;
  text-transform: uppercase;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover {
  box-shadow: 0 12px 28px rgb(44 42 38 / 13%);
  transform: translateY(-2px);
}

.button--sage {
  background: var(--sage);
  color: #fff;
}

.button--sage:hover {
  background: var(--sage-dark);
}

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

.button--coral {
  background: var(--coral);
  color: #fff;
}

.button--coral:hover {
  background: var(--coral-dark);
}

.button--green {
  background: var(--green);
  color: #fff;
}

.button--green:hover {
  background: var(--green-dark);
}

.text-link {
  border-bottom: 1px solid currentColor;
  color: var(--sage-dark);
  padding: 7px 0 4px;
}

/* Umbrella homepage */

.home-page {
  background:
    radial-gradient(circle at 8% 4%, rgb(234 217 212 / 54%), transparent 28rem),
    radial-gradient(circle at 94% 13%, rgb(255 234 159 / 42%), transparent 28rem),
    var(--ivory);
}

.home-intro {
  margin: 0 auto;
  max-width: 850px;
  padding: clamp(62px, 9vw, 118px) 24px clamp(40px, 5vw, 66px);
  text-align: center;
}

.home-intro .eyebrow {
  margin-bottom: 10px;
}

.home-intro h1 {
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  line-height: 0.94;
  margin: 0;
}

.home-tagline {
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  line-height: 1.45;
  margin: 28px auto 0;
  max-width: 700px;
}

.home-prompt {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 20px 0 0;
}

.creator-grid {
  display: grid;
  gap: clamp(22px, 3vw, 38px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1220px;
  padding: 0 clamp(18px, 4vw, 52px) clamp(80px, 10vw, 138px);
}

.creator-card {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.creator-card:hover {
  box-shadow: 0 30px 80px rgb(72 58 37 / 15%);
  transform: translateY(-4px);
}

.creator-card--elena:hover {
  border-color: var(--rose);
}

.creator-card--sienna:hover {
  border-color: var(--sun);
}

.creator-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.creator-image picture,
.creator-image img {
  height: 100%;
  width: 100%;
}

.creator-image img {
  object-fit: cover;
  transition: transform 450ms ease;
}

.creator-card:hover .creator-image img {
  transform: scale(1.018);
}

.creator-image--elena img {
  object-position: center 52%;
}

.creator-image--sienna img {
  object-position: center 31%;
}

.creator-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(28px, 4vw, 48px);
}

.creator-label {
  margin-bottom: 10px;
}

.creator-card--sienna .creator-label {
  color: var(--coral-dark);
}

.creator-copy h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1;
  margin: 0;
}

.creator-copy > p:not(.creator-label) {
  color: var(--muted);
  margin: 22px 0 34px;
  max-width: 500px;
}

.card-button {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 0.82rem;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0.045em;
  margin-top: auto;
  min-height: 52px;
  padding-top: 18px;
  text-transform: uppercase;
}

.creator-card--elena .card-button {
  color: var(--sage-dark);
}

.creator-card--sienna .card-button {
  color: var(--coral-dark);
}

/* Elena page */

.elena-hero {
  display: grid;
  grid-template-columns: minmax(340px, 45%) 1fr;
  min-height: calc(100svh - 78px);
}

.elena-hero-copy {
  align-self: center;
  max-width: 720px;
  padding: 78px 30px 100px clamp(28px, 5.2vw, 86px);
}

.elena-hero h1 {
  font-size: clamp(4rem, 6.5vw, 7.2rem);
  line-height: 0.92;
  margin: 0;
}

.hero-intro {
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.75;
  margin: 36px 0 0;
  max-width: 540px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 38px;
}

.elena-hero-art {
  min-height: 630px;
  overflow: hidden;
}

.elena-hero-art picture,
.elena-hero-art img {
  height: 100%;
  width: 100%;
}

.elena-hero-art img {
  object-fit: cover;
  object-position: 53% center;
}

.elena-section {
  display: grid;
  gap: clamp(34px, 6vw, 96px);
  grid-template-columns: 0.55fr 1.25fr 0.85fr;
  padding: clamp(100px, 12vw, 175px) clamp(28px, 6.5vw, 110px);
}

.section-label {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label span {
  border-bottom: 1px solid var(--rose);
  color: var(--rose);
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 7px;
}

.section-label p {
  line-height: 1.6;
  margin: 0;
}

.book-copy h2,
.gift-card h2,
.about-copy h2,
.workbook-heading h2 {
  font-size: clamp(2.7rem, 4.6vw, 5.25rem);
  line-height: 1.04;
  margin: 0;
}

.book-copy > p:not(.eyebrow),
.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.85;
  margin: 32px 0 0;
  max-width: 700px;
}

.feature-list {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 38px 0;
  padding: 0;
}

.feature-list li {
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  padding: 13px 0;
}

.feature-list li:last-child {
  border-bottom: 0;
}

.book-quote {
  align-self: end;
  border-left: 1px solid var(--rose);
  margin: 0;
  padding-left: 28px;
}

.book-quote > span {
  color: var(--rose);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.5;
}

.book-quote p {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.5vw, 3rem);
  line-height: 1.2;
  margin: 16px 0 25px;
}

.book-quote small {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gift-section {
  background: var(--sage-dark);
  padding: clamp(80px, 10vw, 145px) 24px;
}

.gift-card {
  background: var(--paper);
  margin: 0 auto;
  max-width: 900px;
  padding: clamp(52px, 7vw, 96px);
  position: relative;
  text-align: center;
}

.gift-card > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
  margin: 28px auto 35px;
  max-width: 600px;
}

.gift-ornament {
  align-items: center;
  background: var(--blush);
  border-radius: 50%;
  color: var(--sage-dark);
  display: flex;
  font-size: 1.25rem;
  height: 62px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: -31px;
  transform: translateX(-50%);
  width: 62px;
}

.about-section {
  grid-template-columns: 0.7fr 1.3fr;
}

.about-note {
  align-self: end;
  border-left: 1px solid var(--line);
  padding: 16px 0 16px 28px;
}

.about-note p {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  margin: 0 0 8px;
}

.about-note strong {
  color: var(--rose);
  font-family: "Segoe Script", "Bradley Hand", cursive;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
}

.workbook-section {
  background: var(--blush);
  padding: clamp(90px, 11vw, 155px) clamp(28px, 6.5vw, 110px);
}

.workbook-heading {
  align-items: end;
  display: grid;
  gap: 58px;
  grid-template-columns: 1.25fr 0.75fr;
}

.workbook-heading p {
  border-top: 1px solid rgb(44 42 38 / 25%);
  color: #665b56;
  line-height: 1.8;
  margin: 0;
  padding-top: 24px;
}

/* Sienna page */

.sienna-page {
  background: #fffbef;
}

.sienna-page .eyebrow {
  color: var(--coral-dark);
}

.sienna-hero {
  align-items: center;
  background:
    radial-gradient(circle at 90% 2%, rgb(246 189 54 / 23%), transparent 33rem),
    radial-gradient(circle at 10% 100%, rgb(220 239 245 / 70%), transparent 28rem),
    #fffbef;
  display: grid;
  gap: clamp(46px, 7vw, 105px);
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  padding: clamp(60px, 8vw, 120px) clamp(24px, 7vw, 116px);
}

.sienna-hero-copy {
  max-width: 720px;
}

.sienna-hero h1 {
  font-size: clamp(4rem, 7.3vw, 7.5rem);
  line-height: 0.9;
  margin: 0;
}

.sienna-lead {
  color: #514a40;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  line-height: 1.45;
  margin: 32px 0 0;
}

.sienna-hero-copy > p:not(.eyebrow):not(.sienna-lead) {
  color: var(--muted);
  margin: 24px 0 32px;
  max-width: 640px;
}

.sienna-hero-image {
  background: #fff;
  border: 10px solid #fff;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgb(112 82 30 / 18%);
  margin-left: auto;
  max-width: 560px;
  overflow: hidden;
  transform: rotate(1.2deg);
}

.choice-intro {
  margin: 0 auto;
  max-width: 850px;
  padding: clamp(88px, 10vw, 140px) 24px clamp(44px, 6vw, 74px);
  text-align: center;
}

.choice-intro h2 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.04;
  margin: 0;
}

.choice-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
  margin: 25px auto 0;
  max-width: 670px;
}

.product-grid {
  display: grid;
  gap: clamp(24px, 4vw, 50px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1250px;
  padding: 0 clamp(18px, 4vw, 52px) clamp(100px, 12vw, 170px);
}

.product-card {
  border: 1px solid;
  border-radius: 24px;
  box-shadow: var(--shadow);
  min-width: 0;
  overflow: hidden;
}

.product-card--free {
  background: #f2f9f4;
  border-color: #bfd8ba;
}

.product-card--paid {
  background: #fff6ea;
  border-color: #edcf9b;
}

.product-image-link {
  display: block;
  overflow: hidden;
}

.product-image-link img {
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 350ms ease;
  width: 100%;
}

.product-image-link:hover img {
  transform: scale(1.012);
}

.product-copy {
  padding: clamp(30px, 4.2vw, 50px);
}

.choice-kicker {
  margin-bottom: 10px;
}

.product-card--free .choice-kicker {
  color: var(--green-dark);
}

.product-card--paid .choice-kicker {
  color: var(--coral-dark);
}

.product-copy h2 {
  font-size: clamp(2.2rem, 3.7vw, 3.65rem);
  line-height: 1.05;
  margin: 0 0 28px;
}

.product-copy p {
  color: #5d574f;
  line-height: 1.78;
  margin: 0 0 20px;
}

.product-copy strong {
  color: var(--ink);
}

.product-copy .button {
  margin-top: 10px;
}

.sienna-connect {
  align-items: end;
  background: var(--sky);
  display: grid;
  gap: 50px;
  grid-template-columns: 1.2fr 0.8fr;
  padding: clamp(76px, 9vw, 125px) clamp(24px, 7vw, 116px);
}

.sienna-connect h2 {
  font-size: clamp(2.5rem, 4.8vw, 4.8rem);
  line-height: 1;
  margin: 0;
}

.sienna-connect p:not(.eyebrow) {
  color: #56666b;
  margin: 24px 0 0;
}

.social-links {
  border-top: 1px solid rgb(48 45 40 / 22%);
  display: grid;
}

.social-links a {
  align-items: center;
  border-bottom: 1px solid rgb(48 45 40 / 22%);
  display: flex;
  font-weight: 650;
  justify-content: space-between;
  min-height: 52px;
}

.social-links a:hover {
  color: var(--coral-dark);
}

/* Footer */

.site-footer {
  align-items: start;
  background: #eee5d9;
  display: grid;
  gap: 28px 50px;
  grid-template-columns: 1fr 1fr;
  padding: 64px clamp(24px, 6.5vw, 110px) 34px;
}

.site-footer--dark {
  background: var(--ink);
  color: var(--ivory);
}

.site-footer--sunny {
  background: #f7d56f;
}

.footer-brand {
  align-self: start;
}

.site-footer > a:not(.brand) {
  justify-self: end;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  grid-column: 1 / -1;
}

.site-footer small {
  border-top: 1px solid rgb(48 45 40 / 18%);
  color: var(--muted);
  grid-column: 1 / -1;
  padding-top: 22px;
}

.site-footer--dark small {
  border-top-color: rgb(248 243 234 / 18%);
  color: #aaa198;
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu summary {
    cursor: pointer;
    display: grid;
    gap: 7px;
    list-style: none;
    min-height: 48px;
    padding: 14px 0 14px 14px;
    width: 48px;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    background: var(--ink);
    display: block;
    height: 2px;
    transition: transform 180ms ease;
    width: 24px;
  }

  .mobile-menu[open] summary span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .mobile-menu[open] summary span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-menu nav {
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 20px 45px rgb(48 45 40 / 14%);
    display: grid;
    min-width: min(275px, calc(100vw - 34px));
    padding: 12px;
    position: absolute;
    right: 0;
    top: 52px;
  }

  .mobile-menu nav a {
    border-bottom: 1px solid var(--line);
    min-height: 48px;
    padding: 12px;
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
  }

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

  .elena-hero-copy {
    padding-bottom: 68px;
  }

  .elena-hero-art {
    min-height: 58vw;
  }

  .elena-section {
    grid-template-columns: 1fr 2fr;
  }

  .book-quote {
    grid-column: 2;
    margin-top: 20px;
  }
}

@media (max-width: 860px) {
  .simple-nav a:first-child {
    display: none;
  }

  .creator-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .creator-grid {
    max-width: 680px;
  }

  .product-grid {
    max-width: 680px;
  }

  .sienna-hero {
    gap: 52px;
    grid-template-columns: 1fr;
  }

  .sienna-hero-image {
    margin: 0 auto;
    max-width: 520px;
    transform: none;
  }

  .sienna-connect {
    align-items: start;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    min-height: 70px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand {
    font-size: 1.05rem;
    letter-spacing: 0.17em;
  }

  .simple-nav {
    gap: 0;
  }

  .simple-nav .home-link {
    border: 0;
    padding: 10px 0 10px 12px;
  }

  .home-intro {
    padding-top: 58px;
  }

  .home-intro h1 {
    font-size: clamp(3.5rem, 18vw, 5rem);
  }

  .home-tagline {
    font-size: 1.25rem;
  }

  .creator-grid {
    padding-bottom: 86px;
  }

  .creator-image {
    aspect-ratio: 16 / 9;
  }

  .creator-copy {
    padding: 28px 24px 30px;
  }

  .creator-copy h2 {
    font-size: 2.7rem;
  }

  .elena-hero-copy {
    padding: 62px 24px 52px;
  }

  .elena-hero h1,
  .sienna-hero h1 {
    font-size: clamp(3.45rem, 17vw, 5rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
  }

  .elena-hero-art {
    min-height: 75vw;
  }

  .elena-section,
  .about-section {
    gap: 40px;
    grid-template-columns: 1fr;
    padding: 86px 24px;
  }

  .section-label {
    display: none;
  }

  .book-quote {
    grid-column: auto;
  }

  .gift-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .gift-card {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-note {
    order: 2;
  }

  .workbook-heading {
    align-items: start;
    gap: 35px;
    grid-template-columns: 1fr;
  }

  .sienna-hero {
    padding: 62px 20px 80px;
  }

  .sienna-lead {
    font-size: 1.3rem;
  }

  .sienna-hero-image {
    border-width: 7px;
    border-radius: 18px;
  }

  .choice-intro {
    padding: 84px 22px 42px;
  }

  .product-grid {
    gap: 34px;
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 96px;
  }

  .product-card {
    border-radius: 18px;
  }

  .product-copy {
    padding: 30px 23px 34px;
  }

  .product-copy h2 {
    font-size: 2.55rem;
  }

  .product-copy .button {
    width: 100%;
  }

  .sienna-connect {
    padding: 76px 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 56px 24px 30px;
  }

  .site-footer > a:not(.brand) {
    justify-self: start;
  }

  .footer-nav,
  .site-footer small {
    grid-column: 1;
  }

  .footer-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .footer-nav a {
    align-items: center;
    display: flex;
    min-height: 44px;
  }
}

@media (max-width: 370px) {
  .brand {
    font-size: 0.94rem;
    letter-spacing: 0.13em;
  }

  .header-contact,
  .simple-nav {
    font-size: 0.82rem;
  }

  .elena-hero h1,
  .sienna-hero h1,
  .home-intro h1 {
    overflow-wrap: anywhere;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
