@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-variable.woff2") format("woff2");
}

:root {
  --ink: #3f1123;
  --plum: #3f1123;
  --pink: #872249;
  --gold: #fcb900;
  --ochre: #e3b055;
  --cream: #fbf7f1;
  --paper: #fbf7f1;
  --panel: #fffaf3;
  --muted: #765e68;
  --line: #e9d7c8;
  --mist: #f4eadf;
  --white-ink: #fff8ee;
  --shadow: 0 18px 55px rgba(63, 17, 35, 0.15);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

p,
li,
h1,
h2,
h3,
code,
.button {
  overflow-wrap: anywhere;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(63, 17, 35, 0.12);
  background: rgba(251, 247, 241, 0.94);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 760;
  letter-spacing: 0;
  color: var(--plum);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(63, 17, 35, 0.25);
  border-radius: 50% 50% 8px 50%;
  background:
    linear-gradient(135deg, transparent 42%, var(--gold) 43% 68%, transparent 69%),
    var(--plum);
  color: var(--white-ink);
  font-family: Georgia, serif;
  font-size: 18px;
  transform: rotate(-7deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  min-width: 42px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--plum);
  border-radius: var(--radius);
  background: var(--plum);
  color: white;
  text-decoration: none;
  font-weight: 680;
  line-height: 1.1;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--plum);
}

.button.soft {
  border-color: transparent;
  background: var(--gold);
  color: var(--plum);
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: calc(100vh - 65px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(63, 17, 35, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(63, 17, 35, 0.045) 1px, transparent 1px),
    var(--cream);
  background-size: 44px 44px, 44px 44px, auto;
}

.hero::before {
  content: "";
  position: absolute;
  right: -8vw;
  top: 9vh;
  width: min(46vw, 600px);
  aspect-ratio: 1;
  border-radius: 44% 56% 48% 52%;
  background: var(--gold);
  clip-path: polygon(47% 0, 56% 27%, 85% 15%, 72% 42%, 100% 50%, 72% 59%, 85% 87%, 56% 73%, 48% 100%, 40% 72%, 13% 87%, 27% 58%, 0 50%, 27% 41%, 13% 14%, 40% 28%);
  opacity: 0.58;
}

.hero-inner {
  position: relative;
  display: grid;
  align-items: center;
  max-width: 1180px;
  min-height: calc(100vh - 65px);
  margin: 0 auto;
  padding: 72px 20px 92px;
}

.hero-copy {
  max-width: 760px;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 8vw, 92px);
  color: var(--plum);
  font-weight: 540;
}

.hero-copy > p {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 24px);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-visual {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 42px;
  width: min(42vw, 440px);
  min-width: 300px;
  pointer-events: none;
}

.atelier-stack {
  display: grid;
  gap: 10px;
  transform: rotate(-2deg);
}

.atelier-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10px;
}

.visual-tile {
  min-height: 74px;
  border: 1px solid rgba(63, 17, 35, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.75);
  box-shadow: 0 10px 30px rgba(63, 17, 35, 0.10);
}

.tile-note {
  padding: 15px;
  font-family: Georgia, serif;
  font-size: 18px;
}

.tile-mood {
  background:
    linear-gradient(135deg, rgba(135, 34, 73, 0.96), rgba(252, 185, 0, 0.85)),
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(255,255,255,0.14) 12px 14px);
}

.tile-wrap {
  background:
    linear-gradient(135deg, var(--plum), var(--pink));
}

.tile-thread {
  background:
    radial-gradient(circle at 18px 18px, rgba(255,255,255,0.9) 0 3px, transparent 4px),
    linear-gradient(90deg, rgba(252, 185, 0, 0.38), rgba(135, 34, 73, 0.22));
  background-size: 30px 30px, auto;
}

.scroll-cue {
  position: absolute;
  left: max(20px, calc((100vw - 1180px) / 2));
  bottom: 20px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: clamp(56px, 8vw, 86px) clamp(16px, 4vw, 20px);
}

.section.alt {
  background: #f6eadb;
}

.section.dark {
  background: var(--plum);
  color: var(--white-ink);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.container > *,
.section-head > *,
.lane-band > *,
.form-grid > *,
.field-grid > *,
.brand-panel > *,
.footer-grid > * {
  min-width: 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2,
.page-title h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 520;
}

.section-head p,
.page-title p,
.lead {
  color: var(--muted);
  font-size: 17px;
}

.dark .section-head p,
.dark .lead {
  color: rgba(255, 248, 238, 0.76);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 24px;
}

.dark .card {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}

.card h3 {
  margin-bottom: 12px;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 520;
}

.card p {
  color: var(--muted);
}

.dark .card p {
  color: rgba(255,255,255,0.72);
}

.meta-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.meta-list li {
  display: flex;
  gap: 9px;
}

.meta-list li::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.lane-band {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.lane-band:last-child {
  border-bottom: 1px solid var(--line);
}

.lane-band h2 {
  font-family: Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 520;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(252, 185, 0, 0.13);
  color: var(--pink);
  font-size: 13px;
}

.page-hero {
  padding: clamp(56px, 8vw, 74px) clamp(16px, 4vw, 20px) clamp(42px, 7vw, 54px);
  background:
    linear-gradient(135deg, rgba(252, 185, 0, 0.18), rgba(135, 34, 73, 0.08)),
    var(--paper);
}

.page-title {
  max-width: 820px;
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
}

.process .card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 28px;
  color: var(--pink);
  font-weight: 760;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.proof-item {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background:
    linear-gradient(150deg, rgba(255,250,243,0.9), rgba(255,250,243,0.56)),
    linear-gradient(135deg, rgba(135,34,73,0.18), rgba(252,185,0,0.26));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.proof-item strong {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 520;
}

.proof-item span {
  color: var(--muted);
  font-size: 13px;
}

.social-section {
  background:
    linear-gradient(135deg, rgba(252, 185, 0, 0.12), rgba(135, 34, 73, 0.06)),
    var(--paper);
}

.social-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 32%);
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--pink) var(--mist);
}

.social-card {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(63, 17, 35, 0.16);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 22px;
  box-shadow: 0 14px 34px rgba(63, 17, 35, 0.12);
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 120px;
  aspect-ratio: 1;
  background: var(--gold);
  clip-path: polygon(47% 0, 56% 27%, 85% 15%, 72% 42%, 100% 50%, 72% 59%, 85% 87%, 56% 73%, 48% 100%, 40% 72%, 13% 87%, 27% 58%, 0 50%, 27% 41%, 13% 14%, 40% 28%);
  opacity: 0.65;
}

.social-card::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 56px;
  right: 22px;
  height: 96px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 24px 24px, rgba(255,255,255,0.84) 0 3px, transparent 4px),
    linear-gradient(135deg, rgba(135,34,73,0.92), rgba(252,185,0,0.84));
  background-size: 28px 28px, auto;
}

.story-card {
  background: var(--plum);
  color: var(--white-ink);
}

.story-card p {
  color: rgba(255, 248, 238, 0.78);
}

.story-card::after {
  border-radius: 42% 42% var(--radius) var(--radius);
  background:
    linear-gradient(160deg, rgba(251,247,241,0.92), rgba(252,185,0,0.62)),
    var(--gold);
}

.social-format {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-bottom: auto;
  border: 1px solid rgba(63, 17, 35, 0.14);
  border-radius: 999px;
  background: rgba(251, 247, 241, 0.86);
  color: var(--pink);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.story-card .social-format {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.12);
  color: var(--gold);
}

.social-card h3,
.social-card p {
  position: relative;
  z-index: 1;
}

.social-card h3 {
  margin-bottom: 10px;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 520;
}

.social-card p {
  margin: 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 720;
}

details p {
  color: var(--muted);
}

.legal-page {
  background: var(--paper);
}

