:root {
  --blue: #1b3057;
  --blue-dark: #0f1b33;
  --gold: #ba9227;
  --gold-light: #d4a836;
  --container-gutter: clamp(64px, 7vw, 144px);
  --text: #182033;
  --muted: #687184;
  --line: #eceff4;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  max-width: 100%;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1536px, calc(100% - var(--container-gutter)));
  margin: 0 auto;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 24px 0;
  border-bottom: 1px solid transparent;
  transition: 0.45s ease;
}

.site-nav.scrolled {
  padding: 12px 0;
  background: rgba(27, 48, 87, 0.92);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(3, 13, 31, 0.28);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 138px;
  height: auto;
  transition: transform 0.3s ease;
}

.brand:hover img {
  transform: scale(1.04);
}

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

.nav-links a {
  position: relative;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 11px 23px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  border-radius: 2px;
}

.nav-cta:hover {
  color: #fff !important;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(186, 146, 39, 0.34);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 128px 0 70px;
  display: flex;
  align-items: center;
  background: var(--blue);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(186, 146, 39, 0.12), transparent 45%);
}

.hero-shape-a {
  position: absolute;
  top: 0;
  right: -15%;
  width: 70%;
  height: 100%;
  transform: skewX(13deg);
  background: linear-gradient(270deg, rgba(15, 27, 51, 0.72), transparent);
}

.hero-shape-b,
.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
}

.hero-shape-b {
  right: 9%;
  top: 13%;
  width: 330px;
  height: 330px;
  background: rgba(15, 27, 51, 0.6);
}

.hero-glow {
  left: 7%;
  bottom: 6%;
  width: 260px;
  height: 260px;
  background: rgba(186, 146, 39, 0.08);
  animation: pulseSlow 4s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-bottom: 30px;
  border: 1px solid rgba(186, 146, 39, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 50px rgba(15, 27, 51, 0.25);
}

.small-icon {
  font-size: 16px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.08;
  font-weight: 700;
}

.hero h1 span,
.section-title span,
.process h2 span,
.contact h2 span {
  display: inline-block;
  margin-inline: -0.08em;
  padding-inline: 0.08em;
  background: linear-gradient(135deg, var(--gold) 0%, #f4e2aa 50%, var(--gold) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  animation: shine 4s linear infinite;
}

.hero-text {
  max-width: 570px;
  margin-bottom: 20px;
  padding-left: 24px;
  border-left: 2px solid rgba(186, 146, 39, 0.36);
  color: #d6dce8;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.7;
}

.legal-note {
  max-width: 600px;
  margin-bottom: 34px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.55;
  backdrop-filter: blur(10px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 55px;
  padding: 17px 30px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(15, 27, 51, 0.18);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

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

.btn.primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 12px 36px rgba(186, 146, 39, 0.3);
}

.btn.primary:hover {
  background: var(--gold-light);
  box-shadow: 0 18px 46px rgba(186, 146, 39, 0.42);
}

.btn.outline {
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn.outline:hover {
  background: rgba(186, 146, 39, 0.1);
}

.btn.wide {
  width: 100%;
  margin: 18px 0 3px;
  font-size: 16px;
}

.hero-photo-wrap {
  position: relative;
  max-width: 590px;
  justify-self: end;
}

.photo-frame {
  position: absolute;
  inset: 34px -28px -28px 34px;
  border: 2px solid rgba(186, 146, 39, 0.35);
  transition: 0.6s ease;
}

.hero-photo-wrap:hover .photo-frame {
  transform: translate(8px, -8px);
}

.hero-photo {
  position: relative;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  animation: float 6s ease-in-out infinite;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27, 48, 87, 0.45), transparent 55%);
}

.hero-photo img {
  width: 100%;
  max-height: 650px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.hero-photo-wrap:hover .hero-photo img {
  transform: scale(1.05);
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 17px;
  border-radius: 2px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  animation: float 6s ease-in-out infinite;
}

.floating-card strong {
  display: block;
  line-height: 1.25;
}

.floating-card small {
  display: block;
  color: #6a7282;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seal {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: var(--gold);
  font-size: 18px;
}

.online {
  right: -18px;
  bottom: -28px;
  display: block;
  max-width: 220px;
  padding: 24px;
  background: rgba(15, 27, 51, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  animation-delay: 1.5s;
}

.online small {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
  color: #9aa4b8;
}

.online small span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #4ade80;
  animation: pulseSlow 1.6s ease-in-out infinite;
}

.online strong {
  font-family: var(--serif);
  font-size: 19px;
}

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.32);
  transition: color 0.25s ease;
}

.scroll-down:hover {
  color: var(--gold);
}

.scroll-down span {
  opacity: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: opacity 0.25s ease;
}

.scroll-down:hover span {
  opacity: 1;
}

.scroll-down b {
  font-size: 42px;
  line-height: 1;
  animation: bounce 1.8s infinite;
}

.section {
  position: relative;
  padding: 105px 0;
  scroll-margin-top: 96px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 64px;
  align-items: stretch;
}

.about {
  overflow: hidden;
  background: #fff;
}

.about::after {
  content: "";
  position: absolute;
  top: 0;
  right: -15%;
  width: 42%;
  height: 100%;
  background: #f7f8fb;
  transform: skewX(12deg);
}

.pattern {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: radial-gradient(var(--blue) 1px, transparent 1px);
  background-size: 30px 30px;
}

.about .container {
  position: relative;
  z-index: 2;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 1.16;
  color: var(--blue);
}

.about-copy p,
.contact-copy p {
  color: #616b7a;
  font-size: 17px;
  line-height: 1.8;
}

.about-copy strong {
  color: var(--blue);
}

blockquote {
  margin: 26px 0;
  padding-left: 24px;
  border-left: 4px solid var(--gold);
  color: #697181;
  font-size: 18px;
  font-style: italic;
  line-height: 1.75;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid #edf0f4;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 8px 22px rgba(20, 34, 62, 0.05);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.pill:hover {
  transform: translateY(-3px);
  border-color: rgba(186, 146, 39, 0.3);
  box-shadow: 0 18px 35px rgba(20, 34, 62, 0.11);
}

.pill i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(27, 48, 87, 0.06);
  color: var(--blue);
  font-style: normal;
  font-size: 17px;
  transition: 0.3s ease;
}

