/* ============================================================
   Jewellery Digital Marketing — World-class design system
   Rich golden theme · luxury jewellery · feminine polish
   ============================================================ */

:root {
  --bg: #1b1206;
  --bg-soft: #24190c;
  --bg-card: rgba(255, 215, 94, 0.05);
  --bg-card-hover: rgba(255, 215, 94, 0.08);
  --border: rgba(255, 215, 94, 0.13);
  --text: #fff8ee;
  --text-dim: #d2c4a3;
  --text-faint: #8f7e5a;
  --grad-1: #d4a017;
  --grad-2: #ffd75e;
  --grad-3: #f5c842;
  --grad: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  --grad-hot: linear-gradient(135deg, #c28d13, #ffe680);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius-lg: 26px;
  --font-head: "Playfair Display", "Sora", serif;
  --font-body: "Inter", system-ui, sans-serif;
  --nav-h: 74px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

::selection { background: var(--grad-1); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #3a2c17; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--grad-1); }

.container { width: min(1200px, 92%); margin-inline: auto; }

/* ---------- Reusable ---------- */
.section { padding: clamp(70px, 9vw, 130px) 0; position: relative; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); }
.section-head.left { text-align: left; margin-left: 0; }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grad-2);
  background: rgba(255, 215, 94, 0.08);
  border: 1px solid rgba(255, 215, 94, 0.25);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; letter-spacing: -0.02em; }

h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); font-weight: 800; margin-bottom: 16px; }
h2 .gradient-text, h1 .gradient-text { background: var(--grad); background-clip: text; -webkit-background-clip: text; color: transparent; }

.section-head p, .lead { color: var(--text-dim); font-size: 1.05rem; }

.gradient-text {
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 28px;
  border-radius: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, opacity 0.25s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 12px 34px rgba(212, 160, 23, 0.42); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(212, 160, 23, 0.55); }
.btn-ghost { border: 1px solid var(--border); color: var(--text); background: var(--bg-card); }
.btn-ghost:hover { background: var(--bg-card-hover); transform: translateY(-3px); }
.btn-sm { padding: 11px 18px; font-size: 0.85rem; border-radius: 12px; }
.btn-block { width: 100%; justify-content: center; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s;
}
.navbar.scrolled {
  background: rgba(23, 15, 8, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; }
.brand span { background: var(--grad); background-clip: text; -webkit-background-clip: text; color: transparent; }
.brand-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 22px rgba(212, 160, 23, 0.42);
}
.brand-mark svg { width: 20px; height: 20px; }

.nav-links { display: flex; gap: 6px; }
.nav-link {
  position: relative;
  padding: 9px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-link:hover { color: var(--text); background: var(--bg-card); }
.nav-link.active { color: #fff; }
.nav-link.active::after {
  content: "";
  position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; border-radius: 2px; background: var(--grad);
}

.nav-actions { display: flex; align-items: center; gap: 14px; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(50px, 8vw, 110px)) 0 clamp(60px, 7vw, 90px);
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(212, 160, 23, 0.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(212, 160, 23, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 70% at 50% 0%, #000 55%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 0%, #000 55%, transparent 100%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.55; }
.orb-1 { width: 480px; height: 480px; top: -140px; left: -120px; background: var(--grad-1); }
.orb-2 { width: 420px; height: 420px; top: 40px; right: -140px; background: var(--grad-2); }
.orb-3 { width: 320px; height: 320px; bottom: -120px; left: 38%; background: var(--grad-3); opacity: 0.35; }

.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
}

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--text-dim);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 9px 16px; border-radius: 999px;
  margin-bottom: 22px;
}

.hero-copy h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); font-weight: 800; margin-bottom: 20px; }
.hero-copy .lead { max-width: 560px; margin-bottom: 30px; }
.hero-copy .lead strong { color: var(--text); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.hero-stats li { display: flex; flex-direction: column; gap: 2px; }
.hero-stats strong { font-family: var(--font-head); font-size: 1.7rem; background: var(--grad); background-clip: text; -webkit-background-clip: text; color: transparent; }
.hero-stats span { font-size: 0.78rem; color: var(--text-faint); }

.hero-card { position: relative; }
.hero-card-glow {
  position: absolute; inset: -6% -6% 8% 8%; z-index: 0;
  background: var(--grad); filter: blur(70px); opacity: 0.45; border-radius: 40px;
}
.hero-card img {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 4 / 3.1; object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.hero-card-badge {
  position: absolute; z-index: 2; left: -18px; bottom: 26px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(30, 20, 11, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  padding: 14px 20px; border-radius: 14px;
  font-size: 0.9rem; color: var(--text-dim);
  box-shadow: var(--shadow);
}
.hero-card-badge strong { color: var(--text); font-size: 1.05rem; display: block; }
.pulse-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--grad-2); box-shadow: 0 0 0 0 rgba(255, 215, 94, 0.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 215, 94, 0.6); } 70% { box-shadow: 0 0 0 12px rgba(255, 215, 94, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 215, 94, 0); } }

