:root {
  --bg: #050505;
  --bg-elevated: #0c0c0c;
  --gold: #d4af37;
  --gold-bright: #efd07a;
  --gold-deep: #9a7a28;
  --text: #f6f0e4;
  --muted: #b7ae9f;
  --line: rgba(212, 175, 55, 0.34);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scrollbar-gutter: stable;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.05), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }

#fireworks-canvas {
  position: fixed;
  inset: 0;
  z-index: 40;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.page-shell { position: relative; z-index: 1; }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 80;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.brand {
  display: flex;
  flex-direction: column;
  min-width: max-content;
  line-height: 1;
}

.brand strong,
.brand small,
.immersive__brand-lockup h2,
.immersive__brand-lockup p {
  font-family: Cinzel, serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand strong {
  color: var(--gold-bright);
  font-size: 0.92rem;
  font-weight: 700;
}

.brand small {
  margin-top: 5px;
  color: var(--gold);
  font-size: 0.62rem;
}

.nav-links {
  display: flex;
  gap: 2px;
}

.nav-links a,
.nav-item > .nav-link,
.header-cta,
.btn,
.service-gallery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  padding: 0 14px;
  color: rgba(246, 240, 228, 0.78);
}

.nav-links a:hover { color: var(--gold-bright); }

.nav-item {
  position: relative;
}

.nav-item > .nav-link {
  padding: 0 14px;
  color: rgba(246, 240, 228, 0.78);
  cursor: default;
}

.nav-item:hover > .nav-link,
.nav-item:focus-within > .nav-link {
  color: var(--gold-bright);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 90;
  min-width: 210px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(5, 5, 5, 0.96);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  color: rgba(246, 240, 228, 0.88);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
}

.nav-dropdown a:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-bright);
}

.header-cta,
.btn-solid {
  padding: 0 18px;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1204;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header-cta:hover {
  background: transparent;
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

.btn-outline,
.service-gallery-btn {
  padding: 0 18px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-bright);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover,
.service-gallery-btn:hover {
  background: rgba(212, 175, 55, 0.12);
}

.mobile-menu-toggle,
.mobile-menu-backdrop,
.mobile-drawer { display: none; }

.mobile-menu-toggle {
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--gold-bright);
}

.hero-section { position: relative; isolation: isolate; }

.immersive__track {
  position: relative;
  min-height: 360vh;
}

.immersive__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.immersive__stage,
.immersive__frame-wrap,
.immersive__canvas,
.immersive__vignette,
.immersive__top-fade {
  position: absolute;
  inset: 0;
}

.immersive__stage {
  overflow: hidden;
  background: #020202;
}

.immersive__canvas {
  width: 100%;
  height: 100%;
}

.immersive__top-fade {
  z-index: 2;
  height: 28vh;
  background: linear-gradient(180deg, rgba(2, 2, 2, 0.82), transparent);
  pointer-events: none;
}

.immersive__vignette {
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.82) 0%, rgba(2, 2, 2, 0.42) 38%, transparent 68%),
    linear-gradient(180deg, transparent 52%, rgba(2, 2, 2, 0.88));
}

.hero-copy {
  position: absolute;
  top: 50%;
  left: max(24px, calc((100vw - 1180px) / 2));
  z-index: 5;
  width: min(560px, calc(100% - 48px));
  transform: translateY(-52%);
}

.hero-copy h1,
.section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: 3.25rem;
  color: #fff;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.55);
}

.hero-copy p {
  max-width: 46ch;
  margin: 0 0 28px;
  color: rgba(246, 240, 228, 0.88);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.immersive__brand-lockup {
  position: absolute;
  top: 50%;
  left: 72%;
  z-index: 4;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 18px 55px rgba(0, 0, 0, 0.85));
}

.immersive__brand-lockup.is-title-visible {
  animation: titleReveal 1.2s ease both;
}

