/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors from Figma */
  --dark-bg: #0c1011;
  --dark-green: #212b28;
  --cream: #f0efeb;
  --dark-text: #333237;
  --muted: #747e7b;
  --secondary: #535d5a;
  --cyan: #21cafe;
  --orange: #ff9608;
  --white: #ffffff;

  /* Fonts */
  --font-display: 'Georgia', 'Times New Roman', serif; /* Fallback for Sewimple Pol */
  --font-body: 'Manrope', sans-serif;
}

/*
  NOTE: The design uses "Sewimple Pol" as the display font.
  Replace the @font-face below with the actual font file if available.
  For now, we use a serif fallback that approximates the feel.
*/
@font-face {
  font-family: 'Sewimple Pol';
  src: local('Sewimple Pol');
  font-weight: 400;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark-bg);
  color: var(--cream);
  line-height: 1.3;
  overflow-x: hidden;
}

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

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

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px 13px;
  border-radius: 100px;
  font-family: 'Sewimple Pol', var(--font-display);
  font-size: 20px;
  line-height: normal;
  text-transform: capitalize;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn--cyan {
  background-color: var(--cyan);
  color: var(--dark-text);
  font-size: 16px;
  padding: 11px 20px 9px;
}

.btn--orange {
  background-color: var(--orange);
  color: var(--dark-green);
}

.btn--dark {
  background-color: var(--dark-text);
  color: var(--cream);
}

.btn--outline {
  background-color: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}

.btn--sm {
  font-size: 18px;
  padding: 11px 20px 9px;
}

.arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 160px;
  background-color: var(--dark-green);
  border: 1px solid rgba(240, 239, 235, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s;
}

.arrow-btn:hover {
  background-color: var(--cyan);
}

.arrow-btn:hover svg path {
  stroke: var(--dark-text);
}

.arrow-btn--dark {
  background-color: var(--dark-bg);
  border-color: rgba(83, 93, 90, 0.3);
}

/* ==================== NAV ==================== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 80px;
  background-color: var(--dark-bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav__left {
  flex: 1 0 0;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: 'Sewimple Pol', var(--font-display);
  font-size: 14px;
  line-height: 1.2;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.nav__links {
  display: flex;
  gap: 60px;
  align-items: center;
}

.nav__links a,
.nav__dropdown span {
  font-family: 'Sewimple Pol', var(--font-display);
  font-size: 16px;
  color: var(--cream);
  white-space: nowrap;
  transition: color 0.2s;
}

.nav__links a:hover,
.nav__dropdown:hover span {
  color: var(--cyan);
}

.nav__dropdown {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav__right {
  flex: 1 0 0;
  display: flex;
  justify-content: flex-end;
}

/* ==================== HERO ==================== */
.hero-holder {
  background: linear-gradient(to bottom, var(--dark-bg), var(--dark-green));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 20px 30px 80px;
}

.hero-holder__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero {
  background-color: var(--cream);
  width: 100%;
  border-radius: 20px;
  padding: 200px 50px 50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 810px;
  position: relative;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 1069px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  background-color: var(--white);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--secondary);
  align-self: flex-start;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero__text-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__heading {
  font-family: 'Sewimple Pol', var(--font-display);
  font-size: 96px;
  line-height: 1;
  color: var(--dark-text);
  text-transform: capitalize;
  font-weight: 400;
}

.hero__subtext {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.3;
  color: var(--secondary);
  max-width: 785px;
}

.hero__buttons {
  display: flex;
  gap: 20px;
}

.hero__experience {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--secondary);
  white-space: nowrap;
  align-self: flex-end;
}

