:root {
  --ink: #3f2f27;
  --ink-soft: #71584c;
  --cream: #fff8ec;
  --paper: #fffdf7;
  --taupe: #a47761;
  --taupe-dark: #624638;
  --sage: #a9aa72;
  --sage-light: #eeedcf;
  --blush: #d99578;
  --blush-light: #f6d7c7;
  --butter: #dfb955;
  --sky: #c9d6b4;
  --line: rgba(98, 70, 56, 0.17);
  --shadow: 0 24px 70px rgba(91, 58, 42, 0.13);
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --shell: min(1180px, calc(100% - 40px));
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Rubik", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(rgba(98, 70, 56, 0.1) 0.45px, transparent 0.45px);
  background-size: 6px 6px;
  z-index: -1;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px #216f67;
}

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 1000;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: var(--taupe-dark);
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(4.8rem, 7.5vw, 7.2rem);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: "Varela Round", "Rubik", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.4rem;
  font-size: clamp(2.8rem, 5vw, 4.75rem);
}

h1 em {
  position: relative;
  display: inline;
  color: var(--taupe-dark);
  font-style: normal;
  white-space: nowrap;
  z-index: 0;
}

h1 em::after {
  content: "";
  position: absolute;
  right: -0.04em;
  left: -0.04em;
  bottom: 0.04em;
  height: 0.22em;
  border-radius: 999px 35% 999px 45%;
  background: var(--blush);
  opacity: 0.7;
  z-index: -1;
  transform: rotate(-1.5deg);
}

h2 {
  margin-bottom: 1.15rem;
  font-size: clamp(2rem, 3.5vw, 3.35rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  line-height: 1.4;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  color: var(--taupe-dark);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: var(--blush);
}

.eyebrow.light {
  color: #f6efe8;
}

.eyebrow.light::before {
  background: var(--butter);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.8rem 1.55rem;
  border: 1px solid var(--taupe-dark);
  border-radius: 999px;
  color: #fff;
  background: var(--taupe-dark);
  box-shadow: 0 10px 24px rgba(81, 68, 61, 0.18);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  background: #3f352f;
  box-shadow: 0 14px 30px rgba(81, 68, 61, 0.23);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding-inline: 1.25rem;
  font-size: 0.92rem;
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--taupe-dark);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
  transition: gap 0.2s ease, color 0.2s ease;
}

.text-link:hover,
.card-link:hover {
  gap: 0.85rem;
  color: #216f67;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid rgba(81, 68, 61, 0.1);
  background: rgba(247, 244, 236, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  height: 100%;
}

.brand {
  align-self: stretch;
  display: flex;
  align-items: center;
  width: 142px;
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 74px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.4vw, 2rem);
}

.main-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.96rem;
  font-weight: 500;
}

.header-actions,
.header-socials {
  display: flex;
  align-items: center;
}

.header-actions {
  justify-content: flex-end;
  gap: 0.75rem;
}

.header-socials {
  gap: 0.4rem;
}

.header-socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--taupe-dark);
  background: rgba(255, 253, 248, 0.72);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.header-socials a:hover {
  color: #fff;
  border-color: var(--taupe-dark);
  background: var(--taupe-dark);
  transform: translateY(-2px);
}

