:root {
  --bg: #0d111b;
  --bg-soft: #141a28;
  --bg-card: rgba(255, 255, 255, 0.06);
  --surface: #101827;
  --surface-2: #182235;
  --text: #f4f7fb;
  --muted: #c6d1e4;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #ffb457;
  --accent-2: #7bdcff;
  --success: #82d49d;
  --danger: #ff8b8b;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(123, 220, 255, 0.18), transparent 30%),
    radial-gradient(circle at left top, rgba(255, 180, 87, 0.18), transparent 28%),
    linear-gradient(180deg, #090c14 0%, var(--bg) 100%);
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p, ul { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0 0 1rem; line-height: 1.12; }
h1 { font-size: clamp(2.5rem, 5vw, 4.75rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(2rem, 3vw, 3rem); letter-spacing: -0.03em; }
h3 { font-size: 1.25rem; }
code {
  padding: 0.15rem 0.35rem;
  border-radius: 0.4rem;
  background: rgba(255,255,255,0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.container { width: min(100% - 2rem, var(--max-width)); margin: 0 auto; }
.section { padding: 6rem 0; }
.section-alt { background: rgba(255, 255, 255, 0.02); }
.section-head { max-width: 780px; margin-bottom: 2.5rem; }
.section-label, .eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0.75rem; margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 999px; background: rgba(255, 255, 255, 0.05);
  color: var(--accent); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.02em;
}
.section-label::before, .eyebrow::before {
  content: ""; width: 0.55rem; height: 0.55rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.lead { max-width: 60ch; font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--muted); }
.price-highlight {
  max-width: 38rem; margin-top: 1.5rem; padding: 1.2rem 1.3rem; border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg); background:
    linear-gradient(135deg, rgba(255, 180, 87, 0.18), rgba(123, 220, 255, 0.08)), rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}
.price-kicker { margin-bottom: 0.45rem; color: var(--accent); font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.88rem; }
.price-amount { margin-bottom: 0.35rem; font-size: clamp(1.9rem, 3vw, 2.7rem); font-weight: 900; line-height: 1; }
.price-amount span { font-size: clamp(1rem, 1.6vw, 1.25rem); font-weight: 700; color: var(--muted); }
.price-note { margin: 0; color: var(--muted); font-size: 0.98rem; }
.skip-link {
  position: absolute; left: -999px; top: 1rem; z-index: 1000; padding: 0.8rem 1rem;
  background: #fff; color: #000; border-radius: 0.5rem;
}
.skip-link:focus { left: 1rem; }
.site-header {
  position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px);
  background: rgba(9, 12, 20, 0.72); border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 5rem; }
.brand { display: inline-flex; align-items: center; gap: 0.9rem; text-decoration: none; }
.brand-mark {
  display: grid; place-items: center; width: 3rem; height: 3rem; border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), #ff7a59); color: #0f1320; font-weight: 800;
  letter-spacing: 0.04em; box-shadow: 0 12px 28px rgba(255, 180, 87, 0.3);
}
.brand-text { display: grid; gap: 0.1rem; }
.brand-text strong { font-size: 1rem; }
.brand-text span { font-size: 0.85rem; color: var(--muted); }
.site-nav {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 0.9rem 1.2rem;
}
.site-nav a { text-decoration: none; color: var(--muted); font-weight: 600; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--text); }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; min-height: 3.3rem;
  padding: 0.8rem 1.35rem; border: 1px solid transparent; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ff8f6b); color: #121826; font-weight: 800;
  text-decoration: none; cursor: pointer; transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  box-shadow: 0 16px 34px rgba(255, 180, 87, 0.25);
}
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(255, 180, 87, 0.34); }
.button-small { min-height: 2.75rem; padding-inline: 1rem; }
.button-outline { background: transparent; color: var(--text); border-color: rgba(255, 255, 255, 0.18); box-shadow: none; }
.button-outline:hover, .button-outline:focus-visible { border-color: rgba(255, 255, 255, 0.36); background: rgba(255, 255, 255, 0.05); box-shadow: none; }
.hero { padding-top: 7rem; overflow: clip; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2.5rem; align-items: center; }
.hero-copy { position: relative; z-index: 1; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; list-style: none; padding: 0; margin: 2rem 0 0; }
.hero-facts li {
  padding: 1.1rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.04);
}
.hero-facts strong { display: block; font-size: 1.05rem; color: var(--text); }
.hero-facts span { display: block; color: var(--muted); font-size: 0.95rem; }
.hero-visual { position: relative; min-height: 34rem; }
.hero-card {
  position: absolute; overflow: hidden; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.06); box-shadow: var(--shadow);
}
.hero-card-main { inset: 0 2rem 4rem 0; border-radius: var(--radius-xl); }
.hero-card-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-portrait {
  right: 0; bottom: 0; width: min(13rem, 42%); border-radius: 50%; aspect-ratio: 1; padding: 0.4rem;
  background: linear-gradient(135deg, rgba(255, 180, 87, 0.95), rgba(123, 220, 255, 0.95));
}
.hero-card-portrait img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.hero-note {
  position: absolute; left: 1rem; bottom: -1.25rem; max-width: 18rem; padding: 1rem 1.1rem;
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(10, 13, 23, 0.9); box-shadow: var(--shadow);
}
.hero-note strong { display: block; margin-bottom: 0.35rem; color: var(--accent); }
.two-column { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 2rem; align-items: start; }
.feature-stack { display: grid; gap: 1rem; }
.feature-card, .service-card, .tech-card, .timeline-card, .contact-panel, .contact-form, .gallery-item, .hero-facts li {
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.05); border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.feature-card, .service-card, .tech-card, .timeline-card, .contact-panel { padding: 1.35rem; }
.card-grid, .tech-grid, .timeline-grid { display: grid; gap: 1.2rem; }
.card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-card { min-height: 100%; }
.music-layout { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 2rem; align-items: start; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.8rem; align-content: flex-start; }
.tag-cloud span {
  display: inline-flex; align-items: center; padding: 0.7rem 1rem; border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px; background: rgba(255, 255, 255, 0.05); color: var(--text); font-weight: 600;
}
.tech-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 1.6rem; margin-bottom: 0.85rem; color: var(--muted); }
.check-list li:last-child { margin-bottom: 0; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55rem; width: 0.6rem; height: 0.6rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.compact li { margin-bottom: 0.65rem; }
.video-links { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.5rem; }
.video-link {
  display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.85rem 1rem; border-radius: 999px;
  text-decoration: none; border: 1px solid rgba(255, 255, 255, 0.15); background: rgba(255, 255, 255, 0.04); color: var(--text); font-weight: 700;
}
.video-link::before { content: "▶"; font-size: 0.9rem; color: var(--accent); }
.video-link:hover, .video-link:focus-visible { border-color: rgba(255, 255, 255, 0.35); background: rgba(255, 255, 255, 0.07); }
.gallery-grid { display: grid; grid-template-columns: 1.2fr 0.9fr 0.8fr; gap: 1rem; }
.gallery-item { overflow: hidden; }
.gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-item-wide img { aspect-ratio: 16 / 10; }
.gallery-item figcaption { padding: 1rem 1rem 1.1rem; color: var(--muted); }
.timeline-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step {
  display: inline-grid; place-items: center; width: 2.2rem; height: 2.2rem; margin-bottom: 1rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ff7a59); color: #111722; font-weight: 800;
}
.section-contact {
  background: radial-gradient(circle at right top, rgba(123, 220, 255, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 2rem; align-items: start; }
.contact-form { padding: 1.5rem; }
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field { margin-bottom: 1rem; }
.field label { display: block; margin-bottom: 0.5rem; font-weight: 700; }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.95rem 1rem; border-radius: var(--radius-sm); border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 12, 20, 0.7); color: var(--text); font: inherit; transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% - 3px), calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px; background-repeat: no-repeat;
}
.field input::placeholder, .field textarea::placeholder { color: #91a0b9; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: rgba(255, 180, 87, 0.8); box-shadow: 0 0 0 4px rgba(255, 180, 87, 0.12); background: rgba(9, 12, 20, 0.95);
}
.date-input-wrap { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 0.75rem; align-items: stretch; position: relative; }
.date-picker-button {
  padding: 0 1rem; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.08);
  color: var(--text); font: inherit; font-weight: 700; cursor: pointer; transition: border-color 180ms ease, background 180ms ease;
}
.date-picker-button:hover, .date-picker-button:focus-visible {
  outline: none; border-color: rgba(255, 180, 87, 0.8); background: rgba(255, 180, 87, 0.14);
}
.native-date-picker { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.field-note { margin-top: 0.55rem; font-size: 0.9rem; color: var(--muted); }
.consent-row { display: flex; align-items: flex-start; gap: 0.85rem; margin-bottom: 1rem; color: var(--muted); }
.consent-row input { margin-top: 0.28rem; transform: scale(1.15); }
.form-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.2rem; }
.form-note { margin-top: 0.85rem; font-size: 0.95rem; color: var(--muted); }
.contact-price {
  margin: 1.1rem 0 0; padding: 1rem 1.1rem; border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.05);
}
.contact-price strong { display: inline-block; margin-bottom: 0.25rem; font-size: 1.2rem; }
.contact-price span { color: var(--muted); }
.form-status { margin-bottom: 1rem; padding: 0.95rem 1rem; border-radius: var(--radius-sm); font-weight: 700; }
.form-status.success { border: 1px solid rgba(130, 212, 157, 0.35); background: rgba(130, 212, 157, 0.14); color: #dff6e6; }
.form-status.error { border: 1px solid rgba(255, 139, 139, 0.35); background: rgba(255, 139, 139, 0.14); color: #ffe5e5; }
.honey-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.site-footer { padding: 2.5rem 0 3rem; border-top: 1px solid rgba(255, 255, 255, 0.08); background: rgba(0, 0, 0, 0.18); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 1.5rem; }
.site-footer h2, .site-footer h3 { margin-bottom: 0.75rem; }
.site-footer p { margin-bottom: 0.55rem; color: var(--muted); }
.site-footer a { color: var(--text); text-decoration: none; }
.site-footer a:hover, .site-footer a:focus-visible { text-decoration: underline; }
.legal-shell { min-height: 100vh; padding: 5rem 0; }
.legal-card {
  width: min(100% - 2rem, 860px); margin: 0 auto; padding: 2rem; border: 1px solid var(--line);
  border-radius: var(--radius-xl); background: rgba(255, 255, 255, 0.05); box-shadow: var(--shadow);
}
.legal-card h1 { font-size: clamp(2.1rem, 4vw, 3.3rem); }
.legal-card h2 { margin-top: 2rem; font-size: 1.4rem; }
.legal-card p, .legal-card li { color: var(--muted); }
.legal-card ul { padding-left: 1.2rem; }
.back-link { display: inline-flex; margin-bottom: 1.5rem; color: var(--accent); text-decoration: none; font-weight: 700; }

@media (max-width: 1100px) {
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-item-wide { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  .hero-grid, .two-column, .music-layout, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 5.5rem; }
  .hero-visual { min-height: 28rem; }
  .hero-facts, .tech-grid, .timeline-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-card-main { inset: 0 4rem 4rem 0; }
  .nav-wrap { flex-direction: column; align-items: flex-start; padding: 1rem 0; }
  .site-nav { justify-content: flex-start; }
}
@media (max-width: 720px) {
  .section { padding: 4.5rem 0; }
  .hero-note { position: relative; left: auto; bottom: auto; margin-top: 1rem; max-width: none; }
  .hero-card-main { inset: 0 2.5rem 5.5rem 0; }
  .hero-card-portrait { width: 10rem; }
  .hero-facts, .card-grid, .tech-grid, .timeline-grid, .footer-grid, .gallery-grid, .two-up { grid-template-columns: 1fr; }
  .contact-form { padding: 1.1rem; }
  .site-nav { gap: 0.8rem 1rem; }
  .site-nav a { font-size: 0.95rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
