:root {
  --navy-950: #040507;
  --navy-900: #0a0b0d;
  --navy-800: #14171c;
  --navy-700: #23272f;
  --blue-500: #b0895c;
  --blue-400: #c6a37b;
  --blue-300: #e1ceb4;
  --blue-600: #97724a;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --green: #22c55e;
  --yellow: #f59e0b;
  --radius: 14px;
  --radius-sm: 9px;
  --focus: #8f6c45;
  --max-w: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--slate-800);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  margin: 0 0 0.7rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #0f172a;
}

h1 {
  font-size: clamp(2rem, 3.4vw, 3.55rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.45rem, 2.1vw, 2.15rem);
  font-weight: 760;
}

h3 {
  font-size: 1.12rem;
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: #fff;
  border: 2px solid var(--focus);
  padding: 0.45rem 0.7rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.28s ease, padding 0.28s ease, border-bottom 0.28s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(170%);
  border-bottom: 1px solid var(--slate-200);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  text-decoration: none;
}

.logo-text {
  font-size: 1.52rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
}

.logo-text .brand-accent {
  color: var(--blue-400);
}

.site-header.scrolled .logo-text {
  color: var(--navy-900);
}

.site-header.scrolled .logo-text .brand-accent {
  color: var(--blue-500);
}

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

.nav-center {
  display: flex;
  gap: 32px;
}

.nav-center a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.nav-center a:hover {
  color: #fff;
}

.site-header.scrolled .nav-center a {
  color: var(--slate-500);
}

.site-header.scrolled .nav-center a:hover {
  color: var(--navy-900);
}

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

.nav-link {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

.nav-link:hover {
  color: #fff;
}

.site-header.scrolled .nav-link {
  color: var(--slate-500);
}

.site-header.scrolled .nav-link:hover {
  color: var(--navy-900);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: all 0.22s ease;
  cursor: pointer;
}

.btn-nav {
  padding: 10px 20px;
  background: var(--blue-500);
  color: #fff;
}

.btn-nav:hover {
  background: var(--blue-600);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.site-header.scrolled .menu-toggle span {
  background: var(--navy-900);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 72px;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
}

.hero-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.hero-content {
  animation: enter-up 0.75s ease both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 0.8rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-300);
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.hero h1 {
  color: #fff;
  margin-bottom: 22px;
}

.hero-highlight {
  color: var(--blue-300);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--slate-400);
  max-width: 56ch;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 34px;
}

.btn-hero-primary {
  padding: 12px 24px;
  background: var(--blue-500);
  color: #fff;
}

.btn-hero-primary:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
}

.btn-hero-ghost {
  padding: 12px 24px;
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.proof-meta {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-300);
}

.proof-divider {
  color: var(--slate-500);
}

.proof-text {
  margin-left: 6px;
  font-size: 0.88rem;
  color: var(--slate-300);
}

.proof-text strong {
  color: #fff;
}

.hero-facts {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  max-width: 580px;
}

.hero-facts li {
  position: relative;
  padding-left: 18px;
  color: var(--slate-300);
  font-size: 0.94rem;
}

.hero-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-400);
  transform: translateY(-50%);
}

.hero-visual {
  animation: enter-up 0.75s ease 0.08s both;
}

.hero-photo-frame {
  position: relative;
  border: 1px solid rgba(203, 213, 225, 0.22);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.42);
  background: rgba(15, 23, 42, 0.28);
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 16, 0.12), rgba(7, 10, 16, 0.28)),
    linear-gradient(135deg, rgba(176, 137, 92, 0.08), transparent 38%);
  pointer-events: none;
}

.hero-photo {
  display: block;
  width: 100%;
  height: clamp(420px, 50vw, 620px);
  object-fit: cover;
  object-position: center;
}

.hero-photo-frame:hover {
  --card-lift: -6px;
  box-shadow: 0 38px 82px rgba(2, 6, 23, 0.48);
}

