@charset "UTF-8";
:root {
  --color-red: #E63946;
  --color-teal: #2A9D8F;
  --color-yellow: #F4C430;
  --color-blue: #457B9D;
  --color-green: #588157;
  --color-plum: #7B2CBF;
  --color-charcoal: #1D3557;
  --color-cream: #FAF6EC;
  --color-white: #FFFFFF;
  --container: 1200px;
}

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

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body,
h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  margin: 0;
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

p, li {
  text-wrap: pretty;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/fira-sans-v18-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/fira-sans-v18-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/fira-sans-v18-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/montserrat-v31-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/montserrat-v31-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/montserrat-v31-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/jetbrains-mono-v24-latin-regular.woff2") format("woff2");
}
body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1D3557;
  line-height: 1.6;
  font-size: clamp(1rem, 2vw, 1.125rem);
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  color: #1D3557;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

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

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

h4 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  margin: 0 0 1rem;
}

a {
  color: #E63946;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
  transition: color 150ms ease;
}
a:hover {
  color: #2A9D8F;
}

code, pre, kbd, samp {
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 0.95em;
}

code {
  background: #F7F7F7;
  color: #404040;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  font-size: 0.92em;
}

pre {
  background: #F7F7F7;
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
}
pre code {
  background: none;
  padding: 0;
}

small {
  font-size: 0.85em;
  color: #737373;
}

strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 1.5rem;
  }
}

.container--narrow {
  max-width: 720px;
}

.container--wide {
  max-width: 1400px;
}

.grid-4, .grid-3, .grid-2 {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.section {
  padding-block: 4rem;
}
@media (max-width: 768px) {
  .section {
    padding-block: 3rem;
  }
}

.section--soft {
  background: #FAF6EC;
}

.section--dark {
  background: #1D3557;
  color: #FFFFFF;
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4, .section--dark h5, .section--dark h6 {
  color: #FFFFFF;
}

.cta-banner,
.newsletter-signup,
.hero,
.three-tiles {
  width: 100%;
  box-sizing: border-box;
}

.cta-banner {
  --cta-bg: #E63946;
  background: var(--cta-bg);
  color: #FFFFFF;
  padding-block: 3rem;
  margin-block: 3rem;
}
.cta-banner__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.cta-banner__title {
  color: #FFFFFF;
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}
.cta-banner__body {
  margin: 0;
  max-width: 60ch;
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 700;
}
.cta-banner__cta {
  margin: 0.75rem 0 0;
}
.cta-banner .cta-banner__btn {
  background: var(--cta-bg);
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.cta-banner .cta-banner__btn:hover {
  background: #FFFFFF;
  color: var(--cta-bg);
}
.cta-banner[data-bg-tone=light] {
  color: #1D3557;
}
.cta-banner[data-bg-tone=light] .cta-banner__title {
  color: #1D3557;
}
.cta-banner[data-bg-tone=light] .cta-banner__body {
  color: #1D3557;
}
.cta-banner[data-bg-tone=light] .cta-banner__btn {
  background: var(--cta-bg);
  color: #1D3557;
  border-color: #1D3557;
}
.cta-banner[data-bg-tone=light] .cta-banner__btn:hover {
  background: #1D3557;
  color: var(--cta-bg);
}

.newsletter-signup {
  background: #FAF6EC;
  padding-block: 3rem;
  margin-block: 3rem;
}
.newsletter-signup--compact {
  padding-block: 1.5rem;
  margin-block: 1.5rem;
}
.newsletter-signup__heading {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}
.newsletter-signup__body {
  margin: 0 0 1.5rem;
  color: #1D3557;
  max-width: 60ch;
}
.newsletter-signup__form {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #D4D4D4;
}
.newsletter-signup__form iframe {
  display: block;
  width: 100%;
  border: 0;
}
.newsletter-signup__placeholder {
  padding: 1.5rem;
  background: #FFFFFF;
  border: 1px dashed #D4D4D4;
  border-radius: 8px;
  color: #737373;
  text-align: center;
}
.newsletter-signup__privacy {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: #404040;
}

.ghl-form {
  margin-block: 2rem;
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #D4D4D4;
}
.ghl-form iframe {
  display: block;
  width: 100%;
  border: 0;
}

.hero {
  background: linear-gradient(135deg, #FAF6EC 0%, #FFFFFF 60%);
  padding-block: 4rem;
  border-bottom: 1px solid rgba(29, 53, 87, 0.08);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.hero__eyebrow {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgb(25.8542713568, 96.6457286432, 88.027638191);
  margin: 0 0 0.75rem;
}
.hero__heading {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  color: #1D3557;
}
.hero__subhead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #1D3557;
  max-width: 48ch;
  margin: 0 0 2rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .hero__subhead {
    margin-inline: auto;
  }
}
.hero__ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0;
}
@media (max-width: 768px) {
  .hero__ctas {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .hero__visual {
    display: flex;
    justify-content: center;
    order: -1;
  }
}
.hero__photo-frame {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #E63946;
  box-shadow: 0 8px 32px rgba(230, 57, 70, 0.2);
}
.hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .hero__photo-frame {
    width: 160px;
    height: 160px;
  }
}
.hero__scroll {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
  grid-column: 1/-1;
}
@media (max-width: 768px) {
  .hero__scroll {
    display: none;
  }
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(29, 53, 87, 0.3), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-line {
    animation: none;
  }
}

@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 0;
  }
}
.three-tiles {
  background: #FFFFFF;
}
.three-tiles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .three-tiles__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.tile {
  --tile-accent: #2A9D8F;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid rgba(29, 53, 87, 0.1);
  border-top: 4px solid var(--tile-accent);
  text-decoration: none;
  color: #1D3557;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.tile:hover {
  box-shadow: 0 8px 24px rgba(29, 53, 87, 0.12);
  transform: translateY(-2px);
  color: #1D3557;
}
.tile--speaking {
  --tile-accent: #F4C430;
}
.tile--writing {
  --tile-accent: #2A9D8F;
}
.tile--cooking {
  --tile-accent: #7B2CBF;
}
.tile__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(29, 53, 87, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--tile-accent);
}
.tile--speaking .tile__icon {
  color: rgb(156.1995412844, 119.9793577982, 8.3004587156);
}
.tile__heading {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.tile__copy {
  font-size: 0.95rem;
  color: #1D3557;
  line-height: 1.6;
  flex: 1;
  margin: 0 0 1rem;
}
.tile__cta {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1D3557;
}
.tile:hover .tile__cta {
  color: var(--tile-accent);
}
.tile--speaking:hover .tile__cta {
  color: #1D3557;
}
@media (max-width: 768px) {
  .tile {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto auto;
    gap: 0 1rem;
    padding: 1rem 1.5rem;
  }
  .tile .tile__icon {
    grid-row: 1/3;
    margin-bottom: 0;
    align-self: center;
  }
  .tile .tile__heading {
    font-size: 1rem;
    margin: 0 0 0.25rem;
  }
  .tile .tile__copy {
    font-size: 0.875rem;
    grid-column: 2;
    margin-bottom: 0.5rem;
  }
  .tile .tile__cta {
    grid-column: 2;
    margin-top: 0;
  }
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .topics-grid {
    grid-template-columns: 1fr;
  }
}

.section__heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #1D3557;
  margin: 0 0 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(29, 53, 87, 0.1);
}

