/* ==========================================================
   TEMPLE OF EMBERS — HOMEPAGE DESIGN SYSTEM
   ========================================================== */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@400;500;600&display=swap");


/* ---------- Brand Variables ---------- */

:root {
  /* Color palette */
  --toe-charcoal: #171714;
  --toe-ink: #24231f;
  --toe-parchment: #f3eee4;
  --toe-ivory: #faf7f0;
  --toe-stone: #c8c0b2;
  --toe-brass: #9a7745;
  --toe-ember: #a95332;
  --toe-border: rgba(36, 35, 31, 0.18);

  /* Typography */
  --toe-font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --toe-font-body: "Inter", Arial, Helvetica, sans-serif;

  /* Layout */
  --toe-container: 1280px;
  --toe-reading-width: 760px;

  /* Spacing */
  --toe-space-xs: 0.5rem;
  --toe-space-sm: 1rem;
  --toe-space-md: 2rem;
  --toe-space-lg: 4rem;
  --toe-space-xl: 7rem;
  --toe-space-xxl: 10rem;

  /* Motion */
  --toe-transition: 220ms ease;
}


/* ---------- Reset ---------- */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--toe-ivory);
  color: var(--toe-ink);
  font-family: var(--toe-font-body);
  font-size: 17px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea,
select {
  font: inherit;
}


/* ---------- Typography ---------- */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 var(--toe-space-sm);
  color: var(--toe-charcoal);
  font-family: var(--toe-font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3.5rem, 8vw, 7.5rem);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
}

h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

h4 {
  font-size: 1.5rem;
}

p {
  margin: 0 0 1.5rem;
}

strong {
  font-weight: 600;
}

blockquote {
  max-width: 900px;
  margin: var(--toe-space-lg) auto;
  padding: var(--toe-space-md) 0;
  border-top: 1px solid var(--toe-brass);
  border-bottom: 1px solid var(--toe-brass);
  color: var(--toe-charcoal);
  font-family: var(--toe-font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.25;
  text-align: center;
}

.toe-eyebrow {
  margin-bottom: var(--toe-space-sm);
  color: var(--toe-brass);
  font-family: var(--toe-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.toe-intro {
  max-width: 850px;
  font-family: var(--toe-font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1.45;
}


/* ---------- Links ---------- */

a {
  color: inherit;
  text-decoration-color: var(--toe-brass);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
  transition:
    color var(--toe-transition),
    opacity var(--toe-transition),
    background-color var(--toe-transition),
    border-color var(--toe-transition),
    transform var(--toe-transition);
}

a:hover,
a:focus-visible {
  color: var(--toe-brass);
}


/* ---------- Layout ---------- */

.toe-container {
  width: min(calc(100% - 3rem), var(--toe-container));
  margin-inline: auto;
}

.toe-reading-width {
  width: min(calc(100% - 3rem), var(--toe-reading-width));
  margin-inline: auto;
}

.toe-section {
  padding-block: var(--toe-space-xl);
}

.toe-section--large {
  padding-block: var(--toe-space-xxl);
}

.toe-section--dark {
  background: var(--toe-charcoal);
  color: var(--toe-parchment);
}

.toe-section--dark h1,
.toe-section--dark h2,
.toe-section--dark h3,
.toe-section--dark h4 {
  color: var(--toe-parchment);
}

.toe-divider {
  width: 100%;
  height: 1px;
  margin-block: var(--toe-space-lg);
  background: var(--toe-border);
}


/* ---------- Buttons ---------- */

.toe-button,
.hs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.6rem;
  border: 1px solid var(--toe-charcoal);
  border-radius: 0;
  background: transparent;
  color: var(--toe-charcoal);
  font-family: var(--toe-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.toe-button:hover,
.toe-button:focus-visible,
.hs-button:hover,
.hs-button:focus-visible {
  border-color: var(--toe-charcoal);
  background: var(--toe-charcoal);
  color: var(--toe-ivory);
}

.toe-button--light {
  border-color: var(--toe-parchment);
  color: var(--toe-parchment);
}

.toe-button--light:hover,
.toe-button--light:focus-visible {
  background: var(--toe-parchment);
  color: var(--toe-charcoal);
}


/* ---------- Header ---------- */

.toe-site-header {
  position: relative;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid var(--toe-border);
  background: rgba(250, 247, 240, 0.96);
}

.toe-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 3rem), var(--toe-container));
  min-height: 94px;
  margin-inline: auto;
  gap: 2rem;
}

.toe-wordmark {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.toe-wordmark img {
  display: block;
  height: 110px;
  width: auto;
}


/*
  These logo rules are ready for the standalone logo image.
  Once its HubSpot URL is available, the HTML wordmark can be
  replaced with an image using the class toe-logo.
*/

.toe-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: inherit;
  text-decoration: none;
}

.toe-logo img {
  display: block;
  width: auto;
  height: 72px;
  object-fit: contain;
}

.toe-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 2vw, 2rem);
}

.toe-nav a {
  color: var(--toe-charcoal);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
}

.toe-nav a:hover,
.toe-nav a:focus-visible {
  color: var(--toe-brass);
}


/* ---------- Hero ---------- */

.toe-hero {
  display: grid;
  min-height: 78vh;
  place-items: center;
  padding-block: var(--toe-space-xl);
  background-color: var(--toe-charcoal);
  color: var(--toe-parchment);
  text-align: center;
}

.toe-hero__content {
  width: min(calc(100% - 3rem), 1100px);
  margin-inline: auto;
}

.toe-hero h1 {
  max-width: 1100px;
  margin-inline: auto;
  font-size: clamp(3rem, 5vw, 4.75rem);
  color: var(--toe-parchment);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.toe-hero .toe-eyebrow {
  color: var(--toe-parchment);
}

.toe-hero__text {
  max-width: 680px;
  margin: var(--toe-space-md) auto 0;
  color: var(--toe-stone);
  font-family: var(--toe-font-display);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.5;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}


/* ---------- Four Doorways ---------- */

.toe-doorway-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: var(--toe-space-lg);
  border: 1px solid var(--toe-border);
  background: var(--toe-border);
}

.toe-doorway-card {
  position: relative;
  display: block;
  min-height: 600px;
  overflow: hidden;
  background: var(--toe-charcoal);
  color: var(--toe-parchment);
  text-decoration: none;
}

.toe-doorway-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 9, 0.08) 15%,
      rgba(10, 10, 9, 0.34) 58%,
      rgba(10, 10, 9, 0.86) 100%
    );
  transition: background var(--toe-transition);
}

.toe-doorway-card img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
}

.toe-doorway-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: clamp(1.75rem, 4vw, 3.5rem);
}

.toe-doorway-number {
  display: block;
  margin-bottom: var(--toe-space-sm);
  color: var(--toe-stone);
  font-family: var(--toe-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.toe-doorway-card h3 {
  max-width: 520px;
  margin: 0;
  color: var(--toe-parchment);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.toe-doorway-card:hover,
.toe-doorway-card:focus-visible {
  color: var(--toe-parchment);
}

.toe-doorway-card:hover img,
.toe-doorway-card:focus-visible img {
  transform: scale(1.035);
}

.toe-doorway-card:hover::after,
.toe-doorway-card:focus-visible::after {
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 9, 0.03) 10%,
      rgba(10, 10, 9, 0.28) 55%,
      rgba(10, 10, 9, 0.8) 100%
    );
}


/* ---------- Stars Interlude ---------- */

.toe-stars-interlude {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  background: #050607;
  color: var(--toe-parchment);
}

.toe-stars-interlude__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.toe-stars-interlude::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.18),
      rgba(0, 0, 0, 0.46)
    );
}

.toe-stars-interlude__overlay {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 72vh;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: min(calc(100% - 3rem), 1000px);
  margin-inline: auto;
  padding-block: var(--toe-space-xl);
  text-align: center;
}

.toe-stars-interlude .toe-eyebrow {
  color: var(--toe-parchment);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.toe-stars-interlude h2 {
  max-width: 900px;
  margin: 0;
  color: var(--toe-parchment);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.85);
}


/* ---------- Legacy Cards ---------- */

.toe-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--toe-border);
  background: var(--toe-border);
}

.toe-card {
  min-height: 360px;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--toe-ivory);
  color: var(--toe-charcoal);
  text-decoration: none;
}

.toe-card:hover,
.toe-card:focus-visible {
  background: var(--toe-charcoal);
  color: var(--toe-parchment);
}

.toe-card:hover h3,
.toe-card:focus-visible h3 {
  color: var(--toe-parchment);
}

.toe-card__number {
  display: block;
  margin-bottom: var(--toe-space-lg);
  color: var(--toe-brass);
  font-family: var(--toe-font-display);
  font-size: 1rem;
}


/* ---------- Forms ---------- */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 1rem 0;
  border: 0;
  border-bottom: 1px solid var(--toe-border);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--toe-ink);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--toe-brass);
}

label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--toe-charcoal);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* ---------- Footer ---------- */

.toe-site-footer {
  padding-block: var(--toe-space-lg);
  border-top: 1px solid rgba(243, 238, 228, 0.18);
  background: var(--toe-charcoal);
  color: var(--toe-stone);
}

.toe-site-footer__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: min(calc(100% - 3rem), var(--toe-container));
  margin-inline: auto;
  gap: 3rem;
}

.toe-site-footer__inner p {
  margin-bottom: 0;
}

.toe-site-footer__title {
  color: var(--toe-parchment);
  font-family: var(--toe-font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}


/* ---------- Accessibility ---------- */

:focus-visible {
  outline: 2px solid var(--toe-brass);
  outline-offset: 4px;
}

::selection {
  background: var(--toe-brass);
  color: var(--toe-ivory);
}


/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .toe-site-header__inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 1.5rem;
  }

  .toe-nav {
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  :root {
    --toe-space-xl: 5rem;
    --toe-space-xxl: 7rem;
  }

  body {
    font-size: 16px;
  }

  .toe-container,
  .toe-reading-width,
  .toe-site-header__inner,
  .toe-site-footer__inner {
    width: min(calc(100% - 2rem), var(--toe-container));
  }

  .toe-site-header__inner {
    min-height: auto;
  }

  .toe-wordmark {
    font-size: 1.35rem;
  }

  .toe-logo img {
    height: 58px;
  }

  .toe-nav {
    gap: 0.75rem 1.25rem;
  }

  .toe-nav a {
    font-size: 0.66rem;
  }

  .toe-hero {
    min-height: 72vh;
  }

  .toe-hero__content {
    width: min(calc(100% - 2rem), 1100px);
  }

  .toe-doorway-grid,
  .toe-grid {
    grid-template-columns: 1fr;
  }

  .toe-doorway-card,
  .toe-doorway-card img {
    min-height: 460px;
  }

  .toe-stars-interlude,
  .toe-stars-interlude__overlay {
    min-height: 62vh;
  }

  .toe-stars-interlude__overlay {
    width: min(calc(100% - 2rem), 1000px);
  }

  .toe-site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .toe-doorway-card,
  .toe-doorway-card img {
    min-height: 400px;
  }

  .toe-doorway-content {
    padding: 1.5rem;
  }
}
.toe-library-gallery {
  margin-top: 4rem;
}

.toe-library-gallery img {
  display: block;
  width: 100%;
  height: auto;
}.toe-doorway-card:nth-child(2) .toe-doorway-content {
    padding-bottom: calc(clamp(1.75rem, 4vw, 3.5rem) + 3.5rem);
}


}
/* =========================================================
 ABOUT PAGE
 ========================================================= */
.toe-about-page {
 background: #f4f0e8;
 color: #211f1c;
 }
.toe-about-page p {
 margin-top: 0;
 }
.toe-about-hero {
 display: grid;
 grid-template-columns: 46% 54%;
 min-height: 690px;
 background: #f4f0e8;
 border-bottom: 1px solid rgba(166, 122, 67, 0.45);
 }
.toe-about-hero__image {
 min-height: 690px;
 overflow: hidden;
 }
.toe-about-hero__image img {
 display: block;
 width: 100%;
 height: 100%;
 min-height: 690px;
 object-fit: cover;
 object-position: center center;
 }
