/* Lumen Stem Studio — ritraactua.media */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap");

:root {
  --ls-sage: #5b7a6a;
  --ls-sage-deep: #3f574a;
  --ls-sage-soft: #8aa396;
  --ls-sage-mist: #d8e4dd;
  --ls-ivory: #f7f3eb;
  --ls-ivory-warm: #efe8dc;
  --ls-paper: #faf7f1;
  --ls-charcoal: #2a2a28;
  --ls-ink: #3d3d3a;
  --ls-muted: #6b6b66;
  --ls-blush: #c9898a;
  --ls-blush-soft: #e8c8c8;
  --ls-line: rgba(42, 42, 40, 0.12);
  --ls-white: #fffefb;
  --ls-radius: 2px;
  --ls-max: 1120px;
  --ls-wide: 1280px;
  --ls-header: 4.25rem;
  --ls-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ls-font-display: "Cormorant Garamond", Georgia, serif;
  --ls-font-body: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ls-font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ls-charcoal);
  background-color: var(--ls-paper);
  background-image:
    radial-gradient(ellipse 120% 80% at 10% -20%, rgba(91, 122, 106, 0.08), transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 0%, rgba(201, 137, 138, 0.06), transparent 50%),
    linear-gradient(180deg, var(--ls-ivory) 0%, var(--ls-paper) 35%, var(--ls-ivory-warm) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--ls-sage-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.25s var(--ls-ease);
}

a:hover {
  color: var(--ls-blush);
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

.flourish {
  color: var(--ls-sage);
  font-style: normal;
  letter-spacing: 0.05em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ls-sage);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--ls-font-display);
  font-weight: 500;
  font-size: clamp(2.15rem, 4.5vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ls-charcoal);
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--ls-sage-deep);
}

.lede {
  font-size: 1.05rem;
  color: var(--ls-muted);
  max-width: 34rem;
}

.container {
  width: min(100% - 2.5rem, var(--ls-max));
  margin-inline: auto;
}

.container--wide {
  width: min(100% - 2.5rem, var(--ls-wide));
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 235, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ls-line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--ls-header);
  width: min(100% - 2rem, var(--ls-wide));
  margin-inline: auto;
}

.logo {
  font-family: var(--ls-font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ls-charcoal);
  text-decoration: none;
  white-space: nowrap;
}

.logo span {
  color: var(--ls-sage);
  font-weight: 400;
  font-style: italic;
}

.logo:hover {
  color: var(--ls-sage-deep);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--ls-line);
  padding: 0.55rem 0.75rem;
  cursor: pointer;
  color: var(--ls-charcoal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 500;
}

.menu-toggle:hover {
  border-color: var(--ls-sage);
  color: var(--ls-sage-deep);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-main a {
  position: relative;
  text-decoration: none;
  color: var(--ls-ink);
  font-size: 0.88rem;
  font-weight: 450;
  padding: 0.2rem 0;
}

.nav-main a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--ls-sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ls-ease);
}

.nav-main a:hover::after,
.nav-main a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-main a:hover,
.nav-main a[aria-current="page"] {
  color: var(--ls-sage-deep);
}

.nav-cta {
  background: var(--ls-sage) !important;
  color: var(--ls-white) !important;
  padding: 0.55rem 1rem !important;
  text-decoration: none !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.04em;
  transition: background 0.25s var(--ls-ease), transform 0.25s var(--ls-ease) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--ls-sage-deep) !important;
  transform: translateY(-1px);
}

/* ——— Marquee ——— */
.marquee {
  overflow: hidden;
  background: var(--ls-sage);
  color: var(--ls-white);
  border-bottom: 1px solid var(--ls-sage-deep);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: ls-marquee 32s linear infinite;
  gap: 0;
}

.marquee__track span {
  padding: 0.55rem 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 450;
}

@keyframes ls-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: var(--ls-white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42, 42, 40, 0.25) 0%, rgba(42, 42, 40, 0.15) 40%, rgba(42, 42, 40, 0.72) 100%),
    linear-gradient(90deg, rgba(42, 42, 40, 0.45) 0%, transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--ls-max));
  margin: 0 auto;
  padding: 5rem 0 4rem;
  animation: ls-fade-up 1s var(--ls-ease) both;
}

