:root {
  --bg: #040404;
  --bg-soft: #0b0b0b;
  --surface: #101010;
  --surface-2: #171512;
  --line: rgba(211, 171, 95, 0.3);
  --text: #f8f3e9;
  --text-soft: #cfbb95;
  --gold: #d3ab62;
  --gold-bright: #f4d79b;
  --gold-deep: #8b672e;
  --gold-glow: rgba(211, 171, 95, 0.62);
  --accent: #f1e4cc;
  --danger: #ff9c9c;
  --ok: #c2f0c8;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.58);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: radial-gradient(circle at 18% 16%, rgba(211, 171, 95, 0.22) 0%, transparent 36%),
    radial-gradient(circle at 85% 0%, rgba(170, 128, 55, 0.18) 0%, transparent 34%),
    linear-gradient(180deg, #050505 0%, #0a0908 100%);
  color: var(--text);
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
  line-height: 1.55;
  text-align: center;
}

.ambient-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.02) 0%, transparent 36%),
    radial-gradient(circle at 35% 65%, rgba(211, 171, 95, 0.12), transparent 50%);
  mix-blend-mode: screen;
  z-index: -1;
}

img,
video {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-sm);
}

a {
  color: inherit;
}

.language-bar {
  padding: 0.65rem clamp(1rem, 4vw, 2.3rem);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(10, 8, 6, 0.84);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand-micro {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.language-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  justify-content: flex-end;
}

.lang-compact-wrap {
  display: none;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-soft);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.lang-compact {
  min-width: 120px;
  border: 1px solid rgba(212, 177, 114, 0.32);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-family: inherit;
  font-size: 0.74rem;
}

.lang-compact:focus {
  outline: 1px solid var(--gold);
}

.lang-btn {
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-radius: 999px;
  padding: 0.38rem 0.65rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: 180ms ease;
}

.lang-btn:hover,
.lang-btn.active {
  border-color: var(--gold);
  background: rgba(212, 177, 114, 0.15);
}

.site-nav {
  padding: 1rem clamp(1rem, 4vw, 2.3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(212, 177, 114, 0.13);
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  text-decoration: none;
  letter-spacing: 0.03em;
  text-shadow: 0 0 14px rgba(211, 171, 95, 0.26);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid transparent;
  transition: 180ms ease;
}

.nav-links a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

main {
  padding-inline: clamp(1rem, 4vw, 2.3rem);
}

.section {
  margin: clamp(3.8rem, 8vw, 6rem) 0;
}

.service-pages-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.service-page-card {
  display: grid;
  gap: 0.45rem;
  text-decoration: none;
  padding: 1rem 0.9rem;
  border: 1px solid rgba(211, 171, 95, 0.28);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(212, 177, 114, 0.09), rgba(13, 12, 11, 0.9));
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-page-card strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.2;
}

.service-page-card span {
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.service-page-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.32);
}

.section-head {
  max-width: 920px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-head p:first-child {
  margin: 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
}

.section-head h2 {
  margin: 0.8rem 0 0.65rem;
  font-size: clamp(1.8rem, 4.3vw, 3.35rem);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.12;
}

.section-head p {
  margin: 0;
  color: var(--text-soft);
  max-width: 820px;
  margin-inline: auto;
}

.hero {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(140deg, rgba(212, 177, 114, 0.12), rgba(255, 255, 255, 0.02) 38%, rgba(0, 0, 0, 0.06));
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin: 0 auto;
}

.hero-image-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0.28;
  pointer-events: none;
}

.hero-image-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at center, rgba(4, 4, 4, 0.08), rgba(4, 4, 4, 0.7));
}

.hero-backdrop-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.04) brightness(0.84);
  transform: scale(1.015);
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: var(--gold);
  font-size: 0.78rem;
  margin: 0;
}

.hero h1 {
  margin: 1rem auto;
  max-width: 980px;
  min-height: 2.05em;
  font-size: clamp(2rem, 5.2vw, 4.9rem);
  line-height: 0.98;
  font-family: 'Cormorant Garamond', serif;
  text-shadow: 0 0 22px rgba(211, 171, 95, 0.16);
  text-align: center;
}

.hero-subtitle {
  max-width: 760px;
  color: var(--text-soft);
  margin: 0 auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
  justify-content: center;
}

