:root {
  --page-bg: #fbf7ef;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --ink: #071d3a;
  --muted: #4c5a6d;
  --line: rgba(7, 29, 58, 0.1);
  --line-strong: rgba(7, 29, 58, 0.16);
  --teal: #19b9ad;
  --orange: #f28a16;
  --shadow-soft: 0 18px 38px rgba(7, 29, 58, 0.06);
  --shadow-card: 0 24px 50px rgba(7, 29, 58, 0.08);
  --radius-card: 18px;
  --radius-xl: 30px;
  --page-padding: clamp(20px, 4.4vw, 64px);
  --footer-copy-size: 15px;
  --footer-copy-line: 1.12;
}

html {
  scroll-behavior: smooth;
  background: var(--page-bg);
}

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

body {
  margin: 0;
  min-width: 320px;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(25, 185, 173, 0.05), transparent 28rem),
    radial-gradient(circle at top right, rgba(242, 138, 22, 0.04), transparent 26rem),
    linear-gradient(180deg, #fffdf8 0, var(--page-bg) 18rem, var(--page-bg) 100%);
}

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

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

main,
.site-footer {
  overflow: clip;
}

.page-shell {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding-inline: var(--page-padding);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: transparent;
  backdrop-filter: none;
  transition:
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 247, 239, 0.8);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(7, 29, 58, 0.06);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 88px;
  padding-right: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand picture {
  display: block;
}

.brand img {
  display: block;
  width: clamp(190px, 22vw, 260px);
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2vw, 2.2rem);
  padding-right: 28px;
}

.primary-nav a {
  position: relative;
  padding: 0.25rem 0;
  color: rgba(7, 29, 58, 0.82);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.primary-nav a:hover {
  color: var(--teal);
}

.primary-nav a:hover::after {
  transform: scaleX(1);
}

.hero-section {
  position: relative;
  padding: 0 0 0.35rem;
  overflow: visible;
}

.hero-shell {
  position: relative;
  min-height: clamp(470px, 50vw, 540px);
  padding: 0 0 0.15rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: clamp(34rem, 41vw, 39rem);
  padding-top: clamp(6.4rem, 7.6vw, 7.4rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title,
.section-title,
.work-card h3,
.footer-essay h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero-title {
  max-width: 10.2ch;
  font-family: "Manrope", "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-size: clamp(2.45rem, 3.6vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.042em;
  font-weight: 400;
  }

.hero-rule {
  display: block;
  width: 3rem;
  height: 2px;
  margin: 1.35rem 0 1.05rem;
  border-radius: 999px;
  background: var(--teal);
}

.hero-body,
.work-card p,
.footer-contact p,
.footer-meta {
  color: var(--muted);
  line-height: 1.72;
}

.hero-body {
  max-width: 32rem;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
}

.hero-visual {
  position: absolute;
  inset: 0 clamp(3.2rem, 4.6vw, 4.5rem) 0.55rem 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0 0 var(--radius-card) 0;
  box-shadow: none;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(251, 247, 239, 0.98) 0,
      rgba(251, 247, 239, 0.92) 16%,
      rgba(251, 247, 239, 0.68) 30%,
      rgba(251, 247, 239, 0.32) 42%,
      rgba(251, 247, 239, 0.1) 52%,
      rgba(251, 247, 239, 0) 62%
    ),
    linear-gradient(
      180deg,
      rgba(251, 247, 239, 0.16) 0,
      rgba(251, 247, 239, 0.04) 20%,
      rgba(251, 247, 239, 0) 42%
    ),
    radial-gradient(circle at 14% 34%, rgba(255, 255, 255, 0.42), transparent 24%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.work-section {
  padding: 2.4rem 0 1rem;
}

.section-heading {
  margin-bottom: 0.9rem;
}

.section-title {
  font-size: clamp(1.72rem, 2.5vw, 2.18rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  word-spacing: 0.08em;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.25rem);
  align-items: start;
}

.work-card {
  position: relative;
  padding: clamp(1.8rem, 3vw, 2.25rem) 0 clamp(1.1rem, 1.8vw, 1.55rem);
  isolation: isolate;
}

.work-card--aligned {
  top: -2px;
}

.work-card-surface {
  position: relative;
  height: clamp(350px, 27vw, 380px);
  border: 1px solid rgba(7, 29, 58, 0.12);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.34),
    0 20px 40px rgba(7, 29, 58, 0.07);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.work-card:hover .work-card-surface {
  transform: translateY(-4px);
  border-color: rgba(7, 29, 58, 0.14);
  box-shadow: 0 24px 48px rgba(7, 29, 58, 0.11);
}

.card-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.work-card--aligned .work-card-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(251, 247, 239, 0.9) 0,
      rgba(251, 247, 239, 0.7) 19%,
      rgba(248, 245, 252, 0.34) 34%,
      rgba(245, 240, 255, 0.08) 49%,
      rgba(245, 240, 255, 0) 64%
    );
}

.work-card--meditation .work-card-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(252, 247, 239, 0.94) 0,
      rgba(252, 247, 239, 0.82) 24%,
      rgba(252, 247, 239, 0.5) 38%,
      rgba(252, 247, 239, 0.14) 52%,
      rgba(252, 247, 239, 0.02) 66%,
      rgba(252, 247, 239, 0) 100%
    ),
    linear-gradient(180deg, rgba(255, 250, 241, 0.08), rgba(255, 250, 241, 0.18));
}

