@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --black: #05070d;
  --dark: #080c14;
  --dark-mid: #0d1220;
  --mid: #131929;
  --border: rgba(255,255,255,0.07);
  --white: #f3f0ec;
  --white-dim: rgba(243,240,236,0.54);
  --white-faint: rgba(243,240,236,0.04);
  --gold: #6eb3ff;
  --gold-light: #93c5fd;
  --gold-dim: rgba(110,179,255,0.1);
  --gold-border: rgba(110,179,255,0.24);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 48px;
  gap: 24px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}
nav.nav-scrolled {
  background: rgba(5,7,13,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; flex-shrink: 0;
}
.logo-drop {
  position: relative; width: 20px; height: 24px; flex-shrink: 0;
}
.logo-drop::before {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 16px; height: 16px; border-radius: 50%; background: var(--gold);
}
.logo-drop::after {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 15px solid var(--gold);
}
.logo-text { font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; }
.logo-text strong { font-weight: 900; color: var(--white); }
.logo-text span { font-weight: 300; color: var(--white); }

/* Services dropdown */
.nav-center {
  display: flex; align-items: center; justify-content: center; gap: 24px;
}
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links a {
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--white-dim); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--white-dim);
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 5px; padding: 0;
  font-family: 'Inter', sans-serif; transition: color 0.2s;
}
.nav-dropdown-toggle:hover { color: var(--white); }
.nav-dropdown-toggle::after { content: '▾'; font-size: 10px; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%);
  background: var(--dark-mid); border: 1px solid var(--border);
  min-width: 220px; z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(-50%) translateY(-4px);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 12px 18px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--white-dim);
  text-decoration: none; border-bottom: 1px solid var(--border);
  transition: all 0.15s;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { color: var(--white); background: var(--white-faint); padding-left: 22px; }

.nav-right { display: flex; align-items: center; gap: 16px; justify-content: flex-end; }
.nav-phone { font-size: 13px; font-weight: 600; color: var(--white-dim); text-decoration: none; letter-spacing: 0.02em; transition: color 0.2s; }
.nav-phone:hover { color: var(--white); }
.nav-cta-btn {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 10px 20px;
  text-decoration: none; transition: all 0.2s ease; white-space: nowrap;
}
.nav-cta-btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); transform: translateY(-1px); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); }

.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(5,7,13,0.98); border-bottom: 1px solid var(--border);
  padding: 20px 24px; z-index: 99; flex-direction: column; gap: 2px;
  backdrop-filter: blur(12px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--white-dim); text-decoration: none;
  padding: 13px 0; border-bottom: 1px solid var(--border);
}
.mobile-menu .mobile-sub { padding-left: 16px; font-size: 12px; opacity: 0.7; }
.mobile-menu a.mcta {
  background: #ffffff; color: #05070d;
  text-align: center; padding: 15px; border: none; margin-top: 10px; font-weight: 700;
}

/* BUTTONS */
.btn-primary {
  display: inline-block; background: #ffffff; color: #05070d;
  font-weight: 700; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 17px 40px;
  text-decoration: none; transition: all 0.25s ease;
}
.btn-primary:hover { background: #e8f0ff; transform: translateY(-2px); box-shadow: 0 12px 36px rgba(110,179,255,0.2); }

.btn-ghost {
  display: inline-block; border: 1px solid rgba(110,179,255,0.4); color: var(--gold);
  font-weight: 500; font-size: 12px; letter-spacing: 0.09em;
  text-transform: uppercase; padding: 16px 32px;
  text-decoration: none; transition: all 0.25s ease;
}
.btn-ghost:hover { background: var(--gold-dim); border-color: var(--gold); }

.btn-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold); text-decoration: none; transition: opacity 0.2s;
}
.btn-link:hover { opacity: 0.75; }
.btn-link::after { content: '→'; font-size: 14px; }

