/*
  Spain Mortgage static website styles.
  The layout is mobile-first, so the smallest screen rules come first.
*/
:root {
  --color-ink: #121212;
  --color-navy: #17213a;
  --color-muted: #5f6472;
  --color-gold: #fcc13f;
  --color-gold-dark: #e1a41a;
  --color-paper: #f7f5ee;
  --color-white: #ffffff;
  --color-line: rgba(18, 18, 18, 0.12);
  --color-shadow: rgba(23, 33, 58, 0.18);
  --radius-pill: 999px;
  --radius-large: 32px;
  --radius-medium: 22px;
  --container: 1100px;
  --font-main: "century-gothic", sans-serif;
  --font-script: "highest-praise", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--color-gold-dark);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--color-ink);
  background: rgba(252, 193, 63, 0.18);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--color-white);
  background: var(--color-gold);
  border-radius: var(--radius-pill);
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 56px 0;
}

.section--paper {
  background: var(--color-paper);
}

.section--tight {
  padding: 42px 0;
}

.eyebrow {
  display: inline-block;
  width: 54px;
  height: 4px;
  margin-bottom: 16px;
  background: var(--color-gold);
  border-radius: var(--radius-pill);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--color-ink);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 560px;
  font-size: clamp(2.55rem, 8.5vw, 5rem);
  font-weight: 900;
}

#hero-title {
  font-weight: 700;
  font-size: clamp(44px, 9vw, 60px);
  color: #FFFFFF;
  line-height: 1.2em;
}

h2 {
  font-size: clamp(1.8rem, 4.7vw, 3rem);
  font-weight: 900;
}

h3 {
  font-size: clamp(1.25rem, 3.5vw, 1.8rem);
  font-weight: 900;
}

.lead {
  max-width: 720px;
  color: var(--color-muted);
  font-size: clamp(1.05rem, 2.7vw, 1.25rem);
}

.text-small {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 2px solid var(--color-ink);
  border-radius: var(--radius-pill);
  color: var(--color-ink);
  background: var(--color-white);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  color: var(--color-ink);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.btn--gold {
  color: var(--color-white);
  border-color: var(--color-gold);
  background: var(--color-gold);
  animation: cta-intro 700ms 450ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.btn--gold:hover,
.btn--gold:focus-visible {
  color: var(--color-white);
  border-color: var(--color-gold-dark);
  background: var(--color-gold-dark);
}

@keyframes cta-intro {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
    box-shadow: 0 0 0 rgba(252, 193, 63, 0);
  }

  70% {
    opacity: 1;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 30px rgba(252, 193, 63, 0.22);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: none;
  }
}

.btn--ghost-dark {
  color: var(--color-white);
  border-color: var(--color-white);
  background: transparent;
}

.btn--ghost-dark:hover,
.btn--ghost-dark:focus-visible {
  color: var(--color-ink);
  background: var(--color-white);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(18, 18, 18, 0.08);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand span {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--color-ink);
  border-radius: 50%;
  background: var(--color-white);
}

.nav-toggle__lines,
.nav-toggle__lines::before,
.nav-toggle__lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-ink);
  border-radius: var(--radius-pill);
  content: "";
}

.nav-toggle__lines::before {
  transform: translateY(-7px);
}

.nav-toggle__lines::after {
  transform: translateY(5px);
}

.site-nav {
  position: fixed;
  inset: 68px 0 auto 0;
  display: none;
  padding: 20px 16px 28px;
  background: var(--color-white);
  box-shadow: 0 20px 42px rgba(18, 18, 18, 0.12);
}

.site-nav.is-open {
  display: block;
}

.site-nav ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 2px solid var(--color-line);
  border-radius: var(--radius-pill);
  font-weight: 850;
}

.site-nav a[aria-current="page"],
.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--color-ink);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  color: var(--color-white);
  background: #0d1724;
  overflow: hidden;
}