.card-product {
  position: absolute;
  z-index: 3;
  display: block;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 28px 38px rgba(7, 29, 58, 0.16));
  transition: transform 0.22s ease;
}

.card-product--aligned {
  right: clamp(0.2rem, 1vw, 0.8rem);
  top: -0.75rem;
  width: clamp(306px, 23vw, 356px);
  transform: rotate(7deg);
}

.card-product--meditation {
  right: clamp(-0.35rem, 0.5vw, 0.2rem);
  top: -0.12rem;
  width: clamp(306px, 23.2vw, 354px);
  transform: rotate(8deg);
}

.work-card:hover .card-product--aligned {
  transform: translateY(-5px) rotate(7deg);
}

.work-card:hover .card-product--meditation {
  transform: translateY(-5px) rotate(8deg);
}

.card-copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(39%, 18.2rem);
  height: 100%;
  padding: 1.7rem 1.7rem 1.55rem;
}

.work-card--meditation .card-copy {
  width: min(40%, 18rem);
  padding-right: 0.55rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  padding: 0.46rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill--teal {
  color: #139d92;
}

.status-pill--warm {
  color: var(--orange);
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: currentColor;
}

.work-card h3 {
  margin: 0.8rem 0 0.7rem;
  font-size: clamp(1.6rem, 1.95vw, 2rem);
  line-height: 1.04;
}

.work-card p {
  margin: 0;
  max-width: 18.8ch;
  font-size: clamp(0.88rem, 0.86vw, 0.95rem);
  line-height: 1.5;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.15rem;
  color: var(--teal);
  font-size: 0.95rem;
  font-weight: 500;
  transition:
    color 0.2s ease,
    gap 0.2s ease;
}

.card-link:hover {
  gap: 0.75rem;
  color: var(--teal);
}

.card-link--warm {
  color: var(--orange);
}

.card-link--warm:hover {
  color: #d87108;
}

.card-link--static:hover {
  gap: 0.5rem;
  color: var(--orange);
}

.site-footer {
  position: relative;
  font-family: "Manrope", "Plus Jakarta Sans", "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 32%),
    #fbf7ef;
  overflow: hidden;
  padding: 24px 0 30px;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0) 36%,
    rgba(25, 185, 173, 0.035) 74%,
    rgba(255, 255, 255, 0) 100%
  );
}

.footer-shell {
  position: relative;
  z-index: 1;
  width: min(1320px, 100%);
  margin: 0 auto;
  min-height: 278px;
}

.footer-main {
  position: relative;
  z-index: 2;
  min-height: 142px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: end;
  justify-content: space-between;
  column-gap: clamp(48px, 6vw, 96px);
}

.footer-statement {
  align-self: end;
  max-width: 430px;
  padding-bottom: 16px;
}

