:root {
  --bg: hsl(0 0% 2%);
  --bg-elev: hsl(0 0% 5%);
  --bg-elev-2: hsl(0 0% 8%);
  --text: hsl(45 20% 95%);
  --text-dim: hsl(45 10% 65%);
  --text-mute: hsl(45 8% 45%);
  --gold: hsl(45 85% 55%);
  --gold-deep: hsl(45 70% 45%);
  --gold-soft: hsl(45 60% 35%);
  --border: hsl(45 20% 15%);
  --border-soft: hsl(45 15% 10%);
  --radius: 14px;
  --radius-sm: 8px;
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, hsl(45 70% 25% / 0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 100%, hsl(45 70% 20% / 0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(hsl(45 20% 15% / 0.06) 1px, transparent 1px),
    linear-gradient(90deg, hsl(45 20% 15% / 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

main, header, footer { position: relative; z-index: 1; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text);
}

a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
img { max-width: 100%; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ========== Header ========== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.4s var(--ease);
  background: hsl(0 0% 2% / 0.6);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 12px 0;
  background: hsl(0 0% 2% / 0.85);
  border-bottom-color: var(--border-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.brand img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 14px hsl(45 85% 55% / 0.25));
  transition: transform 0.5s var(--ease);
}
.brand:hover img { transform: rotate(-4deg) scale(1.05); }
.brand-name { background: linear-gradient(135deg, var(--text), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.02em;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-links a.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: hsl(0 0% 5%) !important;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.4s var(--ease);
  box-shadow: 0 8px 24px hsl(45 85% 30% / 0.3);
}
.nav-links a.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px hsl(45 85% 40% / 0.45);
}
.nav-links a.nav-cta::after { display: none !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: 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); }

@media (max-width: 860px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    background: hsl(0 0% 3% / 0.98);
    backdrop-filter: blur(20px);
    padding: 32px;
    gap: 24px;
    border-bottom: 1px solid var(--border-soft);
    transform: translateY(-120%);
    transition: transform 0.5s var(--ease);
  }
  .nav-links.open { transform: translateY(0); }
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.4s var(--ease);
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: hsl(0 0% 5%);
  box-shadow: 0 10px 30px hsl(45 85% 30% / 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px hsl(45 85% 40% / 0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: hsl(45 85% 55% / 0.05);
}
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ========== Hero ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 14s ease-in-out infinite;
}
.orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, hsl(45 85% 45% / 0.4), transparent 70%);
  top: -120px; left: -120px;
}
.orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, hsl(45 70% 35% / 0.35), transparent 70%);
  bottom: -100px; right: -80px;
  animation-delay: -6s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: hsl(0 0% 5% / 0.6);
  backdrop-filter: blur(8px);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero h1 .gold {
  background: linear-gradient(135deg, var(--gold) 0%, hsl(45 90% 70%) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero p.lead {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--text-dim);
  max-width: 640px;
  margin-bottom: 44px;
  line-height: 1.75;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========== Sections ========== */
section { padding: 110px 0; position: relative; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  margin-bottom: 18px;
}
.section-head h2 .gold {
  background: linear-gradient(135deg, var(--gold), hsl(45 90% 70%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.section-head p {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ========== Service Cards ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  padding: 40px 32px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, hsl(0 0% 6%), hsl(0 0% 4%));
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: all 0.5s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), hsl(45 85% 55% / 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: hsl(45 60% 30%);
  box-shadow: 0 30px 60px -20px hsl(45 85% 20% / 0.4);
}
.service-card:hover::before { opacity: 1; }
.service-card .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(45 85% 55% / 0.15), hsl(45 85% 55% / 0.04));
  border: 1px solid hsl(45 60% 30% / 0.4);
  color: var(--gold);
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}
.service-card .icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.service-card p {
  color: var(--text-dim);
  font-size: 0.96rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.service-card ul {
  list-style: none;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
.service-card ul li {
  font-size: 0.88rem;
  color: var(--text-mute);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-card ul li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* ========== Approach / Process ========== */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.approach-card {
  padding: 40px 32px;
  border-radius: var(--radius);
  background: hsl(0 0% 4%);
  border: 1px solid var(--border-soft);
  position: relative;
  transition: all 0.5s var(--ease);
}
.approach-card::before {
  counter-increment: step;
  content: '0' counter(step);
  position: absolute;
  top: 24px; right: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.6;
}
.approach-card:hover {
  border-color: hsl(45 50% 25%);
  transform: translateY(-4px);
}
.approach-card h3 { font-size: 1.25rem; margin: 32px 0 12px; }
.approach-card p { color: var(--text-dim); font-size: 0.94rem; }

/* ========== Marquee ========== */
.marquee {
  margin: 60px 0;
  overflow: hidden;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 28px 0;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: scroll 38s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--text-mute);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 60px;
}
.marquee-track span::after {
  content: '✦';
  color: var(--gold);
  font-size: 1rem;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ========== Feature split ========== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-text h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  margin-bottom: 22px;
}
.split-text h2 .gold {
  background: linear-gradient(135deg, var(--gold), hsl(45 90% 70%));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic;
}
.split-text p {
  color: var(--text-dim);
  font-size: 1.02rem;
  margin-bottom: 18px;
  line-height: 1.8;
}
.feature-list {
  list-style: none;
  margin-top: 28px;
}
.feature-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border-soft);
}
.feature-list li:last-child { border-bottom: 1px solid var(--border-soft); }
.feature-list .check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: hsl(45 85% 55% / 0.12);
  border: 1px solid hsl(45 60% 30%);
  display: grid;
  place-items: center;
  color: var(--gold);
}
.feature-list .check svg { width: 12px; height: 12px; }
.feature-list strong { display: block; color: var(--text); margin-bottom: 4px; font-weight: 500; }
.feature-list span { color: var(--text-mute); font-size: 0.92rem; }

.split-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background: linear-gradient(160deg, hsl(0 0% 6%), hsl(0 0% 3%));
  border: 1px solid var(--border-soft);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.split-visual .glow {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, hsl(45 85% 55% / 0.3), transparent 70%);
  filter: blur(40px);
  animation: float 10s ease-in-out infinite;
}
.split-visual img {
  position: relative;
  width: 60%;
  height: auto;
  filter: drop-shadow(0 20px 60px hsl(45 85% 55% / 0.3));
  animation: bob 6s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 50px; }
}

