:root {
  --bg: #f6f0eb;
  --bg-strong: #efe5dc;
  --surface: rgba(255, 250, 246, 0.68);
  --surface-strong: rgba(255, 250, 246, 0.9);
  --line: rgba(94, 72, 63, 0.12);
  --text: #342723;
  --muted: #7f6961;
  --accent: #ca9f9e;
  --accent-deep: #a67274;
  --danger: #d27f85;
  --danger-soft: rgba(210, 127, 133, 0.14);
  --success: #8e9b7b;
  --success-soft: rgba(142, 155, 123, 0.15);
  --shadow: 0 30px 80px rgba(106, 73, 64, 0.12);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --brush-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.6), transparent 28%),
    linear-gradient(180deg, #fbf6f2 0%, var(--bg) 42%, #f3ece5 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

body.has-consent-modal {
  overflow: hidden;
}

body.has-booking-notice-modal {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.55), transparent 20%),
    radial-gradient(circle at 85% 10%, rgba(255, 241, 236, 0.75), transparent 18%);
  z-index: -3;
}

.page-shell {
  position: relative;
  overflow: clip;
  transition: filter 280ms ease, transform 280ms ease;
}

body.has-consent-modal .page-shell {
  filter: blur(12px);
  transform: scale(1.01);
  pointer-events: none;
  user-select: none;
}

.consent-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 80;
}

.consent-overlay.is-visible {
  display: flex;
}

.consent-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 28, 24, 0.24);
}

.consent-modal {
  position: relative;
  width: min(100%, 760px);
  padding: 32px;
  border-radius: 30px;
  background: rgba(255, 250, 246, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 80px rgba(57, 36, 29, 0.2);
  backdrop-filter: blur(18px);
}

.consent-text {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.grain {
  position: fixed;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
  z-index: -2;
}

.brush {
  position: fixed;
  top: 6vh;
  bottom: 6vh;
  width: clamp(48px, 7vw, 92px);
  opacity: calc(0.14 + var(--brush-progress) * 0.46);
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
  transition: opacity 260ms ease, transform 260ms ease;
}

.brush::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 243, 241, 0.9), transparent 32%),
    linear-gradient(180deg, rgba(202, 159, 158, 0.95), rgba(232, 194, 185, 0.55), rgba(202, 159, 158, 0.1));
  transform: scaleY(calc(0.2 + var(--brush-progress) * 0.85));
  transform-origin: top center;
}

.brush::after {
  content: "";
  position: absolute;
  inset: 5% 22%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  mix-blend-mode: screen;
  transform: scaleY(calc(0.1 + var(--brush-progress) * 0.75));
  transform-origin: top center;
}

.brush-left {
  left: -18px;
  transform: rotate(-8deg) translateY(calc((1 - var(--brush-progress)) * -16px));
}

.brush-right {
  right: -18px;
  transform: rotate(8deg) translateY(calc((1 - var(--brush-progress)) * 16px));
}