.cta-group { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.cta-group.centre { justify-content: center; }

/* SECTIONS */
section { position: relative; padding: 88px 24px; }
.section-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.section-inner.wide { max-width: 1060px; }
.section-inner.left { text-align: left; max-width: 700px; }

.section-label {
  display: block; font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}

h2 {
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.02em; color: var(--white); margin-bottom: 18px;
}
h2 em { font-style: normal; color: var(--gold); }

h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }

.section-divider {
  width: 100%; height: 1px; background: var(--border); position: relative;
}
.section-divider::after {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  top: 0; width: 48px; height: 1px; background: var(--gold); opacity: 0.4;
}

/* FOOTER */
footer {
  background: var(--black); border-top: 1px solid var(--border);
  padding: 40px 24px; text-align: center;
}
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; }
.footer-drop { position: relative; width: 16px; height: 20px; flex-shrink: 0; }
.footer-drop::before { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 14px; height: 14px; border-radius: 50%; background: var(--gold); opacity: 0.4; }
.footer-drop::after { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 13px solid var(--gold); opacity: 0.4; }
.footer-wordmark { font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(243,240,236,0.35); }
.footer-wordmark strong { font-weight: 900; }
.footer-wordmark span { font-weight: 300; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 20px; margin-bottom: 20px; }
.footer-links a { font-size: 11px; font-weight: 500; letter-spacing: 0.04em; color: rgba(243,240,236,0.22); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white-dim); }
.footer-copy { font-size: 11px; color: rgba(243,240,236,0.14); }

/* STICKY */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 99; background: rgba(8,12,20,0.97);
  border-top: 1px solid var(--gold-border); padding: 10px 20px;
  backdrop-filter: blur(8px);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.sticky-bar.sticky-visible { transform: translateY(0); }
@media (min-width: 769px) { .sticky-bar { display: none; } }
.sticky-bar a {
  display: block; background: #ffffff; color: #05070d;
  font-weight: 700; font-size: 12px; letter-spacing: 0.09em; text-transform: uppercase;
  text-align: center; text-decoration: none; padding: 13px; transition: all 0.2s;
}
.sticky-bar a:hover { background: #e8f0ff; }

/* Mobile button fixes */
@media (max-width: 480px) {
  .btn-primary { padding: 15px 28px; font-size: 11px; }
  .btn-ghost { padding: 14px 24px; font-size: 11px; }
  .cta-group { flex-direction: column; width: 100%; }
  .cta-group .btn-primary, .cta-group .btn-ghost { width: 100%; text-align: center; }
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* SERVICE PAGE HERO */
.service-hero {
  position: relative; min-height: 70vh;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 140px 24px 64px; overflow: hidden;
}
.service-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.service-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,7,13,0.85) 0%, rgba(5,7,13,0.4) 60%, rgba(5,7,13,0.2) 100%),
              linear-gradient(0deg, rgba(5,7,13,0.7) 0%, transparent 60%);
}
.service-hero-inner { position: relative; z-index: 1; max-width: 580px; }
.service-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.service-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); opacity: 0.5; }
.service-hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.025em; color: var(--white); margin-bottom: 18px;
}
.service-hero h1 em { font-style: normal; color: var(--gold); }
.service-hero-sub {
  font-size: 16px; font-weight: 300; color: rgba(243,240,236,0.78);
  max-width: 440px; line-height: 1.75; margin-bottom: 32px;
}

/* SERVICE PAGE BODY */
.service-overview { background: var(--dark); }
.service-what {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start; text-align: left;
}
.service-what-text p { font-size: 15px; color: var(--white-dim); line-height: 1.85; font-weight: 300; margin-bottom: 16px; }
.service-what-text p:last-child { margin-bottom: 0; }

