:root {
  --color-orange: #ff7a21;
  --color-text: #222222;
  --color-muted: #5f6368;
  --color-border: #d9d9d9;
  --color-dark: #252932;
  --header-height: 85px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--color-text);
  background: #ffffff;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100vw;
  max-width: 100%;

  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.16);
}

.top-header {
  height: 34px;
  border-bottom: 1px solid var(--color-border);
  font-size: 12px;
  color: #4e555c;
}

.top-header-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
}

.contact-info {
  display: flex;
  gap: 28px;
  align-items: center;
}

.contact-info a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.contact-info i {
  color: #303842;
  font-size: 13px;
}

.appointment-link {
  display: inline-flex;
  min-width: 151px;
  height: 34px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-orange);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
}

.appointment-link:hover {
  color: #ffffff;
  background: #ee6d18;
}

.main-nav {
  min-height: 51px;
  padding: 0;
}

.nav-container {
  position: relative;
  min-height: 51px;
}

.navbar-collapse {
  justify-content: space-between;
}

.navbar-nav {
  align-items: center;
  gap: 24px;
}

.nav-left {
  margin-left: 224px;
}

.nav-right {
  margin-right: 128px;
}

.nav-link {
  padding: 0 !important;
  color: #3f4248;
  font-size: 12px;
  font-weight: 700;
  line-height: 51px;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-orange);
}

.brand-logo {
  position: absolute;
  top: -34px;
  left: 50%;
  z-index: 2;
  display: block;
  width: 122px;
  height: 154px;
  transform: translateX(-50%);
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-section {
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-slider,
.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item,
.hero-slide {
  height: calc(100vh - var(--header-height));
  min-height: 620px;
}

.hero-slide {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.hero-slide-one {
  background-image: url("../img/herobanner.png");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 25, 16, 0.27);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100%;
  max-width: 760px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 76px;
  text-align: center;
  color: #ffffff;
}

.hero-title {
  margin: 0 0 22px;
  max-width: 100%;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  overflow-wrap: break-word;
  /*text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);*/
    color: #ff7a21;
}

.hero-text {
  margin: 0 0 28px;
  max-width: 100%;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  overflow-wrap: break-word;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-btn {
  display: inline-flex;
  min-width: 320px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  background: #ffffff;
  color: #161616;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hero-btn:hover {
  background: var(--color-orange);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-slider.owl-theme .owl-dots,
.hero-slider.owl-theme .owl-nav {
  display: none;
}

.about-section {
  padding: 104px 0 92px;
  background: #ffffff;
}

.experience-box {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 190px;
  align-items: center;
  justify-content: center;
  padding: 0 52px;
  color: #3d3d3d;
}

.bracket {
  position: absolute;
  top: 50%;
  color: #464646;
  font-size: 170px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
}

.bracket-left {
  left: 0;
}

.bracket-right {
  right: 0;
}

.experience-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.experience-number {
  color: var(--color-orange);
  font-size: clamp(76px, 5vw, 88px);
  font-weight: 600;
  line-height: 0.9;
}

.experience-text {
  color: #303236;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.32;
  text-align:center;
}

.about-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--color-orange);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.about-title {
  margin: 0 0 16px;
  color: #303236;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: 0;
}

.about-title span {
  color: var(--color-orange);
}

.about-subtitle {
  margin: 0;
  color: #3a3d43;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
}

.about-copy {
  padding-left: 0px;
}

.about-copy p {
  margin: 0 0 52px;
  color: #565656;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.55;
}

.about-copy p span {
  color: var(--color-orange);
}

.about-btn {
  display: inline-flex;
  min-width: 306px;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 999px;
  background: #303740;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.about-btn:hover {
  background: var(--color-orange);
  color: #ffffff;
  transform: translateY(-2px);
}

.work-section {
  padding: 43px 0 56px;
  background: #22262c;
}

.work-card {
  position: relative;
  height: 596px;
  overflow: hidden;
  background: #111418;
  color: #ffffff;
}

.work-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.05) 45%, rgba(0, 0, 0, 0.44) 100%);
}

.work-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 49px 22px 40px;
  color: #ffffff;
}

.work-card h3 {
  margin: 0;
  max-width: 270px;
  color: #ffffff;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: 0;
}