.immersive__brand-lockup h2 {
  margin: 0;
  font-size: 5.5rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 0.9;
  background: linear-gradient(180deg, #fffaf0, #efd07a 48%, #8f6029);
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.immersive__brand-lockup p {
  position: relative;
  display: inline-block;
  margin: 16px 0 0;
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.55em;
}

.immersive__brand-lockup p::before,
.immersive__brand-lockup p::after {
  position: absolute;
  top: 50%;
  width: 72px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold));
}

.immersive__brand-lockup p::before { right: calc(100% + 18px); }
.immersive__brand-lockup p::after {
  left: calc(100% + 18px);
  transform: rotate(180deg);
}

.hero-ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(12px);
}

.hero-ticker__track {
  display: flex;
  gap: 42px;
  width: max-content;
  padding: 15px 0;
  animation: ticker 26s linear infinite;
}

.hero-ticker span {
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section { padding: 100px 0; }

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head { max-width: 760px; margin-bottom: 42px; }
.section-head.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.section-lead,
.gallery-copy p,
.about-copy p,
.why-grid p,
.process-grid article p,
.cta-inner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 42px;
}

.section-ornament__line {
  display: block;
  width: min(110px, 10vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-title--center {
  margin: 0;
  text-align: center;
  color: var(--gold-bright);
  font-size: 2.15rem;
  white-space: nowrap;
}

.section-title--gold {
  color: var(--gold-bright);
}

.section-subtitle {
  margin: -18px 0 42px;
  color: rgba(246, 240, 228, 0.88);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-style: italic;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  min-height: 230px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
  text-align: left;
  cursor: pointer;
  color: inherit;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.service-card:hover img {
  opacity: 0.7;
  transform: scale(1.04);
}

.service-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.92) 55%);
}

.service-icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: var(--gold-bright);
}

.service-card__text {
  min-width: 0;
  flex: 1;
}

.service-card h3 {
  margin: 0 0 6px;
  color: var(--gold-bright);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(0.98rem, 1.1vw, 1.18rem);
  font-weight: 600;
  line-height: 1.15;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.8rem;
  line-height: 1.4;
}

.why-icon,
.process-icon,
.process-number {
  display: inline-grid;
  place-items: center;
  color: var(--gold-bright);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.why-grid article {
  padding: 8px 22px;
  text-align: center;
}

.why-grid article + article {
  border-left: 1px solid rgba(212, 175, 55, 0.35);
}

.why-icon {
  width: auto;
  height: auto;
  margin: 0 auto 18px;
  color: var(--gold-bright);
}

.why-grid h3,
.process-grid h3 {
  margin: 0 0 10px;
  color: var(--gold-bright);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.gallery-copy .section-title,
.about-copy .section-title {
  color: var(--gold-bright);
}

.gallery-layout,
.about-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}

.gallery-layout { grid-template-columns: 0.85fr 1.15fr; }

.gallery-copy .btn { margin-top: 24px; }

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.gallery-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 10px;
  object-fit: cover;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
}

.process-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 16px;
  align-items: start;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  text-align: left;
}

.process-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.process-number {
  display: inline-grid;
  width: 28px;
  height: 28px;
  margin: 0;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 700;
}

.process-icon {
  display: inline-grid;
  margin: 0;
  color: var(--gold-bright);
}

.process-icon svg {
  width: 40px;
  height: 40px;
}

.process-copy {
  min-width: 0;
}

.process-grid h3 {
  margin: 0 0 8px;
  line-height: 1.25;
}

.process-copy p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.process-arrow {
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.4rem;
}

.about-layout {
  grid-template-columns: 0.95fr 1.15fr;
  gap: 36px;
}

.about-copy p + p { margin-top: 16px; }

.about-media {
  position: relative;
  overflow: hidden;
}

.about-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 280px;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-composite: intersect;
}

.cta-section { padding-bottom: 56px; }

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px 36px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.14), transparent 24rem),
    rgba(255, 255, 255, 0.02);
  text-align: left;
}

.cta-copy {
  flex: 1;
  max-width: 720px;
  padding-left: clamp(48px, 10vw, 140px);
}

