:root {
  --bg: #eef7f3;
  --bg-deep: #d7f1e8;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-soft: rgba(248, 252, 250, 0.92);
  --text: #17352d;
  --muted: #587267;
  --line: rgba(23, 53, 45, 0.12);
  --line-strong: rgba(23, 53, 45, 0.24);
  --primary: #11b790;
  --primary-deep: #0a896e;
  --primary-soft: #d7f6ed;
  --accent: #ff9a52;
  --accent-soft: #ffe7d6;
  --purple: #8d79d9;
  --shadow: 0 20px 50px rgba(19, 83, 66, 0.14);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1700px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(17, 183, 144, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 154, 82, 0.18), transparent 22%),
    linear-gradient(180deg, #f7fcfa 0%, #ebf7f1 100%);
  overflow-x: hidden;
}

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

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

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

button {
  border: 0;
  background: none;
}

.page-shell {
  width: min(calc(100% - 8px), var(--max-width));
  margin: 0 auto;
  padding: 18px 0 42px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.site-header-compact {
  grid-template-columns: auto 1fr auto;
  padding: 16px 22px;
}

.header-booking {
  min-width: 132px;
}

.brand-block,
.section-head,
.booking-copy,
.hero-slide-copy,
.promo-copy,
.chat-message,
.chat-session-card,
.alert-item,
.schedule-item,
.faq-item,
.testimonial-card,
.team-card,
.service-card,
.gallery-content {
  min-width: 0;
}

.header-left-group {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.location-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(17, 183, 144, 0.12);
  color: var(--primary-deep);
  cursor: pointer;
  white-space: nowrap;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand {
  font-family: "Outfit", "Noto Sans SC", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.eyebrow,
.mini-label,
.contact-label,
.section-chip {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow,
.mini-label {
  font-size: 0.72rem;
  color: var(--primary-deep);
}

.header-center {
  display: flex;
  align-items: center;
  gap: 12px;
}

.city-chip {
  display: inline-flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #27cb9f, #11b790);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.search-shell {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 53, 45, 0.08);
  color: #9cafaa;
}

.search-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.header-actions,
.hero-actions-row,
.contact-stack,
.quick-reply-row,
.team-badges,
.service-meta,
.hero-highlights,
.hero-dots,
.site-footer,
.floating-actions {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 10px;
}

.contact-pill {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 18px;
  background: var(--primary-soft);
  white-space: nowrap;
}

.contact-pill span {
  font-size: 0.72rem;
  color: var(--muted);
}

.contact-pill strong {
  font-family: "Outfit", "Noto Sans SC", sans-serif;
  font-size: 1rem;
}

.landline-pill {
  background: var(--accent-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
}

.primary-button,
.secondary-button,
.ghost-button,
.floating-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.primary-button,
.accent-action {
  background: linear-gradient(135deg, var(--primary), #24d2a6);
  color: #fff;
  box-shadow: 0 14px 26px rgba(17, 183, 144, 0.28);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  border: 1px solid var(--line);
}

.ghost-button,
.floating-action {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border: 1px solid var(--line);
}

.light-button {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.floating-action:hover,
.primary-button:focus-visible,
.secondary-button:focus-visible,
.ghost-button:focus-visible,
.floating-action:focus-visible {
  transform: translateY(-2px);
}

.wide-button {
  width: 100%;
}

.hero-section,
.booking-layout,
.dual-grid,
.promo-layout,
.dashboard-grid {
  display: grid;
}

.hero-section {
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap: 22px;
  padding: 26px 0 22px;
}

.hero-section-full {
  display: block;
  padding: 14px 0 20px;
}

.hero-slider-shell,
.hero-side-card,
.panel-card,
.service-card,
.gallery-card,
.promo-card,
.team-card,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-slider-shell {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.hero-slider-full {
  width: 100%;
  margin-left: 0;
  min-height: 72vh;
}

.hero-slider {
  position: relative;
  min-height: inherit;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 260ms ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 53, 45, 0.58) 0%, rgba(10, 53, 45, 0.2) 48%, rgba(10, 53, 45, 0.12) 100%);
}

.hero-slide-copy {
  position: absolute;
  inset: auto auto 28px 28px;
  z-index: 1;
  display: grid;
  gap: 10px;
  width: min(78%, 560px);
  color: #fff;
}

.hero-section-full .hero-slide-copy {
  left: 52px;
  bottom: 40px;
  width: min(420px, calc(100% - 104px));
  gap: 14px;
}

.hero-slide-copy h1,
.section-head h2,
.admin-hero h1,
.card-head h2,
.panel-head h2 {
  margin: 0;
  font-family: "Outfit", "Noto Sans SC", sans-serif;
  line-height: 1.02;
}

.hero-slide-copy h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  max-width: 8ch;
}

.hero-slide-subtitle {
  margin: 0;
  font-family: "Outfit", "Noto Sans SC", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  opacity: 0.92;
}

.hero-slide-description,
.section-head p,
.hero-side-text,
.booking-copy p,
.team-card p,
.faq-item p,
.testimonial-card p,
.alert-item p,
.schedule-item p,
.service-card p,
.gallery-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.hero-slide-description {
  color: rgba(255, 255, 255, 0.92);
}

.mini-label-light {
  color: rgba(255, 255, 255, 0.88);
}

.hero-dots {
  position: absolute;
  left: 28px;
  bottom: 18px;
  z-index: 2;
  gap: 10px;
}

.hero-dot {
  width: 34px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.hero-dot.active {
  background: #fff;
}

.hero-side {
  display: grid;
  gap: 18px;
}

.hero-side-card,
.panel-card {
  padding: 24px;
}

.card-head,
.panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.card-head h2,
.panel-head h2 {
  margin-top: 4px;
  font-size: 1.42rem;
}

.contact-stack {
  gap: 12px;
  flex-wrap: wrap;
}

.contact-stack.vertical {
  flex-direction: column;
  align-items: stretch;
}

.contact-stack > div {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(23, 53, 45, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.contact-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.68rem;
  color: var(--primary-deep);
}

.contact-stack strong {
  font-family: "Outfit", "Noto Sans SC", sans-serif;
  font-size: 1rem;
}

.quick-reply-row {
  gap: 10px;
  flex-wrap: wrap;
}

.quick-reply-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(17, 183, 144, 0.1);
  color: var(--primary-deep);
  cursor: pointer;
}

.hero-highlights {
  gap: 10px;
  flex-wrap: wrap;
}

.quick-grid-section,
.content-section {
  padding: 24px 0;
}

.service-section {
  padding-top: 26px;
}

.service-section-head {
  margin-bottom: 14px;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.compact-head {
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: clamp(1.95rem, 4vw, 3rem);
  max-width: 14ch;
}

.section-chip {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17, 183, 144, 0.12);
  color: var(--primary-deep);
  font-size: 0.72rem;
  font-weight: 700;
}

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

.quick-tile {
  display: grid;
  gap: 12px;
  justify-items: start;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 160ms ease;
}

.quick-tile:hover {
  transform: translateY(-3px);
}

.quick-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

.quick-label {
  font-size: 1rem;
  font-weight: 700;
}

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

.gallery-card {
  padding: 16px;
}

.gallery-main img,
.gallery-thumbs img,
.promo-card img {
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.gallery-main img {
  height: 240px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.gallery-thumbs img {
  height: 112px;
}

.gallery-content {
  display: grid;
  gap: 10px;
  padding: 16px 8px 6px;
}

.gallery-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.gallery-card h3,
.promo-card h3,
.service-card h3 {
  margin: 0;
  font-size: 1.35rem;
  font-family: "Outfit", "Noto Sans SC", sans-serif;
}

.gallery-price {
  font-family: "Outfit", "Noto Sans SC", sans-serif;
  font-size: 1rem;
  color: var(--accent);
  font-weight: 800;
}

.service-meta {
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.94rem;
}

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

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

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

.service-card {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.service-card-production {
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
}

.service-card-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.service-card-body {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 24px 22px 22px;
}

.service-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.service-card-production .mini-label {
  letter-spacing: 0;
  text-transform: none;
  color: #7a8f86;
  font-size: 0.95rem;
}

.service-card-production h3 {
  font-size: 1.65rem;
  font-weight: 800;
}

.service-card-caption {
  font-size: 1rem;
}

.service-sales {
  color: var(--muted);
  font-size: 0.95rem;
  white-space: nowrap;
}

.service-card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.service-card-production .service-price {
  gap: 4px;
}

.service-card-production .service-price strong {
  font-size: 2.2rem;
  color: #6cbf52;
}

.service-card-production .service-price span {
  color: #5c6d65;
  font-size: 1rem;
}

.service-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4ea8ff, #3d81ff);
  color: #fff;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-card-button:hover,
.service-card-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(61, 129, 255, 0.22);
}

.service-card-featured {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(12, 36, 31, 0.26) 0%, rgba(12, 36, 31, 0.62) 52%, rgba(12, 36, 31, 0.86) 100%),
    var(--service-image) center/cover no-repeat;
  color: #fff;
  align-content: end;
}

.service-card-featured .mini-label,
.service-card-featured p,
.service-card-featured .feature-list li,
.service-card-featured .service-price span {
  color: rgba(255, 255, 255, 0.9);
}

.service-card-featured .service-price strong,
.service-card-featured h3 {
  color: #fff;
}

.service-card-featured .feature-list li::before {
  color: #b7ffea;
}

.service-card-featured .secondary-button {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: "Outfit", "Noto Sans SC", sans-serif;
}

.service-price strong {
  font-size: 2rem;
}

.feature-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  color: var(--muted);
  line-height: 1.65;
}

.feature-list li::before {
  content: "+";
  margin-right: 8px;
  color: var(--primary);
}

.promo-layout,
.dual-grid,
.booking-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.warm-section .panel-card,
.booking-card {
  background: var(--surface-soft);
}

.promo-grid {
  display: grid;
  gap: 16px;
}

.promo-card {
  position: relative;
  overflow: hidden;
}

.promo-card img {
  height: 250px;
}

.promo-copy {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
  color: #fff;
}

.promo-copy p {
  margin: 0;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 154, 82, 0.94);
  color: #fff;
  font-weight: 700;
}

.process-list,
.faq-list,
.alert-list,
.schedule-list,
.chat-session-list {
  display: grid;
  gap: 14px;
}

.process-item,
.faq-item,
.alert-item,
.schedule-item,
.chat-session-card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(23, 53, 45, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.process-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(255, 154, 82, 0.18);
  color: var(--accent);
  font-weight: 800;
}

.process-item strong,
.faq-item strong,
.alert-item strong,
.team-card strong,
.chat-session-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

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

.team-card {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.team-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(17, 183, 144, 0.16), rgba(141, 121, 217, 0.18));
  color: var(--primary-deep);
  font-family: "Outfit", "Noto Sans SC", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.team-badges {
  gap: 8px;
  flex-wrap: wrap;
}

.team-badges span,
.status-badge,
.highlight-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
}

.team-badges span,
.highlight-pill {
  background: rgba(17, 183, 144, 0.12);
  color: var(--primary-deep);
}

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

.testimonial-card {
  padding: 22px;
}

.testimonial-card blockquote {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.booking-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

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

.booking-link-card h3 {
  margin: 0;
  font-family: "Outfit", "Noto Sans SC", sans-serif;
  font-size: 1.55rem;
  line-height: 1.2;
}

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

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.auth-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(23, 53, 45, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
}

.auth-form input:focus {
  outline: 2px solid rgba(17, 183, 144, 0.18);
  border-color: rgba(17, 183, 144, 0.28);
}

.auth-page-shell {
  min-height: 100vh;
}

.auth-main {
  min-height: calc(100vh - 170px);
  display: grid;
  place-items: center;
  padding: 18px 0 28px;
}

.auth-shell-card {
  width: min(980px, 100%);
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  overflow: hidden;
}

.auth-shell-card-reverse {
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
}

.auth-primary-panel,
.auth-secondary-panel {
  padding: 30px;
}

.auth-primary-panel {
  display: grid;
  gap: 18px;
}

.auth-secondary-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 32%),
    linear-gradient(180deg, rgba(17, 183, 144, 0.14), rgba(17, 183, 144, 0.06));
  border-left: 1px solid rgba(23, 53, 45, 0.08);
}

.auth-shell-card-reverse .auth-secondary-panel {
  border-left: 0;
  border-right: 1px solid rgba(23, 53, 45, 0.08);
}

.auth-secondary-panel-accent {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.3), transparent 34%),
    linear-gradient(180deg, rgba(17, 183, 144, 0.18), rgba(255, 154, 82, 0.08));
}

.auth-secondary-panel h2 {
  margin: 0;
  font-family: "Outfit", "Noto Sans SC", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.auth-secondary-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.auth-form-single {
  gap: 16px;
}

.auth-switch-link {
  width: 100%;
  margin-top: 10px;
}

.auth-legal-note {
  margin: 2px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.92rem;
}

.auth-legal-note a,
.auth-consent-check a,
.legal-copy a {
  color: var(--primary-deep);
  font-weight: 700;
}

.auth-consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.94rem;
}

.auth-consent-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--primary);
  flex: 0 0 auto;
}

