:root {
  --navy: #102039;
  --navy-2: #172a46;
  --ink: #263145;
  --muted: #6d7480;
  --cream: #f8f1e4;
  --cream-2: #efe6d2;
  --white: #fffdf8;
  --charcoal: rgb(46, 51, 58);
  --gold: #c9ad62;
  --gold-soft: #e2cf94;
  --line: rgba(16, 32, 57, 0.12);
  --shadow: 0 26px 72px rgba(8, 17, 31, 0.22);
  --radius: 10px;
  --radius-lg: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

html.paced-scrolling {
  scroll-behavior: auto !important;
  scroll-snap-type: none !important;
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

svg {
  display: block;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  image-rendering: auto;
}

a:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  width: 100%;
  margin: 0 auto;
  padding: 18px max(18px, calc((100% - 1140px) / 2));
  background: rgba(39, 44, 51, 0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(248, 241, 228, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 173, 98, 0.55);
  background: rgba(248, 241, 228, 0.08);
  color: var(--gold-soft);
  font-size: 0.92rem;
  letter-spacing: 0;
}

.brand-mark img {
  width: 25px;
  height: 38px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--cream);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.15;
}

.brand small {
  display: block;
  color: rgba(248, 241, 228, 0.66);
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  padding: 0;
  color: rgba(248, 241, 228, 0.88);
  font-family: Arial, sans-serif;
  font-size: 0.94rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.nav a {
  position: relative;
  padding: 10px 0;
  border-left: 0;
  border-radius: 0;
  transition: color 0.2s ease;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: center;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(.2,.7,.2,1);
}

.nav a:first-child {
  border-left: 0;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--gold-soft);
  outline: none;
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav a.active { color: var(--gold-soft); }

.section-shell {
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
}

main > section {
  min-height: 100svh;
  scroll-margin-top: 0;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.8fr);
  gap: clamp(42px, 6vw, 76px);
  align-items: center;
  min-height: 100svh;
  padding: 128px 0 72px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 110px;
  left: -12vw;
  width: 34vw;
  height: 34vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 173, 98, 0.09), transparent 68%);
  content: "";
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--cream);
  font-size: clamp(2.35rem, 5.2vw, 4.55rem);
  line-height: 1.02;
  font-weight: 500;
}

h2 {
  color: var(--navy);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.08;
  font-weight: 500;
}

h3 {
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.22;
}

.lead {
  max-width: 610px;
  color: rgba(248, 241, 228, 0.74);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--navy);
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button.primary {
  background: var(--navy);
  color: var(--cream);
}

.button.secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(248, 241, 228, 0.32);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--gold);
}

.portrait-panel {
  position: relative;
  justify-self: end;
  width: min(100%, 440px);
}

.portrait-card {
  position: relative;
  z-index: 1;
  padding: 12px;
  background: #fffaf0;
  border: 1px solid rgba(201, 173, 98, 0.36);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.portrait-frame {
  aspect-ratio: 6 / 7;
  overflow: hidden;
  background: var(--cream-2);
  border-radius: 10px;
}

.portrait-frame img,
.photo-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
}

.portrait-frame img {
  object-position: 50% 54%;
}

.photo-block img {
  object-position: 50% 38%;
}

.panel-caption {
  display: grid;
  gap: 3px;
  padding: 16px 4px 2px;
}

.panel-caption span {
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.panel-caption strong {
  color: var(--navy);
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.3;
}

.gold-line {
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 76%;
  height: 76%;
  border: 1px solid var(--gold);
  pointer-events: none;
}

.band {
  background: linear-gradient(180deg, var(--cream) 0%, #fbf7ee 100%);
  border-block: 1px solid rgba(16, 32, 57, 0.06);
}

.services {
  min-height: 100svh;
  padding: 96px 0 54px;
  display: flex;
  align-items: center;
}

.services > .section-shell {
  width: min(1360px, calc(100% - 48px));
  margin: auto;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 24px;
}

.section-heading h2 {
  max-width: 650px;
  margin-bottom: 0;
}

.heading-note {
  max-width: 390px;
  margin: 0 0 5px;
  color: #657080;
  font-family: Arial, sans-serif;
  font-size: .94rem;
  line-height: 1.65;
}

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

.service-card {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 18px 20px;
  text-align: center;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(16, 32, 57, 0.09);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(16, 32, 57, 0.035);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 173, 98, .42);
  box-shadow: 0 22px 46px rgba(16, 32, 57, .1);
}

.icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 14px;
  color: var(--navy);
  opacity: 0.92;
}

