:root {
  --bg: #07070b;
  --bg-elevated: #111117;
  --bg-soft: #171721;
  --surface: rgba(17, 17, 23, 0.84);
  --surface-strong: rgba(24, 24, 33, 0.96);
  --text: #f5f3f5;
  --muted: #c6c0c5;
  --muted-2: #9e9b9d;
  --line: rgba(217, 217, 217, 0.14);
  --line-strong: rgba(217, 217, 217, 0.24);
  --brand: #cc3399;
  --brand-deep: #502e45;
  --teal: #0f6a6a;
  --teal-2: #1f7a7a;
  --indigo: #3b3f72;
  --page-glow: radial-gradient(circle at top left, rgba(204, 51, 153, 0.22), transparent 35%), radial-gradient(circle at 85% 15%, rgba(15, 106, 106, 0.18), transparent 28%), linear-gradient(180deg, #09090d 0%, #0b0b11 50%, #101018 100%);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--text);
  background: var(--page-glow);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.site-shell {
  min-height: 100vh;
  position: relative;
  overflow: clip;
}
.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
}
.site-shell::before {
  top: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 51, 153, 0.2), transparent 70%);
  filter: blur(12px);
}
.site-shell::after {
  left: -100px;
  bottom: 10%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 122, 122, 0.18), transparent 70%);
  filter: blur(18px);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(7, 7, 11, 0.68);
  border-bottom: 1px solid rgba(217, 217, 217, 0.08);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.brand-lockup img {
  height: 96px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-links a,
.header-actions a {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  transition: 180ms ease;
}
.nav-links a:hover,
.header-actions a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand), #d65aae 60%, #de70bb 100%);
  color: #fff;
  padding: 0.95rem 1.35rem;
  box-shadow: 0 12px 34px rgba(204, 51, 153, 0.28);
}
.btn-primary:hover,
.btn-secondary:hover,
.btn-link:hover {
  transform: translateY(-1px);
}
.btn-secondary {
  padding: 0.95rem 1.35rem;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.02);
  color: var(--text);
}
.btn-link {
  color: var(--text);
}