.footer-eyebrow {
  margin: 0 0 18px;
  color: #19b9ad;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-statement h2 {
  margin: 0;
  color: #667286;
  font-size: 12px;
  line-height: 1.34;
  letter-spacing: 0;
  font-weight: 400;
  text-wrap: balance;
}

.footer-note {
  position: relative;
  justify-self: center;
  align-self: center;
  z-index: 3;
  width: 220px;
  max-width: 220px;
  padding: 22px 0;
  text-align: center;
  color: #667286;
  transform: none;
}

.footer-note::before,
.footer-note::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 52px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    rgba(25, 185, 173, 0),
    rgba(25, 185, 173, 0.32),
    rgba(25, 185, 173, 0)
  );
}

.footer-note::before {
  top: 0;
}

.footer-note::after {
  bottom: 0;
}

.footer-note span {
  display: block;
  margin-bottom: 8px;
  color: #20324d;
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.22;
}

.footer-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.34;
}

.footer-contact {
  justify-self: end;
  align-self: end;
  width: auto;
  max-width: min(320px, 100%);
  padding-bottom: 16px;
  position: relative;
  z-index: 2;
  margin-right: 0;
  margin-left: auto;
}

.footer-contact-link {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px;
  color: #071d3a;
  text-align: left;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-contact-link:hover {
  color: var(--teal);
  transform: translateX(2px);
}

.footer-contact-copy {
  display: grid;
  gap: 8px;
  max-width: 248px;
  color: #667286;
  font-size: 12px;
  line-height: 1.34;
  font-weight: 400;
}

.footer-contact-copy strong {
  display: block;
  font-size: 12.5px;
  line-height: 1.24;
  font-weight: 620;
}

.footer-icon {
  width: 18px;
  height: 18px;
  border-radius: 0;
  flex: 0 0 18px;
  display: grid;
  place-items: center;
  margin-top: -1px;
  color: rgba(25, 185, 173, 0.7);
  border: 0;
  background: transparent;
  box-shadow: none;
}

.footer-icon-envelope {
  position: relative;
  display: block;
  width: 14px;
  height: 10px;
  border: 1.25px solid currentColor;
  border-radius: 2px;
  box-sizing: border-box;
}

.footer-icon-envelope::before,
.footer-icon-envelope::after {
  content: "";
  position: absolute;
  top: 2.5px;
  width: 7px;
  height: 1.25px;
  background: currentColor;
  border-radius: 999px;
}

.footer-icon-envelope::before {
  left: -1px;
  transform: rotate(33deg);
  transform-origin: left center;
}

.footer-icon-envelope::after {
  right: -1px;
  transform: rotate(-33deg);
  transform-origin: right center;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  padding-top: 26px;
  border-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: #667286;
  font-size: 12px;
  line-height: 1.34;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(7, 29, 58, 0.12) 0,
    rgba(7, 29, 58, 0.12) calc(50% - 54px),
    rgba(25, 185, 173, 0) calc(50% - 54px),
    rgba(25, 185, 173, 0) calc(50% + 54px),
    rgba(7, 29, 58, 0.12) calc(50% + 54px),
    rgba(7, 29, 58, 0.12) 100%
  );
}

.footer-bottom::after {
  content: "";
  position: absolute;
  top: -17px;
  left: 50%;
  z-index: 3;
  width: 70px;
  height: 34px;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    url("../assets/footer-lotus-mark.png") center 60% / 38px auto no-repeat,
    radial-gradient(circle, rgba(251, 247, 239, 1) 0 68%, rgba(251, 247, 239, 0.94) 80%, rgba(251, 247, 239, 0) 100%);
  opacity: 0.72;
  filter: saturate(0.82);
  box-shadow: 0 0 0 10px rgba(251, 247, 239, 0.9);
}

.footer-bottom p {
  margin: 0;
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .js-enabled [data-reveal],
  .work-card-surface,
  .card-product,
  .card-link,
  .email-link,
  .primary-nav a::after {
    transition: none;
  }

  .js-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .hero-visual {
    inset: 0 0 0 0;
  }

  .card-copy {
    width: min(45%, 17rem);
  }

  .work-card--meditation .card-copy {
    width: min(45%, 17.2rem);
  }

  .site-footer {
    padding-top: 10px;
  }

  .footer-shell {
    min-height: 254px;
  }

  .footer-main {
    min-height: 176px;
    column-gap: clamp(34px, 5vw, 64px);
  }

  .footer-contact {
    max-width: 320px;
  }

}