.toe-about-hero__content {
 display: flex;
 flex-direction: column;
 justify-content: center;
 padding: clamp(4rem, 7vw, 7rem);
 padding-left: clamp(3rem, 6vw, 6.5rem);
 padding-right: clamp(3rem, 7vw, 8rem);
 }
.toe-about-eyebrow {
 margin-bottom: 1.25rem;
 color: #a67843;
 font-size: 0.78rem;
 font-weight: 500;
 letter-spacing: 0.22em;
 line-height: 1.2;
 text-transform: uppercase;
 }
.toe-about-hero h1 {
 margin: 0;
 max-width: 760px;
 color: #211f1c;
 font-family: Georgia, “Times New Roman”, serif;
 font-size: clamp(2.9rem, 5vw, 5.6rem);
 font-weight: 400;
 letter-spacing: -0.035em;
 line-height: 0.98;
 }
.toe-about-subtitle {
 margin: 1.3rem 0 0;
 color: #3b3732;
 font-family: Georgia, “Times New Roman”, serif;
 font-size: clamp(1.05rem, 1.5vw, 1.35rem);
 font-style: italic;
 line-height: 1.5;
 }
.toe-about-rule {
 width: 54px;
 height: 1px;
 margin: 1.5rem 0 1.8rem;
 background: #a67843;
 }
.toe-about-hero__content > p:not(.toe-about-eyebrow):not(.toe-about-subtitle):not(.toe-about-emphasis) {
 max-width: 650px;
 margin-bottom: 0.75rem;
 color: #2b2824;
 font-size: clamp(1rem, 1.15vw, 1.16rem);
 line-height: 1.55;
 }
.toe-about-emphasis {
 margin: 0.75rem 0 0;
 color: #2b2824;
 font-family: Georgia, “Times New Roman”, serif;
 font-size: clamp(1.05rem, 1.4vw, 1.3rem);
 font-style: italic;
 line-height: 1.5;
 }
/* PHILOSOPHY */
.toe-about-philosophy {
 padding: clamp(5rem, 9vw, 9rem) clamp(2rem, 7vw, 8rem);
 background: #f4f0e8;
 }
.toe-about-philosophy__inner {
 display: grid;
 grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.5fr);
 gap: clamp(3rem, 7vw, 8rem);
 width: min(1180px, 100%);
 margin: 0 auto;
 }
.toe-about-philosophy__quote {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-right: clamp(3rem, 5vw, 5rem);
 border-right: 1px solid rgba(166, 122, 67, 0.55);
 }
.toe-about-philosophy__quote p {
 margin: clamp(2rem, 5vw, 5rem) 0 0;
 color: #a67843;
 font-family: Georgia, “Times New Roman”, serif;
 font-size: clamp(2.2rem, 4vw, 4.6rem);
 font-style: italic;
 font-weight: 400;
 letter-spacing: -0.025em;
 line-height: 1.08;
 }
.toe-about-philosophy__copy {
 max-width: 760px;
 }
.toe-about-philosophy__copy p {
 margin-bottom: 1rem;
 color: #292621;
 font-size: clamp(1rem, 1.18vw, 1.16rem);
 line-height: 1.62;
 }
.toe-about-philosophy__copy p:first-child {
 margin-top: 0;
 }
.toe-about-philosophy__emphasis {
 color: #211f1c;
 font-family: Georgia, “Times New Roman”, serif;
 font-size: clamp(1.15rem, 1.5vw, 1.4rem) !important;
 font-weight: 700;
 }
/* FOUR DOORWAYS */
.toe-about-doorways {
 padding: 0 clamp(2rem, 7vw, 8rem) clamp(5rem, 9vw, 9rem);
 background: #f4f0e8;
 }
.toe-about-doorways__inner {
 width: min(1180px, 100%);
 margin: 0 auto;
 padding-top: clamp(2.5rem, 5vw, 4.5rem);
 border-top: 1px solid rgba(166, 122, 67, 0.45);
 }
.toe-about-doorways__heading {
 text-align: center;
 }
.toe-about-doorways__heading span {
 display: block;
 margin-bottom: 0.65rem;
 color: #a67843;
 font-size: 1rem;
 }
.toe-about-doorways__heading h2 {
 margin: 0;
 color: #211f1c;
 font-family: Georgia, “Times New Roman”, serif;
 font-size: clamp(1.8rem, 3vw, 3rem);
 font-weight: 400;
 letter-spacing: 0.16em;
 line-height: 1.2;
 text-transform: uppercase;
 }
.toe-about-doorways__heading p {
 margin: 0.75rem 0 0;
 color: #4b453e;
 font-family: Georgia, “Times New Roman”, serif;
 font-size: 1rem;
 font-style: italic;
 }
.toe-about-doorways__grid {
 display: grid;
 grid-template-columns: repeat(4, minmax(0, 1fr));
 margin-top: clamp(2.5rem, 5vw, 4.5rem);
 }
.toe-about-doorway {
 display: block;
 min-height: 265px;
 padding: 0 clamp(1.25rem, 2.4vw, 2.25rem);
 color: #211f1c;
 text-align: center;
 text-decoration: none;
 border-right: 1px solid rgba(166, 122, 67, 0.4);
 }
.toe-about-doorway:first-child {
 padding-left: 0;
 }
.toe-about-doorway:last-child {
 padding-right: 0;
 border-right: 0;
 }
.toe-about-doorway__symbol {
 display: block;
 min-height: 34px;
 margin-bottom: 0.9rem;
 color: #a67843;
 font-family: Georgia, “Times New Roman”, serif;
 font-size: 1.65rem;
 line-height: 1;
 }
.toe-about-doorway h3 {
 margin: 0 0 1.25rem;
 color: #211f1c;
 font-family: Georgia, “Times New Roman”, serif;
 font-size: clamp(1rem, 1.35vw, 1.25rem);
 font-weight: 400;
 letter-spacing: 0.11em;
 line-height: 1.35;
 text-transform: uppercase;
 }
.toe-about-doorway p {
 margin: 0 auto;
 max-width: 235px;
 color: #39342f;
 font-size: 0.95rem;
 line-height: 1.6;
 }
.toe-about-doorway:hover h3 {
 color: #a67843;
 }
/* CLOSING */
.toe-about-closing {
 padding: 0 clamp(2rem, 7vw, 8rem) clamp(6rem, 10vw, 10rem);
 background: #f4f0e8;
 }
.toe-about-closing__inner {
 width: min(850px, 100%);
 margin: 0 auto;
 text-align: center;
 }
.toe-about-closing__inner > p {
 margin: 0 0 0.45rem;
 color: #292621;
 font-size: clamp(1rem, 1.25vw, 1.15rem);
 line-height: 1.65;
 }
.toe-about-closing__welcome {
 margin-top: 1.65rem;
 }
.toe-about-closing__welcome p {
 margin: 0.1rem 0;
 color: #a67843;
 font-family: Georgia, “Times New Roman”, serif;
 font-size: clamp(1.05rem, 1.45vw, 1.3rem);
 font-style: italic;
 line-height: 1.45;
 }
.toe-about-signature {
 margin-top: 1.35rem !important;
 color: #211f1c !important;
 font-family: Georgia, “Times New Roman”, serif;
 font-style: italic;
 }
/* TABLET */
@media (max-width: 960px) {
.toe-about-hero {
 grid-template-columns: 1fr;
 }
.toe-about-hero__image,
 .toe-about-hero__image img {
 min-height: 620px;
 }
.toe-about-hero__content {
 padding: 4.5rem 2rem 5rem;
 }
.toe-about-philosophy__inner {
 grid-template-columns: 1fr;
 gap: 3rem;
 }
.toe-about-philosophy__quote {
 padding: 0 0 2.5rem;
 border-right: 0;
 border-bottom: 1px solid rgba(166, 122, 67, 0.55);
 }
.toe-about-philosophy__quote p {
 margin: 0;
 }
.toe-about-doorways__grid {
 grid-template-columns: repeat(2, minmax(0, 1fr));
 row-gap: 3rem;
 }
.toe-about-doorway:nth-child(2) {
 border-right: 0;
 }
.toe-about-doorway:nth-child(3),
 .toe-about-doorway:nth-child(4) {
 padding-top: 2.5rem;
 border-top: 1px solid rgba(166, 122, 67, 0.4);
 }
 }
/* MOBILE */
@media (max-width: 640px) {
.toe-about-hero__image,
 .toe-about-hero__image img {
 min-height: 500px;
 }
.toe-about-hero__image img {
 object-position: center center;
 }
.toe-about-hero__content {
 padding: 3.5rem 1.35rem 4rem;
 }
.toe-about-hero h1 {
 font-size: clamp(2.5rem, 13vw, 4rem);
 }
.toe-about-philosophy {
 padding: 4rem 1.35rem;
 }
.toe-about-philosophy__quote p {
 font-size: clamp(2.25rem, 11vw, 3.4rem);
 }
.toe-about-doorways {
 padding: 0 1.35rem 4rem;
 }
.toe-about-doorways__heading h2 {
 font-size: 1.65rem;
 letter-spacing: 0.12em;
 }
.toe-about-doorways__grid {
 grid-template-columns: 1fr;
 margin-top: 2.5rem;
 }
.toe-about-doorway,
 .toe-about-doorway:first-child,
 .toe-about-doorway:last-child {
 min-height: auto;
 padding: 2.25rem 0;
 border-right: 0;
 border-top: 1px solid rgba(166, 122, 67, 0.4);
 }
.toe-about-doorway:first-child {
 padding-top: 0;
 border-top: 0;
 }
.toe-about-doorway p {
 max-width: 310px;
 }
.toe-about-closing {
 padding: 0 1.35rem 5rem;
 }
 }
@media (min-width: 961px) {
  .toe-about-hero h1 {
    max-width: none;
    font-size: clamp(2.5rem, 3.6vw, 4rem);
    white-space: nowrap;
  }
}
/* =========================================================
   HOMEPAGE — TEMPLE PHILOSOPHY
   ========================================================= */

.toe-philosophy {
  padding: clamp(5rem, 8vw, 8rem) 0;
  background: var(--toe-parchment);
  border-bottom: 1px solid var(--toe-border);
}

.toe-philosophy__intro {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.toe-philosophy__intro .toe-eyebrow {
  margin-bottom: 1.5rem;
}

.toe-philosophy__intro h2 {
  margin: 0 auto;
  max-width: 900px;
  font-size: clamp(2.5rem, 4.6vw, 4.8rem);
  line-height: 1.04;
}

.toe-philosophy__lead {
  max-width: 760px;
  margin: 2rem auto 0;
  color: #3d3933;
  font-family: var(--toe-font-display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.55;
}

.toe-philosophy__stages {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  margin-top: clamp(4rem, 7vw, 6.5rem);
  border-top: 1px solid rgba(154, 119, 69, 0.45);
  border-bottom: 1px solid rgba(154, 119, 69, 0.45);
}

.toe-philosophy__stage {
  min-height: 250px;
  padding: clamp(1.75rem, 3vw, 2.75rem);
  border-right: 1px solid rgba(154, 119, 69, 0.35);
}

.toe-philosophy__stage:last-child {
  border-right: 0;
}

.toe-philosophy__stage span {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--toe-brass);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.toe-philosophy__stage h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
}

.toe-philosophy__stage p {
  margin: 0;
  color: #49443d;
  font-size: 0.94rem;
  line-height: 1.65;
}


/* ---------- Philosophy Responsive ---------- */

@media (max-width: 1050px) {
  .toe-philosophy__stages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .toe-philosophy__stage {
    border-bottom: 1px solid rgba(154, 119, 69, 0.35);
  }

  .toe-philosophy__stage:nth-child(2n) {
    border-right: 0;
  }

  .toe-philosophy__stage:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .toe-philosophy {
    padding: 4.5rem 0;
  }

  .toe-philosophy__intro {
    text-align: left;
  }

  .toe-philosophy__intro h2 br {
    display: none;
  }

  .toe-philosophy__lead {
    margin-top: 1.5rem;
  }

  .toe-philosophy__stages {
    grid-template-columns: 1fr;
    margin-top: 3.5rem;
  }

  .toe-philosophy__stage,
  .toe-philosophy__stage:nth-child(2n),
  .toe-philosophy__stage:last-child {
    grid-column: auto;
    min-height: auto;
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(154, 119, 69, 0.35);
  }

  .toe-philosophy__stage:last-child {
    border-bottom: 0;
  }
}
/* =========================================================
   HOMEPAGE — DOORWAY TYPOGRAPHY
   ========================================================= */

.toe-doorway-journey {
  margin: 0.65rem 0 1.35rem;
  color: var(--toe-stone);
  font-family: var(--toe-font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.toe-doorway-thesis {
  max-width: 520px;
  margin: 0 0 1.15rem;
  color: var(--toe-parchment);
  font-family: var(--toe-font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-style: italic;
  line-height: 1.3;
}

.toe-doorway-description {
  max-width: 560px;
  margin: 0;
  color: rgba(243, 238, 228, 0.82);
  font-family: var(--toe-font-body);
  font-size: 0.88rem;
  line-height: 1.65;
}
/* =========================================================
   LETTERS FROM THE EMBERS PAGE
   ========================================================= */

.toe-embers-page {
  background: var(--toe-ivory);
  color: var(--toe-ink);
}


/* ---------- Active Nav ---------- */

.toe-nav__active {
  color: var(--toe-brass) !important;
}


/* ---------- Hero ---------- */

.toe-embers-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--toe-charcoal);
  color: var(--toe-parchment);
}

.toe-embers-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.toe-embers-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(10, 10, 9, 0.76) 0%,
      rgba(10, 10, 9, 0.55) 34%,
      rgba(10, 10, 9, 0.18) 68%,
      rgba(10, 10, 9, 0.08) 100%
    );
}