.section__cta {
  margin-top: 2rem;
  text-align: center;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 2rem;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
}
.pagination__current {
  color: #737373;
  font-weight: 400;
}
.pagination a {
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #FFFFFF;
  border-bottom: 2px solid #E63946;
  box-shadow: 0 1px 2px rgba(29, 53, 87, 0.05);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.75rem;
}

.site-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-header__logo img {
  height: 36px;
  width: auto;
  display: block;
}

.site-nav {
  display: none;
}
@media (min-width: 1024px) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}
.site-nav a {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  color: #1D3557;
  text-decoration: none;
  padding-block: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: color 150ms ease, border-color 150ms ease;
}
.site-nav a:hover {
  color: #E63946;
}
.site-nav a[aria-current=page] {
  color: #1D3557;
  border-bottom-color: #E63946;
}

.site-header__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #1D3557;
}
@media (min-width: 1024px) {
  .site-header__toggle {
    display: none;
  }
}
.site-header__toggle:focus-visible {
  outline: 2px solid #E63946;
  outline-offset: 2px;
}

.site-nav.nav-open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  padding: 1rem;
  background: #FFFFFF;
  border-top: 1px solid #D4D4D4;
}
@media (min-width: 1024px) {
  .site-nav.nav-open {
    display: flex;
    flex-direction: row;
  }
}