.hero__shadow {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__shadow-bar {
  background-color: var(--cream);
  border-radius: 0 0 5px 5px;
}

.hero__shadow-bar--1 {
  width: calc(100% - 110px);
  height: 15px;
  opacity: 0.7;
}

.hero__shadow-bar--2 {
  width: calc(100% - 220px);
  height: 10px;
  opacity: 0.4;
}

.hero__shadow-bar--3 {
  width: calc(100% - 330px);
  height: 5px;
  opacity: 0.2;
}

.hero__images {
  display: flex;
  gap: 30px;
  width: 100%;
  overflow-x: auto;
  border-radius: 20px;
  scrollbar-width: none;
}

.hero__images::-webkit-scrollbar {
  display: none;
}

.hero__image-card {
  flex-shrink: 0;
  width: 537px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.hero__image-card--wide {
  width: 648px;
}

.hero__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a3a35, #1a2520);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 16px;
  border-radius: 20px;
}

/* ==================== MARQUEE ==================== */
.marquee {
  background-color: var(--cream);
  padding: 25px 0 20px;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee__content {
  display: flex;
  align-items: baseline;
  gap: 25px;
  padding-right: 25px;
}

.marquee__content span {
  font-family: 'Sewimple Pol', var(--font-display);
  font-size: 24px;
  line-height: 1.2;
  color: var(--dark-text);
  white-space: nowrap;
}

.marquee__dot {
  font-size: 19px !important;
  opacity: 0.5;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==================== EXPERTISE ==================== */
.expertise {
  background: linear-gradient(to bottom, var(--dark-green) 0%, var(--dark-bg) 25.5%);
  padding: 200px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 200px;
}

.expertise__header {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 50px;
}

.expertise__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid var(--muted);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  align-self: flex-start;
}

.expertise__title-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.expertise__title {
  font-family: 'Sewimple Pol', var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 400;
}

.expertise__subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.3;
  color: var(--muted);
  max-width: 785px;
}

/* ==================== SERVICES LIST ==================== */
.services-list {
  display: flex;
  flex-direction: column;
}

.service {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 50px;
  width: 100%;
}

.service--expanded {
  background-color: var(--dark-green);
  border-radius: 10px;
}

.service--collapsed {
  background-color: var(--dark-bg);
  border-bottom: 2px solid rgba(83, 93, 90, 0.2);
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.service--collapsed:hover {
  background-color: rgba(33, 43, 40, 0.5);
}

.service__number {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  width: 40px;
  flex-shrink: 0;
  padding-top: 8px;
}

.service--collapsed .service__number {
  color: var(--secondary);
}

.service__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.service__title {
  font-family: 'Sewimple Pol', var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 400;
  opacity: 0.9;
}

.service--collapsed .service__title {
  color: var(--cream);
  opacity: 1;
}

.service__description {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.3;
  color: var(--muted);
}

.service__description p {
  margin-bottom: 10px;
}

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

.service__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  align-self: stretch;
  flex-shrink: 0;
}

.service__actions-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service__tags {
  display: flex;
  gap: 10px;
  position: relative;
}

.service__tag {
  padding: 12px 25px;
  background-color: rgba(240, 239, 235, 0.05);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
}

.service__tags-fade {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 200px;
  height: 46px;
  background: linear-gradient(to right, rgba(33, 43, 40, 0) 0%, var(--dark-green) 55%);
  pointer-events: none;
}

/* ==================== CTA CARD ==================== */
.cta-card {
  background-color: var(--cream);
  border-radius: 20px;
  padding: 50px;
  height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  margin-top: 200px;
}

.cta-card__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
  max-height: 48px;
}

.cta-card__tags span {
  padding: 15px 25px;
  background-color: var(--white);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--secondary);
  white-space: nowrap;
}

.cta-card__fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  margin-top: 50px;
  background: linear-gradient(90deg, var(--cream) 0%, rgba(240, 239, 235, 0) 8.3%, rgba(240, 239, 235, 0) 92.5%, var(--cream) 100%);
  pointer-events: none;
}

.cta-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  text-align: center;
}

.cta-card__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-card__heading {
  font-family: 'Sewimple Pol', var(--font-display);
  font-size: 96px;
  line-height: 1;
  color: var(--dark-text);
  text-transform: capitalize;
  font-weight: 400;
}

.cta-card__subtext {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.3;
  color: var(--secondary);
}

/* ==================== SELECTED PROJECT ==================== */
.selected-project {
  padding: 200px 30px 0;
  background-color: var(--cream);
}

.selected-project__header {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 50px;
  margin-bottom: 100px;
}

.selected-project__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid var(--muted);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  align-self: flex-start;
}

.selected-project__title-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.selected-project__title {
  font-family: 'Sewimple Pol', var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--dark-text);
  text-transform: capitalize;
  font-weight: 400;
}

.selected-project__subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.3;
  color: var(--secondary);
  max-width: 785px;
}

/* Featured Project Card */
.project-featured {
  position: relative;
  width: 100%;
  height: 900px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
  padding: 0 50px;
}

.project-featured__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12, 16, 17, 0) 75%, rgba(12, 16, 17, 0.8) 94%);
}

.project-featured__info {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.project-featured__tags {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 20px;
  color: var(--white);
}

.project-featured__link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background-color: var(--dark-green);
  padding: 12px 20px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white);
  cursor: pointer;
  transition: background-color 0.2s;
}

.project-featured__link:hover {
  background-color: var(--dark-bg);
}

.selected-project__cta {
  text-align: center;
  padding: 100px 0;
}

/* ==================== REVIEWS ==================== */
.reviews {
  padding: 0 0 30px;
}

.reviews__header {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 50px;
  margin-bottom: 30px;
}