@media (max-width: 960px) {
  .site-header {
    position: sticky;
    background: rgba(251, 247, 239, 0.84);
    backdrop-filter: blur(14px);
  }

  .hero-shell {
    min-height: clamp(640px, 108vw, 860px);
    display: block;
    padding-top: 1.1rem;
  }

  .header-shell {
    padding-right: 0;
  }

  .primary-nav {
    padding-right: 0;
  }

  .hero-copy {
    max-width: min(34rem, 72vw);
    padding-top: 1.1rem;
  }

  .hero-visual {
    position: absolute;
    inset: 0 0 0 0;
    min-height: 0;
    border-radius: 0 0 var(--radius-card) 0;
    box-shadow: none;
  }

  .hero-visual::before {
    background:
      linear-gradient(
        90deg,
        rgba(251, 247, 239, 0.98) 0,
        rgba(251, 247, 239, 0.92) 22%,
        rgba(251, 247, 239, 0.76) 34%,
        rgba(251, 247, 239, 0.42) 48%,
        rgba(251, 247, 239, 0.12) 62%,
        rgba(251, 247, 239, 0) 74%
      ),
      linear-gradient(
        180deg,
        rgba(251, 247, 239, 0.06) 0,
        rgba(251, 247, 239, 0.08) 34%,
        rgba(251, 247, 239, 0.34) 100%
      );
  }

  .hero-visual img {
    object-position: 64% center;
  }

  .work-grid,
  .footer-main {
    grid-template-columns: minmax(0, 1fr);
  }

  .work-card {
    padding-top: 1.75rem;
  }

  .work-card--aligned {
    top: 0;
  }

  .work-card-surface {
    height: 400px;
  }

  .card-copy,
  .work-card--meditation .card-copy {
    width: min(45%, 18rem);
  }

  .card-product--aligned {
    right: 0.2rem;
    top: 0.2rem;
    width: clamp(242px, 29vw, 304px);
  }

  .card-product--meditation {
    right: -0.25rem;
    top: 0.45rem;
    width: clamp(252px, 30vw, 314px);
  }

  .site-footer {
    padding: 28px 22px 32px;
  }

  .footer-shell {
    min-height: auto;
  }

  .footer-main {
    min-height: auto;
    grid-template-columns: 1fr;
    row-gap: 42px;
  }

  .footer-statement {
    max-width: 100%;
    padding-bottom: 0;
  }

  .footer-contact {
    justify-self: start;
    width: 100%;
    padding-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .footer-note {
    justify-self: start;
    width: auto;
    max-width: 390px;
    padding: 0;
    text-align: left;
    transform: none;
  }

  .footer-note::before,
  .footer-note::after {
    display: none;
  }

  .footer-bottom {
    margin-top: 44px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
  }

  .footer-bottom::before,
  .footer-bottom::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    background: rgba(251, 247, 239, 0.9);
  }

  .header-shell {
    justify-content: space-between;
    min-height: 78px;
    padding-inline: 12px;
  }

  .primary-nav {
    display: none;
  }

  .hero-section {
    padding-top: 0.4rem;
  }

  .hero-shell {
    min-height: clamp(536px, 110vw, 680px);
    padding-top: 0.8rem;
  }

  .hero-title {
    max-width: 8.8ch;
    font-size: clamp(2.65rem, 11vw, 3rem);
  }

  .hero-body {
    font-size: 1rem;
  }

  .hero-copy {
    max-width: min(30rem, 84vw);
    padding-top: 0.9rem;
  }

  .hero-visual img {
    object-position: 68% center;
  }

  .footer-essay h2 {
    max-width: 12ch;
    font-size: clamp(1.55rem, 7vw, 1.9rem);
  }

  .footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }
}

