/* GLØ: dark surfaces, real architecture, quiet typography. */
:root {
  color-scheme: dark;
  --ink: #22211f;
  --deep: #1c1b19;
  --surface: #292723;
  --text: #f2f0eb;
  --muted: #c4bcb0;
  --sand: #c9ba9e;
  --line: rgba(201, 186, 158, 0.22);
  --gutter: clamp(24px, 5.5vw, 88px);
  --display: "Tenor Sans", sans-serif;
  --body: "Manrope", sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  background: var(--ink);
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(44px, 6vw, 80px);
}
h2 {
  font-size: clamp(34px, 4vw, 54px);
}
h3 {
  font-size: 28px;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  border-radius: 0;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
address {
  font-style: normal;
}
::selection {
  background: var(--sand);
  color: var(--ink);
}
:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 6px;
}
[hidden] {
  display: none !important;
}
html:lang(fr) [lang="en"],
html:lang(en) [lang="fr"] {
  display: none !important;
}
html:lang(en) [lang="en"].hidden,
html:lang(fr) [lang="fr"].hidden {
  display: revert !important;
}
.wrap {
  width: min(100% - var(--gutter) * 2, 1280px);
  margin-inline: auto;
}
.section {
  padding-block: clamp(56px, 7vw, 104px);
}
.eyebrow {
  font: 500 11px/1.5 var(--body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
}
.lead {
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.75;
  max-width: 590px;
}
.small {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.text-link {
  display: inline-block;
  min-height: 44px;
  font-size: 14px;
  line-height: 1.5;
  padding-block: 9px;
  text-decoration: underline;
  text-decoration-color: var(--sand);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.text-link:hover {
  color: var(--sand);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 28px;
  background: var(--sand);
  border: 1px solid var(--sand);
  border-radius: 4px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.button:hover {
  background: #d7c9b0;
  border-color: #d7c9b0;
}
.button--outline {
  background: transparent;
  color: var(--sand);
  border-color: var(--line);
}
.button--outline:hover {
  background: var(--surface);
  border-color: var(--sand);
}
.actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}
.section-heading h2 {
  margin-top: 14px;
}
.section-heading .lead {
  max-width: 350px;
}
.photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-frame {
  overflow: hidden;
  background: var(--deep);
}
.photo-frame img {
  transition: transform 0.6s ease;
}
.photo-caption {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 110;
  background: var(--sand);
  color: var(--ink);
  padding: 12px 20px;
}
.skip-link:focus {
  top: 16px;
}
/* A single, predictable navigation. */
.site-header {
  height: 92px;
  padding-inline: var(--gutter);
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  transition:
    background 0.25s,
    border-color 0.25s;
}
.home-page .site-header:not(.is-scrolled) {
  background: transparent;
  border-color: transparent;
}
.home-page .site-header:not(.is-scrolled) .desktop-nav a,
.home-page .site-header:not(.is-scrolled) .language-controls button {
  color: var(--text);
}
.site-logo {
  display: inline-flex;
  flex: none;
}
.site-logo img {
  width: 156px;
  height: auto;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.desktop-nav a {
  font-size: 13px;
  color: var(--muted);
  padding-block: 12px;
}
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--text);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-book {
  font-size: 13px;
  white-space: nowrap;
  padding-block: 10px;
  border-bottom: 1px solid var(--sand);
}
.header-book:hover {
  color: var(--sand);
}
.home-page.hero-cta-visible .header-book {
  visibility: hidden;
  pointer-events: none;
}
.language-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
}
.language-controls button {
  min-height: 44px;
  min-width: 32px;
  padding: 0;
  background: none;
  border: 0;
  color: var(--muted);
}
.language-controls button[aria-pressed="true"] {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.language-controls > span {
  opacity: 0.4;
}
.menu-toggle,
.menu-close {
  width: 44px;
  height: 44px;
  display: none;
  position: relative;
  padding: 10px;
  border: 0;
  background: transparent;
  flex: none;
}
.menu-toggle span,
.menu-close span {
  display: block;
  position: absolute;
  width: 24px;
  height: 1px;
  background: var(--text);
  left: 10px;
  top: 17px;
}
.menu-toggle span + span {
  top: 26px;
}
.menu-close {
  display: block;
}
.menu-close span {
  top: 21px;
  transform: rotate(45deg);
}
.menu-close span + span {
  transform: rotate(-45deg);
}
.site-menu {
  position: fixed;
  inset: 0;
  margin: 0;
  border: 0;
  padding: 0;
  width: 100%;
  max-width: none;
  height: 100dvh;
  max-height: none;
  background: var(--ink);
  color: var(--text);
  overflow: auto;
}
.site-menu::backdrop {
  background: var(--ink);
}
.menu-top {
  height: 84px;
  padding: 0 20px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.menu-content {
  padding: 34px 24px 28px;
  max-width: 600px;
  margin: auto;
}
.menu-links {
  display: grid;
  margin-top: 18px;
}
.menu-links > a {
  font-family: var(--display);
  font-size: clamp(28px, 7.5vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.menu-founder {
  margin: 22px 0 24px;
  font-size: 13px;
  border-bottom: none;
}
.menu-content > .button {
  display: flex;
  width: 100%;
}
.menu-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
}
/* Home: seated sauna portrait; desktop leaves quiet space for the headline. */
.home-hero {
  isolation: isolate;
  position: relative;
  min-height: 680px;
  height: 100svh;
  max-height: 1080px;
  display: flex;
  align-items: flex-end;
  background: var(--deep);
}
.hero-picture {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) brightness(0.95);
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 18, 16, 0.44), transparent 28%),
    linear-gradient(
      0deg,
      rgba(22, 20, 18, 0.94) 0%,
      rgba(22, 20, 18, 0.62) 30%,
      rgba(22, 20, 18, 0.12) 63%,
      transparent 80%
    );
}
.hero-inner {
  padding-block: 150px 64px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}
.hero-copy {
  max-width: 660px;
}
.hero-copy h1 {
  font-size: clamp(64px, 7.5vw, 108px);
  line-height: 1.01;
  letter-spacing: -0.055em;
  margin: 19px 0 22px;
}
.hero-copy > .lead {
  color: #e8e2d8;
  max-width: 490px;
  font-size: 17px;
  line-height: 1.65;
}
.hero-copy .button {
  min-width: 224px;
  margin-top: 26px;
}
.hero-support {
  color: #e4dbcd;
  font-size: 12px;
  margin-top: 12px;
}
.hero-scroll {
  font-size: 12px;
  color: #eee7dc;
  display: flex;
  gap: 22px;
  align-items: center;
  white-space: nowrap;
  padding-bottom: 5px;
}
.hero-scroll span[aria-hidden] {
  font-size: 21px;
}
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.experience-link {
  display: block;
}
.experience-link .photo-frame {
  aspect-ratio: 1.48;
}
.experience-link .photo--contraste {
  object-position: 50% 35%;
}
.experience-link .photo--red {
  object-position: 50% 25%;
}
.experience-title {
  margin: 21px 0 8px;
}
.experience-title h3 {
  font-size: clamp(29px, 3vw, 40px);
  text-decoration: underline;
  text-decoration-color: var(--sand);
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
.experience-link .modality {
  color: var(--sand);
  font-size: 13px;
  margin-bottom: 8px;
}
.experience-link .benefit {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 480px;
}
.experience-link:hover .photo {
  transform: scale(1.025);
}
.experience-link:hover .experience-title {
  color: var(--sand);
}
.inclusions-line {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 26px;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.inclusions-line .text-link {
  flex: none;
  padding: 0;
}
.first-visit,
.founder-benefits {
  background:
    linear-gradient(rgba(26, 32, 26, 0.84), rgba(26, 32, 26, 0.9)),
    url("/assets/responsive/banner-2-1920.webp") center / cover,
    #374037;
}
.first-visit {
  border-block: 1px solid var(--sand);
}
.first-visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.first-visit h2 {
  margin: 14px 0 16px;
}
.first-visit .lead {
  max-width: 390px;
}
.rate-list {
  list-style: none;
}
.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 19px 0;
  border-top: 1px solid var(--line);
}
.rate-list > li:last-child .rate-row {
  border-bottom: 1px solid var(--line);
}
.rate-name {
  font-size: 17px;
  font-weight: 500;
}
.rate-detail {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.rate-amount {
  font-family: var(--display);
  font-size: 38px;
  line-height: 1.15;
  white-space: nowrap;
  letter-spacing: -0.04em;
}
.rate-amount small {
  display: block;
  font: 11px/1.6 var(--body);
  color: var(--muted);
  letter-spacing: 0;
  margin-top: 3px;
}
.rate-note {
  font-size: 12px;
  color: var(--muted);
  margin: 14px 0 20px;
}
.first-visit .button {
  width: 100%;
}
.first-visit .text-link {
  margin-top: 16px;
}
.founder-invitation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.founder-invitation .photo-frame {
  aspect-ratio: 1.14;
}
.founder-invitation .photo {
  object-position: 50% 35%;
}
.founder-invitation h2 {
  margin: 17px 0 20px;
}
.founder-invitation .lead {
  font-size: 16px;
  max-width: 430px;
}
.founder-invitation .text-link {
  margin-top: 20px;
}
.faq-section {
  background: var(--deep);
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}
.faq-layout h2 {
  margin: 14px 0 20px;
}
.faq-layout .text-link {
  margin-top: 10px;
}
.accordion {
  border-top: 1px solid var(--line);
}
.accordion:last-child {
  border-bottom: 1px solid var(--line);
}
.accordion summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 20px 0;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.55;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary::after {
  content: "+";
  font: 24px var(--display);
  color: var(--sand);
  flex: none;
}
.accordion[open] summary::after {
  content: "−";
}
.accordion-body {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  padding: 0 28px 22px 0;
}
.accordion-body p + p {
  margin-top: 14px;
}
.accordion-body a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-block: 36px;
  border-bottom: 1px solid var(--line);
}
.newsletter h2 {
  font: 24px/1.25 var(--display);
}
.newsletter p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}
.newsletter > div:last-child {
  width: min(100%, 410px);
}
.newsletter form {
  display: flex;
  width: min(100%, 410px);
  border-bottom: 1px solid var(--sand);
  gap: 12px;
}
.newsletter label {
  flex: 1;
  min-width: 0;
}
.newsletter input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 14px 0;
  outline-offset: 2px;
  font-size: 14px;
}
.newsletter input::placeholder {
  color: var(--muted);
}
.newsletter button {
  min-height: 48px;
  flex: none;
  padding: 12px 0 12px 12px;
  background: none;
  border: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--sand);
}
.newsletter button:hover {
  color: var(--text);
}
.form-message {
  font-size: 13px;
  color: var(--muted);
  max-width: 420px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Interior pages use the same visual language, with natural content height. */
.page-intro {
  padding-block: 156px 52px;
}
.page-intro h1 {
  margin: 18px 0 24px;
  max-width: 800px;
}
.page-intro .lead {
  max-width: 680px;
}
.page-intro--compact {
  padding-bottom: 40px;
}
.jump-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 25px;
  font-size: 14px;
  color: var(--sand);
}
.jump-links a {
  border-bottom: 1px solid var(--line);
  padding-block: 7px;
}
.experience-detail {
  padding-block: 72px;
  border-top: 1px solid var(--line);
}
.experience-detail-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 80px;
  align-items: center;
}
.experience-detail .photo-frame {
  aspect-ratio: 4/5;
}
.experience-detail .photo--contraste {
  object-position: 50% 30%;
}
.experience-detail .photo--red {
  object-position: 50% 30%;
}
.experience-detail h2 {
  font-size: clamp(42px, 5vw, 66px);
  margin: 15px 0 17px;
}
.experience-detail .modality {
  font-size: 14px;
  color: var(--sand);
  margin-bottom: 20px;
}
.experience-detail .lead {
  font-size: 16px;
}
.benefit-list {
  list-style: none;
  margin-top: 24px;
}
.benefit-list li {
  padding: 13px 0 13px 22px;
  position: relative;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}