.cta-copy .section-title {
  margin-bottom: 10px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 230px;
}

.btn-whatsapp {
  border: 1px solid #25d366;
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
}

.inner-page {
  min-height: 100vh;
  padding: 140px 0 90px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.panel-content {
  padding: 26px;
}

.offer-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 22px;
}

.offer-form {
  display: grid;
  gap: 14px;
}

.offer-form > label {
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
  color: rgba(246, 240, 228, 0.9);
}

.tipuri-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tip-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.tip-card:has(input:checked) {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.07);
}

.tip-card--wide {
  grid-column: 1 / -1;
}

.tip-card-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 11px 12px;
  cursor: pointer;
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(246, 240, 228, 0.92);
}

.tip-card-title {
  flex: 1;
  min-width: 0;
}

.tip-card input[type="checkbox"] {
  margin: 2px 0 0;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  accent-color: var(--gold-bright);
}

.tip-extra {
  display: none;
  padding: 0 12px 12px 38px;
}

.tip-extra.is-visible {
  display: block;
}

.tip-extra-field {
  display: grid;
  gap: 6px;
  font-size: 0.74rem;
  color: var(--muted);
}

.tip-extra-field input {
  margin: 0;
  padding: 8px 10px;
  font-size: 0.84rem;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 6, 6, 0.85);
  color: var(--text);
}

.tipuri-fieldset {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  min-width: 0;
}

.tipuri-fieldset legend {
  padding: 0 8px;
  font-size: 0.92rem;
  color: rgba(246, 240, 228, 0.9);
}

.offer-error {
  margin: 0;
  color: #ff7a7a;
  font-size: 0.9rem;
}

.offer-aside-title,
.product-panel-title {
  font-size: 1.65rem;
}

.mobile-nav-sub {
  display: grid;
  gap: 4px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
}

.mobile-nav-sub > span {
  color: rgba(246, 240, 228, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-nav-sub a {
  padding-left: 12px;
}

.fan-range-label {
  display: grid;
  gap: 8px;
}

.config-fieldset {
  margin: 0 0 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.config-fieldset legend {
  padding: 0 8px;
  font-size: 0.82rem;
  color: rgba(246, 240, 228, 0.9);
}

.config-options {
  display: grid;
  gap: 8px;
}

.config-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.82rem;
  color: rgba(246, 240, 228, 0.92);
  cursor: pointer;
}

.config-option:has(input:checked) {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.config-option input {
  accent-color: var(--gold-bright);
}

.single-color-picker {
  margin-top: 10px;
  min-height: 52px;
}

.single-color-picker[hidden] {
  display: block !important;
  visibility: hidden;
  pointer-events: none;
}

.single-color-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px 8px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(246, 240, 228, 0.92);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.single-color-btn:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.single-color-btn__dot {
  display: block;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: #1565c0;
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.2);
}

.single-color-btn__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.fan-actions {
  margin-top: 18px;
}

.fan-config-stage canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: crosshair;
}

.color-palette {
  position: fixed;
  z-index: 300;
  width: min(320px, calc(100vw - 24px));
  padding: 12px;
  border: 1px solid var(--gold);
  border-radius: 12px;
  background: rgba(8, 8, 8, 0.97);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}

.color-palette__title {
  margin: 0 0 10px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.color-palette__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.color-swatch {
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 8px 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.color-swatch:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-1px);
}

.color-swatch__dot {
  display: block;
  width: 26px;
  height: 26px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.color-swatch__name {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  color: rgba(246, 240, 228, 0.9);
}

.fan-scene-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.fan-preview.mode-scene .fan-config-stage {
  visibility: hidden;
}

.offer-form input,
.offer-form select,
.offer-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(6, 6, 6, 0.85);
  color: var(--text);
  padding: 10px 12px;
  font: inherit;
}

.offer-form textarea {
  min-height: 130px;
  resize: vertical;
}

.offer-help {
  color: var(--muted);
  line-height: 1.65;
}

.product-shell {
  display: grid;
  gap: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: start;
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.swatch {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
}

.swatch.is-active {
  border-color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.22);
}

.fan-preview {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 480px;
  min-height: 480px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #000;
}

.fan-preview.mode-config {
  background: #000;
}

.fan-preview.mode-config .fan-scene-layers {
  display: none;
}

.fan-preview.mode-scene .fan-config-stage {
  opacity: 0;
  pointer-events: none;
}

.fan-preview.mode-scene .fan-scene-layers {
  display: block;
}

.fan-config-stage,
.fan-scene-layers {
  position: absolute;
  inset: 0;
}

.fan-scene-layers {
  display: none;
}

.fan-layer-bg {
  z-index: 1;
  object-fit: cover;
}

.fan-layer-front {
  z-index: 3;
  object-fit: cover;
  object-position: center bottom;
  pointer-events: none;
}

.fan-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-top,
.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

.footer-links span,
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover { color: var(--gold-bright); }

.footer-slogan {
  margin: 0;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding: 0 0 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--gold-bright);
  font-weight: 700;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.gallery-modal[hidden] { display: none; }

.gallery-modal__dialog {
  width: min(980px, 100%);
  max-height: min(86vh, 900px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(8, 10, 16, 0.96);
  box-shadow: var(--shadow);
  padding: 22px;
}

.gallery-modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.gallery-modal__top h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
}

.gallery-modal__close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
}

