@charset "UTF-8";
:root {
  --font1: "Inter", sans-serif;
  --font2: "Fraunces", serif;
  --f1: 45px;
  --f2: 35px;
  --f3: 28px;
  --f4: 22px;
  --f5: 17px;
  --f6: 13px;
  --g1: 68px;
  --g2: 54px;
  --g3: 45px;
  --g4: 37px;
  --g5: 30px;
  --g6: 24px;
  --x1: 49px;
  --x2: 30px;
  --x3: 19px;
  --x4: 12px;
  --x5: 7px;
  --x6: 4px;
  --w-content: 880px;
  --w-total: 1160px;
  --gutter-full: 30px;
  --gutter-mobile: 19px;
  --phi: 1.6180339887;
  --bg1: #f6eee1;
  --bg2: #fffdf8;
  --c1: #22302a;
  --c2: #5d6e64;
  --ca: #a3543c;
  /* --- custom (UNREGISTERED) tokens: plain literals, never @if-bridged --- */
  --radius: 20px;
  --radius-sm: 12px;
  --t: 700ms cubic-bezier(.22, 1, .36, 1);
  --dot-venice: #c06b4f;
  --dot-encinitas: #b98a2e;
  --dot-santacruz: #6f8a64;
  --dot-online: #2e6b51;
  /* DAWN defaults — the design's default light. PM core can't set data-period on
     , so :root carries dawn for the pre-JS / no-JS / robot paint. */
  --wash: #f6eee1;
  --paper: #fffdf8;
  --ink: #22302a;
  --ink-soft: #5d6e64;
  --accent: #c06b4f;
  --accent-deep: #a3543c;
  --accent-soft: #f6e2d8;
  --accent-ink: #3c1d12;
  --pine: #1d4a38;
  --line: rgba(34, 48, 42, .14);
  --sky: radial-gradient(120% 90% at 50% 108%, #e8b88a 0%, #dfa789 18%, #f0dfc4 46%, #f6eee1 78%);
  --glow: rgba(224, 150, 100, .35);
}

/* -------- the four lights (the dial swaps these) -------- */
html[data-period=dawn] {
  --wash: #f6eee1;
  --paper: #fffdf8;
  --ink: #22302a;
  --ink-soft: #5d6e64;
  --accent: #c06b4f;
  --accent-deep: #a3543c;
  --accent-soft: #f6e2d8;
  --accent-ink: #3c1d12;
  --pine: #1d4a38;
  --line: rgba(34, 48, 42, .14);
  --sky: radial-gradient(120% 90% at 50% 108%, #e8b88a 0%, #dfa789 18%, #f0dfc4 46%, #f6eee1 78%);
  --glow: rgba(224, 150, 100, .35);
}

html[data-period=midday] {
  --wash: #fbf8f0;
  --paper: #ffffff;
  --ink: #22302a;
  --ink-soft: #5d6e64;
  --accent: #b98a2e;
  --accent-deep: #946d1f;
  --accent-soft: #f4e9cf;
  --accent-ink: #332503;
  --pine: #1d4a38;
  --line: rgba(34, 48, 42, .13);
  --sky: radial-gradient(140% 110% at 50% -25%, #fdf6df 0%, #fbf8f0 55%);
  --glow: rgba(233, 200, 122, .4);
}

html[data-period=golden] {
  --wash: #f7ecda;
  --paper: #fffaf1;
  --ink: #2c2620;
  --ink-soft: #6b5d4e;
  --accent: #b65a3d;
  --accent-deep: #94432b;
  --accent-soft: #f7ddcf;
  --accent-ink: #371507;
  --pine: #274434;
  --line: rgba(44, 38, 32, .15);
  --sky: radial-gradient(130% 95% at 18% 105%, #e9a96b 0%, #e3b285 26%, #f3dcb7 55%, #f7ecda 82%);
  --glow: rgba(230, 160, 90, .45);
}

html[data-period=night] {
  --wash: #0f211a;
  --paper: #163025;
  --ink: #efece2;
  --ink-soft: #a9bcab;
  --accent: #e9c87a;
  --accent-deep: #d4ad55;
  --accent-soft: #27432f;
  --accent-ink: #163025;
  --pine: #143427;
  --line: rgba(239, 236, 226, .16);
  --sky: radial-gradient(110% 80% at 50% -10%, #1d4a38 0%, #12281f 52%, #0f211a 100%);
  --glow: rgba(233, 200, 122, .18);
}

/* -------- reset / base -------- */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

img, fieldset {
  border: 0;
}

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

button, input[type=submit] {
  cursor: pointer;
  overflow: visible;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font1);
  font-size: var(--f5);
  line-height: 1.65;
  color: var(--ink);
  background: var(--wash);
  overflow-x: hidden;
  transition: background var(--t), color var(--t);
}

h1, h2, h3, h4 {
  font-family: var(--font2);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color var(--t);
}

p {
  margin: 0;
}

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

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

::selection {
  background: var(--accent-soft);
  color: var(--accent-ink);
}

.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;
}

.skip-link {
  position: absolute;
  left: var(--x3);
  top: -3.2rem;
  background: var(--pine);
  color: #f4f1e7;
  padding: var(--x5) var(--x4);
  border-radius: 0 0 10px 10px;
  z-index: 99;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid var(--accent-deep);
  outline-offset: 3px;
  border-radius: var(--x6);
}

.wrap {
  max-width: var(--w-total);
  margin: 0 auto;
  padding-left: var(--gutter-mobile);
  padding-right: var(--gutter-mobile);
}

.container {
  box-sizing: border-box;
  max-width: var(--w-total);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter-mobile);
  padding-right: var(--gutter-mobile);
}
@media all and (min-width: 940px) {
  .container {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.text {
  max-width: var(--w-content);
}

.eyebrow {
  font-family: var(--font1);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--accent-deep);
  transition: color var(--t);
}

.rule {
  width: 54px;
  height: 3px;
  border-radius: var(--x6);
  background: var(--accent);
  margin: var(--x4) 0 var(--x3);
  transition: background var(--t);
}

/* -------- buttons (PageMotor .button convention; .action = ghost) -------- */
.button {
  display: inline-flex;
  align-items: center;
  gap: var(--x5);
  font-family: var(--font1);
  font-weight: 700;
  font-size: var(--f5);
  line-height: 1em;
  padding: var(--x4) var(--x3);
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--pine);
  color: #f4f1e7;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background var(--t), color var(--t);
}
.button:hover, .button:active {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -18px var(--glow);
  color: #f4f1e7;
}
.button.action {
  background: transparent;
  color: var(--ink);
  border-color: currentColor;
  box-shadow: none;
}
.button.action:hover, .button.action:active {
  transform: translateY(-2px);
  color: var(--ink);
}
.button svg {
  vertical-align: inherit;
}

html[data-period=night] .button {
  background: var(--accent);
  color: var(--accent-ink);
}
html[data-period=night] .button:hover, html[data-period=night] .button:active {
  color: var(--accent-ink);
}
html[data-period=night] .button.action {
  background: transparent;
  color: var(--ink);
}
html[data-period=night] .button.action:hover, html[data-period=night] .button.action:active {
  color: var(--ink);
}

/* -------- header -------- */
#header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--wash);
  border-bottom: 1px solid var(--line);
  transition: background var(--t), border-color var(--t);
}

@supports (backdrop-filter: blur(12px)) {
  #header {
    background: rgba(246, 238, 225, 0.8);
    backdrop-filter: blur(12px);
  }
  html[data-period=midday] #header {
    background: rgba(251, 248, 240, 0.8);
  }
  html[data-period=golden] #header {
    background: rgba(247, 236, 218, 0.8);
  }
  html[data-period=night] #header {
    background: rgba(15, 33, 26, 0.8);
  }
}
.header-inner {
  max-width: var(--w-total);
  margin: 0 auto;
  padding: var(--x4) var(--gutter-mobile);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--x4);
}
@media all and (min-width: 940px) {
  .header-inner {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.brand {
  font-family: var(--font2);
  font-weight: 600;
  font-size: var(--f4);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--t);
}

.brand .sun {
  display: inline-block;
  width: 0.62em;
  height: 0.62em;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 0.4rem;
  vertical-align: baseline;
  box-shadow: 0 0 18px 2px var(--glow);
  transition: background var(--t), box-shadow var(--t);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--x3);
  font-family: var(--font1);
  font-weight: 600;
  font-size: var(--f5);
  line-height: 1em;
}

