:root {
  --cream: #f5eadc;
  --cream-light: #f5eadc;
  --paper: #f5eadc;
  --ink: #17310a;
  --ink-soft: #364b2d;
  --orange: #ff7420;
  --coral: #ff904c;
  --pink: #f4c0c0;
  --pink-soft: #f4c0c0;
  --yellow: #ecac3c;
  --yellow-soft: #ffecc0;
  --blue: #b4d4e0;
  --blue-deep: #8eb9ca;
  --green: #708468;
  --green-soft: #87a27e;
  --green-pale: #d1ddca;
  --sage: #708468;
  --purple: #8a438a;
  --line: rgba(23, 49, 10, 0.032);
  --border: rgba(23, 49, 10, 0.14);
  --shadow: 0 13px 28px rgba(61, 44, 29, 0.075), 0 2px 5px rgba(61, 44, 29, 0.045);
  --shadow-small: 0 7px 17px rgba(61, 44, 29, 0.075), 0 1px 3px rgba(61, 44, 29, 0.045);
  --sans: "Avenir Next", Avenir, Montserrat, "Segoe UI", Arial, sans-serif;
  --display: "Avenir Next", Avenir, Montserrat, "Segoe UI", Arial, sans-serif;
  --hand: "Segoe Print", "Bradley Hand", "Brush Script MT", cursive;
  --serif: Georgia, "Times New Roman", serif;
  --header-height: 108px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 10px;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--ink);
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  font-weight: 800;
  border-radius: 3px;
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--cream);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 4px clamp(22px, 5vw, 76px);
  border-bottom: 1px solid rgba(23, 49, 10, 0.055);
  background: rgba(245, 234, 220, 0.985);
  backdrop-filter: blur(9px);
}

.brand {
  display: block;
  flex: 0 0 auto;
  margin-right: auto;
  text-decoration: none;
}

.brand img {
  width: clamp(174px, 13vw, 196px);
  aspect-ratio: 1.9;
  height: auto;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: normal;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.75vw, 27px);
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  padding: 10px 1px;
  text-decoration: none;
}

.desktop-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--orange);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  right: 0;
}

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 17px !important;
  border-radius: 4px;
  background: var(--orange);
  box-shadow: 0 2px 0 rgba(23, 49, 10, 0.13);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 0 rgba(23, 49, 10, 0.11);
}

.menu-button {
  display: none;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.menu-lines {
  width: 24px;
  display: grid;
  gap: 4px;
}

.menu-lines i {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] .menu-lines i:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-lines i:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] .menu-lines i:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-height) 0 auto;
  z-index: 75;
  display: grid;
  padding: 18px 25px 25px;
  border-bottom: 1px solid var(--ink);
  background: var(--cream);
  box-shadow: 0 18px 40px rgba(10, 53, 45, 0.12);
}

.mobile-nav a {
  padding: 12px 4px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

main {
  min-height: calc(100vh - var(--header-height));
}

.view {
  min-height: calc(100vh - var(--header-height));
  animation: page-enter 380ms ease both;
}

.page-wrap {
  width: min(1180px, calc(100% - 52px));
  margin: 0 auto;
  padding: 58px 0 88px;
}

@keyframes page-enter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Shared paper language */

.tape {
  position: absolute;
  z-index: 3;
  width: 68px;
  height: 20px;
  left: 50%;
  top: -10px;
  transform: translateX(-50%) rotate(-2deg);
  opacity: 0.72;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.14) 0 2px, transparent 2px 6px);
  box-shadow: inset 0 0 7px rgba(255, 255, 255, 0.24), 0 1px 2px rgba(61, 44, 29, .08);
  clip-path: polygon(1% 9%, 98% 0, 100% 88%, 4% 100%);
}

.tape-blue { background-color: var(--blue-deep); }
.tape-yellow { background-color: var(--yellow); }
.tape-pink { background-color: var(--pink); }
.tape-coral { background-color: var(--coral); }
.tape-green { background-color: var(--green); }

.paperclip {
  position: absolute;
  z-index: 5;
  width: 14px;
  height: 38px;
  border: 1.5px solid var(--ink);
  border-radius: 9px 9px 7px 7px;
  background: transparent;
  box-shadow: inset 0 0 0 2px rgba(245, 234, 220, .25);
  transform: rotate(8deg);
  pointer-events: none;
}

.paperclip::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 27px;
  left: 2px;
  top: 3px;
  border: 1.5px solid var(--ink);
  border-radius: 6px;
  border-bottom-color: transparent;
}

.paperclip-home {
  left: 29px;
  top: -15px;
}

.paperclip-note {
  left: 25px;
  top: -14px;
}

.paperclip-testimonials {
  right: 34px;
  top: -15px;
  border-color: var(--ink);
  transform: rotate(-11deg);
}

.tape-shop {
  left: 72%;
  transform: translateX(-50%) rotate(5deg);
}

.scribble {
  display: block;
  width: 86px;
  height: 15px;
  margin: 12px auto 0;
  border-top: 3px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-3deg) skewX(-18deg);
}

.eyebrow {
  margin: 0 0 11px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead {
  max-width: 720px;
  color: #253b37;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover:not(.is-disabled) {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 3px 0 rgba(255, 116, 32, 0.42);
}

.button-primary:hover:not(.is-disabled) {
  box-shadow: 0 5px 0 rgba(255, 116, 32, 0.34);
}

.button-secondary {
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  background: rgba(10, 53, 45, 0.06);
}

.button.is-disabled {
  border-color: #7a857f;
  background: #7a857f;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.72;
}

.text-link,
.text-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  cursor: pointer;
}

.text-button {
  padding: 5px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 35px;
}