.hero__brand {
  font-family: var(--ls-font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.hero__brand em {
  font-style: italic;
  font-weight: 400;
  color: var(--ls-sage-mist);
}

.hero__est {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 1.75rem;
}

.hero h1 {
  font-family: var(--ls-font-display);
  font-weight: 500;
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  line-height: 1.15;
  max-width: 16ch;
  margin-bottom: 1rem;
}

.hero__sub {
  font-size: 1.05rem;
  max-width: 28rem;
  opacity: 0.92;
  margin-bottom: 1.75rem;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ls-ease), color 0.25s var(--ls-ease), border-color 0.25s var(--ls-ease), transform 0.25s var(--ls-ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--ls-sage);
  color: var(--ls-white);
  border-color: var(--ls-sage);
}

.btn--primary:hover {
  background: var(--ls-sage-deep);
  color: var(--ls-white);
  border-color: var(--ls-sage-deep);
}

.btn--ghost {
  background: transparent;
  color: var(--ls-white);
  border-color: rgba(255, 254, 251, 0.55);
}

.btn--ghost:hover {
  background: rgba(255, 254, 251, 0.12);
  color: var(--ls-white);
}

.btn--outline {
  background: transparent;
  color: var(--ls-sage-deep);
  border-color: var(--ls-sage);
}

.btn--outline:hover {
  background: var(--ls-sage);
  color: var(--ls-white);
}

.btn--blush {
  background: var(--ls-blush);
  color: var(--ls-white);
  border-color: var(--ls-blush);
}

.btn--blush:hover {
  background: #b57576;
  color: var(--ls-white);
}

/* ——— Sections ——— */
.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.section--tight {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section--sage {
  background: linear-gradient(165deg, var(--ls-sage-deep) 0%, var(--ls-sage) 100%);
  color: var(--ls-white);
}

.section--sage .section-title,
.section--sage .eyebrow,
.section--sage .lede {
  color: var(--ls-white);
}

.section--sage .eyebrow {
  opacity: 0.9;
}

.section--sage .lede {
  opacity: 0.88;
}

.section--mist {
  background: rgba(216, 228, 221, 0.35);
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 38rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split--start {
  align-items: start;
}

/* ——— Reviews ——— */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.review {
  padding: 0;
  border: none;
  background: transparent;
}

.review__stars {
  color: var(--ls-blush);
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}

.review blockquote {
  font-family: var(--ls-font-display);
  font-size: 1.35rem;
  line-height: 1.4;
  font-style: italic;
  color: var(--ls-ink);
  margin-bottom: 1rem;
}

.review cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--ls-muted);
  letter-spacing: 0.04em;
}

/* ——— Shop teaser ——— */
.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.product {
  display: grid;
  gap: 1.15rem;
}

.product__media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ls-sage-mist);
}

.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ls-ease);
}

.product:hover .product__media img {
  transform: scale(1.04);
}

.product__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.product__num {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ls-sage);
}

.product h3 {
  font-family: var(--ls-font-display);
  font-size: 1.75rem;
  font-weight: 500;
}

.product__price {
  font-size: 0.95rem;
  color: var(--ls-muted);
}

.product p {
  color: var(--ls-muted);
  font-size: 0.95rem;
}

.product .btn {
  margin-top: 0.5rem;
  align-self: flex-start;
}

/* ——— Steps ——— */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: ls-step;
}

.step {
  counter-increment: ls-step;
  padding-top: 0.5rem;
  border-top: 1px solid var(--ls-line);
}

.step::before {
  content: "0" counter(ls-step);
  display: block;
  font-family: var(--ls-font-display);
  font-size: 1.5rem;
  color: var(--ls-sage);
  margin-bottom: 0.75rem;
}

.step h3 {
  font-family: var(--ls-font-display);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--ls-muted);
  font-size: 0.95rem;
}

/* ——— Events list ——— */
.event-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ls-line);
}