.site-footer {
  background: #1D3557;
  color: rgba(255, 255, 255, 0.75);
  padding-top: 4rem;
  padding-bottom: 2rem;
  margin-top: auto;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.site-footer__logo {
  display: inline-flex;
  margin-bottom: 0.5rem;
}
.site-footer__logo img {
  height: 32px;
  width: auto;
  display: block;
}
.site-footer__tagline {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.site-footer__bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 32ch;
}
.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.site-footer__social {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s;
}
.site-footer__social:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}
.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .site-footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .site-footer__nav {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.site-footer__col-heading {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-footer__links a {
  font-size: 0.9rem;
  color: #FFFFFF;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 0.2em;
  transition: text-decoration-color 0.2s;
  line-height: 1.4;
}
.site-footer__links a:hover {
  text-decoration-color: #FFFFFF;
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 640px) {
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.site-footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.site-footer__legal {
  display: flex;
  gap: 1rem;
}
.site-footer__legal a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer__legal a:hover {
  color: #FFFFFF;
}

.btn-buy, .btn-outline, .btn-secondary, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 4px;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn-buy:focus-visible, .btn-outline:focus-visible, .btn-secondary:focus-visible, .btn-primary:focus-visible {
  outline: 2px solid #E63946;
  outline-offset: 2px;
}
.btn-buy:disabled, .btn-outline:disabled, .btn-secondary:disabled, .btn-primary:disabled, [aria-disabled=true].btn-buy, [aria-disabled=true].btn-outline, [aria-disabled=true].btn-secondary, [aria-disabled=true].btn-primary {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background: #E63946;
  color: #FFFFFF;
}
.btn-primary:hover {
  background: rgb(209.5426008969, 26.4573991031, 40.2152466368);
  color: #FFFFFF;
}

.btn-secondary {
  background: #2A9D8F;
  color: #FFFFFF;
}
.btn-secondary:hover {
  background: rgb(31.2361809045, 116.7638190955, 106.351758794);
  color: #FFFFFF;
}

.btn-outline {
  background: transparent;
  color: #E63946;
  border-color: #E63946;
}
.btn-outline:hover {
  background: #E63946;
  color: #FFFFFF;
}

.btn-buy {
  background: #E63946;
  color: #FFFFFF;
  padding: 1rem 2rem;
  font-size: 1.05rem;
}
.btn-buy:hover {
  background: rgb(209.5426008969, 26.4573991031, 40.2152466368);
  color: #FFFFFF;
}
.btn-buy[data-price]::after {
  content: " — " attr(data-price);
  font-weight: 400;
  opacity: 0.9;
}

.recipe-card, .post-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 8px;
  --card-accent: #E63946;
  border-top: 4px solid var(--card-accent);
  box-shadow: 0 1px 2px rgba(29, 53, 87, 0.05);
  overflow: hidden;
  transition: box-shadow 250ms ease, transform 250ms ease;
}
.recipe-card:hover, .post-card:hover {
  box-shadow: 0 4px 12px rgba(29, 53, 87, 0.08);
  transform: translateY(-2px);
}
.recipe-card .card__media, .post-card .card__media {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.recipe-card .card__media img, .post-card .card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recipe-card .card__body, .post-card .card__body {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.recipe-card .card__title, .post-card .card__title {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0;
}
.recipe-card .card__title a, .post-card .card__title a {
  color: #1D3557;
  text-decoration: none;
}
.recipe-card .card__title a:hover, .post-card .card__title a:hover {
  color: #E63946;
}
.recipe-card .card__meta, .post-card .card__meta {
  font-size: 0.85rem;
  color: #737373;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.recipe-card .card__excerpt, .post-card .card__excerpt {
  color: #1D3557;
  flex: 1;
}

.recipe-card {
  border-top-color: #7B2CBF;
}

.topic-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #FFFFFF;
  border: 1px solid rgba(29, 53, 87, 0.1);
  border-top: 3px solid #F4C430;
  border-radius: 6px;
  padding: 1.5rem;
  text-decoration: none;
  color: #1D3557;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.topic-card:hover {
  box-shadow: 0 4px 16px rgba(29, 53, 87, 0.1);
  transform: translateY(-1px);
}
.topic-card__title {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.topic-card__title a {
  color: #1D3557;
  text-decoration: none;
}
.topic-card__title a:hover {
  color: rgb(156.1995412844, 119.9793577982, 8.3004587156);
}
.topic-card__synopsis {
  font-size: 0.875rem;
  color: #1D3557;
  line-height: 1.6;
  flex: 1;
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.topic-card__formats {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.topic-card__cta-row {
  margin: auto 0 0;
}
.topic-card__cta {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1D3557;
  text-decoration: none;
}
.topic-card__cta:hover {
  color: rgb(156.1995412844, 119.9793577982, 8.3004587156);
}

.post-card[data-category=mexico-life],
.post-card--mexico-life {
  border-top-color: #E63946;
}

.post-card[data-category=falling-in-out],
.post-card--falling-in-out {
  border-top-color: #588157;
}

.post-card[data-category=personal],
.post-card--personal {
  border-top-color: #E63946;
}

.post-card[data-category=tech-ai],
.post-card--tech-ai {
  border-top-color: #2A9D8F;
}

.post-card[data-category=networking],
.post-card--networking {
  border-top-color: #F4C430;
}

.post-card[data-category=travel],
.post-card--travel {
  border-top-color: #457B9D;
}

.post-card[data-category=recipes],
.post-card--recipes {
  border-top-color: #7B2CBF;
}

.project-tile {
  --project-color: #2A9D8F;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid rgba(29, 53, 87, 0.1);
  border-top: 3px solid var(--project-color);
  padding: 1.5rem;
  text-decoration: none;
  color: #1D3557;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.project-tile:hover {
  box-shadow: 0 4px 16px rgba(29, 53, 87, 0.1);
  transform: translateY(-1px);
  color: #1D3557;
}

.project-tile__name {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #1D3557;
  margin: 0;
}

.project-tile__tagline {
  font-size: 0.875rem;
  color: #1D3557;
  line-height: 1.5;
  margin: 0;
}

.project-tile__event {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(29, 53, 87, 0.08);
}

.project-tile__event-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1D3557;
}

.project-tile__event-date {
  font-size: 0.75rem;
  color: #1D3557;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  white-space: nowrap;
}

.project-tile__meta {
  font-size: 0.75rem;
  color: #1D3557;
  margin-top: 0.25rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

.category-badge {
  --badge-color: #E63946;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  max-width: 100%;
  background: transparent;
  color: #1D3557;
  border-left: 3px solid var(--badge-color);
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 0.2rem 0.5rem 0.2rem 0.75rem;
  border-radius: 0;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 150ms ease;
}
.category-badge:hover {
  color: var(--badge-color);
}
.category-badge[data-category=networking]:hover {
  color: rgb(156.1995412844, 119.9793577982, 8.3004587156);
}

.format-pills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.format-pill,
.cuisine-pill {
  display: inline-flex;
  align-items: center;
  background: #FAF6EC;
  color: #1D3557;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.cuisine-pill {
  background: rgba(123, 44, 191, 0.12);
  color: #7B2CBF;
}

.card__cta {
  margin: 0;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
}
.card__cta a {
  text-decoration: none;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.filter-pill {
  padding: 0.5rem 1rem;
  border: 2px solid #2A9D8F;
  border-radius: 999px;
  background: transparent;
  color: #1D3557;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}
.filter-pill:hover {
  background: rgba(42, 157, 143, 0.1);
}
.filter-pill.active {
  background: #1D3557;
  color: #FFFFFF;
  border-color: #1D3557;
}
.filter-pill:focus-visible {
  outline: 2px solid #E63946;
  outline-offset: 2px;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.recipe-grid__item.hidden {
  display: none;
}

.post-card .card__media {
  background: var(--card-accent, #2A9D8F);
}

.recipe-card .card__media {
  background: #7B2CBF;
}

.topic-card .card__media {
  background: #F4C430;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(29, 53, 87, 0.05);
  padding: 1rem;
  border-top: 3px solid #E63946;
}
.product-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.product-card__price {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #E63946;
  margin: 0.5rem 0;
}

.coming-soon {
  text-align: center;
  font-size: 1.125rem;
  color: #1D3557;
  padding: 4rem 0;
}

.newsletter-issue-card {
  margin-block: 1.5rem;
  padding: 1rem;
  border-left: 3px solid #2A9D8F;
  background: #FAF6EC;
  border-radius: 4px;
}
.newsletter-issue-card h3 {
  margin: 0 0 0.25rem;
}
.newsletter-issue-card h3 a {
  color: #1D3557;
  text-decoration: none;
}
.newsletter-issue-card h3 a:hover {
  color: #E63946;
}
.newsletter-issue-card time {
  color: #737373;
  font-size: 0.85rem;
}

.post {
  margin-block: 3rem;
}

.post__hero {
  border-top: 6px solid #E63946;
  margin-bottom: 2rem;
}
.post__hero[data-category=mexico-life] {
  border-top-color: #E63946;
}
.post__hero[data-category=falling-in-out] {
  border-top-color: #588157;
}
.post__hero[data-category=personal] {
  border-top-color: #E63946;
}
.post__hero[data-category=tech-ai] {
  border-top-color: #2A9D8F;
}
.post__hero[data-category=networking] {
  border-top-color: #F4C430;
}
.post__hero[data-category=travel] {
  border-top-color: #457B9D;
}
.post__hero[data-category=recipes] {
  border-top-color: #7B2CBF;
}
.post__hero img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
}

.post__title {
  max-width: 30ch;
  margin-block: 1rem 0.5rem;
}

.post__meta {
  color: #737373;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.reading-time {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #FAF6EC;
  color: #1D3557;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.post__body {
  max-width: 72ch;
  margin-inline: auto;
  line-height: 1.8;
}
.post__body h2, .post__body h3, .post__body h4 {
  scroll-margin-top: 80px;
}
.post__body h2 .heading-anchor, .post__body h3 .heading-anchor, .post__body h4 .heading-anchor {
  opacity: 0;
  margin-left: 0.5rem;
  color: #2A9D8F;
  text-decoration: none;
  font-weight: 400;
  transition: opacity 150ms ease;
}
.post__body h2:hover .heading-anchor, .post__body h3:hover .heading-anchor, .post__body h4:hover .heading-anchor {
  opacity: 1;
}
.post__body h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(29, 53, 87, 0.08);
}
.post__body h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.post__body h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.post__body > p:first-of-type {
  font-size: 1.1rem;
  color: #1D3557;
  line-height: 1.75;
}
.post__body p {
  margin: 0 0 1rem;
}
.post__body ul, .post__body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.post__body ul li, .post__body ol li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.post__body blockquote {
  border-left: 3px solid #2A9D8F;
  padding: 0.75rem 1.5rem;
  margin: 2rem 0;
  background: rgba(42, 157, 143, 0.04);
  border-radius: 0 4px 4px 0;
}
.post__body blockquote p {
  font-style: italic;
  font-size: 1.05rem;
  color: #1D3557;
  margin: 0;
}
.post__body img, .post__body figure {
  width: 100%;
  margin: 2rem 0;
}
.post__body img img, .post__body figure img {
  width: 100%;
  border-radius: 4px;
}
.post__body img figcaption, .post__body figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #1D3557;
  text-align: center;
}
.post__body hr {
  border: none;
  border-top: 1px solid rgba(29, 53, 87, 0.1);
  margin: 3rem auto;
  width: 40%;
}

.breadcrumb {
  margin-bottom: 1.5rem;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.85rem;
}
.breadcrumb__link {
  color: #1D3557;
  text-decoration: underline;
  text-decoration-color: rgba(29, 53, 87, 0.3);
  text-underline-offset: 0.2em;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
}
.breadcrumb__link:hover {
  color: #E63946;
  text-decoration-color: #E63946;
}
.breadcrumb__sep {
  color: #1D3557;
  opacity: 0.4;
}
.breadcrumb__item--current {
  color: #1D3557;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
}

.figure {
  margin: 2rem 0;
}
.figure img {
  width: 100%;
  border-radius: 4px;
  display: block;
}
.figure__caption {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #737373;
  text-align: center;
  line-height: 1.5;
}
.figure__credit {
  color: #737373;
  font-style: italic;
}

.pull-quote {
  margin: 2rem 0;
  padding: 0.5rem 1.5rem;
  border-left: 4px solid #2A9D8F;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.4;
  color: #1D3557;
}
.pull-quote p {
  margin: 0 0 0.75rem;
}
.pull-quote__cite {
  display: block;
  margin-top: 0.5rem;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: #737373;
}

.callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid #2A9D8F;
  background: rgba(42, 157, 143, 0.06);
  border-radius: 4px;
}
.callout__icon {
  font-size: 1.25rem;
  line-height: 1.4;
  color: #2A9D8F;
}
.callout__body > :first-child {
  margin-top: 0;
}
.callout__body > :last-child {
  margin-bottom: 0;
}
.callout--info {
  border-left-color: #2A9D8F;
  background: rgba(42, 157, 143, 0.06);
}
.callout--info .callout__icon {
  color: #2A9D8F;
}
.callout--warning {
  border-left-color: #F4C430;
  background: rgba(244, 196, 48, 0.12);
}
.callout--warning .callout__icon {
  color: rgb(219.1541284404, 168.3357798165, 11.6458715596);
}
.callout--note {
  border-left-color: #E63946;
  background: rgba(230, 57, 70, 0.06);
}
.callout--note .callout__icon {
  color: #E63946;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  border: 1px solid #D4D4D4;
  border-radius: 999px;
  background: #FFFFFF;
  color: #1D3557;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}
.share-btn:hover {
  background: #1D3557;
  color: #FFFFFF;
  border-color: #1D3557;
}
.share-btn:focus-visible {
  outline: 2px solid #E63946;
  outline-offset: 2px;
}
.share-btn--twitter:hover {
  background: #000;
  border-color: #000;
}
.share-btn--linkedin:hover {
  background: #0A66C2;
  border-color: #0A66C2;
}
.share-btn--email:hover {
  background: #2A9D8F;
  border-color: #2A9D8F;
}
.share-btn--copy {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.related-posts {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #D4D4D4;
}
.related-posts > h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.author-bio {
  background: #FAF6EC;
  border-radius: 8px;
  padding: 1.5rem;
  margin-block: 2rem;
  border-left: 4px solid #E63946;
}
.author-bio__inner {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (max-width: 640px) {
  .author-bio__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.author-bio__photo {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #E63946;
}
.author-bio__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.author-bio__byline {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #404040;
  margin: 0 0 0.25rem;
}
.author-bio__name {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.author-bio__name a {
  color: #1D3557;
  text-decoration: none;
}
.author-bio__name a:hover {
  color: #E63946;
}
.author-bio__copy {
  font-size: 0.875rem;
  color: #1D3557;
  line-height: 1.6;
  margin: 0 0 0.75rem;
}
.author-bio__links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .author-bio__links {
    justify-content: center;
  }
}
.author-bio__social {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1D3557;
  text-decoration: none;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(42, 157, 143, 0.5);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.author-bio__social:hover {
  background: #1D3557;
  color: #FFFFFF;
  border-color: #1D3557;
}

.affiliate-disclosure {
  margin: 2rem 0;
  padding: 0.75rem 1rem;
  background: #F7F7F7;
  border-left: 3px solid #F4C430;
  border-radius: 4px;
  font-size: 0.85rem;
  color: #404040;
  font-style: italic;
}

.comments {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #D4D4D4;
}
.comments__heading {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.page {
  margin-block: 0 3rem;
}
.page__title {
  margin-block: 2rem 0.5rem;
}
.page__subtitle {
  color: #737373;
  font-size: 1.1rem;
  margin-block: 0 1.5rem;
}
.page__hero {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  margin-bottom: 2rem;
  background: #1D3557;
}
.page__hero img {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}
.page__hero-credit {
  max-width: var(--container);
  margin: 0.5rem auto 0;
  padding-inline: 1rem;
  font-size: 0.8rem;
  color: #737373;
  text-align: right;
}

.about-intro {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0 2rem;
  border-bottom: 1px solid rgba(29, 53, 87, 0.08);
  margin-bottom: 2rem;
}
.about-intro__photo {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #E63946;
}
.about-intro__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-intro__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.about-intro__location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgb(25.8542713568, 96.6457286432, 88.027638191);
  margin: 0;
}
.about-intro__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(25.8542713568, 96.6457286432, 88.027638191);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .about-intro__dot {
    animation: none;
  }
}
.about-intro__roles {
  font-size: 0.95rem;
  color: #1D3557;
  margin: 0;
  font-style: italic;
}
@media (max-width: 640px) {
  .about-intro {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .about-intro .about-intro__location {
    justify-content: center;
  }
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}
.topic {
  margin-block: 3rem;
}
.topic__header {
  margin-bottom: 2rem;
  text-align: center;
}
.topic__title {
  margin-block: 0.75rem;
}
.topic__synopsis {
  max-width: 60ch;
  margin: 0 auto;
  font-size: 1.15rem;
  color: #1D3557;
}
.topic__section {
  margin-block: 2rem;
}
.topic__section h2 {
  margin-bottom: 0.75rem;
}
.topic__section ul {
  padding-left: 1.5rem;
}

.takeaways {
  list-style: "✓  " inside;
  padding-left: 0;
}
.takeaways li {
  padding-block: 0.5rem;
  border-bottom: 1px solid #F7F7F7;
}
.takeaways li:last-child {
  border-bottom: 0;
}

.video-embed {
  position: relative;
  aspect-ratio: 16/9;
  background: #1D3557;
  border-radius: 8px;
  overflow: hidden;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

.keynote-badge {
  display: inline-block;
  background: #E63946;
  color: #FFFFFF;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.product {
  margin-block: 3rem;
}

.product__layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3rem;
  align-items: start;
  padding-block: 2rem;
}
@media (max-width: 1024px) {
  .product__layout {
    grid-template-columns: 1fr;
  }
}

.product__media {
  position: sticky;
  top: 2rem;
}
@media (max-width: 1024px) {
  .product__media {
    position: static;
  }
}

.product__hero {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 4/3;
  background: rgba(230, 57, 70, 0.1);
}
.product__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product__price-block {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product__price {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #E63946;
  line-height: 1;
}

.product__currency {
  font-size: 1rem;
  color: #1D3557;
  font-weight: 600;
}

.product__cta-pending {
  background: #FAF6EC;
  border-left: 4px solid #2A9D8F;
  padding: 1rem 1.5rem;
  border-radius: 0 4px 4px 0;
  margin-block: 1.5rem 0.75rem;
  font-size: 0.95rem;
  color: #1D3557;
}

.product__trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #1D3557;
  margin-top: 0.75rem;
  font-weight: 600;
}
.product__trust svg {
  color: #588157;
  flex-shrink: 0;
}

.product__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 1rem;
}

.product__summary {
  font-size: 1.125rem;
  color: #1D3557;
  margin: 0 0 2rem;
  line-height: 1.7;
}

.product__features {
  margin-block: 2rem;
}
.product__features-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.75rem;
  color: #1D3557;
}
.product__features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product__features ul li {
  padding: 0.75rem 0 0.75rem 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(29, 53, 87, 0.08);
}
.product__features ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.75rem;
  color: #2A9D8F;
  font-weight: 700;
}
.product__features ul li:last-child {
  border-bottom: 0;
}

.ghl-form__placeholder {
  background: #FAF6EC;
  padding: 1.5rem;
  border-radius: 6px;
  text-align: center;
  font-size: 0.95rem;
  color: #1D3557;
  border: 1px dashed rgba(29, 53, 87, 0.2);
}

.newsletter-signup__placeholder {
  background: #FFFFFF;
  border: 1px dashed rgba(29, 53, 87, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  color: #1D3557;
}
.newsletter-signup__placeholder p {
  margin: 0;
}

.newsletter-issue {
  margin-block: 3rem;
}
.newsletter-issue__header {
  margin-bottom: 1.5rem;
}
.newsletter-issue__title {
  margin-block: 0.75rem;
}
.newsletter-issue__meta {
  color: #737373;
  font-size: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.newsletter-issue__back {
  margin-top: 2rem;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
}

.category-archive {
  --cat-color: #E63946;
  border-top: 6px solid var(--cat-color);
}
.category-archive__header {
  margin-bottom: 2rem;
  text-align: center;
}
.category-archive__title {
  margin-block: 0.75rem;
}
.category-archive__desc {
  color: #737373;
  max-width: 60ch;
  margin: 0 auto;
}

.recipe__title {
  margin-block: 0.75rem;
}
.recipe__summary {
  color: #1D3557;
  font-size: 1.1rem;
  max-width: 60ch;
}
.recipe__header {
  margin-bottom: 1.5rem;
}
.recipe__section {
  margin-block: 2rem;
}
.recipe__section h2 {
  margin-bottom: 1rem;
}
.recipe__headnote {
  margin-block: 1.5rem;
}
.recipe__print {
  margin-block: 2rem;
  text-align: center;
}
.recipe__ingredients li.checked label {
  text-decoration: line-through;
  opacity: 0.55;
}

.contact-fallback {
  background: #FAF6EC;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  margin-block: 2rem;
}
.contact-fallback p {
  margin-bottom: 1rem;
}

.contact-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(29, 53, 87, 0.1);
}
@media (max-width: 768px) {
  .contact-meta {
    grid-template-columns: 1fr;
  }
}
.contact-meta__item strong {
  display: block;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #404040;
  margin-bottom: 0.5rem;
}
.contact-meta__item p {
  font-size: 0.9rem;
  color: #1D3557;
  line-height: 1.6;
  margin: 0;
}

.albergue-posts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 640px) {
  .albergue-posts {
    grid-template-columns: 1fr;
  }
}

.albergue-card {
  background: #FAF6EC;
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 4px solid #588157;
}
.albergue-card__date {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #404040;
  margin-bottom: 0.5rem;
}
.albergue-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.albergue-card__title a {
  color: #1D3557;
  text-decoration: none;
}
.albergue-card__title a:hover {
  color: rgb(36.0555555556, 52.8541666667, 35.6458333333);
}
.albergue-card__stat {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgb(36.0555555556, 52.8541666667, 35.6458333333);
  margin-bottom: 0.5rem;
}
.albergue-card__excerpt {
  font-size: 0.875rem;
  color: #1D3557;
  line-height: 1.6;
  margin: 0;
}

.albergue-coming-soon {
  font-style: italic;
  color: #1D3557;
  padding: 2rem;
  text-align: center;
  background: #FAF6EC;
  border-radius: 8px;
}

.shelter-update {
  padding: 2rem 0 4rem;
}
.shelter-update__hero {
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
}
.shelter-update__hero img {
  width: 100%;
  height: auto;
  display: block;
}
.shelter-update__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}
.shelter-update__meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: #1D3557;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(29, 53, 87, 0.08);
}
.shelter-update__meta time {
  font-weight: 600;
  color: #1D3557;
}
.shelter-update__meals {
  color: rgb(36.0555555556, 52.8541666667, 35.6458333333);
  font-weight: 700;
}
.shelter-update__cost {
  color: rgb(25.8542713568, 96.6457286432, 88.027638191);
  font-weight: 700;
}
.shelter-update__menu {
  background: #FAF6EC;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid #588157;
}
.shelter-update__menu h2 {
  font-size: 1rem;
  margin: 0 0 0.75rem;
  border-bottom: none;
  padding-bottom: 0;
}
.shelter-update__menu ul {
  margin: 0;
  padding-left: 1.5rem;
}
.shelter-update__menu ul li {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}
.shelter-update__body {
  max-width: 72ch;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.shelter-update__body p:first-of-type {
  font-size: 1.05rem;
  color: #1D3557;
}
.shelter-update__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-around;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: #FAF6EC;
  border-radius: 8px;
}
@media (max-width: 640px) {
  .shelter-update__stats {
    justify-content: center;
  }
}
.shelter-update__footer {
  padding-top: 2rem;
  border-top: 1px solid rgba(29, 53, 87, 0.08);
}

.stat-block {
  text-align: center;
  padding: 0.75rem 1.5rem;
}
.stat-block__number {
  display: block;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgb(36.0555555556, 52.8541666667, 35.6458333333);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-block__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1D3557;
}
.stat-block--total .stat-block__number {
  color: #E63946;
  font-size: 2.5rem;
}

.recipe {
  margin-block: 3rem;
}

.recipe__hero img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
  border-top: 6px solid #7B2CBF;
}

.recipe__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #FAF6EC;
  border-left: 4px solid #7B2CBF;
  border-radius: 4px;
  margin-block: 1.5rem;
}
.recipe__stats > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.recipe__stats > div .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1D3557;
  font-weight: 600;
}
.recipe__stats > div .value {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  color: #1D3557;
}

.recipe__ingredients {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.recipe__ingredients li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #F7F7F7;
}
.recipe__ingredients input[type=checkbox] {
  appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #2A9D8F;
  border-radius: 4px;
  cursor: pointer;
  display: inline-grid;
  place-content: center;
  transition: background 150ms ease;
}
.recipe__ingredients input[type=checkbox]::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  transform: scale(0);
  background: #FFFFFF;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transition: transform 150ms ease;
}
.recipe__ingredients input[type=checkbox]:checked {
  background: #2A9D8F;
}
.recipe__ingredients input[type=checkbox]:checked::before {
  transform: scale(1);
}
.recipe__ingredients input[type=checkbox]:focus-visible {
  outline: 2px solid #E63946;
  outline-offset: 2px;
}
.recipe__ingredients input[type=checkbox]:checked + label {
  text-decoration: line-through;
  opacity: 0.55;
}
.recipe__ingredients label {
  cursor: pointer;
}

.recipe__instructions {
  list-style: none;
  counter-reset: step;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.recipe__instructions li {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}
.recipe__instructions li::before {
  content: counter(step);
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #2A9D8F;
  line-height: 1;
  min-width: 2rem;
}

.travel {
  --travel-accent: #457B9D;
}

.travel-post__hero {
  border-top: 6px solid #457B9D;
}
.travel-post__hero img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
}

.post-card--travel,
.travel-card {
  border-top-color: #457B9D;
}

#map {
  height: 500px;
  width: 100%;
  border-radius: 8px;
  background: #FAF6EC;
}
@media (max-width: 768px) {
  #map {
    height: 360px;
  }
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #457B9D;
  color: #FFFFFF;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.travel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.series-banner {
  background: #588157;
  border-radius: 8px;
  margin-block: 2rem;
  overflow: hidden;
}
.series-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  gap: 1rem;
}
@media (max-width: 640px) {
  .series-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}