.section-heading.centered {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading h1,
.section-heading h2,
.hero-copy h1,
.about-copy h1,
.shop-hero h2,
.booking-panel h2,
.testimonials-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(38px, 4.8vw, 60px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.section-heading h2,
.shop-hero h2,
.booking-panel h2,
.testimonials-heading h2 {
  font-size: clamp(32px, 3.7vw, 47px);
  line-height: 1.06;
}

.paper-sheet {
  position: relative;
  border: 1px solid rgba(23, 49, 10, 0.09);
  background: rgba(245, 234, 220, 0.78);
  box-shadow: 0 11px 24px rgba(61, 44, 29, 0.06);
}

/* Home */

.view-home {
  position: relative;
  overflow: hidden;
}

.home-board {
  position: relative;
  width: min(1160px, calc(100% - 52px));
  height: max(650px, calc(100vh - var(--header-height)));
  min-height: 650px;
  margin: 0 auto;
  padding: 0;
}

.home-board::before,
.home-board::after {
  display: none;
}

.torn-shape {
  position: absolute;
  display: block;
  pointer-events: none;
}

.torn-shape-pink {
  z-index: 1;
  width: 270px;
  height: 168px;
  left: 29%;
  top: 59%;
  background: var(--yellow);
  box-shadow: var(--shadow-small);
  clip-path: polygon(2% 5%, 96% 0, 100% 89%, 94% 100%, 7% 96%, 0 13%);
  transform: rotate(-4deg);
}

.torn-shape-green {
  z-index: 1;
  width: 330px;
  height: 210px;
  left: 66%;
  top: 43%;
  background: var(--green-soft);
  box-shadow: var(--shadow-small);
  clip-path: polygon(2% 3%, 96% 0, 100% 94%, 89% 98%, 74% 95%, 60% 100%, 45% 96%, 31% 100%, 16% 95%, 1% 99%);
  transform: rotate(2.2deg);
}

.intro-paper {
  grid-area: intro;
  position: absolute;
  z-index: 3;
  left: -1%;
  top: 15%;
  width: 30%;
  max-width: 336px;
  min-height: 144px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 28px;
  border: 1px solid rgba(23, 49, 10, .13);
  background-color: rgba(245, 234, 220, 0.97);
  background-image:
    linear-gradient(rgba(23,49,10,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,49,10,.075) 1px, transparent 1px);
  background-size: 30px 30px;
  color: var(--ink);
  box-shadow: 0 9px 20px rgba(61, 44, 29, .065);
  text-align: center;
  transform: rotate(-1.4deg);
  clip-path: polygon(0 5%, 6% 1%, 14% 5%, 23% 0, 34% 4%, 46% 1%, 57% 5%, 68% 0, 79% 4%, 90% 1%, 100% 5%, 98% 94%, 90% 99%, 79% 95%, 67% 100%, 55% 96%, 43% 99%, 31% 95%, 19% 100%, 8% 96%, 1% 99%);
}

.intro-paper strong {
  display: block;
  font-size: clamp(16px, 1.65vw, 22px);
  line-height: 1.18;
  white-space: nowrap;
}

.home-note {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(23, 49, 10, .16);
  box-shadow: 0 11px 24px rgba(61, 44, 29, .085), 0 2px 4px rgba(61, 44, 29, .04);
  transform: rotate(var(--rotation, 0deg));
  transition: transform 190ms ease, filter 190ms ease, box-shadow 190ms ease;
}

.home-note:hover {
  z-index: 5;
  filter: saturate(1.06);
  box-shadow: 0 13px 25px rgba(61, 44, 29, .105), 0 2px 4px rgba(61, 44, 29, .05);
  transform: translateY(-3px) rotate(var(--rotation, 0deg));
}

.home-note .note-label {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.06;
}

.home-note small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 11px;
  font-size: 13px;
  font-weight: 760;
}

.home-note-coaching {
  --rotation: -.7deg;
  grid-area: coaching;
  z-index: 5;
  left: 27%;
  top: 5%;
  width: 36%;
  max-width: 420px;
  height: 318px;
  background: var(--orange);
  border-radius: 4px 10px 7px 3px / 7px 3px 9px 4px;
}

.home-note-coaching .note-label {
  font-family: var(--display);
  font-size: clamp(40px, 4vw, 48px);
  letter-spacing: -0.035em;
}

.note-arrow {
  position: absolute;
  right: 20px;
  bottom: 15px;
  font-size: 27px;
}

.home-note-about {
  --rotation: -2.1deg;
  grid-area: about;
  z-index: 4;
  left: 8%;
  top: 44%;
  width: 29%;
  max-width: 322px;
  height: 232px;
  padding: 34px;
  background: var(--pink);
  color: var(--ink);
  border-radius: 47% 53% 44% 56% / 52% 43% 57% 48%;
}

.home-note-testimonials {
  --rotation: 1.15deg;
  grid-area: testimonials;
  z-index: 2;
  left: 59%;
  top: 11%;
  width: 35%;
  max-width: 382px;
  height: 194px;
  background-color: var(--blue);
  background-image: repeating-linear-gradient(to bottom, transparent 0 29px, rgba(23,49,10,.09) 29px 30px);
  border-radius: 3px 8px 4px 9px / 7px 3px 8px 5px;
}

.home-note-testimonials .note-label {
  font-size: clamp(27px, 2.8vw, 35px);
}

.home-note-shop {
  --rotation: -.8deg;
  grid-area: shop;
  z-index: 7;
  left: 60.5%;
  top: 59%;
  width: 35%;
  max-width: 380px;
  height: 132px;
  flex-flow: column nowrap;
  gap: 0;
  background: var(--ink);
  color: var(--cream);
  border-radius: 3px 7px 4px 8px / 7px 3px 6px 4px;
}

.home-note-shop .note-label {
  color: var(--pink);
}

.home-note-booking {
  --rotation: 1.05deg;
  grid-area: booking;
  z-index: 6;
  left: 35%;
  top: 50%;
  width: 29%;
  max-width: 308px;
  height: 218px;
  background: var(--yellow-soft);
  border-radius: 7px 3px 9px 4px / 3px 8px 4px 9px;
}

.home-note-booking .note-label {
  font-size: clamp(27px, 2.8vw, 35px);
}

.home-signature {
  grid-area: signature;
  position: absolute;
  z-index: 3;
  left: 69%;
  top: 47%;
  width: 260px;
  display: flex;
  align-items: center;
  padding: 0;
  color: var(--cream);
  font-family: var(--hand);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  transform: rotate(1deg);
}

/* Coaching */

.coaching-hero {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: center;
  padding: 28px 0 76px;
}

.hero-copy {
  max-width: 720px;
}

.hero-copy h1 {
  font-family: var(--hand);
  font-size: clamp(51px, 7vw, 76px);
  letter-spacing: -0.025em;
}

.coaching-hero-postit {
  position: relative;
  min-height: 315px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
  border: 1px solid rgba(23, 49, 10, .16);
  border-radius: 4px 10px 7px 3px / 7px 3px 9px 4px;
  background: var(--orange);
  box-shadow: 0 13px 27px rgba(61, 44, 29, .10), 0 2px 4px rgba(61, 44, 29, .05);
  color: var(--ink);
  text-align: center;
  transform: rotate(-.7deg);
}

.coaching-hero-postit strong {
  font-family: var(--display);
  font-size: clamp(43px, 5vw, 61px);
  font-weight: 850;
  letter-spacing: -.04em;
  line-height: 1;
}

.coaching-hero-postit::after {
  content: "";
  position: absolute;
  width: 154px;
  height: 12px;
  left: 50%;
  top: calc(50% + 42px);
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transform: translateX(-50%) rotate(-4deg) skewX(-20deg);
}

.coaching-hero-postit .tape {
  left: 69%;
  width: 84px;
  transform: translateX(-50%) rotate(5deg);
}

.paperclip-coaching {
  left: 34px;
  top: -15px;
}

.hero-description p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.7;
}

.hero-description .lead {
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.coaching-mantra {
  margin: 25px 0 2px;
  padding: 14px 0 13px;
  border-top: 1px solid rgba(23, 49, 10, .23);
  border-bottom: 1px solid rgba(23, 49, 10, .23);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .075em;
  line-height: 1.65;
  text-transform: uppercase;
}

.three-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 30px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto 38px;
}

.coaching-principles {
  position: relative;
  max-width: 1060px;
  margin: 0 auto 76px;
  padding: clamp(34px, 4vw, 46px);
  border: 1px solid rgba(23, 49, 10, .12);
  background: var(--yellow-soft);
  box-shadow: 0 10px 22px rgba(61, 44, 29, .07);
  transform: rotate(.08deg);
}

.principles-tape {
  left: 71%;
  top: -12px;
  width: 94px;
  transform: translateX(-50%) rotate(3deg);
}

.principles-heading {
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr);
  gap: 34px;
  align-items: end;
}

.principles-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(30px, 3.5vw, 43px);
  letter-spacing: -.035em;
  line-height: 1.06;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 31px;
  border-top: 1px solid rgba(23, 49, 10, .20);
  border-bottom: 1px solid rgba(23, 49, 10, .20);
}

.principles-grid article {
  padding: 26px 28px 27px 0;
}

.principles-grid article + article {
  padding-right: 0;
  padding-left: 28px;
  border-left: 1px solid rgba(23, 49, 10, .20);
}

.principles-grid h3,
.principles-method h3 {
  margin: 0 0 11px;
  color: var(--ink);
  font-family: var(--hand);
  font-size: 25px;
  line-height: 1.15;
}

.principles-grid p,
.principles-method p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

.principles-method {
  margin: 27px -12px -10px 22px;
  padding: 25px 29px;
  border-left: 4px solid var(--orange);
  background: var(--green-pale);
  box-shadow: 5px 6px 0 rgba(23, 49, 10, .08);
  transform: rotate(-.18deg);
}

.principles-method p + p {
  margin-top: 10px;
}

