/**
 * Global styles for Juliere Beauty (single file; group related rules when editing).
 * Layout: tokens → base → header/hero → sections → components (forms, calendar, toast).
 */
:root {
  --bg: #f6f1eb;
  --surface: rgba(255, 255, 255, 0.68);
  --surface-strong: #fffdfb;
  --text: #241c18;
  --muted: #6e6259;
  --line: rgba(36, 28, 24, 0.09);
  --accent: #b07b67;
  --accent-soft: #ead9cf;
  --accent-dark: #8f614f;
  --shadow: 0 18px 60px rgba(55, 34, 23, 0.1);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 34%),
    radial-gradient(circle at bottom right, rgba(224, 197, 186, 0.35), transparent 30%),
    linear-gradient(180deg, #fbf7f3 0%, #f5ede6 100%);
}

/** Wrapper only — page scroll is on the document so mobile browsers can hide chrome while scrolling. */
.site-scroll-snap {
  width: 100%;
  overflow-x: hidden;
}

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

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

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

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

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding-bottom: 40px;
}

.page-shell--sub {
  padding-top: 12px;
}

.section {
  padding: 36px 0;
}

.page-shell main > section {
  scroll-margin-top: 88px;
}

.page-shell > .site-footer {
  scroll-margin-top: 88px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 251, 247, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 18px;
  flex: 1;
  min-width: 0;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}

.lang-switch-btn {
  border: 0;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.lang-switch-btn:hover,
.lang-switch-btn:focus-visible {
  color: var(--text);
  outline: none;
}

.lang-switch-btn.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: 0 4px 12px rgba(176, 123, 103, 0.25);
}

.site-nav .lang-switch {
  flex-shrink: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.06em;
  max-width: 100%;
  font-size: clamp(0.95rem, 2.8vw, 1.12rem);
  line-height: 1;
}

.brand-lockup-primary {
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 1em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

.brand-lockup-secondary {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 0.62em;
  margin-top: 0.12em;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a.site-nav__booking {
  font-weight: 700;
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: 0 4px 16px rgba(176, 123, 103, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.site-nav a.site-nav__booking:hover,
.site-nav a.site-nav__booking:focus-visible {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(176, 123, 103, 0.38);
  outline: none;
}

.site-header--hero .site-nav a.site-nav__booking:hover,
.site-header--hero .site-nav a.site-nav__booking:focus-visible {
  color: #fff;
}

.site-nav a.site-nav__booking[aria-current="page"] {
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.85),
    0 6px 20px rgba(176, 123, 103, 0.4);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(36, 28, 24, 0.06);
  outline: none;
}

.menu-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 16px;
}

.menu-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(176, 123, 103, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(176, 123, 103, 0.32);
}

.button-small {
  padding: 11px 18px;
}

.button-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.6);
}

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

.hero-stage {
  position: relative;
  width: 100%;
}

.hero-carousel {
  position: relative;
  width: 100%;
  min-height: 100svh;
  min-height: 100vh;
  background: #1a1412;
  overflow: hidden;
}

.hero-carousel-viewport {
  position: absolute;
  inset: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.hero-carousel-viewport::-webkit-scrollbar {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel-viewport {
    scroll-behavior: auto;
  }
}

.hero-carousel-track {
  display: flex;
  height: 100%;
  width: max-content;
}

.hero-carousel-slide {
  position: relative;
  flex: 0 0 100vw;
  width: 100vw;
  height: 100%;
  margin: 0;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

/* Tablet: two panels — avoids a single photo stretching across the full width. */
@media (min-width: 768px) and (max-width: 1199px) {
  .hero-carousel-slide {
    flex: 0 0 50vw;
    width: 50vw;
  }
}

/* Large desktop: three panels — full “filmstrip” of hero images. */
@media (min-width: 1200px) {
  .hero-carousel-slide {
    flex: 0 0 calc(100vw / 3);
    width: calc(100vw / 3);
  }
}

/* When every slide fits in the viewport, arrows/dots are redundant. */
.hero-carousel.hero-carousel--all-slides-visible .hero-carousel-ui {
  display: none;
}

.hero-carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.hero-carousel-img--product {
  object-position: center center;
}

.hero-carousel-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12, 9, 8, 0.45) 0%, transparent 38%, transparent 55%, rgba(12, 9, 8, 0.55) 100%),
    linear-gradient(90deg, rgba(12, 9, 8, 0.2) 0%, transparent 30%, transparent 70%, rgba(12, 9, 8, 0.2) 100%);
}