.btn {
  border: 1px solid transparent;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.72rem 1.1rem;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 170ms ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(120deg, var(--gold), var(--gold-bright));
  color: #2e1f10;
  box-shadow: 0 0 0 1px rgba(255, 215, 130, 0.48), 0 0 24px rgba(211, 171, 95, 0.46);
  animation: none;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -140%;
  width: 120%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 249, 235, 0.42), transparent);
  transform: skewX(-18deg);
  animation: none;
  pointer-events: none;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: 0 0 0 1px rgba(255, 215, 130, 0.56), 0 0 36px rgba(211, 171, 95, 0.62);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--gold);
}

.hero-metrics {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-metrics article {
  border: 1px solid rgba(212, 177, 114, 0.16);
  border-radius: var(--radius-sm);
  padding: 0.95rem;
  background: rgba(0, 0, 0, 0.24);
  text-align: center;
}

.hero-metrics span {
  display: block;
  font-size: 1.35rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
}

.hero-metrics small {
  color: var(--text-soft);
}

.projects-grid,
.atelier-grid,
.testimonials-grid,
.instagram-grid {
  display: grid;
  gap: 1rem;
}

.projects-grid {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.project-card {
  border: 1px solid rgba(212, 177, 114, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.16));
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.project-card:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 210, 145, 0.46);
  box-shadow: 0 0 0 1px rgba(242, 210, 145, 0.12), 0 0 28px rgba(211, 171, 95, 0.2);
}

.project-media {
  position: relative;
  aspect-ratio: 5 / 8;
  background: radial-gradient(circle at 50% 16%, rgba(241, 214, 164, 0.34), rgba(86, 63, 27, 0.36) 42%, rgba(11, 11, 11, 0.9) 100%);
  overflow: hidden;
}

.project-media-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  opacity: 0;
  transition: opacity 520ms ease;
  will-change: opacity;
}

.project-media-item.active {
  opacity: 1;
}

.project-media-item.leaving {
  opacity: 0;
  pointer-events: none;
}

.project-content {
  padding: 1rem;
  display: grid;
  gap: 0.65rem;
  text-align: center;
  align-content: start;
  grid-template-rows: auto auto minmax(5.2em, auto) minmax(8.8em, auto);
}

.project-content h3 {
  margin: 0;
  font-size: 1.18rem;
  font-family: 'Cormorant Garamond', serif;
}

.project-title {
  min-height: 2.45em;
  line-height: 1.2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}

.project-tag {
  background: rgba(212, 177, 114, 0.13);
  border: 1px solid rgba(212, 177, 114, 0.2);
  border-radius: 999px;
  padding: 0.24rem 0.55rem;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  box-shadow: inset 0 0 16px rgba(211, 171, 95, 0.12);
}

.project-content p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.project-quote,
.project-detail {
  line-height: 1.5;
}

.media-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
}

