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

:root {
  --ink: #17202c;
  --navy: #071827;
  --navy-soft: #102336;
  --charcoal: #252a31;
  --gold: #b99a55;
  --gold-light: #d4bd82;
  --paper: #ffffff;
  --mist: #f5f6f4;
  --line: #dfe2df;
  --muted: #68717d;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(11, 24, 39, .12);
  --transition: .24s ease;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

h1, h2, h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { border: 0; background: none; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

.container {
  width: min(1168px, calc(100% - 48px));
  margin: 0 auto;
}

.section { padding: 112px 0; }

.section__header {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section__header h2,
.about__content h2,
.why h2,
.consultation h2,
.contact h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  margin-top: 12px;
}

.section__header p,
.about__content p,
.why p,
.consultation p,
.contact__info > p {
  color: var(--muted);
  font-size: 1.03rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: var(--gold);
  color: #071827;
  box-shadow: 0 12px 30px rgba(185, 154, 85, .2);
}

.btn--gold:hover {
  background: var(--gold-light);
  box-shadow: 0 16px 34px rgba(185, 154, 85, .28);
}

.btn--outline {
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .04);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(255, 255, 255, .08);
}

.btn--dark {
  background: var(--navy);
  color: var(--paper);
}

.btn--lg {
  min-height: 54px;
  padding: 15px 28px;
}

.btn--full {
  width: 100%;
  min-height: 54px;
}

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.nav.scrolled,
.nav.menu-active {
  background: rgba(7, 24, 39, .96);
  border-bottom-color: rgba(255, 255, 255, .09);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
  backdrop-filter: blur(16px);
}

.nav__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  font-size: 1.02rem;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(185, 154, 85, .78);
  color: var(--gold-light);
  border-radius: 50%;
  font-family: "Inter", Arial, sans-serif;
  font-size: .72rem;
  letter-spacing: .08em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav__links a {
  color: rgba(255, 255, 255, .76);
  font-size: .9rem;
  font-weight: 600;
  transition: color var(--transition);
}

.nav__links a:hover,
.nav__links a.active { color: var(--gold-light); }

.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav__burger span {
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: var(--paper);
  transition: transform var(--transition), opacity var(--transition);
}

.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 24, 39, .94), rgba(7, 24, 39, .7) 48%, rgba(7, 24, 39, .35)),
    url("https://images.unsplash.com/photo-1589578527966-fdac0f44566c?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(0deg, rgba(7, 24, 39, .9), transparent);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 72px;
  align-items: end;
  padding-top: 150px;
  padding-bottom: 82px;
}

.hero__content {
  max-width: 780px;
}

.hero h1 {
  margin-top: 20px;
  color: var(--paper);
  font-size: clamp(3rem, 7vw, 5.9rem);
  max-width: 880px;
}

.hero p {
  max-width: 660px;
  margin-top: 26px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero__panel {
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  padding: 28px;
  color: rgba(255, 255, 255, .72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
}

.hero__panel div {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.hero__panel div:first-child { padding-top: 0; }
.hero__panel div:last-child { padding-bottom: 0; border-bottom: 0; }

.hero__metric {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-light);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1;
}

.trust-strip {
  position: relative;
  z-index: 2;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip article {
  min-height: 172px;
  padding: 30px 28px;
  border-left: 1px solid var(--line);
}

.trust-strip article:last-child { border-right: 1px solid var(--line); }

.trust-strip span {
  color: var(--gold);
  font-weight: 700;
  font-size: .78rem;
}

.trust-strip h2 {
  margin-top: 14px;
  font-size: 1.05rem;
}

.trust-strip p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .91rem;
}

.about {
  background: linear-gradient(180deg, #fff 0%, var(--mist) 100%);
}

.about__grid {
  display: grid;
  grid-template-columns: .92fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image {
  min-height: 560px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(7, 24, 39, .1), rgba(7, 24, 39, .34)),
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1100&q=82");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.about__content p {
  margin-top: 22px;
}

.about__signoff {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.about__signoff span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  position: relative;
  flex: 0 0 auto;
}

.about__signoff span::after {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: var(--gold);
}

.about__signoff p {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
}

.services { background: var(--paper); }

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

.service-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fbfbfa);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 154, 85, .65);
  box-shadow: var(--shadow);
  background: #fff;
}