.event-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--ls-line);
  font-family: var(--ls-font-display);
  font-size: 1.35rem;
}

.event-list li span {
  font-family: var(--ls-font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--ls-sage);
}

.section--sage .event-list {
  border-color: rgba(255, 254, 251, 0.2);
}

.section--sage .event-list li {
  border-color: rgba(255, 254, 251, 0.2);
}

.section--sage .event-list li span {
  color: var(--ls-sage-mist);
}

/* ——— Studio stats ——— */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat strong {
  display: block;
  font-family: var(--ls-font-display);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--ls-sage-deep);
  line-height: 1.1;
}

.stat span {
  font-size: 0.88rem;
  color: var(--ls-muted);
}

.studio-media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.studio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ——— Portfolio grid ——— */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.portfolio-grid figure {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--ls-sage-mist);
}

.portfolio-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ls-ease);
}

.portfolio-grid figure:hover img {
  transform: scale(1.05);
}

.portfolio-grid--page {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.portfolio-grid--page figure:nth-child(4),
.portfolio-grid--page figure:nth-child(5),
.portfolio-grid--page figure:nth-child(6) {
  aspect-ratio: 4 / 3;
}

/* ——— FAQ accordion ——— */
.faq-list {
  max-width: 42rem;
}

.faq-item {
  border-bottom: 1px solid var(--ls-line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 0;
  font-family: var(--ls-font-display);
  font-size: 1.3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--ls-font-body);
  font-size: 1.1rem;
  color: var(--ls-sage);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item .faq-num {
  font-family: var(--ls-font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--ls-sage);
  margin-right: 0.65rem;
}

.faq-item p {
  padding: 0 0 1.35rem;
  color: var(--ls-muted);
  max-width: 36rem;
}

/* ——— CTA band ——— */
.cta-band {
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) 1.5rem;
}

.cta-band .section-title {
  margin-inline: auto;
  max-width: 16ch;
}

.cta-band .lede {
  margin-inline: auto;
  margin-bottom: 1.75rem;
}

.cta-band .hero__actions {
  justify-content: center;
}

.quote-footer {
  font-family: var(--ls-font-display);
  font-style: italic;
  font-size: 1.45rem;
  text-align: center;
  color: var(--ls-sage-deep);
  max-width: 28rem;
  margin: 0 auto 3rem;
  line-height: 1.35;
}

/* ——— Page hero (inner) ——— */
.page-hero {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--ls-line);
}

.page-hero h1 {
  font-family: var(--ls-font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.page-hero p {
  max-width: 36rem;
  color: var(--ls-muted);
  font-size: 1.05rem;
}

/* ——— Forms ——— */
.form {
  display: grid;
  gap: 1.15rem;
  max-width: 36rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ls-muted);
  font-weight: 500;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--ls-line);
  background: var(--ls-white);
  border-radius: var(--ls-radius);
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--ls-sage);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--ls-muted);
}

.success-msg {
  display: none;
  padding: 1.25rem 1.35rem;
  background: var(--ls-sage-mist);
  border-left: 3px solid var(--ls-sage);
  margin-bottom: 1.5rem;
  max-width: 36rem;
}

.success-msg.show {
  display: block;
  animation: ls-fade-up 0.45s var(--ls-ease);
}

.success-msg strong {
  display: block;
  font-family: var(--ls-font-display);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

/* ——— Contact block ——— */
.contact-card {
  display: grid;
  gap: 0.85rem;
}

.contact-card h2 {
  font-family: var(--ls-font-display);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-card p,
.contact-card a {
  color: var(--ls-ink);
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--ls-sage);
}

/* ——— Legal ——— */
.legal {
  max-width: 42rem;
}

.legal h2 {
  font-family: var(--ls-font-display);
  font-size: 1.65rem;
  font-weight: 500;
  margin: 2rem 0 0.75rem;
}

.legal p,
.legal li {
  color: var(--ls-muted);
  margin-bottom: 0.85rem;
}

.legal ul {
  padding-left: 1.15rem;
  list-style: disc;
  margin-bottom: 1rem;
}

.legal li {
  margin-bottom: 0.4rem;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--ls-charcoal);
  color: rgba(255, 254, 251, 0.78);
  padding: 3.5rem 0 2rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  font-family: var(--ls-font-display);
  font-size: 1.65rem;
  color: var(--ls-white);
  margin-bottom: 0.65rem;
}