/* ========== CTA Strip ========== */
.cta-strip {
  margin: 60px 0;
  padding: 80px 60px;
  border-radius: 28px;
  background: linear-gradient(135deg, hsl(0 0% 5%), hsl(0 0% 3%));
  border: 1px solid hsl(45 40% 20%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, hsl(45 85% 40% / 0.18), transparent 60%);
}
.cta-strip > * { position: relative; }
.cta-strip h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 18px;
}
.cta-strip h2 .gold {
  background: linear-gradient(135deg, var(--gold), hsl(45 90% 70%));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic;
}
.cta-strip p {
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto 32px;
}

@media (max-width: 600px) {
  .cta-strip { padding: 56px 28px; }
}

/* ========== Footer ========== */
.site-footer {
  margin-top: 60px;
  border-top: 1px solid var(--border-soft);
  padding: 80px 0 32px;
  background: hsl(0 0% 3%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand p {
  color: var(--text-dim);
  font-size: 0.94rem;
  margin: 20px 0;
  max-width: 320px;
  line-height: 1.75;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  color: var(--text-dim);
  font-size: 0.95rem;
  transition: 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-mute);
  font-size: 0.85rem;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ========== Page Header ========== */
.page-header {
  padding: 180px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, hsl(45 70% 25% / 0.2), transparent 60%);
}
.page-header > * { position: relative; }
.page-header h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  margin-bottom: 20px;
}
.page-header h1 .gold {
  background: linear-gradient(135deg, var(--gold), hsl(45 90% 70%));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic;
}
.page-header p {
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.75;
}

