:root {
  --bg: #f7f4ef;
  --bg-soft: #efe6dd;
  --bg-alt: #ffffff;
  --ink: #171412;
  --ink-soft: #7d6d63;
  --ink-muted: #a8968a;
  --line: rgba(74, 55, 44, 0.18);
  --line-soft: rgba(74, 55, 44, 0.1);
  --accent: #b49b8a;
  --accent-deep: #7a5a48;
  --shadow: 0 24px 70px rgba(56, 40, 30, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --transition-fast: 220ms ease;
  --transition-smooth: 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background: var(--bg);
}

.site-is-loading {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(247, 244, 239, 0.98), rgba(245, 239, 232, 0.94)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.7), transparent 42%);
  opacity: 1;
  visibility: visible;
  transition: opacity 320ms ease, visibility 320ms ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.site-loader__inner {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.site-loader__mark {
  font-family: "Forum", serif;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
}

.site-loader__line {
  width: 132px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 90, 72, 0.78), transparent);
  animation: loaderPulse 1.2s ease-in-out infinite;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.editorial-page {
  background: var(--bg);
}

.page-shell {
  width: min(1360px, calc(100% - 40px));
  margin: 0 auto;
}

.page-shell-editorial {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 30px 0 52px;
  display: flex;
  flex-direction: column;
}

.admin-shell,
.privacy-shell {
  padding: 22px 0 34px;
}

.hero-screen {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

.hero-screen::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: var(--hero-poster-image);
  background-position: center center;
  background-size: cover;
  filter: saturate(0.92) brightness(0.85);
  transform: scale(1.02);
}

.hero-screen-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.04) saturate(1.05);
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 640ms ease;
  animation: slowZoom 16s ease-in-out infinite alternate;
}

.hero-screen-video.is-ready {
  opacity: 0.9;
}

.hero-screen-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(19, 14, 10, 0.25), rgba(19, 14, 10, 0.4)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.06), transparent 50%);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header-editorial {
  color: #fff;
}

.compact-header {
  padding-bottom: 18px;
}

.site-nav {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.site-nav-editorial {
  padding: 18px 0;
}

.site-nav-editorial a,
.contacts-links a,
.footer-meta a,
.text-link {
  position: relative;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  transition: color var(--transition-fast);
}

.site-nav-editorial a::after,
.contacts-links a::after,
.footer-meta a::after,
.text-link::after {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-fast);
}

.site-nav-editorial a:hover::after,
.contacts-links a:hover::after,
.footer-meta a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
}

.button,
.icon-button,
.calendar-day,
.service-line,
.review-editorial-item,
.social-link,
.calendar-panel,
.booking-form-panel,
.glass-panel,
.cookie-banner {
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth),
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.button,
.icon-button {
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.button-ghost,
.button-secondary {
  background: transparent;
}

.button:hover,
.button:focus-visible,
.icon-button:focus-visible,
.slot-chip:focus-visible,
.calendar-day:focus-visible,
.service-line:focus-visible,
.social-link:focus-visible,
.text-link:focus-visible {
  outline: none;
  box-shadow: 0 10px 24px rgba(36, 24, 19, 0.1);
}

.icon-button:hover,
.slot-chip:hover,
.calendar-day:hover,
.service-line:hover,
.review-editorial-item:hover,
.social-link:hover,
.calendar-panel:hover,
.booking-form-panel:hover,
.glass-panel:hover {
  transform: translateY(-2px);
}

.hero-header-button {
  white-space: nowrap;
  font-size: 0.88rem;
  text-transform: uppercase;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(12px);
}

.hero-screen-center {
  flex: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px 28px;
  padding: 96px 0 70px;
  text-align: center;
  color: #fff;
}

.hero-brand-subtitle,
.editorial-kicker,
.eyebrow,
.selected-slot-box span {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.8rem;
  font-weight: 700;
}

.editorial-kicker,
.eyebrow,
.selected-slot-box span,
.brand small,
.footer-meta,
.admin-list-item span,
.admin-list-item p,
.empty-state,
.notification-error,
.privacy-card p,
.feedback-text,
.services-heading p,
.booking-editorial-heading p,
.review-editorial-item p,
.contacts-links a,
.story-signature {
  color: var(--ink-soft);
}

.hero-brand-name,
.hero-brand-subtitle {
  color: #fff;
}

.hero-brand-name {
  margin: 0 0 8px;
  font-family: "Great Vibes", cursive;
  font-size: clamp(3.6rem, 8vw, 7rem);
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 400;
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.14);
  white-space: nowrap;
}