.hero {
  padding: 5.25rem 0 4rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(450px, 1fr);
  gap: 2rem;
  align-items: start;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(204, 51, 153, 0.22);
  background: rgba(204, 51, 153, 0.08);
  color: #f1c7e2;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.73rem;
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #fff);
  box-shadow: 0 0 0 4px rgba(204, 51, 153, 0.14);
}
.hero-copy h1 {
  margin: 1.4rem 0 0;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.hero-copy h1 span {
  color: #f5d7ea;
  display: block;
}
.hero-copy p {
  max-width: 42rem;
  margin: 1.4rem 0 0;
  font-size: 1.16rem;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2.3rem;
}
.hero-points div,
.pill-row span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  border-radius: 999px;
  padding: 0.85rem 1rem;
  color: var(--muted);
}
.hero-panel,
.panel,
.gallery-card,
.contact-card,
.form-card,
.stat-card,
.service-card,
.story-card,
.cta-band {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.hero-panel {
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(80, 46, 69, 0.92), rgba(14, 15, 24, 0.94));
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(204,51,153,0.18), transparent 45%, rgba(31,122,122,0.18));
}
.hero-panel > * { position: relative; z-index: 1; }
.panel-label {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.panel-metrics {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}
.panel-metrics .metric {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.metric span {
  display: block;
  line-height: 1.42;
  font-size: 0.98rem;
}
.metric strong,
.stat-card strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.4rem;
}
.metric span,
.stat-card span,
.mini-note,
.card-copy p,
.story-card p,
.gallery-card p,
.contact-card p,
.form-note,
.footer-copy p {
  color: var(--muted);
}
.hero-panel .mini-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.section {
  padding: 2.2rem 0 0;
}
.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-head h2 {
  margin: 0.4rem 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.section-head p {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.stats-grid,
.services-grid,
.story-grid,
.gallery-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}
.stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.story-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-grid { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); }
.stat-card,
.service-card,
.story-card,
.gallery-card,
.contact-card,
.form-card {
  padding: 1.5rem;
}
.stat-card small,
.service-card small,
.gallery-card small {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #efc9e2;
  background: rgba(204,51,153,0.1);
  border: 1px solid rgba(204,51,153,0.18);
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}
.service-card h3,
.story-card h3,
.gallery-card h3,
.contact-card h3,
.form-card h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}
.service-list,
.contact-list,
.placeholder-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}
.service-list li,
.contact-list li,
.placeholder-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--muted);
}
.service-list li::before,
.contact-list li::before,
.placeholder-list li::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  margin-top: 0.4rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--teal));
  box-shadow: 0 0 0 4px rgba(204, 51, 153, 0.12);
}
.card-topline {
  color: #f3cde4;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  margin-bottom: 0.8rem;
}
.gallery-card.placeholder {
  background: linear-gradient(180deg, rgba(17, 17, 23, 0.92), rgba(11, 12, 18, 0.95));
}
.demo-frame {
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--radius-sm) - 4px);
  border: 1px solid rgba(217,217,217,0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    linear-gradient(135deg, rgba(59,63,114,0.3), rgba(15,106,106,0.18) 45%, rgba(204,51,153,0.2));
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}
.demo-frame::before,
.demo-frame::after {
  content: "";
  position: absolute;
  inset: auto;
}
.demo-frame::before {
  left: 1rem;
  right: 1rem;
  top: 1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
}
.demo-frame::after {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  top: 4.4rem;
  border-radius: 1rem;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05) 0 38%, transparent 38% 42%, rgba(255,255,255,0.06) 42% 100%),
    linear-gradient(180deg, transparent 0 55%, rgba(255,255,255,0.08) 55% 58%, transparent 58% 100%);
}

.cta-band {
  margin: 4rem 0 1.5rem;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(80,46,69,0.96), rgba(24,24,33,0.96));
}
.cta-band h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.cta-band p {
  margin: 0.7rem 0 0;
  max-width: 34rem;
  color: #e6dfe4;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.pill-row span { color: #e9dce5; }

.page-hero {
  padding: 4.4rem 0 1.6rem;
}
.page-hero h1 {
  margin: 1rem 0 0;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.page-hero p {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.contact-card + .contact-card { margin-top: 1rem; }
.contact-card a.inline-email {
  color: #ffd8ef;
  font-size: 1.15rem;
  word-break: break-word;
}
.form-card {
  background: var(--surface-strong);
}
.form-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}
.form-grid label {
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  color: var(--text);
  padding: 0.92rem 1rem;
}
.form-grid textarea {
  min-height: 180px;
  resize: vertical;
}
.form-grid input:focus,
.form-grid textarea:focus {
  outline: 2px solid rgba(204, 51, 153, 0.4);
  outline-offset: 2px;
  border-color: rgba(204, 51, 153, 0.45);
}
.form-note {
  margin-top: 1rem;
  font-size: 0.92rem;
}

.footer {
  padding: 1.4rem 0 2.4rem;
}
.footer-inner {
  border-top: 1px solid rgba(217,217,217,0.08);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
}
.footer-copy img {
  height: 80px;
  width: auto;
}
.footer-copy p,
.footer-meta {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
}
.footer-meta {
  text-align: right;
  color: var(--muted-2);
}

@media (max-width: 1040px) {
  .contact-grid,
  .stats-grid,
  .story-grid,
  .gallery-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  }
}

@media (max-width: 780px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }
}

@media (max-width: 780px) {
  .header-inner {
    min-height: 74px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.8rem 0;
  }
  .nav-links,
  .header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .brand-lockup img { height: 72px; }
  .hero { padding-top: 3rem; }
  .hero-points { grid-template-columns: 1fr; }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-meta { text-align: left; }
}