.auth-consent-check span {
  display: block;
}

.auth-primary-panel h1 {
  margin: 0;
  font-family: "Outfit", "Noto Sans SC", sans-serif;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1.08;
}

.auth-page-login .auth-shell-card {
  animation: auth-enter-from-left 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.auth-page-register .auth-shell-card {
  animation: auth-enter-from-right 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.auth-leave-to-register .auth-shell-card {
  animation: auth-exit-to-left 220ms ease forwards;
}

.auth-leave-to-login .auth-shell-card {
  animation: auth-exit-to-right 220ms ease forwards;
}

@keyframes auth-enter-from-left {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes auth-enter-from-right {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes auth-exit-to-left {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-22px);
  }
}

@keyframes auth-exit-to-right {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(22px);
  }
}

@media (max-width: 980px) {
  .auth-shell-card,
  .auth-shell-card-reverse {
    grid-template-columns: 1fr;
  }

  .auth-secondary-panel,
  .auth-shell-card-reverse .auth-secondary-panel {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(23, 53, 45, 0.08);
  }

  .legal-card {
    padding: 22px;
  }
}

.payment-section {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(23, 53, 45, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.legal-page .page-shell {
  max-width: 980px;
}

.legal-main {
  padding-top: 28px;
}

.legal-card {
  padding: 28px;
}

.legal-copy {
  display: grid;
  gap: 18px;
}

.legal-copy section {
  display: grid;
  gap: 10px;
}

.legal-copy h2 {
  margin: 0;
  font-family: "Outfit", "Noto Sans SC", sans-serif;
  font-size: 1.35rem;
}

.legal-copy p,
.legal-copy li {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.legal-copy ol,
.legal-copy ul {
  margin: 0;
  padding-left: 1.3rem;
  display: grid;
  gap: 8px;
}

.payment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.payment-actions {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

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

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.address-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

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

.locate-button {
  min-width: 132px;
}

.location-status {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.chat-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(23, 53, 45, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.chat-form input:focus {
  outline: 2px solid rgba(17, 183, 144, 0.18);
  border-color: rgba(17, 183, 144, 0.28);
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--primary-deep);
  font-weight: 700;
}

.form-message.is-info {
  color: var(--primary-deep);
}

.form-message.is-error {
  color: #c2410c;
}

.primary-button:disabled,
.secondary-button:disabled,
.ghost-button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px 6px 0;
  color: var(--muted);
}

.site-footer-simple {
  margin-top: 10px;
  padding-top: 10px;
}

.site-footer-production {
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(23, 53, 45, 0.08);
  font-size: 0.92rem;
}

.orders-main {
  padding-top: 28px;
}

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

.orders-hero h1 {
  margin: 10px 0 12px;
  font-family: "Outfit", "Noto Sans SC", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.04;
}

.orders-hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.orders-search-card {
  margin-bottom: 22px;
}

.orders-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.orders-search-form-wide .primary-button {
  min-width: 132px;
}

.orders-search-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.orders-results-section {
  margin-top: 0;
}

.orders-result-list {
  display: grid;
  gap: 14px;
}

.order-result-card {
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

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

.order-status-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.order-result-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.order-result-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin-top: 14px;
  color: var(--text);
}

.footer-meta,
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer-enterprise {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(23, 53, 45, 0.08);
  color: var(--muted);
}

.enterprise-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.enterprise-footer-brand,
.enterprise-footer-column {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.enterprise-footer-kicker {
  margin: 0;
  color: rgba(86, 105, 98, 0.92);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.enterprise-footer-brand strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.enterprise-footer-brand p,
.enterprise-footer-column p,
.enterprise-footer-bottom-note {
  margin: 0;
  color: rgba(86, 105, 98, 0.95);
  font-size: 0.88rem;
  line-height: 1.82;
}

.enterprise-footer-title {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.enterprise-footer-link-list {
  display: grid;
  gap: 8px;
}

.enterprise-footer-link-list a {
  color: rgba(86, 105, 98, 0.95);
  font-size: 0.88rem;
  line-height: 1.6;
  transition: color 160ms ease;
}

.enterprise-footer-link-list a:hover {
  color: var(--text);
}

.enterprise-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px dashed rgba(23, 53, 45, 0.1);
}

.enterprise-footer-bottom-meta {
  display: flex;
  align-items: center;
  gap: 10px 18px;
  flex-wrap: wrap;
  color: rgba(86, 105, 98, 0.95);
  font-size: 0.84rem;
}

.enterprise-footer-bottom-meta strong {
  color: var(--text);
  font-weight: 700;
}

.compliance-footer {
  display: grid;
  justify-items: center;
  width: 100%;
  gap: 8px;
  margin-top: 18px;
  padding: 18px 8px 2px;
  text-align: center;
  color: #7a7672;
  border-top: none;
}

.site-footer.compliance-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(760px, calc(100% - 24px));
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  align-self: stretch;
  padding-left: 0;
  padding-right: 0;
}

.compliance-footer-brand {
  margin: 0;
  color: #696560;
  font-size: clamp(1.02rem, 1.5vw, 1.3rem);
  line-height: 1.45;
  letter-spacing: 0;
  font-weight: 500;
}

.site-footer.compliance-footer .compliance-footer-brand,
.site-footer.compliance-footer .compliance-footer-line {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.site-footer.compliance-footer .compliance-footer-address {
  width: 100%;
  max-width: 100%;
}

.compliance-footer-line {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: #7a7672;
  font-size: clamp(0.95rem, 1.12vw, 1.08rem);
  line-height: 1.9;
  text-align: center;
  font-weight: 400;
}

.compliance-footer-label {
  color: #76716d;
  white-space: nowrap;
}

.compliance-footer-value {
  color: #7d7873;
}

.compliance-footer-phone {
  color: #7d7873;
}

.compliance-footer-address {
  max-width: min(760px, 100%);
  margin-inline: auto;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  gap: 10px;
  flex-direction: column;
}

.floating-actions-single {
  bottom: 14px;
}

.chat-widget {
  position: fixed;
  right: 18px;
  bottom: 138px;
  z-index: 40;
  width: min(380px, calc(100vw - 24px));
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 60px rgba(19, 83, 66, 0.22);
  overflow: hidden;
}

.chat-widget-open {
  animation: chat-rise 180ms ease;
}

@keyframes chat-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--primary), #24d2a6);
  color: #fff;
}

.chat-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.14);
  font-size: 1.5rem;
  line-height: 1;
}

.chat-messages {
  display: grid;
  gap: 12px;
  max-height: 320px;
  padding: 18px;
  overflow: auto;
  background: #f7fcfa;
}

.chat-message {
  display: grid;
  gap: 8px;
  max-width: 85%;
  padding: 12px 14px;
  border-radius: 18px;
}

.chat-message p,
.chat-message span {
  margin: 0;
}

.chat-message span {
  font-size: 0.75rem;
  color: var(--muted);
}

.assistant-message {
  justify-self: start;
  background: rgba(17, 183, 144, 0.1);
}

.user-message {
  justify-self: end;
  background: rgba(255, 154, 82, 0.14);
}

.chat-widget .quick-reply-row {
  padding: 0 18px 14px;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 0 18px 18px;
}

.admin-page .page-shell {
  padding-bottom: 28px;
}

.admin-main {
  padding-top: 28px;
}

.admin-error-card {
  margin-bottom: 18px;
}

.admin-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.admin-hero h1 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  max-width: 12ch;
}

.admin-hero-meta {
  display: grid;
  justify-items: end;
  gap: 10px;
  color: var(--muted);
}

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

.wide-card {
  grid-column: span 2;
}

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

.metric-tile {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 53, 45, 0.08);
}

.metric-tile strong {
  display: block;
  font-family: "Outfit", "Noto Sans SC", sans-serif;
  font-size: 1.95rem;
}

.metric-tile span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.stack-list {
  display: grid;
  gap: 14px;
}

.stack-row {
  display: grid;
  gap: 8px;
}

.stack-row header,
.schedule-item header,
.chat-session-card header,
.chat-session-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.progress-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(23, 53, 45, 0.08);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.status-badge {
  background: rgba(17, 183, 144, 0.12);
  color: var(--primary-deep);
  font-size: 0.82rem;
}

.status-pending {
  background: rgba(255, 154, 82, 0.16);
  color: #b35f1a;
}

.status-confirmed {
  background: rgba(17, 183, 144, 0.12);
  color: var(--primary-deep);
}

.status-progress {
  background: rgba(141, 121, 217, 0.16);
  color: #5d46b9;
}

.status-default {
  background: rgba(23, 53, 45, 0.08);
  color: var(--text);
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
}

.orders-table th,
.orders-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(23, 53, 45, 0.08);
  text-align: left;
  vertical-align: top;
}