.hero-carousel-content {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: min(92vw, 720px);
  text-align: center;
  pointer-events: none;
}

.hero-carousel-tagline {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 248, 244, 0.72);
}

.hero-carousel-brand {
  margin: 0;
  padding: 0;
  border: none;
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(3rem, 14vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: 0.08em;
  color: #fffaf7;
  text-shadow:
    0 2px 40px rgba(0, 0, 0, 0.35),
    0 0 1px rgba(0, 0, 0, 0.5);
}

.hero-carousel-brand-line {
  display: block;
}

.hero-carousel-brand-line--primary {
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.hero-carousel-brand-line--secondary {
  margin-top: 0.12em;
  font-size: 0.52em;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
}

.hero-carousel-ui {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: max(100px, calc(env(safe-area-inset-bottom, 0px) + 88px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(20, 15, 14, 0.35);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-carousel-arrow:hover,
.hero-carousel-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  outline: none;
}

.hero-carousel-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-carousel-dot.is-active {
  background: #fff;
  transform: scale(1.25);
}

.hero-carousel-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.hero-carousel-scroll {
  position: absolute;
  z-index: 3;
  bottom: max(24px, env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 250, 244, 0.75);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-carousel-scroll:hover,
.hero-carousel-scroll:focus-visible {
  color: #fff;
  outline: none;
}

.hero-carousel-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.65));
  animation: hero-scroll-nudge 2.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel-scroll-line {
    animation: none;
  }
}

@keyframes hero-scroll-nudge {
  0%,
  100% {
    opacity: 0.5;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(6px);
  }
}

/* Hidden on the hero; shown after scrolling past it (see initHeaderScroll). */
.site-header--hero {
  position: fixed;
  top: max(16px, env(safe-area-inset-top, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(calc(100vw - 28px), var(--container));
  margin: 0;
  border-color: var(--line);
  background: rgba(255, 251, 247, 0.92);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header--hero.site-header--past-hero {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-header--hero .brand-lockup-primary {
  color: var(--text);
  transition: color 0.3s ease;
}

.site-header--hero .brand-lockup-secondary {
  color: var(--muted);
  transition: color 0.3s ease;
}

.site-header--hero .site-nav {
  color: var(--muted);
  transition: color 0.3s ease;
}

.site-header--hero .site-nav a:hover,
.site-header--hero .site-nav a:focus-visible {
  color: var(--text);
}

.site-header--hero .menu-toggle {
  color: var(--text);
  transition: color 0.3s ease;
}

.site-header--hero .menu-toggle:hover,
.site-header--hero .menu-toggle:focus-visible {
  background: rgba(36, 28, 24, 0.06);
}

.site-header--hero .lang-switch {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.4);
}

.site-header--hero .lang-switch-btn {
  color: var(--muted);
}

.site-header--hero .lang-switch-btn.is-active {
  color: #fff;
}

.site-header--hero .button-ghost {
  color: var(--text);
  border-color: var(--line);
  background: transparent;
}

.site-header--hero .button-ghost:hover,
.site-header--hero .button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.6);
}

.intro-band {
  padding: 40px 0 28px;
}

.intro-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.intro-band-text {
  margin: 0;
  max-width: 48ch;
  font-size: 1.05rem;
  color: var(--text);
}

.intro-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.card,
.price-card,
.recommend-card,
.portfolio-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(176, 123, 103, 0.12);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.stats-grid,
.price-grid,
.recommend-grid,
.contact-grid {
  display: grid;
  gap: 20px;
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.section-heading--about {
  margin-bottom: 20px;
}

.about-section {
  display: grid;
  gap: 22px;
}

.about-bubble {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  min-height: min(320px, 52vh);
}

.about-bubble__text {
  padding: clamp(26px, 4vw, 42px);
  display: grid;
  gap: 18px;
  align-content: center;
}

.about-bubble__text p {
  margin: 0;
}

.about-bubble__photo {
  margin: 0;
  min-height: 220px;
  position: relative;
  border-left: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(176, 123, 103, 0.12), rgba(36, 28, 24, 0.06));
}

.about-bubble__photo img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center 22%;
}

.about-stats {
  margin-top: 2px;
}

.about-stat-bubble {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  text-align: center;
}

.about-stat-bubble strong {
  display: block;
  font-size: clamp(1.65rem, 3.2vw, 2rem);
  font-family: "Cormorant Garamond", serif;
  line-height: 1.15;
}

.about-stat-bubble span {
  display: block;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}

.section-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.card {
  padding: 30px;
}

.card-large {
  padding: 38px;
  display: grid;
  gap: 20px;
}

.portfolio-carousel {
  position: relative;
}

.price-carousel .portfolio-carousel-slide.price-card {
  min-height: 260px;
  box-sizing: border-box;
}

.reviews-carousel .portfolio-carousel-slide.recommend-card,
.before-visit-carousel .portfolio-carousel-slide.recommend-card {
  min-height: 220px;
  box-sizing: border-box;
}

.portfolio-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.portfolio-carousel-viewport::-webkit-scrollbar {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-carousel-viewport {
    scroll-behavior: auto;
  }
}

.portfolio-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 4px 2px 8px;
  box-sizing: border-box;
}

/* Narrower than the viewport so the previous/next cards stay partly visible (see JS track padding). */
.portfolio-carousel-slide {
  flex: 0 0 min(300px, max(240px, calc(100vw - 120px)));
  width: min(300px, max(240px, calc(100vw - 120px)));
  max-width: 100%;
  scroll-snap-align: center;
  scroll-snap-stop: normal;
}

.portfolio-carousel-ui {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}

.portfolio-carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.portfolio-carousel-arrow:hover,
.portfolio-carousel-arrow:focus-visible {
  background: rgba(176, 123, 103, 0.12);
  border-color: rgba(176, 123, 103, 0.35);
  outline: none;
}

.portfolio-carousel-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.portfolio-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(36, 28, 24, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.portfolio-carousel-dot.is-active {
  background: var(--accent-dark);
  transform: scale(1.25);
}

.portfolio-carousel-dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.portfolio-carousel.portfolio-carousel--all-slides-visible .portfolio-carousel-ui {
  display: none;
}

.portfolio-card--gallery {
  cursor: pointer;
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #1e1816;
}

.portfolio-card--gallery:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.portfolio-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.portfolio-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.portfolio-card__thumb--product {
  object-position: center center;
}

.portfolio-card--gallery.warm::after,
.portfolio-card--gallery.rosy::after,
.portfolio-card--gallery.nude::after,
.portfolio-card--gallery.bronze::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.portfolio-card--gallery.warm::after {
  background: linear-gradient(
    180deg,
    rgba(105, 62, 47, 0.12),
    rgba(105, 62, 47, 0.42) 42%,
    rgba(18, 12, 10, 0.88) 100%
  );
}

.portfolio-card--gallery.rosy::after {
  background: linear-gradient(
    180deg,
    rgba(125, 74, 84, 0.14),
    rgba(125, 74, 84, 0.48) 42%,
    rgba(18, 12, 10, 0.88) 100%
  );
}

.portfolio-card--gallery.nude::after {
  background: linear-gradient(
    180deg,
    rgba(120, 93, 71, 0.12),
    rgba(120, 93, 71, 0.44) 42%,
    rgba(18, 12, 10, 0.88) 100%
  );
}

.portfolio-card--gallery.bronze::after {
  background: linear-gradient(
    180deg,
    rgba(79, 57, 44, 0.14),
    rgba(79, 57, 44, 0.5) 42%,
    rgba(18, 12, 10, 0.9) 100%
  );
}

.portfolio-card__content {
  position: relative;
  z-index: 2;
  padding: 22px;
}

.portfolio-gallery-dialog {
  padding: 0;
  border: none;
  max-width: min(1100px, calc(100vw - 32px));
  width: 100%;
  margin: auto;
  background: transparent;
  color: var(--text);
}

.portfolio-gallery-dialog::backdrop {
  background: rgba(36, 28, 24, 0.52);
  backdrop-filter: blur(8px);
}

.portfolio-gallery-dialog__panel {
  background: var(--surface-strong);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 30px);
  max-height: min(92vh, 920px);
  overflow: auto;
}

.portfolio-gallery-dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.portfolio-gallery-dialog__title {
  margin: 0;
  padding-right: 8px;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.15;
}

.portfolio-gallery-dialog__close {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.portfolio-gallery-dialog__close:hover,
.portfolio-gallery-dialog__close:focus-visible {
  background: rgba(176, 123, 103, 0.14);
  border-color: rgba(176, 123, 103, 0.35);
  outline: none;
}

.portfolio-gallery-dialog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.price-service-dialog__heading {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 6px;
  padding-right: 8px;
}

.price-service-dialog__price {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: var(--accent-dark);
  line-height: 1.2;
}

.price-service-dialog__duration {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--muted);
  line-height: 1.4;
}

.price-service-dialog__body {
  display: grid;
  gap: 16px;
}

.price-service-dialog__body p {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
}

.portfolio-gallery__figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  background: rgba(36, 28, 24, 0.04);
}