.hero--compact {
  min-height: 430px;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgb(0 0 0 / 30%), rgb(0 0 0 / 25%) 0%, rgb(0 0 0 / 0%) 49%);
  content: "";
}

.hero__content {
  display: grid;
  align-content: center;
  min-height: inherit;
  padding: 72px 0 86px;
}

.hero h1,
.hero p {
  color: var(--color-white);
}

.hero__script {
  display: block;
  color: #FFFFFF !important;
  font-family: "highest-praise", sans-serif;
  font-size: clamp(52px, 12vw, 70px);
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.02em;
  transform: rotate(-4deg);
  transform-origin: left center;
}

.hero__intro {
  max-width: 590px;
  margin-bottom: 26px;
  font-weight: 650;
}

.wave-bottom {
  height: 56px;
  color: var(--color-paper);
  pointer-events: none;
}

.wave-bottom svg {
  width: 100%;
  height: 100%;
}

.wave-bottom--hero {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
}

.wave-bottom--trust {
  display: block;
  margin-top: -1px;
  background: var(--color-white);
}

.trust-strip {
  background: var(--color-paper);
}

.trust-strip__grid {
  display: grid;
  gap: 14px;
  padding: 20px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  font-size: 0.95rem;
  font-weight: 850;
}

.check-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-gold);
}

.check-icon::before {
  width: 16px;
  height: 9px;
  border-bottom: 4px solid var(--color-white);
  border-left: 4px solid var(--color-white);
  transform: rotate(-45deg) translate(1px, -1px);
  content: "";
}

.split {
  display: grid;
  gap: 30px;
  align-items: center;
}

.split__content {
  max-width: 500px;
}

.split + .split {
  margin-top: 58px;
}

.split__image {
  position: relative;
}

.image-blob {
  width: min(100%, 390px);
  aspect-ratio: 1;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 168px 168px 271px 329px;
  box-shadow: 0 18px 38px rgba(23, 33, 58, 0.14);
}

.image-blob--reverse {
  border-radius: 295px 251px 208px 187px;
}

.image-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-list {
  padding-left: 1.1rem;
}

.content-list li {
  margin-bottom: 8px;
}

.team-band {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
}

.team-grid {
  position: relative;
  z-index: 0;
  display: grid;
  gap: 36px;
  justify-items: center;
}

.team-grid::before {
  position: absolute;
  top: -64px;
  right: 50%;
  bottom: -24px;
  left: 50%;
  z-index: -1;
  width: 100vw;
  background: var(--color-paper);
  transform: translateX(-50%);
  content: "";
}

.team-card {
  position: relative;
  width: min(260px, 82vw);
  aspect-ratio: 1 / 1;
  text-align: center;
}

.team-card img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(23, 33, 58, 0.16);
}

.team-card__badge {
  position: absolute;
  right: 2px;
  bottom: 0;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  padding: 12px;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-gold);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.team-intro {
  max-width: 650px;
  margin: 42px auto 0;
  text-align: center;
}

.team-intro h2 {
  margin-bottom: 14px;
  font-family: var(--font-script);
  font-size: clamp(2.7rem, 8vw, 4rem);
  font-weight: 400;
  font-style: normal;
  transform: rotate(-4deg);
}

.logo-row {
  display: grid;
  gap: 16px;
  align-items: center;
  margin-top: 40px;
}

.logo-row__label {
  max-width: 210px;
  font-weight: 900;
  line-height: 1.1;
}

.carousel {
  position: relative;
  min-width: 0;
}

