@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --black: #000000;
  --bg: #0a0a0f;
  --card: #11121a;
  --navy: #0a1a3f;
  --navy-hover: #1a2f5f;
  --border: #1f1f2a;
  --white: #ffffff;
  --muted: #a8a8b3;
  --dim: #6b6b7a;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.display { font-family: 'Cormorant Garamond', serif; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--navy-hover); border-radius: 2px; }

/* ── NAVBAR ─────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px;
  display: flex; align-items: center;
  padding: 0 40px;
  transition: background 0.4s, border-color 0.4s;
}
.navbar.scrolled {
  background: rgba(10,10,15,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-hamburger {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span {
  display: block; height: 1px; background: var(--white);
  transition: width 0.25s;
}
.nav-hamburger span:nth-child(1) { width: 22px; }
.nav-hamburger span:nth-child(2) { width: 14px; }
.nav-hamburger span:nth-child(3) { width: 22px; }
.nav-hamburger:hover span { width: 22px !important; }

.nav-wordmark {
  position: absolute; left: 50%; transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 18px;
  letter-spacing: 0.15em; color: var(--white);
  text-decoration: none; white-space: nowrap;
}
.nav-cta {
  margin-left: auto;
  background: var(--navy); color: var(--white);
  border: 1px solid var(--navy-hover);
  padding: 10px 20px; border-radius: 6px;
  font-size: 13px; font-family: 'Inter', sans-serif;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--navy-hover); }

/* ── SIDEBAR ─────────────────────────────────────────────────────────────── */
.sidebar-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.sidebar-overlay.open { opacity: 1; pointer-events: all; }

.sidebar {
  position: fixed; top: 0; left: -320px; bottom: 0; z-index: 201;
  width: 300px;
  background: var(--bg); border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: left 0.32s cubic-bezier(0.25,0.46,0.45,0.94);
}
.sidebar.open { left: 0; }

.sidebar-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; height: 72px;
  border-bottom: 1px solid var(--border);
}
.sidebar-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 14px; letter-spacing: 0.15em; color: var(--white);
}
.sidebar-close {
  background: none; border: none; color: var(--dim);
  cursor: pointer; font-size: 20px; line-height: 1;
  transition: color 0.2s;
}
.sidebar-close:hover { color: var(--white); }

.sidebar-nav { padding: 28px; flex: 1; }
.sidebar-nav-label {
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--dim); display: block; margin-bottom: 16px;
}
.sidebar-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  color: var(--dim); text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 500;
  transition: color 0.2s;
}
.sidebar-link:hover, .sidebar-link.active { color: var(--white); }
.sidebar-link .arr { font-family: 'Inter', sans-serif; font-size: 12px; opacity: 0; transition: opacity 0.2s; }
.sidebar-link:hover .arr { opacity: 1; }

.sidebar-cta-wrap { padding: 16px 28px; }
.sidebar-cta {
  display: block; width: 100%; text-align: center;
  background: var(--navy); border: 1px solid var(--navy-hover);
  color: var(--white); padding: 14px;
  border-radius: 8px; font-size: 13px;
  text-decoration: none; transition: background 0.2s;
}
.sidebar-cta:hover { background: var(--navy-hover); }

.sidebar-foot {
  padding: 16px 28px 24px;
  border-top: 1px solid var(--border);
}
.sidebar-foot p { font-size: 9px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--dim); margin-bottom: 8px; }
.sidebar-foot a { display: block; font-size: 11px; color: var(--muted); text-decoration: none; margin-bottom: 4px; }
.sidebar-foot a:hover { color: var(--white); }

/* ── SHARED SECTIONS ─────────────────────────────────────────────────────── */
.page-hero {
  padding: 140px 40px 80px;
  text-align: center; background: var(--black);
}
.eyebrow {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 20px;
}
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; color: var(--white);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05; margin-bottom: 16px;
}
.hero-sub {
  color: var(--muted); font-size: 16px; line-height: 1.7;
  max-width: 520px; margin: 0 auto;
}

.section { padding: 80px 40px; }
.section-black { background: var(--black); }
.section-dark  { background: var(--bg); }

.section-head { text-align: center; margin-bottom: 56px; }
.section-h {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white); margin-bottom: 12px;
}
.section-sub { color: var(--muted); font-size: 15px; }

.container { max-width: 1200px; margin: 0 auto; }