.media-strip button {
  border: 1px solid rgba(212, 177, 114, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.media-strip img,
.media-strip video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.atelier-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.atelier-card {
  border: 1px solid rgba(212, 177, 114, 0.15);
  border-radius: var(--radius);
  padding: 0.8rem;
  background: var(--surface);
}

.atelier-card h3 {
  margin: 0.75rem 0 0.35rem;
  font-size: 1.25rem;
  font-family: 'Cormorant Garamond', serif;
}

.atelier-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.atelier-card small {
  display: block;
  margin-top: 0.65rem;
  color: #a9967e;
}

.wizard-section {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(1rem, 3.6vw, 2rem);
  background: linear-gradient(160deg, rgba(212, 177, 114, 0.08), rgba(0, 0, 0, 0.2));
}

.wizard {
  display: grid;
  gap: 1rem;
}

.wizard-progress-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wizard-progress-wrap span {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.wizard-progress-bar {
  height: 8px;
  flex: 1;
  background: linear-gradient(90deg, var(--gold), #f2d7a8);
  border-radius: 999px;
  width: 14.28%;
  transition: width 220ms ease;
}

.wizard-step {
  display: none;
  border: 1px solid rgba(212, 177, 114, 0.14);
  background: rgba(0, 0, 0, 0.22);
  border-radius: var(--radius);
  padding: clamp(1rem, 2vw, 1.3rem);
}

.wizard-step.active {
  display: block;
}

.wizard-step h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-family: 'Cormorant Garamond', serif;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.65rem;
}

.option-card,
.option-line {
  border: 1px solid rgba(212, 177, 114, 0.2);
  border-radius: 12px;
  padding: 0.7rem;
  display: flex;
  gap: 0.55rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.015);
}

.option-card input,
.option-line input {
  margin-top: 0.24rem;
}

.option-stack {
  display: grid;
  gap: 0.6rem;
}

.field {
  display: grid;
  gap: 0.32rem;
  margin-bottom: 0.8rem;
}

.field span {
  font-size: 0.82rem;
  color: var(--text-soft);
  text-align: center;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(212, 177, 114, 0.2);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  color: var(--text);
  padding: 0.7rem;
  font-family: inherit;
  text-align: center;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 1px solid var(--gold);
}

.field-note {
  margin-top: 0;
  color: var(--text-soft);
  font-size: 0.83rem;
}

.form-grid {
  display: grid;
  gap: 0.65rem;
}

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

.wizard-summary {
  border: 1px solid rgba(212, 177, 114, 0.18);
  border-radius: 12px;
  padding: 0.85rem;
  background: rgba(0, 0, 0, 0.3);
  color: var(--text-soft);
  min-height: 120px;
}

.wizard-summary p {
  margin: 0.35rem 0;
}

.checkbox-line {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin-top: 0.85rem;
  color: var(--text-soft);
  font-size: 0.85rem;
}

.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.form-error {
  color: var(--danger);
  min-height: 1.1rem;
  margin: 0;
  font-size: 0.83rem;
}

.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial-card {
  border: 1px solid rgba(212, 177, 114, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
}

.testimonial-card h3 {
  margin: 0 0 0.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--accent);
  font-size: 0.92rem;
}

.testimonial-card p {
  color: var(--text-soft);
  font-size: 0.84rem;
}

.instagram-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.instagram-card {
  border: 1px solid rgba(212, 177, 114, 0.15);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
  text-decoration: none;
  position: relative;
}

.instagram-card.has-video::after {
  content: 'Video';
  position: absolute;
  top: 8px;
  right: 8px;
  border-radius: 999px;
  border: 1px solid rgba(244, 215, 155, 0.55);
  background: rgba(0, 0, 0, 0.56);
  color: var(--gold-bright);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.22rem 0.46rem;
  pointer-events: none;
}

.instagram-card img,
.instagram-card video {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
}

.instagram-card p {
  margin: 0;
  padding: 0.72rem;
  color: var(--text-soft);
  font-size: 0.8rem;
}

.inline-link {
  color: var(--gold);
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
}

.support-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
}

.faq-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid rgba(212, 177, 114, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.85rem 0.95rem;
  text-align: left;
}

.faq-item summary {
  cursor: pointer;
  color: var(--accent);
  font-weight: 600;
  list-style: none;
}

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

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--gold);
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item p {
  margin: 0.7rem 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.support-copy {
  border: 1px solid rgba(212, 177, 114, 0.12);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.support-note {
  margin-top: 0.9rem;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.support-form {
  border: 1px solid rgba(212, 177, 114, 0.12);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  display: grid;
  gap: 0.75rem;
  text-align: center;
}

.support-placeholder {
  align-content: center;
}

.support-form form {
  display: grid;
  gap: 0.4rem;
}

.chat-messages {
  border: 1px solid rgba(212, 177, 114, 0.18);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.3);
  min-height: 260px;
  max-height: 360px;
  overflow: auto;
  padding: 0.6rem;
  display: grid;
  gap: 0.45rem;
}

.chat-bubble {
  padding: 0.6rem 0.7rem;
  border-radius: 10px;
  font-size: 0.82rem;
  line-height: 1.42;
  max-width: 92%;
  text-align: left;
}

.chat-bubble.user {
  background: rgba(212, 177, 114, 0.16);
  border: 1px solid rgba(212, 177, 114, 0.28);
  justify-self: end;
  box-shadow: 0 0 20px rgba(211, 171, 95, 0.22);
}

.chat-bubble.operator {
  background: rgba(80, 170, 255, 0.14);
  border: 1px solid rgba(80, 170, 255, 0.26);
  justify-self: start;
}

.chat-bubble.system {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--text-soft);
  justify-self: center;
}

.support-status {
  min-height: 1.1rem;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.support-status:empty {
  display: none;
}

.support-status.error {
  color: var(--danger);
}

.support-status.ok {
  color: var(--ok);
}

.floating-chat-teaser {
  position: fixed;
  right: 1rem;
  bottom: 5.95rem;
  z-index: 54;
  border: 1px solid rgba(211, 171, 95, 0.42);
  background: linear-gradient(145deg, rgba(31, 26, 18, 0.98), rgba(9, 9, 9, 0.98));
  color: var(--accent);
  border-radius: 14px 14px 4px 14px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5), 0 0 24px rgba(211, 171, 95, 0.24);
  padding: 0.62rem 0.8rem;
  width: min(310px, calc(100% - 2rem));
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  line-height: 1.3;
  font-size: 0.8rem;
  animation: none;
}

.floating-live-chat {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 55;
  border: 1px solid rgba(211, 171, 95, 0.52);
  background: linear-gradient(145deg, rgba(211, 171, 95, 0.18), rgba(8, 8, 8, 0.95));
  color: var(--text);
  padding: 0.78rem 0.95rem;
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.42), 0 0 24px rgba(211, 171, 95, 0.2);
  display: grid;
  gap: 0.08rem;
  min-width: 250px;
  min-height: 62px;
  overflow: hidden;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  animation: none;
}