.carousel[data-carousel-mode="continuous"] {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.carousel[data-carousel-mode="continuous"] .carousel-track {
  width: max-content;
  overflow: visible;
  will-change: transform;
}

.partner-carousel.carousel--running .carousel-track {
  animation: carousel-marquee 54s linear infinite;
}

.bank-carousel.carousel--running .carousel-track {
  animation: carousel-marquee 72s linear infinite;
}

@keyframes carousel-marquee {
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.logo-pills {
  min-width: 0;
}

.logo-pill {
  display: grid;
  place-items: center;
  flex: 0 0 min(58%, 190px);
  min-height: 112px;
  padding: 14px;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: var(--color-white);
}

.logo-pill img {
  width: 100%;
  height: 84px;
  object-fit: contain;
}

.cta-banner {
  position: relative;
  isolation: isolate;
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 58px 0;
  overflow: hidden;
  color: var(--color-ink);
  background: #0a2730;
}

.cta-banner__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cta-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0,0,0,0.35), rgba(0,0,0,0.04));
  content: "";
}

.cta-card {
  width: min(100%, 450px);
  margin-inline: auto;
  padding: 28px 24px;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.96);
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}

.cta-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 6vw, 2.5rem);
}

.reviews {
  text-align: center;
}

.review-slider {
  max-width: 960px;
  margin: 0 auto;
}

.review-track {
  min-height: 230px;
  scroll-behavior: smooth;
}

.review-card {
  display: block;
  flex: 0 0 100%;
  padding: 28px 22px;
  border-radius: var(--radius-large);
  background: var(--color-white);
}

.review-card blockquote {
  margin: 0 auto;
  max-width: 720px;
  color: var(--color-ink);
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  font-weight: 650;
  line-height: 1.5;
}

.review-card cite {
  display: block;
  margin-top: 16px;
  color: var(--color-muted);
  font-style: normal;
}

.review-card cite strong,
.review-card cite small {
  display: block;
}

.review-card cite strong {
  color: var(--color-ink);
  font-weight: 900;
}

.review-card cite small {
  margin-top: 3px;
  font-size: 0.85rem;
  font-weight: 700;
}

.stars {
  margin-top: 16px;
  color: var(--color-gold);
  font-size: 1.3rem;
  letter-spacing: 0.15em;
}

.office-grid,
.faq-grid,
.contact-grid,
.blog-grid {
  display: grid;
  gap: 34px;
  align-items: stretch;
}

.office-card {
  height: 100%;
  padding: 24px;
  border-radius: var(--radius-large);
  background: var(--color-white);
  box-shadow: 0 18px 40px rgba(23, 33, 58, 0.08);
}

.office-card address {
  font-style: normal;
}

.office-media {
  height: 100%;
}

.faq-media img,
.office-media img,
.office-card > img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 168px 168px 271px 329px;
  object-fit: cover;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: var(--color-white);
  overflow: hidden;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  border: 0;
  color: var(--color-ink);
  background: transparent;
  font-weight: 900;
  text-align: left;
}

.accordion-trigger::after {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-white);
  content: "+";
  display: grid;
  place-items: center;
  font-weight: 900;
}

.accordion-trigger[aria-expanded="true"]::after {
  content: "−";
}

.accordion-panel {
  display: none;
  padding: 0 20px 18px;
  color: var(--color-muted);
}

.accordion-panel.is-open {
  display: block;
}

.bank-row {
  display: grid;
  gap: 16px;
  align-items: center;
}

.bank-row__label {
  font-weight: 900;
  line-height: 1.1;
}

.bank-list {
  min-width: 0;
}

.bank-chip {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 190px;
  height: 78px;
  padding: 14px 22px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  background: var(--color-white);
  box-shadow: 0 8px 20px rgb(20 24 31 / 6%);
  scroll-snap-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.bank-chip img {
  display: block;
  width: 100%;
  height: 44px;
  object-fit: contain;
}

.bank-chip:hover,
.bank-chip:focus-visible {
  border-color: var(--color-gold);
  box-shadow: 0 12px 28px rgb(20 24 31 / 12%);
  transform: translateY(-2px);
}

.gallery-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.gallery-grid img {
  width: 100%;
  height: 145px;
  object-fit: cover;
}

.gallery-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 132px;
  padding: 18px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-ink);
  text-align: center;
  font-weight: 900;
  line-height: 1.05;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 40px rgba(23, 33, 58, 0.14);
}