.hero-brand-prefix {
  font-family: "Great Vibes", cursive;
  font-size: 0.85em;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero-brand-subtitle {
  margin-bottom: 6px;
  letter-spacing: 0.34em;
}

.hero-screen-center h1,
.services-heading h2,
.reviews-heading h2,
.booking-editorial-heading h2,
.contacts-heading h2,
.story-quote-block blockquote,
.admin-hero h1,
.privacy-card h1,
.admin-card h2,
h3 {
  margin: 0;
  font-family: "Forum", serif;
  font-weight: 400;
}

.hero-screen-center h1 {
  max-width: 36ch;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.3;
}

.hero-brand-description {
  max-width: 52ch;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.hero-screen-center .hero-brand-description {
  text-wrap: balance;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}

.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: "Forum", serif;
  font-size: 1.4rem;
}

.admin-header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.admin-header-actions form {
  margin: 0;
}

.glass-panel,
.calendar-panel,
.booking-form-panel,
.admin-hero,
.admin-card,
.privacy-card,
.privacy-grid article,
.cookie-banner {
  padding: 28px;
  border: 1px solid rgba(74, 55, 44, 0.14);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.editorial-section {
  padding: 102px 0;
}

.editorial-section-story,
.editorial-section-works,
.editorial-section-reviews,
.editorial-section-contacts {
  background: var(--bg-alt);
}

.editorial-section-services,
.editorial-section-booking {
  background: var(--bg-soft);
}

.editorial-section-scene {
  padding: 0;
  background: var(--bg-alt);
}

.scene-strip {
  position: relative;
  width: min(1480px, calc(100% - 24px));
  height: min(72vh, 820px);
  margin: 0 auto;
  overflow: hidden;
}

.scene-strip::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: var(--scene-poster-image);
  background-position: center center;
  background-size: cover;
  transform: scale(1.02);
}

.scene-strip-video {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06) brightness(1.03);
  opacity: 0.94;
}

.scene-strip-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.editorial-grid {
  display: grid;
  gap: 84px;
}

.editorial-grid-story {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.story-quote-block {
  max-width: 500px;
  justify-self: center;
}

.story-quote-block blockquote {
  margin: 20px 0 28px;
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  line-height: 1.38;
  font-style: italic;
}

.story-signature {
  color: var(--accent);
  font-size: 1.1rem;
}

.honeypot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin: 18px 0 20px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.consent-row input {
  margin-top: 4px;
}

.consent-row a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.story-media-block {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 4 / 5;
  justify-self: center;
  overflow: hidden;
}

.story-media-stack {
  display: grid;
  gap: 20px;
  justify-items: center;
}

.story-media-block::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: var(--story-poster-image);
  background-position: center center;
  background-size: cover;
  transform: scale(1.02);
}

.story-media-video,
.story-media-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 640ms ease;
}

.story-media-video.is-ready,
.story-media-img {
  opacity: 0.94;
}

.story-media-caption {
  width: min(100%, 520px);
  padding-top: 4px;
}

.story-media-caption .editorial-kicker {
  color: var(--accent);
}

.story-media-caption p:last-child {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.85;
}

.works-shell,
.services-sheet,
.reviews-shell,
.booking-editorial-shell,
.contacts-shell {
  display: grid;
  gap: 42px;
}

