:root {
  color-scheme: light;
  --blue: #375e77;
  --blue-deep: #263f50;
  --ocean: #1f5968;
  --coral: #da7462;
  --sage: #8ba783;
  --kelp: #5f7048;
  --sand: #e3d6c2;
  --cream: #faf9f8;
  --mist: #edf3f1;
  --white: #fff;
  --shadow: 0 24px 70px rgba(38, 63, 80, .14);
  --serif: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% 20%, rgba(227, 214, 194, .3), transparent 24rem),
    var(--cream);
  color: var(--blue-deep);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
}
.has-kelp-sketch { isolation: isolate; }
.kelp-sketch-garden {
  position: fixed;
  z-index: 12;
  inset: 0;
  background: url("assets/kelp-sketch-garden-subtle.png") center bottom / min(100%, 1180px) 100vh no-repeat;
  filter: sepia(.64) saturate(.42) contrast(.78);
  opacity: .14;
  pointer-events: none;
}
.has-kelp-sketch main .shell,
.has-kelp-sketch main .narrow,
.has-kelp-sketch .site-footer .shell {
  position: relative;
  z-index: 14;
}
.has-kelp-sketch .company-hero { z-index: 13; }
.has-kelp-sketch .site-header { z-index: 20; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
.shell { width: min(100% - 2rem, 1180px); margin-inline: auto; }
.narrow { width: min(100% - 2rem, 760px); margin-inline: auto; }
.eyebrow, .kicker {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: 0 0 1.2rem;
  color: var(--coral);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before, .kicker::before { width: 2.5rem; height: 1px; background: currentColor; content: ""; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--blue); font-family: var(--serif); font-weight: 500; }
h1 { font-size: clamp(3.7rem, 7vw, 6.8rem); letter-spacing: -.055em; line-height: .9; }
h2 { margin-bottom: 1rem; font-size: clamp(2.8rem, 5.6vw, 5.2rem); letter-spacing: -.045em; line-height: .96; }
h3 { font-size: clamp(1.5rem, 2.2vw, 2.1rem); letter-spacing: -.025em; line-height: 1.05; }
.lead { font-size: clamp(1.08rem, 2vw, 1.32rem); line-height: 1.55; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  border-radius: 999px;
  padding: .72rem 1.2rem;
  background: var(--blue);
  color: var(--white);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.secondary { background: transparent; color: var(--blue); }
.button.light { border-color: var(--white); background: var(--white); color: var(--blue-deep); }
.button.light-secondary { border-color: rgba(255,255,255,.68); background: transparent; color: var(--white); }
.text-link { color: var(--blue); font-weight: 800; text-underline-offset: .28rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(55, 94, 119, .14);
  background: rgba(250, 249, 248, .94);
  backdrop-filter: blur(16px);
}
.header-inner { display: flex; min-height: 5.6rem; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; min-width: 15rem; align-items: center; gap: .85rem; color: var(--blue); text-decoration: none; }
.brand img { width: 3.7rem; height: 3.7rem; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; }
.brand-copy span { margin-top: .28rem; color: var(--coral); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
nav { display: flex; align-items: center; justify-content: flex-end; gap: 1.35rem; }
nav a { position: relative; color: var(--blue-deep); font-size: .88rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
nav a::after { position: absolute; right: 0; bottom: -.38rem; left: 0; height: 2px; background: var(--coral); content: ""; transform: scaleX(0); transition: transform 160ms ease; }
nav a:hover::after, nav a[aria-current="page"]::after { transform: scaleX(1); }

.company-hero, .page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 44rem;
  display: grid;
  align-items: center;
  background: var(--ocean) url("assets/kelp-background.png") center / cover no-repeat;
  color: var(--white);
}
.company-hero::before, .page-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 55, 65, .82), rgba(35, 68, 76, .4) 58%, rgba(35, 68, 76, .2));
  content: "";
}
.company-hero::after, .page-hero::after {
  position: absolute;
  z-index: -1;
  right: -5rem;
  bottom: -8rem;
  width: min(43vw, 36rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 45% 55% 63% 37% / 51% 34% 66% 49%;
  content: "";
  transform: rotate(-12deg);
}
.hero-copy { max-width: 46rem; padding-block: clamp(5rem, 12vw, 9rem); }
.company-hero .eyebrow, .page-hero .eyebrow { color: #f4bfaf; }
.company-hero h1, .page-hero h1 { max-width: 11ch; margin-bottom: 1.4rem; color: var(--white); }
.company-hero .lead, .page-hero .lead { max-width: 37rem; margin-bottom: 2rem; color: rgba(255,255,255,.92); }
.hero-note { margin: 2rem 0 0; color: rgba(255,255,255,.74); font-family: var(--serif); font-size: 1.1rem; font-style: italic; }
.page-hero { min-height: 31rem; }
.page-hero .hero-copy { padding-block: clamp(4.5rem, 9vw, 7rem); }

.intro-band { padding-block: clamp(4rem, 8vw, 7rem); }
.intro-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.intro-grid h2 { max-width: 9ch; }
.intro-copy { max-width: 42rem; }
.intro-copy .lead { margin-bottom: 1.3rem; }
.soft-rule { width: 4rem; height: 1px; margin: 2rem 0; background: var(--coral); border: 0; }

.paths-section { padding-block: clamp(4rem, 8vw, 7rem); background: var(--mist); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.section-heading h2 { max-width: 9ch; margin: 0; }
.section-heading p { max-width: 31rem; margin: 0; }
.path-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.path-card { overflow: hidden; border: 1px solid rgba(55,94,119,.12); border-radius: 1.5rem; background: var(--white); box-shadow: 0 14px 34px rgba(38,63,80,.08); }
.path-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.path-card-body { padding: 1.35rem 1.35rem 1.55rem; }
.path-card .eyebrow { margin-bottom: .75rem; font-size: .68rem; }
.path-card h3 { margin-bottom: .7rem; }
.path-card p { min-height: 5rem; }
.path-card .text-link { display: inline-block; margin-top: .3rem; }

.quickstart {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 7rem) 2rem;
  background:
    radial-gradient(circle at 16% 18%, rgba(227, 214, 194, .72), transparent 34%),
    linear-gradient(145deg, rgba(250, 249, 248, .93), rgba(247, 242, 235, .9) 54%, rgba(237, 242, 238, .88));
}
.quickstart .shell { position: relative; z-index: 1; }
.serene-grid { display: grid; grid-template-columns: minmax(17rem, .72fr) minmax(30rem, 1.28fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: center; }
.serene-copy h2 { max-width: 8ch; }
.serene-intro { max-width: 27rem; margin-bottom: 1.6rem; font-size: clamp(1.05rem, 2vw, 1.25rem); }
.serene-note { display: inline-flex; align-items: center; gap: .65rem; color: var(--sage); font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.serene-note::before { width: 2rem; height: 1px; background: currentColor; content: ""; }
.serene-player-shell { overflow: hidden; border: 1px solid rgba(55, 94, 119, .15); border-radius: 2rem 2rem 1rem 1rem; background: rgba(255, 255, 255, .88); box-shadow: 0 24px 60px rgba(48, 66, 84, .12); }
.serene-player { aspect-ratio: 16 / 9; background: var(--blue-deep); }
.serene-player iframe, .playlist-frame iframe, .shorts-player-frame iframe { display: block; width: 100%; height: 100%; border: 0; }
.now-playing { display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem; padding: 1rem 1.2rem 1.1rem; }
.now-playing span { flex: 0 0 auto; color: var(--coral); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.now-playing strong { color: var(--blue); font-family: var(--serif); font-size: 1rem; font-weight: 600; text-align: right; }
.playlist-block { margin-top: clamp(2rem, 5vw, 4rem); padding-top: 1.2rem; border-top: 1px solid rgba(55, 94, 119, .15); }
.playlist-heading { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .7rem; }
.playlist-heading h3 { margin: 0; font-size: 1.35rem; }
.playlist-heading span { color: var(--coral); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.playlist-rail { display: grid; grid-auto-columns: 10rem; grid-auto-flow: column; gap: .7rem; overflow-x: auto; padding: .1rem .15rem .75rem; scrollbar-color: var(--coral) transparent; scroll-snap-type: x proximity; }
.rail-card { overflow: hidden; border: 1px solid rgba(55, 94, 119, .12); border-radius: .9rem; padding: 0; background: rgba(255, 255, 255, .72); color: var(--blue-deep); cursor: pointer; font: inherit; text-align: left; scroll-snap-align: start; transition: transform 160ms ease, border-color 160ms ease; }
.rail-card:hover { border-color: var(--coral); transform: translateY(-2px); }
.rail-card[aria-pressed="true"] { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue); }
.rail-card img { width: 100%; aspect-ratio: 16 / 8.5; object-fit: cover; }
.rail-card span { display: block; min-height: 3.6rem; padding: .55rem .65rem .7rem; font-family: var(--serif); font-size: .9rem; font-weight: 600; line-height: 1.12; }

.playlist-feature { position: relative; overflow: hidden; padding-block: clamp(4rem, 7vw, 6.5rem); }
.playlist-feature .feature-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(16rem, .52fr) minmax(34rem, 1.48fr); gap: clamp(2.25rem, 5vw, 5rem); align-items: center; }
.playlist-feature h2 { max-width: 8ch; margin-bottom: 1.25rem; font-size: clamp(2.8rem, 4.7vw, 4.7rem); }
.feature-copy > p:not(.kicker) { max-width: 29rem; margin-bottom: 1.5rem; font-size: 1.1rem; }
.feature-media { min-width: 0; }
.playlist-frame { overflow: hidden; aspect-ratio: 16 / 9; border: 1px solid rgba(255, 255, 255, .48); border-radius: 2rem 2rem .75rem .75rem; background: var(--blue-deep); box-shadow: var(--shadow); }
.series-browse { margin-top: 1rem; }
.series-browse > p { margin: 0 0 .65rem; color: rgba(255, 255, 255, .82); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.series-list { display: grid; grid-auto-columns: 13.5rem; grid-auto-flow: column; gap: .65rem; overflow-x: auto; padding: .1rem .1rem .75rem; scrollbar-color: rgba(255, 255, 255, .6) transparent; scroll-snap-type: x proximity; }
.self-care-feature .series-list { grid-auto-flow: row; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.series-card { display: grid; min-width: 0; grid-template-columns: 5rem minmax(0, 1fr); gap: .65rem; align-items: center; border: 1px solid rgba(255, 255, 255, .42); border-radius: .85rem; padding: .45rem; background: rgba(255, 255, 255, .12); color: var(--white); cursor: pointer; font: inherit; text-align: left; scroll-snap-align: start; transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease; }
.series-card:hover { border-color: var(--white); background: rgba(255, 255, 255, .2); transform: translateY(-2px); }
.series-card[aria-pressed="true"] { border-color: var(--white); background: rgba(255, 255, 255, .26); box-shadow: 0 0 0 1px var(--white); }
.series-card img { width: 100%; aspect-ratio: 16 / 10; border-radius: .55rem; object-fit: cover; }
.series-card span { overflow: hidden; font-family: var(--serif); font-size: .86rem; font-weight: 600; line-height: 1.1; }
.self-care-feature { background: linear-gradient(110deg, rgba(218, 116, 98, .94), rgba(218, 116, 98, .8)); color: var(--white); }
.self-care-feature h2, .self-care-feature .kicker, .shorts-feature h2, .shorts-feature .kicker { color: var(--white); }
.shorts-feature { background: linear-gradient(110deg, rgba(55, 94, 119, .96), rgba(55, 94, 119, .82)); color: var(--white); }
.shorts-feature .feature-grid { grid-template-columns: minmax(34rem, 1.48fr) minmax(16rem, .52fr); }
.shorts-feature .feature-media { order: -1; }
.shorts-stage { display: grid; grid-template-columns: minmax(15rem, .72fr) minmax(19rem, 1.28fr); gap: 1rem; align-items: center; }
.shorts-player-frame { overflow: hidden; width: min(100%, 19rem); aspect-ratio: 9 / 16; justify-self: center; border: 1px solid rgba(255, 255, 255, .52); border-radius: 1.6rem; background: var(--blue-deep); box-shadow: var(--shadow); }
.shorts-grid { display: grid; grid-auto-flow: row; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; overflow: visible; padding: 0; }
.short-card { grid-template-columns: 4.25rem minmax(0, 1fr); min-height: 8.25rem; }
.short-card img { height: 7.25rem; aspect-ratio: 9 / 16; }
.short-card span { font-size: .94rem; }
.short-card:last-child { grid-column: 1 / -1; }

.breathe-listening-room {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100vh - 5.6rem);
  display: grid;
  align-items: center;
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background:
    linear-gradient(118deg, rgba(26, 71, 82, .98), rgba(55, 94, 119, .94) 54%, rgba(218, 116, 98, .8)),
    url("assets/kelp-background.png") center / cover no-repeat;
  color: var(--white);
}
.breathe-listening-room::before {
  position: absolute;
  z-index: -1;
  top: -11rem;
  right: -8rem;
  width: min(54vw, 42rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 42% 58% 66% 34% / 52% 36% 64% 48%;
  content: "";
  transform: rotate(14deg);
}
.breathe-listening-room .eyebrow { color: #ffd1c5; }
.breathe-listening-grid {
  display: grid;
  grid-template-columns: minmax(16rem, .72fr) minmax(32rem, 1.28fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}
.breathe-product-copy h1 { max-width: 8ch; margin-bottom: 1.4rem; color: var(--white); }
.breathe-product-copy .lead { max-width: 30rem; margin-bottom: 1.35rem; color: rgba(255, 255, 255, .92); }
.breathe-product-copy .serene-note { color: #f5d3ac; }
.audio-console {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 2rem 2rem .85rem .85rem;
  padding: clamp(.7rem, 1.6vw, 1rem);
  background: rgba(20, 45, 54, .42);
  box-shadow: 0 30px 90px rgba(20, 40, 48, .36);
  backdrop-filter: blur(18px);
}
.audio-console-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .2rem .35rem .85rem;
  color: rgba(255, 255, 255, .76);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.audio-console-label strong { color: var(--white); font-family: var(--serif); font-size: 1rem; letter-spacing: 0; text-transform: none; }
.audio-console iframe { display: block; width: 100%; height: 352px; border: 0; border-radius: 1.25rem .5rem .5rem .5rem; }
.audio-console-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem .35rem .1rem; }
.audio-console-footer p { margin: 0; color: rgba(255, 255, 255, .76); font-size: .88rem; }
.audio-console-footer a { color: var(--white); font-size: .86rem; font-weight: 800; text-underline-offset: .25rem; white-space: nowrap; }
.watch-library { padding-block: clamp(4rem, 8vw, 7rem); background: linear-gradient(145deg, var(--cream), #edf3f1); }
.watch-library-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.watch-library-heading h2 { max-width: 9ch; margin: 0; }
.watch-library-heading p { max-width: 31rem; margin: 0; }
.watch-stage { max-width: 980px; margin-inline: auto; }
.watch-stage .serene-player-shell { background: var(--white); }
.breathe-page .slow-note { background: linear-gradient(90deg, rgba(39, 72, 92, .96), rgba(218, 116, 98, .72)), url("assets/kelp-background.png") center / cover no-repeat; }

.content-section { padding-block: clamp(4rem, 8vw, 7rem); }
.content-section.alt { background: var(--mist); }
.story-grid { display: grid; grid-template-columns: minmax(17rem, .72fr) minmax(23rem, 1.28fr); gap: clamp(2rem, 7vw, 7rem); align-items: center; }
.portrait-frame { overflow: hidden; border-radius: 45% 55% 48% 52% / 42% 44% 56% 58%; background: var(--sand); box-shadow: var(--shadow); }
.portrait-frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.story-copy h2 { max-width: 9ch; }
.statement-panel { padding-block: clamp(4rem, 8vw, 7rem); background: var(--blue); color: var(--white); text-align: center; }
.statement-panel blockquote { max-width: 18ch; margin: 0 auto 1.3rem; color: var(--white); font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 5.6rem); letter-spacing: -.045em; line-height: .98; }
.statement-panel p { margin-bottom: 0; color: rgba(255,255,255,.8); }
.detail-list { display: grid; gap: 1rem; }
.detail-row { display: grid; grid-template-columns: minmax(13rem, .62fr) minmax(20rem, 1.38fr); overflow: hidden; border: 1px solid rgba(55,94,119,.13); border-radius: 1.5rem; background: var(--white); box-shadow: 0 12px 32px rgba(38,63,80,.07); }
.detail-row img { width: 100%; height: 100%; min-height: 20rem; object-fit: cover; }
.detail-row-copy { padding: clamp(1.5rem, 4vw, 3.5rem); }
.detail-row-copy h2 { font-size: clamp(2.3rem, 4vw, 4rem); }
.detail-meta { margin-bottom: .8rem; color: var(--coral); font-size: .78rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }

.ritual-intro { padding-block: clamp(4rem, 8vw, 7rem); }
.ritual-grid { display: grid; grid-template-columns: minmax(20rem, 1fr) minmax(20rem, 1fr); gap: clamp(2rem, 6vw, 5.5rem); align-items: center; }
.ritual-image { overflow: hidden; border-radius: 2rem 2rem .8rem .8rem; box-shadow: var(--shadow); }
.ritual-image img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.event-card { border: 1px solid rgba(55,94,119,.14); border-radius: 1.5rem; padding: 1.5rem; background: rgba(255,255,255,.82); }
.event-card .date { margin-bottom: .4rem; color: var(--coral); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.event-card h3 { margin-bottom: .4rem; }
.event-card p:last-child { margin-bottom: 0; }
.included-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .8rem; margin-top: 2rem; }
.included-item { border-top: 1px solid rgba(255,255,255,.45); padding-top: .85rem; color: rgba(255,255,255,.92); }
.ritual-details { background: linear-gradient(110deg, var(--coral), #c96757); color: var(--white); }
.ritual-details h2, .ritual-details h3, .ritual-details .eyebrow { color: var(--white); }
.schedule-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: .8rem; margin-top: 2rem; }
.schedule-card { border: 1px solid rgba(255,255,255,.45); border-radius: 1rem; padding: 1rem; background: rgba(255,255,255,.1); }
.schedule-card strong { display: block; font-family: var(--serif); font-size: 1.2rem; }
.schedule-card span { color: rgba(255,255,255,.78); font-size: .84rem; }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem 3rem; }
.faq-item { border-top: 1px solid rgba(55,94,119,.16); padding-top: 1.2rem; }
.faq-item h3 { margin-bottom: .55rem; font-size: 1.35rem; }

.slow-note { position: relative; overflow: hidden; padding-block: clamp(2rem, 4vw, 3rem); background: linear-gradient(90deg, rgba(39, 72, 92, .96), rgba(39, 72, 92, .78)), url("assets/kelp-background.png") center / cover no-repeat; }
.slow-note blockquote { max-width: 13ch; margin: 0; color: var(--white); font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 3.8rem); letter-spacing: -.05em; line-height: .95; }
.site-footer { padding-block: 3rem; background: var(--blue-deep); color: var(--white); }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; }
.footer-brand { max-width: 28rem; }
.footer-brand strong { display: block; margin-bottom: .4rem; font-family: var(--serif); font-size: 1.35rem; }
.footer-brand p { margin: 0; color: rgba(255,255,255,.72); font-size: .9rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .75rem 1.2rem; }
.footer-links a { color: var(--white); font-size: .84rem; font-weight: 700; text-decoration-color: rgba(255, 255, 255, .52); text-underline-offset: .28rem; }

@media (max-width: 950px) {
  .header-inner { align-items: flex-start; flex-direction: column; padding-block: .8rem; }
  nav { width: 100%; justify-content: flex-start; overflow-x: auto; padding-bottom: .55rem; }
  .company-hero { min-height: 39rem; }
  .intro-grid, .story-grid { grid-template-columns: 1fr; }
  .path-grid { grid-template-columns: 1fr 1fr; }
  .serene-grid, .playlist-feature .feature-grid { grid-template-columns: 1fr; }
  .breathe-listening-grid { grid-template-columns: 1fr; }
  .breathe-product-copy h1 { max-width: 10ch; }
  .shorts-feature .feature-media { order: initial; }
  .shorts-stage { grid-template-columns: minmax(14rem, .72fr) minmax(18rem, 1.28fr); }
  .detail-row { grid-template-columns: .85fr 1.15fr; }
  .ritual-grid { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 680px) {
  .shell, .narrow { width: min(100% - 1.25rem, 1180px); }
  .site-header { position: relative; }
  .brand { min-width: 0; }
  .brand img { width: 3rem; height: 3rem; }
  .brand-copy strong { font-size: 1rem; }
  .brand-copy span { font-size: .6rem; }
  nav { gap: 1rem; }
  nav a { font-size: .82rem; }
  .company-hero, .page-hero { min-height: 34rem; }
  .company-hero::before, .page-hero::before { background: rgba(24,57,66,.68); }
  .hero-copy { padding-block: 4rem; }
  .company-hero h1, .page-hero h1 { font-size: clamp(3.45rem, 16vw, 5rem); }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .watch-library-heading { align-items: flex-start; flex-direction: column; }
  .path-grid { grid-template-columns: 1fr; }
  .path-card p { min-height: 0; }
  .serene-grid { gap: 2rem; }
  .now-playing { align-items: flex-start; flex-direction: column; gap: .35rem; }
  .now-playing strong { text-align: left; }
  .playlist-heading { align-items: flex-start; flex-direction: column; gap: .25rem; }
  .playlist-rail { grid-auto-columns: 9.5rem; }
  .playlist-frame { border-radius: 1.2rem 1.2rem .5rem .5rem; }
  .self-care-feature .series-list { grid-auto-columns: 13.5rem; grid-auto-flow: column; grid-template-columns: none; }
  .shorts-stage { grid-template-columns: 1fr; }
  .shorts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .short-card { grid-template-columns: 3.75rem minmax(0, 1fr); min-height: 7.25rem; }
  .short-card img { height: 6.25rem; }
  .breathe-listening-room { min-height: auto; padding-top: 3rem; }
  .breathe-listening-grid { display: flex; flex-direction: column; }
  .breathe-listening-grid .audio-console { order: -1; width: 100%; }
  .audio-console { border-radius: 1.4rem 1.4rem .7rem .7rem; }
  .audio-console iframe { height: 352px; border-radius: .9rem .4rem .4rem .4rem; }
  .audio-console-label, .audio-console-footer { align-items: flex-start; flex-direction: column; gap: .35rem; }
  .detail-row { grid-template-columns: 1fr; }
  .detail-row img { min-height: 13rem; max-height: 18rem; }
  .included-grid, .schedule-grid, .faq-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .kelp-sketch-garden {
    background-size: 126vw 100vh;
    opacity: .11;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; }
}