.pill:hover i {
  background: var(--gold);
  color: #fff;
}

.quote-photo {
  position: relative;
  height: 100%;
  min-height: 720px;
  align-self: stretch;
}

.quote-photo > img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  opacity: 0.88;
  filter: contrast(1.06);
  box-shadow: 0 28px 80px rgba(15, 27, 51, 0.22);
  transition: 1.2s ease;
}

.quote-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 27, 51, 0.92), rgba(27, 48, 87, 0.32), transparent);
}

.quote-photo:hover > img {
  transform: scale(1.035);
  opacity: 0.7;
}

.quote-overlay {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 42px;
  z-index: 3;
  color: #fff;
}

.quote-overlay div {
  width: 64px;
  height: 4px;
  margin-bottom: 24px;
  background: var(--gold);
}

.quote-overlay p {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.18;
}

.quote-overlay small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}


.services {
  overflow: hidden;
  background: #f7f8fb;
}

.services .container {
  width: min(1536px, calc(100% - var(--container-gutter)));
}

.blue-slice {
  position: absolute;
  top: -130px;
  left: 0;
  width: 100%;
  height: 250px;
  background: var(--blue);
  transform: skewY(-3deg);
  transform-origin: left top;
}

.section-head {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
}

.section-head > span {
  display: inline-block;
  margin-bottom: 17px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(186, 146, 39, 0.1);
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-head h2 {
  margin-bottom: 20px;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 1.14;
}

.section-head p {
  max-width: 680px;
  margin: 0 auto;
  color: #616b7a;
  font-size: 17px;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 410px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid #eceff4;
  background: #fff;
  box-shadow: 0 14px 34px rgba(22, 38, 68, 0.07);
  transition: 0.42s ease;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  opacity: 0;
  transition: opacity 0.42s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  top: -48px;
  right: -48px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(186, 146, 39, 0.1);
  transition: background 0.42s ease;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 54px rgba(27, 48, 87, 0.17);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  background: rgba(255, 255, 255, 0.05);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid transparent;
  background: #f7f8fb;
  color: var(--blue);
  font-size: 28px;
  transition: 0.42s ease;
}

.service-card:hover .service-icon {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
}

.service-card h3 {
  margin-bottom: 20px;
  color: var(--blue);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.18;
  transition: color 0.42s ease;
}

.service-card:hover h3 {
  color: #fff;
}

.service-card ul {
  min-height: 120px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.service-card li {
  display: flex;
  gap: 10px;
  margin-bottom: 11px;
  color: #697181;
  font-size: 13px;
  line-height: 1.35;
  transition: color 0.42s ease;
}

.service-card li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 800;
}

.service-card:hover li {
  color: #c9d0dc;
}

.service-card a {
  display: inline-block;
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #eef1f5;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.42s ease;
}

.service-card:hover a {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}

.process {
  overflow: hidden;
  background: #fff;
}

.grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(to right, #f0f0f0 1px, transparent 1px),
    linear-gradient(to bottom, #f0f0f0 1px, transparent 1px);
  background-size: 4rem 4rem;
}

.process .container {
  position: relative;
  z-index: 2;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
  max-width: 1160px;
  margin: 0 auto;
}

.progress-line {
  position: absolute;
  top: 58px;
  left: 0;
  right: 0;
  width: 100%;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue) 0%, #686342 36%, var(--gold) 50%, #686342 64%, var(--blue) 100%);
}

.progress-line::after {
  display: none;
}

.step {
  position: relative;
  text-align: center;
  padding-top: 0;
}

.step div {
  position: relative;
  z-index: 2;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  margin: 0 auto 36px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 40px;
  box-shadow:
    0 18px 32px rgba(22, 38, 68, 0.12),
    inset 0 0 0 4px rgba(245, 247, 250, 0.95);
  transition: 0.42s ease;
}

.step:hover div {
  transform: translateY(-6px) scale(1.04);
  color: var(--gold);
}

.step b {
  position: absolute;
  top: -7px;
  right: -2px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 16px;
}

.step i {
  font-style: normal;
  font-size: 42px;
}

.step h3 {
  margin-bottom: 16px;
  color: var(--blue);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.18;
}

.step p {
  max-width: 220px;
  margin: 0 auto;
  padding: 0;
  color: #6f7888;
  font-size: 15px;
  line-height: 1.55;
}

.process-cta {
  width: min(690px, 100%);
  margin: 70px auto 0;
  padding: 30px 48px;
  border: 1px solid #eef1f5;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 45px rgba(22, 38, 68, 0.09);
  text-align: center;
}

.process-cta p {
  margin-bottom: 13px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 600;
}

.process-cta a {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact {
  background: #f7f8fb;
  border-top: 1px solid #e7ebf0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.96fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-box {
  width: 100%;
  min-height: 192px;
  margin-top: 6px;
  padding: 24px 36px;
  border-left: 4px solid var(--blue);
  background: #fff;
  box-shadow: 0 18px 36px rgba(22, 38, 68, 0.08);
}

.contact-box div {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-box div + div {
  margin-top: 28px;
}

.contact-box p {
  margin: 0;
}

.contact-box i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(27, 48, 87, 0.06);
  color: var(--blue);
  font-style: normal;
  font-size: 18px;
}

.contact-box strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 17px;
}

.contact-box span {
  display: block;
  color: #626d7c;
  font-size: 13px;
}

.faq {
  position: relative;
  min-height: 575px;
  padding: 48px;
  overflow: hidden;
  border: 1px solid #eef1f5;
  background: #fff;
  box-shadow: 0 28px 70px rgba(22, 38, 68, 0.12);
}

.faq::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 84px;
  height: 84px;
  border-radius: 0 0 0 999px;
  background: rgba(186, 146, 39, 0.1);
}

