:root {
  color-scheme: light;
  --ivory: #fbf7f1;
  --cream: #f6efe7;
  --cream-strong: #fffaf8;
  --warm-beige: #e8d6c6;
  --blush: #e9cfc8;
  --taupe: #a68f82;
  --taupe-deep: #756252;
  --amber: #c8875f;
  --amber-deep: #965934;
  --espresso: #1e1715;
  --muted-brown: #5b443b;
  --sage: #667a5f;
  --rose-deep: #9a555a;
  --line: rgba(30, 23, 21, 0.1);
  --line-strong: rgba(30, 23, 21, 0.18);
  --line-light: rgba(255, 250, 244, 0.28);
  --shadow-soft: 0 18px 50px -24px rgba(30, 23, 21, 0.28);
  --shadow-lift: 0 28px 70px -34px rgba(91, 68, 59, 0.44);
  --radius: 8px;
  --shell: min(1180px, calc(100% - 40px));
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", "Avenir Next", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ivory);
  color: var(--espresso);
  scroll-behavior: auto;
  scroll-padding-top: 84px;
  scrollbar-color: rgba(166, 143, 130, 0.45) transparent;
  scrollbar-width: thin;
}

html.preloading,
html.preloading body {
  overflow: hidden;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  border: 2.5px solid var(--ivory);
  border-radius: 999px;
  background: rgba(166, 143, 130, 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(118, 98, 79, 0.65);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.92), rgba(246, 239, 231, 0.86) 46%, rgba(251, 247, 241, 0.98)),
    radial-gradient(95% 56% at 50% -12%, rgba(255, 253, 250, 0.9), transparent 62%),
    var(--ivory);
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: multiply;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(233, 207, 200, 0.24), transparent 28%),
    linear-gradient(300deg, rgba(200, 135, 95, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 250, 0.72), transparent 42%);
}

body.menu-open {
  overflow: hidden;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: grid;
  place-items: center;
  color: var(--espresso);
  background:
    radial-gradient(58% 48% at 50% 36%, rgba(255, 253, 250, 0.98), rgba(251, 247, 241, 0.92) 58%, rgba(246, 239, 231, 0.96)),
    var(--ivory);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 520ms var(--ease),
    visibility 0ms linear 520ms;
}

.preloading .site-preloader {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition:
    opacity 220ms ease,
    visibility 0ms linear 0ms;
}

.preloader-card {
  display: grid;
  gap: 18px;
  justify-items: center;
  width: min(320px, calc(100vw - 48px));
  text-align: center;
}

.preloader-logo {
  display: grid;
  gap: 4px;
  justify-items: center;
}

.preloader-logo strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 0.95;
  text-transform: uppercase;
}

.preloader-logo span {
  color: rgba(91, 68, 59, 0.72);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.preloader-line {
  position: relative;
  width: min(220px, 70vw);
  height: 1px;
  overflow: hidden;
  background: rgba(30, 23, 21, 0.12);
}

.preloader-line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, var(--amber-deep), transparent);
  animation: preloaderSweep 1.05s var(--ease) infinite;
}

.preloader-text {
  color: rgba(91, 68, 59, 0.7);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

@keyframes preloaderSweep {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(260%);
  }
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection {
  background: var(--blush);
  color: var(--muted-brown);
}

.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: 16px;
  top: 16px;
  z-index: 120;
  translate: 0 -160%;
  padding: 10px 14px;
  color: var(--ivory);
  background: var(--espresso);
  text-decoration: none;
  border-radius: 999px;
}

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

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

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  word-break: normal;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 740px;
  font-size: clamp(3.75rem, 6.2vw, 6.15rem);
  line-height: 0.96;
}

h1 span {
  display: block;
}

h1 span + span {
  color: var(--amber-deep);
  font-style: italic;
}

h2 {
  font-size: 4.6rem;
}

h3 {
  font-size: 1.9rem;
}

p {
  margin: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--amber-deep);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button,
.header-cta,
.service-list-row,
.contact-side a:not(.button) {
  text-decoration: none;
}

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 240ms var(--ease),
    background 240ms var(--ease),
    border-color 240ms var(--ease),
    color 240ms var(--ease),
    box-shadow 240ms var(--ease);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button svg,
.header-cta svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--ivory);
  background: var(--espresso);
  box-shadow: var(--shadow-soft);
}

.button-primary:hover {
  background: var(--muted-brown);
}

.button-secondary,
.header-cta {
  color: var(--espresso);
  border-color: rgba(30, 23, 21, 0.24);
  background: rgba(255, 253, 250, 0.48);
}

.button-secondary:hover,
.header-cta:hover {
  border-color: rgba(30, 23, 21, 0.52);
  background: rgba(255, 255, 255, 0.74);
}

.button-danger {
  color: #6f2f2a;
  border-color: rgba(117, 47, 42, 0.22);
  background: rgba(255, 246, 242, 0.74);
}

.button-danger:hover {
  border-color: rgba(117, 47, 42, 0.42);
  background: rgba(255, 238, 232, 0.92);
}

.button-light {
  color: var(--espresso);
  background: var(--ivory);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(150px, 0.52fr) minmax(0, 1.5fr) auto auto;
  gap: clamp(16px, 2vw, 26px);
  align-items: center;
  min-height: 74px;
  padding: 10px max(24px, calc((100vw - 1180px) / 2));
  color: var(--espresso);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(251, 247, 241, 0.72), rgba(251, 247, 241, 0));
  transition:
    background 280ms var(--ease),
    border-color 280ms var(--ease),
    box-shadow 280ms var(--ease),
    backdrop-filter 280ms var(--ease);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(251, 247, 241, 0.82);
  box-shadow: 0 12px 34px -24px rgba(30, 23, 21, 0.32);
  backdrop-filter: blur(16px) saturate(1.08);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
  width: max-content;
  max-width: 214px;
  color: var(--espresso);
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.1vw, 1.82rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-sub,
.brand-by {
  margin-top: 5px;
  color: var(--taupe-deep);
  font-family: var(--sans);
  font-size: 0.45rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.brand-by {
  margin-top: 4px;
  letter-spacing: 0.22em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 36px);
  min-width: 0;
}

.site-nav a {
  position: relative;
  flex: 0 0 auto;
  padding-block: 10px;
  color: rgba(30, 23, 21, 0.74);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--amber);
  transition: transform 260ms var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--espresso);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 42px;
  padding-inline: 22px 16px;
  white-space: nowrap;
}

.menu-toggle,
.menu-close {
  position: relative;
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(30, 23, 21, 0.15);
  border-radius: 50%;
  color: var(--espresso);
  background: rgba(251, 247, 241, 0.62);
  backdrop-filter: blur(12px);
}

.menu-toggle span,
.menu-close span {
  position: absolute;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 260ms var(--ease), translate 260ms var(--ease);
}

.menu-toggle span:first-child {
  translate: 0 -4px;
}

.menu-toggle span:last-child {
  translate: 0 4px;
}

.menu-toggle[aria-expanded="true"] span:first-child,
.menu-close span:first-child {
  translate: 0 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child,
.menu-close span:last-child {
  translate: 0 0;
  transform: rotate(-45deg);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  color: var(--espresso);
  background: rgba(251, 247, 241, 0.96);
  backdrop-filter: blur(20px);
}

.mobile-menu-panel {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  padding: 28px;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-brand {
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-nav {
  display: grid;
  gap: 6px;
  margin-top: 70px;
}

.mobile-nav a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-block: 8px;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
  text-decoration: none;
}

.mobile-nav span {
  width: 34px;
  color: var(--taupe-deep);
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.mobile-menu-footer {
  display: grid;
  gap: 16px;
  margin-top: auto;
  padding-top: 42px;
  border-top: 1px solid var(--line);
  color: var(--muted-brown);
  font-size: 0.9rem;
}

.mobile-menu-footer .button {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  display: grid;
  align-items: center;
  padding-block: clamp(116px, 13vh, 148px) 0;
  overflow: clip;
  isolation: isolate;
  background: var(--ivory);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(62% 76% at 12% 48%, rgba(255, 253, 250, 0.92) 0%, rgba(255, 253, 250, 0.74) 36%, rgba(255, 253, 250, 0.24) 62%, transparent 84%),
    linear-gradient(90deg, rgba(251, 247, 241, 0.72) 0%, rgba(251, 247, 241, 0.34) 38%, rgba(251, 247, 241, 0.02) 72%);
}

.hero::after {
  display: none;
}

.hero-figure {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-figure {
  margin: 0;
  overflow: hidden;
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 73% center;
  filter: none;
}

.hero-figure figcaption {
  display: none;
}

.hero-grid {
  position: static;
  display: grid;
  min-height: min(620px, calc(100svh - 180px));
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  max-width: min(560px, 48vw);
  transform: translateY(clamp(-42px, -4.5vh, -24px));
}

.hero .eyebrow {
  color: var(--taupe-deep);
  margin-bottom: 14px;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(3.95rem, 6vw, 5.9rem);
  line-height: 0.98;
}

.hero-lede {
  max-width: 500px;
  margin-top: 20px;
  color: rgba(91, 68, 59, 0.86);
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.55vw, 1.34rem);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-signature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--taupe-deep);
}

.hero-signature span {
  width: 46px;
  height: 1px;
  background: rgba(117, 98, 82, 0.42);
}

.hero-signature p {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-focus-rail {
  position: absolute;
  right: max(34px, calc((100vw - 1180px) / 2));
  top: 50%;
  z-index: 2;
  display: grid;
  gap: 24px;
  translate: 0 -50%;
  color: rgba(91, 68, 59, 0.76);
}

.hero-focus-rail span {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-focus-rail i {
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(200, 135, 95, 0.1);
}


.ritual-marquee {
  position: relative;
  z-index: 3;
  margin-top: calc(-1 * clamp(54px, 8vh, 72px));
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.64);
  backdrop-filter: blur(12px);
  padding-block: 18px;
}

.ritual-marquee::before,
.ritual-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 90px;
  pointer-events: none;
}

.ritual-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--ivory), transparent);
}

.ritual-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--ivory), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 44s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-right: 28px;
  color: var(--taupe-deep);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track svg {
  width: 8px;
  height: 8px;
  fill: var(--amber);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  position: relative;
  padding-block: 112px;
  overflow: clip;
}

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

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.booking-intro p,
.about-copy p {
  color: rgba(91, 68, 59, 0.88);
  font-size: 1.08rem;
  line-height: 1.72;
}

.section-transition-wash {
  position: absolute;
  inset: -14% 0 auto;
  z-index: 0;
  height: 40%;
  pointer-events: none;
}

[data-scrub-word] {
  will-change: opacity;
}

.reduced-motion [data-scrub-word],
.no-gsap [data-scrub-word] {
  opacity: 1 !important;
}

.services {
  padding-block: clamp(92px, 10vw, 150px);
  background:
    radial-gradient(55% 38% at 12% 16%, rgba(198, 122, 83, 0.12), transparent 68%),
    radial-gradient(48% 34% at 78% 24%, rgba(229, 205, 184, 0.22), transparent 72%),
    linear-gradient(180deg, rgba(255, 253, 250, 0.84), rgba(246, 239, 231, 0.94)),
    url("/assets/hero-silk.jpg") center / cover no-repeat,
    var(--cream);
}

.services-shell {
  width: min(1120px, calc(100% - 72px));
}

.services-heading {
  max-width: 780px;
  margin-bottom: clamp(42px, 5vw, 70px);
}

.services-heading h2 {
  font-size: clamp(2.55rem, 4vw, 4.15rem);
  font-weight: 400;
  line-height: 1.02;
}

.services-heading em {
  color: var(--amber-deep);
  font-style: italic;
  font-weight: 400;
}

.services-heading p {
  max-width: 820px;
  margin-inline: auto;
  color: rgba(91, 68, 59, 0.72);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  font-weight: 300;
  line-height: 1.7;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  max-width: 1120px;
  margin-inline: auto;
  overflow: visible;
}

.service-list-row {
  position: relative;
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  min-height: clamp(448px, 44vw, 520px);
  padding: clamp(14px, 1.4vw, 18px) clamp(14px, 1.6vw, 20px) clamp(24px, 2.2vw, 34px);
  color: var(--espresso);
  text-align: center;
  border: 1px solid rgba(91, 68, 59, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.97), rgba(250, 244, 237, 0.9)),
    rgba(255, 253, 250, 0.88);
  box-shadow: 0 24px 70px -54px rgba(62, 42, 34, 0.55);
  transition:
    border-color 260ms var(--ease),
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease);
}

.service-list-row:nth-child(5) {
  grid-column: 3 / span 3;
}

.service-list-row:nth-child(6) {
  grid-column: 6 / span 3;
}

.service-list-row:nth-child(7) {
  grid-column: 9 / span 3;
}

.service-list-row:hover {
  z-index: 1;
  border-color: rgba(150, 89, 52, 0.22);
  box-shadow: 0 32px 80px -52px rgba(62, 42, 34, 0.52);
  transform: translateY(-4px);
}

.service-row-photo {
  display: block;
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  background: rgba(255, 253, 250, 0.72);
}

.service-row-photo img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 620ms var(--ease);
}

.service-list-row:hover .service-row-photo img {
  transform: scale(1.045);
}

.service-row-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: clamp(22px, 2.3vw, 34px) clamp(4px, 1vw, 12px) 0;
}

.service-row-title {
  color: var(--espresso);
  font-family: var(--sans);
  font-size: clamp(0.78rem, 0.88vw, 0.96rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-row-text {
  max-width: 22ch;
  color: rgba(91, 68, 59, 0.72);
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.35vw, 1.34rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.48;
}

.service-row-meta {
  display: none;
}

.service-row-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  color: rgba(91, 68, 59, 0.72);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-row-star {
  display: none;
}

@media (max-width: 1080px) {
  .service-list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    max-width: 760px;
  }

  .service-list-row,
  .service-list-row:nth-child(5),
  .service-list-row:nth-child(6),
  .service-list-row:nth-child(7) {
    grid-column: span 3;
  }
}

.experience {
  position: relative;
  padding-block: 94px 88px;
  color: var(--espresso);
  background:
    radial-gradient(66% 46% at 50% 0%, rgba(255, 255, 255, 0.82), transparent 72%),
    linear-gradient(180deg, rgba(251, 247, 241, 0.96), rgba(246, 239, 231, 0.92));
}

.experience::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 210px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.08) 0%, rgba(255, 253, 250, 0.74) 42%, rgba(246, 239, 231, 0) 100%);
}

.experience .page-shell {
  position: relative;
  z-index: 1;
}

.about-shell {
  width: min(1020px, calc(100% - 72px));
}

.about-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(38px, 6vw, 76px);
  align-items: center;
}

.about-media-card {
  position: relative;
  justify-self: center;
  width: min(100%, 350px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: 0 22px 58px -36px rgba(0, 0, 0, 0.72);
}

.about-media-card img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: 69% center;
}

.about-media-card::after {
  display: none;
}

.about-copy .eyebrow,
.experience .eyebrow {
  color: var(--amber-deep);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
}

.about-title {
  color: var(--espresso);
  font-size: clamp(2.35rem, 4.1vw, 3.55rem);
  line-height: 1.05;
}

.about-title em {
  color: var(--amber-deep);
  font-style: italic;
}

.about-ornament {
  display: block;
  width: 170px;
  margin: 24px 0;
  color: rgba(200, 135, 95, 0.7);
}

.about-ornament svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-copy p {
  color: rgba(91, 68, 59, 0.82);
  max-width: 540px;
  font-size: 0.96rem;
  line-height: 1.68;
}

.about-copy p + p {
  margin-top: 16px;
}

.about-button {
  margin-top: 24px;
  border-color: rgba(91, 68, 59, 0.22);
  color: var(--espresso);
  background: transparent;
}

.draw-path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery {
  padding-block: 98px;
  background:
    radial-gradient(72% 50% at 50% 0%, rgba(255, 255, 255, 0.74), transparent 68%),
    linear-gradient(180deg, rgba(246, 239, 231, 0.72), rgba(251, 247, 241, 0.98));
}

.gallery-shell {
  width: min(980px, calc(100% - 80px));
}

.gallery-heading {
  max-width: 620px;
  margin-bottom: 32px;
}

.gallery-heading h2 {
  font-size: clamp(2.25rem, 3.8vw, 3.55rem);
  line-height: 1.05;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 940px;
  margin-inline: auto;
}

.gallery-item {
  position: relative;
  min-height: 0;
  margin: 0;
  padding: 9px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.62);
  box-shadow: 0 18px 48px -32px rgba(91, 68, 59, 0.42);
}

.gallery-item img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  transition:
    transform 560ms var(--ease),
    filter 560ms var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.025);
  filter: saturate(1.02) brightness(0.98);
}

.contact-side dl {
  display: grid;
  gap: 13px;
  margin: 0;
}

.contact-side dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.contact-side dt {
  color: rgba(91, 68, 59, 0.82);
}

.contact-side dd {
  margin: 0;
  font-weight: 700;
}

.contact {
  padding-block: clamp(76px, 8vw, 112px);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.78), rgba(246, 239, 231, 0.92)),
    var(--cream);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.44fr) minmax(0, 1.48fr) minmax(220px, 0.44fr);
  gap: 1px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}

.booking-intro,
.booking-form,
.booking-flow,
.contact-side {
  min-width: 0;
  background: rgba(255, 253, 250, 0.76);
  backdrop-filter: blur(14px);
}

.booking-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 58px);
  padding: clamp(30px, 3.2vw, 42px);
}

.booking-intro h2 {
  max-width: 9ch;
  font-size: clamp(2.7rem, 3.5vw, 3.45rem);
  line-height: 0.94;
}

.booking-intro p:not(.eyebrow) {
  max-width: 31ch;
  margin-top: 0;
  color: rgba(91, 68, 59, 0.92);
}

.booking-form {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(240px, 1fr) minmax(260px, 1.08fr);
  gap: 1px;
  background: var(--line);
}

.booking-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 1px;
  background: var(--line);
}

.booking-progress {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.booking-progress span {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 10px;
  color: rgba(91, 68, 59, 0.64);
  background: rgba(255, 253, 250, 0.86);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-progress span.is-active {
  color: var(--espresso);
  background: rgba(255, 250, 244, 0.96);
}

.booking-progress span.is-complete {
  color: rgba(91, 68, 59, 0.82);
  background: rgba(255, 253, 250, 0.94);
}

.booking-flow .booking-step {
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.96), rgba(250, 244, 237, 0.86)),
    rgba(255, 253, 250, 0.9);
}

.booking-catalog,
.booking-client-step {
  grid-column: 1 / -1;
}