/* ── MARQUEE ─────────────────────────────────────────────────────────────── */
.marquee-section { background: var(--bg); padding: 64px 0; overflow: hidden; }
.marquee-label {
  text-align: center; font-size: 9px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 36px;
}
.marquee-wrap { position: relative; overflow: hidden; }
.marquee-fade-l {
  position: absolute; left: 0; top: 0; bottom: 0; width: 120px; z-index: 2;
  background: linear-gradient(to right, var(--bg), transparent);
  pointer-events: none;
}
.marquee-fade-r {
  position: absolute; right: 0; top: 0; bottom: 0; width: 120px; z-index: 2;
  background: linear-gradient(to left, var(--bg), transparent);
  pointer-events: none;
}
.marquee-track {
  display: flex; align-items: center; gap: 40px;
  white-space: nowrap; width: max-content;
  animation: marqueeScroll 36s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex; align-items: center; gap: 10px;
  opacity: 0.5; transition: opacity 0.25s; padding: 0 8px;
}
.marquee-item:hover { opacity: 1; }
.marquee-g {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 13px; color: var(--white);
  flex-shrink: 0;
}
.marquee-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; color: var(--white);
}
.marquee-sep { color: var(--border); font-size: 20px; margin-left: 8px; }

/* ── SERVICE CARDS ───────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 36px 28px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: 0 0 28px rgba(10,26,63,0.35);
}
.service-icon {
  width: 44px; height: 44px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px; font-size: 18px;
}
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; color: var(--white); margin-bottom: 10px;
}
.service-desc {
  color: var(--muted); font-size: 13px; line-height: 1.65; margin-bottom: 20px;
}
.service-link {
  font-size: 10px; color: var(--dim); text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.12em;
  transition: color 0.2s;
}
.service-link:hover { color: var(--white); }

/* ── BROWSER FRAME ───────────────────────────────────────────────────────── */
.browser-frame {
  border-radius: 10px; overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.browser-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(10,26,63,0.4);
}
.browser-chrome {
  background: #1a1a24; padding: 8px 12px;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--border);
}
.browser-dots { display: flex; gap: 5px; }
.dot-r { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; }
.dot-y { width: 10px; height: 10px; border-radius: 50%; background: #febc2e; }
.dot-g { width: 10px; height: 10px; border-radius: 50%; background: #28c840; }
.browser-bar {
  flex: 1; margin: 0 10px; height: 18px;
  background: var(--bg); border-radius: 4px;
  display: flex; align-items: center; padding: 0 8px; gap: 5px;
}
.bar-dot { width: 6px; height: 6px; border-radius: 50%; background: #2a4f8f; flex-shrink: 0; }
.bar-line { flex: 1; height: 2px; background: var(--border); border-radius: 1px; }
.browser-screen {
  height: 180px; display: flex; align-items: center;
  justify-content: center; position: relative; overflow: hidden;
}
.browser-screen img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
}
.browser-screen .screen-fallback {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: rgba(255,255,255,0.25);
  text-align: center;
}
.coming-soon-badge {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
}
.coming-soon-badge span {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); background: rgba(10,10,15,0.9);
  padding: 5px 14px; border-radius: 20px; border: 1px solid var(--border);
}

/* ── PORTFOLIO GRID ──────────────────────────────────────────────────────── */
.portfolio-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px;
}
@media (max-width: 768px) { .portfolio-grid { grid-template-columns: 1fr; } }

.portfolio-card { cursor: pointer; }
.portfolio-card a { text-decoration: none; color: inherit; }
.portfolio-info { margin-top: 16px; }
.portfolio-tag {
  font-size: 10px; letter-spacing: 0.2em; color: var(--dim);
  text-transform: uppercase; margin-bottom: 6px;
}
.portfolio-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; color: var(--white); margin-bottom: 6px;
}
.portfolio-desc { color: var(--muted); font-size: 13px; line-height: 1.6; }

/* ── PROCESS ─────────────────────────────────────────────────────────────── */
.process-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; position: relative;
}
@media (max-width: 768px) {
  .process-row { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .process-row { grid-template-columns: 1fr; }
}
.process-line {
  position: absolute; top: 20px; left: 12.5%; right: 12.5%;
  height: 1px; background: var(--border);
}
@media (max-width: 768px) { .process-line { display: none; } }

.process-step { text-align: center; }
.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; color: var(--border); line-height: 1; margin-bottom: 10px;
}
.process-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--navy); border: 2px solid var(--navy-hover);
  margin: 0 auto 16px;
}
.process-title { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.process-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── PRICING ─────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }

.pricing-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px 28px; position: relative;
  transition: border-color 0.25s;
}
.pricing-card.featured {
  border-color: var(--navy);
  background: rgba(10,26,63,0.2);
  box-shadow: 0 0 40px rgba(10,26,63,0.35);
  transform: scale(1.04);
}
@media (max-width: 900px) { .pricing-card.featured { transform: scale(1); } }

.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: var(--white);
  font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; border: 1px solid var(--navy-hover);
  white-space: nowrap;
}
.pricing-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; color: var(--white); margin-bottom: 16px;
}
.pricing-amount { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.pricing-main { font-size: 36px; font-weight: 700; color: var(--white); }
.pricing-orig { font-size: 16px; color: var(--dim); text-decoration: line-through; }
.pricing-off {
  background: var(--navy); color: var(--white);
  font-size: 9px; font-weight: 600; letter-spacing: 0.1em;
  padding: 3px 8px; border-radius: 20px;
}
.pricing-features { list-style: none; margin: 20px 0 28px; }
.pricing-features li {
  font-size: 13px; color: var(--muted);
  padding: 7px 0; display: flex; align-items: flex-start; gap: 8px;
  border-bottom: 1px solid rgba(31,31,42,0.5);
}
.pricing-features li:last-child { border-bottom: none; }
.check { color: #4a6fa5; flex-shrink: 0; margin-top: 2px; }
.pricing-btn {
  display: block; width: 100%; text-align: center;
  padding: 14px; border-radius: 8px;
  font-size: 13px; font-family: 'Inter', sans-serif; font-weight: 500;
  text-decoration: none; transition: all 0.2s; cursor: pointer;
}
.pricing-btn-outline {
  border: 1px solid var(--border); background: transparent; color: var(--muted);
}
.pricing-btn-outline:hover { border-color: var(--navy); color: var(--white); }
.pricing-btn-navy {
  background: var(--navy); border: 1px solid var(--navy-hover); color: var(--white);
}
.pricing-btn-navy:hover { background: var(--navy-hover); }

/* ── CTA STRIP ───────────────────────────────────────────────────────────── */
.cta-strip { background: var(--navy); padding: 80px 40px; text-align: center; }
.cta-h {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; color: var(--white); margin-bottom: 14px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}
.cta-sub { color: rgba(255,255,255,0.65); font-size: 16px; margin-bottom: 32px; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--navy);
  font-size: 14px; font-weight: 600;
  padding: 16px 36px; border-radius: 6px;
  text-decoration: none; transition: background 0.2s;
}
.cta-btn:hover { background: #f0f0f0; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 64px 40px 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px; max-width: 1200px; margin: 0 auto 48px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 16px; letter-spacing: 0.15em;
  color: var(--white); text-decoration: none; display: block; margin-bottom: 14px;
}
.footer-desc { font-size: 13px; color: var(--dim); line-height: 1.7; max-width: 280px; }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 14px; color: var(--muted); margin-top: 14px;
}
.footer-col-title {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); font-weight: 500; margin-bottom: 20px; display: block;
}
.footer-link {
  display: block; font-size: 13px; color: var(--muted);
  text-decoration: none; margin-bottom: 10px; transition: color 0.2s;
}
.footer-link:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid var(--border); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-copy { font-size: 12px; color: var(--dim); }
.footer-craft { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 13px; color: var(--dim); }

/* ── ABOUT TEASER ────────────────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

.about-g-mark {
  width: 260px; height: 260px; border-radius: 20px;
  border: 1px solid var(--border);
  background: radial-gradient(circle at center, var(--navy) 0%, #000 70%);
  display: flex; align-items: center; justify-content: center; margin: 0 auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px; color: var(--white); font-weight: 600; line-height: 1;
}
.about-tag { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim); margin-bottom: 20px; }
.about-h {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--white); line-height: 1.1; margin-bottom: 24px;
}
.about-p { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.about-link {
  color: var(--white); text-decoration: none; font-size: 13px; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px;
  transition: border-color 0.2s; display: inline-flex; align-items: center; gap: 6px;
}
.about-link:hover { border-color: var(--white); }

/* ── SERVICES PAGE ───────────────────────────────────────────────────────── */
.service-section {
  padding: 80px 40px;
}
.service-section:nth-child(odd) { background: var(--bg); }
.service-section:nth-child(even) { background: var(--black); }

.service-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto;
}
@media (max-width: 768px) { .service-split { grid-template-columns: 1fr; gap: 40px; } }