.chat-notify-dot {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffd57d;
  box-shadow: 0 0 0 2px rgba(23, 18, 10, 0.8), 0 0 16px rgba(255, 214, 133, 0.92);
  animation: none;
}

.floating-live-chat::after {
  content: '';
  position: absolute;
  top: 0;
  left: -145%;
  width: 125%;
  height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255, 249, 235, 0.34), transparent);
  transform: skewX(-20deg);
  animation: none;
  pointer-events: none;
}

body.anim-ready .btn-primary {
  animation: goldPulse 2.8s ease-in-out infinite;
}

body.anim-ready .btn-primary::after {
  animation: goldSweep 4.2s ease-in-out infinite;
}

body.anim-ready .floating-chat-teaser {
  animation: teaserFloat 3.4s ease-in-out infinite;
}

body.anim-ready .floating-live-chat {
  animation: floatingGoldPulse 3s ease-in-out infinite;
}

body.anim-ready .chat-notify-dot {
  animation: notifyDot 1.8s ease-in-out infinite;
}

body.anim-ready .floating-live-chat::after {
  animation: goldSweep 4.6s ease-in-out infinite;
}

.floating-live-chat strong {
  font-size: 0.82rem;
  line-height: 1.2;
}

.floating-live-chat small {
  font-size: 0.72rem;
  color: var(--text-soft);
}

.floating-live-chat:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5), 0 0 28px rgba(211, 171, 95, 0.42);
}

.floating-chat-panel {
  position: fixed;
  right: 1rem;
  bottom: 5.8rem;
  z-index: 56;
  width: min(420px, calc(100% - 2rem));
  background: linear-gradient(170deg, rgba(15, 14, 12, 0.98), rgba(8, 8, 8, 0.98));
  border: 1px solid rgba(211, 171, 95, 0.5);
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.55), 0 0 32px rgba(211, 171, 95, 0.25);
  padding: 0.78rem;
  display: grid;
  gap: 0.6rem;
  text-align: center;
}

.floating-chat-panel[hidden] {
  display: none;
}

.floating-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gold);
}

.floating-chat-header strong {
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.floating-chat-header button {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid rgba(211, 171, 95, 0.35);
  border-radius: 8px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.floating-chat-header button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.floating-chat-panel .chat-messages {
  min-height: 220px;
  max-height: 300px;
}

.site-footer {
  padding: 2rem 1rem 2.8rem;
  text-align: center;
  border-top: 1px solid rgba(212, 177, 114, 0.12);
  color: var(--text-soft);
  font-size: 0.8rem;
}

.skeleton {
  position: relative;
  overflow: hidden;
}

.skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  animation: shimmer 1.5s infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 480ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}

@keyframes goldSweep {
  0%,
  60%,
  100% {
    left: -145%;
  }
  85% {
    left: 135%;
  }
}

@keyframes goldPulse {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(255, 215, 130, 0.44), 0 0 20px rgba(211, 171, 95, 0.36);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(255, 225, 160, 0.6), 0 0 34px var(--gold-glow);
  }
}