/* Includes list */
.includes-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.includes-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--white-dim); font-weight: 300;
  padding: 13px 16px; background: var(--white-faint);
  border-left: 2px solid var(--gold-border); line-height: 1.5;
  transition: all 0.2s;
}
.includes-list li:hover { border-left-color: var(--gold); color: var(--white); background: rgba(110,179,255,0.05); }
.includes-list li::before { content: '✓'; color: var(--gold); font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Pricing block */
.pricing-block {
  background: var(--gold-dim); border: 1px solid var(--gold-border);
  padding: 28px 28px; margin-top: 32px;
}
.pricing-block-label { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.pricing-block-price { font-size: 28px; font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 6px; }
.pricing-block-note { font-size: 12px; color: var(--white-dim); font-weight: 300; line-height: 1.5; }

/* Process steps */
.process { background: var(--black); }
.process-steps { display: flex; flex-direction: column; gap: 2px; max-width: 620px; margin: 40px auto 0; text-align: left; }
.process-step { display: grid; grid-template-columns: 52px 1fr; border: 1px solid var(--border); transition: background 0.2s; }
.process-step:hover { background: var(--white-faint); }
.process-step-num {
  font-size: 34px; font-weight: 900; color: rgba(110,179,255,0.15);
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--border); letter-spacing: -0.03em;
}
.process-step-content { padding: 22px 26px; }
.process-step-title { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 5px; }
.process-step-desc { font-size: 13px; color: var(--white-dim); line-height: 1.7; font-weight: 300; }

/* Photo pair */
.photo-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.photo-pair img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; filter: brightness(0.88); transition: filter 0.4s; }
.photo-pair img:hover { filter: brightness(1); }

/* Add-ons */
.addons { background: var(--dark); }
.addon-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2px; margin-top: 36px; text-align: left; }
.addon-item {
  padding: 18px 20px; background: var(--dark-mid); border: 1px solid var(--border);
  transition: all 0.2s;
}
.addon-item:hover { border-color: var(--gold-border); background: var(--mid); }
.addon-name { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.addon-desc { font-size: 12px; color: var(--white-dim); line-height: 1.5; font-weight: 300; }

/* FAQ — service pages */
.faq-list { display: flex; flex-direction: column; gap: 2px; text-align: left; max-width: 620px; margin: 36px auto 0; }
.faq-item { border: 1px solid var(--border); overflow: hidden; }
.faq-q {
  width: 100%; background: var(--dark-mid); border: none;
  color: var(--white); font-family: 'Inter', sans-serif;
  font-size: 13.5px; font-weight: 500; text-align: left; padding: 18px 22px;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; transition: background 0.2s; line-height: 1.5;
}
.faq-q:hover { background: var(--mid); }
.faq-icon { font-size: 17px; color: var(--gold); flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; background: var(--dark); }
.faq-a-inner { padding: 17px 22px; font-size: 13.5px; color: var(--white-dim); line-height: 1.8; border-top: 1px solid var(--border); font-weight: 300; }

/* Related services */
.related { background: var(--dark); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2px; margin-top: 36px; text-align: left; }
.related-card {
  background: var(--dark-mid); border: 1px solid var(--border);
  padding: 28px 26px; text-decoration: none; transition: all 0.3s; display: block;
}
.related-card:hover { border-color: var(--gold-border); background: var(--mid); }
.related-label { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.related-name { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.2; }
.related-desc { font-size: 13px; color: var(--white-dim); line-height: 1.6; font-weight: 300; }
.related-arrow { font-size: 18px; color: var(--gold); margin-top: 16px; display: block; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { grid-template-columns: auto 1fr; padding: 0 20px; }
  .nav-center { display: none; }
  .nav-right { display: none; }
  .nav-hamburger { display: flex; justify-self: end; }
  .service-what { grid-template-columns: 1fr; gap: 32px; }
  .photo-pair { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 64px 20px; }
  .service-hero { padding: 120px 20px 52px; min-height: 60vh; }
  .process-step { grid-template-columns: 44px 1fr; }
  .process-step-num { font-size: 26px; }
  .process-step-content { padding: 18px 14px; }
}