.site-nav a {
  color: var(--ink-soft);
  white-space: nowrap;
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  background: var(--accent);
  color: var(--accent-ink);
  padding: var(--x5) var(--x4);
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  transition: background var(--t), color var(--t), transform 0.2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  color: var(--accent-ink);
}

/* -------- hero + the day dial -------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--sky);
  transition: background var(--t);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: -22vmin;
  width: 64vmin;
  height: 64vmin;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow) 0%, transparent 62%);
  transition: background var(--t);
}

.hero-inner {
  max-width: var(--w-total);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) var(--gutter-mobile) clamp(3rem, 6vw, 4.5rem);
  text-align: center;
}
@media all and (min-width: 940px) {
  .hero-inner {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.hero .eyebrow {
  display: block;
  margin-bottom: var(--x3);
}

.hero h1 {
  font-size: clamp(3rem, 8.4vw, 6.4rem);
  line-height: 1.02;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent-deep);
  transition: color var(--t);
}

.hero-lede {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: var(--x3) auto var(--x2);
  transition: color var(--t);
}

.hero-now {
  font-family: var(--font2);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.4;
  color: var(--accent-deep);
  margin-bottom: var(--x2);
  transition: color var(--t);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--x5);
  margin-bottom: var(--x1);
}

/* the dial */
.dial {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--x5);
  border: 0;
  padding: 0;
  margin: 0 auto;
}