.benefit-list li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--sand);
  position: absolute;
  top: 24px;
  left: 0;
  border-radius: 50%;
}
.research-link {
  font-size: 12px;
  color: var(--sand);
  display: inline-block;
  margin-top: 15px;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.experience-detail--reverse .photo-frame {
  order: 2;
}
.shared-inclusions {
  background: var(--deep);
}
.shared-inclusions .section-heading {
  max-width: 750px;
}
.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.inclusions-grid h3 {
  margin: 0 0 16px;
  font-size: 27px;
}
.inclusions-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.inclusions-grid .text-link {
  margin-top: 16px;
}
.closing-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-block: 54px;
}
.closing-strip h2 {
  font-size: clamp(30px, 3.2vw, 44px);
}
.closing-strip .small {
  margin-top: 12px;
}
.pricing-masthead {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 440px;
  padding-top: 92px;
}
.pricing-masthead-copy {
  padding: 70px var(--gutter) 55px
    max(var(--gutter), calc((100vw - 1280px) / 2));
  align-self: center;
}
.pricing-masthead h1 {
  font-size: clamp(48px, 5vw, 74px);
  margin: 17px 0 23px;
}
.pricing-masthead .lead {
  font-size: 16px;
  max-width: 430px;
}
.pricing-masthead .photo-frame {
  position: relative;
  min-height: 348px;
}
.pricing-masthead .photo-frame .photo {
  position: absolute;
  inset: 0;
}
.pricing-masthead .photo {
  object-position: 50% 73%;
}
[data-page="tarifs"] .pricing-masthead {
  position: relative;
  isolation: isolate;
  grid-template-columns: 1fr;
  min-height: 560px;
}
[data-page="tarifs"] .pricing-masthead > .photo-frame {
  position: absolute;
  inset: 0;
  z-index: -1;
  height: 100%;
  min-height: 0;
}
[data-page="tarifs"] .pricing-masthead > .photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28, 27, 25, 0.88) 0%, rgba(28, 27, 25, 0.72) 75%, rgba(28, 27, 25, 0.35) 100%);
}
[data-page="tarifs"] .pricing-masthead .lead {
  color: var(--text);
}
[data-page="tarifs"] .pricing-masthead-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.pricing-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}
.pricing-column h2 {
  font-size: 34px;
  margin-bottom: 10px;
}
.pricing-column > .small {
  margin-bottom: 26px;
}
.pricing-column .rate-row {
  padding-block: 24px;
}
.pricing-column .button {
  width: 100%;
}
.pricing-related {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border-top: 1px solid var(--line);
  padding: 35px 0 50px;
}
.pricing-related h2 {
  font-size: 30px;
  margin-bottom: 8px;
}
.pricing-related p {
  font-size: 14px;
  color: var(--muted);
}
.founder-masthead .photo {
  object-position: 50% 32%;
}
.founder-plans {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 100px;
  align-items: start;
}
.founder-plans h2 {
  font-size: 35px;
  margin-bottom: 10px;
}
.founder-plans .rate-row {
  padding: 23px 0;
  transition: color 0.2s;
}
.founder-plans a.rate-row:hover {
  color: var(--sand);
}
.rate-end {
  display: flex;
  align-items: center;
  gap: 26px;
}
.rate-action {
  font-size: 13px;
  color: var(--sand);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.founder-benefits {
  padding: 36px;
  border: 1px solid var(--sand);
}
.founder-benefits h2 {
  font-size: 29px;
  line-height: 1.2;
}
.founder-benefits .benefit-list li {
  padding-block: 19px;
  font-size: 14px;
}
.founder-benefits .benefit-list li::before {
  top: 30px;
}
.founder-benefits .small {
  margin-top: 14px;
}
.founder-terms {
  margin-top: 26px;
}
.founder-terms summary {
  font-size: 14px;
}
.founder-plans .rate-note {
  margin-bottom: 0;
}
.studio-hero {
  padding-top: 92px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.studio-hero-copy {
  padding: 64px var(--gutter) 64px
    max(var(--gutter), calc((100vw - 1280px) / 2));
  align-self: center;
}
.studio-hero h1 {
  font-size: clamp(44px, 5.2vw, 75px);
  margin: 18px 0 28px;
}
.studio-hero .lead {
  font-size: 16px;
}
.studio-hero .photo-frame {
  aspect-ratio: 4/3;
  align-self: center;
}
.studio-hero .photo {
  object-position: 50% 38%;
}
.studio-hero .photo,
.studio-suite-views .photo,
.studio-gallery .photo,
.contact-photo .photo {
  filter: saturate(0.84) brightness(0.93) contrast(1.025);
}
.studio-suites {
  padding-top: clamp(56px, 7vw, 104px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.studio-suites .section-heading {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
  gap: 24px;
}
.studio-suites .section-heading h2 {
  margin-top: 0;
}
.studio-suite-views .photo-frame {
  aspect-ratio: 4/5;
}
.studio-suite-views .photo {
  object-position: center;
  filter: none;
}
.studio-story {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: start;
}
.studio-story h2 {
  max-width: 440px;
}
.studio-story p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
}
.studio-story p + p {
  margin-top: 22px;
}
.studio-gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  padding-bottom: 80px;
  align-items: start;
}
.studio-gallery .photo-frame {
  aspect-ratio: 1.3;
}
.studio-gallery .photo {
  object-position: center;
}
.studio-gallery .studio-towel {
  object-position: center 73%;
  filter: none;
}
.studio-gallery .studio-red-light {
  object-position: center 45%;
  filter: saturate(0.82) brightness(0.9);
}
.studio-gallery figure + figure {
  margin-top: 100px;
}
.studio-gallery figure + figure .photo-frame {
  aspect-ratio: 4/5;
}
.studio-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  padding-block: 45px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.studio-values h3 {
  font-size: 26px;
  margin-bottom: 14px;
}
.studio-values p {
  font-size: 14px;
  color: var(--muted);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
  padding-bottom: 80px;
}
.contact-photo {
  aspect-ratio: 1.2;
  margin-bottom: 28px;
}
.contact-photo .photo {
  object-position: center;
}
.contact-map {
  height: 360px;
  margin-bottom: 80px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--deep);
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-block {
  border-top: 1px solid var(--line);
  padding-block: 23px;
}
.contact-block h2,
.contact-block h3 {
  font: 500 11px/1.5 var(--body);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 13px;
}
.contact-value {
  font: clamp(23px, 2.5vw, 32px) / 1.3 var(--display);
  letter-spacing: -0.02em;
}
.contact-block p,
.contact-block address {
  color: var(--muted);
  font-size: 14px;
}
.contact-block .small {
  margin-top: 10px;
}
.contact-block .button {
  margin-top: 24px;
}
.contact-links {
  display: grid;
  gap: 10px;
}
.booking-intro {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  align-items: end;
}
.booking-help {
  font-size: 14px;
  color: var(--muted);
  padding-bottom: 6px;
}
.booking-help a {
  color: var(--sand);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.booking-frame {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  min-height: 350px;
  margin-bottom: 24px;
}
.booking-fallback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 55px;
}
.booking-fallback .small {
  max-width: 540px;
}
.mindbody-widget iframe {
  max-width: 100%;
}
.booking-phase {
  border-left: 2px solid var(--sand);
  padding: 3px 0 3px 20px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 26px;
  max-width: 760px;
}
.booking-phase strong {
  color: var(--text);
  font-weight: 500;
}
/* Research pages remain readable and connected to the experiences. */
.service-container {
  width: min(100% - var(--gutter) * 2, 900px);
  margin-inline: auto;
}
.service-intro {
  padding-block: 148px 40px;
}
.service-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 35px;
}
.service-breadcrumbs li + li::before {
  content: "/";
  margin-right: 10px;
  opacity: 0.45;
}
.service-intro h1 {
  font-size: clamp(42px, 5.5vw, 70px);
  margin: 18px 0 24px;
}
.service-lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
}
.service-meta {
  color: var(--sand);
  font-size: 12px;
  margin: 20px 0;
}
.service-figure {
  height: 440px;
  overflow: hidden;
  margin-bottom: 16px;
}
.service-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}
[data-page="lumiere-rouge-terrebonne"] .service-figure img {
  object-position: 50% 22%;
}
[data-page="bain-froid-terrebonne"] .service-figure img {
  object-position: 20% 40%;
}
.service-section {
  padding-block: 38px;
}
.service-section + .service-section > .service-container {
  border-top: 1px solid var(--line);
  padding-top: 35px;
}
.service-section h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 23px;
  max-width: 800px;
}
.service-section h3 {
  font-size: 26px;
  margin-bottom: 12px;
}
.service-section p {
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.85;
}
.service-section a:not(.button) {
  color: var(--sand);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.service-benefits {
  list-style: none;
  margin: 20px 0;
}
.service-benefits li {
  border-top: 1px solid var(--line);
  padding: 14px 0;
  color: var(--text);
  font-size: 15px;
}
.service-section .service-evidence {
  font-size: 13px;
  line-height: 1.8;
}
.service-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 26px;
}
.service-related {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  padding-block: 28px 60px;
  font-size: 13px;
  color: var(--sand);
}
/* Footer and a non-modal, compact consent surface. */
.site-footer {
  border-top: 1px solid var(--line);
  padding-top: 55px;
  background: var(--deep);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 70px;
  padding-bottom: 45px;
}
.footer-brand .site-logo img {
  width: 158px;
}
.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 20px 0 13px;
}
.footer-brand .text-link {
  font-size: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 13px;
  align-items: flex-start;
}
.footer-nav a:hover,
.footer-address > a:hover,
.footer-bottom a:hover {
  color: var(--sand);
}
.footer-address address {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin: 17px 0;
}
.footer-address > a {
  display: block;
  font-size: 13px;
  line-height: 1.9;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-block: 22px;
  font-size: 11px;
  color: var(--muted);
}
.footer-bottom nav {
  display: flex;
  gap: 22px;
}
.cookie-banner {
  position: fixed;
  z-index: 60;
  inset: auto 24px 24px auto;
  width: min(560px, 100% - 48px);
  padding: 22px 26px;
  background: #292723;
  border: 1px solid rgba(201, 186, 158, 0.35);
  box-shadow: 0 12px 45px #0005;
}
.cookie-copy h2 {
  font: 400 22px/1.3 var(--display);
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.cookie-copy p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}
.cookie-copy a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.cookie-actions button {
  flex: 1;
  min-height: 44px;
  font-size: 12px;
  font-weight: 500;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--sand);
}
.cookie-actions button:hover {
  background: var(--sand);
  color: var(--ink);
}
.legal-main {
  width: min(100% - var(--gutter) * 2, 860px);
  margin: 0 auto;
  padding: 150px 0 70px;
}
.legal-main h1 {
  font-size: clamp(38px, 5vw, 58px);
}
.legal-main h2 {
  font-size: 27px;
  margin: 36px 0 17px;
}
.legal-main h3 {
  font-size: 21px;
  margin: 26px 0 13px;
}
.legal-main p {
  margin-bottom: 16px;
  color: var(--muted);
}
.legal-main ul,
.legal-main ol {
  padding-left: 22px;
  color: var(--muted);
  margin-bottom: 22px;
}
.legal-main li {
  margin-bottom: 9px;
}
.legal-main a {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--sand);
}
.legal-main table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
  display: block;
  overflow-x: auto;
  margin: 22px 0;
}
.legal-main td,
.legal-main th {
  border: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  min-width: 115px;
}
.legal-main header {
  margin-bottom: 45px;
}
@media (min-width: 901px) {
  [data-page="tarifs"] .pricing-masthead > .photo-frame .photo {
    left: auto;
    width: 60%;
  }
  [data-page="tarifs"] .pricing-masthead > .photo-frame::after {
    background:
      linear-gradient(
        90deg,
        var(--deep) 40%,
        rgba(28, 27, 25, 0.92) 44%,
        rgba(28, 27, 25, 0.4) 54%,
        transparent 68%
      ),
      linear-gradient(180deg, rgba(20, 18, 16, 0.36), transparent 24%);
  }
  .hero-picture {
    left: auto;
    width: 60%;
  }
  .hero-picture img {
    object-position: center top;
  }
  .home-hero::before {
    background:
      linear-gradient(
        90deg,
        var(--deep) 40%,
        rgba(28, 27, 25, 0.92) 44%,
        rgba(28, 27, 25, 0.4) 54%,
        transparent 68%
      ),
      linear-gradient(
        0deg,
        rgba(28, 27, 25, 0.82),
        rgba(28, 27, 25, 0.1) 55%,
        transparent 75%
      ),
      linear-gradient(180deg, rgba(20, 18, 16, 0.36), transparent 24%);
  }
  .hero-copy {
    max-width: 560px;
  }
  .hero-copy > .lead {
    max-width: 430px;
  }
}
@media (min-width: 1600px) {
  .hero-inner {
    padding-bottom: 88px;
  }
}
@media (max-width: 1100px) {
  .desktop-nav {
    gap: 20px;
  }
  .header-actions {
    gap: 20px;
  }
  .site-header {
    gap: 24px;
  }
  .experience-detail-grid,
  .founder-invitation,
  .first-visit-inner,
  .pricing-columns,
  .founder-plans,
  .studio-story,
  .contact-grid {
    gap: 48px;
  }
  .footer-grid {
    gap: 35px;
  }
  .hero-scroll {
    display: none;
  }
}
@media (max-width: 900px) {
  .first-visit,
  .founder-benefits {
    background-image:
      linear-gradient(rgba(26, 32, 26, 0.84), rgba(26, 32, 26, 0.9)),
      url("/assets/responsive/banner-2-960.webp");
  }
  .header-language {
    display: none;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .site-header {
    height: 84px;
    padding-inline: 24px 20px;
  }
  .site-logo img {
    width: 136px;
  }
  .header-actions {
    gap: 16px;
  }
  .home-hero {
    min-height: 700px;
  }
  .hero-picture img {
    object-position: center;
  }
  .home-hero::before {
    background:
      linear-gradient(180deg, rgba(22, 20, 18, 0.32), transparent 23%),
      linear-gradient(
        0deg,
        rgba(22, 20, 18, 0.96) 0%,
        rgba(22, 20, 18, 0.82) 25%,
        rgba(22, 20, 18, 0.65) 45%,
        transparent 70%
      );
  }
  .hero-inner {
    padding-bottom: 40px;
  }
  .hero-copy h1 {
    font-size: 72px;
  }
  .experience-grid {
    gap: 28px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .section-heading .lead {
    max-width: 560px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pricing-masthead {
    padding-top: 84px;
  }
  .pricing-masthead-copy {
    padding-top: 48px;
    padding-bottom: 40px;
  }
  .pricing-columns {
    gap: 44px;
  }
  .founder-plans {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .founder-benefits {
    max-width: 650px;
  }
  .studio-hero {
    padding-top: 84px;
  }
  .studio-hero-copy {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .booking-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .page-intro {
    padding-top: 132px;
  }
  .inclusions-grid {
    gap: 40px;
  }
  .experience-detail-grid {
    gap: 40px;
  }
  .experience-detail h2 {
    font-size: 48px;
  }
  .experience-detail .photo-frame {
    aspect-ratio: 3/5;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
  }
  .footer-brand p {
    margin: 0;
  }
  .footer-brand .text-link {
    margin: 0;
  }
  .studio-story {
    gap: 45px;
  }
  .studio-suites {
    gap: 40px;
  }
  .studio-values {
    gap: 28px;
  }
}
@media (max-width: 600px) {
  :root {
    --gutter: 24px;
  }
  html {
    scroll-padding-top: 103px;
  }
  .site-header .site-logo img {
    width: 124px;
  }
  .header-book {
    font-size: 12px;
  }
  .header-actions {
    gap: 12px;
  }
  .home-hero {
    height: 100svh;
    min-height: 600px;
    max-height: 980px;
  }
  .hero-inner {
    padding: 150px 0 28px;
    width: calc(100% - 48px);
  }
  .hero-copy {
    width: 100%;
  }
  .hero-copy .eyebrow {
    font-size: 9px;
    letter-spacing: 0.14em;
  }
  .hero-copy h1 {
    font-size: clamp(53px, 14.5vw, 68px);
    line-height: 1.03;
    margin: 19px 0;
  }
  .hero-copy > .lead {
    font-size: 15px;
    line-height: 1.7;
    max-width: 340px;
  }
  .hero-copy .button {
    display: flex;
    width: 100%;
    min-width: 0;
    margin-top: 23px;
  }
  .hero-support {
    text-align: center;
    font-size: 11px;
  }
  .section {
    padding-block: 52px;
  }
  .section-heading {
    margin-bottom: 28px;
    gap: 15px;
  }
  .section-heading h2 {
    font-size: 36px;
    line-height: 1.12;
  }
  .section-heading .lead {
    font-size: 14px;
  }
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .experience-link .photo-frame {
    aspect-ratio: 1.5;
  }
  .experience-title {
    margin-top: 16px;
    margin-bottom: 7px;
  }
  .experience-title h3 {
    font-size: 30px;
  }
  .experience-link .modality {
    font-size: 12px;
    margin-bottom: 7px;
  }
  .experience-link .benefit {
    font-size: 13px;
    line-height: 1.75;
  }
  .inclusions-line {
    display: block;
    margin-top: 27px;
    padding-top: 20px;
    font-size: 12px;
  }
  .inclusions-line .text-link {
    font-size: 12px;
    margin-top: 17px;
    min-height: 36px;
  }
  .first-visit-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .first-visit h2 {
    font-size: 36px;
    margin-top: 12px;
  }
  .first-visit .lead {
    font-size: 14px;
    max-width: 330px;
  }
  .rate-row {
    padding-block: 17px;
  }
  .rate-amount {
    font-size: 35px;
  }
  .rate-name {
    font-size: 16px;
  }
  .rate-note {
    font-size: 11px;
  }
  .first-visit .text-link {
    font-size: 13px;
  }
  .founder-invitation {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .founder-invitation .photo-frame {
    aspect-ratio: 1.5;
  }
  .founder-invitation h2 {
    font-size: 36px;
    margin: 13px 0 16px;
  }
  .founder-invitation .lead {
    font-size: 14px;
  }
  .founder-invitation .text-link {
    margin-top: 15px;
  }
  .faq-layout {
    gap: 23px;
  }
  .faq-layout h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  .faq-layout .text-link {
    font-size: 13px;
  }
  .accordion summary {
    font-size: 14px;
    min-height: 67px;
    padding-block: 18px;
  }
  .accordion-body {
    font-size: 13px;
  }
  .newsletter {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding-block: 32px;
  }
  .newsletter h2 {
    font-size: 24px;
  }
  .newsletter p {
    font-size: 12px;
  }
  .newsletter form {
    width: 100%;
  }
  .page-intro {
    padding-block: 122px 36px;
  }
  .page-intro h1 {
    font-size: 44px;
    line-height: 1.09;
    margin: 16px 0 20px;
  }
  .page-intro .lead {
    font-size: 15px;
  }
  .jump-links {
    gap: 20px;
    font-size: 13px;
    margin-top: 20px;
  }
  .experience-detail {
    padding-block: 38px;
  }
  .experience-detail-grid {
    grid-template-columns: 1fr;
    gap: 29px;
  }
  .experience-detail .photo-frame {
    aspect-ratio: 1.08;
  }
  .experience-detail--reverse .photo-frame {
    order: 0;
  }
  .experience-detail h2 {
    font-size: 43px;
    margin-top: 12px;
  }
  .experience-detail .modality {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .experience-detail .lead {
    font-size: 14px;
  }
  .experience-detail .actions {
    margin-top: 22px;
    gap: 12px;
  }
  .experience-detail .button {
    flex: 1 1 100%;
    white-space: nowrap;
  }
  .experience-detail .actions > .text-link {
    min-height: 44px;
  }
  .benefit-list {
    margin-top: 20px;
  }
  .benefit-list li {
    font-size: 13px;
    line-height: 1.8;
  }
  .research-link {
    font-size: 12px;
    line-height: 1.7;
  }
  .inclusions-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .inclusions-grid h3 {
    font-size: 26px;
  }
  .inclusions-grid p {
    font-size: 14px;
  }
  .closing-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    padding-block: 40px;
  }
  .closing-strip .button {
    width: 100%;
  }
  .closing-strip h2 {
    font-size: 33px;
  }
  .pricing-masthead {
    grid-template-columns: 1fr;
  }
  .pricing-masthead-copy {
    padding: 38px 24px 32px;
  }
  .pricing-masthead h1 {
    font-size: 45px;
    margin: 14px 0 18px;
  }
  .pricing-masthead .lead {
    font-size: 14px;
  }
  .pricing-masthead .photo-frame {
    min-height: 0;
    height: 200px;
  }
  .pricing-masthead .photo {
    object-position: 50% 73%;
  }
  .founder-masthead .photo {
    object-position: 50% 32%;
  }
  .pricing-columns {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pricing-column h2 {
    font-size: 33px;
  }
  .pricing-column > .small {
    font-size: 13px;
    margin-bottom: 23px;
  }
  .pricing-column .rate-row {
    padding-block: 19px;
  }
  .pricing-related {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
    padding-block: 28px 38px;
  }
  .pricing-related h2 {
    font-size: 28px;
  }
  .pricing-related p {
    font-size: 13px;
  }
  .founder-plans {
    gap: 30px;
  }
  .founder-plans h2 {
    font-size: 31px;
  }
  .founder-plans .rate-row {
    padding-block: 20px;
  }
  .rate-end {
    gap: 15px;
  }
  .rate-action {
    font-size: 12px;
  }
  .founder-benefits {
    padding: 28px 24px;
  }
  .founder-benefits h2 {
    font-size: 28px;
  }
  .founder-benefits .benefit-list li {
    font-size: 13px;
  }
  .founder-masthead .photo-frame {
    height: 230px;
  }
  .studio-hero {
    grid-template-columns: 1fr;
  }
  .studio-hero-copy {
    padding: 38px 24px 36px;
  }
  .studio-hero h1 {
    font-size: 44px;
    line-height: 1.1;
    margin: 15px 0 22px;
  }
  .studio-hero .lead {
    font-size: 14px;
  }
  .studio-hero .photo-frame {
    margin-inline: 24px;
  }
  .studio-story {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .studio-suites {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .studio-story h2 {
    font-size: 35px;
  }
  .studio-story p {
    font-size: 14px;
  }
  .studio-story p + p {
    margin-top: 16px;
  }
  .studio-gallery {
    gap: 18px;
    padding-bottom: 46px;
    grid-template-columns: 1fr 1fr;
  }
  .studio-gallery .photo-frame {
    aspect-ratio: 3/4;
  }
  .studio-gallery figure + figure {
    margin-top: 65px;
  }
  .studio-gallery figure + figure .photo-frame {
    aspect-ratio: 3/4;
  }
  .photo-caption {
    font-size: 10px;
    line-height: 1.6;
  }
  .studio-values {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-block: 32px;
  }
  .studio-values h3 {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .studio-values p {
    font-size: 13px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 38px;
  }
  .contact-photo {
    aspect-ratio: 1.3;
    margin-bottom: 20px;
  }
  .contact-map {
    height: 300px;
    margin-bottom: 38px;
  }
  .contact-value {
    font-size: 29px;
  }
  .contact-block {
    padding-block: 23px;
  }
  .contact-block .button {
    width: 100%;
  }
  .booking-frame {
    padding: 12px;
    min-height: 300px;
    margin-bottom: 18px;
  }
  .booking-fallback {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
  .booking-fallback .button {
    width: 100%;
  }
  .booking-help {
    font-size: 13px;
  }
  .booking-phase {
    font-size: 13px;
    margin-bottom: 23px;
  }
  .service-intro {
    padding-block: 119px 30px;
  }
  .service-breadcrumbs ol {
    font-size: 10px;
    gap: 7px;
    margin-bottom: 24px;
  }
  .service-intro h1 {
    font-size: 41px;
    margin: 15px 0 20px;
  }
  .service-lead {
    font-size: 15px;
    line-height: 1.8;
  }
  .service-intro .button {
    width: 100%;
  }
  .service-meta {
    font-size: 11px;
    line-height: 1.8;
  }
  .service-figure {
    height: 280px;
  }
  .service-section {
    padding-block: 26px;
  }
  .service-section + .service-section > .service-container {
    padding-top: 26px;
  }
  .service-section h2 {
    font-size: 29px;
  }
  .service-section p {
    font-size: 14px;
  }
  .service-section .service-evidence {
    font-size: 12px;
  }
  .service-benefits li {
    font-size: 13px;
  }
  .service-choices {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-related {
    gap: 15px;
    font-size: 12px;
    padding-bottom: 40px;
  }
  .site-footer {
    padding-top: 36px;
  }
  .footer-grid {
    gap: 30px 20px;
    padding-bottom: 32px;
    grid-template-columns: 1fr 1.1fr;
  }
  .footer-brand {
    display: block;
  }
  .footer-brand .site-logo img {
    width: 140px;
  }
  .footer-brand p {
    font-size: 13px;
    margin: 16px 0 9px;
  }
  .footer-brand .text-link {
    font-size: 12px;
  }
  .footer-nav {
    font-size: 12px;
    gap: 13px;
  }
  .footer-address .eyebrow {
    font-size: 9px;
    letter-spacing: 0.1em;
  }
  .footer-address address {
    font-size: 11px;
    margin: 13px 0;
    line-height: 1.8;
  }
  .footer-address > a {
    font-size: 12px;
    line-height: 2;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    font-size: 10px;
    padding-block: 20px;
  }
  .footer-bottom nav {
    gap: 24px;
    font-size: 11px;
  }
  .cookie-banner {
    inset: auto 12px 12px;
    width: calc(100% - 24px);
    padding: 18px 20px;
  }
  .cookie-copy h2 {
    font-size: 20px;
  }
  .cookie-copy p {
    font-size: 11px;
  }
  .cookie-actions {
    margin-top: 13px;
    gap: 10px;
  }
  .cookie-actions button {
    font-size: 12px;
  }
  .legal-main {
    padding-block: 123px 45px;
  }
  .legal-main h1 {
    font-size: 36px;
  }
  .legal-main h2 {
    font-size: 26px;
  }
  .legal-main p,
  .legal-main li {
    font-size: 14px;
  }
}
@media (max-width: 370px) {
  .hero-copy h1 {
    font-size: 51px;
  }
  .header-actions {
    gap: 4px;
  }
  .header-book {
    font-size: 11px;
  }
  .rate-end {
    gap: 10px;
  }
  .founder-plans .rate-amount {
    font-size: 30px;
  }
  .menu-content {
    padding-top: 22px;
  }
  .menu-links > a {
    font-size: 29px;
    padding-block: 12px;
  }
  .menu-founder {
    margin-block: 16px;
  }
  .menu-bottom {
    margin-top: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .experience-link:hover .photo {
    transform: none;
  }
}

@media (max-width: 600px) {
  .home-page .section {
    padding-block: 44px;
  }
  .home-page .newsletter {
    padding-block: 26px;
    gap: 14px;
  }
  .home-page .faq-layout h2 {
    margin-top: 0;
  }
  .home-page .inclusions-line {
    margin-top: 22px;
  }
}