@keyframes floatingGoldPulse {
  0%,
  100% {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.42), 0 0 22px rgba(211, 171, 95, 0.28);
  }
  50% {
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.48), 0 0 36px rgba(211, 171, 95, 0.56);
  }
}

@keyframes teaserFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes notifyDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.88;
  }
}

@media (max-width: 1024px) {
  .service-pages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .language-bar {
    flex-direction: row;
    align-items: center;
    gap: 0.45rem;
    justify-content: space-between;
    padding-block: 0.48rem;
    position: static;
  }

  .brand-micro {
    display: none;
  }

  .language-selector {
    display: none;
  }

  .lang-compact-wrap {
    display: inline-flex;
  }

  .lang-compact {
    min-width: 92px;
    max-width: 120px;
    font-size: 0.7rem;
    padding: 0.28rem 0.56rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9vw, 3rem);
    line-height: 1.05;
    min-height: 0;
  }

  .hero-image-layer {
    display: none;
  }

  .hero {
    padding: 1.35rem 0.95rem 1.6rem;
  }

  .language-bar,
  .site-nav,
  main {
    padding-inline: 0.9rem;
  }

  .site-nav {
    padding-top: 0.78rem;
    padding-bottom: 0.78rem;
  }

  .brand {
    font-size: 1.65rem;
  }

  .nav-links {
    gap: 0.45rem;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 0.15rem;
  }

  .nav-links a {
    flex: 0 0 auto;
    font-size: 0.64rem;
    text-align: center;
    line-height: 1.3;
    border: 1px solid rgba(212, 177, 114, 0.2);
    border-radius: 999px;
    padding: 0.25rem 0.48rem;
    background: rgba(255, 255, 255, 0.03);
  }

  .wizard-actions {
    flex-direction: column;
  }

  .wizard-step {
    padding: 0.88rem;
  }

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

  .option-card,
  .option-line {
    justify-content: flex-start;
    text-align: left;
    align-items: flex-start;
  }

  .field span {
    text-align: left;
  }

  .field input,
  .field textarea,
  .field select {
    text-align: left;
  }

  .projects-grid,
  .atelier-grid,
  .testimonials-grid,
  .instagram-grid,
  .service-pages-grid {
    grid-template-columns: 1fr;
  }

  .project-media {
    aspect-ratio: 5 / 8;
  }

  .project-content {
    padding: 0.9rem;
    grid-template-rows: auto auto minmax(4.4em, auto) minmax(7.1em, auto);
  }

  .project-title {
    min-height: 2.2em;
    font-size: 1.06rem;
  }

  .project-quote,
  .project-detail {
    font-size: 0.83rem;
    line-height: 1.46;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .floating-live-chat {
    min-width: 0;
    width: min(220px, calc(100% - 1.3rem));
    right: 0.65rem;
    bottom: 0.65rem;
    padding: 0.56rem 0.66rem;
    border-radius: 13px;
    gap: 0.05rem;
  }

  .floating-live-chat strong {
    font-size: 0.72rem;
  }

  .floating-live-chat small {
    display: none;
  }

  .chat-notify-dot {
    width: 8px;
    height: 8px;
    top: 7px;
    right: 7px;
  }

  .floating-chat-teaser {
    right: 0.65rem;
    bottom: 4.55rem;
    width: min(235px, calc(100% - 1.3rem));
    padding: 0.5rem 0.62rem;
    font-size: 0.71rem;
  }

  .floating-chat-panel {
    right: 0.65rem;
    bottom: 4.85rem;
    width: calc(100% - 1.3rem);
    max-height: calc(100dvh - 6.2rem);
    overflow: auto;
    padding: 0.62rem;
    gap: 0.45rem;
    border-radius: 12px;
  }

  .floating-chat-header strong {
    font-size: 0.82rem;
  }

  .floating-chat-panel .chat-messages {
    min-height: 145px;
    max-height: 33dvh;
    padding: 0.45rem;
    gap: 0.35rem;
  }

  .floating-chat-panel .field span {
    text-align: left;
    font-size: 0.74rem;
  }

  .floating-chat-panel textarea {
    min-height: 76px;
    font-size: 0.83rem;
    padding: 0.56rem;
  }

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