.dial-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--x5);
  font-family: var(--font1);
  font-weight: 600;
  font-size: var(--f6);
  line-height: 1em;
  padding: var(--x5) var(--x4) var(--x5) var(--x5);
  border-radius: 999px;
  border: 2px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  cursor: pointer;
  transition: transform 0.18s, border-color var(--t), background var(--t), color var(--t), box-shadow 0.25s;
}

.dial-chip .sun-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  flex: none;
  transition: transform 0.2s, background var(--t);
}

.dial-chip[data-set=dawn] .sun-dot {
  background: linear-gradient(180deg, #e8a06b 50%, #c06b4f 50%);
}

.dial-chip[data-set=midday] .sun-dot {
  background: #e9c87a;
}

.dial-chip[data-set=golden] .sun-dot {
  background: linear-gradient(180deg, #e9a96b, #b65a3d);
}

.dial-chip[data-set=night] .sun-dot {
  background: #143427;
  box-shadow: inset -3px -2px 0 1px #e9c87a;
}

.dial-chip:hover {
  transform: translateY(-2px);
  color: var(--ink);
}

.dial-chip.is-active {
  border-color: var(--accent);
  color: var(--ink);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.dial-chip.is-active .sun-dot {
  transform: scale(1.2);
}

.dial-hint {
  display: block;
  text-align: center;
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--ink-soft);
  margin-top: var(--x5);
  transition: color var(--t);
}

/* -------- breath marquee -------- */
.marquee {
  background: var(--pine);
  color: #efece2;
  overflow: hidden;
  padding-top: var(--x5);
  padding-bottom: var(--x5);
  transition: background var(--t);
}

html[data-period=night] .marquee {
  background: #0b1a14;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: var(--x2);
  white-space: nowrap;
  font-family: var(--font2);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1;
  letter-spacing: 0.04em;
  animation: scroll-x 36s linear infinite;
  will-change: transform;
}

.marquee-track .b {
  color: var(--accent);
  font-style: normal;
  font-family: var(--font1);
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color var(--t);
}

/* -------- section scaffolding -------- */
.section-pad {
  padding-top: clamp(3rem, 7vw, 5.5rem);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  padding-left: var(--gutter-mobile);
  padding-right: var(--gutter-mobile);
}
@media all and (min-width: 940px) {
  .section-pad {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.section-head {
  max-width: 46ch;
  margin: 0 auto var(--x2);
  text-align: center;
}

.section-head .eyebrow {
  display: block;
  margin-bottom: var(--x4);
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
}

/* -------- a day at Solas (timeline rows) -------- */
.day-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 880px;
}

.day-list li {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: var(--x3);
  align-items: baseline;
  padding-top: var(--x3);
  padding-bottom: var(--x3);
  border-top: 1px solid var(--line);
  transition: border-color var(--t);
}

.day-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.day-time {
  font-family: var(--font2);
  font-weight: 600;
  font-size: var(--f4);
  line-height: 1.1;
  color: var(--accent-deep);
  transition: color var(--t);
}

.day-list h3 {
  font-size: var(--f4);
  line-height: var(--g4);
  margin-bottom: var(--x6);
}

.day-list p {
  color: var(--ink-soft);
  font-size: var(--f5);
  line-height: var(--g5);
  transition: color var(--t);
}

.day-where {
  font-weight: 600;
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--ink-soft);
  white-space: nowrap;
}

.day-where .dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: var(--x5);
}

.day-full {
  font-weight: 700;
  font-size: var(--f6);
  line-height: var(--g6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-deep);
  transition: color var(--t);
}

/* -------- the eight practices (editorial index) -------- */
.practice-index {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 980px;
  columns: 2;
  column-gap: 3.4rem;
}

.practice-index li {
  break-inside: avoid;
  border-top: 1px solid var(--line);
  padding: var(--x3) var(--x6);
  display: flex;
  gap: var(--x4);
  align-items: baseline;
  transition: border-color var(--t);
}

.practice-no {
  font-family: var(--font1);
  font-weight: 700;
  font-size: var(--f6);
  line-height: var(--g6);
  letter-spacing: 0.14em;
  color: var(--accent-deep);
  flex: none;
  transition: color var(--t);
}

.practice-index h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.15;
  font-weight: 500;
}