.toe-embers-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(calc(100% - 3rem), var(--toe-container));
  min-height: 760px;
  margin-inline: auto;
  padding-block: 5rem;
}

.toe-embers-eyebrow {
  margin-bottom: 1.4rem;
  color: var(--toe-parchment);
  font-family: var(--toe-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.toe-embers-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--toe-parchment);
  font-size: clamp(3.4rem, 6vw, 6.2rem);
  line-height: 0.98;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.38);
}

.toe-embers-hero__rule {
  width: 340px;
  height: 1px;
  margin: 2rem 0 1.6rem;
  background: rgba(243, 238, 228, 0.6);
}

.toe-embers-hero__description {
  max-width: 540px;
  margin: 0;
  color: var(--toe-parchment);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.7;
  text-transform: uppercase;
}


/* ---------- Journal Introduction ---------- */

.toe-embers-intro {
  padding: clamp(4.5rem, 7vw, 7rem) 0 2rem;
  background: var(--toe-ivory);
}

.toe-embers-intro__inner {
  display: grid;
  grid-template-columns: 120px minmax(0, 760px);
  gap: 3rem;
  width: min(calc(100% - 3rem), 980px);
  margin-inline: auto;
}

.toe-embers-intro__mark {
  padding-top: 0.25rem;
  color: var(--toe-brass);
  font-family: var(--toe-font-display);
  font-size: 2.2rem;
  line-height: 1;
  text-align: center;
}

.toe-embers-intro__copy p {
  margin-bottom: 1rem;
  color: #2e2b26;
  font-size: 1rem;
  line-height: 1.7;
}

.toe-embers-intro__closing {
  color: #4a443d !important;
  font-family: var(--toe-font-display);
  font-size: 1.15rem !important;
  font-style: italic;
}


/* ---------- Journal Launch State ---------- */

.toe-embers-journal {
  padding: 3rem 0 clamp(6rem, 9vw, 9rem);
  background: var(--toe-ivory);
}

.toe-embers-journal__heading {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid rgba(154, 119, 69, 0.35);
  border-bottom: 1px solid rgba(154, 119, 69, 0.35);
  text-align: center;
}

.toe-embers-journal__heading h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.toe-embers-journal__heading p:last-child {
  max-width: 620px;
  margin: 0 auto;
  color: #514b43;
  font-family: var(--toe-font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.55;
}


/* ---------- Newsletter ---------- */

.toe-embers-newsletter {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-top: 1px solid rgba(154, 119, 69, 0.25);
  background: var(--toe-parchment);
}

.toe-embers-newsletter__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.toe-embers-newsletter__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 3rem), 760px);
  margin-inline: auto;
  padding: clamp(4rem, 7vw, 6rem) 0;
  text-align: center;
}

.toe-embers-newsletter__mark {
  margin-bottom: 0.75rem;
  color: var(--toe-brass);
  font-family: var(--toe-font-display);
  font-size: 1.8rem;
  line-height: 1;
}

.toe-embers-newsletter h2 {
  margin-bottom: 0.25rem;
  font-size: clamp(2.5rem, 4.5vw, 4.4rem);
}

.toe-embers-newsletter__subtitle {
  margin-bottom: 2rem;
  color: #3a352f;
  font-family: var(--toe-font-display);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-style: italic;
  line-height: 1.4;
}

.toe-embers-newsletter__form {
  display: grid;
  grid-template-columns: 1fr 190px;
  width: min(100%, 620px);
  margin: 0 auto;
}

.toe-embers-newsletter__form input[type="email"] {
  min-height: 54px;
  padding: 0 1.2rem;
  border: 1px solid rgba(36, 35, 31, 0.35);
  border-right: 0;
  background: rgba(250, 247, 240, 0.88);
}

.toe-embers-newsletter__form button {
  min-height: 54px;
  border: 1px solid var(--toe-brass);
  background: var(--toe-brass);
  color: var(--toe-ivory);
  font-family: var(--toe-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.toe-embers-newsletter__note {
  margin: 0.75rem 0 0;
  color: #5a534a;
  font-size: 0.7rem;
}


/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .toe-embers-hero,
  .toe-embers-hero__inner {
    min-height: 680px;
  }

  .toe-embers-intro__inner {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .toe-embers-hero,
  .toe-embers-hero__inner {
    min-height: 620px;
  }

  .toe-embers-hero__inner {
    width: min(calc(100% - 2rem), var(--toe-container));
    padding-block: 4rem;
  }

  .toe-embers-hero__image {
    object-position: center center;
  }

  .toe-embers-hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(10, 10, 9, 0.82) 0%,
        rgba(10, 10, 9, 0.62) 60%,
        rgba(10, 10, 9, 0.28) 100%
      );
  }

  .toe-embers-hero h1 br {
    display: none;
  }

  .toe-embers-hero__rule {
    width: 220px;
  }

  .toe-embers-intro {
    padding-top: 4rem;
  }

  .toe-embers-intro__inner {
    grid-template-columns: 1fr;
    width: min(calc(100% - 2rem), 760px);
    gap: 1rem;
  }

  .toe-embers-intro__mark {
    text-align: left;
  }

  .toe-embers-journal__heading {
    padding: 3rem 0;
  }

  .toe-embers-newsletter__inner {
    width: min(calc(100% - 2rem), 760px);
  }

  .toe-embers-newsletter__form {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .toe-embers-newsletter__form input[type="email"] {
    border-right: 1px solid rgba(36, 35, 31, 0.35);
  }
}
/* =========================================================
   LETTERS FROM THE STARS
========================================================= */


/* =========================================================
   HERO
========================================================= */

.toe-stars-page .stars-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.toe-stars-page .stars-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(9, 12, 17, 0.04) 0%,
      rgba(9, 12, 17, 0.12) 60%,
      rgba(9, 12, 17, 0.35) 100%
    );
  pointer-events: none;
}

.toe-stars-page .stars-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 120px 0 105px;
}

.toe-stars-page .stars-hero-eyebrow {
  margin: 0 0 24px;
  color: #c9aa6a;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.toe-stars-page .stars-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #f1eadf;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(58px, 6vw, 90px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.toe-stars-page .stars-hero-description {
  max-width: 650px;
  margin: 34px 0 0;
  color: rgba(245, 239, 229, 0.82);
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}


/* =========================================================
   INTRO / CHART
========================================================= */

.toe-stars-page .stars-intro {
  background: #eee7da;
  padding: 120px 0 130px;
}

.toe-stars-page .stars-intro-inner {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 95px;
  align-items: center;
}

.toe-stars-page .stars-chart-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.toe-stars-page .stars-chart-frame {
  width: 100%;
  max-width: 590px;
  position: relative;
}

.toe-stars-page .stars-chart-frame::before {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  box-shadow: 0 22px 55px rgba(48, 40, 28, 0.12);
  pointer-events: none;
}

.toe-stars-page .stars-birth-chart {
  display: block;
  width: 100%;
  height: auto;
}

.toe-stars-page .stars-intro-copy {
  max-width: 520px;
}

.toe-stars-page .stars-intro-copy .toe-eyebrow {
  margin-bottom: 22px;
}

.toe-stars-page .stars-intro-copy h2 {
  margin: 0 0 30px;
  color: #20252b;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 4.3vw, 70px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.toe-stars-page .stars-intro-copy > p:not(.toe-eyebrow) {
  margin: 0 0 20px;
  color: #57534c;
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.85;
}

.toe-stars-page .stars-intro-copy .stars-intro-closing {
  margin-top: 28px;
  color: #796540;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.55;
}


/* =========================================================
   CURRENT SKY
========================================================= */

.toe-stars-page .current-sky {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(120, 101, 66, 0.09) 0%,
      rgba(120, 101, 66, 0) 44%
    ),
    #11161d;
  color: #f1eadf;
  padding: 125px 0 135px;
}

.toe-stars-page .current-sky-inner {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

.toe-stars-page .current-sky-heading {
  max-width: 650px;
  margin: 0 auto 85px;
  text-align: center;
}

.toe-stars-page .current-sky-heading .toe-eyebrow {
  margin-bottom: 18px;
  color: #c3a267;
}

.toe-stars-page .current-sky-heading h2 {
  margin: 0 0 20px;
  color: #f0e8dc;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(46px, 4vw, 65px);
  font-weight: 400;
  line-height: 1.05;
}

.toe-stars-page .current-sky-heading > p:last-child {
  margin: 0 auto;
  max-width: 520px;
  color: rgba(239, 232, 220, 0.66);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

.toe-stars-page .current-sky-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1fr) minmax(0, 1.15fr);
  gap: 70px;
  align-items: center;
}

.toe-stars-page .current-sky-season {
  padding-right: 20px;
}

.toe-stars-page .current-sky-symbol {
  display: block;
  margin-bottom: 24px;
  color: #b99658;
  font-family: Georgia, serif;
  font-size: 33px;
}