.service-split.reverse { direction: rtl; }
.service-split.reverse > * { direction: ltr; }

.svc-num-tag { font-size: 10px; letter-spacing: 0.25em; color: var(--dim); text-transform: uppercase; margin-bottom: 12px; }
.svc-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white); line-height: 1.1; margin-bottom: 20px;
}
.svc-body { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
.svc-deliv-title {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); margin: 24px 0 12px;
}
.svc-deliv-item {
  font-size: 13px; color: var(--muted);
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.svc-icon-box {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(10,26,63,0.3); border: 1px solid var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 24px;
}
.svc-visual {
  aspect-ratio: 1; border-radius: 16px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 96px;
  color: var(--border);
}
.book-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--navy); border: 1px solid var(--navy-hover);
  color: var(--white); padding: 12px 22px; border-radius: 6px;
  font-size: 13px; font-weight: 500; text-decoration: none;
  margin-top: 20px; transition: background 0.2s;
}
.book-btn:hover { background: var(--navy-hover); }

/* ── CONTACT PAGE ────────────────────────────────────────────────────────── */
.contact-split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh;
}
@media (max-width: 900px) {
  .contact-split { grid-template-columns: 1fr; }
}
.contact-left {
  background: var(--black); padding: 120px 56px 60px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.contact-right {
  background: var(--bg); padding: 120px 56px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
@media (max-width: 900px) {
  .contact-left, .contact-right { padding: 60px 28px; }
  .contact-left { border-right: none; border-bottom: 1px solid var(--border); }
}
.contact-h {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; color: var(--white);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.0; margin-bottom: 16px;
}
.contact-sub { color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 320px; margin-bottom: 48px; }
.contact-links { margin-top: auto; }
.contact-reach { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim); margin-bottom: 20px; }
.contact-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px; text-decoration: none;
  color: var(--muted); transition: color 0.2s;
}
.contact-row:hover { color: var(--white); }
.contact-icon {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border); display: flex;
  align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0;
  transition: border-color 0.2s;
}
.contact-row:hover .contact-icon { border-color: var(--navy); }
.contact-val { font-size: 13px; }

/* ── MULTI-STEP FORM ─────────────────────────────────────────────────────── */
.form-max { max-width: 440px; }
.progress-bar { display: flex; align-items: center; margin-bottom: 40px; }
.prog-dot {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--dim); flex-shrink: 0;
  transition: all 0.3s;
}
.prog-dot.done { background: var(--navy); border-color: var(--navy); color: var(--white); }
.prog-dot.active { border-color: var(--white); color: var(--white); }
.prog-line { flex: 1; height: 1px; background: var(--border); transition: background 0.3s; }
.prog-line.done { background: var(--navy); }

.step { display: none; }
.step.active { display: block; }

.step-num { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim); margin-bottom: 6px; }
.step-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; color: var(--white); margin-bottom: 28px;
}
.step-sub { font-size: 13px; color: var(--dim); margin-bottom: 24px; line-height: 1.6; }