.work-card p {
  max-width: 280px;
  min-height: 78px;
  margin: auto 0 28px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.work-card a {
  display: inline-flex;
  width: fit-content;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.work-card:hover img {
  transform: scale(1.05);
}

.work-card:hover a {
  color: var(--color-orange);
}

.why-choose-section {
  padding: 94px 0 92px;
  background: #ffffff;
}

.why-choose-image {
  width: 100%;
  max-width: 620px;
}

.why-choose-image img {
  display: block;
  width: 100%;
  aspect-ratio: 620 / 540;
  object-fit: cover;
}

.why-choose-content {
  max-width: 640px;
  padding-left: 8px;
}

.why-choose-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--color-orange);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.why-choose-title {
  margin: 0 0 22px;
  color: #303236;
  font-size: 39px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.why-choose-title span {
  color: var(--color-orange);
}

.why-choose-content p {
  max-width: 630px;
  margin: 0 0 22px;
  color: #565656;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.38;
}

.why-choose-btn {
  display: inline-flex;
  min-width: 268px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-radius: 999px;
  background: var(--color-orange);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.why-choose-btn:hover {
  background: #303740;
  color: #ffffff;
  transform: translateY(-2px);
}

.services-section {
  padding: 56px 0 62px;
  background: #ffffff;
}

.services-heading {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
}

.services-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--color-orange);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.services-title {
  margin: 0 0 12px;
  color: #252932;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.services-heading p {
  margin: 0;
  color: #565656;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
}

.service-card {
  display: flex;
  height: 100%;
  min-height: 484px;
  flex-direction: column;
  padding: 19px 16px 34px;
  background: #303740;
  color: #ffffff;
}

.service-card img {
  display: block;
  width: 100%;
  aspect-ratio: 390 / 221;
  object-fit: cover;
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-top: 24px;
}

.service-card h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.service-card p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.33;
}

.service-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  color: var(--color-orange);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.service-card a:hover {
  color: #ffffff;
}

.portfolio-section {
  padding: 38px 0 54px;
  background: #ffffff;
}

.portfolio-heading {
  max-width: 940px;
  margin: 0 auto 48px;
  text-align: center;
}

.portfolio-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--color-orange);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.portfolio-title {
  margin: 0;
  color: #303236;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.portfolio-title span {
  color: var(--color-orange);
}

.portfolio-card {
  position: relative;
  min-height: 332px;
  overflow: hidden;
  background: #1f252b;
  color: #ffffff;
}

.portfolio-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 332px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.18) 43%, rgba(0, 0, 0, 0.82) 100%);
}

.portfolio-card h3 {
  position: absolute;
  left: 22px;
  right: 20px;
  bottom: 21px;
  margin: 0;
  color: #ffffff;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.process-section {
  position: relative;
  overflow: hidden;
  padding: 129px 0 116px;
  background: #0d1114;
  color: #ffffff;
}

.process-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(7, 10, 12, 0.92) 0%, rgba(10, 13, 15, 0.86) 48%, rgba(7, 10, 12, 0.94) 100%), url("../img/process.png");
  background-position: center;
  background-size: cover;
  filter: brightness(0.72);
  transform: scale(1.03);
}

.process-section .container {
  position: relative;
  z-index: 1;
}

.process-image {
  width: 100%;
  max-width: 760px;
  margin-left: 38px;
}

.process-image img {
  display: block;
  width: 100%;
  aspect-ratio: 760 / 631;
  object-fit: cover;
}

.process-content {
  max-width: 620px;
  padding-left: 46px;
}