.toe-stars-page .current-sky-label {
  margin: 0 0 22px;
  color: #b99658;
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.toe-stars-page .current-sky-season h3 {
  margin: 0 0 28px;
  color: #f0e7da;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 4.2vw, 63px);
  font-weight: 400;
  line-height: 1;
}

.toe-stars-page .current-sky-season > p:last-child {
  max-width: 310px;
  margin: 0;
  color: rgba(240, 233, 221, 0.64);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

.toe-stars-page .current-sky-image-wrap {
  text-align: center;
}

.toe-stars-page .current-sky-image {
  width: min(100%, 385px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow:
    0 0 0 1px rgba(192, 161, 101, 0.28),
    0 0 0 14px rgba(192, 161, 101, 0.035),
    0 30px 75px rgba(0, 0, 0, 0.4);
}

.toe-stars-page .current-sky-image-caption {
  margin: 22px 0 0;
  color: rgba(224, 211, 190, 0.63);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-style: italic;
}

.toe-stars-page .current-sky-transits {
  display: flex;
  flex-direction: column;
}

.toe-stars-page .current-transit {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(195, 162, 103, 0.18);
}

.toe-stars-page .current-transit:first-child {
  padding-top: 0;
}

.toe-stars-page .current-transit:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.toe-stars-page .current-transit-glyph {
  padding-top: 2px;
  color: #b99658;
  font-family: Georgia, serif;
  font-size: 27px;
}

.toe-stars-page .current-transit h3 {
  margin: 0 0 6px;
  color: #e8dfd1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
}

.toe-stars-page .current-transit p {
  margin: 0;
  color: rgba(236, 228, 215, 0.58);
  font-family: "Inter", Arial, sans-serif;
  font-size: 12.5px;
  line-height: 1.7;
}


/* =========================================================
   LATEST LETTERS / EMPTY STATE
========================================================= */

.toe-stars-page .stars-journal {
  background: #f1eadf;
  padding: 120px 0 130px;
}

.toe-stars-page .stars-journal-inner {
  width: min(1040px, calc(100% - 80px));
  margin: 0 auto;
}

.toe-stars-page .stars-journal-heading {
  text-align: center;
}

.toe-stars-page .stars-journal-heading .toe-eyebrow {
  margin-bottom: 17px;
}

.toe-stars-page .stars-journal-heading h2 {
  margin: 0;
  color: #23272b;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 4vw, 66px);
  font-weight: 400;
  line-height: 1.04;
}

.toe-stars-page .toe-divider-symbol {
  margin: 28px 0 48px;
  color: #a8874f;
  font-size: 15px;
  text-align: center;
}

.toe-stars-page .stars-empty-state {
  max-width: 760px;
  margin: 0 auto;
  padding: 75px 65px;
  border-top: 1px solid rgba(111, 90, 57, 0.25);
  border-bottom: 1px solid rgba(111, 90, 57, 0.25);
  text-align: center;
}

.toe-stars-page .stars-empty-symbol {
  margin-bottom: 25px;
  color: #967747;
  font-family: Georgia, serif;
  font-size: 30px;
}

.toe-stars-page .stars-empty-state .toe-eyebrow {
  margin-bottom: 16px;
}

.toe-stars-page .stars-empty-state h3 {
  margin: 0 0 17px;
  color: #24282c;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(37px, 3.4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
}

.toe-stars-page .stars-empty-state > p:last-child {
  max-width: 550px;
  margin: 0 auto;
  color: #68625a;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.8;
}


/* =========================================================
   THE EMBERS WITHIN CTA
========================================================= */

.toe-stars-page .stars-embers-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 10%,
      rgba(178, 144, 82, 0.08),
      transparent 45%
    ),
    #1a1b1b;
  padding: 120px 0 125px;
}

.toe-stars-page .stars-embers-cta::before,
.toe-stars-page .stars-embers-cta::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 55px;
  background: linear-gradient(
    to bottom,
    rgba(185, 150, 88, 0),
    rgba(185, 150, 88, 0.45),
    rgba(185, 150, 88, 0)
  );
}

.toe-stars-page .stars-embers-cta::before {
  top: 0;
}

.toe-stars-page .stars-embers-cta::after {
  bottom: 0;
}

.toe-stars-page .stars-embers-cta-inner {
  width: min(760px, calc(100% - 80px));
  margin: 0 auto;
  text-align: center;
}

.toe-stars-page .stars-embers-ornament {
  margin-bottom: 22px;
  color: #bd9a5d;
  font-size: 17px;
}

.toe-stars-page .stars-embers-cta .toe-eyebrow {
  margin-bottom: 20px;
  color: #bd9a5d;
}

.toe-stars-page .stars-embers-cta h2 {
  margin: 0 0 27px;
  color: #f0e8dc;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 4.4vw, 68px);
  font-weight: 400;
  line-height: 1.03;
}

.toe-stars-page .stars-embers-cta p:not(.toe-eyebrow) {
  max-width: 600px;
  margin: 0 auto 36px;
  color: rgba(237, 228, 215, 0.66);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.85;
}

.toe-stars-page .stars-embers-cta .toe-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid #b69357;
  background: transparent;
  color: #d7bd8a;
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.toe-stars-page .stars-embers-cta .toe-button:hover {
  background: #b69357;
  color: #16191d;
}


/* =========================================================
   SHARED EYEBROW FALLBACKS FOR STARS PAGE
========================================================= */

.toe-stars-page .toe-eyebrow {
  color: #947744;
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.23em;
  line-height: 1.4;
  text-transform: uppercase;
}

.toe-stars-page .toe-eyebrow-light {
  color: #c2a267;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

  .toe-stars-page .stars-hero {
    min-height: 650px;
  }

  .toe-stars-page .stars-intro-inner {
    gap: 55px;
  }

  .toe-stars-page .current-sky-grid {
    grid-template-columns: 0.85fr 1fr;
    gap: 65px 55px;
  }

  .toe-stars-page .current-sky-season {
    align-self: center;
  }

  .toe-stars-page .current-sky-transits {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 55px;
    padding-top: 20px;
  }

  .toe-stars-page .current-transit:nth-last-child(2) {
    border-bottom: 0;
  }

}


@media (max-width: 850px) {

  .toe-stars-page .stars-hero {
    min-height: 610px;
    background-position: 62% center;
  }

  .toe-stars-page .stars-hero-inner {
    width: min(100% - 44px, 1180px);
    padding: 100px 0 85px;
  }

  .toe-stars-page .stars-hero h1 {
    max-width: 600px;
  }

  .toe-stars-page .stars-hero-description {
    max-width: 560px;
  }

  .toe-stars-page .stars-intro {
    padding: 90px 0 100px;
  }

  .toe-stars-page .stars-intro-inner {
    width: min(100% - 44px, 1180px);
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .toe-stars-page .stars-chart-frame {
    max-width: 530px;
  }

  .toe-stars-page .stars-intro-copy {
    max-width: 620px;
    margin: 0 auto;
  }

  .toe-stars-page .current-sky {
    padding: 95px 0 105px;
  }

  .toe-stars-page .current-sky-inner {
    width: min(100% - 44px, 1180px);
  }

  .toe-stars-page .current-sky-heading {
    margin-bottom: 65px;
  }

  .toe-stars-page .current-sky-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .toe-stars-page .current-sky-season {
    max-width: 560px;
    margin: 0 auto;
    padding-right: 0;
    text-align: center;
  }

  .toe-stars-page .current-sky-season > p:last-child {
    max-width: 500px;
    margin: 0 auto;
  }

  .toe-stars-page .current-sky-image {
    width: min(100%, 355px);
  }

  .toe-stars-page .current-sky-transits {
    grid-column: auto;
    grid-template-columns: 1fr;
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
    gap: 0;
    padding-top: 0;
  }

  .toe-stars-page .current-transit:nth-last-child(2) {
    border-bottom: 1px solid rgba(195, 162, 103, 0.18);
  }

  .toe-stars-page .stars-journal {
    padding: 90px 0 100px;
  }

  .toe-stars-page .stars-journal-inner {
    width: min(100% - 44px, 1040px);
  }

  .toe-stars-page .stars-empty-state {
    padding: 60px 35px;
  }

  .toe-stars-page .stars-embers-cta {
    padding: 95px 0 100px;
  }

  .toe-stars-page .stars-embers-cta-inner {
    width: min(100% - 44px, 760px);
  }

}


@media (max-width: 560px) {

  .toe-stars-page .stars-hero {
    min-height: 570px;
    align-items: flex-end;
    background-position: 68% center;
  }

  .toe-stars-page .stars-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(
        180deg,
        rgba(8, 11, 16, 0.05) 0%,
        rgba(8, 11, 16, 0.18) 35%,
        rgba(8, 11, 16, 0.86) 100%
      );
  }

  .toe-stars-page .stars-hero-inner {
    width: calc(100% - 36px);
    padding: 150px 0 56px;
  }

  .toe-stars-page .stars-hero-eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .toe-stars-page .stars-hero h1 {
    font-size: 48px;
    line-height: 0.98;
  }

  .toe-stars-page .stars-hero-description {
    margin-top: 24px;
    font-size: 10px;
    line-height: 1.75;
    letter-spacing: 0.1em;
  }

  .toe-stars-page .stars-intro {
    padding: 75px 0 82px;
  }

  .toe-stars-page .stars-intro-inner {
    width: calc(100% - 36px);
    gap: 48px;
  }

  .toe-stars-page .stars-chart-frame {
    max-width: 100%;
  }

  .toe-stars-page .stars-intro-copy h2 {
    font-size: 46px;
  }

  .toe-stars-page .stars-intro-copy > p:not(.toe-eyebrow) {
    font-size: 14px;
  }

  .toe-stars-page .stars-intro-copy .stars-intro-closing {
    font-size: 20px;
  }

  .toe-stars-page .current-sky {
    padding: 78px 0 85px;
  }

  .toe-stars-page .current-sky-inner {
    width: calc(100% - 36px);
  }

  .toe-stars-page .current-sky-heading {
    margin-bottom: 55px;
  }

  .toe-stars-page .current-sky-heading h2 {
    font-size: 44px;
  }

  .toe-stars-page .current-sky-grid {
    gap: 52px;
  }

  .toe-stars-page .current-sky-season h3 {
    font-size: 48px;
  }

  .toe-stars-page .current-sky-image {
    width: min(88vw, 330px);
  }

  .toe-stars-page .current-transit {
    grid-template-columns: 32px 1fr;
    gap: 14px;
    padding: 18px 0;
  }

  .toe-stars-page .current-transit-glyph {
    font-size: 24px;
  }

  .toe-stars-page .current-transit h3 {
    font-size: 21px;
  }

  .toe-stars-page .current-transit p {
    font-size: 12px;
  }

  .toe-stars-page .stars-journal {
    padding: 75px 0 82px;
  }

  .toe-stars-page .stars-journal-inner {
    width: calc(100% - 36px);
  }

  .toe-stars-page .stars-journal-heading h2 {
    font-size: 45px;
  }

  .toe-stars-page .stars-empty-state {
    padding: 48px 15px;
  }

  .toe-stars-page .stars-empty-state h3 {
    font-size: 40px;
  }

  .toe-stars-page .stars-embers-cta {
    padding: 80px 0 85px;
  }

  .toe-stars-page .stars-embers-cta-inner {
    width: calc(100% - 36px);
  }

  .toe-stars-page .stars-embers-cta h2 {
    font-size: 45px;
  }

}
/* =========================================================
   WHERE THE EMBERS GO
========================================================= */


/* =========================================================
   HERO
========================================================= */

.toe-travel-page .toe-travel-hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: #13171b;
}

.toe-travel-page .toe-travel-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.toe-travel-page .toe-travel-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(12, 15, 18, 0.84) 0%,
      rgba(12, 15, 18, 0.62) 35%,
      rgba(12, 15, 18, 0.18) 70%,
      rgba(12, 15, 18, 0.06) 100%
    ),
    linear-gradient(
      180deg,
      rgba(12, 15, 18, 0.02) 0%,
      rgba(12, 15, 18, 0.2) 100%
    );
}

.toe-travel-page .toe-travel-hero__content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 105px 0 95px;
  color: #f4ede2;
}

.toe-travel-page .toe-travel-hero__eyebrow {
  margin: 0 0 18px;
  color: #e8e0d4;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.toe-travel-page .toe-travel-hero h1 {
  max-width: 560px;
  margin: 0;
  color: #f5eee3;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(60px, 6vw, 88px);
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -0.02em;
}

.toe-travel-page .toe-travel-hero__line {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 170px;
  margin: 28px 0 20px;
  color: #c59d58;
}

.toe-travel-page .toe-travel-hero__line span:first-child {
  display: block;
  width: 115px;
  height: 1px;
  background: rgba(209, 175, 113, 0.62);
}

.toe-travel-page .toe-travel-hero__line span:last-child {
  font-size: 12px;
}

.toe-travel-page .toe-travel-hero__description {
  max-width: 420px;
  margin: 0;
  color: rgba(244, 237, 226, 0.8);
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* =========================================================
   INTRO
========================================================= */

.toe-travel-page .toe-travel-intro {
  background: #f2ece1;
  padding: 95px 0 90px;
}

.toe-travel-page .toe-travel-intro__inner {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 65px;
  align-items: center;
}

.toe-travel-page .toe-travel-intro__copy {
  max-width: 430px;
  padding-left: 18px;
}

.toe-travel-page .toe-travel-intro__symbol {
  margin-bottom: 18px;
  color: #ae8546;
  font-size: 22px;
}

.toe-travel-page .toe-travel-intro__lead {
  margin: 0;
  color: #2d2b27;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1.45;
}

.toe-travel-page .toe-travel-intro__rule {
  width: 42px;
  height: 1px;
  margin: 24px 0 24px;
  background: #af8c56;
}

.toe-travel-page .toe-travel-intro__copy > p:not(.toe-travel-intro__lead):not(.toe-travel-intro__closing) {
  margin: 0;
  color: #5f5a52;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.85;
}

.toe-travel-page .toe-travel-intro__closing {
  margin: 20px 0 0;
  color: #7f6846;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.5;
}

.toe-travel-page .toe-travel-intro__image-wrap {
  min-height: 410px;
  overflow: hidden;
}

.toe-travel-page .toe-travel-intro__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  object-position: center;
}