.paper-note {
  position: relative;
  min-height: 0;
  display: block;
  padding: clamp(28px, 3vw, 36px);
  border: 1px solid rgba(23, 49, 10, .09);
  box-shadow: 0 10px 21px rgba(61, 44, 29, .08), 0 1px 3px rgba(61, 44, 29, .04);
}

.paper-note:nth-child(1) { transform: rotate(-.35deg); }
.paper-note:nth-child(2) { transform: rotate(.3deg); }
.paper-note:nth-child(3) { transform: rotate(-.12deg); }

.paper-note-pink { background: var(--pink-soft); }
.paper-note-green { background: var(--green-soft); }
.paper-note-blue { background: var(--blue); }

.paper-note-how {
  grid-column: 1 / -1;
  width: min(100%, 980px);
  justify-self: center;
}

.paper-note h2 {
  margin: 0 0 21px;
  color: var(--ink);
  font-family: var(--hand);
  font-size: clamp(31px, 3.5vw, 40px);
  line-height: 1.05;
}

.paper-note-how h2 {
  text-align: center;
}

.paper-note-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.58;
}

.paper-note-content p + p,
.paper-note-content ul + p,
.paper-note-content ol + p,
.paper-note-content p + ul,
.paper-note-content p + ol {
  margin-top: 15px;
}

.paper-note-content ul {
  display: grid;
  gap: 5px;
  margin-bottom: 0;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.48;
}

.paper-note-content li::marker {
  color: var(--orange);
  font-weight: 900;
}

.coaching-disclaimer {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 3px solid var(--orange);
  background: rgba(245, 234, 220, .5);
}

.coaching-disclaimer p + p {
  margin-top: 8px;
}

.coaching-steps {
  counter-reset: coaching-step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.coaching-steps li {
  counter-increment: coaching-step;
  position: relative;
  min-height: 160px;
  padding: 17px 15px 16px 44px;
  border: 1px solid rgba(23, 49, 10, .16);
  background: rgba(245, 234, 220, .37);
}

.coaching-steps li::before {
  content: counter(coaching-step);
  position: absolute;
  left: 16px;
  top: 15px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 900;
}

.coaching-steps strong,
.coaching-steps span {
  display: block;
}

.coaching-steps strong {
  margin-bottom: 7px;
  font-size: 15px;
}

.coaching-steps span {
  font-size: 14px;
  line-height: 1.48;
}

.coaching-objective {
  margin-top: 21px !important;
  padding-top: 17px;
  border-top: 1px solid rgba(23, 49, 10, .23);
}

.tools-note {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 38px;
  align-items: center;
  margin: 0 0 70px;
  padding: 30px 36px;
  border-top: 1px solid rgba(23, 49, 10, .11);
  border-right: 0;
  border-bottom: 1px solid rgba(23, 49, 10, .11);
  border-left: 3px solid var(--orange);
  background: rgba(245, 234, 220, .42);
  box-shadow: none;
  clip-path: none;
}

.tools-note h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 28px;
}

.tools-note p:last-child {
  margin-bottom: 0;
}

.tool-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tool-chips li {
  padding: 9px 13px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: rgba(245, 234, 220, .62);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.method-section {
  position: relative;
  margin: 0;
  padding: 54px 48px 48px;
  border-top: 1px solid rgba(23, 49, 10, .12);
  border-bottom: 1px solid rgba(23, 49, 10, .12);
  background: rgba(245, 234, 220, .46);
  box-shadow: none;
  clip-path: none;
}

.method-section::before,
.method-section::after {
  display: none;
}

.method-section .section-heading h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.3vw, 52px);
  letter-spacing: -0.035em;
}

.method-house-map {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  aspect-ratio: 1424 / 1600;
  overflow: hidden;
  margin: 0 auto;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.method-house-map img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.room-hotspot {
  position: absolute;
  z-index: 2;
  margin: 0;
  padding: 0;
  border: 3px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: transparent;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.room-hotspot:hover,
.room-hotspot:focus-visible,
.room-hotspot.is-selected {
  border-color: var(--orange);
  background: rgba(255, 116, 32, .08);
  box-shadow: 0 0 0 3px rgba(245, 234, 220, .78);
  outline: none;
}

.room-hotspot span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hotspot-rooftop {
  left: 10.15%;
  top: 29.6%;
  width: 79.7%;
  height: 20%;
}

.hotspot-bedroom {
  left: 10.55%;
  top: 51%;
  width: 37.25%;
  height: 22.8%;
}

.hotspot-studio {
  left: 52.65%;
  top: 51%;
  width: 37.25%;
  height: 22.8%;
}

.hotspot-entrance {
  left: 10.55%;
  top: 74.9%;
  width: 37.25%;
  height: 22.8%;
}

.hotspot-living {
  left: 52.65%;
  top: 74.9%;
  width: 37.25%;
  height: 22.8%;
}

.rooms {
  position: relative;
  z-index: 1;
  max-width: 860px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "rooftop rooftop"
    "chambre atelier"
    "entree salon";
  gap: 0;
  margin: 0 auto;
  padding: 18px 18px 14px;
}

.room-card {
  position: relative;
  min-height: 158px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 31px 28px 25px;
  border: 1px solid rgba(23, 49, 10, .62);
  border-radius: 2px;
  color: var(--ink);
  box-shadow: 0 6px 14px rgba(61, 44, 29, .055);
  text-align: left;
  cursor: pointer;
  transform: rotate(var(--room-rotation, 0deg));
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.room-card:hover,
.room-card.is-selected {
  z-index: 2;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(23, 49, 10, .11), 0 10px 20px rgba(61, 44, 29, .075);
  transform: translateY(-3px) rotate(var(--room-rotation, 0deg));
}

.room-entrance {
  --room-rotation: -.45deg;
  grid-area: entree;
  z-index: 2;
  margin: -8px -4px 0 12px;
  background: var(--yellow-soft);
}

.room-living {
  --room-rotation: .35deg;
  grid-area: salon;
  z-index: 3;
  margin: -5px 10px 0 -7px;
  background: var(--blue);
}

.room-studio {
  --room-rotation: .35deg;
  grid-area: atelier;
  z-index: 3;
  margin: 0 7px -5px -8px;
  background: var(--orange);
}

.room-bedroom {
  --room-rotation: -.4deg;
  grid-area: chambre;
  z-index: 2;
  margin: 2px -5px -7px 8px;
  background: var(--pink);
}

.room-rooftop {
  --room-rotation: -.25deg;
  grid-area: rooftop;
  z-index: 5;
  min-height: 142px;
  align-items: center;
  margin: 0 34px -12px;
  background: var(--green);
  color: var(--cream);
  text-align: center;
}

.room-tape {
  left: 72%;
  width: 82px;
  top: -9px;
  transform: translateX(-50%) rotate(4deg);
}

.paperclip-room {
  left: 38px;
  top: -16px;
  border-color: var(--cream);
  transform: rotate(11deg);
}

.paperclip-room::after {
  border-color: var(--cream);
  border-bottom-color: transparent;
}

.room-number {
  position: absolute;
  left: 20px;
  top: 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  opacity: .7;
}

.room-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin-bottom: 13px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 900;
}

.icon-door::before { content: "⌂"; }
.icon-sofa::before { content: "▱"; transform: rotate(90deg); }
.icon-pencil::before { content: "✎"; }
.icon-bed::before { content: "⌞"; transform: rotate(90deg); }
.icon-leaf::before { content: "♧"; }

.room-card strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -.025em;
  line-height: 1.15;
  text-transform: uppercase;
}

.room-card small {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.room-rooftop strong {
  font-size: 25px;
}

.room-rooftop small {
  font-size: 19px;
  font-weight: 700;
}

.room-rooftop .room-number {
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  opacity: 1;
}

.room-detail {
  position: relative;
  z-index: 1;
  max-width: 860px;
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 23px;
  align-items: center;
  margin: 30px auto 0;
  padding: 26px 22px;
  border-top: 1px solid rgba(23, 49, 10, .28);
  border-right: 0;
  border-bottom: 1px solid rgba(23, 49, 10, .28);
  border-left: 0;
  background: transparent;
}

.room-detail-number {
  color: var(--orange);
  font-family: var(--display);
  font-size: 54px;
  text-align: center;
}

.room-detail h3 {
  margin: -3px 0 4px;
  color: var(--ink);
  font-family: var(--hand);
  font-size: 36px;
  line-height: 1.15;
}

.room-detail p:last-child {
  margin: 0;
}

.offers-section {
  padding: 82px 0 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.offer-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 26px 23px 24px;
  border: 1px solid var(--ink);
  background: rgba(245, 234, 220, .68);
}

.offer-card:nth-child(2) { transform: rotate(.5deg); }
.offer-card:nth-child(3) { transform: rotate(-.45deg); }

.offer-featured {
  background: var(--yellow-soft);
  box-shadow: 5px 5px 0 var(--ink);
  transform: translateY(-5px);
}

.offer-tag,
.product-status {
  align-self: flex-start;
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 2px;
  background: var(--pink-soft);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.offer-card h3 {
  margin: 18px 0 4px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.15;
}

.offer-time {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.offer-card > p:not(.offer-time) {
  margin: 0 0 24px;
  font-size: 14px;
}

.offer-card .button {
  width: 100%;
  margin-top: auto;
}

.care-note {
  max-width: 860px;
  margin: 36px auto 0;
  padding: 17px 22px;
  border-left: 4px solid var(--blue-deep);
  background: rgba(245, 234, 220, .62);
  color: #39504b;
  font-size: 13px;
  text-align: center;
}

/* About */

.about-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 315px) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 78px);
  align-items: start;
}

.about-collage {
  position: relative;
  min-height: 340px;
}

.about-note {
  position: absolute;
  left: 0;
  top: 0;
  width: 300px;
  height: 315px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: var(--pink);
  color: var(--ink);
  border: 1px solid rgba(23, 49, 10, .10);
  box-shadow: 0 12px 24px rgba(61, 44, 29, .09);
  clip-path: none;
  font-family: var(--hand);
  font-size: 52px;
  font-weight: 800;
  line-height: .98;
  text-align: center;
  transform: rotate(-1.6deg);
}

.about-note::before {
  content: "";
  position: absolute;
  width: 105px;
  height: 34px;
  left: 44%;
  top: -12px;
  background: rgba(237, 215, 186, .86);
  transform: translateX(-50%) rotate(1deg);
}

.mini-note {
  position: absolute;
  width: 195px;
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 19px;
  border: 1px solid rgba(23, 49, 10, .09);
  box-shadow: 0 8px 17px rgba(61, 44, 29, .07);
  color: var(--ink);
  font-family: var(--hand);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.mini-note-blue {
  right: 0;
  bottom: 15%;
  background: var(--blue);
  transform: rotate(.8deg);
}

.mini-note-yellow {
  left: 2%;
  bottom: 0;
  background: var(--yellow-soft);
  transform: rotate(-.6deg);
}

.about-copy {
  padding: clamp(33px, 4.6vw, 54px);
  clip-path: none;
}

.about-copy h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.02;
}

.about-copy .about-author {
  margin: 0 0 22px;
  color: var(--orange-deep);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
}

.about-author cite {
  font-style: italic;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 27px;
  align-items: start;
  margin-bottom: 10px;
}

.about-portrait {
  position: relative;
  width: 190px;
  height: 190px;
  margin: -9px 0 18px;
  padding: 5px;
  border: 1px solid rgba(23, 49, 10, .24);
  border-radius: 2px;
  background: #dedede;
  box-shadow: 7px 8px 0 rgba(244, 168, 177, .7);
  transform: rotate(1.4deg);
}

.about-portrait::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 62px;
  height: 22px;
  left: 50%;
  top: -10px;
  background: rgba(255, 108, 31, .72);
  transform: translateX(-50%) rotate(-4deg);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
}