.gallery-modal__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gallery-modal__grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  object-fit: cover;
}

@keyframes titleReveal {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translate(-50%, -45%) scale(0.96);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes drawerIn {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .why-grid article:nth-child(3n + 1) { border-left: 0; }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-arrow { display: none; }
  .offer-layout,
  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  body.mobile-menu-open {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
  }

  body.gallery-modal-open { overflow: hidden; }

  .site-header {
    top: calc(18px + env(safe-area-inset-top));
    right: 12px;
    left: 12px;
    width: auto;
    transform: none;
  }

  .mobile-menu-toggle { display: flex; }
  .nav-links { display: none; }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 110;
    border: 0;
    background: rgba(0, 0, 0, 0.52);
    opacity: 0;
    pointer-events: none;
  }

  body.mobile-menu-open .mobile-menu-backdrop {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 130;
    display: none;
    width: min(330px, 88vw);
    flex-direction: column;
    gap: 8px;
    padding: calc(30px + env(safe-area-inset-top)) 18px 24px;
    border: 1px solid var(--line);
    border-radius: 0 28px 28px 0;
    background: rgba(5, 5, 5, 0.97);
  }

  body.mobile-menu-open .mobile-drawer {
    display: flex;
    animation: drawerIn 0.24s ease both;
  }

  .mobile-drawer a {
    display: flex;
    min-height: 48px;
    align-items: center;
    border-radius: 16px;
    padding: 0 16px;
    font-weight: 700;
  }

  .hero-copy {
    top: auto;
    bottom: 96px;
    left: 20px;
    width: calc(100% - 40px);
    transform: none;
  }

  .hero-copy h1 { font-size: 2.25rem; }

  .immersive__brand-lockup {
    left: 50%;
  }

  .immersive__brand-lockup h2 { font-size: 3rem; }
  .immersive__brand-lockup p { font-size: 0.82rem; }
  .immersive__brand-lockup p::before,
  .immersive__brand-lockup p::after { width: 36px; }

  .gallery-layout,
  .about-layout,
  .why-grid,
  .process-grid,
  .gallery-thumbs,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .why-grid article + article {
    border-left: 0;
    border-top: 1px solid rgba(212, 175, 55, 0.35);
    padding-top: 22px;
    margin-top: 8px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cta-copy {
    max-width: none;
    padding-left: 0;
  }

  .tipuri-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    min-width: 0;
    width: 100%;
  }

  .section-title--center {
    white-space: normal;
  }

  .gallery-thumbs { grid-template-columns: 1fr 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .gallery-modal__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .header-cta { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-ticker span { letter-spacing: 0.1em; }
}