.process-kicker {
  display: block;
  margin-bottom: 19px;
  color: var(--color-orange);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.process-title {
  margin: 0 0 32px;
  color: #ffffff;
  font-size: 41px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
}

.process-content p {
  max-width: 560px;
  margin: 0 0 52px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}

.process-btn {
  display: inline-flex;
  min-width: 286px;
  min-height: 59px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 999px;
  background: var(--color-orange);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.process-btn:hover {
  background: #ffffff;
  color: #303740;
  transform: translateY(-2px);
}

.testimonials-section {
  padding: 132px 0 62px;
  background: #ffffff;
}

.testimonials-intro {
  margin-bottom: 68px;
}

.testimonials-kicker {
  display: block;
  margin-bottom: 17px;
  color: var(--color-orange);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.testimonials-title {
  margin: 0;
  color: #303740;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: 0;
}

.testimonials-title span {
  color: var(--color-orange);
}

.testimonials-summary {
  max-width: 650px;
  margin: 28px 0 0;
  color: #303236;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.36;
}

.testimonial-card {
  height: 100%;

  padding: 30px;
  background: #f4f4f4;
  color: #303236;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-bottom: 10px;
}

.testimonial-author img {
  display: block;
  width: 116px;
  height: 116px;
  flex: 0 0 116px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h3 {
  margin: 0 0 7px;
  color: #050505;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.testimonial-stars {
  color: var(--color-orange);
  font-size: 22px;
  line-height: 1;
  letter-spacing: 1px;
}

.testimonial-card p {
  margin: 0;
  color: #303236;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.43;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 58px;
}

.testimonial-dots span {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #050505;
}

.testimonial-dots .active {
  background: var(--color-orange);
}

.blog-section {
  padding: 78px 0 92px;
  background: #242832;
  color: #ffffff;
}

.blog-intro {
  margin-bottom: 70px;
}

.blog-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--color-orange);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.blog-title {
  margin: 0;
  color: #ffffff;
  font-size: 39px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.blog-summary {
  max-width: 570px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.38;
}

.blog-card {
  height: 100%;
  color: #ffffff;
}

.blog-card img {
  display: block;
  width: 100%;
  aspect-ratio: 389 / 325;
  object-fit: cover;
}

.blog-card-body {
  display: flex;
  min-height: 174px;
  flex-direction: column;
  padding-top: 36px;
}

.blog-card p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
}

.blog-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  color: var(--color-orange);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.blog-card a:hover {
  color: #ffffff;
}

.site-footer {
  background: #ffffff;
  color: #3d3f43;
}

.footer-main {
  border-top: 8px solid var(--color-orange);
  padding: 44px 0 72px;
}

.footer-about {
  max-width: 510px;
}

.footer-logo {
  display: block;
  width: 202px;
  margin: 0 0 35px 4px;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-about p {
  margin: 0;
  color: #4b4d50;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.34;
}

.footer-column {
  min-height: 244px;
  padding-left: 90px;
  border-left: 1px dashed #a6a8aa;
}

.footer-column h2 {
  margin: 55px 0 26px;
  color: #303236;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.footer-links ul,
.footer-contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 19px;
}

.footer-links a {
  color: #3d3f43;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.1;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--color-orange);
}

.footer-contact li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
  color: #3d3f43;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

.footer-contact li i {
  width: 20px;
  flex: 0 0 20px;
  color: var(--color-orange);
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
}

.footer-contact a,
.footer-contact span {
  color: inherit;
}

.footer-contact h3 {
  margin: 34px 0 24px;
  color: #303236;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.footer-social {
  display: flex;
  gap: 17px;
  align-items: center;
}

.footer-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #70a9ba;
  color: #ffffff;
  font-size: 21px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: var(--color-orange);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 27px 0 23px;
  background: #70a9ba;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}

.service-page {
  padding-top: var(--header-height);
}

.service-hero {
  position: relative;
  display: flex;
  min-height: 445px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url("../img/service-banner.png");
  background-position: center;
  background-size: cover;
  color: #ffffff;
  text-align: center;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 20, 0.42);
}

.service-hero .container {
  position: relative;
  z-index: 1;
}

.service-hero-content {
  max-width: 620px;
  margin: 0 auto;
  padding-top: 42px;
}

.service-hero h1 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.1;
}

.service-hero p {
  max-width: 460px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
}

.service-offerings {
  padding: 98px 0 104px;
  background: #f5f5f5;
}

.service-page-heading {
  margin-bottom: 70px;
  text-align: center;
}

.service-page-heading span,
.steps-copy span,
.dream-content span {
  display: block;
  color: var(--color-orange);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.service-page-heading span {
  margin-bottom: 12px;
}

.service-page-heading h2 {
  margin: 0;
  color: #303740;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.12;
}

.service-offer-card {
  height: 100%;
  min-height: 475px;
  padding: 62px 28px 55px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(20, 25, 30, 0.04);
}

.service-icon {
  position: relative;
  display: flex;
  width: 94px;
  height: 72px;
  align-items: center;
  margin-bottom: 18px;
}

.service-icon::before {
  position: absolute;
  right: 0;
  top: 2px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #d7e8ee;
  content: "";
}

.service-icon img {
  position: relative;
  z-index: 1;
  display: block;
  width: 62px;
  max-height: 62px;
  object-fit: contain;
}

.service-offer-card h3 {
  margin: 0 0 24px;
  color: #303740;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.05;
}

.service-offer-card p {
  margin: 0 0 36px;
  color: #40444a;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.38;
}

.service-offer-card a {
  color: var(--color-orange);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.service-steps {
  padding: 106px 0 102px;
  background: #e9e9e9;
}

.steps-copy {
  max-width: 410px;
}

.steps-copy span {
  margin-bottom: 15px;
}

.steps-copy h2 {
  margin: 0 0 34px;
  color: #303740;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.1;
}

.steps-copy h2 strong {
  color: var(--color-orange);
  font-weight: 800;
}

.steps-copy p {
  margin: 0;
  color: #40444a;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.43;
}

.step-card {
  position: relative;
  min-height: 383px;
  overflow: hidden;
  padding: 45px 20px 34px;
  background: #ffffff;
  color: #303740;
}

.step-card img,
.step-overlay {
  position: absolute;
  inset: 0;
}

.step-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-overlay {
  background: rgba(0, 0, 0, 0.42);
}

.step-card span,
.step-card h3,
.step-card p {
  position: relative;
  z-index: 1;
}

.step-card span {
  display: block;
  margin-bottom: 126px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(48, 55, 64, 0.9);
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
}

.step-card h3 {
  margin: 0 0 18px;
  color: #303740;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.13;
}

.step-card p {
  margin: 0;
  color: #303740;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
}

.step-card-featured {
  color: #ffffff;
}

.step-card-featured span {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.78);
}

.step-card-featured h3,
.step-card-featured p {
  color: #ffffff;
}

.service-testimonials {
  padding-top: 106px;
}

.dream-section {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #242832 50%, #242832 100%);
}

.dream-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  align-items: stretch;
}

.dream-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.dream-content {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  justify-content: center;
  padding: 70px 48px;
  background: #242832;
  color: #ffffff;
}

.dream-content span {
  margin-bottom: 18px;
}

.dream-content h2 {
  margin: 0 0 48px;
  color: #ffffff;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
}

.dream-content a {
  display: inline-flex;
  width: fit-content;
  min-width: 176px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 999px;
  background: var(--color-orange);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.dream-content a:hover {
  background: #ffffff;
  color: #303740;
  transform: translateY(-2px);
}

.portfolio-page {
  padding-top: var(--header-height);
}

.portfolio-hero {
  position: relative;
  display: flex;
  min-height: 447px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url("../img/service-banner.png");
  background-position: center;
  background-size: cover;
  color: #ffffff;
  text-align: center;
}

.portfolio-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 15, 18, 0.34);
}

.portfolio-hero .container {
  position: relative;
  z-index: 1;
}

.portfolio-hero-content {
  max-width: 690px;
  margin: 0 auto;
  padding-top: 42px;
}

.portfolio-hero h1 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.08;
}