.about-copy h2 {
  margin: 34px 0 13px;
  color: var(--ink);
  font-family: var(--hand);
  font-size: 31px;
  line-height: 1.1;
}

.about-copy p {
  margin: 0 0 18px;
  line-height: 1.72;
}

.about-copy strong {
  color: var(--ink);
}

.about-highlight {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.04em;
  font-weight: 650;
}

.about-copy blockquote {
  margin: 30px -10px;
  padding: 23px 27px;
  border-left: 3px solid var(--orange);
  background: var(--yellow-soft);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.55;
}

.about-copy .button {
  margin-top: 10px;
}

/* Testimonials */

.testimonials-wrap {
  max-width: 1180px;
}

.testimonials-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
  margin-bottom: 46px;
}

.title-note {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  color: var(--ink);
  border: 1px solid rgba(23, 49, 10, .10);
  box-shadow: 0 11px 23px rgba(61, 44, 29, .085);
  text-align: center;
  transform: rotate(-.4deg);
}

.title-note h1 {
  margin: 0;
  font-family: var(--hand);
  font-size: clamp(38px, 4.5vw, 53px);
  font-weight: 800;
  line-height: 1;
}

.title-note-blue {
  border-left: 1px solid rgba(23,49,10,.18);
  background-color: var(--blue);
  background-image: none;
}

.title-note-yellow { background: var(--yellow); }
.title-note-green {
  background: var(--green);
  color: var(--cream);
}

.testimonials-heading > div:last-child > p:last-child {
  max-width: 610px;
  color: #435651;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  position: relative;
  min-height: 275px;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 35px 27px 25px;
  border: 1px solid rgba(10, 53, 45, .12);
  background: rgba(245, 234, 220, .68);
  box-shadow: 0 8px 17px rgba(61, 44, 29, .065);
}

.testimonial-card:nth-child(2),
.testimonial-card:nth-child(5),
.testimonial-card:nth-child(8) { transform: rotate(.45deg); }
.testimonial-card:nth-child(3),
.testimonial-card:nth-child(7) { transform: rotate(-.45deg); }

.quote-mark {
  position: absolute;
  left: 21px;
  top: 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
}

.testimonial-card footer {
  margin-top: auto;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.testimonial-card-short {
  min-height: 205px;
  justify-content: center;
}

.testimonial-card-short p {
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: 18px;
}

.testimonial-grid > .testimonial-card:nth-child(1),
.testimonial-grid > .testimonial-card:nth-child(5),
.testimonial-grid > .testimonial-card:nth-child(9) {
  background: var(--pink-soft);
}

.testimonial-grid > .testimonial-card:nth-child(2),
.testimonial-grid > .testimonial-card:nth-child(6) {
  background: var(--blue);
}

.testimonial-grid > .testimonial-card:nth-child(3),
.testimonial-grid > .testimonial-card:nth-child(7) {
  background: var(--green-pale);
}

.testimonial-grid > .testimonial-card:nth-child(4),
.testimonial-grid > .testimonial-card:nth-child(8) {
  background: var(--yellow-soft);
}

.testimonial-cta {
  grid-column: 1 / -1;
  min-height: 205px;
  align-items: flex-start;
  justify-content: center;
  border: 0;
  background: var(--pink-soft);
}

.testimonial-cta h3 {
  margin: 3px 0 25px;
  color: var(--ink);
  font-family: var(--hand);
  font-size: 31px;
  line-height: 1.18;
}

/* Shop */

.shop-wrap {
  max-width: 1110px;
}

.shop-hero {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(45px, 8vw, 100px);
  align-items: center;
  margin-bottom: 58px;
}

.shop-hero .title-note {
  min-height: 245px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(23, 49, 10, .10);
  background: rgba(245, 234, 220, .60);
  box-shadow: 0 10px 22px rgba(61, 44, 29, .075);
}

.product-visual {
  position: relative;
  width: 100%;
  min-height: 380px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  background-color: #e8d7c3;
  background-image:
    radial-gradient(circle at 17% 22%, rgba(255,255,255,.6) 0 2px, transparent 3px),
    linear-gradient(135deg, rgba(255,255,255,.35), transparent 55%);
  cursor: pointer;
}

.product-visual::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 30px;
  left: 9%;
  bottom: 7%;
  border-radius: 50%;
  background: rgba(48, 35, 24, .18);
  filter: blur(13px);
}

