* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #eef6f7;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
}

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

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

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

.brand-block,
.hero-content,
.contact-strip,
.services-section h2,
.services-section .gold-line,
.service-card,
.quote-section,
.info-card,
.faq-section,
.cta-banner,
.contact-cards,
.site-footer {
  opacity: 0;
  animation: calm-reveal 760ms ease-out forwards;
  will-change: opacity, transform;
}

.brand-block {
  animation-delay: 80ms;
}

.hero-content {
  animation-delay: 220ms;
}

.contact-strip {
  animation-delay: 380ms;
}

.services-section h2,
.services-section .gold-line {
  animation-delay: 520ms;
}

.service-card:nth-child(1) {
  animation-delay: 640ms;
}

.service-card:nth-child(2) {
  animation-delay: 740ms;
}

.service-card:nth-child(3) {
  animation-delay: 840ms;
}

.service-card:nth-child(4) {
  animation-delay: 940ms;
}

.service-card:nth-child(5) {
  animation-delay: 1040ms;
}

.service-card:nth-child(6) {
  animation-delay: 1140ms;
}

.quote-section {
  animation-delay: 1240ms;
}

.info-card:nth-child(1) {
  animation-delay: 1360ms;
}

.info-card:nth-child(2) {
  animation-delay: 1460ms;
}

.info-card:nth-child(3) {
  animation-delay: 1560ms;
}

.faq-section {
  animation-delay: 1680ms;
}

.cta-banner {
  animation-delay: 1800ms;
}

.contact-cards {
  animation-delay: 1920ms;
}

.site-footer {
  animation-delay: 2040ms;
}

.legal-footer {
  animation-delay: 520ms;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .brand-block,
  .hero-content,
  .contact-strip,
  .services-section h2,
  .services-section .gold-line,
  .service-card,
  .quote-section,
  .info-card,
  .faq-section,
  .cta-banner,
  .contact-cards,
  .site-footer {
    opacity: 1;
    animation: none;
    transform: none;
  }

}

.page-shell {
  width: 100%;
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfd 38%, #f6fafb 100%);
  overflow: hidden;
}

.site-sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 8px 18px;
  border-bottom: 1px solid rgba(0, 92, 107, 0.13);
  background: rgba(248, 251, 251, 0.94);
  box-shadow: 0 10px 24px rgba(0, 92, 107, 0.08);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity 180ms ease, transform 180ms ease;
}

