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

:root {
  --purple: #5B3A70;
  --purple-dark: #4A2F5C;
  --yellow: #FFD700;
  --yellow-hover: #F4C430;
  --text-dark: #2a2a2a;
  --text-light: #f5f0e8;
  --text-muted: #8a8478;
  --white: #ffffff;
  --border-light: rgba(255, 255, 255, 0.3);
  --overlay: rgba(30, 30, 30, 0.75);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--purple);
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo svg {
  height: 52px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-menu li {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  border: 1px solid var(--border-light);
  transition: background 0.3s, color 0.3s;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-link .chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.3s;
}

.nav-link--cta {
  background: var(--yellow);
  color: var(--purple);
  border-color: var(--yellow);
  font-weight: 700;
}

.nav-link--cta:hover {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--purple);
  border: 1px solid var(--border-light);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}

.nav-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s, color 0.2s;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: rgba(255, 215, 0, 0.15);
  color: var(--yellow);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-light);
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 72px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('images/IMG-20260415-WA0052.jpg') center center / cover no-repeat;
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.7) 0%, rgba(20, 20, 20, 0.3) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 60px;
  margin-left: 60px;
  background: var(--overlay);
  backdrop-filter: blur(2px);
}

.hero__title {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #c0b8a8;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.15s;
}

.btn:active {
  transform: scale(0.97);
}

.btn--gold {
  background: var(--yellow);
  color: var(--purple);
  border: 2px solid var(--yellow);
}

.btn--gold:hover {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
}

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

.btn--outline:hover {
  background: var(--white);
  color: var(--purple);
}

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

.btn--outline-dark:hover {
  background: var(--purple);
  color: var(--white);
}

/* ===== ABOUT SECTION ===== */
.about {
  display: flex;
  align-items: center;
  min-height: 600px;
  padding: 80px 60px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about__content {
  flex: 1;
  max-width: 600px;
  padding-right: 60px;
}

.about__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.about__text {
  font-size: 17px;
  line-height: 1.8;
  color: #5a5347;
  margin-bottom: 32px;
}

.about__map {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__map svg {
  width: 100%;
  max-width: 600px;
  height: auto;
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 80px 60px;
  background: var(--white);
}

.services__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.services__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.15;
  color: var(--text-dark);
  max-width: 500px;
}

.services__buttons {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-top: 8px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1200px;
}

.service-card {
  position: relative;
  border: none;
  background: var(--purple);
  overflow: visible;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}

.service-card::before,
.service-card::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

/* Bracket frame: L-shaped with shortened arms */
.service-card::after {
  content: '';
  position: absolute;
  top: 5%;
  left: 5%;
  right: -10px;
  bottom: -10px;
  border-right: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  pointer-events: none;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card__image {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.service-card__body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__title {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--yellow);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 15px;
  line-height: 1.7;
  color: #b0a898;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  transition: gap 0.3s;
}

.service-card__link:hover {
  gap: 12px;
}

.service-card__link svg {
  width: 14px;
  height: 14px;
}

/* ===== PROJECTS / KNOW THE LAND SECTION ===== */
.know-land {
  display: flex;
  align-items: stretch;
  min-height: 600px;
  padding: 80px 60px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.know-land__content {
  flex: 0 0 50%;
  max-width: 600px;
  padding-right: 40px;
}

.know-land__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.know-land__text {
  font-size: 17px;
  line-height: 1.8;
  color: #5a5347;
  margin-bottom: 36px;
}

/* Accordion */
.accordion {
  border-top: 2px solid var(--yellow);
}

.accordion__item {
  border-bottom: 1px solid #e0e0e0;
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dark);
  transition: color 0.3s;
}

.accordion__trigger:hover {
  color: var(--yellow-hover);
}

.accordion__trigger .icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.accordion__trigger.active .icon {
  transform: rotate(180deg);
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion__panel-inner {
  padding: 0 0 24px 0;
  font-size: 16px;
  line-height: 1.8;
  color: #5a5347;
}

.know-land__visual {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.know-land__visual > div {
  width: 100%;
  max-width: 450px;
  height: 450px;
  position: relative;
}

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

.know-land__visual-map {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.know-land__visual-map svg {
  width: 100%;
  height: 100%;
}

.know-land__excavator {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  filter: grayscale(1) contrast(1.1);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500'%3E%3Ccircle cx='250' cy='250' r='240' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500'%3E%3Ccircle cx='250' cy='250' r='240' fill='white'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

/* ===== GALLERY SECTION ===== */
.gallery {
  padding: 80px 60px;
  background: var(--white);
}

.gallery__header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.gallery__subtitle {
  font-size: 18px;
  color: #5a5347;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.gallery-item__image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.gallery-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover .gallery-item__image img {
  transform: scale(1.1);
}

.gallery-item__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(91, 58, 112, 0.95), transparent);
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-item__overlay {
  transform: translateY(0);
}

.gallery-item__overlay h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--yellow);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-item__overlay p {
  font-size: 14px;
  color: var(--text-light);
}

/* ===== SERVICE AREA SECTION ===== */
.service-area {
  padding: 80px 60px;
  background: #f8f8f8;
  text-align: center;
}

.service-area__content {
  max-width: 1000px;
  margin: 0 auto;
}

.service-area__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.service-area__text {
  font-size: 18px;
  line-height: 1.8;
  color: #5a5347;
  margin-bottom: 40px;
}

.service-area__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.city-tag {
  background: var(--white);
  border: 2px solid var(--purple);
  color: var(--purple);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.city-tag:hover {
  background: var(--purple);
  color: var(--white);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 80px 60px;
  background: var(--white);
}

.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Contact Form */
.contact-form {
  background: #f8f8f8;
  padding: 40px;
  clip-path: polygon(8% 0%, 100% 0%, 100% 92%, 92% 100%, 0% 100%, 0% 8%);
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  opacity: 0.03;
  pointer-events: none;
}

.contact-form__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.contact-form__subtitle {
  font-size: 16px;
  color: #5a5347;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.form__group {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.form__group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  transition: border-color 0.3s;
  position: relative;
  z-index: 1;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--purple);
}

.form__group select {
  background: var(--white);
  cursor: pointer;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%235B3A70' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form__group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn--full {
  width: 100%;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

/* Business Info */
.business-info__logo {
  width: 120px;
  height: auto;
  margin-bottom: 30px;
}

.business-info__title {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.business-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 8px;
}

.business-info__item svg {
  width: 24px;
  height: 24px;
  color: var(--purple);
  flex-shrink: 0;
  margin-top: 2px;
}

.business-info__item div {
  flex: 1;
}

.business-info__item strong {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.business-info__item a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.business-info__item a:hover {
  color: var(--purple);
}

.business-info__item span {
  color: var(--text-dark);
}

.business-info__hours {
  padding: 20px;
  background: var(--purple);
  color: var(--white);
  border-radius: 8px;
  margin-bottom: 30px;
}

.business-info__hours strong {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.business-info__hours p {
  font-size: 14px;
  margin: 4px 0;
  color: var(--text-light);
}

.business-info__map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.business-info__map iframe {
  display: block;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--white);
  overflow: hidden;
  position: relative;
}

.cta-banner__image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border: 2px solid var(--yellow);
  border-left: none;
  border-right: none;
}

.cta-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  background: var(--purple);
  overflow: hidden;
}

.footer__gold-line {
  height: 4px;
  background: var(--yellow);
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 60px 60px 20px;
  position: relative;
  z-index: 1;
}

.footer__brand {
  max-width: 360px;
}

.footer__logo svg {
  height: 80px;
  width: auto;
  margin-bottom: 24px;
}

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

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--text-light);
  transition: color 0.3s;
}

.footer__socials a:hover {
  color: var(--yellow);
}

.footer__socials svg {
  width: 22px;
  height: 22px;
}

.footer__columns {
  display: flex;
  gap: 80px;
}

.footer__col h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 15px;
  color: #c0b8a8;
  padding: 4px 0;
  transition: color 0.3s;
}

.footer__col a:hover {
  color: var(--yellow);
}

.footer__map-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  opacity: 0.12;
  pointer-events: none;
}