.service-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  border: 1px solid rgba(185, 154, 85, .42);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
}

.service-card h3 {
  font-size: 1.34rem;
}

.service-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: .96rem;
  flex: 1;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 28px;
  color: var(--navy);
  font-weight: 800;
  font-size: .9rem;
}

.service-card a::after {
  content: "";
  width: 28px;
  height: 1px;
  margin-left: 10px;
  background: var(--gold);
  transition: width var(--transition);
}

.service-card a:hover::after { width: 42px; }

.why {
  background: var(--navy);
  color: var(--paper);
}

.why h2,
.consultation h2 { color: var(--paper); }

.why__grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 84px;
  align-items: start;
}

.why p { margin: 24px 0 34px; color: rgba(255, 255, 255, .72); }

.why__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.why__list article {
  min-height: 210px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .045);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.why__list article:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 154, 85, .45);
  background: rgba(255, 255, 255, .075);
}

.why__list h3 {
  color: var(--paper);
  font-size: 1.12rem;
}

.why__list p {
  margin: 14px 0 0;
  font-size: .94rem;
}

.consultation {
  padding: 74px 0;
  background:
    linear-gradient(90deg, rgba(16, 35, 54, .97), rgba(16, 35, 54, .82)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1500&q=82");
  background-size: cover;
  background-position: center;
}

.consultation__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.consultation p {
  max-width: 650px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .74);
}

.testimonials {
  background: var(--mist);
}

.testimonials__viewport {
  overflow: visible;
}

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

.testimonial-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(17, 31, 45, .06);
}

.testimonial-card__stars {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: .92rem;
  letter-spacing: .16em;
  line-height: 1;
}

.testimonial-card p {
  color: var(--charcoal);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.04rem;
  line-height: 1.7;
  flex: 1;
}

.testimonial-card footer {
  margin-top: 26px;
  color: var(--navy);
  font-weight: 800;
}

.testimonial-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 600;
}

.testimonial-controls {
  display: none;
}

.contact {
  background: var(--paper);
}

.contact__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 78px;
  align-items: start;
}

.contact__info > p { margin-top: 18px; }

.contact__details {
  display: grid;
  gap: 20px;
  margin-top: 38px;
  list-style: none;
}

.contact__details li {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.contact__details strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-size: .92rem;
}

.contact__details span,
.contact__details a {
  color: var(--muted);
  font-size: .95rem;
}

.contact__details a:hover { color: var(--gold); }