.reviews__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid var(--muted);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  align-self: flex-start;
}

.reviews__title-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reviews__title {
  font-family: 'Sewimple Pol', var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--dark-text);
  text-transform: capitalize;
  font-weight: 400;
}

.reviews__subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.3;
  color: var(--secondary);
  max-width: 785px;
}

.reviews__counter {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--secondary);
  text-align: right;
  margin-bottom: 10px;
}

.reviews__content {
  display: flex;
  flex-direction: column;
}

.reviews__layout {
  display: flex;
  gap: 40px;
  align-items: flex-end;
}

.reviews__left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 80px;
  flex-shrink: 0;
  width: 715px;
}

.arrow-btn-lg {
  width: 64px;
  height: 64px;
  border-radius: 160px;
  background-color: var(--cream);
  border: 1px solid rgba(83, 93, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s;
}

.arrow-btn-lg:hover {
  background-color: var(--white);
}

.arrow-btn-lg--dark {
  background-color: var(--dark-bg);
  border-color: rgba(240, 239, 235, 0.15);
}

.arrow-btn-lg--dark:hover {
  background-color: var(--dark-green);
}

.reviews__thumbnails {
  display: flex;
  gap: 15px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.reviews__thumb {
  width: 180px;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.reviews__thumb-fade {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 182px;
  background: linear-gradient(to right, var(--cream) 0%, rgba(240, 239, 235, 0) 36%);
  pointer-events: none;
}

/* Review Card - Split Layout */
.review-card {
  background-color: var(--dark-green);
  border-radius: 20px;
  display: flex;
  overflow: hidden;
  flex: 1;
  min-height: 615px;
}

.review-card__person {
  width: 487px;
  flex-shrink: 0;
  position: relative;
  padding: 20px;
  display: flex;
  align-items: flex-end;
}

.review-card__person-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__person-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(33, 43, 40, 0) 68%, rgba(33, 43, 40, 0.8) 100%);
}

.review-card__person-info {
  position: relative;
  z-index: 2;
  width: 100%;
  border: 1.5px solid white;
  border-radius: 10px;
  padding: 20px;
  background: linear-gradient(to bottom, rgba(33, 43, 40, 0) 68%, rgba(33, 43, 40, 0.8) 100%);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.review-card__name {
  font-family: 'Sewimple Pol', var(--font-display);
  font-size: 32px;
  line-height: 1.2;
  color: var(--white);
  font-weight: 400;
  text-transform: capitalize;
}

.review-card__role {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--white);
  opacity: 0.7;
}

.review-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 0 20px 50px;
}

.review-card__quote {
  font-family: 'Sewimple Pol', var(--font-display);
  font-size: 80px;
  line-height: 0.5;
  color: var(--cyan);
  margin-bottom: 20px;
}

.review-card__text-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 50px;
}

.review-card__title {
  font-family: 'Sewimple Pol', var(--font-display);
  font-size: 32px;
  line-height: 1.2;
  color: var(--white);
  font-weight: 400;
  text-transform: capitalize;
}

.review-card__text {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.3;
  color: var(--muted);
}

.review-card__images {
  display: flex;
  gap: 15px;
  align-items: center;
  overflow: hidden;
  border-radius: 0 0 0 10px;
  margin-top: 40px;
}

.review-card__project-img {
  width: 259px;
  height: 185px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.review-card__view-project {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--secondary);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ==================== FOOTER ==================== */
.footer {
  background-color: var(--dark-bg);
  padding: 200px 30px 0;
}

.footer__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}

.footer__cta-heading {
  font-family: 'Sewimple Pol', var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 400;
  text-align: center;
}

.footer__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(83, 93, 90, 0.2);
  margin-bottom: 100px;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  padding: 0 50px;
  margin-bottom: 200px;
}

.footer__left {
  display: flex;
  gap: 50px;
}

.footer__about {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 440px;
}

.footer__logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.footer__description {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.3;
  color: var(--muted);
}

.footer__colorado {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer__flag {
  width: 34px;
  height: 23px;
  object-fit: cover;
}

.footer__colorado span {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--muted);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 339px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 25px 10px 15px;
  border: 1px solid rgba(83, 93, 90, 0.2);
  border-radius: 5px;
  flex: 1;
}

.footer__contact-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__contact-item span {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.2;
  color: var(--muted);
}

.footer__nav {
  display: flex;
  gap: 150px;
  padding-top: 17px;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer__nav-link {
  font-family: 'Sewimple Pol', var(--font-display);
  font-size: 18px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}

.footer__nav-link:hover {
  color: var(--cream);
}

/* Footer Bottom */
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.footer__bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
}