/* =========================================================
   MARAS FEATURE
========================================================= */

.toe-travel-page .toe-travel-feature {
  background: #f2ece1;
  padding: 0 0 38px;
}

.toe-travel-page .toe-travel-feature__inner {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

.toe-travel-page .toe-travel-feature__image-wrap {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.toe-travel-page .toe-travel-feature__image {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
}

.toe-travel-page .toe-travel-feature__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(12, 14, 16, 0) 45%,
      rgba(12, 14, 16, 0.6) 100%
    );
}

.toe-travel-page .toe-travel-feature__label {
  position: absolute;
  left: 32px;
  bottom: 28px;
  z-index: 2;
  color: #f2eadf;
}

.toe-travel-page .toe-travel-feature__label p {
  margin: 0 0 5px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}

.toe-travel-page .toe-travel-feature__label span {
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}


/* =========================================================
   STORY BASE
========================================================= */

.toe-travel-page .toe-travel-story {
  background: #f2ece1;
}

.toe-travel-page .toe-travel-story__inner {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

.toe-travel-page .toe-travel-story__image-wrap {
  overflow: hidden;
}

.toe-travel-page .toe-travel-story__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.toe-travel-page .toe-travel-story__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.toe-travel-page .toe-travel-story__symbol {
  margin-bottom: 14px;
  color: #aa8145;
  font-size: 17px;
}

.toe-travel-page .toe-travel-story__category {
  margin: 0 0 14px;
  color: #a77e42;
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.toe-travel-page .toe-travel-story h2 {
  margin: 0 0 13px;
  color: #282723;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 3.6vw, 58px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.018em;
}

.toe-travel-page .toe-travel-story__meta {
  margin: 0 0 18px;
  color: #7b6b55;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1.5;
}

.toe-travel-page .toe-travel-story__excerpt {
  margin: 0;
  max-width: 510px;
  color: #605b53;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

.toe-travel-page .toe-travel-story__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: 24px;
  color: #a77c3f;
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.toe-travel-page .toe-travel-story__link span {
  transition: transform 0.2s ease;
}

.toe-travel-page .toe-travel-story__link:hover span {
  transform: translateX(3px);
}


/* =========================================================
   FRANCE / SPLIT STORY
========================================================= */

.toe-travel-page .toe-travel-story--split {
  padding: 18px 0 38px;
}

.toe-travel-page .toe-travel-story--split .toe-travel-story__inner {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 54px;
  align-items: stretch;
}

.toe-travel-page .toe-travel-story--split .toe-travel-story__image-wrap {
  min-height: 440px;
}

.toe-travel-page .toe-travel-story--split .toe-travel-story__image {
  min-height: 440px;
}


/* =========================================================
   COSTA RICA / WIDE STORY
========================================================= */

.toe-travel-page .toe-travel-story--wide {
  padding: 0 0 38px;
}

.toe-travel-page .toe-travel-story--wide .toe-travel-story__inner {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 0;
  border: 1px solid rgba(122, 105, 78, 0.15);
  background: rgba(246, 240, 230, 0.58);
}

.toe-travel-page .toe-travel-story--wide .toe-travel-story__copy {
  padding: 50px 42px 46px;
}

.toe-travel-page .toe-travel-story--wide .toe-travel-story__image-wrap {
  min-height: 340px;
}

.toe-travel-page .toe-travel-story--wide .toe-travel-story__image {
  min-height: 340px;
}


/* =========================================================
   PERU
========================================================= */

.toe-travel-page .toe-travel-story--peru {
  padding-bottom: 95px;
}

.toe-travel-page .toe-travel-story--peru .toe-travel-story__inner {
  grid-template-columns: 1.12fr 0.88fr;
}


/* =========================================================
   NEWSLETTER / FOOTER SPACING
========================================================= */

.toe-travel-page + .toe-site-footer {
  margin-top: 0;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

  .toe-travel-page .toe-travel-hero {
    min-height: 640px;
  }

  .toe-travel-page .toe-travel-intro__inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 45px;
  }

  .toe-travel-page .toe-travel-story--split .toe-travel-story__inner {
    gap: 40px;
  }

}


@media (max-width: 850px) {

  .toe-travel-page .toe-travel-hero {
    min-height: 610px;
  }

  .toe-travel-page .toe-travel-hero__content {
    width: min(100% - 44px, 1180px);
    padding: 95px 0 80px;
  }

  .toe-travel-page .toe-travel-intro {
    padding: 80px 0 75px;
  }

  .toe-travel-page .toe-travel-intro__inner {
    width: min(100% - 44px, 1180px);
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .toe-travel-page .toe-travel-intro__copy {
    max-width: 620px;
    padding-left: 0;
  }

  .toe-travel-page .toe-travel-intro__image-wrap,
  .toe-travel-page .toe-travel-intro__image {
    min-height: 360px;
  }

  .toe-travel-page .toe-travel-feature__inner,
  .toe-travel-page .toe-travel-story__inner {
    width: min(100% - 44px, 1180px);
  }

  .toe-travel-page .toe-travel-feature__image-wrap,
  .toe-travel-page .toe-travel-feature__image {
    min-height: 360px;
    height: 360px;
  }

  .toe-travel-page .toe-travel-story--split .toe-travel-story__inner,
  .toe-travel-page .toe-travel-story--wide .toe-travel-story__inner {
    grid-template-columns: 1fr;
  }

  .toe-travel-page .toe-travel-story--split .toe-travel-story__image-wrap,
  .toe-travel-page .toe-travel-story--split .toe-travel-story__image,
  .toe-travel-page .toe-travel-story--wide .toe-travel-story__image-wrap,
  .toe-travel-page .toe-travel-story--wide .toe-travel-story__image {
    min-height: 380px;
  }

  .toe-travel-page .toe-travel-story--split .toe-travel-story__copy {
    padding: 15px 0 18px;
  }

  .toe-travel-page .toe-travel-story--wide .toe-travel-story__copy {
    padding: 42px 34px;
  }

  .toe-travel-page .toe-travel-story--peru {
    padding-bottom: 80px;
  }

}


@media (max-width: 560px) {

  .toe-travel-page .toe-travel-hero {
    min-height: 560px;
  }

  .toe-travel-page .toe-travel-hero__image {
    object-position: 58% center;
  }

  .toe-travel-page .toe-travel-hero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(10, 13, 16, 0.18) 0%,
        rgba(10, 13, 16, 0.5) 46%,
        rgba(10, 13, 16, 0.9) 100%
      );
  }

  .toe-travel-page .toe-travel-hero__content {
    width: calc(100% - 36px);
    padding: 150px 0 48px;
  }

  .toe-travel-page .toe-travel-hero__eyebrow {
    font-size: 10px;
  }

  .toe-travel-page .toe-travel-hero h1 {
    font-size: 48px;
  }

  .toe-travel-page .toe-travel-hero__description {
    font-size: 10px;
    line-height: 1.7;
  }

  .toe-travel-page .toe-travel-intro {
    padding: 68px 0 65px;
  }

  .toe-travel-page .toe-travel-intro__inner {
    width: calc(100% - 36px);
  }

  .toe-travel-page .toe-travel-intro__lead {
    font-size: 25px;
  }

  .toe-travel-page .toe-travel-intro__copy > p:not(.toe-travel-intro__lead):not(.toe-travel-intro__closing) {
    font-size: 13px;
  }

  .toe-travel-page .toe-travel-intro__image-wrap,
  .toe-travel-page .toe-travel-intro__image {
    min-height: 320px;
  }

  .toe-travel-page .toe-travel-feature__inner,
  .toe-travel-page .toe-travel-story__inner {
    width: calc(100% - 36px);
  }

  .toe-travel-page .toe-travel-feature__image-wrap,
  .toe-travel-page .toe-travel-feature__image {
    min-height: 300px;
    height: 300px;
  }

  .toe-travel-page .toe-travel-feature__label {
    left: 20px;
    bottom: 18px;
  }

  .toe-travel-page .toe-travel-feature__label p {
    font-size: 25px;
  }

  .toe-travel-page .toe-travel-story--split .toe-travel-story__image-wrap,
  .toe-travel-page .toe-travel-story--split .toe-travel-story__image,
  .toe-travel-page .toe-travel-story--wide .toe-travel-story__image-wrap,
  .toe-travel-page .toe-travel-story--wide .toe-travel-story__image {
    min-height: 300px;
  }

  .toe-travel-page .toe-travel-story h2 {
    font-size: 39px;
  }

  .toe-travel-page .toe-travel-story__meta {
    font-size: 18px;
  }

  .toe-travel-page .toe-travel-story__excerpt {
    font-size: 13px;
  }

  .toe-travel-page .toe-travel-story--wide .toe-travel-story__copy {
    padding: 36px 24px 38px;
  }

  .toe-travel-page .toe-travel-story--peru {
    padding-bottom: 65px;
  }

}
/* Remove letterboxing from travel story images */
.toe-travel-story__image-wrap {
  overflow: hidden;
}

.toe-travel-story__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Crop baked-in white borders from France + Costa Rica images */

.toe-travel-story--split:not(.toe-travel-story--peru)
.toe-travel-story__image-wrap,
.toe-travel-story--wide
.toe-travel-story__image-wrap {
  overflow: hidden;
}

.toe-travel-story--split:not(.toe-travel-story--peru)
.toe-travel-story__image {
  transform: scale(1.48);
  transform-origin: center center;
}

.toe-travel-story--wide
.toe-travel-story__image {
  transform: scale(1.52);
  transform-origin: center center;
}
/* =========================================================
   THE BODY AS A TEMPLE
   ========================================================= */


/* =========================================================
   HERO
   ========================================================= */

.toe-body-page .toe-body-hero {
  position: relative;
  width: 100%;
  height: 690px;
  overflow: hidden;
  background: #171819;
}

.toe-body-page .toe-body-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  display: block;
}

.toe-body-page .toe-body-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(15, 16, 16, 0.08) 0%,
      rgba(15, 16, 16, 0.12) 42%,
      rgba(15, 16, 16, 0.64) 100%
    );
}

.toe-body-page .toe-body-hero__content {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 68px;
  transform: translateX(-50%);
  width: min(900px, calc(100% - 60px));
  text-align: center;
  color: #f5efe6;
}

.toe-body-page .toe-body-hero__line {
  display: block;
  width: 48px;
  height: 1px;
  margin: 0 auto 18px;
  background: #c7a46a;
}

.toe-body-page .toe-body-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #f5efe6;
}

.toe-body-page .toe-body-hero p {
  margin: 15px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(245, 239, 230, 0.88);
}


/* =========================================================
   PHILOSOPHY
   ========================================================= */

.toe-body-page .toe-body-philosophy {
  position: relative;
  background: #f3eee5;
  padding: 105px 30px 110px;
}

.toe-body-page .toe-body-philosophy__inner {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.toe-body-page .toe-body-philosophy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 4.5vw, 62px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #292825;
}

.toe-body-page .toe-body-philosophy__line {
  display: block;
  width: 44px;
  height: 1px;
  margin: 30px auto 31px;
  background: #ad8952;
}

.toe-body-page .toe-body-philosophy__copy {
  width: min(670px, 100%);
  margin: 0 auto;
}

.toe-body-page .toe-body-philosophy__copy > p {
  margin: 0 0 21px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  color: #625e57;
}

.toe-body-page .toe-body-philosophy__copy > p:last-child {
  margin-bottom: 0;
}

.toe-body-page .toe-body-philosophy__closing {
  padding-top: 8px;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 20px !important;
  line-height: 1.6 !important;
  color: #4f4a42 !important;
}

.toe-body-page .toe-body-philosophy__closing em {
  color: #9a7747;
  font-size: 21px;
}


/* =========================================================
   TWO EQUAL IMAGES
   ========================================================= */

.toe-body-page .toe-body-gallery {
  background: #e9e1d5;
  padding: 76px 0 78px;
}

