:root {
  --ink: #1d2430;
  --muted: #687080;
  --paper: #fbfaf7;
  --line: #ddd7cd;
  --gold: #b58a3a;
  --burgundy: #7b2638;
  --green: #28594c;
  --white: #ffffff;
  --soft: #f2f4f1;
  --shadow: 0 24px 60px rgba(29, 36, 48, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    "Segoe UI",
    Arial,
    sans-serif;
  line-height: 1.6;
}

body.advokat-homepage,
body.advokat-article-page {
  background: var(--paper) !important;
  color: var(--ink);
  font-family:
    Inter,
    "Segoe UI",
    Arial,
    sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 30px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(221, 215, 205, 0.9);
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(18px);
}

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

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  color: #3d4654;
  font-size: 15px;
}

.main-nav a,
.header-phone {
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.main-nav a:hover,
.header-phone:hover {
  color: var(--burgundy);
}

.header-phone {
  font-weight: 700;
  white-space: nowrap;
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(29, 36, 48, 0.08);
}

.icon-button span {
  position: relative;
  width: 18px;
  height: 2px;
  background: var(--burgundy);
}

.icon-button span::before,
.icon-button span::after {
  position: absolute;
  right: 0;
  width: 9px;
  height: 2px;
  background: var(--burgundy);
  content: "";
}

.icon-button span::before {
  top: -4px;
  transform: rotate(35deg);
}

.icon-button span::after {
  top: 4px;
  transform: rotate(-35deg);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 78px));
  overflow: hidden;
  background: #1a1f26;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-color: #f0eee8;
  background-image:
    linear-gradient(90deg, rgba(17, 22, 30, 0.94) 0%, rgba(17, 22, 30, 0.82) 44%, rgba(17, 22, 30, 0.42) 58%, rgba(17, 22, 30, 0.14) 76%, rgba(17, 22, 30, 0.28) 100%),
    url("portrait.jpg"),
    linear-gradient(110deg, #18212c 0%, #2a302c 52%, #33383a 52%, #2a2f31 78%, #171d25 100%);
  background-position:
    center,
    right max(24px, calc((100vw - 1180px) / 2 + 24px)) center,
    center;
  background-repeat: no-repeat;
  background-size:
    cover,
    auto 100%,
    cover;
}

@media (min-width: 1500px) {
  .hero-media {
    background-position:
      center,
      right max(300px, calc((100vw - 1180px) / 2 + 10px)) center,
      center;
    background-size:
      cover,
      auto 102%,
      cover;
  }

  .hero h1 {
    max-width: 590px;
    font-size: clamp(54px, 4.2vw, 70px);
  }

  .hero-text {
    max-width: 560px;
  }
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(251, 250, 247, 0.18));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(80px, 12vh, 142px) 0 54px;
  color: var(--white);
}

.hero h1,
.hero h2,
.hero h3,
.hero p,
.hero dd {
  color: inherit;
}

.hero h1 {
  color: var(--white);
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: 1.02;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
}

.hero-text {
  max-width: 590px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(123, 38, 56, 0.26);
}

.button.primary:hover {
  background: #681d2e;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.button.secondary {
  border-color: var(--burgundy) !important;
  background: var(--burgundy) !important;
  color: var(--white) !important;
  box-shadow: 0 18px 34px rgba(123, 38, 56, 0.18);
}

.button.secondary:hover {
  background: #681d2e !important;
  color: var(--white) !important;
}

.hero-facts {
  max-width: 820px;
  margin: 54px 0 0;
  padding: 0;
}

.hero-facts div {
  min-width: 180px;
  padding: 18px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.hero-facts dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.quick-contact {
  display: grid;
  grid-template-columns: 1.12fr 1fr 1fr 1.08fr;
  width: min(1180px, calc(100% - 36px));
  margin: -34px auto 0;
  position: relative;
  z-index: 3;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quick-contact a {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

.quick-contact a:last-child {
  border-right: 0;
}

.contact-label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
}

.quick-contact span:last-child {
  font-weight: 800;
}

.quick-contact .map-logo-link {
  display: grid;
  align-content: center;
  gap: 8px;
}

.quick-contact .map-logo-link img {
  width: 142px;
  height: 38px;
  object-fit: contain;
  object-position: left center;
}

.quick-contact .map-logo-link span:last-child {
  line-height: 1.25;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 118px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading .kicker {
  grid-column: 1 / -1;
  margin-bottom: -36px;
}

.section-heading p:not(.kicker) {
  color: var(--muted);
  font-size: 18px;
}

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

.section-heading.compact .kicker {
  margin-bottom: 14px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 284px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(181, 138, 58, 0.55);
  box-shadow: 0 22px 48px rgba(29, 36, 48, 0.1);
}

.service-mark {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--gold);
  font-weight: 900;
}

.service-card p {
  color: var(--muted);
}

.service-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--burgundy);
  font-weight: 800;
}