.footer__bottom-bar p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  flex: 1;
}

.footer__socials {
  display: flex;
  gap: 30px;
}

.footer__social {
  display: flex;
  transition: opacity 0.2s;
}

.footer__social:hover {
  opacity: 0.7;
}

.footer__legal {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

.footer__legal a,
.footer__legal span {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: var(--cream);
}

.footer__brand {
  width: 100%;
  overflow: hidden;
}

.footer__brand-img {
  width: 100%;
  height: auto;
  opacity: 0.9;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1400px) {
  .hero__heading {
    font-size: 72px;
  }
  .cta-card__heading {
    font-size: 72px;
  }
  .reviews__left {
    width: 500px;
  }
  .review-card__person {
    width: 350px;
  }
  .footer__nav {
    gap: 80px;
  }
}

@media (max-width: 1024px) {
  .nav {
    padding: 15px 40px;
  }
  .nav__links {
    gap: 30px;
  }
  .hero {
    padding: 120px 30px 30px;
    min-height: 600px;
  }
  .hero__heading {
    font-size: 56px;
  }
  .hero__content {
    max-width: 100%;
  }
  .hero__experience {
    display: none;
  }
  .expertise__header {
    padding: 0 30px;
  }
  .expertise__title {
    font-size: 48px;
  }
  .service {
    padding: 30px;
  }
  .service__title {
    font-size: 36px;
  }
  .service__actions {
    display: none;
  }
  .service--expanded .service__actions {
    display: flex;
  }
  .cta-card {
    height: auto;
    padding: 40px 30px;
    gap: 40px;
  }
  .cta-card__heading {
    font-size: 56px;
  }
  .project-featured {
    height: 600px;
  }
  .selected-project__header {
    padding: 0 30px;
  }
  .reviews__header {
    padding: 0 30px;
  }
  .reviews__layout {
    flex-direction: column;
  }
  .reviews__left {
    width: 100%;
    flex-direction: row;
    align-items: center;
  }
  .reviews__title {
    font-size: 48px;
  }
  .review-card {
    flex-direction: column;
    min-height: auto;
  }
  .review-card__person {
    width: 100%;
    height: 400px;
  }
  .footer__content {
    flex-direction: column;
    gap: 60px;
    padding: 0 30px;
  }
  .footer__nav {
    gap: 60px;
  }
  .footer__cta-heading {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 15px 20px;
  }
  .nav__links {
    display: none;
  }
  .hero-holder {
    padding: 10px 15px 40px;
  }
  .hero {
    padding: 80px 20px 20px;
    min-height: 500px;
    flex-direction: column;
    gap: 20px;
  }
  .hero__heading {
    font-size: 40px;
  }
  .hero__subtext {
    font-size: 16px;
  }
  .hero__buttons {
    flex-direction: column;
    gap: 10px;
  }
  .hero__image-card {
    width: 300px;
    height: 250px;
  }
  .hero__image-card--wide {
    width: 350px;
  }
  .expertise {
    padding: 100px 15px 15px;
    gap: 80px;
  }
  .expertise__header {
    padding: 0 20px;
  }
  .expertise__title {
    font-size: 36px;
  }
  .service {
    padding: 25px 20px;
  }
  .service__title {
    font-size: 28px;
  }
  .service__number {
    display: none;
  }
  .cta-card {
    margin-top: 80px;
  }
  .cta-card__heading {
    font-size: 36px;
  }
  .cta-card__tags {
    display: none;
  }
  .cta-card__fade {
    display: none;
  }
  .selected-project {
    padding: 100px 15px 0;
  }
  .selected-project__header {
    padding: 0 20px;
  }
  .selected-project__title {
    font-size: 36px;
  }
  .project-featured {
    height: 400px;
    padding: 0 20px;
  }
  .reviews__header {
    padding: 0 20px;
  }
  .reviews__title {
    font-size: 36px;
  }
  .reviews__left {
    display: none;
  }
  .review-card__person {
    height: 300px;
  }
  .review-card__body {
    padding: 30px 20px;
  }
  .review-card__text-area {
    padding-right: 0;
  }
  .review-card__images {
    display: none;
  }
  .footer {
    padding: 100px 15px 0;
  }
  .footer__content {
    padding: 0 20px;
  }
  .footer__left {
    flex-direction: column;
  }
  .footer__about {
    width: 100%;
  }
  .footer__contact {
    width: 100%;
  }
  .footer__nav {
    gap: 40px;
    flex-wrap: wrap;
  }
  .footer__cta-heading {
    font-size: 36px;
  }
  .footer__bottom-bar {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 0 20px;
  }
  .footer__legal {
    justify-content: center;
  }
}