.footer-brand span {
  font-style: italic;
  color: var(--ls-sage-soft);
}

.site-footer p {
  font-size: 0.92rem;
  max-width: 22rem;
  line-height: 1.6;
}

.site-footer h3 {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ls-sage-soft);
  margin-bottom: 1rem;
  font-weight: 500;
}

.site-footer ul {
  display: grid;
  gap: 0.55rem;
}

.site-footer a {
  color: rgba(255, 254, 251, 0.78);
  text-decoration: none;
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: var(--ls-blush-soft);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 254, 251, 0.12);
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

/* ——— Cookie banner ——— */
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--ls-charcoal);
  color: var(--ls-white);
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255, 254, 251, 0.1);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.18);
}

#cookie-banner.show {
  display: block;
  animation: ls-fade-up 0.4s var(--ls-ease);
}

.cookie-inner {
  width: min(100%, var(--ls-max));
  margin-inline: auto;
  display: grid;
  gap: 1rem;
}

.cookie-inner > p {
  font-size: 0.9rem;
  opacity: 0.9;
  max-width: 48rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cookie-actions button {
  padding: 0.65rem 1.1rem;
  border: 1px solid rgba(255, 254, 251, 0.25);
  background: transparent;
  color: var(--ls-white);
  cursor: pointer;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cookie-actions button:hover {
  border-color: var(--ls-sage-soft);
  background: rgba(91, 122, 106, 0.35);
}

#cookie-accept {
  background: var(--ls-sage);
  border-color: var(--ls-sage);
}

#cookie-accept:hover {
  background: var(--ls-sage-deep);
}

#cookie-panel {
  display: none;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 254, 251, 0.12);
}

#cookie-panel.open {
  display: grid;
  gap: 0.75rem;
}

#cookie-panel label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  cursor: pointer;
}

#cookie-panel input[disabled] {
  opacity: 0.7;
}

/* ——— Reveal on scroll (CSS-only) ——— */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: ls-fade-up 0.85s var(--ls-ease) forwards;
  animation-timeline: view();
  animation-range: entry 8% cover 28%;
}

@supports not (animation-timeline: view()) {
  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@keyframes ls-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ——— Sub cards (subscriptions / shop extras — interaction containers) ——— */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.plan {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--ls-line);
  background: rgba(255, 254, 251, 0.55);
  transition: border-color 0.25s var(--ls-ease), background 0.25s var(--ls-ease);
}

.plan:hover {
  border-color: var(--ls-sage);
  background: var(--ls-white);
}

.plan h3 {
  font-family: var(--ls-font-display);
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.plan .price {
  font-size: 0.95rem;
  color: var(--ls-sage);
  margin-bottom: 0.85rem;
}

.plan p {
  font-size: 0.92rem;
  color: var(--ls-muted);
  margin-bottom: 1.15rem;
}

.feature-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0;
}

.feature-list li {
  padding-left: 1.15rem;
  position: relative;
  color: var(--ls-ink);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "✿";
  position: absolute;
  left: 0;
  color: var(--ls-sage);
  font-size: 0.7rem;
  top: 0.2rem;
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .split,
  .shop-grid,
  .reviews-grid,
  .steps,
  .stats,
  .portfolio-grid,
  .portfolio-grid--page,
  .plan-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid,
  .steps,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .nav-main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--ls-ivory);
    border-bottom: 1px solid var(--ls-line);
    padding: 0.75rem 1.25rem 1.25rem;
    gap: 0;
  }

  .nav-main.open {
    display: flex;
  }

  .nav-main a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--ls-line);
  }

  .nav-main a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    justify-content: center;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    position: relative;
  }

  .hero {
    min-height: min(85vh, 680px);
  }
}

@media (max-width: 560px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }
}