.legal-updated {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 680;
}

.legal-section {
  background: var(--cream);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  padding-top: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
}

.legal-toc a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid rgba(63, 17, 35, 0.12);
  text-decoration: none;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--pink);
}

.legal-content {
  display: grid;
  gap: 38px;
  max-width: 860px;
}

.legal-content section {
  display: grid;
  gap: 12px;
}

.legal-content h2,
.contact-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 520;
}

.legal-content p,
.legal-content li,
.contact-panel p {
  margin: 0;
  color: var(--muted);
}

.legal-content a,
.contact-panel a {
  color: var(--pink);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.legal-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.legal-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--plum);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-panel {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 28px;
  align-items: start;
}

form {
  display: grid;
  gap: 18px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 680;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  padding: 11px 12px;
  font: inherit;
}

textarea {
  min-height: 116px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(252, 185, 0, 0.42);
  border-color: var(--pink);
}

.helper {
  color: var(--muted);
  font-size: 13px;
  font-weight: 450;
}

.summary-panel {
  position: sticky;
  top: 92px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 22px;
  box-shadow: var(--shadow);
}

.summary-panel h2 {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 520;
}

.brief-output {
  min-height: 180px;
  margin-top: 16px;
  white-space: pre-wrap;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 42px 20px;
  background: var(--plum);
  color: rgba(255,248,238,0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(255,248,238,0.82);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
}

.chat-widget {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 1000;
  color: var(--ink);
}

.chat-launcher,
.chat-close,
.chat-chips button {
  border: 1px solid var(--plum);
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
}

.chat-launcher {
  display: grid;
  gap: 2px;
  min-width: 156px;
  min-height: 58px;
  padding: 10px 18px;
  background: var(--plum);
  color: var(--white-ink);
  font-weight: 760;
  box-shadow: var(--shadow);
  text-align: left;
}

.chat-launcher span {
  color: rgba(255, 248, 238, 0.82);
  font-size: 12px;
  line-height: 1;
}

.chat-launcher strong {
  font-size: 17px;
  line-height: 1.1;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 62px;
  display: grid;
  grid-template-rows: auto minmax(180px, 1fr) auto auto;
  width: min(390px, calc(100vw - 28px));
  max-height: min(640px, calc(100vh - 112px));
  overflow: hidden;
  border: 1px solid rgba(63, 17, 35, 0.18);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.chat-panel[hidden] {
  display: none;
}

.chat-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.chat-head .eyebrow {
  margin-bottom: 6px;
}

.chat-head h2 {
  font-size: 22px;
}

.chat-close {
  min-height: 36px;
  padding: 8px 10px;
  background: transparent;
  color: var(--plum);
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
  overflow-y: auto;
  padding: 14px;
  background: var(--cream);
}

.chat-message {
  max-width: 86%;
  padding: 10px 12px;
  border-radius: var(--radius);
}

.chat-message p {
  margin: 0;
  font-size: 14px;
}

.chat-message.assistant {
  align-self: flex-start;
  border: 1px solid var(--line);
  background: var(--panel);
}

.chat-message.user {
  align-self: flex-end;
  background: var(--plum);
  color: var(--white-ink);
}

.chat-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.chat-links a {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--plum);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.chat-chips {
  display: flex;
  gap: 8px;
  padding: 10px 12px 0;
  overflow-x: auto;
}

.chat-chips button {
  flex: 0 0 auto;
  padding: 8px 10px;
  background: var(--mist);
  color: var(--plum);
  font-size: 13px;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
}

.chat-form input {
  min-width: 0;
}

.brand-asset {
  width: min(100%, 520px);
  border: 1px solid rgba(63, 17, 35, 0.16);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.brand-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  gap: 34px;
  align-items: center;
}

.splash-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(63, 17, 35, 0.16);
  border-radius: var(--radius);
  background: var(--plum);
  color: var(--white-ink);
  padding: 28px;
}

.splash-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -60px;
  bottom: -75px;
  width: 260px;
  aspect-ratio: 1;
  background: var(--gold);
  clip-path: polygon(47% 0, 56% 27%, 85% 15%, 72% 42%, 100% 50%, 72% 59%, 85% 87%, 56% 73%, 48% 100%, 40% 72%, 13% 87%, 27% 58%, 0 50%, 27% 41%, 13% 14%, 40% 28%);
}

.splash-card > * {
  position: relative;
  z-index: 1;
}

.workshop-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workshop-list li {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.74);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.proof-upload-map {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.proof-upload-map code {
  display: inline-block;
  max-width: 100%;
  padding: 2px 5px;
  border-radius: 4px;
  background: rgba(63, 17, 35, 0.08);
  word-break: break-word;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    inset: 64px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 300px;
  }

  .hero::before {
    top: 104px;
    right: -24vw;
    width: 68vw;
    opacity: 0.38;
  }

  .hero-visual {
    left: 20px;
    right: 20px;
    bottom: 48px;
    width: auto;
    min-width: 0;
  }

  .section-head,
  .lane-band,
  .form-grid,
  .legal-layout,
  .brand-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 0;
  }

  .grid.three,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid.two {
    grid-template-columns: 1fr;
  }

  .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summary-panel {
    position: static;
  }
}

@media (max-width: 560px) {
  .nav {
    padding-inline: 14px;
  }

  .brand span:last-child {
    max-width: 148px;
    line-height: 1.1;
  }

  .hero-inner,
  .section,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero::before {
    top: 132px;
    right: -70vw;
    width: 96vw;
    opacity: 0.28;
  }

  .hero-inner {
    padding-bottom: 330px;
  }

  .hero-actions,
  .section-actions {
    align-items: stretch;
  }

  .button {
    max-width: 100%;
  }

  .grid.three,
  .grid.two,
  .proof-grid,
  .contact-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: 160px;
  }

  .splash-card {
    min-height: 230px;
  }

  .splash-card::after {
    right: -96px;
    bottom: -96px;
    width: 235px;
    opacity: 0.72;
  }

  .social-carousel {
    grid-auto-columns: minmax(245px, 86%);
  }

  .chat-widget {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
  }

  .chat-launcher {
    min-width: 136px;
    min-height: 54px;
    padding: 9px 14px;
  }

  .chat-launcher strong {
    font-size: 15px;
  }

  .chat-panel {
    bottom: 58px;
    width: calc(100vw - 24px);
    max-height: calc(100vh - 88px);
  }

  .chat-form {
    grid-template-columns: 1fr;
  }

  .chat-form .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(40px, 15vw, 62px);
  }
}