.series-banner__label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.series-banner__series-name {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}
.series-banner__part {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.35);
  color: #FFFFFF;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}
.series-banner__nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .series-banner__nav {
    flex-wrap: wrap;
  }
}
.series-banner__prev, .series-banner__next, .series-banner__all {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1D3557;
  background: #FFFFFF;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.series-banner__prev:hover, .series-banner__next:hover, .series-banner__all:hover {
  background: #FAF6EC;
  color: rgb(67.2222222222, 98.5416666667, 66.4583333333);
}

.series-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #FFFFFF;
  color: #1D3557;
  border: 1px solid #D4D4D4;
  border-left: 3px solid #588157;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.series-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  margin-top: 3rem;
  border-top: 1px solid #D4D4D4;
}
.series-nav a {
  color: #1D3557;
  text-decoration: none;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 45%;
}
.series-nav a:hover {
  color: rgb(36.0555555556, 52.8541666667, 35.6458333333);
}
.series-nav a .series-nav__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1D3557;
}
.series-nav .series-nav__next {
  text-align: right;
  margin-left: auto;
}

.series-intro {
  background: rgba(88, 129, 87, 0.08);
  border-left: 4px solid #588157;
  padding: 1.5rem;
  border-radius: 4px;
  margin-block: 2rem;
  max-width: 60ch;
  font-size: 1.05rem;
}
.series-intro h1, .series-intro h2 {
  color: #588157;
  margin-top: 0;
}