/* Ticker */
.ticker {
  position: relative; z-index: 1;
  margin-top: clamp(44px, 6vw, 76px);
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track { display: inline-flex; align-items: center; gap: 34px; animation: ticker 34s linear infinite; }
.ticker-track span { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.08em; color: var(--text-dim); }
.ticker-track i { color: var(--grad-2); font-style: normal; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   GALLERY / HORIZONTAL CAROUSEL
   ============================================================ */
.gallery { padding: clamp(70px, 9vw, 130px) 0 60px; }

.carousel { position: relative; max-width: 1280px; margin-inline: auto; padding: 0 56px; }
.carousel-viewport { overflow: hidden; border-radius: var(--radius-lg); }
.carousel-track { display: flex; transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1); }

.slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 16 / 8.4;
  overflow: hidden;
}
.slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 0.9s ease; }
.slide:hover img { transform: scale(1.08); }
.slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23, 15, 8, 0) 35%, rgba(23, 15, 8, 0.92) 100%);
}
.slide figcaption {
  position: absolute; z-index: 2; left: 34px; bottom: 30px;
  display: flex; flex-direction: column;
}
.slide figcaption small {
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--grad-2);
  margin-bottom: 6px;
}
.slide figcaption span { font-size: clamp(1.05rem, 2.4vw, 1.45rem); font-weight: 600; color: #fff; }

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(30, 20, 11, 0.85);
  border: 1px solid var(--border);
  color: var(--text);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s;
}
.carousel-btn svg { width: 22px; height: 22px; }
.carousel-btn:hover { background: var(--grad); color: #fff; transform: translateY(-50%) scale(1.06); }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }
.carousel-btn:disabled { opacity: 0.4; pointer-events: none; }

.carousel-dots {
  display: flex; justify-content: center; gap: 9px;
  margin-top: 24px;
}
.dot {
  width: 9px; height: 9px; border-radius: 999px;
  background: #3a2c17;
  transition: all 0.3s ease;
}
.dot.active { width: 30px; background: var(--grad); }

.gallery-note {
  margin-top: 26px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-faint);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg-soft); border-block: 1px solid var(--border); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.service-card::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(255, 200, 80, 0.4); background: var(--bg-card-hover); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 15px;
  background: rgba(212, 160, 23, 0.15);
  color: var(--grad-1);
  margin-bottom: 22px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.service-card:hover .service-icon { background: var(--grad-hot); color: #fff; transform: rotate(-6deg); }
.service-icon svg { width: 26px; height: 26px; }

.service-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; color: var(--text-dim); margin-bottom: 18px; }
.service-card ul { display: grid; gap: 9px; }
.service-card ul li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.service-card ul li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad-2);
  box-shadow: 0 0 10px rgba(255, 215, 94, 0.6);
}

/* ============================================================
   BAND / WHY US
   ============================================================ */
.band { background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(255, 200, 80, 0.18), transparent 60%), var(--bg); }

.band-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 56px; }
.band-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px; transition: transform 0.3s ease, border-color 0.3s; }
.band-card:hover { transform: translateY(-6px); border-color: rgba(255, 200, 80, 0.38); }
.band-card h3 { font-size: 1rem; margin-bottom: 8px; }
.band-card p { font-size: 0.88rem; color: var(--text-dim); }

.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat { padding: 34px 20px; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat strong { display: block; font-family: var(--font-head); font-size: 2.3rem; background: var(--grad-hot); background-clip: text; -webkit-background-clip: text; color: transparent; }
.stat span { font-size: 0.82rem; color: var(--text-faint); }

/* ============================================================
   WORK / PORTFOLIO
   ============================================================ */
.work { background: var(--bg-soft); border-block: 1px solid var(--border); }

.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.work-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: block;
  border: 1px solid var(--border);
  transition: transform 0.4s ease;
}
.work-card:hover { transform: translateY(-6px); }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.work-card:hover img { transform: scale(1.07); }
.work-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px;
  background: linear-gradient(180deg, rgba(23, 15, 8, 0) 40%, rgba(23, 15, 8, 0.95) 100%);
}
.work-overlay h3 { font-size: 1.3rem; }
.work-overlay p { font-size: 0.9rem; color: var(--text-dim); }
.work-overlay strong { color: var(--grad-2); }

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  counter-reset: step;
}
.process-step { position: relative; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; transition: transform 0.3s ease, border-color 0.3s; }
.process-step:hover { transform: translateY(-6px); border-color: rgba(255, 200, 80, 0.4); }
.step-num {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--grad-2);
  background: rgba(255, 215, 94, 0.08);
  border: 1px solid rgba(255, 215, 94, 0.28);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.process-step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; color: var(--text-dim); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg-soft); border-block: 1px solid var(--border); }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.testimonial:hover { transform: translateY(-6px); border-color: rgba(212, 160, 23, 0.45); }
