:root {
  --font-body: "Roboto", Helvetica, Arial, Lucida, sans-serif;
  --font-brand: "Bitter", Georgia, "Times New Roman", serif;
  --accent-blue: #0ba5de;
  --accent-purple: #652d90;
  --page-bg: #edf5fb;
  --text: #171717;
  --white: #ffffff;
  --shadow: 0 24px 56px rgba(13, 51, 77, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.96), transparent 42%),
    linear-gradient(180deg, #f9fcff 0%, var(--page-bg) 100%);
}

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

a {
  color: inherit;
}

.page-shell {
  width: 100%;
}

.landing-page {
  width: 100%;
  background: var(--white);
  overflow: hidden;
}

.top-contact-bar {
  background: var(--accent-blue);
}

.top-contact-bar__inner {
  display: flex;
  align-items: center;
  gap: 26px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 9px 28px;
  font-size: 0.95rem;
  font-weight: 700;
}

.top-contact-bar__inner a {
  color: var(--white);
  text-decoration: underline;
}

.landing-page__header {
  border-bottom: 3px solid var(--accent-blue);
  background: var(--white);
}

.landing-page__header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 28px 18px;
}

.site-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-brand);
}

.site-brand__title {
  color: var(--accent-blue);
  font-family: inherit;
  font-size: clamp(2rem, 2.2vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.site-brand__subtitle {
  color: var(--accent-blue);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(300px, 37vw, 500px);
  padding: 0;
  background:
    linear-gradient(186deg, rgba(100, 49, 141, 0.66) 0%, rgba(0, 0, 0, 0.49) 84%),
    url("/images/hero-casafiscaal.jpg") center / cover no-repeat;
}

.hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero__wave img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__content {
  padding: clamp(56px, 7vw, 94px) 28px clamp(80px, 8vw, 122px)
    clamp(28px, 15vw, 300px);
  color: var(--white);
  text-shadow: 0 0 14px rgba(0, 0, 0, 0.38);
}

.hero__content h1 {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 46px;
  font-weight: 300;
  line-height: 46px;
  color: rgb(255, 255, 255);
  letter-spacing: 0.08em;
  text-transform: uppercase;

}

.hero__content p {
  margin: 0;
  max-width: 860px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: rgb(255, 255, 255);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-section {
  position: relative;
  padding: 64px 24px 88px;
  background:
    linear-gradient(180deg, var(--accent-blue) 0 47%, var(--white) 47% 100%);
}

.logo-section::before {
  display: none;
}

.logo-section__cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  max-width: 820px;
  margin: 0 auto;
}

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 238px;
  padding: 28px 32px;
  background: var(--white);
  box-shadow:
    0 0 0 1px rgba(10, 38, 56, 0.08),
    0 16px 28px rgba(10, 38, 56, 0.09);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.brand-card:hover,
.brand-card:focus-visible {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(10, 38, 56, 0.12),
    0 22px 34px rgba(10, 38, 56, 0.14);
}

.brand-card img {
  max-height: 166px;
  width: min(290px, 100%);
  object-fit: contain;
}

.site-footer {
  background: var(--accent-blue);
  color: var(--white);
}

.site-footer__content {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
  padding: 42px 32px 36px;
}

.footer-column h2 {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column p,
.footer-column address {
  margin: 0 0 18px;
  font-size: 0.96rem;
  line-height: 1.75;
}

.footer-column address {
  font-style: normal;
}

.contact-block {
  margin-bottom: 10px;
}

.contact-emails {
  display: grid;
  gap: 2px;
}

.contact-emails a {
  display: inline-block;
}

.footer-column a {
  text-decoration: none;
}

.footer-column--center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-column--center img {
  width: min(185px, 100%);
  height: auto;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--accent-purple);
}

@media (max-width: 860px) {
  .top-contact-bar__inner,
  .landing-page__header-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .landing-page__header-inner {
    padding-top: 18px;
    padding-bottom: 16px;
  }

  .logo-section__cards,
  .site-footer__content {
    grid-template-columns: 1fr;
  }

  .logo-section {
    padding-top: 48px;
    padding-bottom: 64px;
    background:
      linear-gradient(180deg, var(--accent-blue) 0 28%, var(--white) 28% 100%);
  }

  .brand-card {
    min-height: 210px;
  }

  .footer-column--center {
    order: 3;
  }
}

@media (max-width: 580px) {
  .page-shell {
    padding: 0;
  }

  .top-contact-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.88rem;
  }

  .landing-page__header-inner {
    padding-top: 16px;
    padding-bottom: 12px;
  }

  .site-brand__title {
    font-size: 1.75rem;
  }

  .site-brand__subtitle {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .hero {
    min-height: 265px;
    background-position: 54% center;
  }

  .hero__content {
    padding: 34px 18px 58px 18px;
  }

  .hero__content h1 {
    font-size: 28px;
    line-height: 32px;
  }

  .hero__content p {
    font-size: 12px;
    line-height: 20px;
  }

  .logo-section {
    padding: 40px 14px 48px;
  }

  .logo-section__cards {
    gap: 20px;
  }

  .brand-card {
    min-height: 188px;
    padding: 24px;
  }

  .brand-card img {
    max-height: 138px;
  }

  .site-footer__content {
    padding: 30px 20px;
    gap: 18px;
  }

  .site-footer__bottom {
    flex-wrap: wrap;
    row-gap: 0.2rem;
  }
}