.section {
  padding: 90px 0;
}

.section-white {
  background: #fff;
}

.section-soft {
  background: var(--slate-50);
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-head p {
  color: var(--slate-500);
}

.drag-card {
  --reveal-y: 0px;
  --card-lift: 0px;
  --card-rotate-x: 0deg;
  --card-rotate-y: 0deg;
  transform: translate3d(0, calc(var(--reveal-y) + var(--card-lift)), 0) perspective(1200px)
    rotateX(var(--card-rotate-x)) rotateY(var(--card-rotate-y));
  transform-style: preserve-3d;
  will-change: transform;
  backface-visibility: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.drag-card.drag-active {
  transition: transform 0.14s linear, box-shadow 0.22s ease, border-color 0.22s ease;
}

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

:is(.service-card, .process-grid li, details, .contact-cta, .trust-card, .answer-card) {
  border: 1px solid #d9dee5;
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

:is(.service-card, .process-grid li, details, .contact-cta, .trust-card, .answer-card)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(176, 137, 92, 0.9), rgba(176, 137, 92, 0.35));
}

.service-card,
.process-grid li,
.trust-card,
.answer-card {
  border-radius: 14px;
  padding: 20px 18px 18px;
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 12px;
  background: #f3f4f6;
  border: 1px solid #d8dbe1;
}

.service-icon svg {
  width: 18px;
  height: 18px;
  fill: #2f3338;
}

.service-card h3 {
  font-size: 1.04rem;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.service-card:hover {
  --card-lift: -3px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.09);
  border-color: #c7cdd6;
}

.service-card p {
  color: #525a66;
  font-size: 0.96rem;
}

.trust-grid,
.answer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-card h3,
.answer-card h3 {
  font-size: 1.04rem;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.trust-card p,
.answer-card p {
  color: #525a66;
  font-size: 0.96rem;
  margin-bottom: 0.9rem;
}

.trust-card:hover,
.answer-card:hover {
  --card-lift: -3px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.09);
  border-color: #c7cdd6;
}

.two-col {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
}

.checklist {
  margin: 0.7rem 0 0;
  padding-left: 1.05rem;
}

.checklist li {
  margin-bottom: 0.58rem;
}

.process-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-grid li h3 {
  font-size: 1.04rem;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.process-grid li p {
  color: #525a66;
  font-size: 0.96rem;
}

.process-grid li:hover {
  --card-lift: -3px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.09);
  border-color: #c7cdd6;
}

.faq-wrap {
  max-width: 880px;
}

details {
  border-radius: 14px;
  padding: 18px 16px 16px;
  margin-bottom: 12px;
}

details:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  border-color: #c7cdd6;
}

summary {
  cursor: pointer;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

details p {
  color: #525a66;
  font-size: 0.96rem;
  margin-bottom: 0;
}

.contact-section {
  background: var(--slate-50);
  color: var(--slate-800);
}

.contact-cta {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 18px;
  padding: 46px 28px 40px;
  text-align: center;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.contact-cta:hover {
  --card-lift: -4px;
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.11);
  border-color: #c7cdd6;
}

.contact-cta h2 {
  color: #0f172a;
  font-size: clamp(1.8rem, 3.1vw, 2.75rem);
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}

.contact-cta > p {
  max-width: 760px;
  margin: 0 auto;
  color: #526072;
  font-size: clamp(1rem, 1.4vw, 1.08rem);
}

.contact-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 32px;
}

.contact-cta-btn {
  background: var(--blue-500);
  color: #fff;
  border: 1px solid var(--blue-500);
  padding: 12px 24px;
  font-size: 0.98rem;
}

.contact-cta-btn:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(151, 114, 74, 0.22);
}

.contact-cta-secondary {
  padding: 12px 24px;
  border: 1px solid #d7dee7;
  background: #fff;
  color: #1e293b;
  font-size: 0.98rem;
}