.service-card-dark {
  background: var(--green);
  color: var(--white);
}

.service-card-dark h3 {
  color: var(--white);
}

.service-card-dark p,
.service-card-dark a {
  color: rgba(255, 255, 255, 0.78);
}

.process-section {
  padding-top: 24px;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process div {
  padding: 32px 32px 34px 0;
  border-right: 1px solid var(--line);
}

.process div + div {
  padding-left: 32px;
}

.process div:last-child {
  border-right: 0;
}

.process span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
}

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

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
  padding: clamp(72px, 10vw, 110px) max(18px, calc((100vw - 1180px) / 2));
  background: var(--white);
}

.about-image {
  min-height: 560px;
  overflow: hidden;
  background: var(--soft);
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
}

.about-copy {
  max-width: 610px;
}

.about-copy > p:not(.kicker) {
  color: var(--muted);
  font-size: 18px;
}

.about-points {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.about-points p {
  margin: 0;
  padding: 16px 0 16px 26px;
  border-top: 1px solid var(--line);
  color: #36404d;
  position: relative;
}

.about-points p::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "/";
  font-weight: 900;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: start;
}

.award-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.award-gallery a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(29, 36, 48, 0.08);
}

.award-gallery img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.2s ease;
}

.award-gallery a:hover img {
  transform: scale(1.03);
}