.series-list {
  list-style: none;
  padding: 0;
  margin-block: 2rem;
  border-left: 3px solid #588157;
}
.series-list__item {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #F7F7F7;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: baseline;
}
.series-list__item:last-child {
  border-bottom: 0;
}
.series-list__item a {
  flex: 1;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  color: #1D3557;
  text-decoration: none;
}
.series-list__item a:hover {
  color: #588157;
}
.series-list__item time {
  color: #737373;
  font-size: 0.85rem;
}
.series-list__part {
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  color: #1D3557;
  min-width: 60px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media print {
  .site-header,
  .site-footer,
  .site-nav,
  aside,
  .comments,
  .related-posts,
  .share-buttons,
  .newsletter-signup,
  .cta-banner,
  #site-nav-toggle,
  .site-header__toggle,
  .skip-link {
    display: none !important;
  }
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }
  a {
    color: #000;
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
    color: #555;
  }
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  h1 {
    font-size: 22pt;
  }
  h2 {
    font-size: 16pt;
  }
  h3 {
    font-size: 13pt;
  }
  .recipe__hero,
  .recipe__stats {
    page-break-inside: avoid;
  }
  .recipe__instructions {
    page-break-before: auto;
  }
  .recipe__instructions li {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
  h1, h2, h3, h4 {
    page-break-after: avoid;
  }
  p, li, blockquote {
    orphans: 3;
    widows: 3;
  }
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 0.5rem;
  background: #E63946;
  color: #FFFFFF;
  font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  z-index: 100;
  text-decoration: none;
  transform: translateY(-100%);
  transition: transform 150ms ease;
}
.skip-link:focus {
  transform: translateY(calc(40px + 0.5rem));
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}

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

a:focus-visible,
button:focus-visible,
[role=button]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid #E63946;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*# sourceMappingURL=main.css.map */