.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 480px) { .form-row2 { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 24px; }
.form-label {
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dim); display: block; margin-bottom: 6px;
}
.form-input {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid var(--border);
  color: var(--white); font-size: 14px; font-family: 'Inter', sans-serif;
  padding: 10px 0; outline: none;
  transition: border-color 0.2s;
}
.form-input::placeholder { color: #3a3a4a; }
.form-input:focus { border-bottom-color: #4a6fa5; }
.form-input.error { border-bottom-color: rgba(239,68,68,0.6); }
.form-select {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid var(--border);
  color: var(--white); font-size: 14px; font-family: 'Inter', sans-serif;
  padding: 10px 0; outline: none; cursor: pointer; appearance: none;
  transition: border-color 0.2s;
}
.form-select:focus { border-bottom-color: #4a6fa5; }
.form-select option { background: var(--card); color: var(--white); }
.form-textarea {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid var(--border);
  color: var(--white); font-size: 14px; font-family: 'Inter', sans-serif;
  padding: 10px 0; outline: none; resize: none;
  transition: border-color 0.2s; line-height: 1.6;
}
.form-textarea::placeholder { color: #3a3a4a; }
.form-textarea:focus { border-bottom-color: #4a6fa5; }
.form-error { color: rgba(239,68,68,0.9); font-size: 11px; margin-top: 4px; display: none; }

.svc-options { margin-bottom: 8px; }
.svc-option {
  width: 100%; display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: 8px;
  border: 1px solid var(--border); background: transparent;
  color: var(--dim); cursor: pointer; font-size: 13px;
  font-family: 'Inter', sans-serif; font-weight: 500;
  margin-bottom: 8px; text-align: left;
  transition: all 0.2s;
}
.svc-option:hover { border-color: #2a2a3a; color: var(--white); }
.svc-option.selected { border-color: var(--navy); background: rgba(10,26,63,0.2); color: var(--white); }
.svc-option-icon { font-size: 15px; flex-shrink: 0; }
.svc-option-dot {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1.5px solid currentColor;
  margin-left: auto; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.svc-option.selected .svc-option-dot { border-color: #4a6fa5; background: #4a6fa5; }
.svc-option.selected .svc-option-dot::after {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--white);
}

.form-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px; padding-top: 20px;
  border-top: 1px solid var(--border);
}
.form-back {
  background: none; border: none; color: var(--muted);
  font-size: 13px; cursor: pointer; font-family: 'Inter', sans-serif;
  transition: color 0.2s; visibility: hidden;
}
.form-back:hover { color: var(--white); }
.form-next {
  display: flex; align-items: center; gap: 8px;
  background: var(--navy); border: 1px solid var(--navy-hover);
  color: var(--white); padding: 12px 24px; border-radius: 8px;
  font-size: 13px; font-weight: 500; font-family: 'Inter', sans-serif;
  cursor: pointer; transition: background 0.2s;
}
.form-next:hover { background: var(--navy-hover); }
.form-next:disabled { opacity: 0.4; cursor: not-allowed; }

/* Success */
.success-card { text-align: center; padding: 40px 0; display: none; }
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 24px;
  font-size: 28px;
}
.success-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; color: var(--white); margin-bottom: 12px;
}
.success-sub { color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 320px; margin: 0 auto 32px; }
.success-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.success-btn-ig {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); border: 1px solid var(--navy-hover);
  color: var(--white); padding: 11px 20px; border-radius: 6px;
  font-size: 13px; text-decoration: none; transition: background 0.2s;
}
.success-btn-ig:hover { background: var(--navy-hover); }
.success-btn-home {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); color: var(--muted);
  padding: 11px 20px; border-radius: 6px;
  font-size: 13px; text-decoration: none; transition: all 0.2s;
}
.success-btn-home:hover { border-color: var(--muted); color: var(--white); }

/* Honeypot */
.hp-field { display: none !important; visibility: hidden; }

/* ── HERO HOME ───────────────────────────────────────────────────────────── */
.home-hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 40px;
  background: var(--black); position: relative; overflow: hidden;
}
.home-orb {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(10,26,63,0.3) 0%, transparent 70%);
  pointer-events: none;
  animation: orbDrift 14s ease-in-out infinite;
}
@keyframes orbDrift {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  33%      { transform: translate(calc(-50% + 20px), calc(-50% - 20px)) scale(1.05); }
  66%      { transform: translate(calc(-50% - 15px), calc(-50% + 15px)) scale(0.97); }
}
.home-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; color: var(--white);
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 1.02; margin-bottom: 24px;
  position: relative; z-index: 1;
}
.home-sub {
  color: var(--muted); font-size: 18px; line-height: 1.65;
  max-width: 560px; margin: 0 auto 40px;
  position: relative; z-index: 1;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-outline {
  border: 1px solid var(--white); color: var(--white); background: transparent;
  padding: 14px 28px; border-radius: 6px; font-size: 14px; font-weight: 500;
  text-decoration: none; transition: all 0.2s;
}
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-navy {
  background: var(--navy); border: 1px solid var(--navy-hover); color: var(--white);
  padding: 14px 28px; border-radius: 6px; font-size: 14px; font-weight: 500;
  text-decoration: none; transition: background 0.2s;
}
.btn-navy:hover { background: var(--navy-hover); }
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { opacity: 1; transform: translateY(0); }
  50%      { opacity: 0.3; transform: translateY(6px); }
}
.scroll-lbl { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--dim); }

/* ── MOBILE ──────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .home-hero { padding: 0 24px; }
  .section { padding: 60px 24px; }
  .page-hero { padding: 110px 24px 60px; }
  .cta-strip { padding: 60px 24px; }
  footer { padding: 48px 24px 20px; }
  .contact-left, .contact-right { padding: 80px 24px 48px; }
  .service-section { padding: 60px 24px; }
  .service-split { gap: 32px; }
  .service-split.reverse { direction: ltr; }
}

/* ── FADE-IN ANIMATION ───────────────────────────────────────────────────── */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