.trust-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.trust-list article {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.trust-list p {
  max-width: 720px;
  color: var(--muted);
}

.reviews {
  padding: clamp(72px, 10vw, 112px) max(18px, calc((100vw - 1180px) / 2));
  background: #232b35;
  color: var(--white);
}

.reviews h2,
.reviews h3,
.reviews p {
  color: inherit;
}

.reviews .section-heading {
  margin-bottom: 36px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

blockquote {
  margin: 0;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.advokat-homepage .reviews blockquote,
.advokat-article-page .reviews blockquote {
  background: rgba(255, 255, 255, 0.11);
}

.review-stars {
  margin-bottom: 16px;
  color: #e1b65d;
  font-size: 17px;
  letter-spacing: 0;
}

.advokat-homepage .reviews blockquote p,
.advokat-article-page .reviews blockquote p,
blockquote p {
  color: #ffffff !important;
  opacity: 1 !important;
  font-size: 17px;
}

cite {
  display: block;
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
}

.faq-section {
  padding-bottom: 36px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 22px 26px;
  color: var(--ink);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 118px) 0;
}

.contact-copy p:not(.kicker) {
  color: var(--muted);
  font-size: 18px;
}

.contact-details {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-details p {
  margin-bottom: 12px;
  color: #3f4855;
}

.contact-details a {
  color: var(--burgundy);
  font-weight: 800;
}

.notice {
  margin: 22px 0 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.notice.success {
  border-color: rgba(40, 89, 76, 0.35);
  color: var(--green);
}

.notice.error {
  border-color: rgba(123, 38, 56, 0.35);
  color: var(--burgundy);
}

.route-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.route-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(29, 36, 48, 0.07);
}

.route-buttons img {
  width: 34px;
  height: 28px;
  object-fit: contain;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 40px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #46505c;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfc8bd;
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  padding: 14px 15px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(181, 138, 58, 0.28);
  border-color: var(--gold);
}

textarea {
  resize: vertical;
}

.contact-form .button {
  width: 100%;
  cursor: pointer;
  font: inherit;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: stretch;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(72px, 9vw, 112px);
  padding: 0 0 8px;
}

.map-copy {
  padding: clamp(28px, 4vw, 42px);
  background: var(--ink);
  color: var(--white);
}

.map-copy h2,
.map-copy h3 {
  color: var(--white);
}

.map-copy p:not(.kicker) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.map-copy .route-buttons a {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  box-shadow: none;
}

.map-frame {
  min-height: 410px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 410px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 64px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

.article-hero {
  position: relative;
  padding: clamp(76px, 10vw, 132px) max(18px, calc((100vw - 1180px) / 2)) clamp(74px, 8vw, 108px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(22, 28, 37, 0.96) 0%, rgba(22, 28, 37, 0.86) 50%, rgba(22, 28, 37, 0.5) 100%),
    url("portrait.jpg") right max(22px, calc((100vw - 1180px) / 2 + 30px)) top / auto 100% no-repeat,
    #1d2430;
  color: var(--white);
}

.article-hero-inner {
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.article-hero h1,
.article-hero p {
  color: inherit;
}

.article-lead {
  max-width: 660px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: clamp(18px, 2vw, 22px);
}

.article-quick {
  margin-top: -36px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(34px, 5vw, 64px);
  align-items: start;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 8vw, 106px) 0 36px;
}

.article-content {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(29, 36, 48, 0.08);
}

.article-content h2,
.article-content h3 {
  margin-top: 32px;
  color: var(--ink);
}

.article-content h2:first-child,
.article-content h3:first-child {
  margin-top: 0;
}

.article-content p,
.article-content li {
  color: #4b5564;
  font-size: 18px;
}

.article-content a {
  color: var(--burgundy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content ul,
.article-content ol {
  padding-left: 24px;
}

.article-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
}

.sidebar-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(29, 36, 48, 0.08);
}

.sidebar-card.soft {
  background: var(--soft);
  box-shadow: none;
}

.sidebar-card h2 {
  font-size: 31px;
}

.sidebar-card p,
.sidebar-card li {
  color: var(--muted);
}

.sidebar-card ul {
  margin: 0;
  padding-left: 20px;
}

.related-services {
  padding-top: 36px;
}

.compact-grid .service-card {
  min-height: 230px;
}

.article-contact {
  padding-top: 42px;
}

@keyframes advokatFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-inner > *,
  .quick-contact,
  .section-heading,
  .service-card,
  .process div,
  .about-image,
  .about-copy,
  .award-gallery a,
  .trust-list article,
  .reviews blockquote,
  .faq-list details,
  .contact-copy,
  .contact-form,
  .map-copy,
  .map-frame,
  .article-hero-inner > *,
  .article-content,
  .article-sidebar {
    animation: advokatFadeUp 0.72s ease both;
  }

  .service-card:nth-child(2),
  .process div:nth-child(2),
  .reviews blockquote:nth-child(2),
  .award-gallery a:nth-child(2n) {
    animation-delay: 0.06s;
  }

  .service-card:nth-child(3),
  .process div:nth-child(3),
  .reviews blockquote:nth-child(3),
  .award-gallery a:nth-child(3n) {
    animation-delay: 0.12s;
  }

  .button,
  .route-buttons a,
  .quick-contact a,
  .icon-button {
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      background 0.2s ease,
      color 0.2s ease,
      border-color 0.2s ease;
  }

  .route-buttons a:hover,
  .quick-contact a:hover,
  .icon-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(29, 36, 48, 0.12);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 18px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background-image:
      linear-gradient(180deg, rgba(17, 22, 30, 0.8) 0%, rgba(17, 22, 30, 0.95) 100%),
      url("portrait.jpg");
    background-position:
      center,
      top right;
    background-repeat: no-repeat;
    background-size:
      cover,
      min(420px, 68vw) auto;
    background-color: #1a1f26;
  }

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

  .quick-contact,
  .section-heading,
  .service-grid,
  .process,
  .about,
  .trust-layout,
  .review-grid,
  .contact-section,
  .map-section,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-hero {
    background:
      linear-gradient(180deg, rgba(22, 28, 37, 0.78) 0%, rgba(22, 28, 37, 0.96) 72%),
      url("portrait.jpg") top right / min(420px, 68vw) auto no-repeat,
      #1d2430;
  }

  .article-sidebar {
    position: static;
  }

  .section-heading .kicker {
    margin-bottom: 14px;
  }

  .quick-contact {
    margin-top: 0;
  }

  .quick-contact a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-contact a:last-child {
    border-bottom: 0;
  }

  .process div,
  .process div + div {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process div:last-child {
    border-bottom: 0;
  }

  .about-image,
  .about-image img {
    min-height: 440px;
  }

  .award-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-section {
    margin-bottom: 72px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand img {
    width: 178px;
  }

  .header-phone {
    display: none;
  }

  .hero-inner {
    width: calc(100% - 32px);
    padding: 68px 0 42px;
  }

  .hero-media {
    background-image:
      linear-gradient(180deg, rgba(17, 22, 30, 0.74) 0%, rgba(17, 22, 30, 0.96) 70%),
      url("portrait.jpg");
    background-position:
      center,
      top right -30px;
    background-repeat: no-repeat;
    background-size:
      cover,
      300px auto;
    background-color: #1a1f26;
  }

  h1 {
    max-width: 540px;
    padding-top: 150px;
    font-size: 40px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-facts div {
    width: 100%;
    padding-left: 0;
  }

  .section,
  .quick-contact,
  .contact-section,
  .map-section,
  .article-layout {
    width: calc(100% - 32px);
  }

  .article-hero {
    padding: 58px 16px 66px;
    background:
      linear-gradient(180deg, rgba(22, 28, 37, 0.74) 0%, rgba(22, 28, 37, 0.96) 70%),
      url("portrait.jpg") top right -30px / 300px auto no-repeat,
      #1d2430;
  }

  .article-hero h1 {
    padding-top: 140px;
  }

  .article-content,
  .sidebar-card {
    padding: 22px;
  }

  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .service-mark {
    margin-bottom: 28px;
  }

  .about {
    padding-left: 16px;
    padding-right: 16px;
  }

  .reviews {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-form {
    padding: 22px;
  }

  .award-gallery {
    gap: 10px;
  }

  .award-gallery img {
    height: 150px;
  }

  .route-buttons {
    display: grid;
  }

  .map-copy {
    padding: 24px;
  }

  .footer {
    display: grid;
  }
}