.header-socials svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.header-socials path,
.header-socials .social-dot {
  fill: currentColor;
  stroke: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  left: 100%;
  bottom: -0.35rem;
  height: 2px;
  background: var(--blush);
  transition: left 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  left: 0;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 4px;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(370px, 0.78fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.4vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-bottom: 3.2rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: 0.72fr 0.9fr 1.5fr;
  align-items: start;
  gap: clamp(0.8rem, 2vw, 1.4rem);
  max-width: 720px;
  margin: 0;
}

.hero-facts div {
  display: grid;
  align-content: start;
  gap: 0.35rem;
  min-height: 108px;
  padding: 1rem 0.8rem;
  text-align: center;
}

.hero-facts dt {
  color: var(--taupe-dark);
  font-family: "Varela Round", "Rubik", Arial, sans-serif;
  font-size: clamp(1.75rem, 2.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
}

.hero-facts dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero-fact-location dt {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-photo-main {
  position: absolute;
  inset: 0 8% 4% 8%;
  margin: 0;
  overflow: hidden;
  border: 10px solid rgba(255, 253, 248, 0.9);
  border-radius: 48% 48% 30% 32% / 26% 28% 20% 22%;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.hero-photo-main img,
.hero-photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main img {
  object-position: center 36%;
}

.hero-photo-small {
  position: absolute;
  right: -7%;
  bottom: -1%;
  width: 43%;
  aspect-ratio: 1 / 0.9;
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--paper);
  border-radius: 50% 45% 50% 42%;
  box-shadow: 0 18px 48px rgba(63, 51, 44, 0.18);
  transform: rotate(-5deg);
}

.hero-note {
  position: absolute;
  left: -5%;
  top: 12%;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.2rem;
  border: 1px solid rgba(81, 68, 61, 0.13);
  border-radius: 1.1rem;
  background: rgba(255, 253, 248, 0.93);
  box-shadow: 0 12px 36px rgba(63, 51, 44, 0.12);
  transform: rotate(2deg);
}

.hero-note p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.hero-note-mark {
  color: #b3814a;
  font-size: 1.5rem;
}

.hero-wash {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-wash-one {
  width: 560px;
  height: 560px;
  left: -210px;
  top: 8%;
  background: rgba(238, 177, 145, 0.36);
}

.hero-wash-two {
  width: 460px;
  height: 460px;
  right: 35%;
  bottom: -300px;
  background: rgba(217, 149, 120, 0.28);
}

.benefits {
  padding-block: clamp(2.8rem, 5vw, 4.4rem);
  color: #fff;
  background: var(--taupe-dark);
}

.benefits > .shell {
  width: min(1040px, calc(100% - 40px));
}

.benefits .section-heading {
  margin-bottom: clamp(1.7rem, 3vw, 2.5rem);
}

.benefits .section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
}

.section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading.centered {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.benefits .eyebrow {
  color: var(--blush-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.benefit {
  min-height: 190px;
  padding: 1.4rem clamp(1rem, 2vw, 1.55rem);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.benefit:last-child {
  border-left: 0;
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  border: 1px solid rgba(246, 215, 199, 0.46);
  border-radius: 50%;
  color: var(--blush);
  background: rgba(255, 255, 255, 0.06);
}

.benefit-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.benefit h3 {
  margin-bottom: 0.45rem;
  color: #fff;
  font-size: clamp(1.15rem, 1.6vw, 1.38rem);
}

.benefit p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
  line-height: 1.55;
}

.workshops {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 7%, rgba(217, 149, 120, 0.28), transparent 27rem),
    linear-gradient(180deg, #fffdf7 0%, #faecd9 100%);
}

.workshops::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 9px;
  background: linear-gradient(90deg, var(--sage) 0 34%, var(--blush) 34% 68%, var(--butter) 68% 100%);
}

.workshops > .shell {
  position: relative;
  z-index: 1;
}

.workshops-heading {
  display: grid;
  grid-template-columns: 174px minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  max-width: 980px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.workshops-heading .eyebrow {
  margin-bottom: 0.8rem;
}

.workshops-heading-number {
  display: grid;
  place-content: center;
  width: 174px;
  height: 174px;
  border: 1px solid rgba(81, 68, 61, 0.18);
  border-radius: 50%;
  background: rgba(246, 215, 199, 0.78);
  box-shadow: 0 22px 55px rgba(81, 68, 61, 0.12);
  text-align: center;
  transform: rotate(-2deg);
}

.workshops-heading-number strong {
  color: var(--taupe-dark);
  font-family: "Varela Round", "Rubik", Arial, sans-serif;
  font-size: 5.6rem;
  font-weight: 600;
  line-height: 0.82;
}

.workshops-heading-number span {
  margin-top: 0.7rem;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 700;
}

.workshops-heading-copy h2 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 4vw, 3.7rem);
}

.workshops-heading-copy > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.workshop-showcase {
  --carousel-radius: 2rem;
  position: relative;
}

.workshop-selector {
  position: relative;
  padding: clamp(1.25rem, 2.6vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 1.8rem;
  background: var(--taupe-dark);
  box-shadow: 0 22px 55px rgba(63, 51, 44, 0.2);
}

.workshop-selector-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.25rem;
  padding-inline: 0.2rem;
}

.workshop-selector-head > div {
  display: grid;
  gap: 0.12rem;
}

.workshop-selector-head span {
  color: var(--blush-light);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.045em;
}

.workshop-selector-head strong {
  color: #fff;
  font-family: "Varela Round", "Rubik", Arial, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.35;
}

.workshop-selector-head p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  line-height: 1.55;
}

.workshop-toolbar {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 0.85rem;
}

.carousel-arrow {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.carousel-arrow:hover {
  color: var(--taupe-dark);
  border-color: #fff;
  background: #fff;
  transform: translateY(-2px);
}

.workshop-picker {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.55rem;
}

.workshop-picker button {
  display: grid;
  align-content: center;
  gap: 0.12rem;
  min-height: 92px;
  padding: 0.7rem 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.picker-number {
  color: var(--blush-light);
  font-family: "Varela Round", "Rubik", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.picker-label {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
}

.picker-state {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 500;
}

.workshop-picker button:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

.workshop-picker button[aria-current="true"] {
  color: var(--ink);
  border-color: var(--paper);
  background: var(--paper);
  box-shadow: 0 12px 24px rgba(27, 21, 18, 0.24);
  transform: translateY(-4px);
}

.workshop-picker button[aria-current="true"] .picker-number {
  color: #725447;
}

.workshop-picker button[aria-current="true"] .picker-state {
  color: var(--ink-soft);
  font-weight: 700;
}

.workshop-stage {
  margin-top: 1.35rem;
  overflow: hidden;
  border: 2px solid rgba(81, 68, 61, 0.14);
  border-radius: var(--carousel-radius);
  background: var(--paper);
  box-shadow: 0 32px 80px rgba(69, 57, 50, 0.16);
  touch-action: pan-y;
}

.workshop-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.92fr);
  min-height: 540px;
}

.js .workshop-slide:not(.is-active) {
  display: none;
}

.js .workshop-slide.is-active {
  animation: workshop-in 0.42s ease both;
}

@keyframes workshop-in {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.workshop-image {
  position: relative;
  min-height: 540px;
  overflow: hidden;
}

.workshop-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(42, 34, 29, 0.16));
  pointer-events: none;
}

.workshop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.workshop-slide.is-active:hover .workshop-image img {
  transform: scale(1.025);
}

.workshop-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(2.4rem, 5vw, 4.6rem);
  background: linear-gradient(145deg, var(--paper), rgba(246, 215, 199, 0.34));
}

.workshop-body h3 {
  max-width: 420px;
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 2.7vw, 2.55rem);
  line-height: 1.25;
}

.workshop-body > p:not(.card-kicker):not(.workshop-count) {
  max-width: 500px;
  margin-bottom: 0.8rem;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.75;
}

.workshop-body > p:not(.card-kicker):not(.workshop-count):last-of-type {
  margin-bottom: 1.35rem;
}

.workshop-body .card-link {
  min-height: 48px;
  margin-top: 0.3rem;
  padding: 0.65rem 1.15rem;
  border: 1px solid rgba(81, 68, 61, 0.24);
  border-radius: 999px;
  background: var(--blush-light);
}

.workshop-count {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin-bottom: 1.55rem;
  padding: 0.38rem 0.75rem;
  border: 1px solid rgba(81, 68, 61, 0.14);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 253, 248, 0.75);
  font-size: 0.9rem;
}