body.has-scrolled .site-sticky-header {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-sticky-header .brand-block {
  grid-template-columns: auto auto;
  grid-template-areas:
    "logo name"
    "logo subtitle";
  gap: 0 12px;
  text-align: left;
}

.site-sticky-header .brand-logo {
  width: 46px;
}

.site-sticky-header .brand-name {
  font-size: clamp(1.18rem, 1.7vw, 1.5rem);
  line-height: 1.05;
}

.site-sticky-header .brand-subtitle {
  font-size: clamp(0.82rem, 1vw, 0.94rem);
  line-height: 1.18;
}

.hero {
  position: relative;
  min-height: 566px;
  padding: 34px 24px 14px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.52) 34%, rgba(255, 255, 255, 0) 68%),
    linear-gradient(180deg, #f8fbfb 0%, #eef4f5 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.58;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.18) 35%, rgba(255, 255, 255, 0.18) 65%, rgba(255, 255, 255, 0.72) 100%),
    repeating-linear-gradient(90deg, rgba(0, 92, 107, 0.06) 0 1px, transparent 1px 16px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -20% -8% -16%;
  z-index: 0;
  opacity: 0.46;
  background:
    repeating-radial-gradient(ellipse at 50% 36%, transparent 0 58px, rgba(0, 92, 107, 0.055) 59px, transparent 60px 112px);
  pointer-events: none;
}

.brand-block {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "logo"
    "name"
    "subtitle";
  justify-content: center;
  align-items: center;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.brand-logo {
  grid-area: logo;
  width: 86px;
  height: auto;
}

.brand-name {
  grid-area: name;
  margin: 0;
  color: var(--color-petrol-dark);
  font-family: var(--font-heading);
  font-size: clamp(2.06rem, 3.45vw, 3.16rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.brand-subtitle {
  grid-area: subtitle;
  margin: 0;
  color: #263f48;
  font-size: clamp(1rem, 1.32vw, 1.18rem);
  font-weight: 500;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin: 32px auto 0;
}

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

h1 {
  margin-bottom: 16px;
  color: var(--color-petrol-dark);
  font-family: var(--font-heading);
  font-size: clamp(2.45rem, 4vw, 3.82rem);
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-text {
  margin-bottom: 25px;
  color: #25404a;
  font-size: clamp(1rem, 1.32vw, 1.15rem);
  line-height: 1.46;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 42px;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 26px rgba(0, 92, 107, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 92, 107, 0.22);
}

.btn > img {
  width: 30px;
  height: 30px;
}

.btn-primary {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-petrol) 0%, var(--color-petrol-deep) 100%);
}

.btn-primary > img {
  filter: brightness(0) invert(1);
}

.btn-primary > img.calendar-icon-generated {
  filter: none;
}

.btn-secondary {
  color: #094857;
  background: linear-gradient(135deg, #f9ddb0 0%, var(--color-gold) 100%);
  box-shadow: none;
}

.contact-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: min(100% - var(--content-pad), 1460px);
  margin: 20px auto 0;
  padding: 16px 18px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(3, 79, 93, 0.06);
  backdrop-filter: blur(12px);
}

.contact-item {
  display: grid;
  grid-template-rows: 36px minmax(48px, auto);
  align-items: center;
  justify-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 92px;
  color: #183943;
  text-align: center;
}

.contact-item + .contact-item {
  border-left: 1px solid var(--color-line);
}

.contact-item img {
  display: block;
  justify-self: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
}

.contact-item a,
.contact-cards a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.contact-item a:hover,
.contact-item a:focus-visible,
.contact-cards a:hover,
.contact-cards a:focus-visible {
  color: var(--color-petrol);
  text-decoration-color: currentColor;
}

.section {
  padding: 46px 24px 0;
}

.section h2,
.faq-section h2 {
  margin-bottom: 6px;
  color: var(--color-petrol-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.1;
  text-align: center;
}

.gold-line {
  display: block;
  width: 44px;
  height: 3px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: var(--color-gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px 20px;
  width: min(100% - var(--content-pad), var(--content-max));
  margin: 0 auto;
}

.service-card,
.info-card,
.contact-cards article,
.faq-item {
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.service-card {
  display: grid;
  grid-column: span 2;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  min-height: 188px;
  padding: 28px 28px;
  border-radius: var(--radius-card);
  text-align: left;
}

.service-card:nth-last-child(2):nth-child(3n + 1) {
  grid-column: 2 / span 2;
}

.icon-circle {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: #e8f1f3;
}

.icon-circle img {
  width: 50px;
  height: 50px;
}

.icon-circle.large {
  width: 108px;
  height: 108px;
  background: #f1e8dc;
}

.icon-circle.large img {
  width: 66px;
  height: 66px;
}

.service-card h3,
.info-card h2,
.info-card h3,
.contact-cards h3 {
  color: var(--color-petrol-dark);
  font-family: var(--font-heading);
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 1.28rem;
  line-height: 1.1;
}

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

.service-card p {
  margin: 0;
  color: #24414a;
  font-size: 1rem;
}

.quote-section {
  width: min(100% - var(--content-pad), var(--content-max));
  margin: 46px auto 0;
  padding: 0 24px;
  text-align: center;
}

.quote-section figure {
  position: relative;
  margin: 0;
  padding: 30px 36px 28px;
  border-top: 1px solid rgba(0, 92, 107, 0.16);
  border-bottom: 1px solid rgba(0, 92, 107, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.86) 18%, rgba(255, 255, 255, 0.86) 82%, rgba(255, 255, 255, 0));
}

.quote-section figure::before {
  content: "“";
  position: absolute;
  left: 50%;
  top: -25px;
  width: 54px;
  height: 54px;
  transform: translateX(-50%);
  border-radius: 999px;
  color: var(--color-petrol);
  background: #fbfdfd;
  font-family: Georgia, serif;
  font-size: 4.4rem;
  line-height: 0.98;
}

.quote-section blockquote {
  margin: 0 auto;
  max-width: 1000px;
  color: var(--color-petrol-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.34rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.32;
}

.quote-desktop-break {
  display: block;
}

.quote-section figcaption {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  color: #6a7c81;
  font-size: 0.98rem;
  font-weight: 700;
}

.quote-section figcaption::before,
.quote-section figcaption::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--color-gold);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 20px;
  width: min(100% - var(--content-pad), var(--content-max));
  margin: 46px auto 0;
}

.info-card {
  min-height: 304px;
  padding: 20px 22px;
  border-radius: var(--radius-card);
}

.info-card h2 {
  margin-bottom: 16px;
  font-size: 1.34rem;
}

.about-card h2,
.method-card h2 {
  margin-bottom: 28px;
}

.about-content {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 2rem;
}

.portrait-photo {
  justify-self: center;
  width: 112px;
  height: 204px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--color-line);
}

.about-highlights {
  display: grid;
  gap: 9px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  color: var(--color-petrol-dark);
  font-weight: 700;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.about-highlights img {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 999px;
}

.info-card p {
  margin-bottom: 12px;
  color: #273f47;
  font-size: 0.97rem;
}

.method-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(250,246,240,0.92));
}

.method-layout {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 2rem;
  text-align: left;
}

.method-layout .icon-circle {
  justify-self: center;
}

.method-card h3 {
  margin-bottom: 16px;
  font-size: 1.18rem;
  line-height: 1.3;
}

.hybrid-card {
  background: linear-gradient(135deg, rgba(242,249,250,0.98), rgba(255,255,255,0.92));
}

.hybrid-icons {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  gap: 22px;
  margin-bottom: 18px;
}

.hybrid-icons img {
  width: 84px;
  height: 84px;
  justify-self: center;
}

.hybrid-icons span {
  height: 78px;
  background: var(--color-line);
}

.hybrid-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #233e47;
  font-size: 0.97rem;
}

.hybrid-card li {
  position: relative;
  padding-left: 26px;
  margin: 5px 0;
}

.hybrid-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-petrol);
  font-weight: 900;
}