.works-heading,
.services-heading,
.booking-editorial-heading,
.reviews-heading,
.contacts-heading {
  justify-self: center;
  text-align: center;
}

.works-heading h2,
.services-heading h2,
.reviews-heading h2,
.booking-editorial-heading h2,
.contacts-heading h2 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.03;
}

.works-heading h2 {
  max-width: 20ch;
  margin: 0 auto;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.work-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.work-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ece4dc;
}

.work-card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(19, 14, 10, 0.04), rgba(19, 14, 10, 0.18));
  opacity: 0.82;
  transition: opacity var(--transition-smooth), background var(--transition-smooth);
}

.work-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02) brightness(0.98);
  transform: scale(1.001);
  transition: transform var(--transition-smooth), filter var(--transition-smooth);
}

.work-card:hover .work-card-media::after,
.work-card:focus-within .work-card-media::after {
  opacity: 1;
  background: linear-gradient(180deg, rgba(19, 14, 10, 0.08), rgba(19, 14, 10, 0.26));
}

.work-card:hover .work-card-media img,
.work-card:focus-within .work-card-media img {
  transform: scale(1.05);
  filter: saturate(0.98) contrast(1.03) brightness(0.94);
}

.work-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.work-card-body h3 {
  font-size: 1.85rem;
  line-height: 1.08;
}