.booking-category-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.booking-category-tab,
.booking-treatment-card,
.booking-day,
.booking-slot,
.icon-button {
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.booking-category-tab {
  display: grid;
  gap: 4px;
  min-height: 78px;
  padding: 14px;
  border: 1px solid rgba(30, 23, 21, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.46);
  text-align: left;
  transition:
    border-color 180ms var(--ease),
    background 180ms var(--ease),
    transform 180ms var(--ease);
}

.booking-category-tab:hover {
  border-color: rgba(200, 135, 95, 0.36);
  transform: translateY(-1px);
}

.booking-category-tab[aria-selected="true"] {
  border-color: rgba(200, 135, 95, 0.58);
  background: rgba(255, 250, 244, 0.92);
}

.booking-category-tab strong {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.booking-category-tab small {
  color: rgba(91, 68, 59, 0.72);
  font-size: 0.78rem;
  line-height: 1.35;
}

.booking-treatment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.booking-treatment-card {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  min-height: 92px;
  padding: 15px;
  border: 1px solid rgba(30, 23, 21, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  text-align: left;
  transition:
    border-color 180ms var(--ease),
    background 180ms var(--ease),
    transform 180ms var(--ease);
}

.booking-treatment-card:hover {
  border-color: rgba(200, 135, 95, 0.38);
  transform: translateY(-1px);
}

.booking-treatment-card[aria-pressed="true"] {
  border-color: rgba(30, 23, 21, 0.42);
  background: rgba(255, 250, 244, 0.94);
}

.booking-treatment-card[aria-pressed="true"] .choice-dot {
  border: 4px solid var(--espresso);
}

.booking-treatment-card strong {
  display: block;
  font-size: 0.94rem;
  line-height: 1.3;
}

.booking-treatment-card small {
  display: block;
  margin-top: 5px;
  color: rgba(91, 68, 59, 0.72);
  font-size: 0.82rem;
  line-height: 1.42;
}

.booking-treatment-card em {
  display: grid;
  gap: 4px;
  align-self: start;
  white-space: nowrap;
  color: var(--amber-deep);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-treatment-card em b {
  color: var(--espresso);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.booking-calendar-card {
  display: grid;
  gap: 12px;
}

.booking-calendar-toolbar {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: center;
}

.booking-calendar-toolbar strong {
  color: var(--espresso);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(30, 23, 21, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  transition:
    border-color 180ms var(--ease),
    background 180ms var(--ease);
}

.icon-button:hover {
  border-color: rgba(30, 23, 21, 0.32);
  background: rgba(255, 250, 244, 0.94);
}

.icon-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-weekdays,
.booking-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.booking-weekdays span {
  color: rgba(91, 68, 59, 0.54);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
}

.booking-calendar-blank {
  min-height: 46px;
}

.booking-day {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 6px 3px;
  border: 1px solid rgba(30, 23, 21, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.54);
  transition:
    border-color 180ms var(--ease),
    background 180ms var(--ease),
    color 180ms var(--ease);
}

.booking-day span {
  font-weight: 800;
}

.booking-day small {
  margin-top: 2px;
  color: rgba(91, 68, 59, 0.5);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-day.is-today:not(.is-selected) {
  border-color: rgba(200, 135, 95, 0.45);
}

.booking-day.is-selected {
  color: var(--ivory);
  border-color: var(--espresso);
  background: var(--espresso);
}

.booking-day.is-selected small {
  color: rgba(255, 250, 244, 0.7);
}

.booking-day.is-limited:not(.is-selected) {
  border-color: rgba(200, 135, 95, 0.45);
  background: rgba(255, 248, 238, 0.84);
}

.booking-day.is-full:not(.is-selected) {
  color: rgba(91, 68, 59, 0.38);
  border-color: rgba(91, 68, 59, 0.12);
  background: rgba(255, 255, 255, 0.28);
}

.booking-day.is-closed {
  color: rgba(91, 68, 59, 0.32);
  background: rgba(255, 255, 255, 0.24);
  cursor: not-allowed;
}

.booking-day.is-closed small {
  color: rgba(91, 68, 59, 0.28);
}

.booking-slot-summary {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  padding: 16px;
  border: 1px solid rgba(30, 23, 21, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.88), rgba(246, 239, 231, 0.62)),
    rgba(255, 255, 255, 0.54);
}

.booking-slot-summary span,
.booking-slot-summary small,
.booking-helper,
.booking-note {
  color: rgba(91, 68, 59, 0.72);
}

.booking-slot-summary span {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-slot-summary strong {
  color: var(--espresso);
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1;
}

.booking-price-options {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid rgba(30, 23, 21, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.44);
}

.booking-price-head {
  display: grid;
  gap: 4px;
}

.booking-price-head span {
  color: var(--amber-deep);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-price-head strong {
  color: var(--espresso);
  font-size: 0.92rem;
}

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

.booking-price-option {
  display: grid;
  gap: 4px;
  min-height: 62px;
  padding: 10px;
  border: 1px solid rgba(30, 23, 21, 0.1);
  border-radius: var(--radius);
  color: var(--espresso);
  background: rgba(255, 255, 255, 0.54);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms var(--ease),
    background 180ms var(--ease),
    transform 180ms var(--ease);
}

.booking-price-option:hover {
  border-color: rgba(200, 135, 95, 0.36);
  transform: translateY(-1px);
}

.booking-price-option[aria-pressed="true"] {
  color: var(--ivory);
  border-color: var(--espresso);
  background: var(--espresso);
}

.booking-price-option span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.booking-price-option strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
}

.booking-price-option small {
  color: rgba(91, 68, 59, 0.68);
  font-size: 0.72rem;
  line-height: 1.35;
}

.booking-price-option[aria-pressed="true"] small {
  color: rgba(255, 250, 244, 0.72);
}

.booking-slot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.booking-slot {
  display: grid;
  gap: 3px;
  min-height: 58px;
  padding: 10px 8px;
  border: 1px solid rgba(30, 23, 21, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
  text-align: center;
  transition:
    border-color 180ms var(--ease),
    background 180ms var(--ease),
    color 180ms var(--ease),
    transform 180ms var(--ease);
}

.booking-slot:hover:not(:disabled) {
  border-color: rgba(30, 23, 21, 0.34);
  transform: translateY(-1px);
}

.booking-slot strong {
  font-size: 0.9rem;
}

.booking-slot small {
  color: rgba(91, 68, 59, 0.58);
  font-size: 0.68rem;
  font-weight: 700;
}

.booking-slot.is-selected {
  color: var(--ivory);
  border-color: var(--espresso);
  background: var(--espresso);
}

.booking-slot.is-selected small {
  color: rgba(255, 250, 244, 0.72);
}

.booking-slot.is-unavailable {
  color: rgba(91, 68, 59, 0.34);
  background: rgba(255, 255, 255, 0.22);
  cursor: not-allowed;
}

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

.booking-client-grid label,
.booking-client-step .booking-privacy {
  display: grid;
  gap: 7px;
  color: var(--muted-brown);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-client-grid input,
.booking-client-grid select,
.booking-client-grid textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(30, 23, 21, 0.14);
  border-radius: var(--radius);
  color: var(--espresso);
  background: rgba(255, 255, 255, 0.62);
}

.booking-client-grid input,
.booking-client-grid select {
  min-height: 46px;
  padding: 11px 13px;
}

.booking-client-grid textarea {
  min-height: 98px;
  padding: 12px 13px;
  resize: vertical;
}

.booking-client-notes {
  grid-column: 1 / -1;
}

.booking-submit-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

.booking-submit-row .button {
  margin: 0;
  white-space: nowrap;
}

.booking-confirmation {
  grid-column: 1 / -1;
  display: grid;
  gap: 18px;
  scroll-margin-top: 108px;
  padding: clamp(30px, 5vw, 56px);
  background:
    radial-gradient(64% 80% at 12% 10%, rgba(233, 207, 200, 0.36), transparent 70%),
    linear-gradient(180deg, rgba(255, 253, 250, 0.96), rgba(250, 244, 237, 0.88));
}

.booking-confirmation:focus {
  outline: 0;
}

.booking-confirmation h3 {
  max-width: 9ch;
  font-size: clamp(2.7rem, 4.2vw, 4.8rem);
  line-height: 0.96;
}

.booking-confirmation p:not(.eyebrow) {
  max-width: 56ch;
  color: rgba(91, 68, 59, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
}

.booking-helper {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.booking-helper.is-loading::after {
  content: "";
  display: inline-block;
  width: 1.1em;
  text-align: left;
  animation: bookingDots 1.1s steps(4, end) infinite;
}

@keyframes bookingDots {
  0% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75%,
  100% {
    content: "...";
  }
}

.booking-step {
  min-width: 0;
  margin: 0;
  padding: clamp(36px, 3vw, 44px) clamp(24px, 2.4vw, 32px) clamp(24px, 2.4vw, 32px);
  border: 0;
  background: rgba(255, 253, 250, 0.86);
}

.booking-step legend {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 12px 0 0;
  color: var(--muted-brown);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.booking-step legend span {
  color: var(--amber-deep);
}

.booking-options,
.booking-mini-fields,
.time-options {
  display: grid;
  gap: 12px;
}

.booking-choice,
.booking-location {
  position: relative;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 13px;
  border: 1px solid rgba(30, 23, 21, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.4);
  color: var(--espresso);
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}

.booking-choice:hover,
.booking-location:hover {
  border-color: rgba(200, 135, 95, 0.35);
}

.booking-choice:has(input:checked),
.booking-location:has(input:checked) {
  border-color: rgba(200, 135, 95, 0.58);
  background: rgba(255, 250, 244, 0.82);
}

.booking-choice input,
.booking-location input,
.time-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-dot {
  width: 14px;
  height: 14px;
  margin-top: 3px;
  border: 1px solid var(--taupe);
  border-radius: 50%;
}

.booking-choice > span:last-child,
.booking-location > span:last-child {
  min-width: 0;
}

.booking-choice input:checked + .choice-dot,
.booking-location input:checked + .choice-dot {
  border: 4px solid var(--espresso);
}

.booking-choice strong,
.booking-location strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.booking-choice small,
.booking-location small {
  display: block;
  margin-top: 4px;
  color: var(--taupe-deep);
  font-size: 0.78rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.booking-mini-fields label,
.booking-date,
.booking-message,
.booking-privacy {
  display: grid;
  gap: 7px;
  color: var(--muted-brown);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-mini-fields input,
.booking-date input,
.booking-message textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid rgba(30, 23, 21, 0.14);
  border-radius: var(--radius);
  color: var(--espresso);
  background: rgba(255, 255, 255, 0.56);
}

.booking-message textarea {
  min-height: 88px;
  resize: vertical;
}

.time-title {
  display: block;
  margin-bottom: 8px;
  color: var(--muted-brown);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.time-options label {
  position: relative;
}

.time-options span {
  display: grid;
  place-items: center;
  min-height: 40px;
  border: 1px solid rgba(30, 23, 21, 0.12);
  border-radius: var(--radius);
  color: var(--muted-brown);
  background: rgba(255, 255, 255, 0.42);
  font-size: 0.82rem;
  transition: border-color 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease);
}

.time-options input:checked + span {
  color: var(--ivory);
  border-color: var(--espresso);
  background: var(--espresso);
}

.booking-privacy {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  text-transform: none;
  letter-spacing: 0;
}

.booking-privacy input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--espresso);
}

.booking-note {
  margin-top: 14px;
  color: var(--taupe-deep);
  font-size: 0.82rem;
}

.booking-form .button {
  width: 100%;
  margin-top: 18px;
}

.form-status {
  min-height: 24px;
  margin-top: 12px;
  color: var(--sage);
  font-weight: 700;
}

.form-status.is-error {
  color: var(--rose-deep);
}

.contact-side {
  display: grid;
  align-content: start;
  gap: 30px;
  padding: 34px 28px;
}

.contact-side h3 {
  margin-bottom: 12px;
  font-size: 1.9rem;
}

.contact-side p:not(.eyebrow),
.contact-side dl {
  color: rgba(91, 68, 59, 0.88);
}

.contact-side a:not(.button) {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 14px;
  color: var(--amber-deep);
  font-weight: 700;
}

.contact-side .button {
  width: 100%;
}

.faq {
  padding-block: clamp(92px, 9vw, 140px);
  background:
    radial-gradient(54% 44% at 12% 18%, rgba(198, 122, 83, 0.12), transparent 70%),
    radial-gradient(50% 42% at 84% 28%, rgba(216, 188, 166, 0.24), transparent 72%),
    linear-gradient(180deg, rgba(251, 247, 241, 0.98), rgba(246, 239, 231, 0.92));
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.18fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: start;
}

.faq-intro {
  max-width: 430px;
}

.faq-intro h2 {
  font-size: clamp(2.45rem, 4vw, 4.15rem);
  font-weight: 400;
  line-height: 1.04;
}

.faq-intro h2 em {
  color: var(--amber-deep);
  font-style: italic;
  font-weight: 400;
}

.faq-intro p {
  margin-top: 24px;
  color: rgba(91, 68, 59, 0.74);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  font-weight: 300;
  line-height: 1.72;
}

.faq-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  margin-top: 42px;
  color: rgba(91, 68, 59, 0.78);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
}

.faq-list {
  overflow: hidden;
  border: 1px solid rgba(91, 68, 59, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.92), rgba(250, 244, 237, 0.76)),
    rgba(255, 253, 250, 0.82);
  box-shadow: var(--shadow-soft);
}

.faq-list details {
  border-top: 1px solid rgba(91, 68, 59, 0.12);
}

.faq-list details:first-child {
  border-top: 0;
}

.faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 24px;
  gap: 20px;
  align-items: center;
  min-height: 92px;
  padding: 24px 30px;
  cursor: pointer;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.55vw, 1.58rem);
  font-weight: 400;
  line-height: 1.2;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  justify-self: end;
  color: var(--amber-deep);
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 180ms var(--ease);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-number {
  color: rgba(150, 89, 52, 0.82);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1;
}

.faq-list p {
  max-width: 620px;
  margin: -8px 78px 28px 104px;
  color: rgba(91, 68, 59, 0.76);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.68;
}

.coloracion-page {
  background: var(--cream);
}

.coloracion-main {
  overflow: hidden;
  color: var(--espresso);
  background:
    radial-gradient(54% 30% at 14% 10%, rgba(198, 122, 83, 0.1), transparent 70%),
    linear-gradient(180deg, rgba(251, 247, 241, 1), rgba(246, 239, 231, 0.92));
}

.color-service-hero {
  position: relative;
  min-height: 100svh;
  padding-block: clamp(118px, 14vh, 154px) clamp(52px, 7vh, 80px);
  display: grid;
  align-items: center;
  overflow: clip;
  isolation: isolate;
  background: var(--espresso);
  --service-hero-position: 62% center;
}

.color-service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(60% 72% at 12% 52%, rgba(255, 253, 250, 0.88) 0%, rgba(255, 253, 250, 0.56) 45%, rgba(255, 253, 250, 0.14) 70%, transparent 92%),
    linear-gradient(90deg, rgba(251, 247, 241, 0.72) 0%, rgba(251, 247, 241, 0.42) 28%, rgba(251, 247, 241, 0.1) 58%, transparent 82%);
}

.color-hero-shell {
  position: static;
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 68px);
  align-items: center;
  width: var(--shell);
  min-height: calc(100svh - clamp(190px, 21vh, 234px));
}

.color-hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 390px);
  max-width: 390px;
  text-shadow: 0 1px 18px rgba(255, 253, 250, 0.42);
}

.color-hero-copy h1 {
  margin: 0;
  color: var(--espresso);
  font-size: clamp(3rem, 5.4vw, 5.05rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
}

.color-hero-copy h1 em {
  display: block;
  margin-top: 6px;
  color: var(--taupe-deep);
  font-size: 0.48em;
  font-style: italic;
  font-weight: 400;
  line-height: 1.08;
}

.color-ornament {
  position: relative;
  display: block;
  width: 170px;
  height: 18px;
  margin-block: clamp(22px, 3.8vh, 30px) clamp(18px, 3vh, 24px);
  color: var(--amber-deep);
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(150, 89, 52, 0.24), rgba(150, 89, 52, 0.24)) left 50% / 72px 1px no-repeat,
    linear-gradient(90deg, rgba(150, 89, 52, 0.24), rgba(150, 89, 52, 0.24)) right 50% / 72px 1px no-repeat;
}

.color-ornament::before {
  content: "✧";
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1;
  transform: translate(-50%, -52%);
}

.color-hero-copy p:not(.eyebrow) {
  max-width: 330px;
  margin-bottom: clamp(18px, 3.4vh, 26px);
  color: rgba(47, 37, 34, 0.78);
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  font-weight: 300;
  line-height: 1.62;
}

.color-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 0;
}

.color-hero-media img {
  width: 100%;
  height: 112%;
  min-height: 112%;
  object-fit: cover;
  object-position: var(--service-hero-position);
}

.color-benefits {
  position: relative;
  z-index: 3;
  margin-top: -40px;
}

.color-benefit-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(91, 68, 59, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.9), rgba(250, 244, 237, 0.78)),
    rgba(255, 253, 250, 0.82);
  box-shadow: var(--shadow-soft);
}

.color-benefit-panel article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 128px;
  padding: 26px 28px;
  border-left: 1px solid rgba(91, 68, 59, 0.1);
}

.color-benefit-panel article:first-child {
  border-left: 0;
}

.color-line-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--amber-deep);
  border: 1px solid rgba(150, 89, 52, 0.18);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.color-benefit-panel h2 {
  margin: 0 0 7px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.color-benefit-panel p {
  color: rgba(91, 68, 59, 0.74);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.5;
}

.color-techniques {
  padding-top: clamp(82px, 8vw, 126px);
}

.color-section-heading {
  max-width: 720px;
  margin-bottom: clamp(34px, 4vw, 54px);
}

.color-section-heading h2 {
  font-size: clamp(2.6rem, 4.6vw, 4.75rem);
  font-weight: 400;
  line-height: 0.98;
}

.color-section-heading em,
.color-story-copy h2 em {
  color: var(--amber-deep);
  font-style: italic;
  font-weight: 400;
}

.color-technique-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.color-technique-card {
  overflow: hidden;
  border: 1px solid rgba(91, 68, 59, 0.1);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 253, 250, 0.72);
  box-shadow: 0 18px 44px -34px rgba(62, 42, 34, 0.28);
  text-align: center;
}

.color-technique-card img {
  width: 100%;
  aspect-ratio: 1 / 1.26;
  object-fit: cover;
}

.color-technique-card h3 {
  max-width: 170px;
  margin: 22px auto 10px;
  color: var(--espresso);
  font-size: clamp(1.24rem, 1.55vw, 1.48rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 0.96;
  text-transform: uppercase;
}

.color-technique-card p {
  max-width: 190px;
  margin: 0 auto 26px;
  color: rgba(91, 68, 59, 0.78);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
}

.color-story {
  padding-block: 28px 52px;
}

.color-story-card {
  display: grid;
  grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1.32fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(91, 68, 59, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 253, 250, 0.94), rgba(255, 253, 250, 0.72) 46%, rgba(255, 253, 250, 0.18)),
    rgba(255, 253, 250, 0.78);
  box-shadow: var(--shadow-soft);
}

.color-story-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  padding: clamp(34px, 5vw, 64px);
}

.color-story-copy h2 {
  margin: 0;
  font-size: clamp(2.25rem, 3.6vw, 3.75rem);
  font-weight: 400;
  line-height: 1;
}

.color-story-copy p {
  max-width: 340px;
  margin-block: 22px 28px;
  color: rgba(91, 68, 59, 0.76);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.72;
}

.color-story-copy .button {
  justify-self: start;
}

.color-story-media {
  min-height: 360px;
}

.color-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.color-care {
  padding-block: 34px 46px;
}

.color-care-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.46fr);
  gap: 20px;
  align-items: stretch;
}

.color-care-panel,
.color-consult-card,
.color-brand-panel {
  border: 1px solid rgba(91, 68, 59, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.74);
  box-shadow: var(--shadow-soft);
}

.color-care-panel {
  padding: clamp(30px, 4vw, 48px);
}

.color-care-panel > .eyebrow {
  text-align: center;
}

.color-care-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
}

.color-care-grid article {
  padding: 6px clamp(18px, 2.2vw, 30px);
  text-align: center;
  border-left: 1px solid rgba(91, 68, 59, 0.1);
}

.color-care-grid article:first-child {
  border-left: 0;
}

.color-care-grid span {
  color: var(--amber-deep);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
}

.color-care-grid h3 {
  margin-block: 12px;
  font-size: 1.32rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.color-care-grid p,
.color-consult-card p {
  color: rgba(91, 68, 59, 0.74);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.62;
}

.color-consult-card {
  display: grid;
  align-content: center;
  padding: clamp(30px, 4vw, 48px);
  background:
    radial-gradient(80% 60% at 100% 100%, rgba(198, 122, 83, 0.13), transparent 68%),
    rgba(255, 253, 250, 0.78);
}

.color-consult-card h2 {
  max-width: 300px;
  margin: 0;
  font-size: clamp(1.95rem, 2.7vw, 2.8rem);
  font-weight: 400;
  line-height: 1.05;
}

.color-consult-card p {
  margin-block: 18px 24px;
}

.color-consult-card .button {
  justify-self: start;
}

.color-brands {
  padding-block: 8px 78px;
}

.color-brand-panel {
  padding: 30px clamp(24px, 4vw, 54px);
  text-align: center;
}

.color-brand-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(28px, 6vw, 82px);
  margin-top: 22px;
  color: rgba(30, 23, 21, 0.76);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.3vw, 2.3rem);
  font-weight: 400;
  line-height: 1;
}