.testimonial h3 { font-size: 1.1rem; }
.testimonial p { font-size: 0.93rem; color: var(--text-dim); }
.commit-icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.22), rgba(255, 215, 94, 0.12));
  border: 1px solid var(--border);
  color: var(--grad-2);
  margin-bottom: 6px;
}
.commit-icon svg { width: 26px; height: 26px; }
.stars { color: #ffc24b; letter-spacing: 2px; font-size: 1rem; }
.testimonial blockquote { font-size: 0.98rem; color: var(--text-dim); font-style: italic; flex: 1; }
.testimonial figcaption { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad-hot);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial figcaption strong { display: block; font-size: 0.95rem; }
.testimonial figcaption small { color: var(--text-faint); font-size: 0.8rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: start; }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item[open] { border-color: rgba(212, 160, 23, 0.45); }
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.chev {
  flex: 0 0 auto;
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--border);
  position: relative;
  transition: background 0.3s, transform 0.3s;
}
.chev::before, .chev::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  background: var(--text-dim);
  transition: background 0.3s;
}
.chev::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.chev::after { width: 2px; height: 12px; transform: translate(-50%, -50%); transition: opacity 0.3s; }
.faq-item[open] .chev { background: var(--grad); transform: rotate(180deg); }
.faq-item[open] .chev::before, .faq-item[open] .chev::after { background: #fff; }
.faq-item[open] .chev::after { opacity: 0; }
.faq-item p { padding: 0 24px 22px; color: var(--text-dim); font-size: 0.94rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: radial-gradient(ellipse 55% 70% at 85% 10%, rgba(255, 215, 94, 0.12), transparent 60%), var(--bg); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-copy h2 { margin-top: 8px; }
.contact-copy > p { color: var(--text-dim); margin-bottom: 30px; max-width: 480px; }
.contact-points { display: grid; gap: 16px; }
.contact-points li { display: flex; align-items: center; gap: 14px; color: var(--text-dim); font-size: 0.95rem; }
.contact-points svg {
  width: 40px; height: 40px; padding: 10px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--grad-2);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--text-dim); letter-spacing: 0.03em; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field select { appearance: none; cursor: pointer; }
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--grad-1);
  box-shadow: 0 0 0 3px rgba(255, 200, 80, 0.18);
}
.field input.error, .field select.error, .field textarea.error { border-color: #ff5e7a; box-shadow: 0 0 0 3px rgba(255, 94, 122, 0.18); }
.form-note { margin-top: 14px; font-size: 0.9rem; color: var(--grad-2); min-height: 22px; }
.form-note.error { color: #ff5e7a; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0e0a04; border-top: 1px solid var(--border); padding-top: 64px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 44px;
  padding-bottom: 48px;
}
.footer-brand p { margin: 18px 0 22px; color: var(--text-faint); font-size: 0.92rem; max-width: 300px; }
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 12px;
  color: var(--text-dim);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}
.social-row a svg { width: 18px; height: 18px; }
.social-row a:hover { background: var(--grad); color: #fff; transform: translateY(-4px); }

.footer-col h4 { font-size: 1rem; margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col ul a { color: var(--text-faint); font-size: 0.92rem; transition: color 0.2s ease; }
.footer-col ul a:hover { color: var(--grad-2); }

.footer-keywords p.kw { color: var(--text-faint); font-size: 0.86rem; line-height: 1.7; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  border-top: 1px solid var(--border);
  padding: 22px 0;
  font-size: 0.82rem;
  color: var(--text-faint);
}
.legal-links a { color: var(--text-faint); transition: color 0.2s; }
.legal-links a:hover { color: var(--grad-2); }

/* ============================================================
   TO TOP + PROGRESS
   ============================================================ */
.to-top {
  position: fixed; right: 24px; bottom: 26px; z-index: 900;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 30px rgba(212, 160, 23, 0.45);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top svg { width: 20px; height: 20px; }

.progress-bar {
  position: fixed; top: 0; left: 0; z-index: 1100;
  height: 3px; width: 0%;
  background: var(--grad);
  transition: width 0.1s linear;
}

/* ============================================================
   REVEAL delays
   ============================================================ */
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .service-grid, .process-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .band-grid, .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--border); }
  .stat:nth-child(2n) { border-right: none; }
  .hero-inner, .contact-inner, .faq-inner, .footer-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 560px; }
  .carousel { padding: 0 48px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    gap: 4px;
    padding: 18px 5%;
    background: rgba(23, 15, 8, 0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-140%);
    transition: transform 0.35s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-link { display: block; padding: 13px 16px; }
  .nav-link.active::after { display: none; }
  .menu-toggle { display: flex; }
  .cta-cta { display: none; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .hero-card-badge { left: 12px; bottom: 14px; padding: 11px 15px; }

  .service-grid, .process-grid, .testimonial-grid, .band-grid, .stats-row, .work-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; }

  .carousel { padding: 0 40px; }
  .slide { aspect-ratio: 4 / 3.4; }
  .slide figcaption { left: 20px; bottom: 18px; }
  .carousel-btn { width: 42px; height: 42px; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .carousel { padding: 0; }
  .carousel-btn.prev { left: 8px; }
  .carousel-btn.next { right: 8px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}