.work-card-body p,
.work-card-body span {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.work-card-body span {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.services-heading p,
.booking-editorial-heading p {
  max-width: 46ch;
  margin: 18px auto 0;
  font-size: 1rem;
  line-height: 1.92;
}

.services-list {
  display: grid;
  gap: 0;
  width: min(100%, 980px);
  margin: 0 auto;
}

.service-line {
  display: grid;
  grid-template-columns: 1.5fr 2fr 0.8fr 0.8fr;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 32px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.service-line:first-child {
  border-top: 1px solid var(--line);
}

.service-line-name {
  font-size: 2.05rem;
  line-height: 1.04;
  font-family: "Forum", serif;
}

.service-line-description,
.service-line-meta,
.service-line-price {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.service-line-price {
  justify-self: end;
  font-size: 1.5rem;
  color: var(--accent);
  font-family: "Forum", serif;
}

.services-cta-row {
  display: flex;
  justify-content: center;
  padding-top: 22px;
}

.services-primary-cta {
  min-width: 360px;
  background: #111;
  border-color: #111;
  color: #fff;
}

.reviews-heading {
  margin-bottom: 48px;
}

.reviews-source-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.reviews-board {
  columns: 3;
  column-gap: 22px;
}

.review-card {
  break-inside: avoid;
  background: var(--glass-bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px 20px;
  margin-bottom: 22px;
  display: block;
}

.review-card-stars {
  color: #e8a838;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card-text {
  font-size: 0.97rem;
  line-height: 1.72;
  margin: 0 0 16px;
  color: var(--text);
}

.review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.review-card-author {
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.review-card-date {
  font-size: 0.78rem;
  color: var(--text-muted, #9a8f85);
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .reviews-board {
    columns: 2;
  }
}

@media (max-width: 560px) {
  .reviews-board {
    columns: 1;
  }
}

.booking-editorial-stage {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 30px;
  align-items: start;
}

.calendar-toolbar,
.slot-panel,
.cookie-banner__content,
.cookie-banner__actions,
.site-footer,
.admin-card-heading,
.admin-metrics,
.admin-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.icon-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line-soft);
}

.icon-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.weekdays {
  margin: 16px 0 12px;
  color: var(--ink-muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.calendar-day {
  min-height: 86px;
  padding: 12px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.calendar-day[data-empty="true"] {
  pointer-events: none;
  opacity: 0.2;
}

.calendar-day[data-has-slots="true"] {
  border-color: rgba(122, 90, 72, 0.18);
}

.calendar-day[data-has-slots="false"]:not([data-empty="true"]) {
  opacity: 0.45;
  cursor: default;
}

.calendar-day.is-past {
  opacity: 0.22;
  pointer-events: none;
  cursor: default;
}

.calendar-day.is-selected {
  background: rgba(180, 155, 138, 0.16);
  border-color: rgba(122, 90, 72, 0.26);
}

.calendar-day-number {
  display: block;
  font-weight: 800;
}

.calendar-day-caption {
  display: block;
  margin-top: 8px;
  font-size: 0.74rem;
  color: var(--ink-muted);
}

.slot-panel {
  align-items: start;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}

.slot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.slot-chip {
  padding: 12px 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  cursor: pointer;
}

.slot-chip.is-active {
  background: rgba(180, 155, 138, 0.16);
  border-color: rgba(122, 90, 72, 0.26);
}

.field-group {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field-group label,
.slot-form label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

.field-group input,
.field-group textarea,
.field-group select,
.slot-form input {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.field-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237d6d63' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 16px center;
  background-size: 12px;
  padding-left: 40px;
  cursor: pointer;
}

.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus,
.slot-form input:focus {
  border-color: rgba(122, 90, 72, 0.22);
  box-shadow: 0 0 0 4px rgba(180, 155, 138, 0.08);
}

.field-group.has-error input,
.field-group.has-error textarea {
  border-color: rgba(155, 79, 79, 0.55);
  box-shadow: 0 0 0 4px rgba(155, 79, 79, 0.07);
}

.field-error {
  font-size: 0.82rem;
  color: #9b4f4f;
  margin-top: -2px;
}

.selected-slot-box {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin: 22px 0 16px;
  padding: 16px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.selected-slot-box strong {
  color: var(--ink);
}

.booking-submit {
  width: 100%;
  background: #111;
  border-color: #111;
  color: #fff;
}

.feedback-text {
  min-height: 24px;
  margin: 16px 0 0;
}

.feedback-text.is-success {
  color: #3f5e3a;
}

.feedback-text.is-error,
.notification-error {
  color: #9b4f4f;
}

.contacts-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  font-size: 1rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: min(100%, 560px);
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 20px;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  color: var(--ink);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform 0.22s ease;
  text-align: center;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(122, 90, 72, 0.22);
  transform: translateY(-3px);
}

.contact-card-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(180, 155, 138, 0.13);
  color: var(--accent);
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card-type {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.contact-card-value {
  font-family: "Forum", serif;
  font-size: 1.3rem;
  color: var(--ink);
  line-height: 1.2;
}

.contacts-meta-links {
  display: flex;
  justify-content: center;
  gap: 14px 24px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  background: #fff;
  color: var(--accent);
}

.social-link svg {
  width: 22px;
  height: 22px;
}

.admin-main,
.privacy-main {
  display: grid;
  gap: 16px;
  padding: 16px 0 18px;
}

.admin-grid,
.privacy-grid {
  display: grid;
  gap: 18px;
}

.privacy-grid ul {
  margin: 8px 0 0;
  padding-left: 20px;
  list-style: disc;
}

.privacy-grid li {
  margin-bottom: 4px;
  line-height: 1.55;
}

.admin-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* --- Simplified admin panel --- */

.admin-metrics-bar {
  display: flex;
  gap: 10px;
}

.metric-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line-soft);
  font-size: 0.88rem;
}

.metric-pill strong {
  font-size: 1.15rem;
  font-family: "Forum", serif;
}

.admin-section {
  display: grid;
  gap: 12px;
}

.admin-section-title {
  font-family: "Forum", serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.booking-card {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line-soft);
}

.booking-card[data-status="cancelled"] {
  opacity: 0.5;
}

.booking-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.booking-date {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.booking-status-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: var(--bg-soft);
  color: var(--ink-soft);
}

.booking-status-badge[data-status="new"] {
  background: #fff3cd;
  color: #856404;
}

.booking-status-badge[data-status="confirmed"] {
  background: #d4edda;
  color: #256b36;
}

.booking-status-badge[data-status="cancelled"] {
  background: #f5d5d5;
  color: #8b2d2d;
}

.booking-status-badge[data-status="completed"] {
  background: #d0e4f7;
  color: #1e5a8a;
}

.booking-card-body {
  display: grid;
  gap: 2px;
}

.booking-client {
  font-weight: 600;
  font-size: 0.95rem;
}

.booking-service {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.booking-phone {
  font-size: 0.85rem;
}

.booking-phone a {
  color: var(--accent);
  text-decoration: none;
}

.booking-goal {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 4px;
}

.booking-card-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.btn-confirm,
.btn-complete,
.btn-cancel {
  flex: 1;
  padding: 8px 0;
  border: none;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
}

.btn-confirm {
  background: #256b36;
  color: #fff;
}

.btn-complete {
  background: #1e5a8a;
  color: #fff;
}

.btn-cancel {
  background: #f5d5d5;
  color: #8b2d2d;
}

.btn-confirm:active,
.btn-complete:active,
.btn-cancel:active {
  opacity: 0.7;
}

.slot-add-form {
  display: flex;
  gap: 8px;
}

.slot-add-form input {
  flex: 1;
  min-width: 0;
}

.slot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.slot-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line-soft);
  font-size: 0.82rem;
}

.slot-chip-delete {
  background: none;
  border: none;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
  padding: 0 2px;
}

.slot-chip-delete:hover {
  color: #8b2d2d;
}

.admin-list {
  display: grid;
  gap: 10px;
}

/* --- Admin calendar --- */

.admin-calendar-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.admin-calendar-heading {
  font-family: "Forum", serif;
  font-size: 1rem;
  min-width: 140px;
  text-align: center;
}

.admin-calendar-grid .calendar-day {
  min-height: 64px;
  padding: 8px 6px;
  font-size: 0.82rem;
}

.admin-weekdays {
  margin: 8px 0 6px;
}

.admin-day-detail {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line-soft);
}

.admin-day-title {
  font-family: "Forum", serif;
  font-size: 1rem;
  margin-bottom: 10px;
}

.admin-day-slots {
  display: grid;
  gap: 8px;
}

.admin-slot-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
}

.admin-slot-card[data-booking-status="cancelled"] {
  opacity: 0.5;
}

.admin-slot-time {
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 44px;
  font-variant-numeric: tabular-nums;
}

.admin-slot-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
}

.admin-slot-info a {
  color: var(--accent);
  text-decoration: none;
}

.admin-slot-free {
  color: #256b36;
  font-weight: 600;
  font-size: 0.82rem;
}

.admin-slot-info .slot-chip-delete {
  margin-left: auto;
}

.admin-add-slot-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}

.admin-add-slot-row label {
  font-size: 0.85rem;
  white-space: nowrap;
  color: var(--ink-soft);
}

.admin-add-slot-row input[type="time"] {
  padding: 6px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  font-size: 0.88rem;
}

.admin-metrics {
  margin-top: 20px;
}

.admin-metrics article,
.privacy-grid article,
.admin-list-item {
  padding: 16px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.admin-metrics article strong {
  display: block;
  font-size: 1.6rem;
  font-family: "Forum", serif;
  font-weight: 400;
}

.slot-form,
.booking-meta {
  display: grid;
  gap: 12px;
}

.booking-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.booking-status-label {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--bg-soft);
  color: var(--ink-soft);
}

.booking-status-label[data-status="confirmed"] {
  background: #d4edda;
  color: #256b36;
}

.booking-status-label[data-status="cancelled"] {
  background: #f5d5d5;
  color: #8b2d2d;
}

.booking-status-label[data-status="completed"] {
  background: #d0e4f7;
  color: #1e5a8a;
}

.booking-status-btn {
  font-size: 0.82rem;
  cursor: pointer;
}

.wide-item {
  align-items: start;
}

.privacy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer {
  padding: 18px 0 12px;
}

.site-footer-editorial {
  margin-top: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.92rem;
}

.footer-author {
  font-family: "Forum", serif;
  font-size: 1.3rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: min(340px, calc(100vw - 22px));
  padding: 16px 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(74, 55, 44, 0.12);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 38px rgba(40, 28, 22, 0.12);
}

.cookie-banner__content {
  display: grid;
  gap: 12px;
  align-items: start;
}

.cookie-banner__actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-banner__text {
  display: grid;
  gap: 6px;
}

.cookie-banner__title {
  margin: 0;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.45;
}

.cookie-banner .button {
  min-height: 34px;
  padding: 9px 12px;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
}

.master-login-card {
  width: min(100%, 620px);
  margin: 0 auto;
}

.error-card {
  width: min(100%, 620px);
  margin: 0 auto;
  text-align: center;
}

.error-card h1 {
  margin-bottom: 12px;
}

.error-card p {
  margin-bottom: 24px;
}

.booking-submit:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

.services-primary-cta:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  animation: revealFallback 0s 2s forwards;
}

@keyframes revealFallback {
  to {
    opacity: 1;
    transform: none;
  }
}

[data-reveal="fade-left"] {
  transform: translateX(24px);
}

[data-reveal="fade-right"] {
  transform: translateX(-24px);
}

[data-reveal="fade-down"] {
  transform: translateY(-18px);
}

[data-reveal="zoom-in"] {
  transform: scale(0.97);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  animation: none;
}

@keyframes slowZoom {
  0% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1.22);
  }
}