.mechas-main {
  background:
    radial-gradient(52% 32% at 82% 10%, rgba(198, 122, 83, 0.11), transparent 72%),
    linear-gradient(180deg, rgba(251, 247, 241, 1), rgba(247, 240, 232, 0.94));
}

.mechas-hero .color-hero-copy {
  max-width: 400px;
}

.mechas-hero .color-hero-copy h1 {
  font-size: clamp(3.15rem, 5.8vw, 5.5rem);
}

.mechas-hero-media img {
  object-position: 58% center;
}

.mechas-technique-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1240px;
  margin-inline: auto;
  gap: clamp(12px, 1.35vw, 18px);
}

.mechas-technique-grid .color-technique-card img {
  aspect-ratio: 1.05 / 1;
}

.mechas-care-story {
  padding-top: 18px;
}

.mechas-care-story .color-story-media {
  min-height: 320px;
}

.mechas-care-story .color-story-media img {
  object-position: center;
}

.mechas-process {
  padding-block: 24px 44px;
}

.mechas-process-panel,
.mechas-ready-card {
  overflow: hidden;
  border: 1px solid rgba(91, 68, 59, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.74);
  box-shadow: var(--shadow-soft);
}

.mechas-process-panel {
  padding: clamp(30px, 4vw, 48px);
  text-align: center;
}

.mechas-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 26px;
}

.mechas-process-grid article {
  padding: 10px clamp(14px, 1.5vw, 24px);
  border-left: 1px solid rgba(91, 68, 59, 0.1);
}

.mechas-process-grid article:first-child {
  border-left: 0;
}

.mechas-process-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--amber-deep);
  border: 1px solid rgba(150, 89, 52, 0.18);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 400;
}

.mechas-process-grid h3 {
  margin: 0 0 10px;
  color: var(--espresso);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.mechas-process-grid p {
  max-width: 168px;
  margin-inline: auto;
  color: rgba(91, 68, 59, 0.72);
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.58;
}

.mechas-ready {
  padding-block: 12px 80px;
}

.mechas-ready-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  min-height: 300px;
  background:
    linear-gradient(90deg, rgba(255, 253, 250, 0.94), rgba(255, 253, 250, 0.74) 40%, rgba(255, 253, 250, 0.12)),
    rgba(255, 253, 250, 0.78);
}

.mechas-ready-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(34px, 4.4vw, 58px);
}

.mechas-ready-copy h2 {
  margin: 0;
  color: var(--espresso);
  font-size: clamp(2.2rem, 3.3vw, 3.45rem);
  font-weight: 400;
  line-height: 1;
}

.mechas-ready-copy p {
  max-width: 360px;
  margin-block: 18px 24px;
  color: rgba(91, 68, 59, 0.76);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.68;
}

.mechas-ready-card figure {
  min-height: 300px;
}

.mechas-ready-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nails-main {
  background:
    radial-gradient(46% 28% at 76% 5%, rgba(233, 207, 200, 0.32), transparent 72%),
    radial-gradient(40% 28% at 10% 22%, rgba(255, 253, 250, 0.94), transparent 72%),
    linear-gradient(180deg, rgba(253, 249, 245, 1), rgba(248, 241, 235, 0.96));
}

.nails-hero {
  min-height: 100svh;
  padding-block: clamp(118px, 14vh, 154px) clamp(52px, 7vh, 80px);
  --service-hero-position: 62% center;
}

.nails-hero::before {
  background:
    radial-gradient(58% 70% at 12% 52%, rgba(255, 253, 250, 0.9) 0%, rgba(255, 247, 246, 0.56) 45%, rgba(255, 247, 246, 0.14) 70%, transparent 92%),
    linear-gradient(90deg, rgba(251, 247, 241, 0.74) 0%, rgba(251, 247, 241, 0.42) 28%, rgba(251, 247, 241, 0.1) 58%, transparent 82%);
}

.nails-hero-shell {
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 68px);
}

.nails-hero-copy {
  max-width: 400px;
}

.nails-hero .color-hero-copy h1 {
  font-size: clamp(3.1rem, 5.7vw, 5.35rem);
}

.nails-hero .color-hero-copy h1 em {
  max-width: 430px;
  color: var(--taupe-deep);
  font-size: 0.43em;
  line-height: 1.12;
}

.nails-hero .color-hero-copy p:not(.eyebrow) {
  max-width: 320px;
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.78;
}

.nails-hero-media {
  min-height: 0;
  border-radius: 0;
}

.nails-hero-media img {
  object-position: var(--service-hero-position);
}

.nails-benefits {
  margin-top: -34px;
}

.nails-benefit-panel {
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.94), rgba(252, 246, 241, 0.86)),
    radial-gradient(80% 120% at 80% 100%, rgba(233, 207, 200, 0.24), transparent 72%);
}

.nails-benefit-panel article {
  min-height: 122px;
}

.nails-services {
  padding-block: clamp(78px, 8vw, 116px) 38px;
}

.nails-section-heading {
  max-width: 720px;
  margin-bottom: clamp(34px, 4.4vw, 58px);
}

.nails-section-heading h2 {
  font-size: clamp(2.55rem, 4.2vw, 4.35rem);
  font-weight: 400;
  line-height: 1;
}

.nails-section-heading h2 em,
.nails-colors-copy h2 em {
  color: var(--amber-deep);
  font-style: italic;
  font-weight: 400;
}

.nails-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 20px);
  max-width: 1100px;
  margin-inline: auto;
}

.nails-service-card {
  min-height: 430px;
  padding: 16px 16px 28px;
  overflow: hidden;
  border: 1px solid rgba(91, 68, 59, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.92), rgba(253, 248, 243, 0.82)),
    rgba(255, 253, 250, 0.82);
  box-shadow: 0 24px 56px -38px rgba(91, 68, 59, 0.38);
  text-align: center;
}

.nails-service-card img {
  width: 100%;
  aspect-ratio: 1 / 0.92;
  object-fit: cover;
  object-position: center;
  border-radius: calc(var(--radius) - 1px);
}

.nails-service-card h3 {
  max-width: 190px;
  margin: 24px auto 12px;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.98;
  text-transform: none;
}

.nails-service-card p {
  max-width: 190px;
  margin: 0 auto;
  color: rgba(91, 68, 59, 0.78);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.62;
}

.nails-colors {
  padding-block: 26px 42px;
}

.nails-colors-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  overflow: hidden;
  border: 1px solid rgba(91, 68, 59, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 253, 250, 0.58), rgba(255, 253, 250, 0.94) 58%, rgba(255, 253, 250, 0.9)),
    rgba(255, 253, 250, 0.74);
  box-shadow: var(--shadow-soft);
}

.nails-colors-card figure {
  min-height: 320px;
}

.nails-colors-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nails-colors-copy {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 320px;
  padding: clamp(34px, 4.8vw, 64px);
}

.nails-colors-copy::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 22px;
  width: 108px;
  height: 126px;
  pointer-events: none;
  opacity: 0.16;
  border-radius: 50% 50% 48% 52%;
  background:
    radial-gradient(closest-side, transparent 52%, rgba(150, 89, 52, 0.62) 54%, transparent 57%),
    linear-gradient(140deg, transparent 42%, rgba(150, 89, 52, 0.62) 43%, transparent 45%);
}

.nails-colors-copy h2 {
  margin: 0;
  font-size: clamp(2.25rem, 3.4vw, 3.45rem);
  font-weight: 400;
  line-height: 1.02;
}

.nails-colors-copy p {
  max-width: 390px;
  margin-block: 18px 24px;
  color: rgba(91, 68, 59, 0.78);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.72;
}

.nails-extra {
  padding-block: 26px 86px;
}

.nails-extra-panel {
  padding: clamp(30px, 4.2vw, 48px) clamp(24px, 4vw, 54px);
  border: 1px solid rgba(91, 68, 59, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(74% 110% at 0% 0%, rgba(233, 207, 200, 0.16), transparent 72%),
    rgba(255, 253, 250, 0.76);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.nails-extra-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 30px;
}

.nails-extra-grid article {
  padding: 4px clamp(12px, 1.8vw, 26px);
  border-left: 1px solid rgba(91, 68, 59, 0.1);
}

.nails-extra-grid article:first-child {
  border-left: 0;
}

.nails-extra-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  color: var(--amber-deep);
  border: 1px solid rgba(150, 89, 52, 0.18);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1rem;
}

.nails-extra-grid h3 {
  margin: 0 0 10px;
  color: var(--espresso);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.42;
}

.nails-extra-grid p {
  max-width: 150px;
  margin: 0 auto;
  color: rgba(91, 68, 59, 0.72);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.58;
}

.peinados-main {
  background:
    radial-gradient(48% 28% at 78% 4%, rgba(198, 122, 83, 0.13), transparent 72%),
    radial-gradient(42% 30% at 8% 18%, rgba(255, 253, 250, 0.92), transparent 70%),
    linear-gradient(180deg, rgba(253, 249, 245, 1), rgba(248, 240, 233, 0.96));
}

.peinados-hero {
  min-height: 100svh;
  padding-block: clamp(118px, 14vh, 154px) clamp(52px, 7vh, 80px);
  --service-hero-position: 60% center;
}

.peinados-hero::before {
  background:
    radial-gradient(58% 70% at 12% 52%, rgba(255, 253, 250, 0.9) 0%, rgba(255, 253, 250, 0.56) 45%, rgba(255, 253, 250, 0.14) 70%, transparent 92%),
    linear-gradient(90deg, rgba(251, 247, 241, 0.74) 0%, rgba(251, 247, 241, 0.42) 28%, rgba(251, 247, 241, 0.1) 58%, transparent 82%);
}

.peinados-hero-shell {
  grid-template-columns: minmax(280px, 410px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 68px);
}

.peinados-hero-copy {
  width: min(100%, 390px);
  max-width: 390px;
}

.peinados-hero .color-hero-copy h1 {
  font-size: clamp(2.85rem, 5vw, 4.72rem);
  line-height: 0.97;
}

.peinados-hero .color-hero-copy h1 em {
  max-width: 390px;
  color: var(--taupe-deep);
  font-size: 0.5em;
  line-height: 1.08;
}

.peinados-hero .color-hero-copy p:not(.eyebrow) {
  max-width: 310px;
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.62;
}

.peinados-hero-media {
  min-height: 0;
  border-radius: 0;
}

.peinados-hero-media img {
  object-position: var(--service-hero-position);
}

.peinados-benefits {
  margin-top: -34px;
}

.peinados-benefit-panel {
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.94), rgba(252, 246, 241, 0.86)),
    radial-gradient(80% 120% at 82% 100%, rgba(198, 122, 83, 0.12), transparent 72%);
}

.peinados-benefit-panel article {
  min-height: 124px;
}

.peinados-inspiration {
  padding-block: clamp(78px, 8vw, 116px) 38px;
}

.peinados-section-heading {
  max-width: 760px;
  margin-bottom: clamp(34px, 4.2vw, 56px);
}

.peinados-section-heading h2 {
  font-size: clamp(2.5rem, 4.1vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
}

.peinados-section-heading h2 em,
.peinados-advice-copy h2 em {
  color: var(--amber-deep);
  font-style: italic;
  font-weight: 400;
}

.peinados-inspiration-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.3vw, 16px);
  max-width: 1160px;
  margin-inline: auto;
}

.peinados-inspiration-card {
  overflow: hidden;
  border: 1px solid rgba(91, 68, 59, 0.1);
  border-radius: calc(var(--radius) - 2px);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.92), rgba(253, 248, 243, 0.82)),
    rgba(255, 253, 250, 0.82);
  box-shadow: 0 22px 50px -38px rgba(91, 68, 59, 0.38);
  text-align: center;
}

.peinados-inspiration-card img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: center;
}

.peinados-inspiration-card h3 {
  max-width: 180px;
  min-height: 46px;
  margin: 22px auto 24px;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.42vw, 1.42rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 0.98;
  text-transform: uppercase;
}

.peinados-advice {
  padding-block: 28px 42px;
}

.peinados-advice-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  overflow: hidden;
  border: 1px solid rgba(91, 68, 59, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 253, 250, 0.56), rgba(255, 253, 250, 0.94) 58%, rgba(255, 253, 250, 0.9)),
    rgba(255, 253, 250, 0.76);
  box-shadow: var(--shadow-soft);
}

.peinados-advice-card figure {
  min-height: 320px;
}

.peinados-advice-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.peinados-advice-copy {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 320px;
  padding: clamp(34px, 4.8vw, 64px);
}

.peinados-advice-copy::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 126px;
  height: 126px;
  pointer-events: none;
  opacity: 0.13;
  border-radius: 52% 48% 50% 50%;
  background:
    radial-gradient(closest-side, transparent 52%, rgba(150, 89, 52, 0.58) 54%, transparent 57%),
    linear-gradient(140deg, transparent 42%, rgba(150, 89, 52, 0.58) 43%, transparent 45%);
}

.peinados-advice-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.35vw, 3.45rem);
  font-weight: 400;
  line-height: 1.02;
}

.peinados-advice-copy p {
  max-width: 390px;
  margin-block: 18px 24px;
  color: rgba(91, 68, 59, 0.78);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.72;
}

.peinados-recommendations {
  padding-block: 26px 86px;
}

.peinados-recommendation-panel {
  padding: clamp(30px, 4.2vw, 48px) clamp(24px, 4vw, 54px);
  border: 1px solid rgba(91, 68, 59, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(74% 110% at 0% 0%, rgba(198, 122, 83, 0.12), transparent 72%),
    rgba(255, 253, 250, 0.76);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.peinados-recommendation-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 30px;
}

.peinados-recommendation-grid article {
  padding: 4px clamp(12px, 1.8vw, 26px);
  border-left: 1px solid rgba(91, 68, 59, 0.1);
}

.peinados-recommendation-grid article:first-child {
  border-left: 0;
}

.peinados-recommendation-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  color: var(--amber-deep);
  border: 1px solid rgba(150, 89, 52, 0.18);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.88rem;
  font-weight: 400;
}

.peinados-recommendation-grid h3 {
  margin: 0 0 10px;
  color: var(--espresso);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.42;
}

.peinados-recommendation-grid p {
  max-width: 150px;
  margin: 0 auto;
  color: rgba(91, 68, 59, 0.72);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.58;
}

.tratamiento-main {
  background:
    radial-gradient(48% 30% at 78% 3%, rgba(198, 122, 83, 0.13), transparent 72%),
    radial-gradient(42% 28% at 7% 16%, rgba(255, 253, 250, 0.94), transparent 72%),
    linear-gradient(180deg, rgba(253, 249, 245, 1), rgba(248, 240, 233, 0.95));
}

.tratamiento-hero {
  min-height: 100svh;
  padding-block: clamp(118px, 14vh, 154px) clamp(52px, 7vh, 80px);
  --service-hero-position: 60% center;
}

.tratamiento-hero::before {
  background:
    radial-gradient(58% 70% at 12% 52%, rgba(255, 253, 250, 0.9) 0%, rgba(255, 253, 250, 0.58) 45%, rgba(255, 253, 250, 0.16) 70%, transparent 92%),
    linear-gradient(90deg, rgba(251, 247, 241, 0.76) 0%, rgba(251, 247, 241, 0.44) 28%, rgba(251, 247, 241, 0.12) 58%, transparent 82%);
}

.tratamiento-hero-shell {
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 68px);
}

.tratamiento-hero-copy {
  width: min(100%, 430px);
  max-width: 430px;
}

.tratamiento-hero .color-hero-copy h1 {
  font-size: clamp(2.85rem, 4.6vw, 4.4rem);
  line-height: 0.98;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.tratamiento-hero .color-hero-copy h1 em {
  max-width: 410px;
  color: var(--taupe-deep);
  font-size: 0.5em;
  line-height: 1.12;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.tratamiento-hero .color-hero-copy p:not(.eyebrow) {
  max-width: 360px;
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.66;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.tratamiento-signature {
  position: relative;
  max-width: 100% !important;
  margin: 22px 0 0 !important;
  padding-left: 34px;
  color: rgba(150, 89, 52, 0.82) !important;
  font-family: var(--sans);
  font-size: 0.64rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em;
  line-height: 1.45 !important;
  text-transform: uppercase;
  overflow-wrap: normal !important;
  word-break: normal;
  hyphens: none;
}

.tratamiento-signature::before {
  content: "☽";
  position: absolute;
  top: -2px;
  left: 0;
  color: var(--amber-deep);
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0;
}

.tratamiento-hero-media {
  min-height: 0;
  border-radius: 0;
}

.tratamiento-hero-media img {
  object-position: var(--service-hero-position);
}

.tratamiento-benefits {
  margin-top: -34px;
}

.tratamiento-benefit-panel {
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.94), rgba(252, 246, 241, 0.86)),
    radial-gradient(80% 120% at 82% 100%, rgba(198, 122, 83, 0.12), transparent 72%);
}

.tratamiento-benefit-panel article {
  min-height: 124px;
}

.tratamiento-services {
  padding-block: clamp(78px, 8vw, 116px) 38px;
}

.tratamiento-section-heading {
  max-width: 760px;
  margin-bottom: clamp(34px, 4.2vw, 56px);
}

.tratamiento-section-heading h2 {
  font-size: clamp(2.5rem, 4.1vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
}

.tratamiento-section-heading h2 em,
.tratamiento-product-copy h2 em {
  color: var(--amber-deep);
  font-style: italic;
  font-weight: 400;
}

.tratamiento-service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.3vw, 16px);
  max-width: 1160px;
  margin-inline: auto;
}

.tratamiento-service-card {
  overflow: hidden;
  border: 1px solid rgba(91, 68, 59, 0.1);
  border-radius: calc(var(--radius) - 2px);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.92), rgba(253, 248, 243, 0.84)),
    rgba(255, 253, 250, 0.82);
  box-shadow: 0 22px 50px -38px rgba(91, 68, 59, 0.38);
  text-align: center;
}

.tratamiento-service-card img {
  width: 100%;
  aspect-ratio: 1 / 1.04;
  object-fit: cover;
  object-position: center;
}

.tratamiento-service-card h3 {
  max-width: 190px;
  min-height: 50px;
  margin: 22px auto 12px;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.36vw, 1.34rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 0.98;
  text-transform: uppercase;
}

.tratamiento-service-card p {
  max-width: 190px;
  margin: 0 auto 28px;
  color: rgba(91, 68, 59, 0.76);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.62;
}

.tratamiento-product-story {
  padding-block: 28px 42px;
}

.tratamiento-product-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  overflow: hidden;
  border: 1px solid rgba(91, 68, 59, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 253, 250, 0.56), rgba(255, 253, 250, 0.94) 58%, rgba(255, 253, 250, 0.9)),
    rgba(255, 253, 250, 0.76);
  box-shadow: var(--shadow-soft);
}

.tratamiento-product-card figure {
  min-height: 320px;
}

.tratamiento-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tratamiento-product-copy {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 320px;
  padding: clamp(34px, 4.8vw, 64px);
}

.tratamiento-product-copy::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 126px;
  height: 126px;
  pointer-events: none;
  opacity: 0.13;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, transparent 54%, rgba(150, 89, 52, 0.58) 56%, transparent 59%),
    linear-gradient(140deg, transparent 42%, rgba(150, 89, 52, 0.58) 43%, transparent 45%);
}

.tratamiento-product-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.35vw, 3.45rem);
  font-weight: 400;
  line-height: 1.02;
}

.tratamiento-product-copy p {
  max-width: 400px;
  margin-block: 18px 24px;
  color: rgba(91, 68, 59, 0.78);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.72;
}

.tratamiento-process {
  padding-block: 26px 86px;
}