.toe-body-page .toe-body-gallery__inner {
  width: min(1040px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.toe-body-page .toe-body-gallery__image-wrap {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #d8cec0;
}

.toe-body-page .toe-body-gallery__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Peru image */
.toe-body-page
.toe-body-gallery__image-wrap:first-child
.toe-body-gallery__image {
  object-position: center center;
}

/* Aerial image */
.toe-body-page
.toe-body-gallery__image-wrap:last-child
.toe-body-gallery__image {
  object-position: center center;
}


/* =========================================================
   "STILL UNFOLDING"
   ========================================================= */

.toe-body-page .toe-body-coming {
  background: #f3eee5;
  padding: 82px 30px 86px;
}

.toe-body-page .toe-body-coming__inner {
  width: min(720px, 100%);
  margin: 0 auto;
  text-align: center;
}

.toe-body-page .toe-body-coming__line {
  display: block;
  width: 42px;
  height: 1px;
  margin: 0 auto 24px;
  background: #ad8952;
}

.toe-body-page .toe-body-coming h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 3.8vw, 48px);
  font-weight: 400;
  line-height: 1.12;
  color: #2e2c28;
}

.toe-body-page .toe-body-coming p {
  margin: 17px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
  color: #877052;
}


/* =========================================================
   NEWSLETTER
   ========================================================= */

.toe-body-page .toe-body-newsletter {
  position: relative;
  background: #e9e1d5;
  padding: 80px 30px 84px;
  border-top: 1px solid rgba(124, 102, 72, 0.14);
}

.toe-body-page .toe-body-newsletter__inner {
  width: min(650px, 100%);
  margin: 0 auto;
  text-align: center;
}

.toe-body-page .toe-body-newsletter__symbol {
  display: block;
  margin: 0 0 15px;
  font-size: 15px;
  color: #aa8249;
}

.toe-body-page .toe-body-newsletter h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  color: #292825;
}

.toe-body-page .toe-body-newsletter__inner > p {
  margin: 12px 0 29px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-style: italic;
  color: #786c5b;
}

.toe-body-page .toe-body-newsletter__form {
  width: min(490px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.toe-body-page .toe-body-newsletter__form input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 17px;
  border: 1px solid rgba(77, 70, 61, 0.35);
  border-right: 0;
  border-radius: 0;
  outline: none;
  background: rgba(255, 255, 255, 0.45);
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  color: #403d38;
}

.toe-body-page .toe-body-newsletter__form input::placeholder {
  color: #8a847c;
}

.toe-body-page .toe-body-newsletter__form input:focus {
  border-color: #a8834d;
}

.toe-body-page .toe-body-newsletter__form button {
  height: 48px;
  padding: 0 28px;
  border: 1px solid #282a2b;
  border-radius: 0;
  background: #282a2b;
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f4eee5;
  cursor: pointer;
}

.toe-body-page .toe-body-newsletter__form button:hover {
  background: #383a3b;
}

.toe-body-page .toe-body-newsletter small {
  display: block;
  margin-top: 13px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.04em;
  color: #938b80;
}


/* =========================================================
   VISUALLY HIDDEN ACCESSIBILITY LABEL
   ========================================================= */

.toe-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* =========================================================
   BODY PAGE FOOTER
   ========================================================= */

.toe-body-page + .toe-footer {
  margin-top: 0;
}


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

@media (max-width: 900px) {

  .toe-body-page .toe-body-hero {
    height: 620px;
  }

  .toe-body-page .toe-body-philosophy {
    padding: 90px 28px 95px;
  }

  .toe-body-page .toe-body-gallery {
    padding: 62px 0 64px;
  }

  .toe-body-page .toe-body-gallery__inner {
    width: min(100% - 50px, 1040px);
    gap: 18px;
  }

  .toe-body-page .toe-body-gallery__image-wrap {
    height: 440px;
  }

}


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

@media (max-width: 650px) {

  .toe-body-page .toe-body-hero {
    height: 560px;
  }

  .toe-body-page .toe-body-hero__image {
    object-position: 55% center;
  }

  .toe-body-page .toe-body-hero__content {
    bottom: 42px;
    width: calc(100% - 36px);
  }

  .toe-body-page .toe-body-hero h1 {
    font-size: 47px;
  }

  .toe-body-page .toe-body-hero p {
    font-size: 18px;
  }

  .toe-body-page .toe-body-philosophy {
    padding: 72px 22px 76px;
  }

  .toe-body-page .toe-body-philosophy h2 {
    font-size: 39px;
  }

  .toe-body-page .toe-body-philosophy h2 br {
    display: none;
  }

  .toe-body-page .toe-body-philosophy__copy > p {
    font-size: 13px;
    line-height: 1.8;
  }

  .toe-body-page .toe-body-gallery {
    padding: 48px 0;
  }

  .toe-body-page .toe-body-gallery__inner {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .toe-body-page .toe-body-gallery__image-wrap {
    height: 440px;
  }

  .toe-body-page .toe-body-coming {
    padding: 68px 22px 72px;
  }

  .toe-body-page .toe-body-coming h2 {
    font-size: 36px;
  }

  .toe-body-page .toe-body-newsletter {
    padding: 66px 20px 70px;
  }

  .toe-body-page .toe-body-newsletter__form {
    display: block;
  }

  .toe-body-page .toe-body-newsletter__form input {
    width: 100%;
    border-right: 1px solid rgba(77, 70, 61, 0.35);
  }

  .toe-body-page .toe-body-newsletter__form button {
    width: 100%;
    margin-top: 9px;
  }

}
/* =========================================================
   LIBRARY PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.toe-library-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #171816;
}

.toe-library-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.toe-library-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(16, 17, 15, 0.76) 0%,
      rgba(16, 17, 15, 0.55) 42%,
      rgba(16, 17, 15, 0.18) 72%,
      rgba(16, 17, 15, 0.08) 100%
    );
}

.toe-library-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 100px 0 90px;
  color: #f4eee3;
}

.toe-library-hero__eyebrow {
  margin: 0 0 24px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c5a56a;
}

.toe-library-hero h1 {
  max-width: 690px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(62px, 6.5vw, 98px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: #f4eee3;
}

.toe-library-hero__subtitle {
  max-width: 560px;
  margin: 34px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 238, 227, 0.82);
}


/* =========================================================
   INTRODUCTION
========================================================= */

.toe-library-intro {
  background: #f3eee4;
  padding: 92px 0 96px;
}

.toe-library-intro__inner {
  width: min(980px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 44px;
  align-items: start;
}

.toe-library-intro__mark {
  padding-top: 4px;
  font-size: 19px;
  line-height: 1;
  color: #a47e43;
}

.toe-library-intro__copy {
  max-width: 760px;
}

.toe-library-intro__copy p {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.55;
  color: #34332f;
}

.toe-library-intro__copy p:first-child {
  margin-bottom: 23px;
  font-size: 29px;
  line-height: 1.35;
  color: #22231f;
}

.toe-library-intro__copy p:last-child {
  margin-bottom: 0;
  font-style: italic;
  color: #716d64;
}


/* =========================================================
   OFFERINGS
========================================================= */

.toe-library-offerings {
  background: #f8f5ee;
}

.toe-library-offerings__inner {
  width: min(1220px, calc(100% - 80px));
  margin: 0 auto;
}

.toe-library-offering {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(380px, 1.45fr) minmax(210px, 0.62fr);
  gap: 52px;
  align-items: stretch;
  padding: 82px 0;
  border-top: 1px solid rgba(87, 78, 62, 0.22);
}

.toe-library-offering:last-child {
  border-bottom: 1px solid rgba(87, 78, 62, 0.22);
}


/* =========================================================
   OFFERING IMAGES
========================================================= */

.toe-library-offering__image-wrap {
  min-height: 410px;
  overflow: hidden;
  background: #ded7c9;
}

.toe-library-offering__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}


/* Preserve the actual report composition instead of
   cropping it like a lifestyle photograph. */

.toe-library-offering--readings .toe-library-offering__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: #e8e1d5;
}

.toe-library-offering--readings .toe-library-offering__image {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 410px;
  object-fit: contain;
}


/* Digital workbook image */

.toe-library-offering--workbooks .toe-library-offering__image {
  object-position: center;
}


/* Clock */

.toe-library-offering--guidance .toe-library-offering__image {
  object-position: center;
}


/* =========================================================
   OFFERING COPY
========================================================= */

.toe-library-offering__content {
  padding: 4px 0;
}

.toe-library-offering__number {
  margin: 0 0 21px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: #9b7945;
}

.toe-library-offering__content h2 {
  margin: 0 0 13px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #22231f;
}

.toe-library-offering__lead {
  margin: 0 0 25px !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 22px !important;
  font-style: italic;
  line-height: 1.4 !important;
  color: #6e685e !important;
}

.toe-library-offering__content > p {
  max-width: 610px;
  margin: 0 0 16px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #4d4a43;
}

.toe-library-offering__content > p:last-child {
  margin-bottom: 0;
}

.toe-library-offering__types {
  margin-top: 27px !important;
  padding-top: 19px;
  border-top: 1px solid rgba(87, 78, 62, 0.18);
  font-size: 10px !important;
  font-weight: 600 !important;
  line-height: 1.7 !important;
  letter-spacing: 0.12em;
  color: #8b6d40 !important;
}

.toe-library-offering__closing {
  margin-top: 23px !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 19px !important;
  font-style: italic;
  line-height: 1.5 !important;
  color: #625d54 !important;
}


/* =========================================================
   MONTHLY GUIDANCE DETAILS
========================================================= */

.toe-library-offering__details {
  margin: 26px 0 0;
  padding: 23px 0 0;
  list-style: none;
  border-top: 1px solid rgba(87, 78, 62, 0.18);
}

.toe-library-offering__details li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 19px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: #716b61;
}

.toe-library-offering__details li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 8px;
  color: #a47e43;
}


/* =========================================================
   PRICE / CTA COLUMN
========================================================= */