.contact__form {
  padding: 42px;
  border-radius: var(--radius);
  background: var(--mist);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact__form h3 {
  font-size: 1.45rem;
  margin-bottom: 26px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.form-group label {
  color: var(--navy);
  font-size: .84rem;
  font-weight: 800;
}

.form-group label span { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #cfd4d2;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  min-height: 48px;
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-group textarea {
  min-height: 132px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(185, 154, 85, .16);
  background: #fff;
}

.form__note {
  margin-top: 14px;
  color: var(--muted);
  font-size: .8rem;
  text-align: center;
}

.footer {
  background: #061320;
  color: rgba(255, 255, 255, .68);
  padding-top: 72px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 58px;
}

.footer__brand p {
  max-width: 360px;
  margin-top: 18px;
  font-size: .88rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links h2 {
  margin-bottom: 6px;
  color: var(--gold-light);
  font-family: "Inter", Arial, sans-serif;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer__links a,
.footer__links span {
  color: rgba(255, 255, 255, .62);
  font-size: .88rem;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--paper); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p {
  color: rgba(255, 255, 255, .46);
  font-size: .78rem;
}

[data-anim] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-anim].visible {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero .eyebrow,
.hero h1,
.hero p,
.hero__actions,
.hero__panel {
  animation: fadeUp .72s ease both;
}

.hero h1 { animation-delay: .08s; }
.hero p { animation-delay: .16s; }
.hero__actions { animation-delay: .24s; }
.hero__panel { animation-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 1040px) {
  .nav__links { gap: 18px; }
  .hero__inner { grid-template-columns: 1fr; gap: 42px; }
  .hero__panel { max-width: 660px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
  .hero__panel div { padding: 0 18px; border-bottom: 0; border-right: 1px solid rgba(255, 255, 255, .12); }
  .hero__panel div:first-child { padding-left: 0; }
  .hero__panel div:last-child { padding-right: 0; border-right: 0; }
  .trust-strip__grid,
  .services__grid,
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip article:nth-child(odd) { border-left: 1px solid var(--line); }
  .about__grid,
  .why__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 52px; }
  .about__image { min-height: 420px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .nav,
  .nav.scrolled {
    background: rgba(7, 24, 39, .97);
    border-bottom-color: rgba(255, 255, 255, .09);
  }

  .nav__inner { min-height: 74px; }
  .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }

  .nav__links {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100svh - 74px);
    padding: 10px 24px 26px;
    background: #071827;
    border-top: 1px solid rgba(255, 255, 255, .09);
    box-shadow: 0 24px 44px rgba(0, 0, 0, .28);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .28s ease, opacity .28s ease;
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: 1rem;
  }

  .section { padding: 82px 0; }
  .hero { min-height: auto; }
  .hero__media {
    background:
      linear-gradient(180deg, rgba(7, 24, 39, .93), rgba(7, 24, 39, .78)),
      url("https://images.unsplash.com/photo-1589578527966-fdac0f44566c?auto=format&fit=crop&w=900&q=80");
    background-size: cover;
    background-position: center;
  }
  .hero__inner { padding-top: 126px; padding-bottom: 60px; }
  .hero h1 { font-size: clamp(2.45rem, 12vw, 4rem); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__panel { grid-template-columns: 1fr; padding: 24px; }
  .hero__panel div,
  .hero__panel div:first-child,
  .hero__panel div:last-child {
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }
  .hero__panel div:first-child { padding-top: 0; }
  .hero__panel div:last-child { padding-bottom: 0; border-bottom: 0; }
  .trust-strip__grid,
  .services__grid,
  .why__list,
  .testimonials__grid { grid-template-columns: 1fr; }
  .trust-strip article,
  .trust-strip article:last-child { border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
  .consultation__inner { flex-direction: column; align-items: flex-start; }
  .consultation__inner .btn { width: 100%; white-space: normal; text-align: center; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .testimonials__viewport {
    overflow: hidden;
    border-radius: var(--radius);
    touch-action: pan-y;
  }

  .testimonials__grid {
    display: flex;
    gap: 0;
    will-change: transform;
    transition: transform .45s ease;
  }

  .testimonial-card {
    flex: 0 0 100%;
    min-height: 286px;
  }

  .testimonial-card:hover {
    transform: none;
  }

  .testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 22px;
  }

  .testimonial-control {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(7, 24, 39, .16);
    background: var(--paper);
    color: var(--navy);
    font-size: 1.55rem;
    line-height: 1;
    transition: transform var(--transition), border-color var(--transition), color var(--transition), background var(--transition);
  }

  .testimonial-control:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    color: var(--gold);
  }

  .testimonial-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
  }

  .testimonial-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(7, 24, 39, .24);
    transition: width var(--transition), background var(--transition);
  }

  .testimonial-dot.is-active {
    width: 28px;
    border-radius: 99px;
    background: var(--gold);
  }
}

@media (max-width: 560px) {
  .container { width: min(100% - 32px, 1168px); }
  .nav__logo { font-size: .96rem; }
  .nav__logo-mark { width: 34px; height: 34px; }
  .section { padding: 68px 0; }
  .section__header { margin-bottom: 38px; text-align: left; }
  .section__header h2,
  .about__content h2,
  .why h2,
  .consultation h2,
  .contact h2 { font-size: clamp(1.9rem, 10vw, 2.55rem); }
  .eyebrow { font-size: .68rem; }
  .eyebrow::before { width: 24px; }
  .hero h1 { margin-top: 16px; }
  .hero p { margin-top: 20px; }
  .hero__panel { margin-top: 8px; }
  .about__image { min-height: 320px; }
  .service-card,
  .why__list article,
  .testimonial-card,
  .contact__form { padding: 26px; }
  .service-card { min-height: 280px; }
  .contact__form { box-shadow: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}