@keyframes loaderPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scaleX(0.84);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .works-grid,
  .editorial-grid-story,
  .booking-editorial-stage,
  .service-line,
  .admin-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .service-line {
    gap: 10px;
  }

  .service-line-price {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 22px, 100%);
  }

  .site-header {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .site-nav {
    justify-content: center;
    gap: 14px;
  }

  .site-nav-editorial a {
    font-size: 0.88rem;
  }

  .hero-screen-center {
    padding: 80px 0 56px;
    gap: 10px;
  }

  .hero-screen-center h1 {
    font-size: 1.6rem;
    max-width: 28ch;
    padding: 0 8px;
  }

  .hero-brand-name {
    font-size: 3.4rem;
  }

  .hero-brand-description {
    font-size: 0.85rem;
    padding: 0 12px;
  }

  .editorial-section {
    padding: 48px 0;
  }

  .editorial-grid {
    gap: 40px;
  }

  .story-quote-block blockquote {
    font-size: 2rem;
  }

  .works-heading h2,
  .services-heading h2,
  .reviews-heading h2,
  .booking-editorial-heading h2,
  .contacts-heading h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }

  .works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .work-card-body h3 {
    font-size: 1.3rem;
  }

  .work-card-body p {
    font-size: 0.88rem;
  }

  .service-line-name {
    font-size: 1.5rem;
  }

  .service-line-price {
    font-size: 1.2rem;
  }

  .review-editorial-item p {
    font-size: 1.15rem;
  }

  .calendar-day {
    min-height: 64px;
    padding: 8px 6px;
    border-radius: 12px;
  }

  .weekdays,
  .calendar-grid {
    gap: 6px;
  }

  .glass-panel,
  .calendar-panel,
  .booking-form-panel,
  .admin-hero,
  .admin-card,
  .privacy-card,
  .cookie-banner {
    padding: 20px;
  }

  .site-footer,
  .cookie-banner__content,
  .cookie-banner__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    width: min(320px, calc(100vw - 18px));
    right: 10px;
    bottom: 10px;
  }
}

