:root {
  color-scheme: light;
  --ink: #171514;
  --muted: #716b67;
  --line: #e9e3dd;
  --surface: #ffffff;
  --soft: #f7f1ed;
  --blush: #d99a9f;
  --rose: #9f4756;
  --moss: #68745a;
  --gold: #c79b62;
  --shadow: 0 24px 70px rgba(57, 42, 34, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fbfaf8;
  color: var(--ink);
}

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-icon,
.mini-logo {
  width: 46px;
  height: 46px;
  border: 2px solid rgba(199, 155, 98, 0.55);
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 8px 24px rgba(57, 42, 34, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 15px;
}

.nav-links a {
  position: relative;
  padding: 26px 0;
  text-decoration: none;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.call-link {
  margin-left: auto;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 46px;
  padding: 6px 14px 6px 8px;
  border: 1px solid rgba(159, 71, 86, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4) border-box;
  box-shadow: 0 12px 30px rgba(221, 42, 123, 0.14);
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.call-link:hover,
.call-link:focus-visible,
.instagram-link:hover,
.instagram-link:focus-visible,
.contact-cta:hover,
.contact-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(221, 42, 123, 0.22);
}

.call-link span:not(.instagram-logo) {
  color: var(--rose);
  font-weight: 800;
}

.instagram-logo {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0 22%, #fdf49700 23%),
    radial-gradient(circle at 10% 92%, #fd5949 0 36%, #fd594900 37%),
    linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af 72%, #515bd4);
}

.instagram-logo::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.instagram-logo::after {
  content: "";
  position: absolute;
  right: 7px;
  top: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(520px, 74vh, 760px);
  overflow: hidden;
  display: flex;
  align-items: end;
}

.hero-media,
.hero-media img,
.hero-media video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(23, 18, 17, 0.92), rgba(23, 18, 17, 0.42), rgba(23, 18, 17, 0.22)),
    linear-gradient(0deg, rgba(23, 18, 17, 0.84), transparent 58%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 82px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd9cf;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 8vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions,
.section-heading,
.modal-header,
.summary-row,
.service-meta {
  display: flex;
  align-items: center;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 24px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--rose);
  color: #fff;
}

.button-primary:hover {
  background: #873846;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button-outline {
  border-color: var(--line);
  background: var(--surface);
}

.content-grid {
  width: min(1180px, calc(100% - 32px));
  margin: -46px auto 80px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 38px;
  align-items: start;
}

.main-column {
  display: grid;
  gap: 24px;
}

.notice,
.section,
.booking-card,
.booking-modal .booking-flow {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.notice,
.section {
  border-radius: 8px;
  padding: clamp(22px, 4vw, 40px);
}

.notice {
  background: #f1eeec;
  box-shadow: none;
}

.notice.is-hidden {
  display: none;
}

.notice h2,
.section h2,
.booking-card h2,
.time-card h3,
.summary-card h3 {
  margin: 0;
}

.notice p,
.section p,
.muted {
  color: var(--muted);
  line-height: 1.7;
}

.notice .button {
  margin-top: 16px;
}

.section-heading {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-note,
.muted {
  color: var(--muted);
  font-size: 14px;
}

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

.service-item {
  width: 100%;
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.service-item:hover,
.service-item:focus-visible {
  border-color: var(--rose);
  box-shadow: 0 10px 30px rgba(159, 71, 86, 0.12);
}

.service-item img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 8px;
}

.service-item h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.service-meta {
  gap: 10px;
  color: var(--muted);
}

.service-meta strong {
  color: var(--ink);
}

.service-more {
  display: none;
  margin: 14px auto 0;
}

.service-arrow {
  color: var(--rose);
  font-size: 28px;
}

.studio-band {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #fff, #fbefe9);
}

.studio-points {
  display: grid;
  gap: 10px;
}

.studio-points span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 16px 8px 10px;
  border: 1px solid rgba(221, 42, 123, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--rose);
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.insta-profile-strip {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 12px;
  border: 1px solid rgba(221, 42, 123, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(245, 133, 41, 0.32), rgba(221, 42, 123, 0.34), rgba(81, 91, 212, 0.28)) border-box;
  box-shadow: 0 14px 34px rgba(221, 42, 123, 0.1);
  text-decoration: none;
}

.insta-profile-strip img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(199, 155, 98, 0.55);
}

.insta-profile-strip span {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.insta-profile-strip small {
  color: var(--muted);
}

.insta-profile-strip b {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 0 16px;
  background: var(--rose);
  color: #fff;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item::after {
  content: "View design";
  position: absolute;
  inset: auto 10px 10px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.gallery-controls[hidden],
.service-more[hidden] {
  display: none;
}

.gallery-controls span {
  min-width: 54px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.gallery-nav-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--rose);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.gallery-nav-button:hover,
.gallery-nav-button:focus-visible {
  border-color: var(--rose);
  background: #fff4f1;
  transform: translateY(-1px);
}

.gallery-nav-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.gallery-lightbox {
  width: min(920px, calc(100% - 28px));
  border: 0;
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.3);
}

.gallery-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.7);
}

.gallery-lightbox img {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 6px;
}

.gallery-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.92);
}

.gallery-item:hover::after,
.gallery-item:focus-within::after {
  opacity: 1;
  transform: translateY(0);
}

.admin-panel {
  border-style: dashed;
}

.admin-subtitle,
.admin-review-panel h3 {
  margin: 0 0 14px;
}

.upload-drop {
  min-height: 170px;
  display: grid;
  place-items: center;
  gap: 8px;
  border: 1px dashed var(--blush);
  border-radius: 8px;
  background: #fff8f6;
  text-align: center;
  cursor: pointer;
  padding: 28px;
}

.upload-drop input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.upload-drop span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  font-size: 28px;
}