.gallery-badge span {
  display: block;
  color: var(--color-gold);
  font-family: var(--font-script);
  font-size: 1.9rem;
  font-weight: 400;
  font-style: normal;
  transform: rotate(-6deg);
}

.contact-section {
  background: var(--color-paper);
}

.contact-section--form {
  padding-bottom: 42px;
}

.contact-form-grid {
  display: grid;
  gap: 42px;
  align-items: start;
}

.contact-form-panel {
  min-width: 0;
}

.contact-form-panel .zoho-form-wrapper {
  border-radius: 0;
  background: transparent;
}

.contact-form-panel iframe {
  display: block;
}

.contact-copy {
  max-width: 620px;
}

.contact-strip {
  display: grid;
  gap: 18px;
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid var(--color-line);
}

.contact-strip__item {
  display: flex;
  gap: 14px;
  align-items: center;
  min-width: 0;
  color: var(--color-ink);
  font-weight: 750;
}

.contact-strip__item > span:last-child {
  overflow-wrap: anywhere;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: center;
  font-weight: 800;
}

.contact-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-gold);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-card {
  padding: 24px;
  border-radius: var(--radius-large);
  background: var(--color-white);
  box-shadow: 0 24px 50px rgba(23, 33, 58, 0.10);
}

.form-card--embed h2 {
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.zoho-form-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-medium);
  background: var(--color-white);
}

.form-loading {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: 32px;
  color: var(--color-muted);
  font-weight: 800;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .carousel--running .carousel-track {
    animation: none;
  }
}

#zf_div_IgF77-R6tWw7a54mZKbpJYDEGpJR9Kmc0fG10jzriYU {
  width: 100%;
}

#zf_div_IgF77-R6tWw7a54mZKbpJYDEGpJR9Kmc0fG10jzriYU iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
}

.hero--contact {
  min-height: 650px;
}

.hero__content--wide {
  max-width: 850px;
}

.hero__copy {
  max-width: 780px;
  color: var(--color-white);
  font-weight: 650;
}

.hero__copy p {
  margin-bottom: 14px;
  color: var(--color-white);
}

.contact-details-card {
  display: flex;
  flex-direction: column;
  align-self: start;
  width: 100%;
  height: auto;
  min-width: 0;
  overflow: hidden;
}

.contact-details-card h2 {
  max-width: 100%;
  font-size: clamp(1.85rem, 2.8vw, 2.35rem);
}

.contact-details-list,
.contact-details-card .contact-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-details-card__button {
  align-self: stretch;
  margin-top: 28px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.blog-grid--cards {
  grid-template-columns: 1fr;
}

.blog-card,
.legal-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-large);
  background: var(--color-white);
  color: var(--color-ink);
  box-shadow: 0 18px 42px rgba(23, 33, 58, 0.08);
}

.blog-card {
  display: grid;
  padding: 0;
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-card__body,
.legal-card {
  padding: 24px;
}

.blog-card__category {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  color: var(--color-white);
  background: var(--color-gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.blog-card__meta,
.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.blog-card__meta {
  margin: -2px 0 14px;
}

.blog-card__meta span + span::before {
  margin-right: 16px;
  color: var(--color-gold);
  content: "•";
}

.blog-card h2 {
  font-size: clamp(1.55rem, 3.5vw, 2.25rem);
}

.blog-card p,
.legal-card p,
.legal-card li {
  color: var(--color-muted);
  font-weight: 500;
}

.legal-card {
  max-width: 940px;
}

.legal-card a {
  color: var(--color-gold-dark);
  font-weight: 850;
}

.article-page {
  background: var(--color-white);
}

.article-hero {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  color: var(--color-white);
  background: #0d1724;
  overflow: hidden;
}

.article-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0,0,0,0.78), rgba(0,0,0,0.38));
  content: "";
}

.article-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.article-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero__content {
  display: grid;
  align-content: center;
  min-height: 520px;
  padding: 86px 0;
}