@media (max-width: 560px) {
  .hero-screen {
    min-height: 92vh;
  }

  .hero-screen-video {
    display: block;
  }

  .hero-screen::before {
    filter: saturate(0.94) brightness(0.75);
  }

  .hero-screen-center {
    padding: 60px 0 40px;
    gap: 8px;
  }

  .hero-brand-name {
    font-size: 2.6rem;
    white-space: normal;
    text-align: center;
    line-height: 1.1;
  }

  .hero-brand-subtitle,
  .editorial-kicker,
  .eyebrow,
  .selected-slot-box span {
    font-size: 0.64rem;
    letter-spacing: 0.18em;
  }

  .hero-screen-center h1 {
    font-size: 1.2rem;
    padding: 0 4px;
  }

  .hero-brand-description {
    font-size: 0.78rem;
    line-height: 1.6;
  }

  .hero-header-button {
    font-size: 0.76rem;
    padding: 12px 18px;
    min-height: 44px;
  }

  .site-nav-editorial a {
    font-size: 0.8rem;
  }

  .site-nav {
    gap: 10px;
  }

  .page-shell {
    width: calc(100% - 16px);
  }

  .editorial-section {
    padding: 36px 0;
  }

  .editorial-grid {
    gap: 28px;
  }

  .story-quote-block blockquote {
    font-size: 1.55rem;
  }

  .story-media-caption p:last-child {
    font-size: 0.88rem;
  }

  .works-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .work-card-body {
    gap: 6px;
  }

  .work-card-body h3 {
    font-size: 1.1rem;
  }

  .work-card-body p,
  .work-card-body span {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .service-line {
    padding: 20px 0;
    gap: 6px;
  }

  .service-line-name {
    font-size: 1.25rem;
  }

  .service-line-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .service-line-meta {
    font-size: 0.82rem;
  }

  .service-line-price {
    font-size: 1.1rem;
  }

  .services-heading p,
  .booking-editorial-heading p {
    font-size: 0.88rem;
  }

  .works-heading h2,
  .services-heading h2,
  .reviews-heading h2,
  .booking-editorial-heading h2,
  .contacts-heading h2 {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }

  .booking-editorial-stage {
    gap: 16px;
  }

  .calendar-day {
    min-height: 50px;
    padding: 6px 4px;
    border-radius: 10px;
    font-size: 0.82rem;
  }

  .calendar-day-number {
    font-size: 0.88rem;
  }

  .calendar-day-caption {
    display: none;
  }

  .weekdays {
    font-size: 0.72rem;
  }

  .weekdays,
  .calendar-grid {
    gap: 4px;
  }

  .icon-button {
    width: 40px;
    height: 40px;
  }

  .calendar-toolbar h3 {
    font-size: 1.2rem;
  }

  .slot-chip {
    padding: 10px 14px;
    font-size: 0.88rem;
  }

  .field-group input,
  .field-group textarea,
  .field-group select {
    padding: 12px 14px 12px 40px;
    border-radius: 12px;
    font-size: 0.92rem;
  }

  .field-group label {
    font-size: 0.85rem;
  }

  .selected-slot-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .booking-submit {
    min-height: 48px;
    font-size: 0.82rem;
  }

  .review-editorial-item {
    padding: 22px 0;
  }

  .review-editorial-item p {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .contacts-links {
    gap: 12px 20px;
    font-size: 0.92rem;
  }

  .contact-cards {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .contact-card {
    padding: 20px 14px;
    gap: 8px;
    border-radius: 18px;
  }

  .contact-card-value {
    font-size: 1.05rem;
  }

  .contact-card-icon {
    width: 42px;
    height: 42px;
  }

  .social-link {
    width: 50px;
    height: 50px;
  }

  .social-link svg {
    width: 20px;
    height: 20px;
  }

  .glass-panel,
  .calendar-panel,
  .booking-form-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .cookie-banner__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .button,
  .button-secondary,
  .button-ghost,
  .booking-submit,
  .services-primary-cta,
  .hero-header-button {
    width: 100%;
  }

  .services-primary-cta {
    min-width: 0;
  }

  .consent-row {
    gap: 8px;
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 14px 0 16px;
  }

  .footer-author {
    font-size: 1.05rem;
  }

  .footer-meta {
    flex-wrap: nowrap;
    align-items: baseline;
    justify-content: space-between;
    font-size: 0.82rem;
    gap: 8px;
  }

  .site-footer-editorial {
    padding-top: 20px;
  }
}