.product-sticker {
  position: absolute;
  z-index: 4;
  left: 20px;
  top: 20px;
  padding: 8px 12px;
  background: var(--pink);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.book-mockup {
  position: relative;
  z-index: 2;
  width: 215px;
  height: 315px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 27px;
  border-radius: 1px 7px 7px 1px;
  background-color: #f7efe5;
  background-image: linear-gradient(90deg, rgba(52,39,27,.11), transparent 7%, transparent 94%, rgba(52,39,27,.07));
  color: #182a27;
  box-shadow: -9px 10px 0 #dbcab6, 0 25px 31px rgba(42, 31, 22, .24);
  font-family: var(--serif);
  transform: perspective(850px) rotateY(-8deg) rotateZ(-2deg);
}

.book-mockup::before {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  top: 18px;
  bottom: 18px;
  border: 1px solid rgba(10, 53, 45, .22);
}

.book-overline {
  position: relative;
  z-index: 1;
  margin-bottom: 21px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.book-mockup strong {
  position: relative;
  z-index: 1;
  font-size: 36px;
  font-weight: 500;
  line-height: .92;
  text-align: center;
}

.book-mockup em {
  color: var(--orange);
  font-weight: 600;
}

.book-mockup small {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 24px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.book-cover-image {
  position: relative;
  z-index: 2;
  width: min(252px, 72%);
  height: auto;
  display: block;
  border-radius: 2px 8px 8px 2px;
  box-shadow: -8px 9px 0 #d5c4ae, 0 24px 33px rgba(42, 31, 22, .25);
  transform: perspective(850px) rotateY(-7deg) rotateZ(-1.4deg);
}

.oracle-stage {
  background: #ddd6c4;
}

.oracle-stack {
  position: relative;
  z-index: 2;
  width: 250px;
  height: 320px;
}

.oracle-card {
  position: absolute;
  width: 184px;
  height: 286px;
  left: 33px;
  top: 16px;
  border: 2px solid #d6b86e;
  border-radius: 9px;
  background: var(--ink);
  box-shadow: 0 21px 28px rgba(42,31,22,.23);
}

.oracle-back-one { transform: rotate(-13deg) translateX(-22px); }
.oracle-back-two { transform: rotate(11deg) translateX(22px); }

.oracle-front {
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: #edcf85;
  text-align: center;
  transform: rotate(-1deg);
}

.oracle-front::before,
.oracle-front::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid currentColor;
  border-radius: 5px;
}

.oracle-front::after {
  inset: 16px;
  border-style: dotted;
}

.oracle-front small,
.oracle-front strong,
.oracle-front span {
  position: relative;
  z-index: 2;
}

.oracle-front small {
  font-family: var(--hand);
  font-size: 19px;
}

.oracle-front strong {
  margin: 20px 0;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
}

.oracle-front span {
  font-size: 26px;
}

.product-copy {
  padding: 27px 30px 30px;
}

.product-status {
  background: var(--green-soft);
}

.product-copy h3 {
  margin: 15px 0 9px;
  color: var(--ink);
  font-size: 27px;
  line-height: 1.15;
}

.product-copy p {
  min-height: 76px;
  margin: 0 0 14px;
  color: #40534e;
}

.stripe-note {
  display: grid;
  grid-template-columns: 65px minmax(0, 1fr);
  gap: 23px;
  align-items: center;
  margin: 44px 0 0;
  padding: 25px 29px;
  border: 1px solid var(--ink);
  background: rgba(245, 234, 220, .66);
}

.stripe-note strong {
  color: var(--ink);
  font-size: 18px;
}

.stripe-note p {
  margin: 5px 0 0;
  color: #40534e;
  font-size: 14px;
}

.stripe-lock {
  position: relative;
  width: 43px;
  height: 38px;
  margin: 11px auto 0;
  border: 2px solid var(--ink);
  border-radius: 4px;
}

.stripe-lock::before {
  content: "";
  position: absolute;
  width: 23px;
  height: 22px;
  left: 6px;
  top: -22px;
  border: 2px solid var(--ink);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
}

/* Booking */

.booking-wrap {
  max-width: 1120px;
  display: grid;
  grid-template-columns: minmax(310px, .72fr) minmax(0, 1.28fr);
  gap: clamp(45px, 8vw, 88px);
  align-items: start;
}

.booking-collage {
  position: sticky;
  top: calc(var(--header-height) + 35px);
}

.booking-collage .title-note {
  min-height: 325px;
  transform: rotate(-.5deg);
}

.booking-collage .title-note h1 {
  font-size: clamp(42px, 4.5vw, 56px);
}

.booking-aside {
  width: 90%;
  margin: 34px auto 0;
  padding: 19px 22px;
  background: var(--yellow-soft);
  box-shadow: var(--shadow-small);
  transform: rotate(.4deg);
}

.booking-aside p {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--hand);
  font-size: 18px;
  font-weight: 800;
}

.booking-aside a {
  display: block;
  font-size: 13px;
  font-weight: 800;
}

.booking-panel {
  padding: clamp(31px, 4.6vw, 51px);
  clip-path: none;
}

.booking-panel h2 {
  margin-bottom: 21px;
}

.booking-panel > p:not(.eyebrow) {
  color: #40534e;
  line-height: 1.7;
}

#bookingForm {
  margin-top: 35px;
}

#bookingForm fieldset {
  margin: 0 0 28px;
  padding: 0;
  border: 0;
}

#bookingForm legend,
#bookingForm > label,
.form-grid label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.booking-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 25px 0 28px;
}

.booking-option {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.booking-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-option > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 17px;
  border: 1px solid rgba(23, 49, 10, .28);
  background: rgba(245, 234, 220, .72);
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
  min-height: 78px;
}

.booking-option:hover > span,
.booking-option.is-selected > span {
  border-color: var(--ink);
  background: var(--yellow-soft);
  transform: translateX(3px);
}

.booking-option input:focus-visible + span {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.booking-option strong {
  color: var(--ink);
  font-size: 14px;
}

.booking-option small {
  color: #566662;
  font-size: 12px;
  text-align: right;
}

.cal-booking-area {
  position: relative;
  min-height: 720px;
  margin: 5px -18px 0;
  overflow: hidden;
  border: 1px solid rgba(23, 49, 10, .18);
  background: #fff;
}

.cal-embed-panel {
  width: 100%;
  min-height: 720px;
  overflow: auto;
}

.cal-booking-loading {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  font-family: var(--hand);
  font-size: 18px;
  font-weight: 800;
}

.cal-embed-panel > * {
  position: relative;
  z-index: 1;
}

.form-note a {
  color: var(--ink);
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

#bookingForm input[type="text"],
#bookingForm input[type="email"],
#bookingForm textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid rgba(23, 49, 10, .28);
  border-radius: 0;
  background: rgba(245, 234, 220, .74);
  color: #15201e;
  font-size: 15px;
  font-weight: 500;
}

#bookingForm textarea {
  resize: vertical;
}

#bookingForm input:focus,
#bookingForm textarea:focus {
  border-color: var(--ink);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 116, 32, .22);
}

.optional {
  color: #68736f;
  font-weight: 600;
}

#bookingForm > .button {
  margin-top: 7px;
}