.icon svg {
  width: 44px;
  height: 44px;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.service-card h3 {
  max-width: 260px;
  margin-bottom: 10px;
  color: #1c1f24;
  font-size: clamp(1.08rem, 1.55vw, 1.38rem);
  font-weight: 700;
  line-height: 1.18;
}

.service-card p {
  max-width: 280px;
  margin-inline: auto;
  color: rgba(32, 36, 42, 0.78);
  font-family: Arial, sans-serif;
  font-size: 0.81rem;
  line-height: 1.46;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #0d4568;
  font-family: Arial, sans-serif;
  font-size: 0.69rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-link:hover { color: #b18f39; }

.service-link span {
  font-size: 1.35rem;
  line-height: 1;
}

.timeline p {
  color: #5f6977;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 84px);
  align-items: center;
  min-height: 100svh;
  padding: 112px 0 72px;
}

.about-visual {
  width: min(100%, 440px);
  justify-self: start;
}

.photo-block {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-2);
  border: 10px solid var(--cream);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.about-copy h2 {
  margin-bottom: 22px;
  color: var(--cream);
}

.about-copy p {
  color: rgba(248, 241, 228, 0.72);
}

.fact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 32px 0 0;
}

.fact-list div {
  padding: 18px;
  background: #fffaf0;
  border-left: 2px solid var(--gold);
  border-radius: 0 8px 8px 0;
}

.fact-list dt {
  color: var(--navy);
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fact-list dd {
  margin: 5px 0 0;
  color: #5b6574;
}

.process {
  min-height: 100svh;
  padding: 104px 0 72px;
  display: flex;
  align-items: center;
}

.process > .section-shell {
  width: min(1140px, calc(100% - 36px));
  margin: auto;
}

.section-heading.compact {
  display: block;
  max-width: 700px;
}

.section-heading.compact .eyebrow {
  margin: 16px 0 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border: 1px solid rgba(16, 32, 57, 0.1);
  background: rgba(255, 253, 248, 0.7);
  border-radius: var(--radius);
  overflow: hidden;
}

.timeline article {
  min-height: 230px;
  padding: 26px 24px;
  border-right: 1px solid rgba(16, 32, 57, 0.1);
}

.timeline article { transition: background .25s ease; }
.timeline article:hover { background: rgba(201, 173, 98, .08); }

.timeline article:last-child {
  border-right: 0;
}

.timeline span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(410px, .78fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
  min-height: 100svh;
  padding: 116px 0 72px;
}

.contact::before {
  position: absolute;
  z-index: -1;
  right: -20vw;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(201, 173, 98, .12);
  border-radius: 50%;
  content: "";
}

.contact-copy h2 {
  max-width: 600px;
  margin-bottom: 22px;
  color: var(--cream);
  font-size: clamp(2.25rem, 4.8vw, 4.6rem);
  line-height: 1.02;
}

.contact-lead {
  max-width: 510px;
  margin-bottom: 34px;
  color: rgba(248, 241, 228, 0.72);
  font-family: Arial, sans-serif;
  font-size: 1rem;
}

.contact-actions {
  display: grid;
  gap: 12px;
  max-width: 540px;
}

.contact-action {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  padding: 16px 20px;
  color: var(--cream);
  border: 1px solid rgba(248, 241, 228, .17);
  border-radius: var(--radius);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.contact-action:hover { transform: translateX(5px); border-color: var(--gold); background: rgba(248,241,228,.05); }
.contact-action.primary-contact { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.contact-action.primary-contact:hover { background: var(--gold-soft); }
.contact-action svg { width: 26px; height: 26px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-action span { display: grid; }
.contact-action small { font-family: Arial,sans-serif; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; opacity: .7; }
.contact-action strong { font-size: clamp(1rem, 2vw, 1.28rem); font-weight: 500; overflow-wrap: anywhere; }

.contact-panel-wrap {
  position: relative;
  isolation: isolate;
}

.contact-panel-wrap::before {
  position: absolute;
  right: -14px;
  bottom: -14px;
  z-index: 0;
  width: 68%;
  height: 72%;
  border: 1px solid var(--gold);
  content: "";
}

.contact-panel {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: clamp(28px, 3.4vw, 44px);
  color: var(--navy);
  background: var(--cream);
  border-radius: 3px 3px var(--radius-lg) 3px;
  box-shadow: 0 34px 90px rgba(8, 14, 24, .34);
  font-style: normal;
}

.contact-panel-top { display: block; padding-bottom: 30px; border-bottom: 1px solid rgba(16,32,57,.13); }
.contact-panel-top p { margin: 0; color: #596474; font-size: 1.02rem; line-height: 1.55; }
.contact-details { display: grid; grid-template-columns: 1fr; gap: 28px; padding: 30px 0; }
.contact-details div { display: grid; gap: 8px; }
.contact-details span {
  color: var(--navy);
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-details strong {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.contact-map {
  position: relative;
  height: 245px;
  margin: 0;
  overflow: hidden;
  background: #d9d4c8;
  border: 1px solid rgba(16, 32, 57, .13);
  border-radius: 10px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.72) sepia(.12) contrast(.94);
}

.contact-map a {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  color: var(--cream);
  background: rgba(16, 32, 57, .92);
  border: 1px solid rgba(201, 173, 98, .5);
  border-radius: 5px;
  box-shadow: 0 8px 22px rgba(16, 32, 57, .22);
  font-family: Arial, sans-serif;
  font-size: .72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .02em;
  transition: background .2s ease, transform .2s ease;
}

.contact-map a:hover,
.contact-map a:focus-visible {
  background: var(--navy-2);
  transform: translateY(-1px);
  outline: none;
}

.footer {
  position: relative;
  background: #0b1729;
  color: var(--cream);
  border-top: 1px solid rgba(201, 173, 98, .35);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.7fr .65fr 1fr;
  gap: 72px;
  padding: 62px 0 48px;
}

.footer-brand { display: flex; align-items: flex-start; gap: 18px; }
.footer-brand strong { font-size: 1.2rem; font-weight: 500; }
.footer-brand p { max-width: 390px; margin: 6px 0 0; color: rgba(248,241,228,.58); font-family: Arial,sans-serif; font-size: .88rem; }
.footer-links, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; font-family: Arial,sans-serif; font-size: .88rem; }
.footer-links strong, .footer-contact strong { margin-bottom: 8px; color: var(--gold-soft); font-family: Georgia,serif; font-size: 1rem; font-weight: 500; }
.footer-links a, .footer-contact > a:not(.social-link) { color: rgba(248,241,228,.68); transition: color .2s ease; }
.footer-links a:hover, .footer-contact > a:hover { color: var(--cream); }
.social-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 8px; padding: 9px 13px; color: var(--cream); border: 1px solid rgba(201,173,98,.36); border-radius: 6px; transition: background .2s ease, border-color .2s ease; }
.social-link:hover { background: rgba(201,173,98,.12); border-color: var(--gold); }
.social-link svg { width: 18px; height: 18px; fill: var(--gold-soft); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 21px 0;
  color: rgba(248, 241, 228, 0.52);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  border-top: 1px solid rgba(248,241,228,.1);
}

.footer-bottom a {
  color: var(--gold-soft);
}

.reveal-ready main > section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.58s cubic-bezier(.2,.72,.2,1), transform 0.58s cubic-bezier(.2,.72,.2,1);
  will-change: opacity, transform;
}

.reveal-ready main > section.section-inview {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 961px) {
  html {
    scroll-snap-type: y proximity;
  }

  main > section {
    min-height: 100svh;
  }

  .footer {
    scroll-snap-align: start;
  }
}

@media (min-width: 961px) and (max-height: 720px) {
  html {
    scroll-snap-type: none;
  }

  main > section {
    min-height: 720px;
  }
}

.reveal-ready .service-card,
.reveal-ready .timeline article,
.reveal-ready .fact-list div,
.reveal-ready .contact-action,
.reveal-ready .contact-panel {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-ready .section-inview .service-card,
.reveal-ready .section-inview .timeline article,
.reveal-ready .section-inview .fact-list div,
.reveal-ready .section-inview .contact-action,
.reveal-ready .section-inview .contact-panel {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .section-inview .service-card:nth-child(2),
.reveal-ready .section-inview .timeline article:nth-child(2),
.reveal-ready .section-inview .contact-action:nth-child(2) {
  transition-delay: 0.08s;
}

.reveal-ready .section-inview .service-card:nth-child(3),
.reveal-ready .section-inview .service-card:nth-child(5),
.reveal-ready .section-inview .timeline article:nth-child(3) {
  transition-delay: 0.16s;
}

.reveal-ready .section-inview .service-card:nth-child(4) {
  transition-delay: 0.08s;
}

.reveal-ready .section-inview .timeline article:nth-child(4) {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-ready main > section,
  .reveal-ready .service-card,
  .reveal-ready .timeline article,
  .reveal-ready .fact-list div,
  .reveal-ready .contact-action,
  .reveal-ready .contact-panel {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 960px) {
  .site-header {
    padding-inline: 18px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 22px;
    font-size: 0.86rem;
  }

  .section-shell {
    width: min(100% - 28px, 760px);
  }

  .hero,
  .about,
  .contact {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  main > section { min-height: auto; }
  .hero, .services, .about, .process, .contact { min-height: 100svh; }

  .hero {
    min-height: 100svh;
    padding-top: 132px;
  }

  .portrait-panel {
    justify-self: stretch;
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .about-visual { justify-self: center; }

  .section-heading {
    display: block;
  }

  .heading-note { margin-top: 18px; }

  .footer-main { grid-template-columns: 1.4fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }

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

  .service-card {
    grid-column: auto;
    min-height: 320px;
    padding: 28px 20px 24px;
  }

  .timeline article:nth-child(2) {
    border-right: 0;
  }

  .timeline article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(16, 32, 57, 0.1);
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 16px;
  }

  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 18px 14px 16px;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    gap: 16px 20px;
    overflow-x: visible;
  }

  .nav a {
    padding: 6px 0;
  }

  h1 {
    font-size: 2.35rem;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .services,
  .process,
  .about,
  .contact {
    padding: 64px 0;
  }

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

  .portrait-card { padding: 9px; }
  .photo-block {
    border-width: 8px;
    border-radius: 12px;
  }

  .service-grid,
  .timeline,
  .fact-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 285px;
    padding: 30px 24px 26px;
  }

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

  .timeline article,
  .timeline article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 32, 57, 0.1);
  }

  .timeline article:last-child {
    border-bottom: 0;
  }

  .contact { gap: 42px; }
  .contact-copy h2 { font-size: 2.65rem; }
  .contact-details { grid-template-columns: 1fr; gap: 22px; }
  .contact-map { height: 220px; }

  .gold-line {
    right: -10px;
    bottom: -10px;
  }

  .footer-main { grid-template-columns: 1fr; gap: 34px; padding: 46px 0 34px; }
  .footer-brand { grid-column: auto; }

  .footer-bottom {
    flex-direction: column;
  }
}