.toe-library-offering__action {
  min-height: 100%;
  padding: 5px 0 3px 39px;
  border-left: 1px solid rgba(87, 78, 62, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.toe-library-offering__aside {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: #6e685e;
}

.toe-library-offering__action-bottom {
  margin-top: 60px;
}

.toe-library-offering__price-label {
  margin: 0 0 2px;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #81796c;
}

.toe-library-offering__price {
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  color: #272823;
}

.toe-library-offering__price span {
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #81796c;
}

.toe-library-offering__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid #9b7945;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  color: #725a35;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    gap 180ms ease;
}

.toe-library-offering__button:hover {
  gap: 17px;
  color: #272823;
  border-color: #272823;
}

.toe-library-offering__coming-soon {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: #9b7945;
}


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

@media (max-width: 1050px) {

  .toe-library-hero {
    min-height: 570px;
  }

  .toe-library-offering {
    grid-template-columns: minmax(250px, 0.8fr) minmax(340px, 1.2fr);
    gap: 45px;
  }

  .toe-library-offering__action {
    grid-column: 2;
    min-height: auto;
    padding: 30px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(87, 78, 62, 0.18);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: end;
  }

  .toe-library-offering__action-bottom {
    margin-top: 0;
    text-align: right;
  }

}


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

@media (max-width: 760px) {

  .toe-library-hero {
    min-height: 570px;
    align-items: flex-end;
  }

  .toe-library-hero__image {
    object-position: 58% center;
  }

  .toe-library-hero__overlay {
    background:
      linear-gradient(
        0deg,
        rgba(16, 17, 15, 0.86) 0%,
        rgba(16, 17, 15, 0.55) 55%,
        rgba(16, 17, 15, 0.20) 100%
      );
  }

  .toe-library-hero__inner {
    width: calc(100% - 42px);
    padding: 100px 0 62px;
  }

  .toe-library-hero__eyebrow {
    margin-bottom: 18px;
  }

  .toe-library-hero h1 {
    max-width: 500px;
    font-size: clamp(52px, 16vw, 74px);
  }

  .toe-library-hero__subtitle {
    max-width: 440px;
    margin-top: 27px;
    font-size: 9px;
  }


  /* INTRO */

  .toe-library-intro {
    padding: 67px 0 72px;
  }

  .toe-library-intro__inner {
    width: calc(100% - 42px);
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .toe-library-intro__mark {
    padding: 0;
  }

  .toe-library-intro__copy p {
    font-size: 20px;
  }

  .toe-library-intro__copy p:first-child {
    font-size: 26px;
  }


  /* OFFERINGS */

  .toe-library-offerings__inner {
    width: calc(100% - 42px);
  }

  .toe-library-offering {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 62px 0;
  }

  .toe-library-offering__image-wrap,
  .toe-library-offering__image {
    min-height: 0;
  }

  .toe-library-offering__image-wrap {
    aspect-ratio: 4 / 3;
  }

  .toe-library-offering__image {
    height: 100%;
  }

  .toe-library-offering--readings .toe-library-offering__image-wrap {
    aspect-ratio: auto;
    padding: 18px;
  }

  .toe-library-offering--readings .toe-library-offering__image {
    max-height: none;
  }

  .toe-library-offering__content h2 {
    font-size: 44px;
  }

  .toe-library-offering__lead {
    font-size: 21px !important;
  }

  .toe-library-offering__content > p {
    font-size: 13px;
    line-height: 1.75;
  }


  /* ACTION */

  .toe-library-offering__action {
    grid-column: auto;
    display: block;
    padding: 27px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(87, 78, 62, 0.18);
  }

  .toe-library-offering__aside {
    font-size: 19px;
  }

  .toe-library-offering__action-bottom {
    margin-top: 35px;
    text-align: left;
  }

  .toe-library-offering__price {
    font-size: 39px;
  }

}


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

@media (max-width: 480px) {

  .toe-library-hero {
    min-height: 530px;
  }

  .toe-library-hero__inner,
  .toe-library-intro__inner,
  .toe-library-offerings__inner {
    width: calc(100% - 34px);
  }

  .toe-library-hero h1 {
    font-size: 52px;
  }

  .toe-library-intro__copy p:first-child {
    font-size: 24px;
  }

  .toe-library-offering {
    padding: 53px 0;
  }

  .toe-library-offering__content h2 {
    font-size: 39px;
  }

}
/* =========================================================
   CHART READINGS PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.toe-readings-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #171816;
}

.toe-readings-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.toe-readings-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(15, 16, 14, 0.82) 0%,
      rgba(15, 16, 14, 0.63) 42%,
      rgba(15, 16, 14, 0.24) 72%,
      rgba(15, 16, 14, 0.10) 100%
    );
}

.toe-readings-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 110px 0 100px;
  color: #f4eee3;
}

.toe-readings-hero__eyebrow {
  margin: 0 0 25px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c5a56a;
}

.toe-readings-hero h1 {
  max-width: 790px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(60px, 6.3vw, 94px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: #f4eee3;
}

.toe-readings-hero__subtitle {
  max-width: 600px;
  margin: 35px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(244, 238, 227, 0.82);
}


/* =========================================================
   INTRODUCTION
========================================================= */

.toe-readings-intro {
  padding: 100px 0 105px;
  background: #f3eee4;
}

.toe-readings-intro__inner {
  width: min(980px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 44px;
  align-items: start;
}

.toe-readings-intro__mark {
  padding-top: 8px;
  font-size: 18px;
  line-height: 1;
  color: #a47e43;
}

.toe-readings-intro__copy {
  max-width: 780px;
}

.toe-readings-intro__copy h2 {
  max-width: 730px;
  margin: 0 0 35px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 4vw, 53px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #252621;
}

.toe-readings-intro__copy p {
  max-width: 700px;
  margin: 0 0 18px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  color: #4d4a43;
}

.toe-readings-intro__copy p:last-child {
  margin-bottom: 0;
}

.toe-readings-intro__closing {
  margin-top: 28px !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 22px !important;
  font-style: italic;
  line-height: 1.5 !important;
  color: #6b655b !important;
}


/* =========================================================
   INDIVIDUAL READING OPTIONS
========================================================= */

.toe-reading-option {
  padding: 88px 0;
}

.toe-reading-option--light {
  background: #f8f5ee;
}

.toe-reading-option--parchment {
  background: #eee7db;
}

.toe-reading-option__inner {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 115px minmax(420px, 1fr) minmax(220px, 0.42fr);
  gap: 48px;
  align-items: stretch;
}

.toe-reading-option__number {
  padding-top: 7px;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9b7945;
}

.toe-reading-option__content {
  max-width: 650px;
}

.toe-reading-option__eyebrow {
  margin: 0 0 18px;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: #8d6b3b;
}

.toe-reading-option__content h2 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 4.2vw, 58px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #252621;
}

.toe-reading-option__lead {
  margin: 0 0 27px !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 22px !important;
  font-style: italic;
  line-height: 1.45 !important;
  color: #6c665c !important;
}

.toe-reading-option__content > p {
  margin: 0 0 17px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.82;
  color: #4c4942;
}

.toe-reading-option__content > p:last-child {
  margin-bottom: 0;
}

.toe-reading-option__closing {
  margin-top: 24px !important;
  padding-top: 21px;
  border-top: 1px solid rgba(87, 78, 62, 0.18);
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 19px !important;
  font-style: italic;
  line-height: 1.5 !important;
  color: #625d54 !important;
}


/* =========================================================
   PURCHASE COLUMN
========================================================= */

.toe-reading-option__purchase {
  min-height: 100%;
  padding: 6px 0 4px 38px;
  border-left: 1px solid rgba(87, 78, 62, 0.20);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.toe-reading-option__aside {
  max-width: 190px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: #6d675d;
}

.toe-reading-option__purchase-bottom {
  margin-top: 65px;
}

.toe-reading-option__format {
  margin: 0 0 10px;
  font-family: "Inter", sans-serif;
  font-size: 8px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #81796c;
}

.toe-reading-option__price {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 43px;
  font-weight: 400;
  line-height: 1;
  color: #292a25;
}

.toe-reading-option__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid #9b7945;
  font-family: "Inter", sans-serif;
  font-size: 8px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  color: #725a35;
  transition:
    gap 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.toe-reading-option__button:hover {
  gap: 17px;
  color: #272823;
  border-color: #272823;
}


/* =========================================================
   OPTIONAL LIVE DISCUSSION
========================================================= */

.toe-readings-discussion {
  padding: 92px 0;
  background: #252622;
  color: #f2ecdf;
}

.toe-readings-discussion__inner {
  width: min(1080px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 170px minmax(400px, 1fr) 230px;
  gap: 55px;
  align-items: start;
}

.toe-readings-discussion__label {
  padding-top: 7px;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: #c1a16b;
}

.toe-readings-discussion__copy h2 {
  max-width: 580px;
  margin: 0 0 28px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 4vw, 53px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #f3ede1;
}

.toe-readings-discussion__copy p {
  max-width: 610px;
  margin: 0 0 16px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(243, 237, 225, 0.76);
}

.toe-readings-discussion__copy p:last-child {
  margin-bottom: 0;
}

.toe-readings-discussion__price {
  padding: 7px 0 0 36px;
  border-left: 1px solid rgba(218, 198, 162, 0.24);
}

.toe-readings-discussion__price p {
  margin: 0 0 13px;
  font-family: "Inter", sans-serif;
  font-size: 8px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 237, 225, 0.65);
}

.toe-readings-discussion__price strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  color: #d0ad72;
}


/* =========================================================
   CLOSING
========================================================= */

.toe-readings-closing {
  padding: 105px 0 110px;
  background: #f3eee4;
  text-align: center;
}

.toe-readings-closing__inner {
  width: min(820px, calc(100% - 80px));
  margin: 0 auto;
}

.toe-readings-closing__mark {
  margin: 0 0 27px;
  font-size: 17px;
  color: #a47e43;
}

.toe-readings-closing h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(46px, 5.3vw, 70px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #252621;
}

.toe-readings-closing__inner > p:not(.toe-readings-closing__mark) {
  max-width: 580px;
  margin: 29px auto 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 21px;
  font-style: italic;
  line-height: 1.5;
  color: #6a655c;
}

.toe-readings-closing__back {
  display: inline-block;
  margin-top: 40px;
  padding-bottom: 7px;
  border-bottom: 1px solid #9b7945;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.15em;
  text-decoration: none;
  color: #725a35;
}


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

@media (max-width: 1050px) {

  .toe-readings-hero {
    min-height: 590px;
  }

  .toe-reading-option__inner {
    grid-template-columns: 90px minmax(360px, 1fr) 190px;
    gap: 35px;
  }

  .toe-readings-discussion__inner {
    grid-template-columns: 130px 1fr 190px;
    gap: 38px;
  }

}


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

@media (max-width: 760px) {

  /* HERO */

  .toe-readings-hero {
    min-height: 590px;
    align-items: flex-end;
  }

  .toe-readings-hero__image {
    object-position: center;
  }

  .toe-readings-hero__overlay {
    background:
      linear-gradient(
        0deg,
        rgba(15, 16, 14, 0.88) 0%,
        rgba(15, 16, 14, 0.58) 58%,
        rgba(15, 16, 14, 0.18) 100%
      );
  }

  .toe-readings-hero__inner {
    width: calc(100% - 42px);
    padding: 100px 0 64px;
  }

  .toe-readings-hero h1 {
    font-size: clamp(50px, 15vw, 70px);
  }

  .toe-readings-hero__subtitle {
    margin-top: 28px;
    font-size: 9px;
  }


  /* INTRO */

  .toe-readings-intro {
    padding: 72px 0 76px;
  }

  .toe-readings-intro__inner {
    width: calc(100% - 42px);
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .toe-readings-intro__mark {
    padding: 0;
  }

  .toe-readings-intro__copy h2 {
    font-size: 38px;
  }

  .toe-readings-intro__copy p {
    font-size: 13px;
  }


  /* READING OPTIONS */

  .toe-reading-option {
    padding: 67px 0;
  }

  .toe-reading-option__inner {
    width: calc(100% - 42px);
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .toe-reading-option__number {
    padding: 0;
  }

  .toe-reading-option__content h2 {
    font-size: 43px;
  }

  .toe-reading-option__lead {
    font-size: 21px !important;
  }

  .toe-reading-option__purchase {
    min-height: auto;
    margin-top: 8px;
    padding: 27px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(87, 78, 62, 0.20);
  }

  .toe-reading-option__aside {
    max-width: 100%;
  }

  .toe-reading-option__purchase-bottom {
    margin-top: 34px;
  }


  /* DISCUSSION */

  .toe-readings-discussion {
    padding: 72px 0;
  }

  .toe-readings-discussion__inner {
    width: calc(100% - 42px);
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .toe-readings-discussion__copy h2 {
    font-size: 39px;
  }

  .toe-readings-discussion__price {
    margin-top: 7px;
    padding: 25px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(218, 198, 162, 0.24);
  }


  /* CLOSING */

  .toe-readings-closing {
    padding: 80px 0 84px;
  }

  .toe-readings-closing__inner {
    width: calc(100% - 42px);
  }

  .toe-readings-closing h2 {
    font-size: 49px;
  }

}


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

@media (max-width: 480px) {

  .toe-readings-hero {
    min-height: 550px;
  }

  .toe-readings-hero__inner,
  .toe-readings-intro__inner,
  .toe-reading-option__inner,
  .toe-readings-discussion__inner,
  .toe-readings-closing__inner {
    width: calc(100% - 34px);
  }

  .toe-readings-hero h1 {
    font-size: 49px;
  }

  .toe-readings-intro__copy h2 {
    font-size: 34px;
  }

  .toe-reading-option__content h2 {
    font-size: 38px;
  }

  .toe-readings-discussion__copy h2 {
    font-size: 36px;
  }

  .toe-readings-closing h2 {
    font-size: 43px;
  }

}
/* FIX — Chart Reading purchase column spacing */
.toe-reading-option__purchase {
  justify-content: flex-start !important;
}

.toe-reading-option__purchase-bottom {
  margin-top: 42px !important;
}
/* FIX — Chart Readings hero image */
.toe-readings-hero {
  background-image:
    linear-gradient(
      rgba(8, 12, 13, 0.30),
      rgba(8, 12, 13, 0.30)
    ),
    url("https://21540556.fs1.hubspotusercontent-na1.net/hubfs/21540556/IMG_7174.jpeg") !important;
}
/* FIX — Force Chart Readings starry palms hero */

.toe-readings-hero__image {
  display: none !important;
}

.toe-readings-hero {
  background:
    url("https://21540556.fs1.hubspotusercontent-na1.net/hubfs/21540556/IMG_7174.jpeg")
    center center / cover no-repeat !important;
}
/* FIX — Clarify Chart Reading report length */

.toe-reading-option__purchase-label {
  font-size: 0 !important;
}

.toe-reading-option__purchase-label::after {
  content: "PERSONALIZED 80–100 PAGE WRITTEN READING";
  font-size: 11px !important;
}
/* FIX — Clarify Chart Reading report length */

.toe-reading-option__format {
  font-size: 0 !important;
}

.toe-reading-option__format::after {
  content: "PERSONALIZED 80–100 PAGE WRITTEN READING";
  font-family: "Inter", sans-serif;
  font-size: 8px !important;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #81796c;
}
/* =========================================================
   MONTHLY GUIDANCE PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.toe-guidance-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #171816;
}

.toe-guidance-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.toe-guidance-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(15, 16, 14, 0.80) 0%,
      rgba(15, 16, 14, 0.60) 42%,
      rgba(15, 16, 14, 0.24) 72%,
      rgba(15, 16, 14, 0.10) 100%
    );
}

.toe-guidance-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 110px 0 100px;
  color: #f4eee3;
}

.toe-guidance-hero__eyebrow {
  margin: 0 0 25px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c5a56a;
}

.toe-guidance-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(60px, 6.3vw, 94px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: #f4eee3;
}

.toe-guidance-hero__subtitle {
  max-width: 600px;
  margin: 35px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(244, 238, 227, 0.82);
}


/* =========================================================
   INTRO
========================================================= */

.toe-guidance-intro {
  padding: 100px 0 105px;
  background: #f3eee4;
}

.toe-guidance-intro__inner {
  width: min(980px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 44px;
  align-items: start;
}

.toe-guidance-intro__mark {
  padding-top: 8px;
  font-size: 18px;
  line-height: 1;
  color: #a47e43;
}

.toe-guidance-intro__copy {
  max-width: 790px;
}

.toe-guidance-intro__copy h2 {
  max-width: 760px;
  margin: 0 0 34px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 4vw, 53px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #252621;
}

.toe-guidance-intro__copy p {
  max-width: 710px;
  margin: 0 0 18px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  color: #4d4a43;
}

.toe-guidance-intro__copy p:last-child {
  margin-bottom: 0;
}

.toe-guidance-intro__closing {
  margin-top: 28px !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 22px !important;
  font-style: italic;
  line-height: 1.5 !important;
  color: #6b655b !important;
}


/* =========================================================
   THE WORK
========================================================= */

.toe-guidance-work {
  padding: 100px 0 105px;
  background: #f8f5ee;
}

.toe-guidance-work__inner {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

.toe-guidance-work__heading {
  max-width: 720px;
  margin-bottom: 58px;
}

.toe-guidance-work__eyebrow {
  margin: 0 0 18px;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: #9b7945;
}

.toe-guidance-work__heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 4.6vw, 62px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #252621;
}

.toe-guidance-work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(87, 78, 62, 0.20);
  border-left: 1px solid rgba(87, 78, 62, 0.20);
}

.toe-guidance-work__item {
  min-height: 260px;
  padding: 34px 34px 38px;
  border-right: 1px solid rgba(87, 78, 62, 0.20);
  border-bottom: 1px solid rgba(87, 78, 62, 0.20);
}

.toe-guidance-work__item span {
  display: block;
  margin-bottom: 40px;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.17em;
  color: #a47e43;
}

.toe-guidance-work__item h3 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  color: #292a25;
}

.toe-guidance-work__item p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.75;
  color: #59554d;
}


/* =========================================================
   TRANSITS
========================================================= */

.toe-guidance-transits {
  padding: 96px 0;
  background: #252622;
  color: #f3ede1;
}

.toe-guidance-transits__inner {
  width: min(1080px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 160px minmax(420px, 1fr) 190px;
  gap: 55px;
  align-items: start;
}

.toe-guidance-transits__label {
  padding-top: 7px;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: #c1a16b;
}

.toe-guidance-transits__copy h2 {
  max-width: 620px;
  margin: 0 0 28px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #f3ede1;
}

.toe-guidance-transits__copy p {
  max-width: 620px;
  margin: 0 0 16px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.82;
  color: rgba(243, 237, 225, 0.76);
}

.toe-guidance-transits__copy p:last-child {
  margin-bottom: 0;
}

.toe-guidance-transits__aside {
  padding: 7px 0 0 34px;
  border-left: 1px solid rgba(218, 198, 162, 0.24);
}

.toe-guidance-transits__aside p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.6;
  color: #d0ad72;
}


/* =========================================================
   INCLUDED
========================================================= */

.toe-guidance-included {
  padding: 100px 0 105px;
  background: #eee7db;
}

.toe-guidance-included__inner {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

.toe-guidance-included__heading {
  max-width: 780px;
  margin-bottom: 58px;
}

.toe-guidance-included__eyebrow {
  margin: 0 0 18px;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: #9b7945;
}

.toe-guidance-included__heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 4.6vw, 60px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: #252621;
}

.toe-guidance-included__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(87, 78, 62, 0.20);
  border-left: 1px solid rgba(87, 78, 62, 0.20);
}

.toe-guidance-included__item {
  min-height: 240px;
  padding: 34px 34px 38px;
  border-right: 1px solid rgba(87, 78, 62, 0.20);
  border-bottom: 1px solid rgba(87, 78, 62, 0.20);
}

.toe-guidance-included__item span {
  display: block;
  margin-bottom: 38px;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.17em;
  color: #a47e43;
}

.toe-guidance-included__item h3 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.05;
  color: #292a25;
}

.toe-guidance-included__item p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.75;
  color: #59554d;
}