.form-note {
  margin: 16px 0 0;
  color: #65716d;
  font-size: 11px;
  font-weight: 600;
}

.privacy-hint {
  margin: -2px 0 5px;
  color: #65716d;
  font-size: 12px;
  font-weight: 650;
}

.booking-result {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 17px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--ink);
  background: var(--green-soft);
}

.booking-result > span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-weight: 900;
}

.booking-result strong {
  color: var(--ink);
  font-size: 18px;
}

.booking-result p {
  margin: 4px 0 15px;
  font-size: 13px;
}

/* Legal */

.legal-page-wrap {
  max-width: 1100px;
}

.legal-switcher {
  width: fit-content;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0 auto 58px;
  padding: 6px;
  border: 1px solid rgba(23, 49, 10, .11);
  border-radius: 5px;
  background: rgba(255, 250, 243, .66);
  box-shadow: 0 6px 18px rgba(61, 44, 29, .045);
}

.legal-switcher a {
  padding: 9px 14px;
  border-radius: 3px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease;
}

.legal-switcher a:hover,
.legal-switcher a.is-active,
.legal-switcher a.is-current {
  background: var(--ink);
  color: var(--cream-light);
}

.legal-hero {
  display: grid;
  grid-template-columns: minmax(270px, 355px) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: center;
  margin: 0 auto 64px;
  padding: 0 24px;
}

.legal-hero-reverse .legal-title-note {
  transform: rotate(1.25deg);
}

.legal-title-note {
  position: relative;
  min-height: 235px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 34px;
  border: 1px solid rgba(23, 49, 10, .18);
  box-shadow: var(--shadow);
  transform: rotate(-1.15deg);
}

.legal-title-note::after {
  content: "";
  position: absolute;
  right: 23px;
  bottom: 23px;
  width: 50px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 7px 0 currentColor;
  transform: rotate(-4deg);
  opacity: .72;
}

.legal-title-orange { background: var(--orange); }
.legal-title-blue { background: var(--blue); }
.legal-title-yellow { background: var(--yellow-soft); }

.legal-title-note p {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.legal-title-note h1 {
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 850;
  letter-spacing: -.035em;
  line-height: .98;
  overflow-wrap: anywhere;
}

.legal-hero-copy {
  max-width: 575px;
}

.legal-hero-copy .eyebrow {
  margin-bottom: 13px;
}

.legal-hero-copy > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.5;
}

.legal-document {
  padding: clamp(32px, 6vw, 70px) clamp(25px, 7vw, 82px);
  border-color: rgba(23, 49, 10, .13);
  background-color: #fffaf3;
  background-image:
    linear-gradient(rgba(211, 174, 126, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(211, 174, 126, .12) 1px, transparent 1px);
  background-size: 34px 34px;
  box-shadow: 0 18px 42px rgba(61, 44, 29, .08);
}

.legal-document::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -14px;
  left: 50%;
  width: 108px;
  height: 28px;
  background: rgba(255, 144, 76, .66);
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.13) 0 3px, transparent 3px 7px);
  transform: translateX(-50%) rotate(-1.5deg);
  clip-path: polygon(2% 8%, 98% 0, 100% 88%, 3% 100%);
}

.legal-section {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: clamp(17px, 3vw, 31px);
  padding: 36px 0;
  border-bottom: 1px solid rgba(23, 49, 10, .13);
}

.legal-section:first-of-type {
  padding-top: 6px;
}

.legal-section:last-of-type {
  border-bottom: 0;
}

.legal-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--cream-light);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}

.legal-section h2 {
  margin: 2px 0 17px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(24px, 2.7vw, 32px);
  font-weight: 850;
  letter-spacing: -.025em;
  line-height: 1.05;
}

.legal-section h3 {
  margin: 24px 0 8px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.legal-section p,
.legal-section li,
.legal-section dd,
.legal-section dt {
  font-size: 16px;
  line-height: 1.68;
}

.legal-section p {
  margin: 0 0 15px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 18px;
  padding-left: 20px;
}

.legal-section li::marker {
  color: var(--orange);
}

.legal-section a,
.text-link {
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-section a:hover,
.text-link:hover {
  color: var(--orange);
}

.legal-details {
  display: grid;
  margin: 0 0 23px;
  border-top: 1px solid rgba(23, 49, 10, .14);
}

.legal-details > div {
  display: grid;
  grid-template-columns: minmax(140px, .62fr) minmax(0, 1.38fr);
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(23, 49, 10, .11);
}

.legal-details dt {
  font-weight: 850;
}

.legal-details dd {
  margin: 0;
}

.legal-purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 4px 0 22px;
}

.legal-purpose-grid > div {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px;
  border: 1px solid rgba(23, 49, 10, .14);
  background: rgba(209, 221, 202, .48);
}

.legal-purpose-grid > div:nth-child(2) { background: rgba(180, 212, 224, .46); }
.legal-purpose-grid > div:nth-child(3) { background: rgba(244, 192, 192, .4); }
.legal-purpose-grid > div:nth-child(4) { background: rgba(255, 236, 192, .52); }

.legal-purpose-grid strong {
  font-size: 15px;
}

.legal-purpose-grid span {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.legal-callout {
  margin: 10px 0 30px;
  padding: 21px 23px;
  border-left: 5px solid var(--orange);
  background: rgba(255, 236, 192, .78);
  box-shadow: var(--shadow-small);
}

.legal-section .legal-callout {
  margin: 22px 0 5px;
}

.legal-callout-blue {
  border-left-color: var(--blue-deep);
  background: rgba(180, 212, 224, .55);
}

.legal-callout-warning {
  border-left-color: var(--orange);
  background: rgba(244, 192, 192, .46);
}

.legal-callout strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.legal-callout p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.legal-withdrawal-form blockquote {
  margin: 18px 0 0;
  padding: 24px 27px;
  border: 1px solid rgba(23, 49, 10, .16);
  background: rgba(245, 234, 220, .75);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.58;
}

.legal-updated {
  margin: 32px 0 0;
  color: #65716d;
  font-size: 12px;
  font-weight: 750;
  text-align: right;
}

/* Footer */

.site-footer {
  display: grid;
  grid-template-columns: 1.05fr .7fr minmax(310px, 1fr);
  gap: clamp(35px, 6vw, 92px);
  align-items: start;
  padding: 48px clamp(28px, 8vw, 126px) 30px;
  border-top: 1px solid rgba(23, 49, 10, .12);
  background: var(--green-soft);
  color: var(--ink);
}

.footer-brand img {
  width: 150px;
  aspect-ratio: 1.9;
  height: auto;
  margin-bottom: 6px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: darken;
}

.footer-brand p {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--orange);
}

.footer-contact-wrap {
  position: relative;
  width: min(100%, 380px);
  justify-self: end;
}

.footer-contact-wrap::before {
  content: "";
  position: absolute;
  z-index: 4;
  left: -22px;
  top: -16px;
  width: 104px;
  height: 34px;
  background: rgba(255, 144, 76, .88);
  box-shadow: 0 3px 7px rgba(61, 44, 29, .08);
  transform: rotate(-32deg);
  clip-path: polygon(2% 12%, 96% 0, 100% 83%, 91% 100%, 5% 92%, 0 23%);
}

.footer-contact {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 19px;
  padding: 42px 28px 28px;
  background-color: #fffaf3;
  background-image:
    linear-gradient(rgba(211, 174, 126, .28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(211, 174, 126, .28) 1px, transparent 1px);
  background-size: 28px 28px;
  box-shadow: 0 11px 24px rgba(61, 44, 29, .09);
  transform: rotate(.35deg);
  clip-path: polygon(1% 5%, 5% 2%, 10% 4%, 16% 1%, 22% 4%, 29% 2%, 36% 5%, 43% 1%, 50% 4%, 57% 2%, 64% 5%, 71% 1%, 78% 4%, 85% 2%, 92% 5%, 99% 2%, 100% 95%, 96% 98%, 90% 96%, 84% 100%, 77% 97%, 70% 99%, 63% 96%, 56% 100%, 49% 97%, 42% 99%, 35% 96%, 28% 100%, 21% 97%, 14% 99%, 7% 96%, 1% 99%);
}

.footer-contact::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 18px;
  right: 18px;
  height: 16px;
  background: radial-gradient(circle at 8px 1px, var(--green-soft) 0 5px, transparent 5.5px) 0 0 / 25px 16px repeat-x;
  pointer-events: none;
}

.footer-contact a {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: var(--ink);
  font-size: clamp(13px, 1.25vw, 16px);
  font-weight: 650;
  line-height: 1.25;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-contact-icon {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.copyright {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 11px;
  text-align: left;
}

/* Product modal */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 22px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 38, 32, .68);
  backdrop-filter: blur(5px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: calc(100vh - 44px);
  display: grid;
  grid-template-columns: minmax(390px, .92fr) minmax(0, 1.08fr);
  overflow: auto;
  border: 1px solid var(--ink);
  background: var(--cream);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
}

.modal-close {
  position: absolute;
  z-index: 5;
  right: 13px;
  top: 10px;
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--cream-light);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.modal-product-visual {
  min-height: 680px;
  display: grid;
  place-items: center;
  padding: 32px;
  background: #e7d8c6;
}

.modal-product-visual .book-mockup {
  transform: perspective(850px) rotateY(-7deg) rotateZ(-2deg) scale(1.04);
}

.modal-product-visual .oracle-stack {
  transform: scale(.95);
}

.modal-product-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 57px 43px 42px;
}

.modal-product-copy h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 38px;
  letter-spacing: -.04em;
  line-height: 1.02;
}

