/* ===================== Reset & Base ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* Design tokens: see tokens.css and ../DESIGN.md */

html { scroll-behavior: smooth; }

body {
  font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.4px;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding-x);
}

/* ===================== Header (glassmorphism) ===================== */
.header {
  position: relative;
  z-index: 200;
  background: rgba(236, 230, 221, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 2px 12px rgba(39, 35, 32, 0.05);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(236, 230, 221, 0.55);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 4px 24px rgba(39, 35, 32, 0.06);
}

.header.is-fixed.is-scrolled {
  background: rgba(236, 230, 221, 0.92);
  box-shadow: 0 4px 20px rgba(39, 35, 32, 0.10);
}

/* Inner pages — header always fixed, same look as home when scrolled */
body.inner-page {
  padding-top: var(--header-height);
}

body.inner-page .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(236, 230, 221, 0.92);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 4px 20px rgba(39, 35, 32, 0.10);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
  padding: 4px 0;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 50px;
}

.brand-logo {
  height: var(--logo-height);
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 32px;
}

.nav a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  padding-bottom: 4px;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}

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

.nav a.active {
  color: var(--orange);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 2px 8px rgba(189, 86, 45, 0.3);
}

.btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 14px 18px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 6px;
  flex-shrink: 0;
  white-space: nowrap;
}

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

/* Header quote icon — black circle with 4 dots */
.anchor-btn {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 30px;
}

.quote-icon {
  display: flex;
  align-items: center;
}

.btn-icon {
  --dot-gap: 9px;
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--dark);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.btn-icon:hover,
.btn-icon:focus-visible {
  background: var(--orange);
  outline: none;
}

.btn-icon:active {
  transform: scale(0.94);
}

.btn-icon span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-icon span:nth-child(1) { top: 34%; left: 34%; }
.btn-icon span:nth-child(2) { top: 34%; right: 34%; }
.btn-icon span:nth-child(3) { bottom: 34%; left: 34%; }
.btn-icon span:nth-child(4) { bottom: 34%; right: 34%; }

.btn-icon:hover span:nth-child(1),
.btn-icon:focus-visible span:nth-child(1) { transform: translate(var(--dot-gap), var(--dot-gap)); }

.btn-icon:hover span:nth-child(2),
.btn-icon:focus-visible span:nth-child(2) { transform: translate(calc(-1 * var(--dot-gap)), var(--dot-gap)); }

.btn-icon:hover span:nth-child(3),
.btn-icon:focus-visible span:nth-child(3) { transform: translate(var(--dot-gap), calc(-1 * var(--dot-gap))); }

.btn-icon:hover span:nth-child(4),
.btn-icon:focus-visible span:nth-child(4) { transform: translate(calc(-1 * var(--dot-gap)), calc(-1 * var(--dot-gap))); }

/* Contact sidebar */
.contact-sidebar-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(39, 35, 32, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.contact-sidebar-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.contact-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 410;
  width: min(420px, 92vw);
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  box-shadow: -8px 0 40px rgba(39, 35, 32, 0.12);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.contact-sidebar.is-open {
  transform: translateX(0);
}

.contact-sidebar__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--dark);
  cursor: pointer;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease;
}

.contact-sidebar__close:hover {
  color: var(--orange);
  background: rgba(189, 86, 45, 0.08);
}

.contact-sidebar__inner {
  padding: 56px 36px 40px;
}

.contact-sidebar__logo {
  display: block;
  max-width: 200px;
  margin: 0 auto 28px;
}

.contact-sidebar__logo img {
  width: 100%;
  height: auto;
}

.contact-sidebar__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 36px;
}

.contact-sidebar__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.3px;
  margin-bottom: 22px;
}

.contact-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-sidebar__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-dark);
}

.contact-sidebar__list a {
  color: var(--text-dark);
  transition: color 0.2s ease;
}

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

.contact-sidebar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: var(--dark);
}

body.sidebar-open {
  overflow: hidden;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 12px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  margin: 5px 0;
}