/* ========== About ========== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.value-card {
  padding: 36px 30px;
  background: hsl(0 0% 4%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  transition: 0.5s var(--ease);
}
.value-card:hover {
  border-color: hsl(45 50% 25%);
  transform: translateY(-4px);
}
.value-card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, hsl(45 85% 55% / 0.15), transparent);
  border: 1px solid hsl(45 50% 25% / 0.4);
  display: grid; place-items: center;
  color: var(--gold);
  margin-bottom: 22px;
}
.value-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value-card p { color: var(--text-dim); font-size: 0.94rem; }

/* ========== Contact ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.contact-info > p {
  color: var(--text-dim);
  margin-bottom: 36px;
  line-height: 1.75;
}
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: hsl(0 0% 4%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  transition: 0.4s var(--ease);
}
.contact-list li:hover {
  border-color: hsl(45 50% 25%);
  transform: translateX(4px);
}
.contact-list .icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: hsl(45 85% 55% / 0.1);
  border: 1px solid hsl(45 50% 25% / 0.4);
  display: grid; place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-list .icon svg { width: 18px; height: 18px; }
.contact-list strong {
  display: block;
  color: var(--text-mute);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
  font-weight: 500;
}
.contact-list a, .contact-list span {
  color: var(--text);
  font-size: 1rem;
}
.contact-list a:hover { color: var(--gold); }

/* ===== Living Contact Form ===== */
.contact-form {
  padding: 44px;
  background: linear-gradient(180deg, hsl(0 0% 5%), hsl(0 0% 3%));
  border: 1px solid var(--border);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.6s var(--ease);
}
.contact-form::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  background: radial-gradient(600px circle at var(--fx, 50%) var(--fy, 0%), hsl(45 85% 55% / 0.15), transparent 40%);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  pointer-events: none;
}
.contact-form:hover::before { opacity: 1; }
.contact-form:focus-within {
  border-color: hsl(45 50% 25%);
}
.contact-form:focus-within::before { opacity: 1; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.form-group {
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

/* Floating-label field */
.field {
  position: relative;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 22px 18px 12px;
  background: hsl(0 0% 2%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.98rem;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.field textarea {
  resize: vertical;
  min-height: 150px;
  padding-top: 26px;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ecbb29' stroke-width='2.5'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}
.field select option { background: hsl(0 0% 5%); color: var(--text); }

.field label {
  position: absolute;
  left: 18px;
  top: 18px;
  font-size: 0.95rem;
  color: var(--text-mute);
  pointer-events: none;
  transition: all 0.35s var(--ease);
  background: transparent;
  padding: 0 4px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field.has-value label,
.field.is-focused label {
  top: 6px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: hsl(45 30% 5% / 0.6);
  box-shadow: 0 0 0 4px hsl(45 85% 55% / 0.1), 0 8px 24px -10px hsl(45 85% 40% / 0.4);
}

/* Animated underline accent */
.field::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: all 0.5s var(--ease);
  transform: translateX(-50%);
  border-radius: 2px;
  pointer-events: none;
}
.field.is-focused::after { width: 90%; }

/* Validation indicators */
.field .check-mark {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: hsl(45 85% 55% / 0.15);
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  opacity: 0;
  transition: all 0.4s var(--ease);
  pointer-events: none;
}
.field .check-mark svg { width: 11px; height: 11px; }
.field.is-valid .check-mark {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}
.field.has-textarea .check-mark { top: 22px; transform: scale(0); }
.field.has-textarea.is-valid .check-mark { transform: scale(1); }

.field.is-invalid input,
.field.is-invalid textarea,
.field.is-invalid select {
  border-color: hsl(0 70% 55%);
  animation: shake 0.45s var(--ease);
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* Char counter */
.field .counter {
  position: absolute;
  right: 14px;
  bottom: 10px;
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
  transition: color 0.3s;
}
.field .counter.near { color: var(--gold); }

/* Submit button states */
.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
  min-height: 56px;
  font-size: 14px;
}
.btn-submit .label,
.btn-submit .arrow {
  transition: all 0.4s var(--ease);
}
.btn-submit .spinner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid hsl(0 0% 5% / 0.3);
  border-top-color: hsl(0 0% 5%);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s var(--ease);
}
.btn-submit .check-anim {
  position: absolute;
  width: 24px;
  height: 24px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s var(--ease);
}
.btn-submit .check-anim svg { width: 100%; height: 100%; }

.btn-submit.loading .label,
.btn-submit.loading .arrow { opacity: 0; transform: translateY(-10px); }
.btn-submit.loading .spinner {
  opacity: 1;
  transform: scale(1);
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn-submit.success {
  background: linear-gradient(135deg, hsl(140 60% 45%), hsl(140 60% 35%));
  box-shadow: 0 12px 36px hsl(140 60% 30% / 0.4);
}
.btn-submit.success .label,
.btn-submit.success .arrow,
.btn-submit.success .spinner {
  opacity: 0;
}
.btn-submit.success .check-anim {
  opacity: 1;
  transform: scale(1);
  color: hsl(0 0% 5%);
}

/* Success message */
.form-success {
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, hsl(45 85% 55% / 0.12), hsl(45 85% 55% / 0.04));
  border: 1px solid hsl(45 60% 30% / 0.5);
  color: var(--gold);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  transition: all 0.6s var(--ease);
}
.form-success.show {
  opacity: 1;
  max-height: 80px;
  padding-top: 16px;
  padding-bottom: 16px;
  margin-top: 18px;
}
.form-success svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.form-success.is-error {
  background: linear-gradient(135deg, hsl(0 70% 50% / 0.12), hsl(0 70% 50% / 0.04));
  border-color: hsl(0 60% 40% / 0.6);
  color: hsl(0 80% 70%);
}

/* Field stagger reveal — delays come from inline style on each .field */
.contact-form .field,
.contact-form .form-consent,
.contact-form .btn-submit {
  opacity: 0;
  transform: translateY(14px);
  animation: fieldIn 0.7s var(--ease) forwards;
}
.contact-form .btn-submit { animation-delay: 0.54s; }
@keyframes fieldIn {
  to { opacity: 1; transform: translateY(0); }
}

/* SMS consent */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  margin: 4px 0 18px;
  background: hsl(0 0% 2%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
  position: relative;
  z-index: 1;
}
.form-consent:hover {
  border-color: hsl(45 40% 22%);
  background: hsl(45 30% 4% / 0.4);
}
.form-consent input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form-consent .box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1.5px solid var(--border);
  background: hsl(0 0% 3%);
  display: grid;
  place-items: center;
  color: hsl(0 0% 5%);
  transition: all 0.3s var(--ease);
  margin-top: 1px;
}
.form-consent .box svg {
  width: 12px;
  height: 12px;
  opacity: 0;
  transform: scale(0.4);
  transition: all 0.3s var(--ease);
}
.form-consent input:checked + .box {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border-color: var(--gold);
  box-shadow: 0 0 0 4px hsl(45 85% 55% / 0.1);
}
.form-consent input:checked + .box svg {
  opacity: 1;
  transform: scale(1);
}
.form-consent input:focus-visible + .box {
  box-shadow: 0 0 0 4px hsl(45 85% 55% / 0.18);
}
.form-consent .text {
  font-size: 11px;
  line-height: 1.65;
  color: var(--text-mute);
  letter-spacing: 0.01em;
}
.form-consent.is-invalid {
  border-color: hsl(0 70% 55%);
  animation: shake 0.45s var(--ease);
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
}

/* ========== Reveal animation ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* ========== Utilities ========== */
.text-gold { color: var(--gold); }
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 60px 0;
}

/* ============================================
   FUTURISTIC LAYER
   ============================================ */

/* ----- Scroll progress bar ----- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), hsl(45 95% 80%));
  z-index: 200;
  box-shadow: 0 0 16px hsl(45 85% 55% / 0.55);
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ----- Custom cursor ----- */
.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  top: 0; left: 0;
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  box-shadow: 0 0 14px hsl(45 85% 55% / 0.85);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s;
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1px solid hsl(45 85% 55% / 0.55);
  background: hsl(45 85% 55% / 0.02);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), border-color 0.3s, background 0.3s;
  backdrop-filter: invert(0.05);
}
.cursor-ring.hover {
  width: 70px; height: 70px;
  border-color: hsl(45 85% 75%);
  background: hsl(45 85% 55% / 0.07);
}
.cursor-ring.click {
  width: 26px; height: 26px;
  border-color: hsl(45 85% 80%);
}
body.has-cursor,
body.has-cursor a,
body.has-cursor button,
body.has-cursor input,
body.has-cursor textarea,
body.has-cursor select,
body.has-cursor label {
  cursor: none;
}
@media (max-width: 860px), (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
  body.has-cursor, body.has-cursor * { cursor: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ----- Particle canvas ----- */
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}

/* ----- Hero word reveal ----- */
.word-in {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: 1.15;
  padding-bottom: 0.08em;
}
.word-in .word-inner {
  display: inline-block;
  transform: translateY(115%);
  opacity: 0;
  transition: transform 1.05s var(--ease), opacity 1.05s var(--ease);
  will-change: transform;
}
.word-in.in .word-inner {
  transform: translateY(0);
  opacity: 1;
}
.word-inner.gold-word {
  background: linear-gradient(135deg, var(--gold) 0%, hsl(45 90% 70%) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

/* ----- 3D tilt service cards ----- */
.service-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card .icon,
.service-card h3,
.service-card p,
.service-card ul {
  transform: translateZ(18px);
}

/* ----- Magnetic ready ----- */
.btn, .nav-cta {
  will-change: transform;
}

/* ----- Section divider draw ----- */
.section-head {
  position: relative;
}
.section-head::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -28px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
  transition: width 1.6s var(--ease);
}
.section-head.in::after { width: 280px; }

/* ----- Brand glow pulse ----- */
@keyframes brand-pulse {
  0%, 100% { filter: drop-shadow(0 0 14px hsl(45 85% 55% / 0.25)); }
  50%      { filter: drop-shadow(0 0 24px hsl(45 85% 55% / 0.55)); }
}
.brand img { animation: brand-pulse 4.5s ease-in-out infinite; }

/* ----- Page loader ----- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: hsl(0 0% 2%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
.page-loader.gone {
  opacity: 0;
  visibility: hidden;
}
.page-loader .loader-logo {
  width: 64px;
  height: 64px;
  animation: brand-pulse 1.6s ease-in-out infinite;
}
.page-loader .loader-bar {
  width: 140px;
  height: 1px;
  background: hsl(45 20% 15%);
  position: relative;
  overflow: hidden;
}
.page-loader .loader-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loader-slide 1.4s ease-in-out infinite;
}
@keyframes loader-slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ----- Side scan lines ----- */
.scan-line {
  position: fixed;
  top: 0;
  width: 1px;
  height: 100vh;
  background: linear-gradient(180deg, transparent, hsl(45 85% 55% / 0.18), transparent);
  pointer-events: none;
  z-index: 50;
  opacity: 0;
  animation: scan-fade 8s ease-in-out infinite;
}
.scan-line.left { left: 7%; animation-delay: 0s; }
.scan-line.right { right: 7%; animation-delay: 4s; }
@keyframes scan-fade {
  0%, 100% { opacity: 0; transform: translateY(-20%); }
  50% { opacity: 1; transform: translateY(20%); }
}
@media (max-width: 860px) {
  .scan-line { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .word-in .word-inner { transition: none; opacity: 1; transform: none; }
  .scan-line, .particles { display: none; }
  .brand img { animation: none; }
}

/* ========== Legal / Privacy Page ========== */
.legal-content {
  font-size: 1.06rem;
  line-height: 1.85;
  color: var(--text-dim);
  letter-spacing: 0.005em;
}

.legal-content .legal-meta {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 16px;
  border: 1px solid hsl(45 50% 25%);
  border-radius: 999px;
  margin-bottom: 40px;
  background: hsl(45 70% 20% / 0.08);
}

.legal-content > p:first-of-type + p,
.legal-content > p:first-of-type {
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.8;
}

.legal-content h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  margin-top: 56px;
  margin-bottom: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
  color: var(--text);
  position: relative;
}

.legal-content h2::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.legal-content > h2:first-of-type {
  margin-top: 40px;
}

.legal-content p {
  margin-bottom: 18px;
}

.legal-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
}

.legal-content ul li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px dashed var(--border-soft);
}

.legal-content ul li:last-child {
  border-bottom: none;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.9;
}

.legal-content strong {
  color: var(--text);
  font-weight: 600;
}

.legal-content a {
  color: var(--gold);
  border-bottom: 1px solid hsl(45 50% 25%);
  transition: all 0.3s var(--ease);
}

.legal-content a:hover {
  color: hsl(45 90% 70%);
  border-bottom-color: var(--gold);
}

.legal-content .legal-callout {
  margin: 36px 0;
  padding: 28px 32px;
  background: linear-gradient(135deg, hsl(45 70% 20% / 0.18), hsl(45 70% 15% / 0.08));
  border: 1px solid hsl(45 50% 25%);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.75;
  position: relative;
}

.legal-content .legal-callout strong {
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 1.12rem;
  letter-spacing: -0.005em;
}

@media (max-width: 640px) {
  .legal-content {
    font-size: 1rem;
    line-height: 1.8;
  }
  .legal-content .legal-callout {
    padding: 22px 20px;
  }
  .legal-content h2 {
    margin-top: 44px;
    padding-top: 22px;
  }
}