.faq-section {
  width: min(100% - var(--content-pad), var(--content-max));
  margin: 46px auto 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 22px;
}

.faq-item {
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(3, 79, 93, 0.04);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  min-height: 36px;
  padding: 8px 44px 8px 18px;
  cursor: pointer;
  color: #203941;
  font-weight: 600;
  list-style: none;
}

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

.faq-item summary::after {
  content: "⌄";
  position: absolute;
  right: 18px;
  top: 6px;
  color: var(--color-petrol);
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item p {
  margin: 0;
  padding: 0 18px 16px;
  color: #4d6870;
  font-size: 0.97rem;
}

.cta-banner {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(100% - var(--content-pad), var(--content-max));
  margin: 48px auto 42px;
  padding: 20px 34px;
  border-radius: 8px;
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(0, 109, 124, 0.96), rgba(0, 82, 96, 1)),
    url("assets/img/generated/cta-gradient-bg.png") center/cover no-repeat;
  box-shadow: 0 18px 40px rgba(0, 92, 107, 0.18);
}

.cta-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: var(--color-white);
}

.cta-icon img {
  width: 46px;
  height: 46px;
}

.cta-banner h2 {
  margin-bottom: 4px;
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.12;
}

.cta-banner p {
  margin: 0;
  max-width: 820px;
  opacity: 0.96;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: min(100% - var(--content-pad), var(--content-max));
  margin: 0 auto 44px;
  padding: 18px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
}