.article-hero h1,
.article-hero p {
  max-width: 820px;
  color: var(--color-white);
}

.article-byline {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.88);
}

.article-byline strong {
  color: var(--color-white);
}

.article-author {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.article-author__avatar {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-gold);
  font-size: 1.1rem;
  font-weight: 900;
}

.article-author p {
  margin: 0;
}

.back-link {
  width: fit-content;
  margin-bottom: 18px;
  color: var(--color-white);
  font-weight: 900;
}

.article-content {
  display: grid;
  gap: 0;
  padding: 72px 0 88px;
}

.article-layout {
  display: grid;
  gap: 34px;
  align-items: start;
}

.article-main {
  min-width: 0;
}

.article-sidebar {
  min-width: 0;
}

.article-sidebar .sidebar-card {
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-large);
  background: var(--color-white);
  box-shadow: 0 18px 42px rgba(23, 33, 58, 0.08);
}

.article-sidebar .sidebar-card p {
  color: var(--color-muted);
  margin-bottom: 20px;
}


.article-content > section {
  padding: 0;
  background: transparent;
}

.article-content > section + section {
  margin-top: 46px;
}

.article-content h2 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 3.4vw, 2.45rem);
  line-height: 1.15;
}

.article-content p,
.article-content li {
  color: #30343b;
  font-size: clamp(1.05rem, 1.7vw, 1.16rem);
  font-weight: 450;
  line-height: 1.8;
}

.article-content p {
  margin: 0;
}

.article-content .checklist-card {
  padding: 30px 34px;
  border-left: 5px solid var(--color-gold);
  border-radius: 0 var(--radius-medium) var(--radius-medium) 0;
  background: var(--color-paper);
}

.article-content .content-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.3rem;
}

.article-content .content-list li {
  margin: 0;
}