.tratamiento-process-panel {
  padding: clamp(30px, 4.2vw, 48px) clamp(24px, 4vw, 54px);
  border: 1px solid rgba(91, 68, 59, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(74% 110% at 0% 0%, rgba(198, 122, 83, 0.12), transparent 72%),
    rgba(255, 253, 250, 0.76);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.tratamiento-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 30px;
}

.tratamiento-process-grid article {
  position: relative;
  padding: 4px clamp(12px, 1.8vw, 26px);
  border-left: 1px solid rgba(91, 68, 59, 0.1);
}

.tratamiento-process-grid article:first-child {
  border-left: 0;
}

.tratamiento-process-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  color: var(--amber-deep);
  border: 1px solid rgba(150, 89, 52, 0.18);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.88rem;
  font-weight: 400;
}

.tratamiento-process-grid h3 {
  margin: 0 0 10px;
  color: var(--espresso);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.42;
  text-transform: uppercase;
}

.tratamiento-process-grid p {
  max-width: 160px;
  margin: 0 auto;
  color: rgba(91, 68, 59, 0.72);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.58;
}

.galeria-page {
  background: var(--ivory);
}

.galeria-main {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.94), rgba(251, 247, 241, 0.98) 38%, rgba(246, 239, 231, 0.92)),
    var(--ivory);
}

.galeria-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: clamp(118px, 14vh, 154px) 0 clamp(52px, 7vh, 80px);
  overflow: clip;
  isolation: isolate;
  background: var(--espresso);
}

.galeria-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(58% 72% at 12% 50%, rgba(255, 253, 250, 0.82), rgba(255, 253, 250, 0.48) 48%, rgba(255, 253, 250, 0.12) 72%, transparent 92%),
    linear-gradient(90deg, rgba(251, 247, 241, 0.72) 0%, rgba(251, 247, 241, 0.4) 30%, rgba(251, 247, 241, 0.08) 60%, transparent 84%);
}

.galeria-hero::after {
  display: none;
}

.galeria-hero-shell {
  position: static;
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 68px);
  align-items: center;
  min-height: calc(100svh - clamp(190px, 21vh, 234px));
}

.galeria-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 420px;
  text-shadow: 0 1px 18px rgba(255, 253, 250, 0.42);
}

.galeria-hero-copy h1 {
  max-width: 430px;
  margin: 0;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: clamp(3.1rem, 5.6vw, 5.25rem);
  font-weight: 400;
  line-height: 0.96;
}

.galeria-hero-copy p:not(.eyebrow) {
  max-width: 360px;
  margin: 22px 0 0;
  color: rgba(47, 37, 34, 0.78);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
  font-weight: 300;
  line-height: 1.46;
}

.galeria-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.galeria-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.galeria-hero-media img {
  width: 100%;
  height: 112%;
  min-height: 112%;
  object-fit: cover;
  object-position: 60% center;
}

.galeria-showcase {
  position: relative;
  padding: clamp(72px, 8vw, 118px) 0 clamp(44px, 6vw, 76px);
}

.galeria-showcase::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 5%, rgba(233, 207, 200, 0.34), transparent 32%),
    radial-gradient(circle at 84% 16%, rgba(232, 214, 198, 0.42), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 248, 0.82), rgba(246, 239, 231, 0.8));
}

.galeria-showcase-shell {
  position: relative;
  z-index: 1;
}

.galeria-filter-head {
  max-width: 860px;
  margin: 0 auto clamp(30px, 4vw, 48px);
  text-align: center;
}

.galeria-filter-head h2 {
  max-width: 900px;
  margin: 12px auto 0;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.7vw, 5.2rem);
  font-weight: 400;
  line-height: 1.02;
}

.galeria-masonry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
  align-items: stretch;
}

.galeria-item {
  aspect-ratio: 1.18 / 1;
  margin: 0;
  overflow: hidden;
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px -34px rgba(30, 23, 21, 0.45);
}

.galeria-item-wide {
  grid-column: auto;
  aspect-ratio: 1.18 / 1;
}

.galeria-item-tall {
  grid-row: auto;
  aspect-ratio: 1.18 / 1;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 800ms var(--ease);
}

.galeria-item:hover img {
  transform: scale(1.035);
}

.galeria-item[hidden] {
  display: none;
}

@media (max-width: 1180px) {
  .galeria-masonry {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .galeria-hero {
    min-height: 100svh;
    padding-block: 112px 52px;
  }

  .galeria-hero::before {
    background:
      radial-gradient(58% 72% at 12% 50%, rgba(255, 253, 250, 0.84), rgba(255, 253, 250, 0.5) 48%, rgba(255, 253, 250, 0.12) 72%, transparent 92%),
      linear-gradient(90deg, rgba(251, 247, 241, 0.74) 0%, rgba(251, 247, 241, 0.42) 30%, rgba(251, 247, 241, 0.08) 60%, transparent 84%);
  }

  .galeria-hero-shell {
    grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
  }

  .galeria-hero-media {
    min-height: 0;
  }

  .galeria-hero-copy {
    max-width: 390px;
  }

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

  .galeria-item-wide {
    grid-column: auto;
  }

}

@media (max-width: 640px) {
  .galeria-hero {
    padding-block: 96px 42px;
  }

  .galeria-hero-shell {
    grid-template-columns: 1fr;
  }

  .galeria-hero-copy {
    max-width: min(390px, 92vw);
  }

  .galeria-hero-copy h1 {
    font-size: clamp(2.55rem, 9.6vw, 3.65rem);
    line-height: 1.02;
    overflow-wrap: normal;
  }

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

  .galeria-filter-head h2 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .galeria-masonry {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .galeria-item,
  .galeria-item-wide,
  .galeria-item-tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1.18 / 1;
  }

}

.site-footer {
  padding-block: 34px;
  color: var(--ivory);
  background: var(--espresso);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 24px;
  align-items: center;
}

.footer-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid span,
.footer-grid address {
  color: rgba(255, 250, 244, 0.68);
  font-style: normal;
}

.footer-grid address {
  display: grid;
  gap: 4px;
}

.footer-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: inherit;
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 250, 244, 0.26);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-admin-access {
  justify-self: end;
  min-height: 44px;
  padding-inline: 18px;
  border: 1px solid rgba(255, 250, 244, 0.22);
  border-radius: 999px;
  color: rgba(255, 250, 244, 0.78);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-admin-access:hover {
  color: var(--ivory);
  border-color: rgba(255, 250, 244, 0.5);
}

.dashboard-page {
  min-height: 100svh;
  color: var(--espresso);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.94), rgba(246, 239, 231, 0.96)),
    var(--ivory);
}

.dashboard-page::before,
.dashboard-page::after {
  display: none;
}

.dashboard-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
  padding: 16px clamp(18px, 3vw, 36px);
  border-bottom: 1px solid rgba(30, 23, 21, 0.1);
  background: rgba(255, 253, 250, 0.92);
  backdrop-filter: blur(18px);
}

.dashboard-brand {
  display: grid;
  text-decoration: none;
}

.dashboard-header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.dashboard-main {
  min-height: calc(100svh - 82px);
}

.dashboard-login-screen {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: calc(100svh - 82px);
  padding: clamp(28px, 6vw, 72px) clamp(18px, 4vw, 48px);
}

.dashboard-login-card {
  width: min(520px, 100%);
  margin-inline: auto;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(30, 23, 21, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.96), rgba(250, 244, 237, 0.9)),
    var(--cream);
  box-shadow: var(--shadow-lift);
}

.dashboard-login-card h1 {
  font-size: clamp(3rem, 5vw, 4.65rem);
}

.dashboard-login-card h1 em,
.dashboard-hero h1 em {
  color: var(--amber-deep);
  font-style: italic;
}

.dashboard-login-copy {
  margin-block: 20px 26px;
  color: rgba(91, 68, 59, 0.78);
  font-size: 1rem;
  line-height: 1.7;
}

.dashboard-login-form,
.dashboard-add-form {
  display: grid;
  gap: 14px;
}

.dashboard-login-form label,
.dashboard-add-form label,
.dashboard-notes {
  display: grid;
  gap: 7px;
  color: var(--muted-brown);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-login-form input,
.dashboard-add-form input,
.dashboard-add-form select,
.dashboard-add-form textarea,
.dashboard-toolbar input,
.dashboard-toolbar select,
.dashboard-service-row input,
.dashboard-service-row textarea,
.dashboard-status select,
.dashboard-notes textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(30, 23, 21, 0.14);
  border-radius: var(--radius);
  color: var(--espresso);
  background: rgba(255, 255, 255, 0.68);
}

.dashboard-login-form input,
.dashboard-add-form input,
.dashboard-add-form select,
.dashboard-toolbar input,
.dashboard-toolbar select,
.dashboard-service-row input,
.dashboard-status select {
  min-height: 44px;
  padding: 11px 13px;
}

.dashboard-add-form textarea,
.dashboard-notes textarea,
.dashboard-service-row textarea {
  padding: 12px 13px;
  resize: vertical;
}

.dashboard-app {
  display: grid;
  grid-template-columns: 238px minmax(0, 1fr);
  width: 100%;
  max-width: 100%;
  min-height: calc(100svh - 82px);
  overflow-x: clip;
}

.dashboard-sidebar {
  position: sticky;
  top: 82px;
  align-self: start;
  height: calc(100svh - 82px);
  padding: 24px 18px;
  border-right: 1px solid rgba(30, 23, 21, 0.1);
  background: rgba(255, 253, 250, 0.64);
}

.dashboard-sidebar nav {
  display: grid;
  gap: 8px;
}

.dashboard-sidebar a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: rgba(91, 68, 59, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.dashboard-sidebar a:hover {
  color: var(--espresso);
  background: rgba(255, 255, 255, 0.72);
}

.dashboard-sidebar a.is-active,
.dashboard-sidebar a[aria-current="page"] {
  color: var(--espresso);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(248, 239, 228, 0.86)),
    rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(30, 23, 21, 0.12);
}

.dashboard-workspace {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 34px);
}

[data-dashboard-view][hidden] {
  display: none !important;
}

.dashboard-hero,
.dashboard-panel,
.dashboard-metrics article {
  border: 1px solid rgba(30, 23, 21, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.94), rgba(250, 244, 237, 0.84)),
    rgba(255, 253, 250, 0.82);
  box-shadow: 0 18px 46px -34px rgba(91, 68, 59, 0.34);
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  padding: clamp(26px, 4vw, 42px);
}

.dashboard-hero h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 4.6vw, 5rem);
  line-height: 0.98;
}

.dashboard-hero p:not(.eyebrow) {
  margin-top: 14px;
  color: rgba(91, 68, 59, 0.78);
  text-transform: capitalize;
}

.dashboard-hero-actions,
.dashboard-toolbar,
.dashboard-entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-metrics article {
  padding: 24px;
}

.dashboard-metrics span {
  display: block;
  color: var(--amber-deep);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 0.9;
}

.dashboard-metrics p {
  margin-top: 12px;
  color: rgba(91, 68, 59, 0.76);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dashboard-stats-panel {
  display: grid;
  gap: 16px;
}

.dashboard-stats-heading p:not(.eyebrow) {
  max-width: 56ch;
  margin-top: 8px;
  color: rgba(91, 68, 59, 0.68);
}

.dashboard-stats-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: end;
}