.portfolio-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
}

.portfolio-gallery-section {
  padding: 116px 0 80px;
  background: #ffffff;
}

.portfolio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.portfolio-gallery-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.portfolio-gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 306px;
  background: #e7e7e7;
}

.portfolio-gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}

.portfolio-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 306px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-gallery-item-tall,
.portfolio-gallery-item-tall img {
  min-height: 499px;
}

.portfolio-gallery-item-feature,
.portfolio-gallery-item-feature img {
  min-height: 908px;
}

.portfolio-gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.62);
  color: #ffffff;
  font-size: 31px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.portfolio-gallery-item:hover .portfolio-gallery-overlay {
  opacity: 1;
}

.portfolio-gallery-item:hover img {
  transform: scale(1.04);
}

.portfolio-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 76px;
}

.portfolio-more-btn {
  display: inline-flex;
  min-width: 171px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 999px;
  background: var(--color-orange);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.portfolio-more-btn:hover {
  background: #303740;
  color: #ffffff;
  transform: translateY(-2px);
}

.contact-page {
  padding-top: var(--header-height);
}

.contact-hero {
  position: relative;
  display: flex;
  min-height: 596px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url("../img/contact-bg.png");
  background-position: center;
  background-size: cover;
  color: #ffffff;
  text-align: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
}

.contact-hero .container {
  position: relative;
  z-index: 1;
}

.contact-hero-content {
  max-width: 710px;
  margin: 0 auto;
  padding-top: 80px;
}

.contact-hero h1 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 55px;
  font-weight: 800;
  line-height: 1.05;
}

.contact-hero p {
  margin: 0 auto;
  max-width: 690px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.28;
}

.contact-info-section {
  padding: 112px 0 20px;
  background: #ffffff;
}

.contact-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--color-orange);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.contact-details h2,
.contact-form-wrap h2 {
  margin: 0;
  color: #303740;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.contact-details h2 span {
  color: var(--color-orange);
}