.orders-table th {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.table-note {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
}

.chat-session-card footer {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.empty-state {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .header-center,
  .header-actions {
    width: 100%;
  }

  .hero-section,
  .orders-hero,
  .promo-layout,
  .dual-grid,
  .booking-layout,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .orders-hero {
    display: grid;
    align-items: start;
  }

  .service-grid,
  .team-grid,
  .testimonial-grid,
  .metric-grid,
  .service-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .orders-search-form,
  .order-result-meta {
    grid-template-columns: 1fr;
  }

  .wide-card {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: calc(100% - 6px);
    max-width: none;
    padding-top: 6px;
    padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  }

  .site-header,
  .header-actions,
  .site-footer,
  .hero-actions-row,
  .admin-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .site-header {
    top: max(8px, env(safe-area-inset-top, 0px));
    gap: 8px;
    padding: 10px;
    border-radius: 18px;
  }

  .header-actions {
    gap: 6px;
  }

  .nav-links,
  .secondary-button,
  .ghost-button,
  .primary-button {
    width: 100%;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 8px;
    border: 1px solid rgba(23, 53, 45, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.88);
    font-size: 0.84rem;
  }

  .header-left-group {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .site-header-compact {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
  }

  .hero-side-card,
  .panel-card {
    padding: 14px;
    border-radius: 18px;
  }

  .brand {
    font-size: 1rem;
  }

  .eyebrow,
  .mini-label,
  .section-chip {
    letter-spacing: 0.12em;
  }

  .location-chip {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.8rem;
  }

  .brand-block {
    gap: 2px;
  }

  .eyebrow,
  .mini-label {
    font-size: 0.64rem;
  }

  .primary-button,
  .secondary-button,
  .ghost-button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .header-booking {
    min-width: 0;
  }

  .panel-head,
  .card-head,
  .orders-hero,
  .booking-hero {
    display: grid;
    gap: 10px;
    align-items: start;
  }

  .hero-slider-shell,
  .hero-slider-full {
    min-height: 280px;
  }

  .hero-slide-copy {
    inset: auto 14px 14px 14px;
    width: auto;
    gap: 6px;
  }

  .hero-section-full .hero-slide-copy {
    left: 14px;
    right: 14px;
    width: auto;
    bottom: 14px;
  }

  .hero-slide-copy h1,
  .section-head h2,
  .admin-hero h1 {
    max-width: none;
  }

  .hero-slide-copy h1,
  .orders-hero h1,
  .auth-primary-panel h1 {
    font-size: clamp(1.48rem, 6.6vw, 2.1rem);
  }

  .auth-consent-check {
    gap: 8px;
    font-size: 0.9rem;
  }

  .auth-legal-note {
    font-size: 0.88rem;
  }

  .section-head {
    gap: 6px;
    margin-bottom: 12px;
  }

  .section-head h2 {
    font-size: clamp(1.3rem, 5.8vw, 1.74rem);
  }

  .hero-slide-description,
  .section-head p,
  .booking-copy p,
  .team-card p,
  .faq-item p,
  .testimonial-card p,
  .alert-item p,
  .schedule-item p,
  .service-card p,
  .gallery-content p {
    font-size: 0.86rem;
    line-height: 1.52;
  }

  .section-chip {
    padding: 5px 9px;
    font-size: 0.64rem;
  }

  .hero-section-full,
  .content-section,
  .quick-grid-section {
    padding: 12px 0;
  }

  .service-section {
    padding-top: 14px;
  }

  .booking-layout,
  .promo-layout,
  .dual-grid,
  .dashboard-grid {
    gap: 10px;
  }

  .hero-highlights,
  .quick-reply-row,
  .team-badges,
  .service-meta,
  .hero-dots,
  .site-footer,
  .floating-actions {
    gap: 6px;
  }

  .highlight-pill,
  .team-badges span,
  .status-badge {
    min-height: 28px;
    padding: 0 8px;
    font-size: 0.76rem;
  }

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

  .quick-tile {
    grid-template-columns: 50px 1fr;
    gap: 6px;
    padding: 10px;
    border-radius: 14px;
  }

  .quick-letter {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    font-size: 1.24rem;
  }

  .quick-label {
    font-size: 0.84rem;
  }

  .service-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-grid,
  .team-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

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

  .gallery-main img {
    height: 172px;
  }

  .gallery-thumbs img {
    height: 76px;
  }

  .service-card-media img {
    height: 172px;
  }

  .service-card-body {
    gap: 6px;
    min-height: auto;
    padding: 12px;
  }

  .service-card-production h3 {
    font-size: 1.18rem;
  }

  .service-card-meta,
  .service-card-footer {
    gap: 8px;
  }

  .service-card-production .service-price strong {
    font-size: 1.5rem;
  }

  .service-sales {
    font-size: 0.78rem;
  }

  .service-card-button {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .chat-widget {
    right: 8px;
    left: 8px;
    bottom: 66px;
    width: auto;
    border-radius: 18px;
  }

  .floating-actions {
    right: 8px;
    left: 8px;
    bottom: 6px;
    flex-direction: row;
  }

  .floating-action {
    flex: 1;
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.82rem;
    border-radius: 14px;
  }

  .chat-form {
    grid-template-columns: 1fr;
  }

  .address-row {
    grid-template-columns: 1fr;
  }

  .region-row {
    grid-template-columns: 1fr;
  }

  .payment-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .orders-main,
  .auth-main {
    padding-top: 12px;
  }

  .auth-shell-card,
  .auth-shell-card-reverse {
    padding: 0;
  }

  .auth-primary-panel,
  .auth-secondary-panel {
    padding: 14px;
  }

  .legal-card {
    padding: 14px;
    border-radius: 18px;
  }

  .orders-search-card,
  .orders-results-section {
    margin-bottom: 14px;
  }

  .orders-page .table-wrap {
    overflow: visible;
  }

  .orders-page .orders-table,
  .orders-page .orders-table tbody,
  .orders-page .orders-table tr,
  .orders-page .orders-table td {
    display: block;
    width: 100%;
  }

  .orders-page .orders-table thead {
    display: none;
  }

  .orders-page .orders-table tr {
    margin-bottom: 10px;
    padding: 14px;
    border: 1px solid rgba(23, 53, 45, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 28px rgba(19, 83, 66, 0.08);
  }

  .orders-page .orders-table td {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(23, 53, 45, 0.08);
  }

  .orders-page .orders-table td:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .orders-page .orders-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .footer-meta,
  .footer-links {
    gap: 10px;
  }

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

  .floating-actions {
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .floating-action {
    min-height: 36px;
  }

  button,
  input,
  select,
  textarea {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .page-shell {
    width: calc(100% - 4px);
    max-width: none;
    padding-top: 4px;
  }

  .brand {
    font-size: 0.96rem;
  }

  .site-header,
  .site-header-compact {
    padding: 8px;
    border-radius: 16px;
    gap: 6px;
  }

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

  .nav-links a {
    min-height: 32px;
    padding: 0 6px;
    font-size: 0.78rem;
    border-radius: 10px;
  }

  .site-footer-enterprise {
    margin-top: 18px;
    padding-top: 18px;
  }

  .enterprise-footer-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .enterprise-footer-brand strong {
    font-size: 0.94rem;
  }

  .enterprise-footer-brand p,
  .enterprise-footer-column p,
  .enterprise-footer-link-list a,
  .enterprise-footer-bottom-note {
    font-size: 0.82rem;
  }

  .enterprise-footer-bottom {
    gap: 10px;
  }

  .enterprise-footer-bottom-meta {
    gap: 8px 12px;
    font-size: 0.8rem;
  }

  .compliance-footer {
    gap: 6px;
    margin-top: 14px;
    padding-top: 14px;
  }

  .compliance-footer-brand {
    font-size: clamp(0.94rem, 4.4vw, 1.08rem);
  }

  .compliance-footer-line {
    font-size: clamp(0.78rem, 3.8vw, 0.9rem);
    line-height: 1.82;
  }

  .location-chip {
    min-height: 30px;
    padding: 0 8px;
    font-size: 0.74rem;
  }

  .primary-button,
  .secondary-button,
  .ghost-button {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .eyebrow,
  .mini-label {
    font-size: 0.6rem;
  }

  .hero-slider-shell,
  .hero-slider-full {
    min-height: 240px;
  }

  .hero-slide-copy {
    inset: auto 10px 12px 10px;
  }

  .hero-section-full .hero-slide-copy {
    left: 10px;
    right: 10px;
    bottom: 12px;
  }

  .hero-side-card,
  .panel-card {
    padding: 12px;
    border-radius: 16px;
  }

  .auth-shell-card,
  .auth-shell-card-reverse {
    padding: 0;
  }

  .auth-primary-panel,
  .auth-secondary-panel {
    padding: 14px;
  }

  .auth-consent-check {
    font-size: 0.88rem;
  }

  .auth-legal-note {
    font-size: 0.84rem;
  }

  .section-head h2,
  .orders-hero h1,
  .auth-primary-panel h1,
  .admin-hero h1 {
    font-size: clamp(1.18rem, 6vw, 1.56rem);
  }

  .hero-slide-copy h1 {
    font-size: clamp(1.28rem, 6.4vw, 1.68rem);
  }

  .hero-slide-description,
  .section-head p,
  .booking-copy p,
  .team-card p,
  .faq-item p,
  .testimonial-card p,
  .alert-item p,
  .schedule-item p,
  .service-card p,
  .gallery-content p {
    font-size: 0.82rem;
  }

  .quick-grid {
    gap: 6px;
  }

  .quick-tile {
    grid-template-columns: 44px 1fr;
    padding: 8px;
  }

  .quick-letter {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 1.08rem;
  }

  .quick-label {
    font-size: 0.8rem;
  }

  .service-card-media img {
    height: 148px;
  }

  .service-card-body {
    padding: 10px;
  }

  .service-card-production h3 {
    font-size: 1.06rem;
  }

  .service-card-production .service-price strong {
    font-size: 1.34rem;
  }

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

  .orders-page .orders-table td {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 8px;
  }

  .floating-actions {
    gap: 6px;
    left: 4px;
    right: 4px;
    bottom: 4px;
  }

  .floating-action {
    min-height: 34px;
    padding: 0 8px;
    font-size: 0.78rem;
    border-radius: 12px;
  }

  .legal-card {
    padding: 14px;
    border-radius: 18px;
  }

  .chat-widget {
    left: 4px;
    right: 4px;
    bottom: 58px;
  }

  .hero-dots {
    left: 12px;
    bottom: 10px;
    gap: 6px;
  }

  .hero-dot {
    width: 24px;
    height: 8px;
  }

  .section-chip {
    padding: 4px 8px;
    font-size: 0.6rem;
  }

  .header-left-group {
    gap: 6px;
  }

  .section-head {
    gap: 5px;
    margin-bottom: 10px;
  }
}