.dashboard-stats-filters label {
  display: grid;
  gap: 6px;
  min-width: 150px;
  color: var(--muted-brown);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-stats-filters select,
.dashboard-stats-filters input {
  min-height: 44px;
  padding: 11px 13px;
  border: 1px solid rgba(30, 23, 21, 0.14);
  border-radius: var(--radius);
  color: var(--espresso);
  background: rgba(255, 255, 255, 0.72);
}

.dashboard-stats-state {
  min-height: 24px;
  color: rgba(91, 68, 59, 0.66);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dashboard-stats-state .is-error {
  color: #8b3e2f;
}

.dashboard-stats-kpis {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.dashboard-stats-kpis article,
.dashboard-stats-skeleton,
.dashboard-stats-occupancy-summary article {
  display: grid;
  gap: 8px;
  min-width: 0;
  min-height: 134px;
  padding: 16px;
  border: 1px solid rgba(30, 23, 21, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 250, 244, 0.52)),
    rgba(255, 255, 255, 0.48);
}

.dashboard-stats-kpis span,
.dashboard-stats-chart > div:first-child span,
.dashboard-stats-occupancy-summary span {
  color: rgba(91, 68, 59, 0.62);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dashboard-stats-kpis strong,
.dashboard-stats-occupancy-summary strong {
  overflow-wrap: anywhere;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  font-weight: 500;
  line-height: 1;
}

.dashboard-stats-kpis small {
  color: rgba(91, 68, 59, 0.62);
  font-size: 0.74rem;
  line-height: 1.35;
}

.dashboard-stats-skeleton {
  position: relative;
  overflow: hidden;
}

.dashboard-stats-skeleton::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  animation: statsSkeleton 1.4s ease-in-out infinite;
}

@keyframes statsSkeleton {
  to {
    transform: translateX(100%);
  }
}

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

.dashboard-stats-chart {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 280px;
  padding: 18px;
  border: 1px solid rgba(30, 23, 21, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
}

.dashboard-stats-chart > div:first-child strong {
  display: block;
  margin-top: 3px;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.dashboard-stats-bars,
.dashboard-stats-timeline {
  display: grid;
  gap: 10px;
}

.dashboard-stats-bar,
.dashboard-stats-timeline-row {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.dashboard-stats-bar > div,
.dashboard-stats-timeline-row {
  color: rgba(91, 68, 59, 0.72);
  font-size: 0.78rem;
}

.dashboard-stats-bar > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-stats-bar strong,
.dashboard-stats-timeline-row span {
  overflow: hidden;
  color: var(--espresso);
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-stats-bar span,
.dashboard-stats-timeline-row strong {
  color: rgba(91, 68, 59, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.dashboard-stats-bar i,
.dashboard-stats-timeline-row i,
.dashboard-stats-timeline-row b {
  display: block;
  height: 10px;
  border-radius: 999px;
}

.dashboard-stats-bar i {
  background: linear-gradient(90deg, rgba(143, 84, 45, 0.32), rgba(143, 84, 45, 0.72));
}

.dashboard-stats-timeline-row {
  grid-template-columns: 72px minmax(0, 1fr) minmax(82px, auto);
  align-items: center;
}

.dashboard-stats-timeline-row div {
  display: grid;
  gap: 4px;
  padding: 7px;
  border-radius: 999px;
  background: rgba(236, 225, 212, 0.42);
}

.dashboard-stats-timeline-row i {
  background: rgba(143, 84, 45, 0.72);
}

.dashboard-stats-timeline-row b {
  background: rgba(102, 122, 95, 0.62);
}

.dashboard-stats-occupancy-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.dashboard-stats-occupancy-summary article {
  min-height: 92px;
  padding: 12px;
}

.dashboard-panel {
  padding: clamp(20px, 3vw, 30px);
}

.dashboard-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.dashboard-panel h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.dashboard-toolbar {
  justify-content: flex-end;
}

.dashboard-toolbar input {
  width: min(330px, 48vw);
}

.dashboard-toolbar select {
  width: 190px;
}

.dashboard-entry-list,
.dashboard-message-list,
.dashboard-agenda,
.dashboard-bars,
.dashboard-service-editor,
.dashboard-day-slots {
  display: grid;
  gap: 10px;
}

.dashboard-empty {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px dashed rgba(91, 68, 59, 0.22);
  border-radius: var(--radius);
  color: rgba(91, 68, 59, 0.72);
}

.dashboard-empty strong {
  color: var(--espresso);
}

.dashboard-entry {
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) minmax(180px, 0.8fr) minmax(150px, 0.42fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(30, 23, 21, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
}

.dashboard-entry.is-pending {
  border-color: rgba(150, 89, 52, 0.22);
}

.dashboard-entry.is-confirmed {
  border-color: rgba(102, 122, 95, 0.34);
  background: rgba(248, 252, 246, 0.62);
}

.dashboard-entry.is-completed {
  opacity: 0.78;
}

.dashboard-entry.is-cancelled,
.dashboard-entry.is-no_show {
  opacity: 0.68;
  background: rgba(255, 255, 255, 0.32);
}

.dashboard-entry.is-calendar-block {
  border-style: dashed;
  background: rgba(236, 225, 212, 0.44);
}

.dashboard-entry-type,
.dashboard-message span {
  color: var(--amber-deep);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dashboard-entry h3,
.dashboard-message h3 {
  margin-top: 3px;
  font-size: 1.7rem;
}

.dashboard-entry p,
.dashboard-message p,
.dashboard-danger-zone p {
  color: rgba(91, 68, 59, 0.78);
}

.dashboard-entry-price {
  margin-top: 6px;
  color: var(--amber-deep) !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dashboard-entry small {
  display: block;
  margin-top: 8px;
  color: rgba(91, 68, 59, 0.64);
}

.dashboard-entry-meta {
  display: grid;
  gap: 5px;
  color: rgba(91, 68, 59, 0.78);
  font-size: 0.86rem;
}

.dashboard-status {
  display: grid;
  gap: 5px;
}

.dashboard-status span {
  color: var(--muted-brown);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dashboard-entry-actions {
  justify-content: flex-end;
}

.dashboard-entry-actions a,
.dashboard-entry-actions button,
.dashboard-message button {
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid rgba(30, 23, 21, 0.12);
  border-radius: var(--radius);
  color: var(--espresso);
  background: rgba(255, 253, 250, 0.62);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.dashboard-entry-actions button:disabled,
.dashboard-agenda-card-actions button:disabled,
.dashboard-calendar-row-actions button:disabled {
  opacity: 0.46;
  pointer-events: none;
}

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

.dashboard-agenda-panel {
  grid-column: 1 / -1;
}

.dashboard-agenda-nav,
.dashboard-agenda-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.dashboard-agenda-nav label,
.dashboard-agenda-toolbar label,
.dashboard-agenda-create label {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: var(--muted-brown);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-agenda-nav input,
.dashboard-agenda-toolbar select,
.dashboard-agenda-create input,
.dashboard-agenda-create select,
.dashboard-agenda-create textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(30, 23, 21, 0.14);
  border-radius: var(--radius);
  color: var(--espresso);
  background: rgba(255, 255, 255, 0.7);
}

.dashboard-agenda-nav input,
.dashboard-agenda-toolbar select,
.dashboard-agenda-create input,
.dashboard-agenda-create select {
  min-height: 44px;
  padding: 11px 13px;
}

.dashboard-agenda-create textarea {
  min-height: 88px;
  padding: 12px 13px;
  resize: vertical;
}

.dashboard-agenda-nav input {
  width: 164px;
}

.dashboard-agenda-toolbar {
  justify-content: flex-start;
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid rgba(30, 23, 21, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.58);
}

.dashboard-agenda-toolbar label {
  flex: 1 1 220px;
}

.dashboard-agenda-summary-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.dashboard-agenda-summary-grid article {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 15px;
  border: 1px solid rgba(30, 23, 21, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 250, 244, 0.5)),
    rgba(255, 255, 255, 0.48);
}

.dashboard-agenda-summary-grid span {
  color: rgba(91, 68, 59, 0.62);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dashboard-agenda-summary-grid strong {
  color: var(--espresso);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  font-weight: 500;
  line-height: 1;
}

.dashboard-agenda-create {
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) repeat(3, minmax(150px, 1fr));
  gap: 12px;
  align-items: end;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(143, 84, 45, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(70% 100% at 6% 0%, rgba(216, 188, 166, 0.22), transparent 72%),
    rgba(255, 253, 250, 0.74);
}

.dashboard-calendar-create {
  margin: 18px 0 0;
}

.dashboard-agenda-create h3 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.05;
}

.dashboard-agenda-create-note {
  grid-column: span 2;
}

.dashboard-agenda-create .button {
  min-height: 44px;
}

.dashboard-agenda-create .form-status {
  grid-column: 1 / -1;
  margin-top: 0;
}

.dashboard-agenda-day-title {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  padding: 16px;
  border: 1px solid rgba(30, 23, 21, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
}

.dashboard-agenda-day-title span,
.dashboard-agenda-section-head span {
  color: var(--amber-deep);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dashboard-agenda-day-title strong {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.45rem);
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
}

.dashboard-agenda-day-title p {
  color: rgba(91, 68, 59, 0.68);
  font-size: 0.9rem;
}

.dashboard-agenda-section {
  display: grid;
  gap: 10px;
}

.dashboard-agenda-section + .dashboard-agenda-section {
  margin-top: 16px;
}

.dashboard-agenda-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 2px;
}

.dashboard-agenda-section-head h3 {
  font-size: 1.35rem;
}

.dashboard-agenda-section-head span {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  border: 1px solid rgba(143, 84, 45, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.78);
}

.dashboard-agenda-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(30, 23, 21, 0.09);
  border-left: 4px solid rgba(143, 84, 45, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 253, 250, 0.54)),
    rgba(255, 255, 255, 0.5);
}

.dashboard-agenda-card.is-confirmed {
  border-left-color: rgba(102, 122, 95, 0.72);
  background: rgba(249, 252, 247, 0.68);
}

.dashboard-agenda-card.is-completed {
  border-left-color: rgba(30, 23, 21, 0.24);
  opacity: 0.78;
}

.dashboard-agenda-card.is-cancelled,
.dashboard-agenda-card.is-no_show {
  border-left-color: rgba(117, 77, 67, 0.34);
  opacity: 0.7;
  background: rgba(255, 255, 255, 0.34);
}

.dashboard-agenda-card.is-calendar-block {
  border-left-color: rgba(91, 68, 59, 0.24);
  border-style: dashed;
  background: rgba(236, 225, 212, 0.48);
}

.dashboard-agenda-card time {
  display: grid;
  gap: 6px;
  padding: 12px;
  border-radius: var(--radius);
  color: var(--amber-deep);
  background: rgba(255, 250, 244, 0.82);
}

.dashboard-agenda-card time strong {
  color: var(--espresso);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 0.95;
}

.dashboard-agenda-card time span {
  color: rgba(91, 68, 59, 0.62);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-agenda-card-main {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.dashboard-agenda-card-main h3 {
  margin-top: 4px;
  font-size: clamp(1.55rem, 2.3vw, 2.1rem);
  line-height: 1.02;
}

.dashboard-agenda-card-main p {
  color: rgba(91, 68, 59, 0.78);
}

.dashboard-agenda-card-details {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.dashboard-agenda-card-details span {
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(30, 23, 21, 0.08);
  border-radius: 999px;
  color: rgba(91, 68, 59, 0.76);
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 700;
}

.dashboard-agenda-note {
  margin: 0;
  padding: 12px;
  border-radius: var(--radius);
  color: rgba(91, 68, 59, 0.74) !important;
  background: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.dashboard-agenda-note.is-private {
  border: 1px solid rgba(143, 84, 45, 0.14);
  background: rgba(255, 246, 238, 0.7);
}

.dashboard-agenda-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  max-width: 260px;
}

.dashboard-agenda-card-actions a,
.dashboard-agenda-card-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid rgba(30, 23, 21, 0.12);
  border-radius: var(--radius);
  color: var(--espresso);
  background: rgba(255, 253, 250, 0.68);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.dashboard-agenda-card-actions a:hover,
.dashboard-agenda-card-actions button:hover {
  border-color: rgba(30, 23, 21, 0.28);
  background: rgba(255, 250, 244, 0.94);
}

.dashboard-agenda-item {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
}

.dashboard-agenda-item time {
  display: grid;
  gap: 5px;
  color: var(--amber-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dashboard-agenda-item time span {
  color: var(--espresso);
  font-size: 1.18rem;
  letter-spacing: 0;
}

.dashboard-agenda-item p {
  color: rgba(91, 68, 59, 0.74);
}

.dashboard-bar {
  display: grid;
  gap: 8px;
}

.dashboard-bar div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(91, 68, 59, 0.78);
}

.dashboard-bar i {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--espresso), var(--amber-deep));
}

.dashboard-add-form {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dashboard-add-message,
.dashboard-add-form .button {
  grid-column: 1 / -1;
}

.dashboard-message {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
}

.dashboard-message small {
  display: block;
  margin-top: 10px;
  color: rgba(91, 68, 59, 0.6);
}

.dashboard-service-category {
  display: grid;
  gap: 12px;
}

.dashboard-service-category-head {
  padding: 14px 16px;
  border: 1px solid rgba(30, 23, 21, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.72);
}

.dashboard-service-category-head span,
.dashboard-service-row-head span {
  color: var(--amber-deep);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dashboard-service-category-head h3 {
  font-size: 1.7rem;
}

.dashboard-service-category-head p {
  color: rgba(91, 68, 59, 0.68);
}

.dashboard-service-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.2fr) 110px 140px 90px;
  gap: 12px;
  align-items: end;
  padding: 14px;
  border: 1px solid rgba(30, 23, 21, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
}

.dashboard-service-row.is-disabled {
  opacity: 0.68;
}

.dashboard-service-row-head,
.dashboard-service-prices,
.dashboard-service-actions {
  grid-column: 1 / -1;
}

.dashboard-service-row-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.dashboard-service-row-head strong {
  display: block;
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.dashboard-service-row label {
  display: grid;
  gap: 6px;
  color: var(--muted-brown);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-service-toggle {
  display: flex !important;
  min-height: 44px;
  align-items: center;
  gap: 8px !important;
}

.dashboard-service-toggle input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--espresso);
}

.dashboard-service-row textarea {
  min-height: 92px;
  border: 1px solid rgba(30, 23, 21, 0.14);
  border-radius: var(--radius);
  color: var(--espresso);
  background: rgba(255, 255, 255, 0.68);
}

.dashboard-service-prices small {
  color: rgba(91, 68, 59, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: none;
}

.dashboard-service-actions {
  display: flex;
  justify-content: flex-end;
}

.dashboard-calendar-panel {
  overflow: hidden;
}

.dashboard-calendar-topbar {
  display: grid;
  grid-template-columns: minmax(210px, 0.85fr) auto minmax(360px, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.dashboard-calendar-period {
  display: grid;
  gap: 6px;
}

.dashboard-calendar-period h2 {
  text-transform: capitalize;
}

.dashboard-calendar-period span {
  color: rgba(91, 68, 59, 0.64);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-calendar-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.dashboard-calendar-view-switch {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  min-height: 48px;
  padding: 4px;
  border: 1px solid rgba(30, 23, 21, 0.1);
  border-radius: var(--radius);
  background: rgba(236, 225, 212, 0.5);
}

.dashboard-calendar-view-switch button {
  min-width: 0;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  color: rgba(91, 68, 59, 0.72);
  background: transparent;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-calendar-view-switch button.is-active {
  color: var(--ivory);
  background: var(--espresso);
}

.dashboard-calendar-new {
  white-space: nowrap;
}

.dashboard-calendar-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(91, 68, 59, 0.66);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dashboard-calendar-status-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.dashboard-calendar-status-row i {
  display: block;
  width: 8px;
  height: 22px;
  border-radius: 999px;
  background: var(--legend-color, rgba(143, 84, 45, 0.58));
}

.dashboard-calendar-status-row .is-pending {
  --legend-color: rgba(143, 84, 45, 0.68);
}

.dashboard-calendar-status-row .is-confirmed {
  --legend-color: rgba(89, 124, 98, 0.74);
}

.dashboard-calendar-status-row .is-completed {
  --legend-color: rgba(55, 63, 66, 0.5);
}

.dashboard-calendar-status-row .is-cancelled {
  --legend-color: rgba(139, 82, 76, 0.56);
}

.dashboard-calendar-status-row .is-blocked-holiday {
  --legend-color: rgba(82, 121, 145, 0.72);
}

.dashboard-calendar-status-row .is-blocked-personal {
  --legend-color: rgba(148, 86, 105, 0.68);
}

.dashboard-calendar-status-row .is-blocked-training {
  --legend-color: rgba(141, 119, 61, 0.72);
}

.dashboard-calendar-status-row .is-blocked-other {
  --legend-color: rgba(112, 92, 78, 0.62);
}

.dashboard-calendar-view[hidden] {
  display: none;
}

.dashboard-calendar-weekdays,
.dashboard-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.dashboard-calendar-weekdays {
  margin-bottom: 8px;
}

.dashboard-calendar-weekdays span {
  color: rgba(91, 68, 59, 0.52);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
}

.dashboard-calendar-day {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 136px;
  padding: 10px;
  border: 1px solid rgba(30, 23, 21, 0.1);
  border-radius: var(--radius);
  color: var(--espresso);
  background: rgba(255, 255, 255, 0.48);
  font: inherit;
  text-align: left;
  transition:
    border-color 180ms var(--ease),
    background 180ms var(--ease),
    transform 180ms var(--ease);
}

.dashboard-calendar-day:hover {
  border-color: rgba(30, 23, 21, 0.28);
  transform: translateY(-1px);
}

.dashboard-calendar-date-button {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 8px;
  min-height: 34px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.dashboard-calendar-date-button span {
  font-weight: 800;
}

.dashboard-calendar-date-button small {
  color: rgba(91, 68, 59, 0.58);
  font-size: 0.66rem;
  font-weight: 700;
  text-align: right;
}

.dashboard-calendar-day.has-bookings {
  border-color: rgba(200, 135, 95, 0.42);
  background: rgba(255, 250, 244, 0.92);
}

.dashboard-calendar-day.has-blocks {
  border-style: dashed;
}

.dashboard-calendar-day.is-selected {
  border-color: var(--espresso);
  background: rgba(255, 250, 244, 0.96);
}

.dashboard-calendar-day.is-muted {
  color: rgba(91, 68, 59, 0.46);
  background: rgba(255, 255, 255, 0.28);
}

.dashboard-calendar-day-events {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.dashboard-calendar-chip {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid rgba(30, 23, 21, 0.08);
  border-left: 3px solid rgba(143, 84, 45, 0.58);
  border-radius: calc(var(--radius) - 2px);
  color: var(--espresso);
  background: rgba(236, 225, 212, 0.54);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.dashboard-calendar-chip.is-confirmed {
  border-left-color: rgba(102, 122, 95, 0.72);
  background: rgba(242, 248, 240, 0.74);
}

.dashboard-calendar-chip.is-completed {
  border-left-color: rgba(30, 23, 21, 0.28);
  opacity: 0.72;
}

.dashboard-calendar-chip.is-cancelled,
.dashboard-calendar-chip.is-no_show {
  border-left-color: rgba(117, 77, 67, 0.34);
  opacity: 0.64;
}

.dashboard-calendar-chip.is-blocked {
  border-style: dashed;
  border-left-color: rgba(91, 68, 59, 0.24);
}

.dashboard-calendar-chip span {
  color: var(--amber-deep);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dashboard-calendar-chip strong,
.dashboard-calendar-chip small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-calendar-chip strong {
  font-size: 0.78rem;
}

.dashboard-calendar-chip small {
  color: rgba(91, 68, 59, 0.66);
  font-size: 0.7rem;
}

.dashboard-calendar-chip.is-compact {
  padding: 6px 8px;
}

.dashboard-calendar-chip.is-compact strong {
  font-size: 0.72rem;
}

.dashboard-calendar-more {
  min-height: 30px;
  padding: 5px 8px;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  color: var(--amber-deep);
  background: rgba(255, 250, 244, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.dashboard-week-board {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.dashboard-calendar-list {
  display: grid;
  gap: 12px;
}

.dashboard-calendar-list section {
  display: grid;
  gap: 10px;
}

.dashboard-calendar-list-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
}

.dashboard-calendar-list-date button {
  border: 0;
  color: var(--espresso);
  background: transparent;
  font: inherit;
  font-family: var(--serif);
  font-size: 1.35rem;
  text-transform: capitalize;
}

.dashboard-calendar-list-date span {
  color: var(--amber-deep);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dashboard-calendar-row {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(30, 23, 21, 0.09);
  border-left: 4px solid rgba(143, 84, 45, 0.58);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
}

.dashboard-calendar-row.is-confirmed {
  border-left-color: rgba(102, 122, 95, 0.72);
}

.dashboard-calendar-row.is-completed {
  border-left-color: rgba(30, 23, 21, 0.28);
  opacity: 0.76;
}

.dashboard-calendar-row.is-blocked {
  border-style: dashed;
  border-left-color: rgba(91, 68, 59, 0.24);
}

.dashboard-calendar-row time {
  display: grid;
  gap: 4px;
  padding: 10px;
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 250, 244, 0.74);
}

.dashboard-calendar-row time strong {
  color: var(--espresso);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 0.95;
}

.dashboard-calendar-row time span,
.dashboard-calendar-row small {
  color: rgba(91, 68, 59, 0.66);
  font-size: 0.72rem;
}

.dashboard-calendar-row h3 {
  margin-top: 4px;
  font-size: 1.55rem;
}

.dashboard-calendar-row p {
  color: rgba(91, 68, 59, 0.76);
}

.dashboard-calendar-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  max-width: 250px;
}

.dashboard-calendar-row-actions button {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(30, 23, 21, 0.12);
  border-radius: calc(var(--radius) - 2px);
  color: var(--espresso);
  background: rgba(255, 253, 250, 0.68);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dashboard-calendar-day-head {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.dashboard-calendar-day-head article {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(30, 23, 21, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
}

.dashboard-calendar-day-head span {
  color: rgba(91, 68, 59, 0.62);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dashboard-calendar-day-head strong {
  color: var(--espresso);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}

.dashboard-calendar-day-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 16px;
  align-items: start;
}

.dashboard-calendar-free-slots {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(143, 84, 45, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.7);
}

.dashboard-calendar-free-slots h3 {
  font-size: 1.35rem;
}

.dashboard-calendar-free-slots button {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid rgba(30, 23, 21, 0.09);
  border-radius: calc(var(--radius) - 2px);
  color: var(--espresso);
  background: rgba(255, 255, 255, 0.56);
}

.dashboard-calendar-free-slots p {
  color: rgba(91, 68, 59, 0.68);
}

.dashboard-calendar-year-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.dashboard-calendar-year-card {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 14px;
  border: 1px solid rgba(30, 23, 21, 0.1);
  border-radius: var(--radius);
  color: var(--espresso);
  background: rgba(255, 255, 255, 0.5);
  text-align: left;
}

.dashboard-calendar-year-card.is-selected {
  border-color: var(--espresso);
  background: rgba(255, 250, 244, 0.92);
}

.dashboard-calendar-year-card span {
  color: var(--muted-brown);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dashboard-calendar-year-card strong {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 0.9;
}

.dashboard-calendar-year-card small {
  color: rgba(91, 68, 59, 0.64);
}

.dashboard-week-day {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(30, 23, 21, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.46);
}

.dashboard-week-day.is-selected {
  border-color: rgba(30, 23, 21, 0.28);
  background: rgba(255, 250, 244, 0.88);
}

.dashboard-week-day button {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.dashboard-week-day button span {
  color: var(--muted-brown);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-week-day button strong {
  color: var(--amber-deep);
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 0.9;
}

.dashboard-week-day small {
  display: block;
  color: rgba(91, 68, 59, 0.64);
  font-size: 0.72rem;
  line-height: 1.35;
}

.dashboard-day-toolbar {
  justify-content: flex-end;
  align-items: end;
}

.dashboard-day-toolbar label {
  display: grid;
  gap: 6px;
  color: var(--muted-brown);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-day-toolbar .button {
  min-height: 44px;
}

.dashboard-day-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.dashboard-day-summary article {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(30, 23, 21, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
}

.dashboard-day-summary span {
  color: var(--muted-brown);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dashboard-day-summary strong {
  color: var(--espresso);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.05;
}

.dashboard-day-slots {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dashboard-block-form {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  margin-top: 18px;
  padding: clamp(16px, 2.4vw, 24px);
  border: 1px solid rgba(30, 23, 21, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.7);
}

.dashboard-block-intro {
  grid-column: span 3;
  align-self: center;
}

.dashboard-block-form h3 {
  font-size: 1.7rem;
}

.dashboard-block-intro p:not(.eyebrow) {
  max-width: 34ch;
  margin-top: 8px;
  color: rgba(91, 68, 59, 0.68);
  font-size: 0.88rem;
  line-height: 1.55;
}

.dashboard-block-presets {
  display: flex;
  flex-wrap: wrap;
  grid-column: span 9;
  gap: 8px;
  align-self: center;
  justify-content: flex-end;
}

.dashboard-block-presets button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(30, 23, 21, 0.12);
  border-radius: 999px;
  color: rgba(91, 68, 59, 0.76);
  background: rgba(255, 255, 255, 0.56);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dashboard-block-presets button:hover {
  color: var(--espresso);
  border-color: rgba(150, 89, 52, 0.3);
  background: rgba(255, 255, 255, 0.86);
}

.dashboard-block-form label {
  display: grid;
  grid-column: span 2;
  gap: 6px;
  color: var(--muted-brown);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-block-note-field {
  grid-column: span 3;
}

.dashboard-block-form input,
.dashboard-block-form select {
  width: 100%;
  min-height: 44px;
  padding: 11px 13px;
  border: 1px solid rgba(30, 23, 21, 0.14);
  border-radius: var(--radius);
  color: var(--espresso);
  background: rgba(255, 255, 255, 0.68);
}

.dashboard-block-submit {
  grid-column: span 2;
  width: 100%;
  min-height: 48px;
}

.dashboard-block-helper {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(91, 68, 59, 0.62);
  font-size: 0.78rem;
  line-height: 1.45;
}

.dashboard-block-form .form-status {
  grid-column: 1 / -1;
}

.dashboard-weekly-schedule {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: clamp(16px, 2.4vw, 24px);
  border: 1px solid rgba(30, 23, 21, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.9), rgba(250, 244, 237, 0.72)),
    rgba(255, 250, 244, 0.7);
}

.dashboard-weekly-schedule .dashboard-block-intro {
  grid-column: 1 / -1;
  max-width: 780px;
}

.dashboard-buffer-setting {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
  gap: clamp(14px, 2vw, 24px);
  align-items: end;
  padding: 16px;
  border: 1px solid rgba(30, 23, 21, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.dashboard-buffer-setting h4 {
  margin: 0;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 400;
  line-height: 0.98;
}

.dashboard-buffer-setting p:not(.eyebrow) {
  max-width: 640px;
  margin: 8px 0 0;
  color: rgba(91, 68, 59, 0.68);
  font-size: 0.95rem;
  line-height: 1.55;
}

.dashboard-buffer-setting label {
  display: grid;
  gap: 6px;
}

.dashboard-buffer-setting label span {
  color: var(--amber-deep);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dashboard-buffer-setting select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(30, 23, 21, 0.14);
  border-radius: var(--radius);
  color: var(--espresso);
  background: rgba(255, 255, 255, 0.72);
}

.dashboard-weekly-schedule-list {
  display: grid;
  gap: 10px;
}

.dashboard-schedule-row {
  display: grid;
  grid-template-columns: minmax(150px, 1.2fr) minmax(160px, 1fr) minmax(120px, 0.75fr) minmax(120px, 0.75fr);
  gap: 10px;
  align-items: end;
  padding: 14px;
  border: 1px solid rgba(30, 23, 21, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
}

.dashboard-schedule-row.is-closed {
  background: rgba(236, 225, 212, 0.38);
}

.dashboard-schedule-day {
  display: grid;
  gap: 4px;
  align-self: center;
}

.dashboard-schedule-day span,
.dashboard-schedule-row label span {
  color: var(--amber-deep);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dashboard-schedule-day strong {
  color: var(--espresso);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1;
}

.dashboard-schedule-row label {
  display: grid;
  gap: 6px;
}

.dashboard-schedule-row input,
.dashboard-schedule-row select {
  width: 100%;
  min-height: 44px;
  padding: 11px 13px;
  border: 1px solid rgba(30, 23, 21, 0.14);
  border-radius: var(--radius);
  color: var(--espresso);
  background: rgba(255, 255, 255, 0.68);
}

.dashboard-schedule-row input:disabled {
  color: rgba(91, 68, 59, 0.44);
  background: rgba(255, 255, 255, 0.36);
}

.dashboard-weekly-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.dashboard-weekly-actions .form-status {
  margin: 0;
  color: rgba(91, 68, 59, 0.72);
  font-size: 0.82rem;
}

.dashboard-day-slot {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 12px;
  border: 1px solid rgba(30, 23, 21, 0.1);
  border-radius: var(--radius);
  color: var(--espresso);
  background: rgba(255, 255, 255, 0.5);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms var(--ease),
    background 180ms var(--ease),
    transform 180ms var(--ease);
}

.dashboard-day-slot:hover {
  transform: translateY(-1px);
}

.dashboard-day-slot > span:first-child {
  display: grid;
  gap: 4px;
  color: var(--amber-deep);
}

.dashboard-day-slot strong {
  font-size: 0.96rem;
}

.dashboard-day-slot small {
  color: rgba(91, 68, 59, 0.66);
  font-size: 0.72rem;
  line-height: 1.35;
}

.dashboard-day-slot b {
  display: block;
  margin-bottom: 3px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-day-slot.is-available {
  border-color: rgba(91, 68, 59, 0.12);
}

.dashboard-day-slot.is-available:hover {
  border-color: rgba(200, 135, 95, 0.44);
  background: rgba(255, 250, 244, 0.9);
}

.dashboard-day-slot.is-occupied {
  border-color: rgba(30, 23, 21, 0.18);
  background: rgba(236, 225, 212, 0.56);
}

.dashboard-day-slot.is-occupied b {
  color: var(--amber-deep);
}

.dashboard-day-slot.is-blocked {
  color: rgba(91, 68, 59, 0.48);
  background: rgba(255, 255, 255, 0.28);
  cursor: not-allowed;
}

.dashboard-day-slot.is-blocked b {
  color: rgba(91, 68, 59, 0.58);
}

.dashboard-entry.is-pending {
  border-color: rgba(143, 84, 45, 0.26);
  background: rgba(255, 250, 244, 0.58);
}

.dashboard-agenda-card.is-pending,
.dashboard-calendar-chip.is-pending,
.dashboard-calendar-row.is-pending,
.dashboard-day-slot.is-pending {
  border-left-color: rgba(143, 84, 45, 0.68);
  background: rgba(255, 250, 244, 0.72);
}

.dashboard-entry.is-confirmed {
  border-color: rgba(89, 124, 98, 0.36);
  background: rgba(248, 252, 247, 0.66);
}

.dashboard-agenda-card.is-confirmed,
.dashboard-calendar-chip.is-confirmed,
.dashboard-calendar-row.is-confirmed,
.dashboard-day-slot.is-confirmed {
  border-left-color: rgba(89, 124, 98, 0.74);
  background: rgba(242, 249, 240, 0.76);
}

.dashboard-entry.is-completed {
  border-color: rgba(55, 63, 66, 0.22);
  background: rgba(246, 246, 245, 0.66);
}

.dashboard-agenda-card.is-completed,
.dashboard-calendar-chip.is-completed,
.dashboard-calendar-row.is-completed,
.dashboard-day-slot.is-completed {
  border-left-color: rgba(55, 63, 66, 0.5);
  background: rgba(246, 246, 245, 0.72);
}

.dashboard-entry.is-cancelled,
.dashboard-entry.is-no_show {
  border-color: rgba(139, 82, 76, 0.24);
  background: rgba(255, 247, 245, 0.54);
}

.dashboard-agenda-card.is-cancelled,
.dashboard-agenda-card.is-no_show,
.dashboard-calendar-chip.is-cancelled,
.dashboard-calendar-chip.is-no_show,
.dashboard-calendar-row.is-cancelled,
.dashboard-calendar-row.is-no_show,
.dashboard-day-slot.is-cancelled,
.dashboard-day-slot.is-no_show {
  border-left-color: rgba(139, 82, 76, 0.56);
  background: rgba(255, 247, 245, 0.62);
}

.dashboard-entry.is-blocked-holiday,
.dashboard-agenda-card.is-blocked-holiday,
.dashboard-calendar-chip.is-blocked-holiday,
.dashboard-calendar-row.is-blocked-holiday,
.dashboard-day-slot.is-blocked-holiday {
  border-color: rgba(82, 121, 145, 0.28);
  border-left-color: rgba(82, 121, 145, 0.72);
  background: rgba(232, 243, 247, 0.72);
}

.dashboard-entry.is-blocked-personal,
.dashboard-agenda-card.is-blocked-personal,
.dashboard-calendar-chip.is-blocked-personal,
.dashboard-calendar-row.is-blocked-personal,
.dashboard-day-slot.is-blocked-personal {
  border-color: rgba(148, 86, 105, 0.26);
  border-left-color: rgba(148, 86, 105, 0.68);
  background: rgba(255, 241, 245, 0.72);
}

.dashboard-entry.is-blocked-training,
.dashboard-agenda-card.is-blocked-training,
.dashboard-calendar-chip.is-blocked-training,
.dashboard-calendar-row.is-blocked-training,
.dashboard-day-slot.is-blocked-training {
  border-color: rgba(141, 119, 61, 0.28);
  border-left-color: rgba(141, 119, 61, 0.72);
  background: rgba(250, 246, 226, 0.76);
}

.dashboard-entry.is-blocked-rest,
.dashboard-agenda-card.is-blocked-rest,
.dashboard-calendar-chip.is-blocked-rest,
.dashboard-calendar-row.is-blocked-rest,
.dashboard-day-slot.is-blocked-rest {
  border-color: rgba(112, 103, 142, 0.24);
  border-left-color: rgba(112, 103, 142, 0.68);
  background: rgba(242, 239, 249, 0.72);
}

.dashboard-entry.is-blocked-maintenance,
.dashboard-agenda-card.is-blocked-maintenance,
.dashboard-calendar-chip.is-blocked-maintenance,
.dashboard-calendar-row.is-blocked-maintenance,
.dashboard-day-slot.is-blocked-maintenance {
  border-color: rgba(89, 104, 111, 0.24);
  border-left-color: rgba(89, 104, 111, 0.68);
  background: rgba(236, 242, 243, 0.74);
}

.dashboard-entry.is-blocked-other,
.dashboard-agenda-card.is-blocked-other,
.dashboard-calendar-chip.is-blocked-other,
.dashboard-calendar-row.is-blocked-other,
.dashboard-day-slot.is-blocked-other {
  border-color: rgba(112, 92, 78, 0.22);
  border-left-color: rgba(112, 92, 78, 0.62);
  background: rgba(244, 236, 228, 0.72);
}

.dashboard-calendar-chip.is-blocked,
.dashboard-calendar-row.is-blocked,
.dashboard-entry.is-calendar-block,
.dashboard-agenda-card.is-calendar-block,
.dashboard-day-slot.is-calendar-block {
  border-style: dashed;
}

.dashboard-day-slot.is-occupied.is-calendar-block {
  cursor: pointer;
}

.dashboard-edit-dialog {
  width: min(760px, calc(100% - 28px));
  max-height: min(860px, calc(100svh - 28px));
  padding: 0;
  border: 1px solid rgba(30, 23, 21, 0.12);
  border-radius: var(--radius);
  color: var(--espresso);
  background: rgba(255, 253, 250, 0.98);
  box-shadow: 0 24px 80px -34px rgba(30, 23, 21, 0.54);
}

.dashboard-edit-dialog::backdrop {
  background: rgba(30, 23, 21, 0.42);
  backdrop-filter: blur(6px);
}

.dashboard-edit-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
}

.dashboard-edit-form .dashboard-panel-heading,
.dashboard-edit-meta,
.dashboard-edit-price-summary,
.dashboard-edit-notes,
.dashboard-edit-actions,
.dashboard-edit-form .form-status {
  grid-column: 1 / -1;
}

.dashboard-edit-meta {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(30, 23, 21, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.72);
}

.dashboard-edit-meta span,
.dashboard-edit-meta small {
  color: rgba(91, 68, 59, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
}

.dashboard-edit-meta strong {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.dashboard-edit-price-summary {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 13px 14px;
  border: 1px solid rgba(143, 84, 45, 0.16);
  border-radius: var(--radius);
  color: var(--espresso);
  background: rgba(255, 246, 238, 0.74);
}

.dashboard-edit-price-summary span,
.dashboard-edit-price-summary small {
  color: rgba(91, 68, 59, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-edit-price-summary strong {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.dashboard-edit-form label.is-muted {
  opacity: 0.44;
}

.dashboard-edit-form label {
  display: grid;
  gap: 7px;
  color: var(--muted-brown);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-edit-form input,
.dashboard-edit-form select,
.dashboard-edit-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(30, 23, 21, 0.14);
  border-radius: var(--radius);
  color: var(--espresso);
  background: rgba(255, 255, 255, 0.72);
}

.dashboard-edit-form input,
.dashboard-edit-form select {
  min-height: 44px;
  padding: 11px 13px;
}

.dashboard-edit-form textarea {
  padding: 12px 13px;
  resize: vertical;
}

.dashboard-edit-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.dashboard-confirm-dialog {
  width: min(440px, calc(100vw - 32px));
  padding: 0;
  border: 1px solid rgba(30, 23, 21, 0.12);
  border-radius: var(--radius);
  color: var(--espresso);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 244, 0.88)),
    var(--ivory);
  box-shadow: 0 24px 70px -44px rgba(30, 23, 21, 0.62);
}

.dashboard-confirm-dialog::backdrop {
  background: rgba(30, 23, 21, 0.24);
  backdrop-filter: blur(8px);
}

.dashboard-confirm-dialog form {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.dashboard-confirm-dialog h2 {
  margin: 0;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  line-height: 1.02;
}

.dashboard-confirm-dialog div {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.dashboard-notice {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  max-width: min(380px, calc(100vw - 36px));
  padding: 14px 16px;
  border: 1px solid rgba(30, 23, 21, 0.1);
  border-radius: var(--radius);
  color: var(--espresso);
  background: rgba(255, 250, 244, 0.94);
  box-shadow: 0 18px 50px -34px rgba(30, 23, 21, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
}

.dashboard-notice.is-error {
  border-color: rgba(117, 77, 67, 0.26);
  color: #6f2f2a;
  background: rgba(255, 246, 242, 0.96);
}

.dashboard-danger-zone {
  align-content: start;
}

.dashboard-danger-zone p {
  margin-bottom: 18px;
}

.js-enabled.gsap-ready [data-hero-reveal] {
  will-change: transform, opacity;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(150px, 1fr) auto;
  }

  .site-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle,
  .menu-close {
    display: grid;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    max-width: 980px;
  }

  .booking-intro {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(280px, 1fr);
    align-items: end;
    gap: 24px;
  }

  .booking-intro h2 {
    max-width: none;
  }

  .booking-intro p:not(.eyebrow) {
    max-width: 48ch;
  }

  .booking-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-side {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .contact-side .button {
    align-self: end;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 32px, 1180px);
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 3.35rem;
  }

  .hero {
    min-height: 100svh;
    height: 100svh;
    padding-block: 116px 62px;
  }

  .hero::before {
    background:
      radial-gradient(80% 74% at 16% 48%, rgba(255, 253, 250, 0.9) 0%, rgba(255, 253, 250, 0.68) 42%, rgba(255, 253, 250, 0.18) 70%, transparent 92%),
      linear-gradient(90deg, rgba(251, 247, 241, 0.62) 0%, rgba(251, 247, 241, 0.22) 54%, transparent 82%);
  }

  .hero-figure img {
    object-position: 70% center;
  }

  .hero-copy {
    max-width: min(520px, 58vw);
  }

  .hero-focus-rail {
    display: none;
  }

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

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

  .booking-time {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
    gap: 16px;
  }

  .booking-time legend,
  .booking-time .booking-message,
  .booking-time .booking-privacy,
  .booking-time .booking-note,
  .booking-time .button,
  .booking-time .form-status {
    grid-column: 1 / -1;
  }

  .contact-side {
    grid-template-columns: 1fr;
  }

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

  .footer-admin-access {
    justify-self: start;
  }

  .dashboard-app {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    position: static;
    height: auto;
    padding: 12px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(30, 23, 21, 0.1);
    overflow-x: visible;
  }

  .dashboard-sidebar nav {
    display: flex;
    flex-wrap: wrap;
    min-width: 0;
  }

  .dashboard-sidebar a {
    flex: 1 1 142px;
  }

  .dashboard-hero,
  .dashboard-panel-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .dashboard-panel-heading {
    flex-direction: column;
    align-items: stretch;
  }

  .dashboard-toolbar {
    justify-content: stretch;
  }

  .dashboard-toolbar label {
    flex: 1 1 100%;
    width: 100%;
  }

  .dashboard-hero {
    display: grid;
  }

  .dashboard-metrics,
  .dashboard-grid,
  .dashboard-add-form,
  .dashboard-stats-kpis,
  .dashboard-agenda-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-stats-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-entry {
    grid-template-columns: 1fr;
  }

  .dashboard-agenda-create,
  .dashboard-agenda-card {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-agenda-create > div,
  .dashboard-agenda-create-note,
  .dashboard-agenda-card-main {
    grid-column: 1 / -1;
  }

  .dashboard-agenda-card-actions {
    justify-content: flex-start;
    max-width: none;
  }

  .dashboard-entry-actions {
    justify-content: flex-start;
  }

  .dashboard-service-row,
  .dashboard-week-board,
  .dashboard-buffer-setting,
  .dashboard-block-form,
  .dashboard-schedule-row {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-block-intro,
  .dashboard-block-presets,
  .dashboard-block-note-field,
  .dashboard-block-submit,
  .dashboard-block-helper,
  .dashboard-block-form .form-status {
    grid-column: 1 / -1;
  }

  .dashboard-block-form label {
    grid-column: span 1;
  }

  .dashboard-schedule-day {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 24px, 1180px);
  }

  html {
    scroll-padding-top: 84px;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 1.55rem;
  }

  h1,
  h2,
  h3 {
    line-height: 1.08;
  }

  .site-header {
    min-height: 66px;
    padding: 10px 14px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .menu-toggle {
    position: fixed;
    top: 12px;
    right: 14px;
    z-index: 95;
    color: var(--ivory);
    border-color: var(--espresso);
    background: var(--espresso);
    box-shadow: 0 12px 26px -18px rgba(30, 23, 21, 0.8);
  }

  .brand-mark {
    font-size: 1.34rem;
  }

  .brand-sub,
  .brand-by {
    margin-top: 4px;
    font-size: 0.39rem;
    letter-spacing: 0.17em;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-panel {
    padding: 22px;
  }

  .mobile-nav {
    margin-top: 52px;
  }

  .mobile-nav a {
    font-size: 2.35rem;
  }

  .hero {
    min-height: 100svh;
    height: 100svh;
    padding-block: 104px 54px;
  }

  .hero-copy {
    max-width: min(450px, 92vw);
    transform: translateY(clamp(-28px, -3.4vh, -16px));
  }

  .hero h1 {
    font-size: clamp(2.9rem, 12.2vw, 4.2rem);
    line-height: 0.98;
    overflow-wrap: normal;
  }

  .hero-lede {
    max-width: min(380px, 33ch);
    font-size: 1.08rem;
    line-height: 1.48;
  }

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

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

  .hero-signature {
    display: none;
  }

    .section {
    padding-block: 76px;
  }

  .faq-shell {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    max-width: 560px;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    aspect-ratio: 4 / 4.6;
  }

  .booking-intro,
  .booking-step,
  .contact-side {
    padding: 24px;
  }

  .booking-intro h2 {
    font-size: 2.55rem;
  }

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

  .booking-time {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .time-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dashboard-header {
    align-items: start;
    flex-direction: column;
  }

  .dashboard-header-actions,
  .dashboard-hero-actions,
  .dashboard-toolbar {
    width: 100%;
  }

  .dashboard-header-actions .button,
  .dashboard-hero-actions .button,
  .dashboard-toolbar input,
  .dashboard-toolbar select,
  .dashboard-agenda-nav input,
  .dashboard-agenda-nav .button,
  .dashboard-agenda-toolbar label {
    width: 100%;
  }

  .dashboard-agenda-nav {
    justify-content: stretch;
  }

  .dashboard-agenda-nav label {
    flex: 1 1 calc(100% - 96px);
  }

  .dashboard-metrics,
  .dashboard-grid,
  .dashboard-add-form,
  .dashboard-stats-kpis,
  .dashboard-stats-grid,
  .dashboard-stats-occupancy-summary,
  .dashboard-agenda-summary-grid,
  .dashboard-agenda-create,
  .dashboard-agenda-card,
  .dashboard-service-row,
  .dashboard-week-board,
  .dashboard-buffer-setting,
  .dashboard-block-form,
  .dashboard-schedule-row {
    grid-template-columns: 1fr;
  }

  .dashboard-block-intro,
  .dashboard-block-presets,
  .dashboard-block-form label,
  .dashboard-block-note-field,
  .dashboard-block-submit,
  .dashboard-block-helper,
  .dashboard-block-form .form-status {
    grid-column: 1 / -1;
  }

  .dashboard-block-presets {
    justify-content: flex-start;
  }

  .dashboard-weekly-actions {
    align-items: stretch;
  }

  .dashboard-weekly-actions .button {
    width: 100%;
  }

  .dashboard-workspace {
    padding-inline: 12px;
  }

  .dashboard-panel,
  .dashboard-hero,
  .dashboard-login-card {
    padding: 20px;
  }

  .dashboard-agenda-item,
  .dashboard-agenda-day-title,
  .dashboard-message {
    grid-template-columns: 1fr;
  }

  .dashboard-entry h3,
  .dashboard-message h3 {
    font-size: 1.4rem;
  }

  .dashboard-stats-filters,
  .dashboard-stats-filters label {
    width: 100%;
  }

  .dashboard-stats-timeline-row {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 720px) {
  .services-shell {
    width: var(--shell);
  }

  .services-heading {
    margin-bottom: 30px;
  }

  .service-list {
    grid-template-columns: 1fr;
    max-width: 430px;
    gap: 20px;
    border-radius: calc(var(--radius) - 2px);
  }

  .service-list-row,
  .service-list-row:nth-child(5),
  .service-list-row:nth-child(6),
  .service-list-row:nth-child(7) {
    grid-column: 1 / -1;
    gap: 16px;
    min-height: 0;
    padding: 14px 14px 24px;
  }

  .service-row-photo img {
    aspect-ratio: 1.3 / 1;
  }

  .service-row-copy {
    align-items: center;
    padding-inline: 8px;
    text-align: center;
  }

  .service-row-text {
    max-width: 27ch;
  }

  .service-row-action {
    justify-content: center;
  }

  .service-row-star {
    display: none;
  }

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

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-media-card {
    max-width: 360px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.82rem;
  }

  h2,
  .booking-intro h2 {
    font-size: 2.25rem;
  }

  .button,
  .header-cta {
    padding-inline: 18px;
    letter-spacing: 0.16em;
  }

  .service-list-row {
    padding: 12px 12px 22px;
  }

  .service-row-title {
    font-size: 0.78rem;
  }

  .service-row-text {
    font-size: 1.12rem;
  }

  .mobile-nav a {
    font-size: 2rem;
  }

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

@media (max-width: 1180px) {
  .booking-flow {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
  }
}

@media (max-width: 900px) {
  .booking-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-category-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

  .dashboard-calendar-day,
  .dashboard-calendar-blank {
    min-height: 58px;
  }

  .dashboard-day-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-day-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-toolbar label {
    flex: 1 1 100%;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .booking-flow {
    grid-template-columns: 1fr;
  }

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

  .booking-catalog,
  .booking-calendar-step,
  .booking-slots-step,
  .booking-client-step,
  .booking-confirmation {
    grid-column: 1 / -1;
  }

  .booking-category-tabs,
  .booking-treatment-list,
  .booking-client-grid,
  .booking-submit-row {
    grid-template-columns: 1fr;
  }

  .booking-category-tab {
    min-height: 0;
  }

  .booking-treatment-card {
    grid-template-columns: 18px minmax(0, 1fr);
  }

  .booking-treatment-card em {
    grid-column: 2;
  }

  .booking-calendar-toolbar {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .booking-weekdays,
  .booking-calendar-grid {
    gap: 4px;
  }

  .booking-calendar-blank,
  .booking-day {
    min-height: 42px;
  }

  .booking-day {
    border-radius: 12px;
  }

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

  .booking-submit-row .button {
    width: 100%;
  }

  .dashboard-calendar-actions {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    width: 100%;
  }

  .dashboard-calendar-weekdays,
  .dashboard-calendar-grid {
    gap: 4px;
  }

  .dashboard-calendar-day,
  .dashboard-calendar-blank {
    min-height: 46px;
  }

  .dashboard-calendar-day {
    padding: 7px 5px;
  }

  .dashboard-calendar-day small {
    font-size: 0.56rem;
  }

  .dashboard-day-summary,
  .dashboard-day-slots {
    grid-template-columns: 1fr;
  }

  .dashboard-day-slot {
    grid-template-columns: 72px minmax(0, 1fr);
    min-height: 76px;
  }

  .dashboard-edit-form {
    grid-template-columns: 1fr;
  }

  .dashboard-edit-actions {
    flex-direction: column-reverse;
  }

  .dashboard-edit-actions .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .booking-progress span {
    min-height: 42px;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }

  .booking-flow .booking-step {
    padding: 28px 18px 18px;
  }

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

  .booking-calendar-blank,
  .booking-day {
    min-height: 38px;
  }

  .booking-day small {
    display: none;
  }

  .dashboard-calendar-day small {
    display: none;
  }
}

@media (max-width: 900px) {
  .dashboard-calendar-topbar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .dashboard-calendar-view-switch,
  .dashboard-calendar-new {
    grid-column: 1 / -1;
  }

  .dashboard-calendar-new {
    width: 100%;
    justify-content: center;
  }

  .dashboard-calendar-day-head,
  .dashboard-calendar-year-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-calendar-day-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-calendar-row {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .dashboard-calendar-row-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .dashboard-calendar-topbar {
    grid-template-columns: 1fr;
  }

  .dashboard-calendar-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .dashboard-calendar-actions .icon-button {
    width: 100%;
  }

  .dashboard-calendar-view-switch {
    grid-template-columns: repeat(5, minmax(86px, 1fr));
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .dashboard-calendar-status-row {
    gap: 8px 12px;
    font-size: 0.62rem;
  }

  .dashboard-calendar-view[data-calendar-view-panel="month"] {
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .dashboard-calendar-weekdays,
  .dashboard-calendar-grid {
    min-width: 720px;
  }

  .dashboard-calendar-day,
  .dashboard-calendar-blank {
    min-height: 118px;
  }

  .dashboard-calendar-day {
    padding: 8px;
  }

  .dashboard-calendar-day small {
    display: inline;
    font-size: 0.56rem;
  }

  .dashboard-calendar-day-head,
  .dashboard-calendar-year-grid,
  .dashboard-week-board {
    grid-template-columns: 1fr;
  }

  .dashboard-calendar-list-date {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-calendar-row {
    grid-template-columns: 1fr;
  }

  .dashboard-calendar-row time {
    grid-template-columns: auto auto;
    align-items: end;
  }

  .dashboard-calendar-row-actions button {
    flex: 1 1 138px;
  }
}

@media (max-width: 420px) {
  .dashboard-calendar-view-switch {
    grid-template-columns: repeat(5, minmax(78px, 1fr));
  }

  .dashboard-calendar-day-head {
    grid-template-columns: 1fr;
  }

  .dashboard-calendar-row-actions button {
    flex-basis: 100%;
  }
}

@media (max-width: 980px) {
  .color-service-hero {
    min-height: 100svh;
    padding-block: 112px 52px;
  }

  .color-hero-shell,
  .color-story-card,
  .color-care-shell {
    grid-template-columns: 1fr;
  }

  .color-hero-copy {
    max-width: 520px;
  }

  .color-hero-media {
    min-height: 0;
    border-radius: 0;
  }

  .color-benefits {
    margin-top: 0;
    padding-top: 18px;
  }

  .color-benefit-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .color-benefit-panel article:nth-child(odd) {
    border-left: 0;
  }

  .color-benefit-panel article:nth-child(n + 3) {
    border-top: 1px solid rgba(91, 68, 59, 0.1);
  }

  .color-technique-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .color-story-media {
    min-height: 320px;
    order: -1;
  }

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

  .mechas-process-grid article {
    border-left: 0;
  }

  .mechas-process-grid article:nth-child(even) {
    border-left: 1px solid rgba(91, 68, 59, 0.1);
  }

  .mechas-process-grid article:nth-child(n + 3) {
    border-top: 1px solid rgba(91, 68, 59, 0.1);
    padding-top: 28px;
    margin-top: 18px;
  }

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

  .mechas-ready-card figure {
    min-height: 320px;
    order: -1;
  }

  .nails-hero {
    min-height: 100svh;
  }

  .peinados-hero {
    min-height: 100svh;
  }

  .tratamiento-hero {
    min-height: 100svh;
  }

  .nails-hero-shell,
  .nails-colors-card,
  .peinados-hero-shell,
  .peinados-advice-card,
  .tratamiento-hero-shell,
  .tratamiento-product-card {
    grid-template-columns: 1fr;
  }

  .nails-hero-copy,
  .peinados-hero-copy,
  .tratamiento-hero-copy {
    max-width: 520px;
  }

  .nails-hero-media,
  .peinados-hero-media,
  .tratamiento-hero-media {
    min-height: 0;
    border-radius: 0;
  }

  .peinados-inspiration-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 840px;
  }

  .tratamiento-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 840px;
  }

  .peinados-advice-card figure,
  .tratamiento-product-card figure {
    min-height: 310px;
  }

  .nails-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }

  .nails-colors-card figure {
    min-height: 300px;
  }

  .nails-extra-grid,
  .peinados-recommendation-grid,
  .tratamiento-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nails-extra-grid article,
  .peinados-recommendation-grid article,
  .tratamiento-process-grid article {
    border-left: 0;
  }

  .nails-extra-grid article:nth-child(even),
  .peinados-recommendation-grid article:nth-child(even),
  .tratamiento-process-grid article:nth-child(even) {
    border-left: 1px solid rgba(91, 68, 59, 0.1);
  }

  .nails-extra-grid article:nth-child(n + 3),
  .peinados-recommendation-grid article:nth-child(n + 3),
  .tratamiento-process-grid article:nth-child(n + 3) {
    padding-top: 28px;
    margin-top: 22px;
    border-top: 1px solid rgba(91, 68, 59, 0.1);
  }
}

@media (max-width: 720px) {
  .color-service-hero {
    padding-block: 96px 42px;
  }

  .color-hero-copy h1 {
    font-size: clamp(2.65rem, 9.8vw, 3.85rem);
    line-height: 1;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .color-hero-copy p:not(.eyebrow) {
    max-width: min(340px, 100%);
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .color-hero-media {
    min-height: 0;
  }

  .color-benefit-panel,
  .color-technique-grid,
  .color-care-grid {
    grid-template-columns: 1fr;
  }

  .mechas-technique-grid {
    grid-template-columns: 1fr;
  }

  .color-benefit-panel article,
  .color-benefit-panel article:nth-child(odd) {
    border-left: 0;
  }

  .color-benefit-panel article + article,
  .color-benefit-panel article:nth-child(n + 3) {
    border-top: 1px solid rgba(91, 68, 59, 0.1);
  }

  .color-technique-card img {
    aspect-ratio: 1.3 / 1;
  }

  .color-care-grid article,
  .color-care-grid article:first-child {
    border-left: 0;
  }

  .color-care-grid article + article {
    padding-top: 28px;
    margin-top: 24px;
    border-top: 1px solid rgba(91, 68, 59, 0.1);
  }

  .color-brand-row {
    gap: 22px 34px;
  }

  .mechas-process-grid {
    grid-template-columns: 1fr;
  }

  .mechas-process-grid article,
  .mechas-process-grid article:nth-child(even) {
    border-left: 0;
  }

  .mechas-process-grid article + article,
  .mechas-process-grid article:nth-child(n + 3) {
    padding-top: 28px;
    margin-top: 24px;
    border-top: 1px solid rgba(91, 68, 59, 0.1);
  }

  .mechas-ready-card figure {
    min-height: 260px;
  }

  .nails-hero .color-hero-copy h1 {
    font-size: clamp(2.55rem, 9.6vw, 3.65rem);
  }

  .peinados-hero .color-hero-copy h1 {
    font-size: clamp(2.45rem, 9vw, 3.45rem);
  }

  .tratamiento-hero .color-hero-copy h1 {
    font-size: clamp(2.4rem, 8.6vw, 3.25rem);
  }

  .nails-hero-media,
  .peinados-hero-media,
  .tratamiento-hero-media {
    min-height: 0;
  }

  .peinados-inspiration-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
  }

  .tratamiento-service-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
  }

  .peinados-inspiration-card {
    min-height: 0;
  }

  .tratamiento-service-card {
    min-height: 0;
  }

  .peinados-advice-card figure,
  .tratamiento-product-card figure {
    min-height: 250px;
  }

  .nails-service-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
  }

  .nails-service-card {
    min-height: 0;
  }

  .nails-colors-card figure {
    min-height: 250px;
  }

  .nails-extra-grid,
  .peinados-recommendation-grid,
  .tratamiento-process-grid {
    grid-template-columns: 1fr;
  }

  .nails-extra-grid article,
  .nails-extra-grid article:nth-child(even),
  .peinados-recommendation-grid article,
  .peinados-recommendation-grid article:nth-child(even),
  .tratamiento-process-grid article,
  .tratamiento-process-grid article:nth-child(even) {
    border-left: 0;
  }

  .nails-extra-grid article + article,
  .nails-extra-grid article:nth-child(n + 3),
  .peinados-recommendation-grid article + article,
  .peinados-recommendation-grid article:nth-child(n + 3),
  .tratamiento-process-grid article + article,
  .tratamiento-process-grid article:nth-child(n + 3) {
    padding-top: 26px;
    margin-top: 22px;
    border-top: 1px solid rgba(91, 68, 59, 0.1);
  }
}

@media (max-width: 460px) {
  .color-hero-media {
    min-height: 0;
  }

  .color-hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .color-ornament {
    margin-block: 18px 16px;
  }

  .button {
    min-height: 54px;
    justify-content: center;
  }

  .tratamiento-signature {
    max-width: 30ch !important;
    min-height: 1.8em;
    letter-spacing: 0.13em;
    line-height: 1.6 !important;
  }

  .color-benefit-panel article {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .color-story-copy,
  .color-care-panel,
  .color-consult-card {
    padding: 26px;
  }

  .mechas-process-panel,
  .mechas-ready-copy {
    padding: 26px;
  }

  .nails-hero-media,
  .peinados-hero-media,
  .tratamiento-hero-media {
    min-height: 0;
  }

  .nails-colors-card figure,
  .peinados-advice-card figure,
  .tratamiento-product-card figure {
    min-height: 240px;
  }

  .nails-service-card,
  .tratamiento-service-card {
    padding: 14px 14px 24px;
  }

  .nails-colors-copy,
  .nails-extra-panel,
  .peinados-advice-copy,
  .peinados-recommendation-panel,
  .tratamiento-product-copy,
  .tratamiento-process-panel {
    padding: 26px;
  }
}

.about-page {
  color: var(--espresso);
  background: var(--ivory);
}

.about-page-main {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(183, 112, 67, 0.12), transparent 30%),
    radial-gradient(circle at 92% 36%, rgba(225, 202, 193, 0.4), transparent 34%),
    linear-gradient(180deg, #fbf7f1 0%, #f8f0ea 48%, #fbf7f1 100%);
}

.about-page-main .eyebrow {
  color: var(--amber-deep);
  font-weight: 500;
  letter-spacing: 0.34em;
}

.about-page-hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  display: grid;
  align-items: center;
  padding-block: clamp(116px, 12vh, 146px) clamp(54px, 7vh, 82px);
  overflow: clip;
  isolation: isolate;
}

.about-page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
  overflow: hidden;
}

.about-page-hero-media img {
  width: 100%;
  height: 108%;
  min-height: 108%;
  object-fit: cover;
  object-position: center center;
}

.about-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(58% 74% at 14% 52%, rgba(251, 247, 241, 0.86) 0%, rgba(251, 247, 241, 0.58) 44%, rgba(251, 247, 241, 0.16) 70%, transparent 92%),
    linear-gradient(90deg, rgba(251, 247, 241, 0.52) 0%, rgba(251, 247, 241, 0.26) 32%, transparent 62%);
}

.about-page-hero::after {
  display: none;
}

.about-page-hero-copy {
  max-width: 500px;
}

.about-page-hero-copy h1,
.about-founders-copy h2,
.about-section-head h2,
.about-invite-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

.about-page-hero-copy h1 {
  font-size: clamp(2.95rem, 4.8vw, 4.95rem);
  line-height: 1;
}

.about-page-hero-copy h1 em,
.about-founders-copy h2 em,
.about-invite-card h2 em {
  color: var(--amber-deep);
  font-style: italic;
  font-weight: 300;
}

.about-page-hero-copy p:not(.eyebrow) {
  max-width: 410px;
  margin-block: 20px 26px;
  color: rgba(47, 34, 29, 0.82);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  line-height: 1.48;
}

.about-founders-section,
.about-values-section,
.about-timeline-section,
.about-team-section,
.about-stats-section {
  padding-block: clamp(56px, 8vw, 104px);
}

.about-stats-section {
  padding-block: clamp(18px, 3vw, 38px);
}

.about-founders-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.about-founders-copy h2 {
  font-size: clamp(2.9rem, 5vw, 5rem);
}

.about-founders-copy p {
  max-width: 520px;
  color: rgba(47, 34, 29, 0.72);
  font-size: 1rem;
  line-height: 1.85;
}

.about-founders-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(91, 68, 59, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(64, 45, 35, 0.13);
  aspect-ratio: 1.55 / 1;
}

.about-founders-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-signatures {
  display: flex;
  gap: clamp(36px, 6vw, 76px);
  margin-top: 30px;
}

.about-signatures span {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-signatures strong {
  color: var(--espresso);
  font-family: var(--serif);
  font-size: 3rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}

.about-section-head {
  max-width: 720px;
  margin-bottom: 32px;
}

.about-section-head-center {
  margin-inline: auto;
  text-align: center;
}

.about-section-head h2 {
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
}

.about-values-grid,
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.about-value-card,
.about-team-card,
.about-promise-grid article {
  border: 1px solid rgba(91, 68, 59, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.66);
  box-shadow: 0 18px 52px rgba(64, 45, 35, 0.07);
}

.about-value-card {
  min-height: 190px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 28px 22px;
  text-align: center;
}

.about-value-card span {
  color: var(--amber-deep);
  font-family: var(--serif);
  font-size: 2.35rem;
}

.about-value-card h3,
.about-team-card h3,
.about-promise-grid h3 {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.about-value-card p,
.about-team-card p,
.about-promise-grid p {
  margin: 0;
  color: rgba(47, 34, 29, 0.66);
  line-height: 1.65;
}

.about-timeline-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 28px 0 0;
  list-style: none;
}

.about-timeline-list::before {
  content: "";
  position: absolute;
  top: 46px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: rgba(169, 108, 69, 0.32);
}

.about-timeline-list li {
  position: relative;
  display: grid;
  gap: 16px;
  padding-inline: 18px;
  text-align: center;
}

.about-timeline-list li::before {
  content: "";
  order: 1;
  width: 8px;
  height: 8px;
  margin: 14px auto 0;
  border-radius: 50%;
  background: var(--amber-deep);
  box-shadow: 0 0 0 8px rgba(169, 108, 69, 0.1);
}

.about-timeline-list strong {
  order: 0;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 300;
}

.about-timeline-list span {
  order: 2;
  color: rgba(47, 34, 29, 0.66);
  line-height: 1.55;
}

.about-team-card {
  overflow: hidden;
  padding-bottom: 18px;
  text-align: center;
}

.about-team-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
}

.about-team-card h3 {
  margin-top: 18px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(91, 68, 59, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.72);
}

.about-stats-grid div {
  padding: 30px 24px;
  text-align: center;
}

.about-stats-grid div + div {
  border-left: 1px solid rgba(91, 68, 59, 0.11);
}

.about-stats-grid span {
  display: block;
  color: var(--amber-deep);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
  font-weight: 300;
}

.about-stats-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-stats-grid p {
  margin: 8px 0 0;
  color: rgba(47, 34, 29, 0.62);
}

.about-invite-card {
  position: relative;
  min-height: 240px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius);
  color: var(--ivory);
  background: var(--espresso);
  isolation: isolate;
}

.about-invite-card img {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -2;
  width: 58%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.about-invite-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(35, 25, 21, 0.97), rgba(35, 25, 21, 0.72) 50%, rgba(35, 25, 21, 0.14));
}

.about-invite-card h2 {
  max-width: 820px;
  font-size: clamp(2.3rem, 4.4vw, 4.4rem);
}

.about-invite-card p {
  color: rgba(255, 250, 244, 0.72);
}

.about-promise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-promise-grid article {
  padding: 28px;
  border-radius: 0;
  box-shadow: none;
}

.about-promise-grid article:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.about-promise-grid article:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

@media (max-width: 1100px) {
  .about-values-grid,
  .about-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .about-stats-grid div:nth-child(3),
  .about-stats-grid div:nth-child(4) {
    border-top: 1px solid rgba(91, 68, 59, 0.11);
  }

  .about-stats-grid div:nth-child(3) {
    border-left: 0;
  }

  .about-promise-grid article:nth-child(odd) {
    border-left: 1px solid rgba(91, 68, 59, 0.13);
  }
}

@media (max-width: 820px) {
  .about-page-hero {
    min-height: 100svh;
    height: 100svh;
    padding-block: 112px 54px;
  }

  .about-page-hero-media img {
    object-position: 50% center;
  }

  .about-page-hero::before {
    background:
      radial-gradient(78% 72% at 18% 52%, rgba(251, 247, 241, 0.86) 0%, rgba(251, 247, 241, 0.56) 48%, rgba(251, 247, 241, 0.18) 76%, transparent 100%),
      linear-gradient(90deg, rgba(251, 247, 241, 0.48) 0%, rgba(251, 247, 241, 0.2) 48%, transparent 82%);
  }

  .about-founders-grid {
    grid-template-columns: 1fr;
  }

  .about-timeline-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-timeline-list::before {
    display: none;
  }

  .about-timeline-list li {
    padding: 20px 0;
    border-top: 1px solid rgba(91, 68, 59, 0.11);
    text-align: left;
  }

  .about-timeline-list li::before {
    display: none;
  }

  .about-invite-card img {
    width: 100%;
    opacity: 0.38;
  }

  .about-invite-card::before {
    background: linear-gradient(90deg, rgba(35, 25, 21, 0.98), rgba(35, 25, 21, 0.78));
  }
}

@media (max-width: 620px) {
  .about-page-hero {
    padding-block: 96px 44px;
  }

  .about-page-hero-copy h1 {
    font-size: clamp(2.28rem, 10.2vw, 3.35rem);
    line-height: 1.02;
    overflow-wrap: normal;
  }

  .about-page-hero-copy p:not(.eyebrow) {
    max-width: min(360px, 100%);
    font-size: 1rem;
    line-height: 1.52;
  }

  .about-values-grid,
  .about-team-grid,
  .about-promise-grid,
  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-grid div + div,
  .about-stats-grid div:nth-child(3),
  .about-stats-grid div:nth-child(4) {
    border-top: 1px solid rgba(91, 68, 59, 0.11);
    border-left: 0;
  }

  .about-promise-grid article,
  .about-promise-grid article:first-child,
  .about-promise-grid article:last-child {
    border-radius: 0;
  }

  .about-signatures {
    flex-wrap: wrap;
  }
}

.face-main {
  background:
    radial-gradient(48% 28% at 78% 4%, rgba(198, 122, 83, 0.12), transparent 72%),
    radial-gradient(42% 30% at 8% 18%, rgba(255, 253, 250, 0.94), transparent 70%),
    linear-gradient(180deg, rgba(253, 249, 245, 1), rgba(248, 240, 233, 0.96));
}

.face-hero {
  min-height: 100svh;
  padding-block: clamp(118px, 14vh, 154px) clamp(52px, 7vh, 80px);
  --service-hero-position: 62% center;
}

.face-hero::before {
  background:
    radial-gradient(58% 70% at 12% 52%, rgba(255, 253, 250, 0.92) 0%, rgba(255, 253, 250, 0.6) 45%, rgba(255, 253, 250, 0.16) 70%, transparent 92%),
    linear-gradient(90deg, rgba(251, 247, 241, 0.76) 0%, rgba(251, 247, 241, 0.44) 30%, rgba(251, 247, 241, 0.12) 60%, transparent 84%);
}

.face-hero-shell {
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
}

.face-hero-copy {
  width: min(100%, 390px);
  max-width: 390px;
}

.face-hero .color-hero-copy h1 {
  font-size: clamp(2.9rem, 5.25vw, 4.95rem);
  line-height: 0.96;
}

.face-hero .color-hero-copy h1 em {
  max-width: 390px;
  color: var(--taupe-deep);
  font-size: 0.52em;
  line-height: 1.08;
}

.face-hero .color-hero-copy p:not(.eyebrow) {
  max-width: 340px;
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.62;
}

.face-hero-media {
  min-height: 0;
  border-radius: 0;
}

.face-hero-media img {
  object-position: var(--service-hero-position);
}

.face-benefits {
  position: relative;
  z-index: 3;
  margin-top: -36px;
}

.face-benefit-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(91, 68, 59, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.94), rgba(252, 246, 241, 0.86)),
    radial-gradient(80% 120% at 82% 100%, rgba(198, 122, 83, 0.12), transparent 72%);
  box-shadow: var(--shadow-soft);
}

.face-benefit-panel article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 128px;
  padding: clamp(20px, 2vw, 28px);
  border-left: 1px solid rgba(91, 68, 59, 0.1);
}

.face-benefit-panel article:first-child {
  border-left: 0;
}

.face-benefit-panel span {
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--amber-deep);
  border: 1px solid rgba(150, 89, 52, 0.18);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1rem;
}

.face-benefit-panel h2 {
  grid-column: 2;
  margin: 0 0 7px;
  color: var(--espresso);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.38;
  text-transform: uppercase;
}

.face-benefit-panel p {
  grid-column: 2;
  margin: 0;
  color: rgba(91, 68, 59, 0.72);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.5;
}

.face-services {
  padding-block: clamp(78px, 8vw, 116px) 38px;
}

.face-section-heading {
  max-width: 760px;
  margin-bottom: clamp(34px, 4.2vw, 56px);
}

.face-section-heading h2 {
  font-size: clamp(2.5rem, 4.1vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
}

.face-section-heading h2 em,
.face-care-copy h2 em {
  color: var(--amber-deep);
  font-style: italic;
  font-weight: 400;
}

.face-service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.3vw, 16px);
  max-width: 1160px;
  margin-inline: auto;
}

.face-service-card {
  overflow: hidden;
  border: 1px solid rgba(91, 68, 59, 0.1);
  border-radius: calc(var(--radius) - 2px);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.92), rgba(253, 248, 243, 0.84)),
    rgba(255, 253, 250, 0.82);
  box-shadow: 0 22px 50px -38px rgba(91, 68, 59, 0.38);
  text-align: center;
}

.face-service-card img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: center;
}

.face-service-card h3 {
  max-width: 190px;
  min-height: 52px;
  margin: 22px auto 12px;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: clamp(1.14rem, 1.42vw, 1.46rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 0.98;
  text-transform: uppercase;
}

.face-service-card p {
  max-width: 190px;
  margin: 0 auto 26px;
  color: rgba(91, 68, 59, 0.76);
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.56;
}

.face-care {
  padding-block: 28px 42px;
}

.face-care-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  overflow: hidden;
  border: 1px solid rgba(91, 68, 59, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 253, 250, 0.56), rgba(255, 253, 250, 0.94) 58%, rgba(255, 253, 250, 0.9)),
    rgba(255, 253, 250, 0.76);
  box-shadow: var(--shadow-soft);
}

.face-care-card figure {
  min-height: 320px;
}

.face-care-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.face-care-copy {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 320px;
  padding: clamp(34px, 4.8vw, 64px);
}

.face-care-copy::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 126px;
  height: 126px;
  pointer-events: none;
  opacity: 0.13;
  border-radius: 52% 48% 50% 50%;
  background:
    radial-gradient(closest-side, transparent 52%, rgba(150, 89, 52, 0.58) 54%, transparent 57%),
    linear-gradient(140deg, transparent 42%, rgba(150, 89, 52, 0.58) 43%, transparent 45%);
}

.face-care-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.35vw, 3.45rem);
  font-weight: 400;
  line-height: 1.02;
}

.face-care-copy p {
  max-width: 390px;
  margin-block: 18px 24px;
  color: rgba(91, 68, 59, 0.78);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.72;
}

.face-recommendations {
  padding-block: 26px 86px;
}

.face-recommendation-panel {
  padding: clamp(30px, 4.2vw, 48px) clamp(24px, 4vw, 54px);
  border: 1px solid rgba(91, 68, 59, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(74% 110% at 0% 0%, rgba(198, 122, 83, 0.12), transparent 72%),
    rgba(255, 253, 250, 0.76);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.face-recommendation-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 30px;
}

.face-recommendation-grid article {
  padding: 4px clamp(12px, 1.8vw, 26px);
  border-left: 1px solid rgba(91, 68, 59, 0.1);
}

.face-recommendation-grid article:first-child {
  border-left: 0;
}

.face-recommendation-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  color: var(--amber-deep);
  border: 1px solid rgba(150, 89, 52, 0.18);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.88rem;
  font-weight: 400;
}

.face-recommendation-grid h3 {
  margin: 0 0 10px;
  color: var(--espresso);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.42;
}

.face-recommendation-grid p {
  max-width: 150px;
  margin: 0 auto;
  color: rgba(91, 68, 59, 0.72);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.58;
}

@media (max-width: 1120px) {
  .face-benefit-panel,
  .face-service-grid,
  .face-recommendation-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .face-benefit-panel article,
  .face-recommendation-grid article {
    border-left: 0;
    border-top: 1px solid rgba(91, 68, 59, 0.1);
  }

  .face-benefit-panel article:nth-child(-n + 3),
  .face-recommendation-grid article:nth-child(-n + 3) {
    border-top: 0;
  }
}

@media (max-width: 900px) {
  .face-hero-shell,
  .face-care-card {
    grid-template-columns: 1fr;
  }

  .face-hero-copy {
    max-width: min(520px, 62vw);
  }

  .face-benefits {
    margin-top: 0;
    padding-top: 18px;
  }

  .face-benefit-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .face-benefit-panel article:nth-child(-n + 3) {
    border-top: 1px solid rgba(91, 68, 59, 0.1);
  }

  .face-benefit-panel article:nth-child(-n + 2) {
    border-top: 0;
  }

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

  .face-care-card figure {
    min-height: 280px;
  }
}

@media (max-width: 720px) {
  .face-hero-copy {
    width: 100%;
    max-width: min(390px, 100%);
  }

  .face-hero .color-hero-copy h1 {
    font-size: clamp(2.45rem, 9.4vw, 3.55rem);
  }

  .face-benefit-panel,
  .face-service-grid,
  .face-recommendation-grid {
    grid-template-columns: 1fr;
  }

  .face-benefit-panel article,
  .face-benefit-panel article:nth-child(-n + 2),
  .face-benefit-panel article:nth-child(-n + 3),
  .face-recommendation-grid article,
  .face-recommendation-grid article:nth-child(-n + 3) {
    border-top: 1px solid rgba(91, 68, 59, 0.1);
  }

  .face-benefit-panel article:first-child,
  .face-recommendation-grid article:first-child {
    border-top: 0;
  }

  .face-service-card img {
    aspect-ratio: 1.25 / 1;
  }

  .face-care-copy {
    min-height: auto;
  }
}

.contact-page {
  color: var(--espresso);
  background:
    radial-gradient(circle at 8% 16%, rgba(233, 207, 200, 0.28), transparent 30%),
    radial-gradient(circle at 92% 40%, rgba(102, 122, 95, 0.08), transparent 34%),
    linear-gradient(180deg, #fbf7f1 0%, #f4ede4 100%);
}

.contact-page-main {
  overflow: hidden;
}

.contact-page-main .eyebrow {
  color: var(--amber-deep);
  font-weight: 600;
  letter-spacing: 0.32em;
}

.contact-page-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: clamp(118px, 14vh, 154px) 0 clamp(52px, 7vh, 80px);
  overflow: clip;
  isolation: isolate;
  background: var(--espresso);
}

.contact-page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.contact-page-hero-media img {
  width: 100%;
  height: 112%;
  min-height: 112%;
  object-fit: cover;
  object-position: 61% center;
}

.contact-page-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(58% 72% at 12% 50%, rgba(255, 253, 250, 0.9), rgba(255, 253, 250, 0.62) 46%, rgba(255, 253, 250, 0.18) 72%, transparent 92%),
    linear-gradient(90deg, rgba(251, 247, 241, 0.82) 0%, rgba(251, 247, 241, 0.42) 35%, rgba(251, 247, 241, 0.08) 64%, transparent 86%);
}

.contact-page-hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 150px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(251, 247, 241, 0), #fbf7f1 82%);
}

.contact-page-hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: calc(100svh - clamp(190px, 21vh, 234px));
}

.contact-page-hero-copy {
  max-width: 420px;
  text-shadow: 0 1px 18px rgba(255, 253, 250, 0.42);
}

.contact-page-hero-copy h1,
.contact-form-card h2,
.contact-location-card h2,
.contact-page-cta h2 {
  color: var(--espresso);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
}

.contact-page-hero-copy h1 {
  max-width: 430px;
  margin: 0;
  font-size: clamp(3.1rem, 5.6vw, 5.25rem);
}

.contact-page-hero-copy h1 em,
.contact-form-card h2 em,
.contact-page-cta h2 em {
  display: block;
  margin-top: 4px;
  color: var(--taupe-deep);
  font-size: 0.62em;
  font-style: italic;
  font-weight: 400;
  line-height: 1.06;
}

.contact-page-hero-copy p:not(.eyebrow) {
  max-width: 360px;
  margin: 0;
  color: rgba(47, 37, 34, 0.8);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
  font-weight: 300;
  line-height: 1.46;
}

.contact-page-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.contact-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--espresso);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.contact-whatsapp-link span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(91, 68, 59, 0.24);
  border-radius: 50%;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.contact-page-section {
  position: relative;
  padding: clamp(64px, 8vw, 112px) 0 clamp(34px, 5vw, 64px);
}

.contact-page-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 10%, rgba(233, 207, 200, 0.28), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(255, 255, 255, 0.58), transparent 32%),
    linear-gradient(180deg, rgba(255, 253, 250, 0.78), rgba(246, 239, 231, 0.62));
}

.contact-page-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.contact-page-card,
.contact-page-mini-card {
  border: 1px solid rgba(91, 68, 59, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.82), rgba(250, 244, 237, 0.66)),
    rgba(255, 252, 247, 0.7);
  box-shadow: 0 24px 70px -44px rgba(89, 57, 37, 0.42);
  backdrop-filter: blur(16px);
}

.contact-page-card {
  padding: clamp(26px, 4vw, 48px);
}

.contact-form-card h2,
.contact-location-card h2 {
  margin: 8px 0 0;
  font-size: clamp(2.25rem, 4vw, 3.85rem);
}

.contact-page-form {
  display: grid;
  gap: 13px;
  margin-top: 28px;
}

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

.contact-page-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: rgba(54, 42, 36, 0.68);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-page-form input,
.contact-page-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(91, 68, 59, 0.16);
  border-radius: var(--radius);
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--espresso);
  font: 500 0.94rem/1.45 var(--sans);
  outline: none;
  transition:
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.contact-page-form input::placeholder,
.contact-page-form textarea::placeholder {
  color: rgba(91, 68, 59, 0.5);
}

.contact-page-form textarea {
  min-height: 138px;
  resize: vertical;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
  border-color: rgba(150, 89, 52, 0.58);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 0 4px rgba(150, 89, 52, 0.1);
}

.contact-page-form .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.contact-page-form .form-consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--amber-deep);
}

.contact-page-form .button {
  justify-self: start;
  margin-top: 4px;
}

.contact-response-note,
.contact-page-form .form-status {
  max-width: 340px;
  margin: 0;
  color: rgba(54, 42, 36, 0.68);
  font-size: 0.82rem;
  line-height: 1.55;
}

.contact-page-stack {
  display: grid;
  gap: 18px;
}

.contact-info-list {
  display: grid;
  gap: 15px;
  padding: 0;
  margin: 26px 0 24px;
  color: rgba(54, 42, 36, 0.76);
  font-size: 0.92rem;
  list-style: none;
}

.contact-info-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.contact-info-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--amber-deep);
  border: 1px solid rgba(150, 89, 52, 0.18);
  border-radius: 50%;
  font-size: 0.86rem;
}

.contact-info-list a {
  color: inherit;
  text-decoration: none;
}

.contact-map {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(91, 68, 59, 0.12);
  border-radius: var(--radius);
  background: var(--cream);
}

.contact-map img {
  width: 100%;
  aspect-ratio: 1.58 / 1;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) sepia(0.08) brightness(1.04);
  transition: transform 700ms var(--ease);
}

.contact-map:hover img {
  transform: scale(1.025);
}

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

.contact-page-mini-card {
  min-height: 188px;
  padding: clamp(22px, 3vw, 30px);
}

.contact-page-mini-card > p:not(.eyebrow) {
  margin: 18px 0;
  color: rgba(54, 42, 36, 0.7);
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-hours {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
}

.contact-hours div {
  display: grid;
  grid-template-columns: minmax(112px, 1fr) auto;
  gap: 16px;
  align-items: baseline;
}

.contact-hours dt,
.contact-hours dd {
  margin: 0;
  color: rgba(54, 42, 36, 0.74);
  font-size: 0.86rem;
  line-height: 1.4;
}

.contact-hours dd {
  color: var(--espresso);
  font-weight: 600;
  text-align: right;
}

.contact-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-social-row a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(91, 68, 59, 0.14);
  border-radius: 50%;
  color: var(--espresso);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition:
    border-color 180ms var(--ease),
    background 180ms var(--ease),
    transform 180ms var(--ease);
}

.contact-social-row a:hover {
  border-color: rgba(150, 89, 52, 0.28);
  background: rgba(255, 255, 255, 0.62);
  transform: translateY(-2px);
}

.contact-page-cta-section {
  padding: clamp(24px, 4vw, 44px) 0 clamp(40px, 6vw, 74px);
}

.contact-page-cta {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(300px, 36vw, 430px);
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  color: var(--ivory);
  border-radius: var(--radius);
  background: var(--espresso);
  isolation: isolate;
}

.contact-page-cta img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.contact-page-cta::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(58% 76% at 12% 48%, rgba(30, 23, 21, 0.76), rgba(30, 23, 21, 0.42) 54%, transparent 82%),
    linear-gradient(90deg, rgba(30, 23, 21, 0.86), rgba(30, 23, 21, 0.38) 58%, rgba(30, 23, 21, 0.14));
}

.contact-page-cta-copy {
  max-width: 560px;
}

.contact-page-cta .eyebrow {
  color: rgba(255, 253, 250, 0.78);
}

.contact-page-cta h2 {
  max-width: 560px;
  margin: 12px 0 26px;
  color: var(--ivory);
  font-size: clamp(2.45rem, 4.7vw, 4.6rem);
}

.contact-page-cta h2 em {
  color: rgba(255, 253, 250, 0.82);
}

.contact-first-visit {
  position: absolute;
  right: clamp(26px, 5vw, 58px);
  bottom: clamp(26px, 5vw, 52px);
  display: grid;
  grid-template-columns: 94px minmax(92px, 118px);
  gap: 16px;
  align-items: center;
  margin: 0;
  color: var(--ivory);
}

.contact-first-visit strong {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(30, 23, 21, 0.58);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 0.92;
  text-align: center;
}

.contact-first-visit span {
  color: rgba(255, 253, 250, 0.86);
  font-size: 0.92rem;
  line-height: 1.35;
}

.contact-trust-section {
  padding: 0 0 clamp(70px, 9vw, 118px);
}

.contact-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(91, 68, 59, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.86), rgba(250, 244, 237, 0.68)),
    rgba(255, 252, 247, 0.72);
  box-shadow: 0 20px 64px -46px rgba(89, 57, 37, 0.46);
}

.contact-trust-grid article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 132px;
  padding: clamp(20px, 2.8vw, 30px);
  border-left: 1px solid rgba(91, 68, 59, 0.1);
}

.contact-trust-grid article:first-child {
  border-left: 0;
}

.contact-trust-grid span {
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--amber-deep);
  border: 1px solid rgba(150, 89, 52, 0.16);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.12rem;
}

.contact-trust-grid h2 {
  grid-column: 2;
  margin: 0 0 8px;
  color: var(--espresso);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-trust-grid p {
  grid-column: 2;
  margin: 0;
  color: rgba(91, 68, 59, 0.72);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.5;
}

@media (max-width: 1040px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-stack {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: start;
  }

  .contact-mini-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-trust-grid article:nth-child(odd) {
    border-left: 0;
  }

  .contact-trust-grid article:nth-child(n + 3) {
    border-top: 1px solid rgba(91, 68, 59, 0.1);
  }
}

@media (max-width: 900px) {
  .contact-page-hero {
    min-height: 100svh;
    padding-block: 112px 52px;
  }

  .contact-page-hero::before {
    background:
      radial-gradient(68% 72% at 14% 46%, rgba(255, 253, 250, 0.9), rgba(255, 253, 250, 0.58) 50%, rgba(255, 253, 250, 0.16) 76%, transparent 96%),
      linear-gradient(90deg, rgba(251, 247, 241, 0.7), rgba(251, 247, 241, 0.26) 56%, transparent 86%);
  }

  .contact-page-hero-shell {
    min-height: calc(100svh - 164px);
  }

  .contact-page-hero-copy {
    max-width: min(420px, 62vw);
  }

  .contact-page-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .contact-page-hero {
    padding-block: 96px 42px;
  }

  .contact-page-hero-media img {
    object-position: 68% center;
  }

  .contact-page-hero::before {
    background:
      linear-gradient(180deg, rgba(251, 247, 241, 0.9) 0%, rgba(251, 247, 241, 0.6) 44%, rgba(251, 247, 241, 0.18) 82%),
      linear-gradient(90deg, rgba(251, 247, 241, 0.72), rgba(251, 247, 241, 0.28) 74%, transparent);
  }

  .contact-page-hero-shell {
    align-items: center;
    min-height: calc(100svh - 138px);
  }

  .contact-page-hero-copy {
    max-width: 100%;
  }

  .contact-page-hero-copy h1 {
    font-size: clamp(2.65rem, 12vw, 3.75rem);
    line-height: 1;
    overflow-wrap: normal;
  }

  .contact-page-hero-copy p:not(.eyebrow) {
    max-width: min(350px, 100%);
    font-size: 1rem;
    line-height: 1.52;
  }

  .contact-page-form .form-row,
  .contact-mini-grid,
  .contact-trust-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-card {
    padding: 22px;
  }

  .contact-hours div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .contact-hours dd {
    text-align: left;
  }

  .contact-page-actions .button,
  .contact-page-form .button {
    width: 100%;
    justify-content: center;
  }

  .contact-page-cta {
    min-height: 460px;
    align-items: end;
  }

  .contact-page-cta::before {
    background:
      linear-gradient(180deg, rgba(30, 23, 21, 0.08), rgba(30, 23, 21, 0.82) 66%),
      linear-gradient(90deg, rgba(30, 23, 21, 0.5), rgba(30, 23, 21, 0.18));
  }

  .contact-first-visit {
    position: relative;
    right: auto;
    bottom: auto;
    grid-template-columns: 78px minmax(0, 1fr);
    margin-top: 24px;
  }

  .contact-first-visit strong {
    width: 78px;
    height: 78px;
    font-size: 1.38rem;
  }

  .contact-trust-grid article {
    border-top: 1px solid rgba(91, 68, 59, 0.1);
    border-left: 0;
  }

  .contact-trust-grid article:first-child {
    border-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .marquee-track {
    animation: none;
  }
}
