:root {
  --blue: #082b67;
  --blue-deep: #041c46;
  --blue-bright: #0d3d86;
  --gold: #dca63c;
  --gold-light: #f4d58e;
  --ink: #172132;
  --muted: #667085;
  --cream: #f7f4ed;
  --line: rgba(8, 43, 103, 0.14);
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(4, 28, 70, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.skip {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: white;
  color: var(--blue-deep);
  transform: translateY(-150%);
}

.skip:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 38px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
}

.brand img {
  width: 224px;
  height: auto;
}

.site-header nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header nav a {
  font-size: 14px;
  font-weight: 700;
  opacity: 0.88;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--gold-light);
  opacity: 1;
}

.header-call {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  min-height: 820px;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--blue-deep);
  color: white;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background: url("/media/michael-urban-pullach-hero.webp") center 38% / cover no-repeat;
  transform: scale(1.02);
  animation: hero-zoom 14s ease-out both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 20, 52, 0.97) 0%, rgba(3, 20, 52, 0.9) 39%, rgba(3, 20, 52, 0.26) 70%, rgba(3, 20, 52, 0.08) 100%),
    linear-gradient(0deg, rgba(3, 20, 52, 0.42), transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero-copy {
  width: min(720px, 63%);
  animation: reveal 0.9s 0.1s both;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #986817;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(52px, 6.2vw, 88px);
  letter-spacing: -0.045em;
}

h1 em {
  color: var(--gold-light);
  font-style: italic;
}

h2 {
  font-size: clamp(39px, 4.4vw, 62px);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 28px;
  letter-spacing: -0.02em;
}

.hero-lead {
  width: min(660px, 100%);
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.87);
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions,
.personal-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-gold {
  background: var(--gold);
  color: var(--blue-deep);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: #edbd5c;
}

.button-blue {
  background: var(--blue);
  color: white;
}

.button-blue:hover,
.button-blue:focus-visible {
  background: var(--blue-deep);
  box-shadow: 0 14px 34px rgba(8, 43, 103, 0.18);
}

.text-link,
.inline-link {
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 800;
}

.inline-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  border-color: var(--gold);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.hero-promise {
  display: flex;
  gap: 0;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.hero-promise span {
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-promise span:first-child {
  padding-left: 0;
}

.hero-promise span:last-child {
  border: 0;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-bar {
  background: var(--gold);
  color: var(--blue-deep);
}

.trust-grid {
  min-height: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  text-align: center;
  border-right: 1px solid rgba(4, 28, 70, 0.22);
}

.trust-grid div:last-child {
  border: 0;
}

.trust-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 400;
}

.trust-grid span {
  margin-top: 2px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section {
  padding: 128px 0;
}

.intro-grid,
.market-grid,
.process-heading,
.personal-grid,
.faq-grid,
.guideline-grid {
  display: grid;
}

.intro-grid {
  grid-template-columns: 1.03fr 0.97fr;
  gap: 108px;
}

.intro h2,
.market h2,
.process h2,
.personal h2,
.faq h2 {
  color: var(--blue-deep);
}

.intro-copy {
  padding-top: 44px;
  color: var(--muted);
}

.intro-copy p {
  margin: 0 0 20px;
}

.intro-copy .lead,
.market-copy .lead,
.personal-copy .lead {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.62;
}

.property-section {
  padding: 120px 0 138px;
  background: var(--cream);
}

.center-heading {
  width: min(830px, 100%);
  margin: 0 auto 62px;
  text-align: center;
}

.center-heading h2 {
  color: var(--blue-deep);
}

.center-heading > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.property-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 18px;
}

.property-card {
  min-height: 290px;
  position: relative;
  overflow: hidden;
  padding: 38px;
  background: white;
  border: 1px solid rgba(8, 43, 103, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.property-card.wide {
  grid-column: 2 / 4;
}

.property-primary {
  grid-row: 1 / 3;
  min-height: 598px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
  background: var(--blue);
  color: white;
}

.property-primary::after {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  right: -135px;
  bottom: -135px;
  border: 1px solid rgba(220, 166, 60, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(220, 166, 60, 0.06), 0 0 0 108px rgba(220, 166, 60, 0.04);
}

.property-card h3 {
  margin-bottom: 18px;
  color: var(--blue-deep);
}

.property-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.property-primary h3 {
  color: white;
  font-size: 48px;
}

.property-primary p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}

.property-primary ul {
  z-index: 1;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
}

.property-primary li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--gold-light);
}

.card-kicker {
  margin-bottom: 14px !important;
  color: var(--gold-light) !important;
  font-size: 11px !important;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-number {
  display: block;
  margin-bottom: 26px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.region {
  padding: 0;
  background: var(--blue-deep);
  color: white;
}

.region-grid {
  width: min(1440px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.region-image {
  min-height: 680px;
  position: relative;
  margin: 0;
}

.region-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.region-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(4, 28, 70, 0.38));
}

.region-image figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  padding: 7px 10px;
  background: rgba(4, 28, 70, 0.76);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
}

.region-copy {
  max-width: 720px;
  padding: 100px 72px;
  align-self: center;
}

.region-copy h2 {
  max-width: 650px;
}

.region-copy > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.places {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.places span {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 700;
}

.market-grid {
  grid-template-columns: 0.92fr 1.08fr;
  gap: 90px;
  align-items: start;
}

.market-copy p {
  color: var(--muted);
}

.market-copy .button {
  margin-top: 20px;
}

.valuation-box {
  min-height: 490px;
  padding: 48px;
  background: var(--cream);
  border-top: 5px solid var(--gold);
  box-shadow: var(--shadow);
}

.mini-title {
  margin: 0 0 7px;
  color: #986817;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.valuation-box h3 {
  color: var(--blue-deep);
  font-size: 36px;
}

.valuation-box > p:not(.mini-title) {
  color: var(--muted);
}

.widget-frame {
  min-height: 260px;
  margin-top: 22px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
}

.guideline {
  padding: 104px 0;
  background: linear-gradient(112deg, var(--blue) 0%, var(--blue-bright) 100%);
  color: white;
}

.guideline-grid {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
  align-items: start;
}

.guideline-grid p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.76);
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.source-links a {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 13px;
  font-weight: 800;
}

.source-links a:hover,
.source-links a:focus-visible {
  background: white;
  color: var(--blue-deep);
}

.process-heading {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 72px;
}

.process-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
}

.steps {
  border-top: 1px solid var(--line);
}

.step {
  display: grid;
  grid-template-columns: 88px 330px 1fr;
  gap: 36px;
  align-items: start;
  padding: 37px 0;
  border-bottom: 1px solid var(--line);
}

.step > span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.step h3 {
  color: var(--blue-deep);
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.personal {
  padding: 122px 0;
  overflow: hidden;
  background: var(--cream);
}

.personal-grid {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 98px;
  align-items: center;
}

.portrait-wrap {
  max-width: 540px;
  position: relative;
}

.portrait-wrap::before {
  content: "";
  position: absolute;
  inset: -22px 22px 22px -22px;
  z-index: 0;
  border: 1px solid var(--gold);
}

.portrait-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  position: relative;
  z-index: 1;
  object-fit: cover;
  object-position: 50% center;
}

.portrait-label {
  min-width: 270px;
  position: absolute;
  z-index: 2;
  right: -34px;
  bottom: 25px;
  padding: 18px 24px;
  background: var(--blue);
  color: white;
}

.portrait-label strong,
.portrait-label span {
  display: block;
}

.portrait-label strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
}

.portrait-label span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.personal-copy p {
  margin: 24px 0 0;
  color: var(--muted);
}

.personal-copy .lead {
  color: var(--ink);
}

.personal-copy .signature {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-style: italic;
}

.listings {
  padding: 110px 0 125px;
  background: var(--blue-deep);
  color: white;
}

.center-heading.light h2 {
  color: white;
}

.listing-widget {
  min-height: 320px;
  padding: 18px;
  background: white;
  color: var(--ink);
}

.faq-grid {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.faq-grid > div:first-child {
  position: sticky;
  top: 40px;
}

.faq-grid > div:first-child > p:last-child {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 28px 48px 28px 0;
  color: var(--blue-deep);
  cursor: pointer;
  list-style: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.35;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 24px;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -3px 48px 30px 0;
  color: var(--muted);
  font-size: 15px;
}

.contact-section {
  padding: 0 0 116px;
  background: linear-gradient(180deg, white 0%, white 50%, var(--cream) 50%, var(--cream) 100%);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 78px;
  align-items: center;
  padding: 72px 74px;
  background: var(--blue-deep);
  color: white;
  box-shadow: 0 32px 90px rgba(4, 28, 70, 0.18);
}

.contact-card h2 {
  font-size: clamp(40px, 4vw, 58px);
}

.contact-card > div:first-child > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.contact-options {
  display: grid;
  gap: 11px;
}

.contact-options > a {
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-options > a:hover,
.contact-options > a:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

.contact-options small,
.contact-options strong {
  display: block;
}

.contact-options small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-options strong {
  overflow-wrap: anywhere;
  font-size: 15px;
}

.contact-note {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.61);
  text-align: center;
  font-size: 12px;
}

footer {
  padding: 0 0 34px;
  background: var(--cream);
  color: var(--blue-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.65fr;
  gap: 70px;
  padding: 68px 0;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  width: fit-content;
  align-self: start;
  padding: 8px 14px;
  background: var(--blue);
}

.footer-brand img {
  width: 240px;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  font-size: 14px;
}

.footer-grid strong {
  margin-bottom: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}

.footer-grid span {
  margin-bottom: 13px;
  color: var(--muted);
}

.footer-grid a {
  width: fit-content;
  font-weight: 700;
}

.copyright {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-actions {
  display: none;
}

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

@keyframes hero-zoom {
  from {
    transform: scale(1.07);
  }
  to {
    transform: scale(1.02);
  }
}

@media (max-width: 1080px) {
  .site-header nav {
    display: none;
  }

  .header-call {
    margin-left: auto;
  }

  .hero-copy {
    width: 72%;
  }

  .intro-grid,
  .market-grid,
  .personal-grid,
  .faq-grid,
  .guideline-grid {
    gap: 62px;
  }

  .property-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .property-primary {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 430px;
  }

  .property-card.wide {
    grid-column: auto;
  }

  .step {
    grid-template-columns: 65px 270px 1fr;
  }

  .contact-card {
    gap: 48px;
    padding: 60px 48px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 66px;
    font-size: 16px;
  }

  .shell {
    width: min(calc(100% - 34px), 620px);
  }

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 174px;
  }

  .header-call {
    padding: 0;
    border: 0;
    font-size: 13px;
  }

  .hero {
    min-height: 760px;
    height: 100svh;
    align-items: flex-end;
    padding-bottom: 86px;
  }

  .hero-photo {
    background-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(3, 20, 52, 0.99) 0%, rgba(3, 20, 52, 0.92) 48%, rgba(3, 20, 52, 0.16) 84%);
  }

  .hero-inner {
    padding-top: 72px;
  }

  .hero-copy {
    width: 100%;
  }

  h1 {
    font-size: clamp(46px, 13.5vw, 64px);
  }

  h2 {
    font-size: 40px;
  }

  .hero-lead {
    font-size: 17px;
    line-height: 1.56;
  }

  .hero-actions,
  .personal-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: 27px;
  }

  .button {
    width: 100%;
  }

  .text-link,
  .personal-actions .inline-link {
    align-self: center;
  }

  .hero-promise {
    flex-wrap: wrap;
    font-size: 11px;
  }

  .scroll-cue {
    display: none;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    padding: 13px 0;
  }

  .trust-grid div {
    min-height: 78px;
    padding: 10px;
  }

  .trust-grid div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid strong {
    font-size: 18px;
  }

  .trust-grid span {
    font-size: 9px;
  }

  .section,
  .property-section {
    padding: 84px 0;
  }

  .intro-grid,
  .market-grid,
  .process-heading,
  .personal-grid,
  .faq-grid,
  .guideline-grid,
  .contact-card,
  .footer-grid,
  .region-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .intro-copy .lead,
  .market-copy .lead,
  .personal-copy .lead {
    font-size: 19px;
  }

  .center-heading {
    margin-bottom: 38px;
  }

  .property-grid {
    grid-template-columns: 1fr;
  }

  .property-primary,
  .property-card.wide {
    grid-column: auto;
  }

  .property-primary {
    min-height: 500px;
    padding: 38px 30px;
  }

  .property-primary h3 {
    font-size: 40px;
  }

  .property-card {
    min-height: auto;
    padding: 32px 28px;
  }

  .region-image {
    min-height: 440px;
  }

  .region-image::after {
    background: linear-gradient(0deg, rgba(4, 28, 70, 0.35), transparent 50%);
  }

  .region-copy {
    padding: 64px 17px 82px;
  }

  .valuation-box {
    min-height: 420px;
    padding: 34px 24px;
  }

  .guideline {
    padding: 82px 0;
  }

  .process-heading {
    margin-bottom: 42px;
  }

  .step {
    grid-template-columns: 48px 1fr;
    gap: 10px 16px;
    padding: 28px 0;
  }

  .step p {
    grid-column: 2;
  }

  .personal {
    padding: 94px 0 84px;
  }

  .portrait-wrap {
    width: calc(100% - 16px);
    margin-left: 16px;
  }

  .portrait-label {
    right: -4px;
    min-width: 238px;
  }

  .listings {
    padding: 82px 0 90px;
  }

  .faq-grid > div:first-child {
    position: static;
  }

  .faq-list summary {
    font-size: 19px;
  }

  .contact-section {
    padding-bottom: 70px;
  }

  .contact-card {
    width: 100%;
    padding: 52px 24px;
  }

  .footer-grid {
    padding: 58px 0 43px;
  }

  .copyright {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 50;
    inset: auto 0 0;
    height: 66px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    box-shadow: 0 -8px 30px rgba(4, 28, 70, 0.16);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-actions a:last-child {
    background: var(--gold);
    color: var(--blue-deep);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/*
 * The external valuation widget loads a global stylesheet into the parent page.
 * Keep the site's own links and calls to action inside the UGL design system.
 */
html body a {
  color: inherit !important;
  text-decoration: none !important;
}

html body .site-header a,
html body .hero a,
html body .personal a,
html body .contact-card a,
html body .site-footer a {
  color: inherit !important;
}

html body a.button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 58px !important;
  padding: 0 26px !important;
  font-size: 14px !important;
  font-weight: 900 !important;
}

html body a.button-gold {
  background: var(--gold) !important;
  color: var(--blue-deep) !important;
}

html body a.button-gold:hover,
html body a.button-gold:focus-visible {
  background: #edbd5c !important;
}

html body a.button-blue {
  background: var(--blue) !important;
  color: var(--white) !important;
}

html body a.button-blue:hover,
html body a.button-blue:focus-visible {
  background: var(--blue-deep) !important;
}

@media (max-width: 760px) {
  html body a.button {
    width: 100% !important;
  }

  html body .mobile-actions a:last-child {
    background: var(--gold) !important;
    color: var(--blue-deep) !important;
  }
}