.contact-details-text {
  max-width: 420px;
  margin: 36px 0 42px;
  color: #4b4d50;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}

.contact-detail-list {
  max-width: 410px;
}

.contact-detail-item {
  display: flex;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid #e5e5e5;
}

.contact-detail-item i {
  width: 25px;
  flex: 0 0 25px;
  color: #b9bec3;
  font-size: 25px;
  line-height: 1.2;
  text-align: center;
}

.contact-detail-item h3 {
  margin: 0 0 8px;
  color: var(--color-orange);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.contact-detail-item p {
  margin: 0;
  color: #4b4d50;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.contact-detail-item a {
  color: inherit;
}

.contact-detail-item a:hover {
  color: var(--color-orange);
}

.contact-map img {
  display: block;
  width: 100%;
  aspect-ratio: 650 / 577;
  object-fit: cover;
}

.contact-form-section {
  padding: 0 0 120px;
  background: #ffffff;
}

.contact-form-image img {
  display: block;
  width: 100%;
  aspect-ratio: 650 / 697;
  object-fit: cover;
}

.contact-form-wrap {
  max-width: 590px;
  margin-left: auto;
}

.contact-form-wrap p {
  margin: 18px 0 29px;
  color: #4b4d50;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.contact-form-wrap p span {
  color: var(--color-orange);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7d7d7;
  border-radius: 0;
  background: #ffffff;
  color: #303740;
  font-family: inherit;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s ease;
}

.contact-form input {
  height: 45px;
  padding: 0 24px;
}

.contact-form textarea {
  min-height: 180px;
  padding: 24px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-orange);
}

.contact-form button {
  display: inline-flex;
  min-width: 246px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 42px;
  border: 0;
  border-radius: 999px;
  background: #303740;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background: var(--color-orange);
  transform: translateY(-2px);
}

.about-page {
  padding-top: var(--header-height);
}

.about-hero {
  position: relative;
  display: flex;
  min-height: 445px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url("../img/about-banner.png");
  background-position: center;
  background-size: cover;
  color: #ffffff;
  text-align: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 13, 16, 0.38);
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.about-hero-content {
  max-width: 690px;
  margin: 0 auto;
  padding-top: 42px;
}

.about-hero h1 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.08;
}