.mobile-nav {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  padding: 11px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-left: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.mobile-nav a.active {
  color: var(--orange);
  border-left-color: var(--orange);
  background: rgba(189, 86, 45, 0.06);
}

/* ===================== Hero Slider ===================== */
.hero {
  background: var(--cream);
  padding-bottom: 0;
}

.hero-stage {
  position: relative;
  height: var(--hero-height);
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(3%);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
  z-index: 1;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 2;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(236, 230, 221, 0.98) 0%,
    rgba(236, 230, 221, 0.94) 18%,
    rgba(236, 230, 221, 0.82) 32%,
    rgba(236, 230, 221, 0.55) 48%,
    rgba(236, 230, 221, 0.18) 62%,
    rgba(236, 230, 221, 0) 76%
  );
  pointer-events: none;
}

.hero-slide__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-left {
  position: absolute;
  top: 110px;
  left: 40px;
  max-width: 520px;
  pointer-events: auto;
}

.hero-left h1 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -0.5px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.hero-left h1 .accent {
  color: var(--orange);
  display: block;
  margin-top: 0.08em;
  position: relative;
  padding-bottom: 12px;
}

.hero-left h1 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 3px;
  background: var(--orange);
}

.hero-left p {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #3f3a34;
  max-width: 380px;
  line-height: 1.75;
}

.hero-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.hero-dot.is-active {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.1);
}

/* ===================== Section Heading ===================== */
.sec-title {
  text-align: center;
  color: var(--orange);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sec-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin: 14px auto 0;
}

/* ===================== About Intro ===================== */
.about-intro {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 64px 0 72px;
}

.about-intro__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 380px;
}

.about-intro__visual {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}

.about-intro__visual img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: right center;
}

.about-intro__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--cream) 0%,
    rgba(236, 230, 221, 0.95) 28%,
    rgba(236, 230, 221, 0.72) 42%,
    rgba(236, 230, 221, 0.28) 58%,
    rgba(236, 230, 221, 0.08) 72%,
    transparent 88%
  );
}

.about-intro__content {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: 48%;
  padding-left: 36px;
}

.about-intro__title {
  font-size: clamp(18px, 1.75vw, 24px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 22px;
  white-space: nowrap;
}

.about-intro__text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
  color: var(--text-dark);
  width: 100%;
  max-width: 100%;
  margin-bottom: 28px;
}

.about-intro__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  padding: 15px 22px;
}

.about-intro__btn-arrow {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.about-intro__btn:hover .about-intro__btn-arrow {
  transform: translateX(3px);
}

/* ===================== Services ===================== */
.services {
  background: var(--cream);
  padding: 20px 0 68px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 15px;
}

.service {
  text-align: center;
  padding: 4px 30px;
  border-right: 1px solid #cfc6ba;
}

.service:last-child { border-right: none; }

.service .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.service h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================== Sectors ===================== */
.sectors {
  background: var(--dark);
  padding: 46px 0 50px;
}

.sectors .sec-title {
  color: #ffffff;
  font-size: 28px;
}

.sectors-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.sector {
  text-align: center;
  color: #ffffff;
  padding: 0 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.sector:last-child { border-right: none; }

.sector .icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sector .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: var(--filter-icon-orange);
}

.sector h3 {
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  color: #ffffff;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.sector p {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

/* ===================== Featured Projects ===================== */
.projects {
  background: var(--cream);
  padding: 56px 0 64px;
}

.projects-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.projects-head h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.projects-head a {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--orange);
}

.projects-head a:hover { color: var(--orange-dark); }

.projects-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.project img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.project h4 {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.project p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 5px;
}

/* ===================== Why Clients Choose Us ===================== */
.why-us {
  position: relative;
  background: #ffffff;
  padding: 56px 0 64px;
  overflow: hidden;
}

.why-us__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/banner2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.18;
  pointer-events: none;
}

.why-us__head {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto 40px;
}

.why-us__eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.why-us__title {
  font-size: clamp(17px, 2.15vw, 28px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.3px;
  color: var(--text-dark);
  white-space: nowrap;
}

.why-us__title::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  background: var(--orange);
  margin: 16px auto 0;
}