.portfolio-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-gallery__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  max-width: calc(100% - 24px);
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fffaf7;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  background: rgba(18, 12, 10, 0.55);
  border: 1px solid rgba(255, 250, 244, 0.22);
  backdrop-filter: blur(6px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.portfolio-gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 14px 14px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
  color: #fffaf7;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(18, 12, 10, 0.55) 38%,
    rgba(18, 12, 10, 0.88) 100%
  );
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-gallery-dialog::backdrop {
    backdrop-filter: none;
  }

  .portfolio-gallery__tag {
    backdrop-filter: none;
  }
}

.portfolio-card {
  min-height: 320px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  overflow: hidden;
}

.portfolio-card p {
  color: rgba(255, 255, 255, 0.9);
}

.portfolio-label {
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-family: "Cormorant Garamond", serif;
}

.warm {
  background: linear-gradient(180deg, rgba(105, 62, 47, 0.18), rgba(105, 62, 47, 0.95)), linear-gradient(135deg, #f0d0c2, #a4604f);
}

.rosy {
  background: linear-gradient(180deg, rgba(125, 74, 84, 0.2), rgba(125, 74, 84, 0.95)), linear-gradient(135deg, #efc7cf, #9a6070);
}

.nude {
  background: linear-gradient(180deg, rgba(120, 93, 71, 0.15), rgba(120, 93, 71, 0.92)), linear-gradient(135deg, #e6d3bf, #8b6c57);
}

.bronze {
  background: linear-gradient(180deg, rgba(79, 57, 44, 0.16), rgba(79, 57, 44, 0.96)), linear-gradient(135deg, #d9b69f, #785846);
}

.portfolio-card.portfolio-card--gallery {
  padding: 0;
}

.portfolio-card.portfolio-card--gallery.warm,
.portfolio-card.portfolio-card--gallery.rosy,
.portfolio-card.portfolio-card--gallery.nude,
.portfolio-card.portfolio-card--gallery.bronze {
  background: transparent;
}

.price-grid,
.recommend-grid {
  grid-template-columns: repeat(4, 1fr);
}

.price-card,
.recommend-card {
  padding: 26px;
}

.price-card strong {
  display: block;
  margin: 14px 0 12px;
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
}

.price-card--clickable {
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.price-card--clickable:hover {
  border-color: rgba(176, 123, 103, 0.4);
  box-shadow: 0 12px 36px rgba(36, 28, 24, 0.08);
}

.price-card--clickable:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.featured {
  background: linear-gradient(180deg, rgba(255, 248, 245, 0.96), rgba(238, 221, 213, 0.9));
}

.price-tag,
.pill {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.recommend-card {
  display: grid;
  gap: 14px;
}

.hidden {
  display: none;
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(36, 28, 24, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(176, 123, 103, 0.7);
  box-shadow: 0 0 0 4px rgba(176, 123, 103, 0.12);
}

textarea {
  resize: vertical;
}

.toast-region {
  position: fixed;
  bottom: max(20px, env(safe-area-inset-bottom, 0px));
  right: max(20px, env(safe-area-inset-right, 0px));
  left: auto;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  pointer-events: none;
  max-width: min(400px, calc(100vw - 32px));
}

.toast-region .toast {
  pointer-events: auto;
}

.toast {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 251, 247, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(55, 34, 23, 0.18);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.toast--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.toast--leaving {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition-duration: 0.25s;
}

.toast-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 14px 16px 18px;
}

.toast-message {
  margin: 0;
  flex: 1;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
}

.toast--success .toast-inner {
  border-left: 4px solid #5a8f66;
}

.toast--error .toast-inner {
  border-left: 4px solid #b84a4a;
}

.toast--info .toast-inner {
  border-left: 4px solid var(--accent);
}

.toast-close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin: -4px -4px -4px 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.toast-close:hover,
.toast-close:focus-visible {
  background: rgba(36, 28, 24, 0.06);
  color: var(--text);
  outline: none;
}

@media (max-width: 520px) {
  .toast-region {
    left: 16px;
    right: 16px;
    align-items: stretch;
    max-width: none;
  }
}

.booking-section {
  padding-top: 48px;
}

.booking-card {
  padding: 28px;
  display: grid;
  gap: 20px;
}

.booking-service-row label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

.booking-service-row select {
  max-width: 420px;
}

.booking-intro {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.booking-picker {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

@media (max-width: 900px) {
  .booking-picker {
    grid-template-columns: 1fr;
  }
}

.booking-picker[aria-busy="true"] .booking-calendar,
.booking-picker[aria-busy="true"] .booking-slots-panel {
  pointer-events: none;
  opacity: 0.72;
}

.booking-slots-panel {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.booking-calendar {
  padding: 18px 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
}

.booking-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.booking-cal-month-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
}

.booking-cal-nav {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
}

.booking-cal-nav:hover,
.booking-cal-nav:focus-visible {
  background: #fff;
  border-color: rgba(176, 123, 103, 0.35);
  outline: none;
}

.booking-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.booking-cal-pad {
  min-height: 40px;
}

.booking-cal-day {
  position: relative;
  aspect-ratio: 1;
  max-height: 44px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.booking-cal-day--has-slots:not(.is-selected)::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  border-radius: 50%;
  background: rgba(176, 123, 103, 0.85);
}

.booking-cal-day:hover:not(:disabled) {
  border-color: rgba(176, 123, 103, 0.4);
  background: #fff;
}

.booking-cal-day:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.booking-cal-day.is-disabled {
  opacity: 0.28;
  cursor: not-allowed;
  background: transparent;
  pointer-events: none;
}

.booking-cal-day.is-today:not(.is-selected) {
  box-shadow: inset 0 0 0 1px rgba(176, 123, 103, 0.45);
}

.booking-cal-day.is-selected {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border-color: transparent;
}

.booking-cal-day.is-selected:hover {
  color: #fff;
}

.booking-slots-status {
  margin: 0;
  min-height: 1.4em;
  font-size: 0.92rem;
  color: var(--muted);
}

.booking-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-slot-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.booking-slot-chip:hover {
  border-color: rgba(176, 123, 103, 0.45);
}

.booking-slot-chip:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.booking-slot-chip.is-selected {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border-color: transparent;
}

.booking-form {
  display: grid;
  gap: 16px;
}

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

.booking-form[aria-busy="true"] .booking-service-row,
.booking-form[aria-busy="true"] .booking-form-grid,
.booking-form[aria-busy="true"] > label:last-of-type {
  pointer-events: none;
  opacity: 0.72;
}

.button.is-loading {
  cursor: wait;
  position: relative;
}

@media (max-width: 640px) {
  .booking-form-grid {
    grid-template-columns: 1fr;
  }
}

.contact-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-map.card {
  margin-top: 20px;
  padding: 0;
  overflow: hidden;
}

.contact-map-heading {
  margin: 0;
  padding: 22px 26px 14px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}

.contact-map-frame-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 220px;
  background: rgba(36, 28, 24, 0.06);
}

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

.faq-list.card {
  padding: 0;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 26px;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

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

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 28px 4px 12px;
  color: var(--muted);
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  opacity: 0.82;
  transition:
    opacity 0.15s ease,
    color 0.15s ease;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  opacity: 1;
  color: var(--ink);
  outline: none;
}

.site-footer__icon {
  width: 22px;
  height: 22px;
  display: block;
}

@media (max-width: 1040px) {
  .section-split,
  .price-grid,
  .recommend-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
  }

  .site-header {
    flex-wrap: wrap;
    align-items: center;
    row-gap: 6px;
    border-radius: 28px;
  }

  .site-header:has(.site-nav.open) {
    row-gap: 12px;
  }

  /*
   * Flatten .header-actions so the open nav is a direct flex child of .site-header.
   * Otherwise the nav’s 100% width only spans the right column beside the logo,
   * which makes links hug the right edge and leaves empty space on the left.
   */
  .header-actions {
    display: contents;
  }

  .site-header .brand {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
  }

  .site-header .menu-toggle {
    order: 2;
    flex: 0 0 auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header .site-nav {
    order: 3;
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding-top: 8px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a:not(.button) {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0.65rem 0;
    line-height: 1.35;
    font-size: 1.02rem;
    font-weight: 500;
    text-align: left;
    text-decoration: none;
    border-radius: 10px;
    transition:
      background 0.15s ease,
      color 0.15s ease;
  }

  .site-nav a:not(.button):hover,
  .site-nav a:not(.button):focus-visible {
    background: rgba(36, 28, 24, 0.05);
    outline: none;
  }

  .site-nav a.site-nav__booking:not(.button) {
    margin-top: 14px;
    padding: 0.9rem 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.06rem;
    letter-spacing: 0.02em;
    color: #fff;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 12px 32px rgba(176, 123, 103, 0.42);
  }

  .site-nav a.site-nav__booking:not(.button):hover,
  .site-nav a.site-nav__booking:not(.button):focus-visible {
    background: linear-gradient(135deg, #c08a75 0%, #7a5645 100%);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(176, 123, 103, 0.48);
  }

  .site-nav a.site-nav__booking:not(.button)[aria-current="page"] {
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.95),
      0 14px 36px rgba(176, 123, 103, 0.5);
  }

  .site-nav .button.button-small {
    width: 100%;
    box-sizing: border-box;
    margin-top: 10px;
    justify-content: center;
    text-align: center;
  }

  .site-nav .lang-switch {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    align-self: stretch;
    justify-content: flex-start;
  }

  .site-header--hero .site-nav.open {
    background: rgba(255, 251, 247, 0.98);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 16px 18px 20px;
    border: 1px solid var(--line);
  }

  .stats-grid,
  .section-split,
  .price-grid,
  .recommend-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-bubble {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-bubble__photo {
    border-left: none;
    border-top: 1px solid var(--line);
    min-height: min(300px, 42vh);
  }

  .about-bubble__photo img {
    min-height: 260px;
  }

  .hero-carousel-ui {
    bottom: max(92px, calc(env(safe-area-inset-bottom, 0px) + 76px));
    gap: 10px;
  }

  .hero-carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.35rem;
  }

  .portfolio-carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.35rem;
  }

  .intro-band-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .card,
  .price-card,
  .recommend-card,
  .portfolio-card {
    border-radius: 24px;
  }

  .card {
    padding: 24px;
  }

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

/* Full-page veil while Google Sheet CSV is fetched — editorial card + brand */
body.is-sheet-loading {
  overflow: hidden;
}

.sheet-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: min(48px, 6vw);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.sheet-loading-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sheet-loading-overlay__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 55% at 18% 22%, rgba(224, 197, 186, 0.45), transparent 52%),
    radial-gradient(ellipse 70% 50% at 88% 78%, rgba(176, 123, 103, 0.18), transparent 48%),
    radial-gradient(circle at 50% 108%, rgba(255, 253, 251, 0.9), transparent 42%),
    linear-gradient(165deg, rgba(251, 247, 243, 0.97) 0%, rgba(245, 237, 230, 0.98) 100%);
}

.sheet-loading-overlay__inner {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.sheet-loading-overlay__card {
  position: relative;
  width: min(100%, 340px);
  padding: clamp(28px, 5vw, 40px) clamp(24px, 4vw, 36px);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 253, 251, 0.92) 0%, rgba(255, 255, 255, 0.78) 100%);
  border: 1px solid rgba(36, 28, 24, 0.07);
  box-shadow:
    0 4px 1px rgba(255, 255, 255, 0.65) inset,
    0 28px 80px rgba(55, 34, 23, 0.12),
    0 12px 32px rgba(55, 34, 23, 0.06);
  backdrop-filter: blur(14px);
  text-align: center;
}

.sheet-loading-overlay__brand {
  margin: 0 0 22px;
  padding: 0;
  border: none;
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(2.1rem, 8vw, 2.85rem);
  line-height: 1;
  letter-spacing: 0.12em;
  color: var(--text);
}

.sheet-loading-overlay__brand-line {
  display: block;
}

.sheet-loading-overlay__brand-line--primary {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
  background: linear-gradient(120deg, var(--text) 0%, var(--accent-dark) 45%, var(--accent) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@supports not ((background-clip: text) or (-webkit-background-clip: text)) {
  .sheet-loading-overlay__brand-line--primary {
    background: none;
    -webkit-text-fill-color: unset;
    color: var(--accent-dark);
  }
}
.sheet-loading-overlay__brand-line--secondary {
  margin-top: 0.2em;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.5em;
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--muted);
}

.sheet-loading-overlay__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 18px;
}

.sheet-loading-overlay__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.35;
  animation: sheet-loading-dot 1.05s ease-in-out infinite;
}

.sheet-loading-overlay__dot:nth-child(2) {
  animation-delay: 0.15s;
}

.sheet-loading-overlay__dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes sheet-loading-dot {
  0%,
  80%,
  100% {
    opacity: 0.3;
    transform: translateY(0) scale(1);
  }
  40% {
    opacity: 1;
    transform: translateY(-5px) scale(1.08);
  }
}

.sheet-loading-overlay__rule {
  display: block;
  width: 48px;
  height: 2px;
  margin: 0 auto 14px;
  border-radius: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-soft), var(--accent), var(--accent-soft), transparent);
  opacity: 0.85;
}

.sheet-loading-overlay__label {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .sheet-loading-overlay {
    transition: opacity 0.15s ease;
  }

  .sheet-loading-overlay__dot {
    animation: none;
    opacity: 0.75;
  }
}