.practice-index .note {
  display: block;
  color: var(--ink-soft);
  font-size: var(--f5);
  line-height: var(--g5);
  margin-top: var(--x6);
  transition: color var(--t);
}

/* -------- studios -------- */
.studio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--x4);
  max-width: var(--w-total);
  margin: 0 auto;
}

.studio-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: background var(--t), border-color var(--t), transform 0.25s, box-shadow 0.25s;
}

.studio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px -30px var(--glow);
}

.studio-ph {
  aspect-ratio: 3/2;
  background: linear-gradient(150deg, var(--accent-soft), var(--wash));
  display: flex;
  align-items: end;
  padding: var(--x5);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--ink-soft);
  transition: background var(--t);
}

.studio-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-body {
  padding: var(--x3) var(--x3) var(--x2);
}

.studio-body h3 {
  font-size: var(--f4);
  line-height: var(--g4);
  margin-bottom: var(--x5);
}

.studio-body h3 .dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin-right: var(--x5);
}

.studio-body p {
  color: var(--ink-soft);
  font-size: var(--f5);
  line-height: var(--g5);
  transition: color var(--t);
}

/* -------- offer band (full-bleed pine) -------- */
.offer {
  max-width: var(--w-total);
  margin: 0 auto;
  border-radius: 26px;
  background: var(--pine);
  color: #f2efe6;
  padding: clamp(2.4rem, 5vw, 3.6rem);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: var(--x2);
  align-items: center;
  transition: background var(--t);
}

html[data-period=night] .offer {
  background: var(--accent-soft);
}

.offer h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  line-height: 1.1;
}

html[data-period=night] .offer h2 {
  color: var(--ink);
}

.offer p {
  color: #cfd9cf;
  margin-top: var(--x5);
  max-width: 50ch;
  font-size: var(--f5);
  line-height: var(--g5);
}

html[data-period=night] .offer p {
  color: var(--ink-soft);
}

.offer-price {
  font-family: var(--font2);
  font-weight: 600;
  font-size: clamp(3.2rem, 6vw, 4.6rem);
  line-height: 1;
  color: var(--accent);
}

.offer-price small {
  display: block;
  font-family: var(--font1);
  font-weight: 500;
  font-size: var(--f6);
  line-height: var(--g6);
  color: #cfd9cf;
  margin-top: var(--x5);
  letter-spacing: 0;
}

html[data-period=night] .offer-price small {
  color: var(--ink-soft);
}

.offer-cta {
  margin-top: var(--x3);
}