.article-content .article-author {
  padding: 26px 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.article-content .article-author p {
  color: var(--color-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.article-content .article-cta {
  padding: 34px;
  border-radius: var(--radius-large);
  background: var(--color-paper);
}

.article-content .article-cta p {
  margin-bottom: 22px;
}

.section-intro {
  max-width: 720px;
  margin: -8px auto 32px;
  color: var(--color-muted);
}

.reviews {
  background:
    radial-gradient(circle at 10% 20%, rgba(252, 193, 63, 0.06), transparent 34%),
    var(--color-paper);
}

.reviews__cta {
  margin-top: 28px;
}

.blog-card {
  height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(23, 33, 58, 0.13);
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.blog-card__body p {
  margin-bottom: 22px;
}

.blog-card__link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: auto;
  color: var(--color-gold-dark);
  font-weight: 900;
}

.blog-card__link span {
  transition: transform 160ms ease;
}

.blog-card__link:hover span {
  transform: translateX(4px);
}

.guide-scan-banner {
  padding: 70px 0;
  color: var(--color-white);
  background: var(--color-ink);
}

.guide-scan-banner__inner {
  display: grid;
  gap: 28px;
  align-items: center;
}

.guide-scan-banner h2,
.guide-scan-banner p {
  color: var(--color-white);
}

.guide-scan-banner p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.article-cta__kicker,
.form-card__step,
.contact-details-card__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--color-gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-card__intro {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--color-muted);
}

.contact-item > span:last-child {
  display: grid;
  min-width: 0;
}

.contact-item small {
  margin-top: 3px;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.contact-details-card__button {
  width: 100%;
}

.site-footer {
  padding: 34px 0 24px;
  background: var(--color-paper);
}

.site-footer__line {
  display: grid;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--color-line);
  color: var(--color-muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  font-weight: 850;
}

body.cookie-modal-open {
  overflow: hidden;
}

body.cookie-modal-open::before {
  position: fixed;
  z-index: 230;
  inset: 0;
  background: rgba(18, 18, 18, 0.55);
  backdrop-filter: blur(3px);
  content: "";
}

.cookie-box {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 240;
  width: min(520px, calc(100% - 36px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 30px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-large);
  background: var(--color-white);
  box-shadow: 0 28px 80px rgba(18, 18, 18, 0.28);
  transform: translate(-50%, -50%);
}

.cookie-box[hidden] {
  display: none;
}

.cookie-box h2 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.cookie-text {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.cookie-settings-button {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 210;
  padding: 9px 13px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill);
  color: var(--color-ink);
  background: var(--color-white);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.12);
}

.cookie-settings-button:hover,
.cookie-settings-button:focus-visible {
  border-color: var(--color-gold);
  transform: translateY(-1px);
}

.whatsapp-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 220;
  display: inline-flex;
  align-items: center;
  width: 64px;
  min-width: 64px;
  height: 64px;
  min-height: 64px;
  padding: 0;
  gap: 0;
  overflow: hidden;
  border: 3px solid var(--color-white);
  border-radius: var(--radius-pill);
  color: var(--color-white);
  background: #29a71a;
  box-shadow: 0 10px 26px rgba(16, 32, 55, 0.24);
  transition: width 180ms ease, min-width 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.whatsapp-widget img {
  display: block;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: var(--radius-pill);
  object-fit: cover;
}

.whatsapp-widget span {
  max-width: 0;
  overflow: hidden;
  color: var(--color-white);
  font-weight: 850;
  white-space: nowrap;
  opacity: 0;
  transition: max-width 180ms ease, opacity 180ms ease;
}

.whatsapp-widget:hover,
.whatsapp-widget:focus-visible {
  width: auto;
  min-width: 190px;
  padding-right: 18px;
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(18, 18, 18, 0.28);
}

.whatsapp-widget:hover span,
.whatsapp-widget:focus-visible span {
  max-width: 128px;
  opacity: 1;
}

@media (max-width: 767px) {
  .whatsapp-widget {
    right: 16px;
    bottom: 16px;
    width: 58px;
    min-width: 58px;
    height: 58px;
    min-height: 58px;
  }

  .whatsapp-widget img {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
  }

  .cookie-settings-button {
    bottom: 16px;
    left: 12px;
    padding: 8px 10px;
    font-size: 0.7rem;
  }
}

@media (max-width: 640px) {
  .cookie-box {
    padding: 24px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}

@media (min-width: 640px) {
  .brand span {
    display: inline;
  }

  .trust-strip__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .logo-pill {
    flex-basis: min(34%, 190px);
  }

  .gallery-grid img {
    height: 260px;
  }

  .contact-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
  }

  .article-sidebar {
    position: sticky;
    top: 106px;
  }

  .guide-scan-banner__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .container {
    width: min(100% - 72px, var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .nav-toggle {
    display: none;
  }

  .site-header__inner {
    min-height: 74px;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .site-nav {
    position: static;
    display: block;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .site-nav a {
    min-height: 42px;
    padding-inline: 24px;
    border-color: var(--color-ink);
    background: var(--color-white);
  }

  .site-nav a.nav-contact {
    color: var(--color-white);
    border-color: var(--color-gold);
    background: var(--color-gold);
  }

  .site-nav a.nav-contact:hover,
  .site-nav a.nav-contact:focus-visible,
  .site-nav a.nav-contact[aria-current="page"] {
    color: var(--color-white);
    border-color: var(--color-gold-dark);
    background: var(--color-gold-dark);
    transform: translateY(-2px);
  }

  .hero__content {
    padding-top: 92px;
  }

  #hero-title {
    font-size: 60px;
  }

  .hero__script {
    font-size: 70px;
  }

  .split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
  }

  .split--reverse .split__image {
    order: 2;
  }

  .split--reverse .split__content {
    order: 1;
  }

  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 270px));
    justify-content: center;
    gap: 72px;
  }

  .team-grid::before {
    top: -82px;
  }

  .logo-row,
  .bank-row {
    grid-template-columns: 220px 1fr;
  }

  .logo-pill {
    flex-basis: min(24%, 190px);
  }

  .partner-carousel .logo-pill {
    flex-basis: min(24%, 190px);
  }

  .office-grid,
  .faq-grid,
  .contact-grid,
  .blog-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
  }

  .blog-grid--cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-card img {
    height: 250px;
  }

  .contact-grid--wide {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-form-grid {
    grid-template-columns: minmax(280px, 0.78fr) minmax(520px, 1.22fr);
    gap: clamp(56px, 7vw, 110px);
  }

  .contact-section--form .contact-copy {
    position: sticky;
    top: 110px;
  }

  .contact-strip {
    margin-top: 28px;
  }

}

@media (min-width: 960px) {
  .contact-grid--wide {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 34%);
    gap: clamp(32px, 4vw, 56px);
    align-items: start;
  }

  .contact-details-card {
    position: sticky;
    top: 106px;
  }
}

@media (min-width: 1120px) {

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

  .hero {
    min-height: 660px;
  }

  .hero--compact {
    min-height: 500px;
  }

  .image-blob {
    width: 450px;
  }

  .contact-grid--wide {
    grid-template-columns: minmax(0, 1fr) 380px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.brand img { width: 64px; height: 64px; border-radius: 0; }
.brand span { display: none !important; }
.btn--gold,
.btn--gold:hover,
.btn--gold:focus-visible,
.site-nav a.nav-contact,
.site-nav a.nav-contact:hover,
.site-nav a.nav-contact:focus-visible,
.site-nav a.nav-contact[aria-current="page"] { color: #000 !important; }
h2 {
  font-weight: 700;
  font-size: 40px;
  color: #000000 !important;
  line-height: 1.1em;
}
.trust-item { font-weight: 600; }
.team-intro h2,
.team-title,
.hero__script { font-family: "highest-praise", sans-serif !important; }
.hero::after { background: linear-gradient(90deg, rgb(0 0 0 / 55%), rgb(0 0 0 / 55%) 6%, rgb(0 0 0 / 0%) 69%); }
#hero-title { max-width: 760px; }
.hero__script { display: inline-block; white-space: nowrap; margin-left: 0.12em; }
.hero__media img { object-position: center 56%; }
.partner-carousel .logo-pill { background: #fff; }
.bank-row { align-items: center; }
.bank-list { align-items: center; }
.bank-chip {
  width: 190px;
  height: 78px;
  padding: 14px 22px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  background: var(--color-white);
  box-shadow: 0 8px 20px rgb(20 24 31 / 6%);
}
.bank-chip img { width: 100%; height: 44px; object-fit: contain; }
.contact-icon { color: #000; }
.guide-scan-banner {
  color: #000;
  background:
    radial-gradient(circle at 88% 20%, rgb(252 193 63 / 24%), transparent 28%),
    #fff8e8;
  border-top: 1px solid rgb(252 193 63 / 55%);
  border-bottom: 1px solid rgb(252 193 63 / 55%);
}
.guide-scan-banner h2,
.guide-scan-banner p { color: #000 !important; }
.guide-scan-banner p { color: rgb(0 0 0 / 70%) !important; }
@media (max-width: 899px) {
  h2 { font-size: clamp(32px, 8vw, 40px); }
  .hero__script { display: block; width: max-content; max-width: 100%; margin-left: 0; font-size: clamp(45px, 12vw, 62px); }
}

.team-card__cert {
  position: absolute;
  top: 100%;
  left: 50%;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 9px;
  padding: 5px 14px;
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: 999px;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-ink, #121212);
  background: #fff;
  box-shadow: 0 6px 18px rgba(18, 18, 18, 0.08);
}

.team-card__cert::before {
  width: 5px;
  height: 9px;
  margin-top: -3px;
  border-right: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  transform: rotate(45deg);
  content: "";
}

@media (max-width: 899px) {
  .team-card:has(.team-card__cert) {
    margin-bottom: 24px;
  }
}