.site-header,
main {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  margin-top: 14px;
  background: rgba(252, 247, 243, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(82, 58, 49, 0.08);
  backdrop-filter: blur(18px);
  z-index: 20;
}

.brand,
.site-nav a,
.button {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #f0d7d2);
  box-shadow: 0 0 0 8px rgba(202, 159, 158, 0.12);
}

.brand-text,
.site-nav a,
.eyebrow,
.service-label,
.preview-label,
.picker-label {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-text {
  font-size: 0.8rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

main {
  padding: 48px 0 96px;
}

.hero,
.section,
.booking-layout {
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
  min-height: calc(100vh - 140px);
  padding: 48px 0 36px;
}

.eyebrow,
.service-label,
.preview-label,
.picker-label {
  margin: 0 0 16px;
  color: var(--accent-deep);
  font-size: 0.74rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.95;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.6rem, 10vw, 7.4rem);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

h3 {
  font-size: 2rem;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.hero-text,
.section-heading,
.service-card p,
.experience-copy p,
.experience-card p,
.preview-card p,
label span,
input,
select,
textarea,
.section-note,
.picker-hint,
.work-copy p {
  line-height: 1.7;
}

.hero-text,
.experience-copy p,
.experience-card p,
.service-card p,
.preview-card p,
.section-note,
.picker-hint,
.work-copy p {
  color: var(--muted);
  font-size: 1rem;
}

.hero-text {
  max-width: 56ch;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

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

.button-primary {
  color: #fff9f6;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  box-shadow: 0 14px 30px rgba(166, 114, 116, 0.2);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 252, 249, 0.55);
  border-color: rgba(107, 82, 74, 0.12);
}

.button-wide {
  width: 100%;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 11px 16px;
  background: rgba(255, 252, 249, 0.56);
  border: 1px solid rgba(111, 88, 76, 0.1);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.visual-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.visual-card-main {
  right: 0;
  bottom: 48px;
  width: min(100%, 470px);
  padding: 42px;
  background:
    linear-gradient(180deg, rgba(255, 251, 248, 0.88), rgba(241, 226, 220, 0.72)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.8), transparent 30%);
}

.visual-card-main::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.92), transparent 12%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.68), rgba(202, 159, 158, 0.22)),
    linear-gradient(40deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}

.visual-card-main p,
.visual-card-main span,
.visual-card-float p {
  position: relative;
  z-index: 1;
}

.visual-card-main p {
  margin: 0 0 14px;
  color: var(--accent-deep);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-card-main h2 {
  position: relative;
  z-index: 1;
  max-width: 6ch;
}

.visual-card-main span {
  display: inline-block;
  margin-top: 16px;
  color: var(--muted);
}

.visual-card-float {
  top: 96px;
  left: 12px;
  width: 252px;
  min-height: 356px;
  padding: 246px 24px 24px;
  background: rgba(255, 248, 244, 0.72);
}

.metric {
  display: block;
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.9rem;
  line-height: 0.9;
}

.visual-master-photo {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 148px;
  height: 212px;
  transform: translateX(-50%);
  border-radius: 34px;
  object-fit: cover;
  object-position: center 18%;
  box-shadow: 0 24px 42px rgba(82, 58, 49, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.visual-card-float p {
  max-width: 16ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.swatches {
  position: absolute;
  inset: auto 42px 0 auto;
  display: flex;
  gap: 14px;
}

.swatches span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(113, 87, 80, 0.08);
}

.swatches span:nth-child(1) { background: #eeddd7; }
.swatches span:nth-child(2) { background: #f3cbc7; }
.swatches span:nth-child(3) { background: #dccbc1; }
.swatches span:nth-child(4) { background: #f1e7de; }

.section {
  padding: 84px 0 0;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 28px;
}

.section-heading-split {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: end;
  max-width: none;
}

.section-note {
  margin: 0;
}

.services-grid,
.experience-panels,
.works-grid {
  display: grid;
  gap: 18px;
}

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

.works-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, auto);
}

.works-carousel {
  display: grid;
  gap: 18px;
}

.works-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.works-hint {
  margin: 0;
  color: var(--muted);
}

.works-arrows {
  display: flex;
  gap: 10px;
}

.works-arrow {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(111, 88, 76, 0.12);
  border-radius: 50%;
  background: rgba(255, 252, 249, 0.72);
  color: var(--text);
  font: inherit;
  font-size: 1.2rem;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.works-arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(166, 114, 116, 0.28);
}

.works-viewport {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  padding: 8px 28px 18px;
  margin: 0 -28px;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.works-viewport::-webkit-scrollbar {
  display: none;
}

.works-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 4px 0 10px;
}

.work-card,
.service-card,
.experience-card,
.booking-form,
.preview-card,
.booking-preview {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.service-card,
.experience-card,
.work-card {
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.work-card {
  min-height: 320px;
  gap: 18px;
}

.work-slide {
  appearance: none;
  -webkit-appearance: none;
  width: min(280px, calc(100vw - 64px));
  min-height: 0;
  padding: 16px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.76);
  color: var(--text);
  background: var(--surface);
  cursor: zoom-in;
  flex: 0 0 auto;
  box-shadow: 0 18px 38px rgba(82, 58, 49, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.work-slide:hover {
  transform: translateY(-3px);
  border-color: rgba(166, 114, 116, 0.24);
  box-shadow: 0 24px 44px rgba(82, 58, 49, 0.14);
}

.work-card-large {
  grid-column: auto;
}

.work-media-shell {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.08));
}

.work-media-shell-video {
  aspect-ratio: 4 / 5;
}

.work-media {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.work-copy {
  padding-top: 0;
}

.work-copy h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.45rem;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
}

.media-lightbox[hidden] {
  display: none;
}

.media-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 20, 17, 0.74);
  backdrop-filter: blur(12px);
}

.media-lightbox-dialog {
  position: relative;
  width: min(100%, 980px);
  padding: 18px;
  border-radius: 30px;
  background: rgba(255, 250, 246, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 80px rgba(17, 11, 9, 0.26);
}

.media-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(111, 88, 76, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
  font: inherit;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.media-lightbox-stage {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(246, 239, 234, 0.66);
}

.media-lightbox-stage img,
.media-lightbox-stage video {
  display: block;
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  background: #f3ece5;
}

.service-card p,
.experience-card p,
.work-copy p {
  margin: 0;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.experience {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.experience-copy {
  padding-top: 6px;
}

.experience-copy > p:not(.experience-note):not(.eyebrow) {
  display: none;
}

.experience-note {
  display: block;
}

.experience-note-mobile {
  display: none;
}

.experience-panels {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.experience-panels > article.experience-card {
  display: none;
}

.experience-card span {
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.social-card {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.26), rgba(202, 159, 158, 0.08));
  opacity: 0.9;
  pointer-events: none;
}

.social-card > * {
  display: none;
}

.social-card::after {
  content: "";
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  background-color: var(--accent-deep);
  transition: transform 220ms ease, background-color 220ms ease;
}

.social-card[href*="vk.ru"]::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.8 7.2c.13 6.4 3.33 10.25 8.93 10.25h.32v-3.66c2.06.2 3.61 1.69 4.24 3.66h2.91c-.81-2.93-2.95-4.55-4.29-5.17 1.34-.78 3.22-2.67 3.67-5.08h-2.64c-.59 1.96-2.32 3.85-3.89 4.02V7.2h-2.64v7.04c-1.59-.4-3.6-2.42-3.69-7.04H4.8Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.8 7.2c.13 6.4 3.33 10.25 8.93 10.25h.32v-3.66c2.06.2 3.61 1.69 4.24 3.66h2.91c-.81-2.93-2.95-4.55-4.29-5.17 1.34-.78 3.22-2.67 3.67-5.08h-2.64c-.59 1.96-2.32 3.85-3.89 4.02V7.2h-2.64v7.04c-1.59-.4-3.6-2.42-3.69-7.04H4.8Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.social-card[href*="tiktok.com"]::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14.6 3c.28 2.24 1.52 3.58 3.7 3.72v2.53a6.36 6.36 0 0 1-3.66-1.18v6.2c0 3.12-1.9 5.73-5.51 5.73-3.03 0-5.43-2.04-5.43-5.27 0-3.46 2.82-5.55 5.92-5.45v2.73c-1.43-.17-3.04.55-3.04 2.52 0 1.27.88 2.33 2.23 2.33 1.3 0 2.15-.94 2.15-2.66V3h3.64Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14.6 3c.28 2.24 1.52 3.58 3.7 3.72v2.53a6.36 6.36 0 0 1-3.66-1.18v6.2c0 3.12-1.9 5.73-5.51 5.73-3.03 0-5.43-2.04-5.43-5.27 0-3.46 2.82-5.55 5.92-5.45v2.73c-1.43-.17-3.04.55-3.04 2.52 0 1.27.88 2.33 2.23 2.33 1.3 0 2.15-.94 2.15-2.66V3h3.64Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.social-card[href*="instagram.com"]::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.2 3h9.6A4.2 4.2 0 0 1 21 7.2v9.6a4.2 4.2 0 0 1-4.2 4.2H7.2A4.2 4.2 0 0 1 3 16.8V7.2A4.2 4.2 0 0 1 7.2 3Zm0 1.8A2.4 2.4 0 0 0 4.8 7.2v9.6a2.4 2.4 0 0 0 2.4 2.4h9.6a2.4 2.4 0 0 0 2.4-2.4V7.2a2.4 2.4 0 0 0-2.4-2.4H7.2Zm9.9 1.35a1.05 1.05 0 1 1 0 2.1 1.05 1.05 0 0 1 0-2.1ZM12 7.8A4.2 4.2 0 1 1 7.8 12 4.2 4.2 0 0 1 12 7.8Zm0 1.8A2.4 2.4 0 1 0 14.4 12 2.4 2.4 0 0 0 12 9.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.2 3h9.6A4.2 4.2 0 0 1 21 7.2v9.6a4.2 4.2 0 0 1-4.2 4.2H7.2A4.2 4.2 0 0 1 3 16.8V7.2A4.2 4.2 0 0 1 7.2 3Zm0 1.8A2.4 2.4 0 0 0 4.8 7.2v9.6a2.4 2.4 0 0 0 2.4 2.4h9.6a2.4 2.4 0 0 0 2.4-2.4V7.2a2.4 2.4 0 0 0-2.4-2.4H7.2Zm9.9 1.35a1.05 1.05 0 1 1 0 2.1 1.05 1.05 0 0 1 0-2.1ZM12 7.8A4.2 4.2 0 1 1 7.8 12 4.2 4.2 0 0 1 12 7.8Zm0 1.8A2.4 2.4 0 1 0 14.4 12 2.4 2.4 0 0 0 12 9.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: rgba(166, 114, 116, 0.22);
  box-shadow: 0 20px 40px rgba(82, 58, 49, 0.12);
  background: rgba(255, 252, 249, 0.78);
}

.social-card:hover::after {
  transform: scale(1.06);
  background-color: var(--text);
}

.location-layout {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 28px;
  align-items: stretch;
}

.location-copy,
.location-map-card {
  min-height: 320px;
}

.location-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 252, 249, 0.62);
  border: 1px solid rgba(111, 88, 76, 0.08);
  box-shadow: 0 18px 42px rgba(82, 58, 49, 0.08);
}

.location-copy p {
  margin: 0;
}

.location-details {
  display: grid;
  gap: 12px;
}

.location-detail {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(166, 114, 116, 0.12);
}

.location-detail span,
.location-map-label {
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-detail strong {
  font-size: 1.02rem;
  line-height: 1.45;
}

.location-map-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  padding: 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.82), transparent 32%),
    linear-gradient(145deg, rgba(245, 233, 228, 0.94), rgba(255, 250, 246, 0.98));
  border: 1px solid rgba(166, 114, 116, 0.12);
  box-shadow: 0 22px 48px rgba(82, 58, 49, 0.12);
  color: inherit;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.location-map-card:hover {
  transform: translateY(-4px);
  border-color: rgba(166, 114, 116, 0.26);
  box-shadow: 0 28px 56px rgba(82, 58, 49, 0.16);
}

.location-map-surface {
  position: relative;
  min-height: 188px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.location-map-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 188px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.location-map-copy {
  display: grid;
  gap: 10px;
}

.location-map-copy h3,
.location-map-copy p {
  margin: 0;
}

.location-map-copy p {
  color: var(--muted);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 18px;
  align-items: start;
}

.booking-form,
.booking-preview {
  padding: 28px;
  border-radius: var(--radius-lg);
}

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

.consent-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(111, 88, 76, 0.08);
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  padding: 0;
}

.consent-check span {
  font-size: 0.92rem;
  line-height: 1.65;
}

.consent-check a,
.site-footer a {
  color: var(--accent-deep);
}

.booking-preview {
  position: sticky;
  top: 108px;
}

label {
  display: grid;
  gap: 8px;
}

label span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

input,
select,
textarea,
.service-trigger,
.picker-arrow,
.calendar-day,
.time-slot,
.time-back {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(111, 88, 76, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background 220ms ease, color 220ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(166, 114, 116, 0.44);
  box-shadow: 0 0 0 4px rgba(202, 159, 158, 0.12);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.service-field {
  position: relative;
  z-index: 6;
}

.booking-select {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.service-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border-color: rgba(111, 88, 76, 0.12);
  padding-right: 54px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(246, 236, 231, 0.88)),
    linear-gradient(135deg, rgba(202, 159, 158, 0.22), rgba(255, 255, 255, 0));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 12px 24px rgba(106, 73, 64, 0.05);
}

.service-trigger::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(166, 114, 116, 0.78);
  border-bottom: 2px solid rgba(166, 114, 116, 0.78);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 220ms ease, border-color 220ms ease;
}

.service-trigger-text {
  display: block;
  color: var(--text);
  pointer-events: none;
}

.service-field.is-open .service-trigger::after {
  transform: translateY(-35%) rotate(225deg);
  border-color: rgba(142, 91, 94, 0.92);
}

.service-field.is-open {
  z-index: 18;
}

.service-field:focus-within .service-trigger {
  border-color: rgba(166, 114, 116, 0.44);
  box-shadow:
    0 0 0 4px rgba(202, 159, 158, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 12px 24px rgba(106, 73, 64, 0.05);
}

.service-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(180deg, rgba(255, 251, 248, 0.97), rgba(242, 231, 225, 0.95)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.72), transparent 36%);
  box-shadow: 0 24px 48px rgba(82, 58, 49, 0.16);
  backdrop-filter: blur(18px);
  transform: translateY(0);
  z-index: 30;
}

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

.service-option {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--text);
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-option:hover,
.service-option:focus-visible {
  background: rgba(255, 247, 244, 0.92);
  border-color: rgba(166, 114, 116, 0.22);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(106, 73, 64, 0.08);
  outline: none;
}

.service-option.is-selected {
  background: linear-gradient(135deg, rgba(244, 231, 227, 0.96), rgba(255, 252, 249, 0.98));
  border-color: rgba(166, 114, 116, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.service-option.is-placeholder {
  color: var(--muted);
}

.booking-picker {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 252, 249, 0.46);
  border: 1px solid rgba(111, 88, 76, 0.08);
}

.picker-header,
.time-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.picker-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

#calendarMonthLabel {
  min-width: 132px;
  text-align: center;
  font-weight: 700;
}

.picker-arrow,
.time-back {
  width: auto;
  min-width: 50px;
  padding: 12px 16px;
  cursor: pointer;
}

.picker-arrow:hover,
.calendar-day:hover,
.time-slot:hover,
.time-back:hover {
  transform: translateY(-1px);
}

.calendar-weekdays,
.calendar-grid,
.time-grid {
  display: grid;
  gap: 10px;
}

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

.calendar-weekdays span {
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.calendar-day {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
  padding: 14px 12px;
}

.calendar-day strong,
.time-slot strong {
  font-size: 1rem;
}

.calendar-day small,
.time-slot small {
  color: var(--muted);
  font-size: 0.76rem;
}

.calendar-day.muted {
  opacity: 0.34;
  pointer-events: none;
}

.calendar-day.weekend {
  background: rgba(246, 239, 234, 0.48);
}

.calendar-day.full {
  color: var(--danger);
  background: rgba(255, 244, 244, 0.95);
  border-color: rgba(210, 127, 133, 0.28);
}

.calendar-day.full small,
.time-slot.busy small {
  color: var(--danger);
}

.calendar-day.available {
  background: rgba(255, 255, 255, 0.85);
}

.calendar-day.selected {
  border-color: rgba(166, 114, 116, 0.44);
  box-shadow: 0 0 0 4px rgba(202, 159, 158, 0.12);
  background: rgba(252, 239, 236, 0.95);
}

.time-panel {
  display: none;
  gap: 16px;
  padding-top: 8px;
}

.time-panel.is-visible {
  display: grid;
  animation: fadePanel 320ms ease;
}

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

.time-slot {
  min-height: 86px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
}

.time-slot.busy {
  color: var(--danger);
  background: rgba(255, 244, 244, 0.92);
  border-color: rgba(210, 127, 133, 0.28);
}

.time-slot.selected {
  color: var(--text);
  background: rgba(245, 235, 232, 0.98);
  border-color: rgba(166, 114, 116, 0.42);
  box-shadow: 0 0 0 4px rgba(202, 159, 158, 0.12);
}

.selected-slot {
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.selected-slot p {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.booking-notice-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 120;
}

.booking-notice-modal[hidden] {
  display: none !important;
}

.booking-notice-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 28, 24, 0.28);
  backdrop-filter: blur(8px);
}

.booking-notice-dialog {
  position: relative;
  width: min(100%, 520px);
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 250, 246, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 30px 80px rgba(57, 36, 29, 0.22);
  color: var(--text);
}

.booking-notice-title,
.booking-notice-text {
  margin: 0;
}

.booking-notice-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.booking-notice-text {
  color: var(--muted);
  line-height: 1.65;
}

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

.booking-notice-actions .button {
  width: auto;
}

.reminder-link {
  justify-content: center;
}

.picker-hint {
  margin: 0;
}

.time-panel-backdrop {
  display: none;
}

.preview-card {
  margin: 0 0 16px;
  padding: 22px;
  border-radius: 22px;
  background: var(--surface-strong);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  width: min(calc(100% - 32px), var(--container));
  margin: 48px auto 0;
  padding: 18px 22px;
  border-radius: 24px;
  background: rgba(255, 250, 246, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes fadePanel {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero,
  .experience,
  .location-layout,
  .booking-layout,
  .services-grid,
  .experience-panels,
  .works-grid,
  .section-heading-split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 26px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .visual-card-float {
    left: auto;
    right: 28px;
    top: 24px;
    min-height: 332px;
    padding-top: 224px;
  }

  .booking-preview {
    position: static;
  }

  .works-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .experience-note-desktop {
    display: none;
  }

  .experience-note-mobile {
    display: inline;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: min(calc(100% - 20px), var(--container));
    flex-direction: column;
    align-items: stretch;
    border-radius: 28px;
  }

  .site-nav {
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
  }

  .experience-panels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .social-card {
    min-height: 88px;
    padding: 12px;
    border-radius: 20px;
  }

  .social-card::after {
    width: 28px;
    height: 28px;
  }

  .location-copy,
  .location-map-card {
    min-height: auto;
  }

  .location-copy,
  .location-map-card {
    padding: 20px;
    border-radius: 24px;
  }

  .location-map-surface {
    min-height: 154px;
  }

  .location-detail strong {
    font-size: 0.95rem;
  }

  main {
    width: min(calc(100% - 20px), var(--container));
    padding-top: 28px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3.1rem, 16vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }

  .hero-visual {
    min-height: 400px;
  }

  .visual-card-main {
    inset: auto 0 18px 0;
    width: auto;
    padding: 28px;
  }

  .visual-card-float {
    right: 12px;
    width: 194px;
    min-height: 288px;
    padding: 192px 16px 16px;
  }

  .visual-master-photo {
    top: 14px;
    left: 50%;
    width: 122px;
    height: 168px;
    transform: translateX(-50%);
    border-radius: 28px;
  }

  .metric {
    font-size: 2.3rem;
  }

  .works-arrow {
    width: 46px;
    height: 46px;
  }

  .work-slide {
    width: min(240px, calc(100vw - 52px));
    padding: 14px;
  }

  .work-copy h3 {
    font-size: 1.24rem;
  }

  .media-lightbox-dialog {
    padding: 14px;
    border-radius: 24px;
  }

  .swatches {
    right: 10px;
    bottom: -8px;
    gap: 10px;
  }

  .swatches span {
    width: 38px;
    height: 38px;
  }

  .calendar-weekdays,
  .calendar-grid {
    gap: 8px;
  }

  .calendar-weekdays span {
    font-size: 0.7rem;
  }

  .calendar-day {
    min-height: 72px;
    padding: 8px 6px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
  }

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

  .picker-header,
  .time-panel-head {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px 12px;
  }

  .time-panel-head > div {
    min-width: 0;
  }

  .time-panel-head .picker-label {
    margin-bottom: 6px;
  }

  .time-back {
    min-width: 0;
    padding: 10px 12px;
    align-self: center;
  }

  .calendar-day strong {
    font-size: 0.92rem;
    line-height: 1;
  }

  .calendar-day small {
    width: 100%;
    font-size: 0.68rem;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .time-panel {
    position: absolute;
    top: 12px;
    left: 50%;
    width: min(340px, calc(100% - 24px));
    transform: translateX(-50%);
    z-index: 90;
    gap: 12px;
    padding: 16px;
    border-radius: 26px;
    background:
      linear-gradient(180deg, rgba(255, 251, 248, 0.98), rgba(244, 233, 228, 0.98)),
      radial-gradient(circle at top right, rgba(255, 255, 255, 0.72), transparent 36%);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 60px rgba(57, 36, 29, 0.22);
    max-height: none;
    overflow: auto;
    backdrop-filter: blur(18px);
  }

  .time-panel-backdrop.is-visible {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(42, 28, 24, 0.28);
    z-index: 85;
    border-radius: 26px;
  }

  .brush {
    width: 42px;
  }

  .consent-modal {
    padding: 24px;
    border-radius: 24px;
  }
}

@media (max-width: 520px) {
  .works-arrows {
    display: none;
  }

  .works-viewport {
    padding: 6px 12px 14px;
    margin: 0 -12px;
    mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  }

  .works-hint {
    font-size: 0.92rem;
  }

  .work-slide {
    width: min(206px, calc(100vw - 44px));
    padding: 12px;
    border-radius: 20px;
  }

  .media-lightbox {
    padding: 12px;
  }

  .media-lightbox-dialog {
    padding: 12px;
  }

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

  .experience-panels {
    gap: 8px;
  }

  .social-card {
    min-height: 72px;
    padding: 10px 8px;
    border-radius: 18px;
  }

  .social-card::after {
    width: 24px;
    height: 24px;
  }

  .booking-picker {
    padding: 18px;
  }

  #calendarMonthLabel {
    min-width: 0;
  }

  .calendar-weekdays,
  .calendar-grid {
    gap: 6px;
  }

  .calendar-day {
    min-height: 64px;
    padding: 8px 4px;
  }

  .calendar-day strong {
    font-size: 0.86rem;
  }

  .calendar-day small {
    font-size: 0.62rem;
  }

  .time-panel {
    inset: 8px;
    width: auto;
    transform: none;
    gap: 10px;
    padding: 14px;
  }
}

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

  .button,
  .brush,
  .reveal,
  input,
  select,
  textarea,
  .picker-arrow,
  .calendar-day,
  .time-slot,
  .time-back {
    transition: none;
  }
}