.modal-product-copy > p:not(.eyebrow):not(.secure-copy) {
  color: #40534e;
  line-height: 1.7;
}

.modal-summary {
  margin: 13px 0 9px;
  padding: 22px 0 3px;
  border-top: 1px solid rgba(23, 49, 10, .24);
}

.modal-summary h3 {
  margin: 0 0 13px;
  color: var(--ink);
  font-family: var(--hand);
  font-size: 27px;
  line-height: 1;
}

.modal-summary p {
  margin: 0 0 12px;
  color: #40534e;
  font-size: 13px;
  line-height: 1.62;
}

.book-reader {
  width: min(100%, 430px);
  display: grid;
  gap: 15px;
  justify-items: center;
}

.book-reader-sheet {
  width: 100%;
  height: min(67vh, 650px);
  display: grid;
  place-items: center;
}

.book-reader-image {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
  border: 1px solid rgba(23, 49, 10, .16);
  background: #fff;
  box-shadow: 0 18px 36px rgba(42, 31, 22, .22);
}

.book-reader-controls {
  width: 100%;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
}

.reader-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--cream-light);
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.reader-arrow:hover,
.reader-arrow:focus-visible {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-1px);
}

.book-reader-label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
}

.reader-open {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.modal-product-copy ul {
  display: grid;
  gap: 7px;
  margin: 12px 0 25px;
  padding: 0;
  list-style: none;
}

.modal-product-copy li {
  position: relative;
  padding-left: 21px;
  font-size: 13px;
  font-weight: 750;
}

.modal-product-copy li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--orange);
}

.modal-actions {
  display: grid;
  gap: 10px;
}

.secure-copy {
  margin: 18px 0 0;
  color: #66746f;
  font-size: 11px;
  text-align: center;
}

.toast {
  position: fixed;
  z-index: 300;
  left: 50%;
  bottom: 22px;
  max-width: min(460px, calc(100% - 30px));
  padding: 13px 18px;
  border: 2px solid var(--ink);
  background: var(--yellow-soft);
  color: var(--ink);
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  transform: translate(-50%, 130%);
  transition: transform 200ms ease;
}

.toast.is-visible {
  transform: translate(-50%, 0);
}

/* Tablet */

@media (max-width: 1080px) {
  :root { --header-height: 92px; }

  .site-header {
    padding: 8px 24px;
  }

  .brand img {
    width: 150px;
  }

  .desktop-nav { display: none; }
  .menu-button { display: flex; }

  .home-board {
    width: min(960px, calc(100% - 40px));
    height: 660px;
    min-height: 660px;
  }

  .home-note .note-label {
    font-size: clamp(27px, 3.6vw, 35px);
  }

  .home-note-coaching .note-label {
    font-size: clamp(39px, 5vw, 47px);
  }

  .coaching-hero {
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 42px;
  }

  .rooms {
    max-width: 790px;
  }

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

  .offer-featured {
    transform: none;
  }

  .about-wrap {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 45px;
  }

  .booking-wrap {
    grid-template-columns: .78fr 1.22fr;
    gap: 45px;
  }

  .about-note {
    width: 270px;
    height: 295px;
    font-size: 48px;
  }

  .mini-note {
    width: 180px;
  }
}

/* Small tablet */