.contact-cards article {
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-areas:
    "icon title"
    "icon text";
  gap: 2px 16px;
  padding: 8px 22px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  text-align: left;
}

.contact-cards article + article {
  border-left: 1px solid var(--color-line);
}

.contact-cards img {
  grid-area: icon;
  width: 44px;
  height: 44px;
  margin-top: 2px;
}

.contact-cards h3 {
  grid-area: title;
  margin-bottom: 2px;
  font-size: 1rem;
}

.contact-cards p {
  grid-area: text;
  margin: 0;
  color: #263f48;
  font-size: 0.92rem;
  line-height: 1.45;
}

.legal-page {
  min-height: 100vh;
  padding-bottom: 54px;
}

.legal-hero {
  position: relative;
  padding: 34px 24px 28px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.56) 45%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(180deg, #f8fbfb 0%, #eef4f5 100%);
}

.legal-brand {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "logo"
    "name"
    "subtitle";
  justify-content: center;
  align-items: center;
  justify-items: center;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--color-petrol-dark);
  text-align: center;
}

.legal-brand img {
  width: 86px;
}

.legal-hero h1 {
  margin: 0;
}

.title-mobile {
  display: none;
}

.legal-content {
  display: grid;
  gap: 22px;
  width: min(100% - var(--content-pad), 1040px);
  margin: 46px auto 0;
}

.legal-card {
  padding: 28px 32px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.legal-card h2 {
  margin-bottom: 14px;
  color: var(--color-petrol-dark);
  font-family: var(--font-heading);
  font-size: 1.36rem;
  line-height: 1.18;
}

.legal-card p {
  margin: 0 0 18px;
  color: #273f47;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-contact-lines {
  display: grid;
  gap: 8px;
}

.legal-contact-lines span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.legal-contact-lines img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.legal-contact-spaced {
  margin-top: 24px;
}

.legal-card ul {
  margin: 0 0 18px;
  padding-left: 22px;
  color: #273f47;
}

.legal-card li {
  margin: 8px 0;
  line-height: 1.62;
}

.legal-card a {
  color: var(--color-petrol);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.legal-card a:hover,
.legal-card a:focus-visible {
  color: var(--color-petrol-dark);
  text-decoration-color: currentColor;
}

.legal-text p {
  line-height: 1.72;
}

.meta-edv-logo {
  width: min(210px, 100%);
  height: auto;
  margin: 22px 0 22px;
}

.site-footer {
  width: 100%;
  margin: 0;
  color: var(--color-white);
  background: linear-gradient(135deg, #006d7c 0%, #004e5d 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 24px;
  align-items: center;
  width: min(100% - var(--content-pad), var(--content-max));
  min-height: 104px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 72px;
  height: auto;
  border-radius: 4px;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.42rem;
  line-height: 1.15;
}

.footer-brand span {
  display: block;
  opacity: 0.9;
}

.footer-inner p {
  margin: 0;
  text-align: center;
  font-size: 0.92rem;
  opacity: 0.9;
}

.footer-inner nav {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  font-size: 0.95rem;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 1130px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    grid-column: auto;
  }

  .service-card:nth-last-child(2):nth-child(3n + 1) {
    grid-column: auto;
  }

  .service-card:nth-last-child(1):nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 20px) / 2);
  }
}

@media (min-width: 1050px) and (max-width: 1420px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .portrait-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-position: center center;
  }
}