.about-hero p {
  max-width: 610px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.about-story-section {
  padding: 76px 0 78px;
  background: #ffffff;
}

.about-page-heading {
  margin-bottom: 42px;
  text-align: center;
}

.about-page-heading span {
  display: block;
  margin-bottom: 14px;
  color: var(--color-orange);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.about-page-heading h2 {
  margin: 0;
  color: #303740;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.12;
}

.about-story-row {
  margin-bottom: 96px;
}

.about-story-image img {
  display: block;
  width: 100%;
  aspect-ratio: 456 / 460;
  object-fit: cover;
}

.about-story-copy {
  max-width: 470px;
}

.about-story-copy p {
  margin: 0 0 26px;
  color: #303740;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.about-story-copy p:last-child {
  margin-bottom: 0;
}

.about-split-row {
  margin-bottom: 78px;
}

.about-split-row:last-child {
  margin-bottom: 0;
}

.about-split-copy h2 {
  margin: 0 0 28px;
  color: #000000;
  font-size: 35px;
  font-weight: 800;
  line-height: 1.1;
}

.about-split-copy p {
  margin: 0;
  color: #303740;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.about-split-image img {
  display: block;
  width: 100%;
  aspect-ratio: 389 / 305;
  object-fit: cover;
}

@media (max-width: 1399.98px) {
  .experience-box {
    padding: 0 34px;
  }

  .bracket {
    font-size: 150px;
  }

  .experience-content {
    gap: 8px;
  }

  .experience-number {
    font-size: 72px;
  }

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

@media (max-width: 1199.98px) {
  .nav-left {
    margin-left: 128px;
  }

  .nav-right {
    margin-right: 72px;
  }

  .navbar-nav {
    gap: 18px;
  }

  .about-title {
    font-size: 38px;
  }

  .about-copy {
    padding-left: 0;
  }

  .about-copy p {
    font-size: 17px;
  }

  .work-card {
    height: 520px;
  }

  .work-card h3 {
    font-size: 24px;
  }

  .why-choose-title {
    font-size: 34px;
  }

  .why-choose-content p {
    font-size: 16px;
  }

  .services-title {
    font-size: 40px;
  }

  .service-card {
    min-height: 450px;
  }

  .service-card h3 {
    font-size: 26px;
  }

  .service-card p {
    font-size: 17px;
  }

  .portfolio-title {
    font-size: 31px;
  }

  .portfolio-card,
  .portfolio-card img {
    min-height: 300px;
  }

  .portfolio-card h3 {
    font-size: 24px;
  }

  .process-section {
    padding: 104px 0;
  }

  .process-image {
    margin-left: 0;
  }

  .process-content {
    padding-left: 20px;
  }

  .process-title {
    font-size: 35px;
  }

  .process-content p {
    font-size: 17px;
  }

  .testimonials-title {
    font-size: 36px;
  }

  .testimonial-card {
    padding: 44px 34px 38px;
  }

  .testimonial-author {
    gap: 28px;
  }

  .blog-title {
    font-size: 35px;
  }

  .blog-card p {
    font-size: 16px;
  }

  .footer-column {
    padding-left: 48px;
  }

  .footer-links a {
    font-size: 20px;
  }

  .footer-contact li {
    font-size: 17px;
  }

  .service-offer-card {
    min-height: 500px;
  }

  .dream-content h2 {
    font-size: 32px;
  }

  .portfolio-gallery-item,
  .portfolio-gallery-item img {
    min-height: 270px;
  }

  .portfolio-gallery-item-tall,
  .portfolio-gallery-item-tall img {
    min-height: 440px;
  }

  .portfolio-gallery-item-feature,
  .portfolio-gallery-item-feature img {
    min-height: 804px;
  }

  .contact-hero {
    min-height: 520px;
  }

  .contact-hero h1 {
    font-size: 48px;
  }

  .contact-form-wrap {
    padding-left: 16px;
  }

  .about-hero {
    min-height: 410px;
  }

  .about-split-copy h2 {
    font-size: 30px;
  }
}

@media (max-width: 991.98px) {
  :root {
    --header-height: 70px;
  }

  body {
    position: relative;
  }

  .site-header,
  .main-nav,
  .nav-container,
  .navbar-collapse,
  main,
  section {
    max-width: 100vw;
  }

  .main-nav,
  .nav-container {
    min-height: 70px;
  }

  .nav-container {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
  }

  .brand-logo {
    top: 6px;
    left: 12px;
    width: 48px;
    height: 58px;
    transform: none;
  }

  .navbar-collapse {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    padding: 12px 16px 18px;
    border-top: 1px solid var(--color-border);
    background: #ffffff;
  }

  .navbar-toggler {
    flex-shrink: 0;
    margin-right: 0;
  }

  .navbar-nav {
    align-items: flex-start;
    gap: 0;
  }

  .nav-left,
  .nav-right {
    margin: 0;
  }

  .nav-link {
    line-height: 38px;
  }

  .hero-slider,
  .hero-slider .owl-stage-outer,
  .hero-slider .owl-stage,
  .hero-slider .owl-item,
  .hero-slide {
    min-height: 620px;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-title {
    font-size: 40px;
  }

  .about-section {
    padding: 76px 0;
  }

  .experience-box {
    max-width: 360px;
    margin: 0 auto;
  }

  .about-title-wrap,
  .about-copy {
    text-align: center;
  }

  .about-copy p {
    margin-bottom: 34px;
  }

  .work-card {
    height: 520px;
  }

  .why-choose-section {
    padding: 76px 0;
  }

  .why-choose-image {
    max-width: 620px;
    margin: 0 auto;
  }

  .why-choose-content {
    max-width: 680px;
    margin: 0 auto;
    padding-left: 0;
    text-align: center;
  }

  .why-choose-content p {
    max-width: none;
  }

  .services-section {
    padding: 70px 0;
  }

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

  .service-card {
    min-height: 430px;
  }

  .portfolio-section {
    padding: 64px 0;
  }

  .portfolio-heading {
    margin-bottom: 34px;
  }

  .process-section {
    padding: 76px 0;
  }

  .process-image {
    max-width: 720px;
    margin: 0 auto;
  }

  .process-content {
    max-width: 680px;
    margin: 0 auto;
    padding-left: 0;
    text-align: center;
  }

  .process-content p {
    max-width: none;
    margin-bottom: 34px;
  }

  .testimonials-section {
    padding: 76px 0 58px;
  }

  .testimonials-intro {
    margin-bottom: 42px;
    text-align: center;
  }

  .testimonials-summary {
    max-width: 720px;
    margin: 0 auto;
  }

  .testimonial-card {
    min-height: 0;
  }

  .blog-section {
    padding: 70px 0;
  }

  .blog-intro {
    margin-bottom: 42px;
    text-align: center;
  }

  .blog-summary {
    max-width: 680px;
    margin: 0 auto;
  }

  .footer-main {
    padding: 40px 0 54px;
  }

  .footer-about,
  .footer-column {
    max-width: 620px;
    margin: 0 auto;
    text-align: left;
  }

  .footer-logo {
    margin-right: 0;
    margin-left: 0;
  }

  .footer-column {
    min-height: 0;
    padding-top: 34px;
    padding-left: 0;
    border-top: 1px dashed #a6a8aa;
    border-left: 0;
  }

  .footer-column h2 {
    margin-top: 0;
  }

  .footer-contact li {
    justify-content: flex-start;
    text-align: left;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .service-hero {
    min-height: 380px;
  }

  .service-hero-content {
    padding-top: 0;
  }

  .service-offerings,
  .service-steps,
  .service-testimonials {
    padding: 76px 0;
  }

  .service-page-heading {
    margin-bottom: 42px;
  }

  .service-offer-card {
    min-height: 0;
  }

  .steps-copy {
    max-width: 680px;
    margin: 0 auto 28px;
    text-align: center;
  }

  .step-card {
    min-height: 330px;
  }

  .step-card span {
    margin-bottom: 86px;
  }

  .dream-section {
    background: #242832;
  }

  .dream-panel {
    grid-template-columns: 1fr;
  }

  .dream-image img {
    min-height: 360px;
  }

  .dream-content {
    min-height: 0;
    align-items: center;
    padding: 56px 28px;
    text-align: center;
  }

  .portfolio-hero {
    min-height: 380px;
  }

  .portfolio-hero-content {
    padding-top: 0;
  }

  .portfolio-gallery-section {
    padding: 76px 0 64px;
  }

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

  .portfolio-gallery-item-feature,
  .portfolio-gallery-item-feature img {
    min-height: 580px;
  }

  .contact-hero {
    min-height: 420px;
  }

  .contact-hero-content {
    padding-top: 0;
  }

  .contact-info-section {
    padding: 76px 0 42px;
  }

  .contact-details,
  .contact-form-wrap {
    max-width: 680px;
    margin: 0 auto;
    padding-left: 0;
    text-align: center;
  }

  .contact-details-text,
  .contact-detail-list {
    max-width: none;
  }

  .contact-detail-item {
    justify-content: center;
    text-align: left;
  }

  .contact-form-section {
    padding-bottom: 76px;
  }

  .about-hero {
    min-height: 380px;
  }

  .about-hero-content {
    padding-top: 0;
  }

  .about-story-section {
    padding: 70px 0;
  }

  .about-story-row,
  .about-split-row {
    margin-bottom: 62px;
  }

  .about-story-copy,
  .about-split-copy {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }

  .about-story-image,
  .about-split-image {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 575.98px) {
  .hero-section .container {
    width: 100%;
    max-width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-slider,
  .hero-slider .owl-stage-outer,
  .hero-slider .owl-stage,
  .hero-slider .owl-item,
  .hero-slide {
    min-height: 560px;
  }

  .hero-content {
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  .hero-title {
    font-size: clamp(24px, 8.5vw, 32px);
    line-height: 1.2;
  }

  .hero-text {
    font-size: clamp(13px, 4vw, 15px);
  }

  .hero-btn {
    width: 100%;
    min-width: min(100%, 300px);
    max-width: 300px;
    min-height: 52px;
    font-size: 15px;
  }

  .about-section {
    padding: 58px 0;
  }

  .experience-box {
    min-height: 150px;
  }

  .bracket {
    font-size: 132px;
  }

  .experience-content {
    gap: 12px;
  }

  .experience-number {
    font-size: 72px;
  }

  .experience-text {
    font-size: 18px;
  }

  .about-kicker {
    font-size: 18px;
  }

  .about-title {
    font-size: 31px;
  }

  .about-subtitle {
    font-size: 18px;
  }

  .about-copy p {
    font-size: 16px;
  }

  .about-btn {
    min-width: min(100%, 290px);
    min-height: 56px;
    font-size: 16px;
  }

  .work-section {
    padding: 32px 0;
  }

  .work-card {
    height: 470px;
  }

  .work-card-content {
    padding: 34px 20px 30px;
  }

  .work-card h3 {
    font-size: 25px;
  }

  .work-card p {
    font-size: 14px;
  }

  .why-choose-section {
    padding: 58px 0;
  }

  .why-choose-kicker {
    font-size: 18px;
  }

  .why-choose-title {
    font-size: 30px;
    line-height: 1.14;
  }

  .why-choose-content p {
    font-size: 16px;
  }

  .why-choose-btn {
    min-width: min(100%, 260px);
    min-height: 54px;
    font-size: 15px;
  }

  .services-section {
    padding: 52px 0;
  }

  .services-heading {
    margin-bottom: 30px;
  }

  .services-kicker {
    font-size: 18px;
  }

  .services-title {
    font-size: 31px;
  }

  .services-heading p {
    font-size: 16px;
  }

  .service-card {
    min-height: 0;
    padding: 14px 14px 28px;
  }

  .service-card-body {
    padding-top: 20px;
  }

  .service-card h3 {
    font-size: 25px;
  }

  .service-card p {
    font-size: 16px;
  }

  .service-card a {
    font-size: 16px;
  }

  .portfolio-section {
    padding: 50px 0;
  }

  .portfolio-heading {
    margin-bottom: 28px;
  }

  .portfolio-kicker {
    font-size: 16px;
  }

  .portfolio-title {
    font-size: 28px;
  }

  .portfolio-card,
  .portfolio-card img {
    min-height: 290px;
  }

  .portfolio-card h3 {
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-size: 23px;
  }

  .process-section {
    padding: 54px 0;
  }

  .process-kicker {
    font-size: 18px;
  }

  .process-title {
    font-size: 30px;
  }

  .process-content p {
    font-size: 16px;
  }

  .process-btn {
    min-width: min(100%, 270px);
    min-height: 54px;
    font-size: 16px;
  }

  .testimonials-section {
    padding: 54px 0 44px;
  }

  .testimonials-intro {
    margin-bottom: 30px;
  }

  .testimonials-kicker {
    font-size: 18px;
  }

  .testimonials-title {
    font-size: 30px;
  }

  .testimonials-summary {
    font-size: 16px;
  }

  .testimonial-card {
    padding: 30px 22px;
  }

  .testimonial-author {
    gap: 18px;
    margin-bottom: 24px;
  }

  .testimonial-author img {
    width: 84px;
    height: 84px;
    flex-basis: 84px;
  }

  .testimonial-author h3 {
    font-size: 22px;
  }

  .testimonial-stars {
    font-size: 18px;
  }

  .testimonial-card p {
    font-size: 16px;
  }

  .testimonial-dots {
    margin-top: 34px;
  }

  .testimonial-dots span {
    width: 16px;
    height: 16px;
  }

  .blog-section {
    padding: 52px 0;
  }

  .blog-intro {
    margin-bottom: 30px;
  }

  .blog-kicker {
    font-size: 18px;
  }

  .blog-title {
    font-size: 30px;
  }

  .blog-summary,
  .blog-card p {
    font-size: 16px;
  }

  .blog-card-body {
    min-height: 0;
    padding-top: 24px;
  }

  .footer-main {
    border-top-width: 6px;
    padding: 34px 0 42px;
  }

  .footer-logo {
    width: 168px;
    margin-bottom: 26px;
  }

  .footer-about p {
    font-size: 15px;
  }

  .footer-column h2 {
    margin-bottom: 20px;
    font-size: 21px;
  }

  .footer-links li {
    margin-bottom: 14px;
  }

  .footer-links a {
    font-size: 18px;
  }

  .footer-contact li {
    gap: 12px;
    font-size: 15px;
  }

  .footer-contact li i {
    font-size: 18px;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .footer-bottom p {
    font-size: 14px;
  }

  .service-hero {
    min-height: 320px;
  }

  .service-hero h1 {
    font-size: 34px;
  }

  .service-hero p {
    font-size: 14px;
  }

  .service-offerings,
  .service-steps,
  .service-testimonials {
    padding: 54px 0;
  }

  .service-page-heading h2 {
    font-size: 27px;
  }

  .service-offer-card {
    padding: 36px 22px;
  }

  .service-offer-card h3 {
    font-size: 22px;
  }

  .steps-copy h2 {
    font-size: 27px;
  }

  .step-card {
    min-height: 300px;
  }

  .dream-image img {
    min-height: 280px;
  }

  .dream-content {
    padding: 44px 20px;
  }

  .dream-content h2 {
    margin-bottom: 32px;
    font-size: 28px;
  }

  .portfolio-hero {
    min-height: 320px;
  }

  .portfolio-hero h1 {
    font-size: 34px;
  }

  .portfolio-hero p {
    font-size: 14px;
  }

  .portfolio-gallery-section {
    padding: 54px 0;
  }

  .portfolio-gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .portfolio-gallery-column {
    gap: 18px;
  }

  .portfolio-gallery-item,
  .portfolio-gallery-item img,
  .portfolio-gallery-item-tall,
  .portfolio-gallery-item-tall img,
  .portfolio-gallery-item-feature,
  .portfolio-gallery-item-feature img {
    min-height: 280px;
  }

  .portfolio-more-wrap {
    margin-top: 38px;
  }

  .contact-hero {
    min-height: 340px;
  }

  .contact-hero h1 {
    font-size: 36px;
  }

  .contact-hero p {
    font-size: 15px;
  }

  .contact-info-section {
    padding: 54px 0 34px;
  }

  .contact-kicker {
    font-size: 16px;
  }

  .contact-details h2,
  .contact-form-wrap h2 {
    font-size: 30px;
  }

  .contact-details-text {
    margin: 24px 0 24px;
  }

  .contact-detail-item {
    gap: 14px;
  }

  .contact-detail-item h3 {
    font-size: 16px;
  }

  .contact-detail-item p {
    font-size: 14px;
  }

  .contact-form-section {
    padding-bottom: 54px;
  }

  .contact-form textarea {
    min-height: 150px;
  }

  .contact-form button {
    width: 100%;
    max-width: 246px;
    margin-top: 28px;
  }

  .about-hero {
    min-height: 320px;
  }

  .about-hero h1 {
    font-size: 34px;
  }

  .about-hero p {
    font-size: 14px;
  }

  .about-story-section {
    padding: 52px 0;
  }

  .about-page-heading {
    margin-bottom: 30px;
  }

  .about-page-heading h2 {
    font-size: 28px;
  }

  .about-story-row,
  .about-split-row {
    margin-bottom: 48px;
  }

  .about-split-copy h2 {
    margin-bottom: 18px;
    font-size: 27px;
  }

  .about-story-copy p,
  .about-split-copy p {
    font-size: 15px;
  }
}