.upload-drop small {
  color: var(--muted);
}

.admin-review-panel {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.admin-review-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.admin-review-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.admin-review-list {
  display: grid;
  gap: 12px;
}

.admin-review-empty {
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
}

.admin-review-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.admin-review-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.admin-review-card h4,
.admin-review-card p {
  margin: 0;
}

.admin-review-card small {
  color: var(--muted);
}

.review-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f1eeec;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.review-status.is-visible {
  background: #edf3e8;
  color: var(--moss);
}

.admin-review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-review-actions button {
  min-height: 38px;
  border-radius: 8px;
}

.review-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.review-filter-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
}

.review-filter-inline select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 38px 0 14px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.rating-summary {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.rating-summary strong {
  display: block;
  font-size: 38px;
}

.rating-summary small {
  display: block;
  color: var(--muted);
  margin-top: 8px;
}

.rating-bars {
  display: grid;
  gap: 8px;
}

.rating-bars button {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 9px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.rating-bars button:hover,
.rating-bars button:focus-visible {
  border-color: var(--rose);
  background: #fff4f1;
  color: var(--rose);
}

.rating-bars i {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose) var(--fill), #ece7e3 var(--fill));
}

.review-dashboard {
  display: grid;
  grid-template-columns: minmax(250px, 300px) 1fr;
  gap: 18px;
  margin-top: 16px;
}

.review-filter-panel {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.review-filter-panel label {
  display: block;
  margin-bottom: 12px;
  font-weight: 800;
}

.review-filter-panel select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

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

.review-scroll-list {
  max-height: 360px;
  overflow: auto;
  padding-right: 8px;
}

.reviews-list article {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.review-empty-state {
  color: var(--muted);
}

.reviews-list h3,
.reviews-list p {
  margin: 0 0 6px;
}

.reviews-list p {
  color: var(--muted);
  font-size: 14px;
}

.reviews-list span {
  font-size: 14px;
  line-height: 1.55;
}

.review-modal {
  width: min(600px, calc(100% - 32px));
  border: 0;
  border-radius: 10px;
  padding: 0;
  background: #fff;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.28);
}

.review-modal::backdrop {
  background: rgba(0, 0, 0, 0.54);
}

.review-form {
  display: grid;
  gap: 24px;
  padding: clamp(26px, 5vw, 36px);
}

.review-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.review-modal-head h2 {
  margin: 0;
  font-size: clamp(28px, 5vw, 34px);
  line-height: 1.1;
}

.modal-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus-visible {
  background: var(--soft);
  color: var(--ink);
}

.review-form label {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-size: 22px;
}

.review-form input,
.review-form textarea {
  width: 100%;
  border: 1px solid #d9d5d2;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  padding: 14px 16px;
  font-size: 18px;
  outline: none;
}

.review-form input {
  min-height: 60px;
}

.review-form textarea {
  min-height: 168px;
  resize: vertical;
}

.review-form input:focus,
.review-form textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(159, 71, 86, 0.1);
}

.rating-field {
  gap: 8px;
}

.star-picker {
  display: flex;
  gap: 8px;
}

.star-picker button {
  width: 28px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.star-picker button.is-active {
  color: var(--gold);
}

.review-submit {
  justify-self: end;
  min-width: 132px;
  min-height: 60px;
  border-radius: 999px;
  font-size: 20px;
  background: #ef8d44;
}

.review-success {
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: #edf3e8;
  color: var(--moss);
  font-weight: 700;
}

.review-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(199, 155, 98, 0.18), transparent 34%),
    linear-gradient(135deg, #fffaf6, #f6eee8);
}

.review-only-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 16px;
}

.review-only-card {
  width: min(720px, 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.review-only-brand {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 22px;
  align-items: center;
  padding: clamp(24px, 5vw, 38px);
  border-bottom: 1px solid var(--line);
}

.review-only-brand img {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f1e7dd;
  box-shadow: 0 14px 35px rgba(57, 42, 34, 0.12);
}

.review-only-brand h1 {
  margin: 4px 0 8px;
  font-size: clamp(30px, 6vw, 44px);
  line-height: 1;
}

.review-only-brand p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.review-only-form {
  padding: clamp(24px, 5vw, 38px);
}

.review-back-link {
  display: block;
  padding: 0 38px 34px;
  color: var(--rose);
  font-weight: 800;
  text-align: center;
}

.address-link {
  display: inline-flex;
  margin: 8px 0 16px;
  font-weight: 700;
}

.map-preview {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 47%, rgba(255, 255, 255, 0.5) 48%, transparent 49%),
    linear-gradient(0deg, transparent 48%, rgba(255, 255, 255, 0.5) 49%, transparent 50%),
    radial-gradient(circle at 65% 42%, #b8cee8 0 7%, transparent 8%),
    radial-gradient(circle at 44% 58%, #cfe2c2 0 11%, transparent 12%),
    linear-gradient(135deg, #edf3f7, #d9e9f4 50%, #b7d0ea);
  background-size: 110px 110px, 92px 92px, auto, auto, auto;
}

.map-preview::before {
  content: "";
  position: absolute;
  inset: 22% 14% 20% 8%;
  border: 10px solid rgba(255, 255, 255, 0.86);
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-18deg);
}

.map-preview span {
  position: absolute;
  left: 58%;
  top: 48%;
  transform: translate(-50%, -50%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.booking-card {
  position: sticky;
  top: 96px;
  border-radius: 8px;
  padding: 42px 28px;
  text-align: center;
}

.booking-card-head {
  display: block;
}

.booking-card .mini-logo,
.summary-card .mini-logo {
  display: block;
  margin: 0 auto 22px;
  width: 108px;
  height: 108px;
  border-color: var(--line);
}

.booking-card p,
.summary-card p {
  color: var(--muted);
}

.gold-stars {
  color: var(--gold);
}

.booking-card .button {
  margin: 18px auto 26px;
}

.booking-details {
  display: grid;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.booking-details button {
  border: 0;
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.detail-row {
  position: relative;
  display: block;
}

.contact-panel {
  display: grid;
  gap: 8px;
}

.contact-panel a {
  color: var(--rose);
  font-weight: 700;
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px 14px 8px 10px;
  border: 1px solid rgba(221, 42, 123, 0.18);
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.booking-modal {
  width: min(1160px, calc(100% - 24px));
  border: 0;
  padding: 0;
  background: transparent;
}

.booking-modal::backdrop {
  background: rgba(23, 21, 20, 0.48);
}

.booking-flow {
  border-radius: 8px;
  padding: 22px;
}

.modal-header {
  gap: 12px;
  margin-bottom: 18px;
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
}

.time-card,
.summary-card {
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
}

.time-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 36px;
  margin-top: 28px;
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.calendar-nav {
  display: inline-flex;
  gap: 6px;
}

.calendar-nav button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.calendar-nav button:hover:not(:disabled),
.calendar-nav button:focus-visible {
  border-color: var(--rose);
  color: var(--rose);
}

.calendar-nav button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

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

.calendar span,
.calendar button {
  min-height: 34px;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.calendar button:not(:disabled) {
  cursor: pointer;
}

.calendar button:not(:disabled):hover,
.calendar button:not(:disabled):focus-visible {
  background: #fff4f1;
  color: var(--rose);
}

.calendar .muted-day {
  color: #aaa;
  text-decoration: line-through;
  cursor: not-allowed;
}

.calendar .selected-day {
  background: var(--rose);
  color: #fff;
  font-weight: 800;
}

.timezone-label {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.timezone-label select {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
}

.slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.slots button {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.slots button:hover,
.slots button.selected {
  border-color: var(--rose);
  background: #fff4f1;
  color: var(--rose);
}

.booking-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
  text-align: center;
}

.summary-row {
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0 8px;
}

.summary-row.total {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.booking-field {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--ink);
  font-weight: 800;
  text-align: left;
}

.booking-field input,
.booking-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  padding: 12px 14px;
}

.booking-field input {
  min-height: 46px;
}

.booking-field textarea {
  resize: vertical;
}

.booking-success {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: #edf3e8;
  color: var(--moss);
  font-weight: 800;
  text-align: left;
}

@media (max-width: 980px) {
  .nav-shell {
    min-height: auto;
    padding: 12px 0;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
    order: 3;
    margin-left: 0;
  }

  .nav-links {
    display: none;
    order: 4;
    width: 100%;
    gap: 0;
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav-links a {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .nav-links a::after {
    display: none;
  }

  .call-link {
    order: 2;
    width: auto;
    margin-left: auto;
    min-height: 42px;
    padding: 6px 12px 6px 8px;
  }

  .content-grid,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-card {
    position: static;
    order: -1;
  }

  .studio-band,
  .rating-summary,
  .review-dashboard,
  .time-grid {
    grid-template-columns: 1fr;
  }

  .review-scroll-list {
    max-height: 520px;
  }
}

@media (max-width: 680px) {
  .nav-shell {
    width: min(100% - 20px, 1180px);
    gap: 8px;
  }

  .brand-mark span {
    font-size: 14px;
  }

  .brand-icon {
    width: 40px;
    height: 40px;
  }

  .call-link {
    gap: 7px;
    min-height: 40px;
    padding: 5px 9px 5px 6px;
    font-size: 13px;
  }

  .call-link strong {
    display: none;
  }

  .call-link .instagram-logo {
    width: 30px;
    height: 30px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 420px;
  }

  .hero-content {
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.55;
    margin-top: 14px;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .content-grid {
    width: 100%;
    margin-top: 0;
    gap: 14px;
  }

  .main-column {
    gap: 14px;
  }

  .notice,
  .section,
  .booking-card {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }

  .notice:not(.is-hidden) {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 50%;
    z-index: 80;
    display: grid;
    gap: 12px;
    max-width: 420px;
    margin: 0 auto;
    border: 1px solid #eadfd4;
    border-radius: 14px;
    padding: 22px;
    background: rgba(255, 252, 249, 0.98);
    box-shadow: 0 28px 80px rgba(40, 26, 20, 0.28);
    transform: translateY(-50%);
  }

  .notice:not(.is-hidden)::before {
    content: "Booking note";
    width: fit-content;
    border-radius: 999px;
    padding: 6px 10px;
    background: #fff4f1;
    color: var(--rose);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .notice h2 {
    font-size: 24px;
  }

  .notice p {
    font-size: 14px;
    line-height: 1.55;
  }

  .notice .button {
    width: 100%;
    margin-top: 4px;
    background: var(--rose);
    color: #fff;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .admin-review-head,
  .admin-review-card header {
    flex-direction: column;
  }

  .service-item {
    grid-template-columns: 64px 1fr auto;
    gap: 12px;
    padding: 10px;
  }

  .service-item img {
    width: 64px;
    height: 64px;
  }

  .service-item h3 {
    margin-bottom: 5px;
    font-size: 15px;
  }

  .service-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    font-size: 13px;
  }

  .service-more {
    display: inline-flex;
  }

  .studio-band {
    gap: 18px;
  }

  .studio-band p {
    font-size: 14px;
    line-height: 1.55;
  }

  .studio-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .studio-points span {
    padding: 10px;
    font-size: 13px;
    text-align: center;
  }

  .booking-card {
    display: grid;
    grid-template-columns: minmax(118px, 0.85fr) 1.15fr;
    gap: 14px;
    padding: 22px 18px 24px;
    text-align: left;
  }

  .booking-card-head {
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 10px;
    padding: 0 14px 0 0;
    border-right: 1px solid #eadfd4;
    border-bottom: 0;
  }

  .booking-card .mini-logo {
    width: 72px;
    height: 72px;
    margin: 0;
    border: 3px solid #f1e7dd;
    box-shadow:
      0 0 0 4px rgba(241, 231, 221, 0.7),
      0 12px 28px rgba(57, 42, 34, 0.1);
  }

  .booking-card h2 {
    margin: 0 0 4px;
    font-size: 17px;
    letter-spacing: 0.02em;
  }

  .booking-card p {
    margin: 0;
    font-size: 12px;
    color: #4d4946;
  }

  .booking-card p .gold-stars {
    display: block;
    margin: 2px 0;
    font-size: 14px;
  }

  .booking-card .button {
    min-width: 92px;
    min-height: 40px;
    margin: 10px 0 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #9f4756, #a64f61);
    font-size: 16px;
  }

  .booking-details {
    align-content: start;
    gap: 10px;
    padding-top: 2px;
    border-top: 0;
    font-size: 13px;
    color: #303030;
  }

  .detail-row {
    min-height: 30px;
    padding-left: 28px;
  }

  .detail-row::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    color: var(--rose);
    font-size: 18px;
    font-weight: 400;
    text-align: center;
  }

  .detail-location::before {
    content: "⌖";
  }

  .detail-contact::before {
    content: "☏";
  }

  .booking-details button {
    width: fit-content;
    color: #101010;
    font-size: 14px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 0;
  }

  .contact-panel a {
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px 12px;
    text-align: left;
    font-size: 13px;
    color: var(--rose);
    font-weight: 800;
  }

  .contact-cta {
    justify-content: flex-start;
    gap: 10px;
    background: #fff;
  }

  .contact-cta .instagram-logo {
    width: 28px;
    height: 28px;
  }

  .review-dashboard {
    grid-template-columns: minmax(132px, 0.78fr) minmax(0, 1.22fr);
    gap: 10px;
    align-items: start;
  }

  .review-actions {
    width: 100%;
    justify-content: space-between;
  }

  .review-filter-inline {
    flex: 1;
  }

  .review-filter-inline select {
    width: 100%;
  }

  .review-filter-panel {
    padding: 12px;
  }

  .review-filter-panel label {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .rating-summary {
    grid-template-columns: 48px 1fr;
    gap: 8px;
    padding: 10px;
  }

  .rating-summary strong {
    font-size: 24px;
  }

  .rating-summary span {
    display: block;
    font-size: 12px;
    line-height: 1.2;
  }

  .rating-summary small {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.25;
  }

  .rating-bars {
    gap: 5px;
  }

  .rating-bars button {
    grid-template-columns: 22px 1fr 14px;
    min-height: 24px;
    gap: 5px;
    padding: 4px 5px;
    font-size: 10px;
  }

  .rating-bars i {
    height: 5px;
  }

  .review-scroll-list {
    max-height: 190px;
  }

  .reviews-list {
    gap: 10px;
  }

  .reviews-list article {
    padding-bottom: 10px;
  }

  .reviews-list h3 {
    font-size: 14px;
  }

  .reviews-list p,
  .reviews-list span {
    font-size: 12px;
    line-height: 1.45;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .gallery-item::after {
    display: none;
  }

  .gallery-controls {
    margin-top: 12px;
    gap: 12px;
  }

  .gallery-nav-button {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .insta-profile-strip {
    grid-template-columns: 48px 1fr;
  }

  .insta-profile-strip b {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .booking-flow {
    padding: 14px;
  }

  .review-form {
    gap: 20px;
  }

  .review-form label {
    font-size: 18px;
  }

  .review-form input {
    min-height: 54px;
  }

  .review-form textarea {
    min-height: 150px;
  }

  .review-submit {
    width: 100%;
  }

  .review-only-shell {
    align-items: start;
    padding: 18px 12px;
  }

  .review-only-card {
    border-radius: 12px;
  }

  .review-only-brand {
    grid-template-columns: 76px 1fr;
    gap: 14px;
    padding: 20px;
  }

  .review-only-brand img {
    width: 72px;
    height: 72px;
  }

  .review-only-brand h1 {
    font-size: 26px;
  }

  .review-only-brand p:last-child {
    font-size: 13px;
    line-height: 1.5;
  }

  .review-back-link {
    padding: 0 24px 26px;
  }

  .time-card,
  .summary-card {
    padding: 18px;
  }

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

@media (max-width: 420px) {
  .brand-mark span {
    display: none;
  }

  .booking-card {
    grid-template-columns: minmax(108px, 0.82fr) 1.18fr;
    gap: 12px;
    padding: 18px 14px 20px;
  }

  .booking-card-head {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-right: 10px;
  }

  .booking-card .mini-logo {
    width: 64px;
    height: 64px;
  }

  .booking-card h2 {
    font-size: 15px;
  }

  .booking-card p {
    font-size: 11px;
  }

  .booking-card .button {
    min-width: 86px;
    min-height: 38px;
    font-size: 14px;
  }

  .booking-details {
    font-size: 12px;
  }

  .review-dashboard {
    grid-template-columns: minmax(118px, 0.78fr) minmax(0, 1.22fr);
    gap: 8px;
  }

  .rating-summary {
    grid-template-columns: 42px 1fr;
    padding: 8px;
  }

  .rating-summary strong {
    font-size: 21px;
  }

  .rating-bars button {
    grid-template-columns: 18px 1fr 12px;
    font-size: 9px;
  }

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