@media (max-width: 1050px) {
  .services-grid,
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hybrid-card {
    grid-column: span 2;
  }

  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }

  .contact-cards article:nth-child(3) {
    border-left: 0;
  }

  .contact-strip {
    grid-template-columns: 1fr;
    max-width: 620px;
    padding: 10px 18px;
  }

  .contact-item {
    justify-content: center;
    padding: 14px 0;
  }

  .contact-item + .contact-item {
    border-top: 1px solid var(--color-line);
    border-left: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 28px 0;
    text-align: center;
  }

  .footer-brand,
  .footer-inner nav {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding-top: 26px;
  }

  .hero::before {
    opacity: 0.36;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.3) 38%, rgba(255, 255, 255, 0.3) 62%, rgba(255, 255, 255, 0.78) 100%),
      repeating-linear-gradient(90deg, rgba(0, 92, 107, 0.045) 0 1px, transparent 1px 18px);
  }

  .hero::after {
    opacity: 0.26;
  }

  .brand-logo {
    width: 70px;
  }

  .brand-block {
    gap: 7px;
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .brand-name,
  .brand-subtitle {
    min-width: 0;
  }

  .brand-name {
    font-size: clamp(1.95rem, 8vw, 2.28rem);
  }

  .brand-subtitle {
    font-size: 1rem;
  }

  .hero-content {
    margin-top: 30px;
  }

  h1 {
    font-size: clamp(2rem, 8.8vw, 2.64rem);
  }

  .hero-text br {
    display: none;
  }

  .contact-strip {
    grid-template-columns: 1fr;
    padding: 10px 18px;
  }

  .contact-item {
    justify-content: center;
    padding: 14px 0;
  }

  .contact-item + .contact-item {
    border-top: 1px solid var(--color-line);
    border-left: 0;
  }

  .services-grid,
  .info-grid,
  .faq-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 38px;
  }

  .quote-section {
    width: min(100% - 28px, var(--content-max));
    margin-top: 38px;
    padding: 0;
  }

  .quote-section figure {
    padding: 30px 16px 24px;
  }

  .quote-desktop-break {
    display: none;
  }

  .info-grid,
  .faq-section,
  .cta-banner,
  .contact-cards {
    width: min(100% - 28px, var(--content-max));
  }

  .info-grid,
  .faq-section {
    margin-top: 38px;
  }

  .cta-banner {
    margin-top: 40px;
    margin-bottom: 36px;
  }

  .contact-cards {
    margin-bottom: 38px;
  }

  .legal-content {
    width: min(100% - 28px, 1040px);
    margin-top: 38px;
  }

  .legal-card {
    padding: 24px 20px;
  }

  .hybrid-card {
    grid-column: auto;
  }

  .service-card {
    grid-template-columns: 1fr;
    grid-column: auto;
    justify-items: center;
    width: 100%;
    padding: 24px;
    text-align: center;
  }

  .service-card:nth-last-child(1):nth-child(odd) {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }

  .icon-circle {
    width: 78px;
    height: 78px;
  }

  .icon-circle img {
    width: 46px;
    height: 46px;
  }

  .about-content,
  .method-layout {
    grid-template-columns: 1fr;
  }

  .portrait-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-position: center center;
  }

  .cta-banner {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 24px;
  }

  .cta-banner .btn {
    width: 100%;
  }

  .contact-cards article,
  .contact-cards article + article,
  .contact-cards article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--color-line);
  }

  .contact-cards article:first-child {
    border-top: 0;
  }
}

@media (max-width: 420px) {
  body {
    font-size: 15px;
  }

  .brand-block {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 5px;
  }

  .brand-logo {
    width: 74px;
  }

  .brand-name {
    font-size: 2rem;
  }

  .title-desktop {
    display: none;
  }

  .title-mobile {
    display: inline;
  }

  .legal-brand {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  h1 {
    font-size: 2.16rem;
  }

  .btn {
    width: 100%;
    padding-inline: 18px;
  }
}

@media (min-width: 751px) and (max-width: 760px) {
  .portrait-photo {
    width: 112px;
    aspect-ratio: auto;
    height: 204px;
    object-position: center top;
  }
}