.footer__map-bg svg {
  width: 100%;
  height: 100%;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px 32px;
  font-size: 14px;
  color: #c0b8a8;
  position: relative;
  z-index: 1;
}

.footer__bottom a {
  color: #c0b8a8;
  transition: color 0.3s;
  margin-left: 32px;
}

.footer__bottom a:hover {
  color: var(--yellow);
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .site-header {
    padding: 0 24px;
  }

  .hero__content {
    margin-left: 32px;
    padding: 40px;
  }

  .about,
  .services,
  .know-land {
    padding: 60px 32px;
  }

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

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

  .contact-section__inner {
    gap: 40px;
  }

  .know-land__visual > div {
    height: 380px;
  }

  .footer__inner,
  .footer__bottom {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 900px) {
  .contact-section__inner {
    grid-template-columns: 1fr;
  }

  .logo span {
    font-size: 14px !important;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0 20px;
    height: 68px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--purple);
    flex-direction: column;
    padding: 16px;
    border-top: 1px solid var(--border-light);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
  }

  .nav-link--cta {
    border: none;
    margin-top: 8px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    padding-left: 20px;
    display: none;
  }

  .dropdown-menu.open {
    display: block;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: 500px;
    margin-top: 68px;
  }

  .hero__content {
    margin: 20px;
    padding: 32px;
    max-width: none;
  }

  .hero__title {
    font-size: 28px;
  }

  .about {
    flex-direction: column;
    padding: 48px 24px;
  }

  .about__content {
    padding-right: 0;
    max-width: none;
    margin-bottom: 40px;
  }

  .services {
    padding: 48px 24px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    padding: 48px 24px;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .service-area {
    padding: 48px 24px;
  }

  .service-area__cities {
    gap: 8px;
  }

  .city-tag {
    padding: 10px 20px;
    font-size: 13px;
  }

  .contact-section {
    padding: 48px 24px;
  }

  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .know-land {
    flex-direction: column;
    padding: 48px 24px;
  }

  .know-land__content {
    flex: none;
    max-width: none;
    padding-right: 0;
  }

  .know-land__visual {
    min-height: 300px;
    margin-top: 40px;
  }

  .know-land__visual > div {
    height: 350px;
    max-width: 100%;
  }

  .logo span {
    font-size: 13px !important;
  }

  .footer__inner {
    flex-direction: column;
    gap: 40px;
    padding: 40px 24px 16px;
  }

  .footer__columns {
    flex-direction: column;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 16px 24px 28px;
  }

  .footer__bottom a {
    margin-left: 16px;
  }
}