.workshop-count span {
  color: var(--taupe-dark);
  font-family: "Varela Round", "Rubik", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.card-kicker {
  margin-bottom: 0.65rem;
  color: #8a5c50;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.event-options {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.event-options::before,
.event-options::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.event-options::before {
  width: 360px;
  height: 360px;
  right: -190px;
  top: -190px;
  background: rgba(223, 185, 85, 0.16);
}

.event-options::after {
  width: 300px;
  height: 300px;
  left: -180px;
  bottom: -180px;
  background: rgba(169, 170, 114, 0.18);
}

.event-options > .shell {
  position: relative;
  z-index: 1;
}

.event-options-intro {
  max-width: 690px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.event-options-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
  width: min(1180px, 100%);
  margin-inline: auto;
}

.event-option {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: clamp(2rem, 4vw, 3.1rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2rem;
  box-shadow: 0 20px 48px rgba(91, 58, 42, 0.1);
}

.event-option-flow {
  background: linear-gradient(145deg, #fff8eb, #f7ddc8);
}

.event-option-lecture {
  background: linear-gradient(145deg, #fbf7dc, #e5e4bd);
}

.event-option-tour {
  background: linear-gradient(145deg, #f6eadf, #e5c1ad);
}

.event-option-label {
  width: fit-content;
  margin-bottom: 1.15rem;
  padding: 0.42rem 0.78rem;
  border: 1px solid rgba(98, 70, 56, 0.2);
  border-radius: 999px;
  color: var(--taupe-dark);
  background: rgba(255, 253, 247, 0.62);
  font-size: 0.86rem;
  font-weight: 700;
}

.event-option h3 {
  max-width: 410px;
  margin-bottom: 1rem;
  font-family: "Varela Round", "Rubik", Arial, sans-serif;
  font-size: clamp(1.55rem, 2.3vw, 2.1rem);
  line-height: 1.3;
}

.event-option > p:not(.event-option-label) {
  max-width: 520px;
  margin-bottom: 1.6rem;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.event-option-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  margin-top: auto;
  color: var(--taupe-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

.experience {
  position: relative;
  overflow: hidden;
  background: #f8e2d5;
}

.experience::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -240px;
  top: -260px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.68);
}

.experience-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

.experience-copy {
  width: min(860px, 100%);
  margin-inline: auto;
}

.experience-lead {
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.experience-steps {
  display: grid;
  gap: 0;
  margin: 2.4rem 0 0;
  padding: 0;
  list-style: none;
}

.experience-steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 1rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid rgba(81, 68, 61, 0.16);
}

.experience-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(98, 70, 56, 0.2);
  border-radius: 50%;
  color: #725447;
  background: rgba(255, 253, 248, 0.46);
}

.experience-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.experience-steps strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 1.08rem;
}

.experience-steps p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.video-shell {
  padding: 1rem;
  border: 1px solid rgba(81, 68, 61, 0.14);
  border-radius: 2.2rem;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.video-shell > p {
  margin: 0.8rem 0 0.2rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.media-accessibility-note {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.media-accessibility-note a {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 1.55rem;
  background: #ded8cf;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-mobile-link {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.video-mobile-link > img,
.video-mobile-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-mobile-link > img {
  object-fit: cover;
}

.video-mobile-overlay {
  background: linear-gradient(180deg, rgba(35, 28, 24, 0.18), rgba(35, 28, 24, 0.62));
}

.video-mobile-play,
.video-mobile-link strong {
  position: relative;
  z-index: 1;
}

.video-mobile-play {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  padding-inline-start: 0.2rem;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: rgba(81, 68, 61, 0.78);
  box-shadow: 0 10px 28px rgba(35, 28, 24, 0.28);
  font-size: 1.45rem;
}

.video-mobile-link strong {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(35, 28, 24, 0.7);
  font-size: 1rem;
}

.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(3.5rem, 9vw, 9rem);
}

.about-photo {
  position: relative;
  padding: 1.4rem;
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 46% 54% 45% 55% / 53% 42% 58% 47%;
  background: var(--blush-light);
  transform: rotate(5deg);
}

.about-photo-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.92 / 1;
  border: 9px solid var(--paper);
  border-radius: 48% 52% 44% 56% / 43% 48% 52% 57%;
  box-shadow: var(--shadow);
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-year {
  position: absolute;
  left: -0.3rem;
  bottom: 3rem;
  display: grid;
  min-width: 165px;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  color: #fff;
  background: var(--taupe-dark);
  box-shadow: 0 14px 35px rgba(63, 51, 44, 0.2);
}

.about-year strong {
  font-family: "Varela Round", "Rubik", Arial, sans-serif;
  font-size: 1.2rem;
}

.about-year span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.about-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.about-copy h2 span {
  display: inline-block;
  margin-top: 0.2rem;
  color: var(--taupe-dark);
  font-size: 0.72em;
  line-height: 1.35;
}

.stories {
  background: var(--cream);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.story-video {
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 1.55rem;
  background: var(--paper);
  box-shadow: 0 15px 35px rgba(63, 51, 44, 0.08);
}

.video-frame.small {
  border-radius: 1.05rem;
}

.reviews-carousel {
  margin-top: clamp(2rem, 5vw, 4rem);
  padding: clamp(1.35rem, 3.5vw, 2.5rem);
  border: 1px solid rgba(81, 68, 61, 0.17);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 8% 16%, rgba(246, 215, 199, 0.76), transparent 18rem),
    var(--paper);
  box-shadow: 0 24px 58px rgba(63, 51, 44, 0.1);
}

.reviews-carousel-head,
.reviews-carousel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.reviews-kicker {
  margin: 0 0 0.25rem;
  color: #80594f;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.reviews-carousel-head h3 {
  margin: 0;
  font-family: "Varela Round", "Rubik", Arial, sans-serif;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 600;
}

.reviews-controls {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.75rem;
}

.review-arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(81, 68, 61, 0.35);
  border-radius: 50%;
  color: var(--taupe-dark);
  background: #fffdf8;
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.review-arrow:hover {
  color: #fff;
  border-color: var(--taupe-dark);
  background: var(--taupe-dark);
  transform: translateY(-2px);
}

.review-autoplay-toggle {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(81, 68, 61, 0.24);
  border-radius: 50%;
  color: var(--taupe-dark);
  background: var(--blush-light);
  font-size: 0.72rem;
  cursor: pointer;
}

.review-autoplay-toggle[aria-pressed="true"] {
  color: #fff;
  background: var(--taupe-dark);
}

.reviews-counter {
  min-width: 72px;
  margin: 0;
  color: var(--ink-soft);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.reviews-viewport {
  margin-block: 1.5rem 1.3rem;
  overflow: hidden;
  border: 1px solid rgba(81, 68, 61, 0.14);
  border-radius: 1.5rem;
  background: rgba(255, 253, 248, 0.84);
  touch-action: pan-y;
}

.review-slide {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.4rem, 4vw, 3.2rem);
  min-height: 292px;
  padding: clamp(1.7rem, 5vw, 4rem);
}

.review-image-slide {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  min-height: 510px;
  padding: clamp(1rem, 3vw, 2rem);
  background: #fff;
}

.review-image-slide img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 480px;
  border-radius: 0.9rem;
  box-shadow: 0 12px 32px rgba(63, 51, 44, 0.1);
  object-fit: contain;
}

.js .review-slide:not(.is-active) {
  display: none;
}

.review-slide-number {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  color: var(--taupe-dark);
  background: var(--blush-light);
  font-family: "Varela Round", "Rubik", Arial, sans-serif;
  font-size: 2.35rem;
  font-weight: 600;
}

.review-slide-copy {
  max-width: 760px;
}

.review-source {
  margin: 0 0 0.55rem;
  color: #80594f;
  font-size: 0.88rem;
  font-weight: 700;
}

.review-slide h4 {
  margin: 0 0 0.75rem;
  font-family: "Varela Round", "Rubik", Arial, sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.65rem);
  font-weight: 600;
  line-height: 1.3;
}

.review-slide-copy > p:not(.review-source) {
  max-width: 640px;
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.review-source-link,
.reviews-all-link {
  color: var(--taupe-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

.reviews-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reviews-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid var(--taupe-dark);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.reviews-dots button[aria-current="true"] {
  width: 30px;
  border-radius: 999px;
  background: var(--taupe-dark);
}

.media-section {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.media-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--sage) 0 34%, var(--blush) 34% 68%, var(--butter) 68% 100%);
}

.media-section .section-heading {
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.media-intro {
  max-width: 680px;
  margin-inline: auto;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.7rem);
}

.media-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.7rem;
  box-shadow: 0 18px 42px rgba(91, 58, 42, 0.08);
}

.media-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
}

.media-card-sage {
  background: linear-gradient(145deg, #fffdf7, #eeedcf);
}

.media-card-sage::before {
  background: var(--sage);
}

.media-card-blush {
  background: linear-gradient(145deg, #fffdf7, #f6d7c7);
}

.media-card-blush::before {
  background: var(--blush);
}

.media-card-butter {
  background: linear-gradient(145deg, #fffdf7, #f4e4ad);
}

.media-card-butter::before {
  background: var(--butter);
}

.media-source {
  width: fit-content;
  margin-bottom: 1.1rem;
  padding: 0.36rem 0.68rem;
  border: 1px solid rgba(98, 70, 56, 0.18);
  border-radius: 999px;
  color: var(--taupe-dark);
  background: rgba(255, 253, 247, 0.66);
  font-size: 0.82rem;
  font-weight: 700;
}

.media-card h3 {
  margin-bottom: 0.8rem;
  font-family: "Varela Round", "Rubik", Arial, sans-serif;
  font-size: clamp(1.45rem, 2.3vw, 1.95rem);
}

.media-card > p:not(.media-source) {
  margin-bottom: 1.35rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.media-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--taupe-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

.media-all {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.button-outline {
  color: var(--taupe-dark);
  border: 1px solid var(--taupe-dark);
  background: transparent;
  box-shadow: none;
}

.button-outline:hover {
  color: #fff;
  background: var(--taupe-dark);
}

.questions {
  background: var(--paper);
}

.questions-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(0, 1.05fr);
  gap: clamp(3rem, 9vw, 9rem);
}

.questions-intro {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.questions-intro > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  position: relative;
  padding: 1.45rem 0 1.45rem 3.2rem;
  font-family: "Varela Round", "Rubik", Arial, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.45;
  list-style: none;
  cursor: pointer;
}

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

.accordion summary::after {
  content: "+";
  position: absolute;
  left: 0;
  top: 50%;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: translateY(-50%);
  font-family: "Rubik", Arial, sans-serif;
  font-weight: 400;
  transition: transform 0.2s ease, background 0.2s ease;
}

.accordion details[open] summary::after {
  content: "–";
  color: #fff;
  background: var(--taupe-dark);
}

.accordion details p {
  max-width: 720px;
  padding: 0 0 1.45rem;
  color: var(--ink-soft);
}

.contact {
  color: #fff;
  background: var(--taupe-dark);
}

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-copy h2 {
  color: #fff;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.direct-contact {
  display: grid;
  gap: 0.8rem;
  margin-top: 2.5rem;
}

.direct-contact a {
  display: grid;
  gap: 0.05rem;
  width: fit-content;
}

.direct-contact span {
  color: var(--blush-light);
  font-size: 0.88rem;
}

.direct-contact strong {
  font-size: 1.04rem;
  font-weight: 500;
}

.contact-form {
  display: grid;
  gap: 1.05rem;
  padding: clamp(1.5rem, 4vw, 2.8rem);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 26px 70px rgba(29, 23, 20, 0.24);
}

.form-help {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.form-row.two-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.42rem;
}

.contact-form label > span {
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(81, 68, 61, 0.24);
  border-radius: 0.85rem;
  color: var(--ink);
  background: #fffaf1;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input,
.contact-form select {
  min-height: 50px;
  padding: 0 0.9rem;
}

.contact-form textarea {
  min-height: 118px;
  padding: 0.75rem 0.9rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #356f69;
  box-shadow: 0 0 0 4px rgba(53, 111, 105, 0.12);
  outline: none;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 3px solid #216f67;
  outline-offset: 2px;
  box-shadow: none;
}

.contact-form [aria-invalid="true"] {
  border-color: #a14438;
}

.form-submit {
  width: 100%;
  margin-top: 0.25rem;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
  box-shadow: none;
}

.form-honeypot {
  display: none !important;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--ink-soft);
  text-align: center;
  font-size: 0.9rem;
}

.form-status[data-state="success"] {
  color: #326348;
  font-weight: 600;
}

.form-status[data-state="error"] {
  color: #9a3f35;
  font-weight: 600;
}

.site-footer {
  color: var(--ink-soft);
  background: #f4e7d6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr 0.9fr;
  gap: 3rem;
  padding-block: 4rem 3rem;
}

.footer-brand img {
  width: min(205px, 100%);
  height: auto;
  margin-bottom: 1.1rem;
  object-fit: contain;
}

.footer-brand p {
  max-width: 330px;
  margin-bottom: 0;
}

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

.footer-links h2 {
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-family: "Rubik", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.footer-links a {
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--taupe-dark);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.whatsapp-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 54px;
  padding: 0.7rem 1.05rem;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  color: #fff;
  background: #177653;
  box-shadow: 0 14px 36px rgba(24, 93, 68, 0.28);
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
  background: #0f5d40;
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

[hidden] {
  display: none !important;
}

html[data-font-scale="large"] {
  font-size: 112.5%;
}

html[data-font-scale="larger"] {
  font-size: 125%;
}

.accessibility-tools {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
}

.accessibility-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 54px;
  min-height: 54px;
  padding: 0.7rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  color: #fff;
  background: #3f342e;
  box-shadow: 0 14px 36px rgba(42, 34, 29, 0.25);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.accessibility-trigger:hover,
.accessibility-trigger[aria-expanded="true"] {
  background: #241d19;
  transform: translateY(-2px);
}

.accessibility-trigger svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.accessibility-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: min(360px, calc(100vw - 28px));
  max-height: calc(100vh - 108px);
  padding: 1.15rem;
  overflow-y: auto;
  border: 2px solid #51443d;
  border-radius: 1.25rem;
  color: var(--ink);
  background: #fffdf8;
  box-shadow: 0 22px 60px rgba(31, 24, 20, 0.26);
}

.accessibility-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.accessibility-panel-head h2 {
  margin: 0;
  font-family: "Rubik", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.accessibility-close {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #7b6a61;
  border-radius: 50%;
  color: #342c27;
  background: #fff;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.accessibility-font-group {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}

.accessibility-font-group > span {
  font-weight: 700;
}

.accessibility-font-group > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}

.accessibility-font-group button,
.accessibility-option,
.accessibility-reset {
  min-height: 46px;
  border: 1px solid #74645b;
  border-radius: 0.75rem;
  color: #342c27;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
}

.accessibility-font-group button[aria-pressed="true"],
.accessibility-option[aria-pressed="true"] {
  color: #fff;
  border-color: #342c27;
  background: #342c27;
}

.accessibility-option {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  margin-top: 0.55rem;
  padding: 0.65rem 0.8rem;
  text-align: right;
}

.accessibility-option > span:first-child {
  display: grid;
  place-items: center;
  width: 1.5rem;
  font-size: 1.15rem;
}

.accessibility-reset {
  width: 100%;
  margin-top: 1rem;
  border-style: dashed;
}

.accessibility-statement-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 0.55rem;
  border-radius: 0.75rem;
  color: #fff;
  background: #51443d;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.accessibility-panel-note {
  margin: 0.8rem 0 0;
  color: #51443d;
  font-size: 0.82rem;
  line-height: 1.5;
}

html[data-a11y-links="underline"] a {
  text-decoration: underline !important;
  text-decoration-thickness: 0.13em !important;
  text-underline-offset: 0.2em !important;
}

html[data-a11y-motion="reduced"] {
  scroll-behavior: auto;
}

html[data-a11y-motion="reduced"] *,
html[data-a11y-motion="reduced"] *::before,
html[data-a11y-motion="reduced"] *::after {
  scroll-behavior: auto !important;
  transition-duration: 0.01ms !important;
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
}

html[data-a11y-motion="reduced"] .reveal {
  opacity: 1;
  transform: none;
}

html[data-a11y-contrast="high"] {
  --ink: #000;
  --ink-soft: #111;
  --cream: #fff;
  --paper: #fff;
  --taupe: #241d19;
  --taupe-dark: #000;
  --sage-light: #fff;
  --blush-light: #fff;
  --line: #000;
}

html[data-a11y-contrast="high"] body,
html[data-a11y-contrast="high"] .site-header,
html[data-a11y-contrast="high"] .main-nav,
html[data-a11y-contrast="high"] .site-footer,
html[data-a11y-contrast="high"] .accessibility-page {
  color: #000;
  background: #fff;
}

html[data-a11y-contrast="high"] body::before,
html[data-a11y-contrast="high"] .hero-wash,
html[data-a11y-contrast="high"] .experience::before,
html[data-a11y-contrast="high"] .event-options::before,
html[data-a11y-contrast="high"] .event-options::after {
  display: none;
}

html[data-a11y-contrast="high"] .benefits,
html[data-a11y-contrast="high"] .contact,
html[data-a11y-contrast="high"] .about-year,
html[data-a11y-contrast="high"] .workshop-selector {
  color: #fff;
  background: #000;
}

html[data-a11y-contrast="high"] .benefit p,
html[data-a11y-contrast="high"] .benefits .eyebrow,
html[data-a11y-contrast="high"] .contact-copy > p:not(.eyebrow),
html[data-a11y-contrast="high"] .eyebrow.light,
html[data-a11y-contrast="high"] .direct-contact span,
html[data-a11y-contrast="high"] .about-year span {
  color: #fff;
}

html[data-a11y-contrast="high"] .button,
html[data-a11y-contrast="high"] .whatsapp-float,
html[data-a11y-contrast="high"] .accessibility-trigger {
  color: #fff;
  border-color: #000;
  background: #000;
  box-shadow: none;
}

html[data-a11y-contrast="high"] .contact-form,
html[data-a11y-contrast="high"] .workshop-stage,
html[data-a11y-contrast="high"] .video-shell,
html[data-a11y-contrast="high"] .story-video,
html[data-a11y-contrast="high"] .reviews-carousel,
html[data-a11y-contrast="high"] .reviews-viewport,
html[data-a11y-contrast="high"] .event-option,
html[data-a11y-contrast="high"] .media-card,
html[data-a11y-contrast="high"] .accessibility-contact-card,
html[data-a11y-contrast="high"] .accessibility-panel {
  color: #000;
  border-color: #000;
  background: #fff;
  box-shadow: none;
}

html[data-a11y-contrast="high"] .event-option > p,
html[data-a11y-contrast="high"] .event-option-label,
html[data-a11y-contrast="high"] .event-option-link,
html[data-a11y-contrast="high"] .media-card > p,
html[data-a11y-contrast="high"] .media-card a,
html[data-a11y-contrast="high"] .media-source {
  color: #000;
}

html[data-a11y-contrast="high"] :focus-visible {
  outline: 4px solid #ffdf00;
  outline-offset: 4px;
  box-shadow: 0 0 0 2px #000;
}

.legal-header {
  grid-template-columns: auto 1fr;
}

.legal-header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
}

.legal-header-nav > a:not(.button) {
  color: var(--ink-soft);
  font-weight: 600;
}

.accessibility-page {
  min-height: calc(100vh - var(--header-height));
  background: linear-gradient(180deg, var(--cream), var(--paper));
}

.accessibility-content {
  max-width: 880px;
}

.accessibility-page-intro {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.accessibility-page-intro h1 {
  margin-bottom: 0.7rem;
  font-size: clamp(2.6rem, 7vw, 4.7rem);
}

.accessibility-updated {
  color: var(--ink-soft);
  font-weight: 600;
}

.accessibility-lead {
  max-width: 760px;
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-size: 1.16rem;
}

.accessibility-content > section {
  padding-block: 2.25rem;
  border-bottom: 1px solid var(--line);
}

.accessibility-content > section h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.55rem, 3vw, 2.05rem);
}

.accessibility-content > section p:last-child,
.accessibility-content > section ul:last-child {
  margin-bottom: 0;
}

.accessibility-content > section a {
  color: #185f58;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.accessibility-list {
  display: grid;
  gap: 0.65rem;
  padding-right: 1.25rem;
}

.accessibility-contact-card {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.4rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--cream);
  font-style: normal;
}

.accessibility-contact-card a {
  width: fit-content;
}

.accessibility-back {
  margin-top: 2.5rem;
}

.compact-footer {
  min-height: 82px;
  border-top: 0;
}

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

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

@media (max-width: 1200px) {
  html[data-font-scale="large"] .header-socials,
  html[data-font-scale="larger"] .header-socials {
    display: none;
  }
}

@media (max-width: 1050px) {
  :root {
    --header-height: 76px;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
  }

  .brand {
    grid-column: 1;
    width: 124px;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    padding: 0.65rem 1rem;
    border: 1px solid var(--line);
    border-radius: 0 0 1.2rem 1.2rem;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: 0 22px 42px rgba(57, 46, 40, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .hero-grid,
  .experience-grid,
  .about-grid,
  .contact-wrap {
    gap: 3.5rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  }

  .hero-visual {
    min-height: 540px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit:nth-child(2) {
    border-left: 0;
  }

  .benefit:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .workshop-slide {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    min-height: 460px;
  }

  .workshop-image {
    min-height: 460px;
  }

  .workshop-selector-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
  }

  .about-grid,
  .contact-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-video:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 0.65rem);
    justify-self: center;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: min(100% - 28px, 680px);
  }

  .section-pad {
    padding-block: 5rem;
  }

  .video-frame iframe {
    display: none;
  }

  .video-mobile-link {
    display: flex;
  }

  .site-header {
    height: 72px;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .header-inner.legal-header {
    grid-template-columns: auto 1fr;
  }

  .legal-header .brand {
    grid-column: 1;
  }

  .legal-header-nav {
    grid-column: 2;
    gap: 0.7rem;
  }

  .brand {
    width: 112px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    grid-column: 3;
  }

  .hero {
    min-height: auto;
    padding-top: 4.2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  h1 {
    font-size: clamp(2.55rem, 10vw, 3.8rem);
  }

  h1 em {
    white-space: normal;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .hero-facts {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
  }

  .hero-facts div {
    min-height: 102px;
    padding: 0.8rem 0.4rem;
  }

  .hero-facts dt {
    font-size: 1.55rem;
  }

  .hero-facts dd {
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .hero-visual {
    min-height: 570px;
  }

  .hero-photo-main {
    inset: 0 8% 2% 8%;
  }

  .hero-note {
    left: 1%;
  }

  .workshop-slide,
  .experience-grid,
  .about-grid,
  .questions-grid,
  .contact-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .event-options-grid,
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-option:last-child,
  .media-card:last-child {
    grid-column: 1 / -1;
  }

  .workshop-slide {
    min-height: 0;
  }

  .event-option {
    min-height: 0;
  }

  .workshops-heading {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    margin-bottom: 2.8rem;
    text-align: center;
  }

  .workshops-heading-number {
    width: 138px;
    height: 138px;
    margin-inline: auto;
  }

  .workshops-heading-number strong {
    font-size: 4.5rem;
  }

  .workshops-heading .eyebrow {
    justify-content: center;
  }

  .workshops-heading-copy > p:last-child {
    margin-inline: auto;
  }

  .workshop-image {
    min-height: 340px;
    aspect-ratio: 16 / 10;
  }

  .workshop-body {
    min-height: 360px;
    padding: 2rem;
  }

  .workshop-toolbar {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 0.55rem;
  }

  .carousel-arrow {
    width: 46px;
    height: 46px;
  }

  .workshop-picker {
    display: flex;
    gap: 0.4rem;
    padding: 0.15rem;
    overflow-x: auto;
    scrollbar-width: thin;
    scroll-snap-type: x proximity;
  }

  .workshop-picker button {
    flex: 0 0 128px;
    scroll-snap-align: center;
  }

  .reviews-carousel-head,
  .reviews-carousel-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .reviews-controls {
    align-self: stretch;
    justify-content: space-between;
  }

  .reviews-carousel-foot {
    gap: 1rem;
  }

  .reviews-all-link {
    align-self: stretch;
  }

  .experience-grid {
    gap: 3rem;
  }

  .video-shell {
    transform: none;
  }

  .about-photo {
    width: min(520px, 94%);
    margin-inline: auto;
  }

  .about-copy {
    max-width: 650px;
  }

  .questions-intro {
    position: static;
  }

  .contact-wrap {
    gap: 2.5rem;
  }

  .footer-grid {
    gap: 2rem;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 1rem;
  }

  .section-pad {
    padding-block: 4.3rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: center;
  }

  .hero-visual {
    min-height: 465px;
  }

  .hero-photo-main {
    right: 4%;
    left: 4%;
  }

  .hero-photo-small {
    right: -2%;
    width: 42%;
  }

  .hero-note {
    left: -1%;
    top: 9%;
    padding: 0.75rem 0.9rem;
  }

  .hero-note p {
    font-size: 0.88rem;
  }

  .benefits-grid,
  .stories-grid,
  .form-row.two-cols {
    grid-template-columns: 1fr;
  }

  .benefit {
    min-height: auto;
    padding: 1.6rem 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .benefit-icon {
    margin-bottom: 0.9rem;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-facts div {
    min-height: 94px;
    border-radius: 1rem;
    background: rgba(255, 253, 248, 0.58);
  }

  .hero-fact-location {
    grid-column: 1 / -1;
  }

  .workshop-image {
    min-height: 270px;
    aspect-ratio: 4 / 3;
  }

  .workshop-body {
    min-height: 370px;
    padding: 1.6rem;
  }

  .workshop-selector {
    padding: 1rem 0.75rem;
    border-radius: 1.35rem;
  }

  .workshop-selector-head {
    padding-inline: 0.25rem;
  }

  .workshop-toolbar {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
  }

  .carousel-arrow {
    width: 42px;
    height: 42px;
  }

  .workshop-body h3 {
    font-size: 1.8rem;
  }

  .workshop-body > p:not(.card-kicker):not(.workshop-count) {
    font-size: 1rem;
  }

  .workshop-count {
    margin-bottom: 1.2rem;
  }

  .story-video:last-child {
    grid-column: auto;
    width: 100%;
  }

  .event-options-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .event-option:last-child,
  .media-card:last-child {
    grid-column: auto;
  }

  .reviews-carousel {
    padding: 1rem;
    border-radius: 1.5rem;
  }

  .review-slide {
    grid-template-columns: 1fr;
    gap: 1.3rem;
    min-height: 370px;
    padding: 1.5rem;
  }

  .review-slide-number {
    width: 76px;
    height: 76px;
    font-size: 1.65rem;
  }

  .review-slide h4 {
    font-size: 1.65rem;
  }

  .about-year {
    left: -0.5rem;
    bottom: 2rem;
  }

  .contact-form {
    padding: 1.25rem;
    border-radius: 1.4rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float {
    left: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .accessibility-tools {
    right: 14px;
    bottom: 14px;
  }

  .accessibility-trigger {
    width: 54px;
    height: 54px;
    padding: 0;
  }

  .accessibility-trigger > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .accessibility-panel {
    right: 0;
    width: calc(100vw - 28px);
    max-height: calc(100vh - 90px);
  }

  .legal-header-nav > a:not(.button) {
    display: none;
  }

  .legal-header-nav .button {
    min-height: 44px;
    padding-inline: 1rem;
    font-size: 0.86rem;
  }

  .accessibility-page-intro {
    padding-bottom: 2rem;
  }

  .accessibility-content > section {
    padding-block: 1.8rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