.why-us__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  padding: 36px 0;
}

.why-us__grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  pointer-events: none;
  z-index: 0;
}

.why-us__item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 14px;
  border-right: 1px solid rgba(39, 35, 32, 0.12);
}

.why-us__item:last-child { border-right: none; }

.why-us__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: var(--filter-icon-orange);
}

.why-us__item h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1.35;
  color: var(--text-dark);
  /* margin-bottom: 10px; */
  margin: 0 5px 10px;
  text-transform: uppercase;
}

.why-us__item p {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ===================== What Clients Say ===================== */
.reviews {
  background: #ffffff;
  padding: 64px 0 72px;
  overflow: hidden;
}

.reviews-inner {
  display: grid;
  grid-template-columns: minmax(280px, 355px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.reviews-intro {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.reviews-intro::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 115%;
  height: 100%;
  max-height: 320px;
  background-image: url("../images/what-clients-say-background.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  opacity: 0.42;
  pointer-events: none;
}

.reviews-intro__content {
  position: relative;
  z-index: 1;
  padding: 20px 0 20px 36px;
}

.reviews-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.reviews-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.reviews-title span {
  display: block;
  white-space: nowrap;
}

.reviews-title::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  background: var(--orange);
  margin-top: 16px;
}

.reviews-desc {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 300px;
  margin-top: 18px;
}

.reviews-google {
  margin-top: 28px;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 18px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(39, 35, 32, 0.08);
  border: 1px solid rgba(39, 35, 32, 0.06);
}

.reviews-google__brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-google__logo {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.reviews-google__name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
}

.reviews-google__rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-google__stars {
  font-size: 14px;
  letter-spacing: 1px;
  color: #e8a317;
  line-height: 1;
}

.reviews-google__score {
  font-size: 15px;
  font-weight: 800;
  color: var(--orange);
}

.reviews-google__meta {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.4;
}

.reviews-slider {
  min-width: 0;
  overflow: hidden;
  margin-left: 30px;
  margin-top: 30px;
  padding: 0 10px 0 0;
}

.reviews-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.reviews-page {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.review-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 22px 18px 20px;
  box-shadow: 0 6px 24px rgba(39, 35, 32, 0.08);
  border: 1px solid rgba(39, 35, 32, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.review-card__quote {
  font-family: Georgia, serif;
  font-size: 52px;
  line-height: 0.75;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 10px;
}

.review-card__text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
  color: #3a352f;
  flex: 1;
  margin: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.review-card__text p {
  margin: 0 0 12px;
}

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

.review-card--solo {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc(50% - 7px);
}

.review-card__toggle {
  align-self: flex-start;
  margin-top: 10px;
  padding: 0;
  border: none;
  background: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  cursor: pointer;
}

.review-card__toggle[hidden] {
  display: none;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(39, 35, 32, 0.08);
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-card__name {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
}

.review-card__role {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.4;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(39, 35, 32, 0.18);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.reviews-dot.is-active {
  background: var(--orange);
  transform: scale(1.1);
}

/* ===================== Footer ===================== */
.footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
}

.footer__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/banner4.png");
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.footer__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 24, 21, 0.9);
}

.footer__watermark {
  position: absolute;
  left: 50%;
  bottom: -0.12em;
  transform: translateX(-50%);
  font-size: clamp(72px, 14vw, 168px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

.footer__inner {
  position: relative;
  z-index: 2;
  padding: 52px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px 40px;
  padding-bottom: 40px;
}

.footer__logo-link {
  display: inline-block;
  margin-bottom: 20px;
}

.footer__logo {
  height: 88px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 280px;
  margin-bottom: 14px;
}

.footer__location {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 22px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.footer__social-link:hover {
  border-color: var(--orange);
  background: rgba(189, 86, 45, 0.15);
  color: #ffffff;
}

.footer__heading {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.2px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  background: #ffffff;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s;
}

.footer__list a::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.9) 2px, transparent 2.5px);
}

.footer__list a:hover {
  color: #ffffff;
}

.footer__phone {
  margin-bottom: 10px;
}

.footer__phone a {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #d4a85a;
  transition: color 0.2s;
}

.footer__phone a:hover {
  color: #e8be6e;
}

.footer__email {
  margin-bottom: 18px;
}

.footer__email a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s;
}

.footer__email a:hover {
  color: #ffffff;
}

.footer__map {
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: rgba(0, 0, 0, 0.25);
}

.footer__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer__bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding: 18px 0 24px;
  text-align: center;
}

.footer__bottom p {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.2px;
}

/* ===================== Responsive ===================== */

/* Tablet and below */
@media (max-width: 1023px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .btn-icon {
    width: 42px;
    height: 42px;
    --dot-gap: 8px;
  }

  .anchor-btn { margin-right: 30px; }
  .header-inner { gap: 16px; padding: 4px 0; }

  .hero-left {
    left: 0;
    right: 0;
    max-width: none;
    top: 24px;
  }

  .hero-slide::before {
    background: linear-gradient(
      180deg,
      rgba(236, 230, 221, 0.98) 0%,
      rgba(236, 230, 221, 0.90) 40%,
      rgba(236, 230, 221, 0.50) 100%
    );
  }

  .about-intro {
    padding: 44px 0 48px;
  }

  .about-intro__inner {
    display: block;
    min-height: 320px;
    padding-bottom: 0;
  }

  .about-intro__visual::after {
    background: linear-gradient(
      180deg,
      var(--cream) 0%,
      rgba(236, 230, 221, 0.88) 38%,
      rgba(236, 230, 221, 0.45) 100%
    );
  }

  .about-intro__content {
    width: auto;
    max-width: none;
    padding-left: 0;
  }

  .about-intro__title {
    white-space: normal;
    font-size: clamp(22px, 5vw, 28px);
  }

  .sectors-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 0; }
  .sector { border-right: none; }
  .sector:nth-child(-n+3) { padding-bottom: 28px; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__grid { grid-template-columns: repeat(3, 1fr); gap: 32px 0; padding: 32px 0; }
  .why-us__item { border-right: none; padding: 0 18px; }
  .why-us__item:nth-child(-n+3) { padding-bottom: 8px; }
  .reviews-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .reviews-intro {
    min-height: 0;
  }
  .reviews-intro::before {
    width: 100%;
    max-height: 220px;
    top: 0;
    transform: none;
    opacity: 0.3;
  }
  .reviews-intro__content {
    padding: 200px 0 0 22px;
    max-width: none;
  }
  .reviews-slider {
    margin-left: 0;
    padding: 0;
  }
  .reviews-page {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .review-card--solo {
    width: auto;
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 28px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* Mobile only */
@media (max-width: 767px) {
  .hero-left h1 { font-size: 32px; }
  .hero-left p { font-size: 14px; }
  .hero-controls { bottom: 14px; }

  .services-grid { grid-template-columns: 1fr; }
  .service {
    border-right: none;
    border-bottom: 1px solid #cfc6ba;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .service:last-child { border-bottom: none; margin-bottom: 0; }

  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .sector { border-right: none; }
  .projects-grid { grid-template-columns: 1fr; }
  .why-us { padding: 44px 0 52px; }
  .why-us__grid { grid-template-columns: 1fr; gap: 0; padding: 28px 0; }
  .why-us__item {
    border-right: none;
    border-bottom: 1px solid rgba(39, 35, 32, 0.12);
    padding: 0 8px 28px;
    margin-bottom: 28px;
  }
  .why-us__item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .reviews-title { font-size: 28px; letter-spacing: 0.4px; }
  .reviews-title span { white-space: normal; }
  .reviews-desc { max-width: none; }

  .footer__inner {
    padding-top: 40px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__logo {
    height: 72px;
  }

  .footer__tagline {
    max-width: none;
  }

  .footer__phone a {
    font-size: 20px;
  }
}