@media (max-width: 820px) {
  .page-wrap {
    width: min(100% - 34px, 680px);
    padding: 44px 0 72px;
  }

  .legal-switcher {
    margin-bottom: 46px;
  }

  .legal-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-bottom: 54px;
    padding: 0 10px;
  }

  .legal-title-note {
    width: min(430px, 88%);
    min-height: 215px;
    margin: 0 auto;
  }

  .legal-hero-copy {
    max-width: 620px;
  }

  .legal-document {
    padding: 50px 38px;
  }

  .home-board {
    width: min(100% - 28px, 650px);
    height: auto;
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
      "intro intro"
      "coaching coaching"
      "about testimonials"
      "shop booking";
    gap: 18px;
    padding: 36px 0 62px;
  }

  .home-board::before,
  .home-board::after,
  .torn-shape,
  .home-signature {
    display: none;
  }

  .intro-paper,
  .home-note {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    min-height: 195px;
    transform: rotate(var(--rotation, 0deg));
    max-width: none;
    border-radius: 0;
    clip-path: none;
  }

  .intro-paper {
    min-height: auto;
    margin: 0 30px 7px;
    clip-path: polygon(0 5%, 6% 1%, 14% 5%, 23% 0, 34% 4%, 46% 1%, 57% 5%, 68% 0, 79% 4%, 90% 1%, 100% 5%, 98% 94%, 90% 99%, 79% 95%, 67% 100%, 55% 96%, 43% 99%, 31% 95%, 19% 100%, 8% 96%, 1% 99%);
  }

  .home-note-coaching {
    min-height: 235px;
    margin: 0 60px;
  }

  .home-note-shop {
    min-height: 195px;
    flex-flow: column nowrap;
    gap: 0;
  }

  .home-note .note-label {
    font-size: 36px;
  }

  .home-note-coaching .note-label {
    font-size: 48px;
  }

  .coaching-hero {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .coaching-hero-postit {
    width: min(420px, 88%);
    min-height: 260px;
    margin: 0 auto;
  }

  .three-notes {
    grid-template-columns: 1fr;
  }

  .paper-note {
    min-height: auto;
  }

  .paper-note-how {
    grid-column: auto;
    width: 100%;
  }

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

  .tools-note {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 31px;
  }

  .principles-heading {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .principles-method {
    margin-right: 0;
    margin-left: 12px;
  }

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

  .about-wrap,
  .booking-wrap {
    grid-template-columns: 1fr;
  }

  .about-collage {
    min-height: 325px;
  }

  .about-note {
    left: 50%;
    transform: translateX(-50%) rotate(-1.6deg);
  }

  .mini-note-blue { right: 5%; }

  .booking-collage {
    position: static;
  }

  .booking-collage .title-note {
    width: min(380px, 80%);
    min-height: 300px;
    margin: 0 auto;
  }

  .booking-aside {
    width: min(390px, 84%);
  }

  .testimonials-heading,
  .shop-hero {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .testimonials-heading .title-note,
  .shop-hero .title-note {
    width: min(390px, 80%);
    margin: 0 auto;
  }

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

  .product-visual {
    min-height: 360px;
  }

  .book-mockup {
    transform: perspective(850px) rotateY(-8deg) rotateZ(-2deg) scale(.9);
  }

  .oracle-stack {
    transform: scale(.86);
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-brand { grid-column: auto; }

  .footer-contact-wrap {
    width: min(100%, 380px);
    justify-self: center;
  }

  .modal-card {
    grid-template-columns: 1fr;
  }

  .modal-product-visual {
    min-height: 560px;
  }

  .modal-product-visual .book-mockup,
  .modal-product-visual .oracle-stack {
    transform: scale(.78);
  }

  .book-reader-sheet {
    height: min(68vh, 600px);
  }
}

/* Mobile */

@media (max-width: 560px) {
  :root { --header-height: 80px; }

  .site-header {
    padding: 6px 16px;
  }

  .legal-page-wrap {
    width: min(100% - 24px, 520px);
  }

  .legal-switcher {
    width: 100%;
    display: grid;
    margin-bottom: 36px;
  }

  .legal-switcher a {
    width: 100%;
    padding: 10px 12px;
    text-align: center;
  }

  .legal-hero {
    gap: 30px;
    margin-bottom: 43px;
    padding: 0 4px;
  }

  .legal-title-note {
    width: 94%;
    min-height: 190px;
    padding: 31px 25px;
  }

  .legal-title-note h1 {
    font-size: clamp(29px, 10vw, 39px);
  }

  .legal-hero-copy > p:last-child {
    font-size: 18px;
  }

  .legal-document {
    padding: 43px 21px 35px;
    background-size: 29px 29px;
  }

  .legal-section {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 30px 0;
  }

  .legal-number {
    width: 39px;
    height: 39px;
    font-size: 11px;
  }

  .legal-section h2 {
    font-size: 24px;
  }

  .legal-section p,
  .legal-section li,
  .legal-section dd,
  .legal-section dt {
    font-size: 15px;
    line-height: 1.63;
  }

  .legal-details > div {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .legal-details dt {
    font-size: 12px;
    letter-spacing: .05em;
    text-transform: uppercase;
  }

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

  .legal-purpose-grid > div {
    min-height: auto;
  }

  .legal-callout {
    padding: 18px;
  }

  .legal-withdrawal-form blockquote {
    padding: 20px;
  }

  .brand img { width: 126px; }
  .menu-button > span:first-child { display: none; }

  .home-board {
    width: min(100% - 28px, 430px);
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "coaching"
      "about"
      "testimonials"
      "shop"
      "booking";
    gap: 20px;
    padding-top: 28px;
  }

  .intro-paper,
  .home-note,
  .home-note-coaching {
    width: 92%;
    margin: 0 auto;
  }

  .intro-paper {
    padding: 21px 18px;
  }

  .intro-paper strong { font-size: 22px; }

  .home-note {
    min-height: 158px;
  }

  .home-note-coaching {
    min-height: 205px;
  }

  .home-note .note-label { font-size: 34px; }
  .home-note-coaching .note-label { font-size: 43px; }

  .page-wrap {
    width: min(100% - 28px, 480px);
    padding: 36px 0 60px;
  }

  .hero-copy h1 { font-size: 56px; }

  .coaching-hero-postit {
    width: 92%;
    min-height: 215px;
  }

  .coaching-hero-postit strong {
    font-size: 45px;
  }

  .coaching-steps {
    grid-template-columns: 1fr;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button,
  .button-row .text-link,
  .button-row .text-button {
    width: 100%;
    text-align: center;
  }

  .method-section {
    margin: 0;
    padding: 42px 17px;
  }

  .rooms,
  .offer-grid,
  .testimonial-grid,
  .product-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .rooms {
    grid-template-areas: none;
  }

  .room-entrance,
  .room-living,
  .room-studio,
  .room-bedroom,
  .room-rooftop {
    grid-area: auto;
    margin: 0;
  }

  .room-card {
    min-height: 180px;
  }

  .room-detail {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 24px;
  }

  .room-detail-number {
    text-align: left;
  }

  .offer-card {
    min-height: 285px;
  }

  .about-collage {
    min-height: 305px;
  }

  .about-note {
    left: 50%;
    width: 264px;
    height: 285px;
    font-size: 46px;
    transform: translateX(-50%) rotate(-1.6deg);
  }

  .mini-note-blue {
    right: 0;
    bottom: 15%;
  }

  .mini-note-yellow {
    left: 0;
  }

  .about-copy,
  .booking-panel {
    padding: 30px 23px;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-portrait {
    width: 180px;
    height: 180px;
    margin: 2px auto 22px;
  }

  .coaching-principles {
    padding: 30px 23px;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .principles-grid article {
    padding: 23px 0;
  }

  .principles-grid article + article {
    padding: 23px 0;
    border-top: 1px solid rgba(23, 49, 10, .20);
    border-left: 0;
  }

  .principles-method {
    margin: 24px 0 0;
    padding: 22px 20px;
  }

  .about-copy blockquote {
    margin-left: 0;
    margin-right: 0;
  }

  .testimonials-heading .title-note,
  .shop-hero .title-note,
  .booking-collage .title-note {
    width: 92%;
  }

  .testimonial-card {
    min-height: 260px;
  }

  .product-visual {
    min-height: 365px;
  }

  .stripe-note {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .booking-option > span {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .booking-options {
    grid-template-columns: 1fr;
  }

  .cal-booking-area {
    min-height: 760px;
    margin-right: -12px;
    margin-left: -12px;
  }

  .booking-option small { text-align: left; }

  .booking-result {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 27px;
    padding: 38px 24px 22px;
  }

  .footer-brand { grid-column: auto; }

  .footer-contact-wrap {
    width: min(100%, 360px);
    justify-self: center;
  }

  .footer-contact {
    gap: 16px;
    padding: 39px 22px 25px;
  }

  .footer-contact a {
    grid-template-columns: 27px minmax(0, 1fr);
    gap: 10px;
    font-size: 13px;
  }

  .copyright { text-align: center; }

  .modal {
    padding: 10px;
  }

  .modal-card {
    max-height: calc(100vh - 20px);
  }

  .modal-product-visual {
    min-height: 485px;
    padding: 20px 16px;
  }

  .book-reader {
    gap: 12px;
  }

  .book-reader-sheet {
    height: min(66vh, 500px);
  }

  .modal-product-copy {
    padding: 40px 24px 28px;
  }

  .modal-product-copy h2 {
    font-size: 33px;
  }

  .modal-close {
    right: 8px;
    top: 7px;
  }
}

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

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


/* Identité Laura Mad : uniquement les visuels et leurs dimensions. */
.brand img {
  width: clamp(190px, 17vw, 245px);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}
.footer-brand img {
  width: min(220px, 100%);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}
.mad-about-art {
  display: block;
  width: min(100%, 590px);
  height: auto;
  margin: 0 0 20px;
}
.coaching-hero .coaching-about-title {
  margin: 10px 0 22px;
  line-height: 1;
}
.coaching-about-title .mad-about-art { margin: 0; }
.about-copy > .mad-about-art { width: min(100%, 560px); margin-bottom: 32px; }
.testimonials-heading .mad-about-art,
.shop-hero .mad-about-art { width: min(100%, 590px); margin-bottom: 23px; }
.booking-panel > .mad-about-art { width: min(100%, 540px); margin-bottom: 20px; }
@media (max-width: 600px) {
  .brand img { width: clamp(165px, 44vw, 220px); }
  .mad-about-art { width: 100%; }
}