/* =========================================================
   ENROLLMENT
========================================================= */

.toe-guidance-enroll {
  padding: 100px 0 105px;
  background: #f8f5ee;
}

.toe-guidance-enroll__inner {
  width: min(1080px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(440px, 1fr) 300px;
  gap: 70px;
  align-items: stretch;
}

.toe-guidance-enroll__copy {
  max-width: 680px;
}

.toe-guidance-enroll__eyebrow {
  margin: 0 0 20px;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: #9b7945;
}

.toe-guidance-enroll__copy h2 {
  margin: 0 0 25px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 4.8vw, 62px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #252621;
}

.toe-guidance-enroll__copy p {
  max-width: 610px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 21px;
  font-style: italic;
  line-height: 1.5;
  color: #6a655c;
}

.toe-guidance-enroll__action {
  padding: 10px 0 8px 40px;
  border-left: 1px solid rgba(87, 78, 62, 0.20);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.toe-guidance-enroll__price {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 47px;
  font-weight: 400;
  line-height: 1;
  color: #292a25;
}

.toe-guidance-enroll__price span {
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #81796c;
}

.toe-guidance-enroll__includes {
  margin: 0 0 30px;
  font-family: "Inter", sans-serif;
  font-size: 8px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #81796c;
}

.toe-guidance-enroll__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding-bottom: 7px;
  border-bottom: 1px solid #9b7945;
  font-family: "Inter", sans-serif;
  font-size: 8px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  color: #725a35;
}


/* =========================================================
   RETURN
========================================================= */

.toe-guidance-return {
  padding: 58px 0;
  background: #f3eee4;
  text-align: center;
}

.toe-guidance-return__inner {
  width: min(820px, calc(100% - 80px));
  margin: 0 auto;
}

.toe-guidance-return__mark {
  margin: 0 0 20px;
  font-size: 16px;
  color: #a47e43;
}

.toe-guidance-return a {
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 1px solid #9b7945;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.15em;
  text-decoration: none;
  color: #725a35;
}


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

@media (max-width: 1050px) {

  .toe-guidance-hero {
    min-height: 590px;
  }

  .toe-guidance-work__grid,
  .toe-guidance-included__details {
    grid-template-columns: repeat(2, 1fr);
  }

  .toe-guidance-transits__inner {
    grid-template-columns: 130px 1fr 170px;
    gap: 38px;
  }

  .toe-guidance-enroll__inner {
    grid-template-columns: minmax(360px, 1fr) 260px;
    gap: 50px;
  }

}


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

@media (max-width: 760px) {

  .toe-guidance-hero {
    min-height: 590px;
    align-items: flex-end;
  }

  .toe-guidance-hero__image {
    object-position: center;
  }

  .toe-guidance-hero__overlay {
    background:
      linear-gradient(
        0deg,
        rgba(15, 16, 14, 0.88) 0%,
        rgba(15, 16, 14, 0.58) 58%,
        rgba(15, 16, 14, 0.18) 100%
      );
  }

  .toe-guidance-hero__inner {
    width: calc(100% - 42px);
    padding: 100px 0 64px;
  }

  .toe-guidance-hero h1 {
    font-size: clamp(50px, 15vw, 70px);
  }

  .toe-guidance-hero__subtitle {
    margin-top: 28px;
    font-size: 9px;
  }


  /* INTRO */

  .toe-guidance-intro {
    padding: 72px 0 76px;
  }

  .toe-guidance-intro__inner {
    width: calc(100% - 42px);
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .toe-guidance-intro__mark {
    padding: 0;
  }

  .toe-guidance-intro__copy h2 {
    font-size: 38px;
  }

  .toe-guidance-intro__copy p {
    font-size: 13px;
  }


  /* WORK */

  .toe-guidance-work {
    padding: 74px 0 78px;
  }

  .toe-guidance-work__inner {
    width: calc(100% - 42px);
  }

  .toe-guidance-work__heading {
    margin-bottom: 42px;
  }

  .toe-guidance-work__heading h2 {
    font-size: 43px;
  }

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

  .toe-guidance-work__item {
    min-height: 0;
    padding: 30px 27px 33px;
  }

  .toe-guidance-work__item span {
    margin-bottom: 28px;
  }


  /* TRANSITS */

  .toe-guidance-transits {
    padding: 72px 0;
  }

  .toe-guidance-transits__inner {
    width: calc(100% - 42px);
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .toe-guidance-transits__copy h2 {
    font-size: 39px;
  }

  .toe-guidance-transits__aside {
    padding: 25px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(218, 198, 162, 0.24);
  }


  /* INCLUDED */

  .toe-guidance-included {
    padding: 74px 0 78px;
  }

  .toe-guidance-included__inner {
    width: calc(100% - 42px);
  }

  .toe-guidance-included__heading {
    margin-bottom: 42px;
  }

  .toe-guidance-included__heading h2 {
    font-size: 42px;
  }

  .toe-guidance-included__details {
    grid-template-columns: 1fr;
  }

  .toe-guidance-included__item {
    min-height: 0;
    padding: 30px 27px 33px;
  }


  /* ENROLL */

  .toe-guidance-enroll {
    padding: 76px 0 80px;
  }

  .toe-guidance-enroll__inner {
    width: calc(100% - 42px);
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .toe-guidance-enroll__copy h2 {
    font-size: 43px;
  }

  .toe-guidance-enroll__action {
    padding: 28px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(87, 78, 62, 0.20);
  }


  /* RETURN */

  .toe-guidance-return__inner {
    width: calc(100% - 42px);
  }

}


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

@media (max-width: 480px) {

  .toe-guidance-hero {
    min-height: 550px;
  }

  .toe-guidance-hero__inner,
  .toe-guidance-intro__inner,
  .toe-guidance-work__inner,
  .toe-guidance-transits__inner,
  .toe-guidance-included__inner,
  .toe-guidance-enroll__inner,
  .toe-guidance-return__inner {
    width: calc(100% - 34px);
  }

  .toe-guidance-hero h1 {
    font-size: 49px;
  }

  .toe-guidance-intro__copy h2 {
    font-size: 34px;
  }

  .toe-guidance-work__heading h2,
  .toe-guidance-included__heading h2,
  .toe-guidance-enroll__copy h2 {
    font-size: 38px;
  }

  .toe-guidance-transits__copy h2 {
    font-size: 36px;
  }

}