/* Figma wireframes: /home-clean-wireframe and /workshops — 2026-08-21 */
.wireframe-page {
  --wf-ink: #3f1123;
  --wf-accent: #9a2858;
  --wf-cream: #fbf7f1;
  --wf-card: #f1eae4;
  --wf-green: #008b45;
  --wf-line: #d2b48c;
  background: #fff;
  color: var(--wf-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.wireframe-page .site-header,
.home-page .site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid #eadfd4;
  background: var(--wf-cream);
  backdrop-filter: none;
}

.wireframe-page .nav {
  width: 100%;
  max-width: 1280px;
  min-height: 100px;
  margin: 0 auto;
  padding: 0 32px;
}

.wireframe-page .brand-logo {
  width: 65px;
  height: 72px;
}

.wireframe-page .nav-links {
  gap: clamp(26px, 3.1vw, 50px);
  color: var(--wf-ink);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.wireframe-page .nav-links a {
  text-transform: uppercase;
}

.wireframe-page .nav-links a[aria-current="page"]::after {
  bottom: -18px;
}

.wireframe-page .nav-links .sign-in-link {
  min-width: 112px;
  min-height: 40px;
  border-color: var(--wf-ink);
  background: transparent;
}

.media-slot {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--wf-green);
  color: var(--wf-ink);
}

.media-slot > img,
.media-slot > video {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.media-slot > span:not(.visually-hidden) {
  font-size: 18px;
}

.wf-solid-button,
.wf-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--wf-ink);
  border-radius: 0;
  padding: 12px 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.wf-solid-button {
  background: var(--wf-ink);
  color: #fff;
}

.wf-outline-button {
  background: transparent;
  color: var(--wf-ink);
}

.wf-solid-button:hover,
.wf-solid-button:focus-visible,
.wf-outline-button:hover,
.wf-outline-button:focus-visible {
  border-color: var(--wf-accent);
  background: var(--wf-accent);
  color: #fff;
}

/* Homepage */
.wf-home-hero {
  position: relative;
  min-height: 930px;
  background: var(--wf-green);
}

.media-slot-home {
  position: absolute;
  inset: 0;
}

.wf-home-hero-card {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(600px, calc(100% - 48px));
  min-height: 420px;
  padding: 72px 72px 60px;
  transform: translate(-50%, -50%);
  background: var(--wf-cream);
  text-align: center;
}

.wf-home-hero-card h1 {
  margin: 0;
  font-size: clamp(48px, 5.2vw, 64px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.wf-home-hero-card p {
  max-width: 410px;
  margin: 34px auto 0;
  font-size: 18px;
  line-height: 1.55;
}

.wf-home-hero-card .wf-solid-button {
  margin-top: 44px;
}

.wf-home-promise {
  min-height: 720px;
  background: var(--wf-cream);
  padding: 110px clamp(32px, 7.5vw, 110px) 92px;
  text-align: center;
}

.wf-home-promise h2 {
  margin: 0;
  font-size: clamp(42px, 4.6vw, 66px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.wf-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(36px, 7vw, 100px);
  max-width: 1140px;
  margin: 104px auto 0;
}

.wf-promise-grid article {
  max-width: 320px;
  margin: 0 auto;
}

.wf-line-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 auto;
  color: var(--wf-ink);
}

.wf-line-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wf-promise-grid h3 {
  margin: 22px 0 0;
  font-size: 24px;
  font-weight: 500;
}

.wf-promise-grid p {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.55;
}

.wf-home-offers {
  min-height: 790px;
  background: var(--wf-cream);
  padding: 78px clamp(30px, 7.5vw, 110px) 100px;
}

.wf-offers-heading,
.wf-offer-grid {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

.wf-offers-heading p {
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wf-offers-heading h2 {
  margin: 0;
  font-size: clamp(38px, 3.4vw, 42px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.wf-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4.2vw, 62px);
  margin-top: 70px;
}

.wf-offer-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  background: var(--wf-card);
  padding: 34px 30px 32px;
}

.wf-tags {
  display: flex;
  gap: 14px;
  min-height: 22px;
}

.wf-tags span {
  border: 1px solid var(--wf-line);
  padding: 3px 9px;
  font-size: 9px;
  letter-spacing: 0.04em;
}

.wf-offer-card h3 {
  margin: 28px 0 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.18;
}

.wf-offer-card p {
  margin: 46px 0 0;
  font-size: 16px;
  line-height: 1.55;
}

.wf-offer-card > a {
  margin-top: auto;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

/* Workshops */
.workshops-page main {
  display: grid;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  column-gap: 110px;
}

.wf-workshops-hero,
.wf-workshops-showcase,
.wf-workshops-next,
.wf-workshops-end-mark {
  grid-column: 1 / -1;
}

.wf-workshops-hero {
  display: grid;
  min-height: 560px;
  order: 1;
  place-items: center;
  padding: 90px 32px 60px;
  text-align: center;
}

.wf-workshops-hero h1 {
  margin: 0;
  font-size: clamp(56px, 5.8vw, 72px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.wf-workshops-hero p {
  max-width: 720px;
  margin: 44px auto 0;
  font-size: 16px;
  line-height: 1.65;
}

.wf-workshops-showcase {
  display: grid;
  max-width: 1120px;
  order: 2;
  margin: 0 auto;
  grid-template-columns: minmax(0, 2.2fr) minmax(280px, 1fr);
  gap: 12px;
}

.wf-workshop-primary,
.wf-workshop-aside {
  display: grid;
  gap: 12px;
}

.wf-workshop-primary {
  grid-template-rows: auto auto;
}

/* Google Calendar workshop cards */
.wf-featured-workshop[hidden],
.wf-next-note[hidden] {
  display: none !important;
}

.workshop-calendar-carousel {
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}

.workshop-calendar-viewport {
  overflow: hidden;
}

.workshop-calendar-track {
  display: grid;
  row-gap: 0;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.workshop-calendar-track--instant {
  transition: none;
}

@media (min-width: 1001px) {
  .workshops-page .workshop-calendar-carousel {
    width: 1148px;
    height: 635px;
  }
}

.workshops-instagram-carousel {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 0;
  background: #fff;
}

.workshops-instagram-empty {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #008b45;
  color: #3f1123;
  text-align: center;
}

.workshops-instagram-empty strong { font-size: 18px; font-weight: 500; }
.workshops-instagram-empty span { padding: 0 18px; font-size: 13px; }
.workshops-instagram-stage { position: absolute; inset: 0; width: auto; height: auto; overflow: hidden; }
.workshops-instagram-track { position: absolute; top: 50%; left: 0; display: flex; gap: var(--instagram-panel-gap,8px); height: var(--instagram-panel-height); transition: transform 1.2s cubic-bezier(.4,0,.2,1); will-change: transform; }
.workshops-instagram-stage--settling .workshops-instagram-track { transition: none; }
.workshops-instagram-panel { position: relative; flex: 0 0 var(--instagram-panel-width); width: var(--instagram-panel-width); height: var(--instagram-panel-height); overflow: hidden; border: 0; background: #fff; opacity: 1; transition: opacity 1.2s ease; }
.workshops-instagram-panel iframe { position: absolute; top: 50%; left: 50%; display: block; width: 384px; max-width: none; height: 920px; border: 0; background: #fff; transform: translate(-50%,-50%) scale(var(--instagram-embed-scale)); transform-origin: center; }
.workshops-instagram-panel--previous,
.workshops-instagram-panel--next { cursor: pointer; }
.workshops-instagram-panel--far-previous,
.workshops-instagram-panel--far-next { opacity: 0; pointer-events: none; }
.workshops-instagram-panel--previous iframe,
.workshops-instagram-panel--next iframe { pointer-events: none; }
.workshops-instagram-panel::after { position: absolute; inset: 0; z-index: 3; background: rgba(255,255,255,.035); content: ""; opacity: 0; pointer-events: none; transition: opacity 1.2s ease; }
.workshops-instagram-panel::before { position: absolute; inset: 0; z-index: 4; border: 1px solid #d2b48c; content: ""; opacity: 0; pointer-events: none; }
.workshops-instagram-panel--active::before { opacity: 1; }
.workshops-instagram-panel--previous::after { opacity: 1; -webkit-backdrop-filter: blur(11px); backdrop-filter: blur(11px); -webkit-mask-image: linear-gradient(to right,#000 0%,#000 12%,transparent 75%); mask-image: linear-gradient(to right,#000 0%,#000 12%,transparent 75%); }
.workshops-instagram-panel--next::after { opacity: 1; -webkit-backdrop-filter: blur(11px); backdrop-filter: blur(11px); -webkit-mask-image: linear-gradient(to left,#000 0%,#000 12%,transparent 75%); mask-image: linear-gradient(to left,#000 0%,#000 12%,transparent 75%); }
.workshops-instagram-story { display: flex; width: 100%; height: 100%; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(140deg,#871c4d,#f05096 58%,#fcb900); color: #fff; text-decoration: none; }
.workshops-instagram-empty[hidden],
.workshops-instagram-stage[hidden] { display: none !important; }

.wf-workshop-aside {
  grid-template-rows: auto 1fr;
}

.wf-typical-workshop,
.wf-philosophy-card,
.wf-testimonial-card {
  border: 1px solid var(--wf-line);
  background: #fff;
  padding: 34px;
}

.wf-typical-workshop h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}

.wf-philosophy-card h2,
.wf-testimonial-card h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.wf-typical-workshop p,
.wf-philosophy-card p {
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.5;
}

.wf-inline-links {
  display: flex;
  gap: 20px;
  margin-top: 28px;
}

.wf-inline-links a,
.wf-philosophy-card a,
.wf-featured-copy > a {
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.wf-philosophy-card > div {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  border-top: 1px solid #ddd;
  padding-top: 22px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.wf-testimonial-card {
  min-height: 410px;
  background: #f5f5f5;
}

.media-slot-testimonial {
  min-height: 290px;
  margin-top: 20px;
  background: transparent;
  place-items: start;
}

.wf-workshops-next {
  max-width: 1120px;
  order: 3;
  margin: 110px auto 0;
}

.wf-next-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
}

.wf-next-heading h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.wf-next-heading > span {
  border: 1px solid var(--wf-ink);
  padding: 7px 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.wf-featured-workshop {
  display: grid;
  min-height: 610px;
  border: 1px solid var(--wf-line);
  grid-template-columns: 1fr 1.05fr;
}

.wf-featured-copy {
  padding: 64px 54px 54px;
}

.wf-featured-copy h3 {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.15;
}

.wf-featured-copy p {
  margin: 44px 0 0;
  font-size: 18px;
  line-height: 1.55;
}

.wf-featured-copy ul {
  display: grid;
  margin: 40px 0 38px;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  list-style: none;
  font-size: 14px;
}

.wf-featured-copy li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.wf-featured-copy li svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wf-next-note {
  margin: 0;
  background: #cecece;
  padding: 22px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
}

.wf-workshop-form {
  order: 4;
  margin-top: 112px;
}

.wf-register-form {
  margin-left: 80px;
}

.wf-feedback-form {
  order: 5;
  margin-right: 80px;
}

.wf-form-panel {
  height: 100%;
  border: 0;
}

.wf-form-panel form {
  display: block;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 64px 62px;
}

.wf-form-panel header {
  margin-bottom: 42px;
}

.wf-form-panel h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.wf-form-panel header p {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.5;
}

.wf-form-panel form > label {
  display: block;
  margin-top: 34px;
  color: var(--wf-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.wf-form-panel input,
.wf-form-panel select,
.wf-form-panel textarea {
  width: 100%;
  min-height: 52px;
  margin-top: 14px;
  border: 0;
  border-bottom: 1px solid #8d8d98;
  border-radius: 0;
  background: transparent;
  color: var(--wf-ink);
  padding: 10px 12px;
  font: inherit;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
}

.wf-form-panel textarea {
  min-height: 98px;
  resize: vertical;
}

.wf-form-panel input:disabled,
.wf-form-panel select:disabled {
  color: #866d78;
  cursor: not-allowed;
  opacity: 0.8;
}

.wf-star-rating {
  margin: 34px 0 0;
  border: 0;
  padding: 0;
}

.wf-star-rating legend {
  margin: 0 0 10px;
  color: var(--wf-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.wf-star-rating > div {
  display: flex;
  gap: 10px;
}

.wf-star-rating label {
  position: relative;
  display: block;
  color: var(--wf-ink);
  cursor: pointer;
}

.wf-star-rating input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.wf-star-rating label > span[aria-hidden="true"] {
  display: block;
  width: 28px;
  height: 28px;
}

.wf-star-rating svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linejoin: round;
}

.wf-star-rating label:has(input:checked) > span[aria-hidden="true"],
.wf-star-rating label:has(input:focus-visible) > span[aria-hidden="true"] {
  color: var(--wf-accent);
  text-shadow: 0 0 0.01px currentColor;
}

.wf-form-actions {
  margin-top: 46px;
}

.wf-workshops-end-mark {
  display: grid;
  min-height: 320px;
  order: 6;
  place-items: center;
}

.wf-workshops-end-mark svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--wf-ink);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Shared wireframe footer */
.wireframe-page .site-footer {
  border-top: 1px solid #eadfd4;
  background: #f9f9f9;
  color: var(--wf-ink);
}

.wireframe-page .footer-shell {
  display: grid;
  min-height: 170px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 34px 50px 18px;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 32px;
}

.wireframe-page .footer-copyright {
  margin: 0;
  color: var(--wf-accent);
  font-size: 13px;
}

.wireframe-page .footer-social {
  display: flex;
  align-items: center;
  align-self: center;
  gap: clamp(34px, 5vw, 70px);
}

.wireframe-page .footer-social > a,
.wireframe-page .footer-social > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  color: var(--wf-ink);
  text-decoration: none;
}

.wireframe-page .footer-social svg {
  display: block;
  width: 44px;
  height: 44px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wireframe-page .footer-social .social-youtube,
.wireframe-page .footer-social .social-youtube svg {
  width: 48px;
}

.wireframe-page .footer-social svg .filled {
  fill: currentColor;
  stroke: none;
}

.wireframe-page .social-placeholder {
  opacity: 1;
}

.wireframe-page .footer-links {
  display: flex;
  flex-direction: column;
  justify-self: end;
  gap: 12px;
  text-align: right;
}

.wireframe-page .footer-links a {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .wireframe-page .nav-links {
    gap: 20px;
    font-size: 11px;
  }

  .wf-home-hero {
    min-height: 760px;
  }

  .wf-workshops-showcase,
  .wf-workshops-next {
    margin-right: 32px;
    margin-left: 32px;
  }

  .wf-register-form {
    margin-left: 32px;
  }

  .wf-feedback-form {
    margin-right: 32px;
  }

  .wf-form-panel form {
    padding: 48px 34px;
  }
}

@media (max-width: 900px) {
  .wireframe-page .nav {
    min-height: 84px;
    padding: 6px 20px;
  }

  .wireframe-page .brand-logo {
    width: 56px;
    height: 62px;
  }

  .wireframe-page .nav-links {
    top: 84px;
    gap: 0;
    font-size: 12px;
  }

  .wireframe-page .nav-links a[aria-current="page"]::after {
    display: none;
  }

  .wireframe-page .nav-links .sign-in-link {
    margin: 12px 0 0;
  }

  .wf-home-hero {
    min-height: 680px;
  }

  .wf-home-hero-card {
    min-height: 360px;
    padding: 56px 42px 46px;
  }

  .wf-home-promise {
    min-height: auto;
  }

  .wf-promise-grid,
  .wf-offer-grid {
    grid-template-columns: 1fr;
  }

  .wf-promise-grid {
    gap: 64px;
  }

  .wf-offer-grid {
    gap: 22px;
  }

  .wf-offer-card {
    min-height: 390px;
  }

  .workshops-page main {
    display: block;
  }

  .wf-workshops-hero {
    min-height: 480px;
  }

  .wf-workshops-showcase {
    grid-template-columns: 1fr;
  }

  .wf-workshop-primary {
    grid-template-rows: 480px auto;
  }

  .wf-featured-workshop {
    grid-template-columns: 1fr;
  }

  .media-slot-featured {
    min-height: 430px;
  }

  .wf-workshop-form,
  .wf-register-form,
  .wf-feedback-form {
    margin: 70px 32px 0;
  }

  .wireframe-page .footer-shell {
    min-height: 280px;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .wireframe-page .footer-links {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .wf-home-hero {
    min-height: 600px;
  }

  .wf-home-hero-card {
    width: calc(100% - 32px);
    min-height: 340px;
    padding: 48px 24px 40px;
  }

  .wf-home-hero-card p {
    font-size: 16px;
  }

  .wf-home-promise,
  .wf-home-offers {
    padding-right: 20px;
    padding-left: 20px;
  }

  .wf-home-promise h2 br {
    display: none;
  }

  .wf-workshops-hero {
    min-height: 420px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .wf-workshops-showcase,
  .wf-workshops-next,
  .wf-workshop-form,
  .wf-register-form,
  .wf-feedback-form {
    margin-right: 16px;
    margin-left: 16px;
  }

  .wf-workshop-primary {
    grid-template-rows: 360px auto;
  }

  .wf-inline-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .wf-typical-workshop,
  .wf-philosophy-card,
  .wf-testimonial-card {
    padding: 26px 22px;
  }

  .wf-next-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .wf-featured-copy {
    padding: 40px 24px;
  }

  .wf-featured-copy ul {
    grid-template-columns: 1fr;
  }

  .media-slot-featured {
    min-height: 320px;
  }

  .wf-form-panel form {
    padding: 42px 22px;
  }

  .wireframe-page .footer-social {
    gap: 20px;
  }

  .wireframe-page .footer-social > a,
  .wireframe-page .footer-social > span {
    width: 40px;
    height: 40px;
  }

  .wireframe-page .footer-social svg {
    width: 40px;
    height: 40px;
  }

  .wireframe-page .footer-social .social-youtube,
  .wireframe-page .footer-social .social-youtube svg {
    width: 44px;
  }
}

/* Clean Figma Sites header, homepage, and footer — 2026-08-11 */
.site-header {
  background: rgba(251, 247, 241, 0.97);
}

.nav {
  max-width: 1440px;
  min-height: 100px;
  padding: 0 32px;
}

.brand-logo-link {
  flex: 0 0 auto;
  margin-right: auto;
}

.brand-logo {
  display: block;
  width: 65px;
  height: 72px;
  object-fit: contain;
}

.nav-links {
  gap: clamp(24px, 3.2vw, 52px);
  color: var(--plum);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  white-space: nowrap;
}

.nav-links .workshops-link {
  color: #872249;
}

.nav-links a[aria-current="page"]:not(.sign-in-link)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -18px;
  left: 0;
  height: 2px;
  background: currentColor;
}

.nav-links .sign-in-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 40px;
  margin-left: 4px;
  border: 1px solid rgba(63, 17, 35, 0.68);
  padding: 8px 18px;
}

.home-page {
  background: #ffffff;
  color: var(--plum);
}

.home-page .site-header {
  position: relative;
}

.home-hero {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 800px;
  overflow: hidden;
  background: #ffffff;
}

.home-hero-copy {
  align-self: center;
  max-width: 640px;
  padding: 50px 40px 50px clamp(52px, 7.2vw, 104px);
}

.home-kicker {
  margin: 0 0 34px;
  color: var(--plum);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-hero h1 {
  margin: 0;
  color: var(--plum);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(54px, 5.2vw, 76px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.home-hero-copy > p:not(.home-kicker) {
  max-width: 590px;
  margin: 34px 0 0;
  color: #4f3440;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.6;
}

.home-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 214px;
  min-height: 62px;
  margin-top: 58px;
  background: var(--plum);
  color: #ffffff;
  padding: 15px 28px;
  font-size: 14px;
  font-weight: 780;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.home-primary-button:hover,
.home-primary-button:focus-visible {
  background: var(--pink);
}

.home-hero-media {
  align-self: start;
  margin-top: 120px;
  padding-right: clamp(52px, 6.2vw, 90px);
}

.home-hero-media img {
  display: block;
  width: 100%;
  height: 614px;
  object-fit: cover;
  object-position: center;
}

.home-promise {
  height: 820px;
  min-height: 0;
  background: #fbf7f1;
  padding: 100px clamp(52px, 7.2vw, 104px) 72px;
}

.home-section-intro {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.home-section-intro .home-kicker {
  margin-bottom: 28px;
}

.home-section-intro h2,
.home-offers-heading h2 {
  margin: 0;
  color: var(--plum);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.22;
}

.home-section-intro > p:last-child {
  max-width: 850px;
  margin: 38px auto 0;
  color: #4f3440;
  font-size: 17px;
  line-height: 1.55;
}

.home-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(44px, 6vw, 96px);
  max-width: 1260px;
  margin: 70px auto 0;
  text-align: center;
}

.home-promise-grid article {
  min-width: 0;
}

.home-promise-icon {
  display: block;
  min-height: 52px;
  color: var(--plum);
  font-family: Georgia, serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 1;
}

.home-promise-icon.home-sliders {
  font-family: inherit;
  font-size: 42px;
  transform: rotate(90deg);
}

.home-promise-grid h3 {
  margin-top: 28px;
  font-family: inherit;
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 620;
  line-height: 1.2;
}

.home-promise-grid p {
  max-width: 390px;
  margin: 26px auto 0;
  color: #4f3440;
  font-size: 17px;
  line-height: 1.55;
}

.home-offers {
  height: 996px;
  min-height: 0;
  background: #fbf7f1;
  padding: 96px clamp(52px, 6.5vw, 94px) 110px;
}

.home-offers-heading {
  max-width: 1260px;
  margin: 0 auto;
}

.home-offers-heading .home-kicker {
  margin-bottom: 34px;
}

.home-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(46px, 6vw, 88px);
  max-width: 1260px;
  margin: 100px auto 0;
}

.home-offer-card {
  display: flex;
  min-height: 560px;
  flex-direction: column;
}

.home-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  min-height: 44px;
}

.home-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  background: #f8f2ed;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 700;
}

.home-offer-card h3 {
  margin-top: 52px;
  font-family: inherit;
  font-size: clamp(29px, 2.55vw, 38px);
  font-weight: 430;
  letter-spacing: -0.025em;
  line-height: 1.38;
}

.home-offer-card p {
  margin: 34px 0 0;
  color: #5a3c49;
  font-size: 17px;
  line-height: 1.62;
}

.home-offer-card > a {
  width: fit-content;
  margin-top: auto;
  color: var(--pink);
  font-size: 14px;
  font-weight: 780;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.home-offer-card > a:hover,
.home-offer-card > a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.site-footer {
  min-height: 160px;
  border-top: 1px solid #eadfd5;
  background: #f8f8f8;
  color: var(--plum);
  padding: 0;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 48px;
  align-items: center;
  max-width: 1440px;
  min-height: 160px;
  margin: 0 auto;
  padding: 30px 52px;
}

.footer-brand,
.footer-links a {
  color: var(--plum);
  text-decoration: none;
}

.footer-brand {
  font-size: 17px;
  font-weight: 600;
}

.footer-brand-block p {
  margin: 26px 0 0;
  color: var(--plum);
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 3vw, 48px);
  justify-content: flex-end;
  color: var(--plum);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--pink);
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 24px;
  }

  .home-hero {
    min-height: 720px;
  }

  .home-hero-copy {
    padding-left: 52px;
  }

  .home-hero-media {
    padding-right: 52px;
  }

  .home-hero-media img {
    height: 520px;
  }
}

@media (max-width: 900px) {
  .nav {
    min-height: 76px;
    padding: 0 20px;
  }

  .brand-logo {
    width: 52px;
    height: 58px;
  }

  .nav-links {
    inset: 76px 12px auto;
  }

  .nav-links a[aria-current="page"]:not(.sign-in-link)::after {
    bottom: -6px;
  }

  .nav-links .sign-in-link {
    margin-left: 0;
  }

  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-hero-copy {
    max-width: 720px;
    padding: 88px 40px 56px;
  }

  .home-hero-media {
    margin-top: 0;
    padding: 0 40px 80px;
  }

  .home-hero-media img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .home-promise,
  .home-offers {
    height: auto;
    min-height: auto;
    padding: 88px 40px;
  }

  .home-section-intro h2 br {
    display: none;
  }

  .home-promise-grid,
  .home-offer-grid {
    grid-template-columns: 1fr;
    gap: 64px;
    margin-top: 72px;
  }

  .home-promise-grid article,
  .home-promise-grid p {
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
  }

  .home-offer-card {
    min-height: 0;
    padding-bottom: 48px;
    border-bottom: 1px solid #e9d7c8;
  }

  .home-offer-card > a {
    margin-top: 46px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    padding: 42px 32px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .home-hero-copy,
  .home-hero-media,
  .home-promise,
  .home-offers {
    padding-right: 22px;
    padding-left: 22px;
  }

  .home-hero-copy {
    padding-top: 70px;
  }

  .home-hero h1 {
    font-size: clamp(45px, 14vw, 62px);
  }

  .home-primary-button {
    width: 100%;
    margin-top: 42px;
  }

  .home-hero-media {
    padding-bottom: 64px;
  }

  .home-section-intro h2,
  .home-offers-heading h2 {
    font-size: 38px;
  }

  .home-promise-grid,
  .home-offer-grid {
    margin-top: 58px;
  }

  .home-offer-card h3 br {
    display: none;
  }

  .footer-shell {
    padding: 38px 22px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

.wireframe-page.home-page .site-header {
  position: sticky;
  top: 0;
}

.wireframe-page h1,
.wireframe-page h2,
.wireframe-page h3 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (max-width: 900px) {
  .workshops-page main {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
  }
}

.wf-featured-copy li img {
  display: block;
  flex: 0 0 auto;
}

/* Penpot Desktop route alignment: Home and Workshops (1280px source frames). */
@media (min-width: 1001px) {
  .home-page main,
  .workshops-page main {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
  }

  .home-page main {
    height: 2605px;
  }

  .home-page .wf-home-hero {
    position: relative;
    width: 1280px;
    height: 1019px;
    min-height: 0;
    overflow: visible;
    background: #fbf7f1;
  }

  .home-page .media-slot-home {
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 75px;
    width: 1138px;
    height: 752px;
    background: #008b45;
  }

  .home-page .wf-home-hero-card {
    position: absolute;
    top: 369px;
    left: 230px;
    width: 962px;
    height: 541px;
    min-height: 0;
    padding: 0;
    transform: none;
    background: transparent url("/assets/img/wireframe/home-card-background.png") center / 100% 100% no-repeat;
    text-align: left;
  }

  .home-page .wf-home-hero-card h1 {
    position: absolute;
    top: 213px;
    left: 137px;
    width: 558px;
    height: 74px;
    margin: 0;
    color: #3f1123;
    font-size: 64px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.2;
  }

  .home-page .wf-home-hero-card p {
    position: absolute;
    top: 302px;
    left: 137px;
    width: 497px;
    max-width: none;
    margin: 0;
    color: #3f1123;
    font-size: 16px;
    line-height: 1.55;
  }

  .home-page .wf-home-hero-card .wf-solid-button {
    position: absolute;
    top: 418px;
    left: 514px;
    width: 181px;
    min-height: 50px;
    margin: 0;
    border: 0;
    padding: 0;
    background: #3f1123;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
    color: #fbf7f1;
    font-size: 11px;
    letter-spacing: 0;
  }

  .home-page .wf-home-promise {
    box-sizing: border-box;
    width: 1280px;
    height: 836px;
    min-height: 0;
    padding: 160px 80px 0;
    background: #fbf7f1;
  }

  .home-page .wf-home-promise h2 {
    width: 720px;
    height: 168px;
    margin: 0 auto;
    color: #21000c;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.1666667;
  }

  .home-page .wf-promise-grid {
    display: grid;
    width: 1120px;
    max-width: none;
    margin: 96px auto 0;
    grid-template-columns: repeat(3, 352px);
    gap: 32px;
  }

  .home-page .wf-promise-grid article {
    width: 352px;
    max-width: none;
  }

  .home-page .wf-line-icon {
    width: 29px;
    height: 28px;
  }

  .home-page .wf-promise-grid h3 {
    margin-top: 31px;
    color: #21000c;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3333333;
  }

  .home-page .wf-promise-grid p {
    margin-top: 16px;
    color: #21000c;
    font-size: 16px;
    line-height: 1.5;
  }

  .home-page .wf-home-offers {
    box-sizing: border-box;
    width: 1278px;
    height: 782px;
    min-height: 0;
    margin: -31px 0 0 2px;
    padding: 72px 71.8875px 0;
    background: #fbf7f1;
  }

  .home-page .wf-offers-heading,
  .home-page .wf-offer-grid {
    width: 1132.225px;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }

  .home-page .wf-offers-heading p {
    margin: 0 0 13px;
    color: #3f1123;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
  }

  .home-page .wf-offers-heading h2 {
    color: #3f1123;
    font-size: 48px;
    letter-spacing: 0;
    line-height: 1.2;
  }

  .home-page .wf-offer-grid {
    display: grid;
    margin-top: 39px;
    grid-template-columns: repeat(3, 341.466px);
    gap: 52.914px;
  }

  .home-page .wf-offer-card {
    position: relative;
    box-sizing: border-box;
    width: 341.466px;
    min-height: 466.33px;
    height: 466.33px;
    padding: 20px 24px;
    background: #f1eae4;
  }

  .home-page .wf-tags {
    gap: 10px;
    min-height: 29px;
  }

  .home-page .wf-tags span {
    border: 0;
    background: #fbf7f1;
    padding: 7px 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
  }

  .home-page .wf-offer-card h3 {
    margin-top: 26px;
    color: #3f1123;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
  }

  .home-page .wf-offer-card p {
    margin-top: 43px;
    color: #3f1123;
    font-size: 15px;
    line-height: 1.42;
  }

  .home-page .wf-offer-card > a {
    position: absolute;
    top: 314px;
    left: 24px;
    margin: 0;
    color: #3f1123;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
  }

  .workshops-page main {
    position: relative;
    display: block;
    height: 3434px;
  }

  .workshops-page .wf-workshops-hero {
    position: absolute;
    top: 60px;
    left: 59px;
    display: block;
    width: 1148px;
    height: 196px;
    min-height: 0;
    padding: 0;
    text-align: center;
  }

  .workshops-page .wf-workshops-hero h1 {
    width: 586px;
    max-width: none;
    height: 80px;
    margin: 20px auto 0;
    color: #3f1123;
    font-size: 64px;
    font-weight: 400;
    letter-spacing: -1.44px;
    line-height: 1.25;
  }

  .workshops-page .wf-workshops-hero p {
    width: 1148px;
    max-width: none;
    height: 56px;
    margin: 30px 0 0;
    color: #3f1123;
    font-size: 16px;
    line-height: 1.75;
  }

  .workshops-page .wf-workshops-showcase {
    position: absolute;
    top: 298px;
    left: 59px;
    display: grid;
    width: 1148px;
    max-width: none;
    height: 781px;
    margin: 0;
    grid-template-columns: 685px 448px;
    gap: 15px;
  }

  .workshops-page .wf-workshop-primary {
    display: grid;
    align-self: start;
    grid-template-rows: 656px 125px;
    gap: 0;
  }

  .workshops-page .wf-workshop-aside {
    display: grid;
    grid-template-rows: 257px 524px;
    gap: 0;
  }

  .workshops-page .media-slot-video {
    box-sizing: border-box;
    width: 685px;
    height: 657px;
    border: 1px solid #d2b48c;
    background: #fff;
  }

  .workshops-page .media-slot-video > span:not(.visually-hidden) {
    color: #3f1123;
    font-size: 16px;
    line-height: 1.5;
  }

  .workshops-page .workshops-instagram-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    align-self: start;
    overflow: hidden;
    border: 0;
    padding: 0;
  }

  .workshops-page .workshops-instagram-empty {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #008b45;
    color: #3f1123;
  }

  .workshops-page .workshops-instagram-empty strong {
    font-size: 18px;
    font-weight: 500;
  }

  .workshops-page .workshops-instagram-empty span {
    font-size: 13px;
  }

  .workshops-page .workshops-instagram-story {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(140deg, #871c4d, #f05096 58%, #fcb900);
    color: #fff;
    text-decoration: none;
  }

  .workshops-page .workshops-instagram-empty[hidden],
  .workshops-page .workshops-instagram-stage[hidden] {
    display: none !important;
  }

  .workshops-page .wf-typical-workshop,
  .workshops-page .wf-philosophy-card,
  .workshops-page .wf-testimonial-card {
    box-sizing: border-box;
    border: 1px solid #d2b48c;
    color: #3f1123;
  }

  .workshops-page .wf-typical-workshop {
    width: 685px;
    height: 125px;
    padding: 0 20px;
  }

  .workshops-page .wf-typical-workshop h2 {
    height: 40px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.6666667;
  }

  .workshops-page .wf-typical-workshop p {
    height: 24px;
    margin: 0;
    font-size: 14px;
    line-height: 1.7142857;
  }

  .workshops-page .wf-inline-links {
    margin-top: 30px;
  }

  .workshops-page .wf-inline-links a,
  .workshops-page .wf-philosophy-card a,
  .workshops-page .wf-featured-copy > a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.7px;
  }

  .workshops-page .wf-philosophy-card {
    width: 448px;
    height: 258px;
    padding: 32px;
    background: #f3f3f3;
  }

  .workshops-page .wf-philosophy-card h2,
  .workshops-page .wf-testimonial-card h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3333333;
  }

  .workshops-page .wf-philosophy-card p {
    height: 80px;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.4285714;
  }

  .workshops-page .wf-philosophy-card > div {
    margin-top: 16px;
    border-top: 1px solid #ddd;
    padding-top: 16px;
  }

  .workshops-page .wf-testimonial-card {
    width: 404px;
    height: 524px;
    min-height: 0;
    padding: 32px;
    background: #f3f3f3;
  }

  .workshops-page .media-slot-testimonial {
    min-height: 0;
    margin-top: 16px;
    color: #3f1123;
  }

  .workshops-page .media-slot-testimonial > span:not(.visually-hidden) {
    font-size: 14px;
  }

  .workshops-page .wf-workshops-next {
    position: absolute;
    top: 1245px;
    left: 59px;
    width: 1148px;
    max-width: none;
    height: 944px;
    margin: 0;
  }

  .workshops-page .wf-next-heading {
    position: relative;
    display: block;
    height: 154px;
    margin: 0;
  }

  .workshops-page .wf-next-heading::before {
    position: absolute;
    top: 93px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #b1b2b5;
    box-shadow: none;
    content: "";
    pointer-events: none;
  }

  .workshops-page .wf-next-heading h2 {
    position: absolute;
    top: 40px;
    left: 0;
    height: 40px;
    margin: 0;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
  }

  .workshops-page .wf-next-heading > span {
    position: absolute;
    top: 121px;
    right: 0;
    box-sizing: border-box;
    width: 87px;
    height: 23px;
    padding: 3px 12px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.8px;
    line-height: 1;
    white-space: nowrap;
  }

  .workshops-page .wf-featured-workshop {
    box-sizing: border-box;
    display: grid;
    width: 1148px;
    height: 635px;
    min-height: 0;
    border: 0;
    outline: 2px solid #fbf7f1;
    outline-offset: -2px;
    padding: 29px 25px 24px 22px;
    grid-template-columns: 510px 591px;
  }

  .workshops-page .wf-featured-copy {
    box-sizing: border-box;
    width: 510px;
    height: 582px;
    padding: 10px;
    box-shadow: inset 0 0 0 1px #d2b48c;
  }

  .workshops-page .wf-featured-copy h3 {
    height: 40px;
    font-size: 32px;
    line-height: 1.25;
  }

  .workshops-page .wf-featured-copy p {
    height: 24px;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.5;
  }

  .workshops-page .wf-featured-copy ul {
    display: block;
    height: 72px;
    margin: 16px 0 0;
    font-size: 14px;
  }

  .workshops-page .wf-featured-copy li {
    position: relative;
    display: block;
    height: 18px;
    font-size: 14px;
    letter-spacing: 0.7px;
    line-height: 18px;
  }

  .workshops-page .wf-featured-copy li:nth-child(2) {
    margin-top: 10px;
  }

  .workshops-page .wf-featured-copy li:nth-child(3) {
    margin-top: 8px;
  }

  .workshops-page .wf-featured-copy li img,
  .workshops-page .wf-featured-copy li span {
    position: absolute;
    display: block;
  }

  .workshops-page .wf-featured-copy li:nth-child(1) img {
    top: 3.1666259766px;
    left: 0;
    width: 12px;
    height: 12px;
  }

  .workshops-page .wf-featured-copy li:nth-child(1) span {
    top: 0;
    left: 16.6667480469px;
  }

  .workshops-page .wf-featured-copy li:nth-child(2) img {
    top: 3px;
    left: 1px;
    width: 22px;
    height: 12px;
  }

  .workshops-page .wf-featured-copy li:nth-child(2) span {
    top: 0;
    left: 18px;
  }

  .workshops-page .wf-featured-copy li:nth-child(3) img {
    top: 0;
    left: 0;
    width: 30px;
    height: 18px;
  }

  .workshops-page .wf-featured-copy li:nth-child(3) span {
    top: 0;
    left: 20px;
    text-decoration: underline;
  }

  .workshops-page .wf-featured-copy > a {
    display: inline-block;
    margin-top: 36px;
  }

  .workshops-page .media-slot-featured {
    width: 591px;
    height: 582px;
    min-height: 0;
    background: #008b45;
    box-shadow: inset 0 0 0 1px #d2b48c;
  }

  .workshops-page .wf-next-note {
    box-sizing: border-box;
    display: flex;
    width: 1136px;
    height: 155px;
    margin: 0 0 0 6px;
    align-items: flex-end;
    justify-content: center;
    background: #ccc;
    padding: 0 0 2px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.8px;
    box-shadow: inset 0 0 0 1px #d2b48c;
  }

  .workshops-page .wf-next-note span {
    box-sizing: border-box;
    display: block;
    width: 574px;
    height: 23px;
    border: 1px solid #3f1123;
    padding: 2px 11px 3px;
    line-height: 16px;
  }

  .workshops-page .wf-workshop-form {
    position: absolute;
    top: 2309px;
    margin: 0;
  }

  .workshops-page .wf-register-form {
    left: 59px;
    width: 565px;
    height: 1133px;
    background: #fbf7f1;
  }

  .workshops-page .wf-feedback-form {
    left: 755px;
    width: 466px;
    height: 995px;
    background: #fff;
  }

  .workshops-page .wf-form-panel,
  .workshops-page .wf-form-panel form {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
  }

  .workshops-page .wf-register-form form {
    padding: 64px 66px 64px 64px;
  }

  .workshops-page .wf-feedback-form form {
    padding: 64px 32px 0 0;
  }

  .workshops-page .wf-form-panel header {
    margin: 0;
  }

  .workshops-page .wf-form-panel h2 {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.25;
  }

  .workshops-page .wf-feedback-form .wf-form-panel h2 {
    line-height: 1;
  }

  .workshops-page .wf-form-panel header p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.4285714;
  }

  .workshops-page .wf-form-panel form > label {
    margin-top: 28px;
    color: #3f1123;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.8px;
    line-height: 1.3333333;
  }

  .workshops-page .wf-feedback-form .wf-form-panel form > label:first-of-type {
    margin-top: 44px;
  }

  .workshops-page .wf-form-panel input,
  .workshops-page .wf-form-panel select,
  .workshops-page .wf-form-panel textarea {
    box-sizing: border-box;
    width: 100%;
    min-height: 40px;
    height: 40px;
    margin-top: 12px;
    border: 1px solid #8d8d98;
    background: #fff;
    padding: 8px 12px;
    color: #3f1123;
    font-size: 14px;
    font-weight: 400;
  }

  .workshops-page .wf-register-form textarea {
    height: 104px;
  }

  .workshops-page .wf-feedback-form textarea {
    height: 56px;
    min-height: 56px;
  }

  .workshops-page .wf-star-rating {
    margin-top: 28px;
  }

  .workshops-page .wf-star-rating legend {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.8px;
  }

  .workshops-page .wf-star-rating label > span[aria-hidden="true"] {
    width: 24px;
    height: 24px;
  }

  .workshops-page .wf-form-actions {
    margin-top: 32px;
  }

  .workshops-page .wf-register-form .wf-form-actions {
    margin-top: 32px;
  }

  .workshops-page .wf-form-actions .wf-solid-button,
  .workshops-page .wf-form-actions .wf-outline-button {
    min-height: 48px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.8px;
  }

  .workshops-page .wf-workshops-end-mark {
    position: absolute;
    top: 3562px;
    left: 59px;
    display: none;
    width: 1162px;
    height: 30px;
    min-height: 0;
    place-items: center;
  }

  .workshops-page .wf-workshops-end-mark svg {
    width: 30px;
    height: 30px;
  }
}

:is(body, .wireframe-page) .brand-logo-picture {
  display: block;
}

/* Penpot local-library Header component — desktop 1280 × 100 */
@media (min-width: 901px) {
  :is(body, .wireframe-page) .site-header {
    position: relative;
    height: 100px;
    min-height: 100px;
    border-bottom: 0;
    background: #fff;
    backdrop-filter: none;
  }

  :is(body, .wireframe-page) .nav {
    width: 100%;
    max-width: 1280px;
    height: 100px;
    min-height: 100px;
    margin: 0 auto;
    padding: 0 30px 0 16px;
  }

  :is(body, .wireframe-page) .brand-logo-link {
    margin-right: auto;
  }

  :is(body, .wireframe-page) .brand-logo {
    width: 139px;
    height: 79px;
    object-fit: fill;
  }

  :is(body, .wireframe-page) .nav-links {
    gap: 40.566px;
    color: #872249;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
  }

  :is(body, .wireframe-page) .nav-links a {
    color: #872249;
    text-transform: uppercase;
  }

  :is(body, .wireframe-page) .nav-links .workshops-link {
    color: #872249;
    font-weight: 500;
  }

  :is(body, .wireframe-page) .nav-links a[aria-current="page"]:not(.sign-in-link)::after {
    display: block;
  }

  :is(body, .wireframe-page) .nav-links .sign-in-link {
    width: 108px;
    height: 38px;
    min-width: 108px;
    min-height: 38px;
    margin-left: 0;
    border: 1px solid #872249;
    padding: 0;
    background: transparent;
    color: #872249;
    font-weight: 700;
  }
}

/* Penpot local-library Footer component — desktop 1280 × 171 */
@media (min-width: 1001px) {
  :is(body, .wireframe-page) .site-footer {
    min-height: 171px;
    border-top: 0;
    background: #fff;
    color: #872249;
  }

  :is(body, .wireframe-page) .footer-shell {
    display: grid;
    width: 100%;
    max-width: 1280px;
    min-height: 171px;
    height: 171px;
    margin: 0 auto;
    padding: 0;
    grid-template-columns: 335.5px 609px 335.5px;
    gap: 0;
    align-items: start;
  }

  :is(body, .wireframe-page) .footer-copyright {
    width: 340px;
    margin: 135px 0 0 49px;
    color: #872249;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
  }

  :is(body, .wireframe-page) .footer-social {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 609px;
    height: 171px;
    padding: 0;
  }

  :is(body, .wireframe-page) .footer-social > a,
  :is(body, .wireframe-page) .footer-social > span,
  :is(body, .wireframe-page) .footer-social .social-youtube {
    position: absolute;
    top: 60px;
    display: block;
    width: 55px;
    height: 25px;
  }

  :is(body, .wireframe-page) .footer-social > :nth-child(1) {
    left: 93px;
    width: 56px;
  }

  :is(body, .wireframe-page) .footer-social > :nth-child(1) img {
    width: 56px !important;
  }

  :is(body, .wireframe-page) .footer-social > :nth-child(2) {
    left: 222px;
  }

  :is(body, .wireframe-page) .footer-social > :nth-child(3) {
    left: 360px;
  }

  :is(body, .wireframe-page) .footer-social > :nth-child(4) {
    left: 498px;
    width: 54px;
  }

  :is(body, .wireframe-page) .footer-social > :nth-child(4) img {
    width: 54px !important;
  }

  :is(body, .wireframe-page) .footer-social img {
    display: block;
    width: 55px !important;
    height: 25px !important;
    object-fit: fill !important;
  }

  :is(body, .wireframe-page) .footer-social .social-pinterest img {
    height: 25px !important;
  }

  :is(body, .wireframe-page) .footer-links {
    box-sizing: border-box;
    display: flex;
    width: 335.5px;
    height: 171px;
    padding: 54px 20px 0 7.5px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    justify-self: auto;
    gap: 9.6px;
    text-align: right;
  }

  :is(body, .wireframe-page) .footer-links a {
    position: relative;
    left: -27px;
    color: #872249;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.2;
  }

  :is(body, .wireframe-page) .footer-links a:nth-child(-n + 2) {
    width: 308px;
  }

  :is(body, .wireframe-page) .footer-links a:nth-child(3) {
    width: 98px;
  }
}

@media (min-width: 1001px) {
  .legal-page .site-footer {
    min-height: 171px;
    border-top: 0;
    background: #fff;
    color: #872249;
  }

  .legal-page .footer-shell {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(360px, 609px) minmax(240px, 1fr);
    gap: 0;
    width: 100%;
    max-width: 1280px;
    min-height: 171px;
    height: auto;
    margin: 0 auto;
    padding: 0 49px;
    align-items: center;
  }

  .legal-page .footer-copyright {
    width: auto;
    margin: 0;
    color: #872249;
    white-space: nowrap;
    justify-self: start;
  }

  .legal-page .footer-social {
    position: static;
    display: flex;
    width: auto;
    height: auto;
    padding: 0;
    gap: 74px;
    justify-content: center;
  }

  .legal-page .footer-social > a,
  .legal-page .footer-social > span,
  .legal-page .footer-social .social-youtube {
    position: static;
    display: block;
    width: 55px;
    height: 25px;
  }

  .legal-page .footer-social img,
  .legal-page .footer-social .social-pinterest img {
    display: block;
    width: 55px !important;
    height: 25px !important;
    object-fit: fill !important;
  }

  .legal-page .footer-links {
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
    padding: 0;
    align-items: flex-end;
    justify-content: center;
    justify-self: end;
    gap: 9.6px;
    text-align: right;
  }

  .legal-page .footer-links a,
  .legal-page .footer-links a:nth-child(-n + 2),
  .legal-page .footer-links a:nth-child(3) {
    position: static;
    left: auto;
    width: auto;
  }
}

@media (min-width: 1001px) {
  .workshops-page .wf-next-heading > span[data-next-workshop-countdown] {
    width: auto;
    min-width: 87px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 12px;
    text-align: center;
  }
}