.faq h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  color: var(--blue);
  font-family: var(--serif);
  font-size: 29px;
}

.faq h3 span {
  width: 34px;
  height: 4px;
  background: var(--gold);
}

.faq-list {
  position: relative;
  z-index: 2;
  border-top: 1px solid #eef1f5;
}

.faq-item {
  display: block;
  width: 100%;
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid #eef1f5;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-item strong {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  color: var(--blue);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.45;
  transition: color 0.25s ease;
}

.faq-item strong::after {
  content: "+";
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f2f4f7;
  color: #9aa2ad;
}

.faq-item.active strong {
  color: var(--gold);
}

.faq-item.active strong::after {
  content: "-";
  background: var(--gold);
  color: #fff;
}

.faq-item p {
  max-height: 0;
  margin: 0;
  padding-left: 18px;
  overflow: hidden;
  border-left: 2px solid rgba(186, 146, 39, 0.32);
  color: #616b7a;
  font-size: 15px;
  line-height: 1.75;
  opacity: 0;
  transition: 0.35s ease;
}

.faq-item.active p {
  max-height: 220px;
  margin-top: 16px;
  opacity: 1;
}

.faq-footer {
  position: relative;
  z-index: 2;
  padding-top: 30px;
  text-align: center;
}

.faq-footer p {
  margin-bottom: 7px;
  color: #7b8492;
  font-size: 13px;
}

.faq-footer a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  transition: color 0.25s ease;
}

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

.footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(186, 146, 39, 0.25);
  background: var(--blue-dark);
  color: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 32px;
}

.footer h2 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 28px;
}

.footer p {
  max-width: 390px;
  color: #9aa4b8;
  font-size: 13px;
  line-height: 1.7;
}