/* -------- pull quote -------- */
.pull {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.pull .stars {
  color: var(--accent-deep);
  letter-spacing: 0.3em;
  margin-bottom: var(--x4);
  transition: color var(--t);
}

.pull blockquote {
  margin: 0;
  font-family: var(--font2);
  font-weight: 500;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.pull cite {
  display: block;
  font-family: var(--font1);
  font-style: normal;
  font-weight: 600;
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--ink-soft);
  margin-top: var(--x4);
  transition: color var(--t);
}

/* -------- online studio (always night) -------- */
.online {
  background: #0f211a;
  color: #efece2;
}

.online-inner {
  max-width: var(--w-total);
  margin: 0 auto;
  padding-top: clamp(3rem, 7vw, 5.5rem);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  padding-left: var(--gutter-mobile);
  padding-right: var(--gutter-mobile);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media all and (min-width: 940px) {
  .online-inner {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.online .eyebrow {
  color: #e9c87a;
}

.online h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  line-height: 1.1;
}

.online p {
  color: #a9bcab;
  margin: var(--x4) 0 var(--x2);
  max-width: 46ch;
  font-size: var(--f5);
  line-height: var(--g5);
}

.online .button {
  background: #e9c87a;
  color: #163025;
}
.online .button:hover, .online .button:active {
  color: #163025;
}

.prog-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--x5);
}

.prog-list li {
  background: #163025;
  border: 1px solid #27432f;
  border-radius: var(--radius-sm);
  padding: var(--x4) var(--x4);
  transition: transform 0.2s, border-color 0.2s;
}

.prog-list li:hover {
  transform: translateY(-3px);
  border-color: #e9c87a;
}

.prog-list b {
  display: block;
  font-weight: 600;
  color: #fff;
  font-size: var(--f5);
  line-height: var(--g5);
}

.prog-list span {
  font-size: var(--f6);
  line-height: var(--g6);
  color: #a9bcab;
}

/* -------- faq -------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-top: 1px solid var(--line);
  transition: border-color var(--t);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font2);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.3;
  padding: var(--x4) var(--x1) var(--x4) 0;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font1);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent-deep);
  transition: transform 0.25s, color var(--t);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  color: var(--ink-soft);
  padding: 0 var(--x1) var(--x3) 0;
  max-width: 60ch;
  font-size: var(--f5);
  line-height: var(--g5);
  transition: color var(--t);
}

/* -------- letter -------- */
.letter {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.letter h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.12;
  margin-top: var(--x5);
}

.letter .lede {
  color: var(--ink-soft);
  margin-top: var(--x5);
  font-size: var(--f5);
  line-height: var(--g5);
}

.letter form {
  display: flex;
  gap: var(--x5);
  margin-top: var(--x3);
  flex-wrap: wrap;
  justify-content: center;
}

.letter input {
  flex: 1 1 16rem;
  font-family: var(--font1);
  font-weight: 400;
  font-size: var(--f5);
  line-height: 1em;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: var(--x5) var(--x4);
  transition: background var(--t), border-color var(--t), color var(--t);
}

.letter input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* -------- footer (always dark; inverted) -------- */
#footer {
  background: #0b1a14;
  color: #a9bcab;
  margin-top: clamp(3rem, 7vw, 5.5rem);
  padding: 0;
  border: 0;
}

.footer-inner {
  max-width: var(--w-total);
  margin: 0 auto;
  padding: clamp(2.6rem, 6vw, 4rem) var(--gutter-mobile) var(--x2);
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: var(--x2);
}
@media all and (min-width: 940px) {
  .footer-inner {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

#footer h4 {
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: var(--g6);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e9c87a;
  margin: 0 0 var(--x5);
}

#footer a {
  display: block;
  padding-top: var(--x6);
  padding-bottom: var(--x6);
  color: #a9bcab;
  transition: color 0.2s;
}

#footer a:hover {
  color: #fff;
}

.footer-sun {
  font-family: var(--font2);
  font-style: italic;
  color: #efece2;
  font-size: var(--f5);
  line-height: var(--g5);
  margin-top: var(--x5);
}