.contact-cta-secondary:hover {
  transform: translateY(-2px);
  border-color: #c2cad6;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.contact-cta-meta {
  margin-top: 0;
  color: #475569;
  font-size: 0.98rem;
}

.contact-cta-assurance {
  margin-top: 10px;
  color: #526072;
  font-size: 0.92rem;
}

.contact-cta-assurance a {
  color: #1e293b;
  text-underline-offset: 3px;
}

.contact-cta-assurance a:hover {
  color: #0f172a;
}

.contact-cta-links {
  margin-top: 8px;
  color: #64748b;
  font-size: 0.98rem;
}

.contact-cta-links a {
  color: #1e293b;
  text-underline-offset: 3px;
}

.contact-cta-links a:hover {
  color: #0f172a;
}

.site-footer {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border-top: 1px solid #dde3ea;
  padding: 26px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 18px;
}

.footer-brand p {
  margin: 0;
}

.footer-company {
  font-size: 1rem;
  font-weight: 760;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.footer-company .brand-accent {
  color: var(--blue-500);
}

.footer-tagline {
  margin-top: 2px;
  font-size: 0.84rem;
  color: #64748b;
}

.footer-meta {
  margin: 0;
  text-align: center;
  color: #64748b;
  font-size: 0.85rem;
}

.footer-nav {
  display: flex;
  justify-self: end;
  gap: 10px;
}

.footer-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.83rem;
  color: #334155;
  border: 1px solid #d8dee7;
  border-radius: 999px;
  background: #fff;
  padding: 8px 12px;
  transition: all 0.2s ease;
}

.footer-nav a:hover {
  border-color: #bfc7d2;
  color: #0f172a;
  transform: translateY(-1px);
  box-shadow: 0 7px 16px rgba(15, 23, 42, 0.08);
}

.reveal {
  opacity: 0;
  --reveal-y: 22px;
  transform: translate3d(0, calc(var(--reveal-y) + var(--card-lift, 0px)), 0) perspective(1200px)
    rotateX(var(--card-rotate-x, 0deg)) rotateY(var(--card-rotate-y, 0deg));
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  --reveal-y: 0px;
}

@keyframes enter-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

input:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible,
summary:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

summary:focus:not(:focus-visible) {
  outline: none;
}

@media (max-width: 1080px) {
  .hero h1 {
    font-size: 2.85rem;
  }

  .hero-container {
    gap: 44px;
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 68px;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    background: rgba(10, 22, 40, 0.96);
    border: 1px solid rgba(203, 213, 225, 0.2);
    border-radius: 12px;
    padding: 14px;
  }

  .site-header.scrolled .nav {
    background: rgba(255, 255, 255, 0.97);
    border-color: var(--slate-200);
  }

  .nav.show {
    display: flex;
  }

  .nav-center {
    flex-direction: column;
    gap: 10px;
  }

  .nav-right {
    justify-content: flex-start;
  }

  .nav-center a,
  .nav-link {
    color: #e2e8f0;
  }

  .site-header.scrolled .nav-center a,
  .site-header.scrolled .nav-link {
    color: var(--slate-700);
  }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .proof-divider {
    display: none;
  }

  .proof-text {
    width: 100%;
    margin-left: 0;
  }

  .btn-hero-primary,
  .btn-hero-ghost {
    justify-content: center;
  }

  .hero-photo {
    height: 420px;
  }

  .service-grid,
  .trust-grid,
  .answer-grid,
  .two-col,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .footer-nav {
    justify-self: center;
  }

  .contact-cta {
    border-radius: 18px;
    padding: 42px 18px;
  }

  .contact-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .contact-cta-btn,
  .contact-cta-secondary {
    width: 100%;
    max-width: 360px;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 16px;
  }

  .site-header {
    padding: 12px 0;
  }

  .logo-text {
    font-size: 1.32rem;
  }

  .hero h1 {
    font-size: 1.92rem;
  }

  .hero-photo {
    height: 340px;
  }
}