@media (max-width: 700px) {
  .work-section {
    padding-top: 42px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .work-card {
    padding-top: 0;
  }

  .work-card-surface {
    min-height: 520px;
    height: auto;
    border-radius: 30px;
  }

  .work-card--meditation .work-card-surface {
    min-height: 560px;
  }

  .work-card--aligned .work-card-surface::before,
  .work-card--meditation .work-card-surface::before {
    background:
      linear-gradient(
        90deg,
        rgba(251, 247, 239, 0.76) 0%,
        rgba(251, 247, 239, 0.54) 45%,
        rgba(251, 247, 239, 0.12) 100%
      ),
      linear-gradient(
        180deg,
        rgba(251, 247, 239, 0.08) 0%,
        rgba(251, 247, 239, 0.18) 58%,
        rgba(251, 247, 239, 0.48) 100%
      );
  }

  .card-copy,
  .work-card--meditation .card-copy {
    position: relative;
    z-index: 4;
    width: 100%;
    min-height: 456px;
    padding: 32px 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .status-pill {
    width: auto;
    min-height: 44px;
    padding: 0 19px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: 0.075em;
    text-align: left;
  }

  .status-dot {
    margin-top: 0;
  }

  .work-card h3 {
    max-width: 52%;
    margin: 32px 0 0;
    font-size: clamp(43px, 12vw, 52px);
    line-height: 0.9;
    letter-spacing: -0.06em;
    font-weight: 850;
  }

  .work-card--meditation h3 {
    max-width: 58%;
  }

  .work-card p {
    position: static;
    max-width: 58%;
    margin: 42px 0 0;
    font-size: 20px;
    line-height: 1.34;
    letter-spacing: -0.025em;
    font-weight: 500;
  }

  .work-card--meditation p {
    max-width: 60%;
    margin-top: 38px;
    font-size: 19px;
    line-height: 1.35;
  }

  .card-link {
    position: static;
    margin-top: auto;
    padding-top: 24px;
    font-size: 22px;
    line-height: 1;
    font-weight: 750;
  }

  .card-product,
  .card-product--aligned,
  .card-product--meditation {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    filter: drop-shadow(0 20px 30px rgba(7, 29, 58, 0.14));
  }

  .card-product--aligned {
    width: clamp(155px, 42vw, 190px);
    top: 76px;
    right: 22px;
    transform: rotate(8deg);
  }

  .card-product--meditation {
    width: clamp(155px, 42vw, 190px);
    top: 74px;
    right: 20px;
    transform: rotate(8deg);
  }

  .card-product,
  .card-product--aligned,
  .card-product--meditation {
    display: none;
  }
}

@media (max-width: 430px) {
  .page-shell {
    padding-inline: 20px;
  }

  .hero-shell {
    gap: 1.2rem;
  }

  .hero-rule {
    margin: 1.4rem 0 1rem;
  }

  .section-heading {
    margin-bottom: 1rem;
  }

  .work-card-surface {
    min-height: 500px;
    border-radius: 28px;
  }

  .work-card--meditation .work-card-surface {
    min-height: 540px;
  }

  .card-copy,
  .work-card--meditation .card-copy {
    min-height: 444px;
    padding: 28px 26px 28px;
  }

  .work-card h3 {
    max-width: 55%;
    font-size: clamp(40px, 12vw, 48px);
    margin-top: 30px;
  }

  .work-card p {
    max-width: 62%;
    margin-top: 36px;
    font-size: 19px;
  }

  .work-card--meditation p {
    max-width: 64%;
    font-size: 18.5px;
    margin-top: 34px;
  }

  .card-link {
    font-size: 21px;
  }

  .card-product--aligned {
    width: clamp(148px, 41vw, 176px);
    top: 72px;
    right: 16px;
  }

  .card-product--meditation {
    width: clamp(148px, 41vw, 176px);
    top: 72px;
    right: 16px;
  }

}

@media (max-width: 375px) {
  .work-card-surface {
    min-height: 500px;
  }

  .card-copy,
  .work-card--meditation .card-copy {
    padding: 26px 23px 26px;
  }

  .work-card h3 {
    font-size: 40px;
    max-width: 58%;
  }

  .work-card p {
    font-size: 18px;
    max-width: 66%;
  }

  .card-product--aligned,
  .card-product--meditation {
    width: 145px;
    right: 12px;
  }
}