.footer-legal {
  max-width: var(--w-total);
  margin: 0 auto;
  padding: 0 var(--gutter-mobile) var(--x2);
  font-size: var(--f6);
  line-height: var(--g6);
  color: #6f8a64;
  display: flex;
  justify-content: space-between;
  gap: var(--x4);
  flex-wrap: wrap;
}
@media all and (min-width: 940px) {
  .footer-legal {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.footer-legal a {
  display: inline;
  color: #6f8a64;
}

.footer-legal a:hover {
  color: #fff;
}

/* -------- reveal -------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ======================= content elements (page/error) ======================= */
.headline-area, .page-title {
  font-family: var(--font2);
}

.page-title {
  font-weight: 600;
}
.page-title a {
  color: var(--c1);
}
.page-title a:hover {
  color: var(--ca);
}

.page-content h1 {
  font-size: var(--f2);
  line-height: var(--g2);
  margin-bottom: var(--x2);
}
.page-content h2 {
  font-size: var(--f3);
  line-height: var(--g3);
  margin-top: var(--x1);
  margin-bottom: var(--x2);
}
.page-content h3 {
  font-size: var(--f4);
  line-height: var(--g4);
  margin-top: var(--x2);
  margin-bottom: var(--x3);
}
.page-content h4 {
  font-size: var(--f5);
  line-height: var(--g5);
  margin-bottom: var(--x4);
}
.page-content h1 + h2, .page-content h2 + h3, .page-content h1:first-child, .page-content h2:first-child, .page-content h3:first-child, .page-content hr + h2 {
  margin-top: 0;
}
.page-content ul, .page-content ol {
  margin-left: var(--x2);
}
.page-content li {
  margin-bottom: var(--x5);
}
.page-content li:last-child {
  margin-bottom: 0;
}
.page-content p, .page-content ul, .page-content ol, .page-content blockquote, .page-content pre, .page-content img, .page-content .callout, .page-content .caption {
  margin-bottom: var(--x2);
}
.page-content p:last-child, .page-content ul:last-child, .page-content ol:last-child, .page-content blockquote:last-child, .page-content pre:last-child, .page-content img:last-child, .page-content .callout:last-child, .page-content .caption:last-child {
  margin-bottom: 0;
}
.page-content > :last-child {
  margin-bottom: 0;
}

.page-container, .headline-area, .page-content {
  display: flow-root;
}

/* focus (centered) headline breakouts */
.page-container {
  margin-left: auto;
  margin-right: auto;
}
.page-container .headline-area, .page-container .page-content h1, .page-container .page-content h2, .page-container .page-content h3, .page-container .page-content .impact {
  text-align: center;
}
@media all and (min-width: 940px) {
  .page-container .headline-area, .page-container .page-content > h1, .page-container .page-content > h2, .page-container .page-content > h3, .page-container .page-content > .impact, .page-container .extend {
    margin-left: calc((var(--w-content) + 2 * var(--gutter-full)) / 2 - 50vw);
    margin-right: calc((var(--w-content) + 2 * var(--gutter-full)) / 2 - 50vw);
  }
  .page-container .extend {
    display: flow-root;
    box-sizing: border-box;
    max-width: calc(100vw - 2 * var(--gutter-full));
  }
}
@media all and (min-width: 1220px) {
  .page-container .headline-area, .page-container .page-content > h1, .page-container .page-content > h2, .page-container .page-content > h3, .page-container .page-content > .impact, .page-container .extend {
    margin-left: calc((var(--w-content) - var(--w-total)) / 2);
    margin-right: calc((var(--w-content) - var(--w-total)) / 2);
  }
  .page-container .extend {
    max-width: var(--w-total);
  }
}

blockquote {
  font-family: var(--font2);
  font-size: var(--f3);
  line-height: var(--g3);
  color: var(--c1);
  padding-left: var(--x3);
  border-left: var(--x5) solid var(--accent);
}
blockquote > :last-child {
  margin-bottom: 0;
}

.impact {
  font-family: var(--font2);
  font-size: var(--f4);
  line-height: 1.3;
  color: var(--accent-deep);
}

.small, .caption {
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
}

.callout {
  color: var(--c1);
  background-color: var(--paper);
  padding: var(--x3);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--x4) var(--x4) 0;
}
.callout > :last-child {
  margin-bottom: 0;
}

.highlight {
  background-color: var(--accent-soft);
  padding: var(--x6) 0;
}

hr {
  border: 0;
  border-bottom: 1px solid var(--line);
  margin: var(--x2) 0;
}

/* ======================= forms ======================= */
label {
  display: block;
  font-family: var(--font1);
  font-weight: 600;
}

input, textarea, select {
  display: block;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: 1em;
  font-weight: inherit;
  color: var(--ink);
  background: var(--paper);
  padding: var(--x5) var(--x4);
  border: 2px solid var(--line);
  border-radius: var(--x4);
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

textarea {
  line-height: inherit;
  resize: vertical;
}

input[type=checkbox], input[type=radio] {
  display: inline-block;
  width: auto;
}
input[type=checkbox] + label, input[type=radio] + label {
  display: inline;
  font-weight: normal;
  margin-left: var(--x6);
  user-select: none;
}

/* ======================= responsive ======================= */
@media (max-width: 940px) {
  .studio-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
  }
  .practice-index {
    columns: 1;
    max-width: 620px;
  }
  .offer {
    grid-template-columns: 1fr;
  }
  .online-inner {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .day-list li {
    grid-template-columns: 84px 1fr;
    gap: var(--x5);
  }
  .day-where {
    grid-column: 2;
    white-space: normal;
  }
  .site-nav a:not(.nav-cta) {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .marquee-track {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@keyframes scroll-x {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.brand-footer {
  color: #efece2;
}

.dot-venice {
  background: var(--dot-venice);
}

.dot-encinitas {
  background: var(--dot-encinitas);
}

.dot-santacruz {
  background: var(--dot-santacruz);
}

.dot-online {
  background: var(--dot-online);
}