.social {
  display: flex;
  gap: 16px;
}

.social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  transition: background 0.25s ease;
}

.social svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.social a:hover {
  background: var(--gold);
}

.footer-disclaimer {
  margin-bottom: 28px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-disclaimer p {
  max-width: 980px;
  margin: 0 auto;
  color: #a9b2c4;
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

.copyright {
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  text-align: center;
}

.copyright p {
  max-width: none;
  margin-bottom: 6px;
  font-size: 11px;
}

.copyright a {
  color: var(--gold);
  font-weight: 700;
}

.privacy-page {
  background: #f7f8fb;
}

.privacy-main {
  padding-top: 74px;
}

.privacy-hero {
  padding: 92px 0 56px;
  background: var(--blue);
  color: #fff;
}

.privacy-hero span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.privacy-hero h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.08;
}

.privacy-hero p {
  max-width: 720px;
  color: #d6dce8;
  font-size: 18px;
  line-height: 1.7;
}

.privacy-content {
  padding: 64px 0 90px;
}

.privacy-card {
  max-width: 980px;
  padding: 48px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(22, 38, 68, 0.1);
}

.privacy-warning {
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: rgba(186, 146, 39, 0.08);
  color: var(--blue);
  font-weight: 700;
}

.privacy-card h2 {
  margin: 34px 0 10px;
  color: var(--blue);
  font-family: var(--serif);
  font-size: 28px;
}

.privacy-card p {
  color: #5f6978;
  font-size: 16px;
  line-height: 1.8;
}

.privacy-card a {
  color: var(--gold);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.up {
  transform: translateY(40px);
}

.reveal.left {
  transform: translateX(-58px);
}

.reveal.right {
  transform: translateX(58px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

.delay-3 {
  transition-delay: 0.36s;
}

.delay-4 {
  transition-delay: 0.48s;
}

.delay-5 {
  transition-delay: 0.6s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulseSlow {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes shine {
  to {
    background-position: 220% center;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@keyframes grow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 1280px) {
  :root {
    --container-gutter: clamp(72px, 8vw, 112px);
  }

  .hero-grid {
    gap: 42px;
    grid-template-columns: 1fr 0.92fr;
  }

  .split {
    gap: 48px;
    grid-template-columns: 1fr 0.92fr;
  }

  .contact-grid {
    gap: 56px;
  }

  .service-grid {
    gap: 20px;
  }

  .service-card {
    padding: 24px;
  }

  .quote-photo,
  .quote-photo > img {
    min-height: 640px;
  }

  .quote-overlay {
    left: 36px;
    right: 36px;
    bottom: 36px;
  }
}

@media (max-width: 1050px) {
  :root {
    --container-gutter: clamp(56px, 8vw, 88px);
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 44px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-photo-wrap {
    justify-self: center;
    order: -1;
    width: min(100%, 500px);
    margin-top: 26px;
  }

  .service-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .progress-line {
    display: none;
  }

  .quote-photo,
  .quote-photo > img {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  :root {
    --container-gutter: 40px;
  }

  .container {
    width: min(100% - var(--container-gutter), 1180px);
  }

  .site-nav {
    padding: 16px 0;
  }

  .brand img {
    width: 118px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 22px 20px 32px;
    background: rgba(27, 48, 87, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 28px 50px rgba(0, 0, 0, 0.24);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 16px 0;
    text-align: center;
    font-size: 16px;
  }

  .nav-cta {
    margin-top: 12px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-shape-a {
    display: none;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .eyebrow {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .hero-text {
    padding-left: 16px;
    font-size: 16px;
  }

  .btn {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .photo-frame,
  .floating-card,
  .scroll-down {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .pill-grid,
  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .quote-photo,
  .quote-photo > img {
    min-height: 430px;
  }

  .quote-overlay {
    left: 26px;
    right: 26px;
    bottom: 34px;
  }

  .service-card {
    min-height: auto;
  }

  .process-cta {
    border-radius: 24px;
    padding: 28px 22px;
  }

  .faq {
    padding: 28px 22px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .reveal.left,
  .reveal.right {
    transform: translateY(40px);
  }

  .reveal.left.visible,
  .reveal.right.visible {
    transform: translateY(0);
  }
}

@media (max-width: 430px) {
  :root {
    --container-gutter: 40px;
  }

  .hero h1 {
    font-size: clamp(34px, 10.5vw, 46px);
  }

  .section-title {
    font-size: clamp(31px, 9.5vw, 42px);
  }

  .pill,
  .service-card,
  .faq,
  .privacy-card {
    padding-left: 20px;
    padding-right: 20px;
  }
}
