@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
  --black: #111111;
  --dark: #1b1b1b;
  --white: #ffffff;
  --warm-white: #f7f7f4;
  --gray: #a8a8a0;
  --gray-light: #d8d8d2;
  --gray-mid: #5a5a55;
  --line: rgba(0, 0, 0, 0.12);
  --line-light: rgba(255, 255, 255, 0.15);
  --page-padding: 64px;
  --section-padding: 120px;
  --max-width: 1440px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--warm-white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1 {
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.95;
  font-weight: 300;
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.045em;
}

p,
a,
span {
  font-size: 13px;
  line-height: 1.5;
}

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

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

section {
  padding: var(--section-padding) var(--page-padding);
}

/* ─── Content max-width wrapper ─── */
.content-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ─── Buttons ─── */
.btn {
  border-radius: 999px;
  padding: 13px 28px;
  font-size: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-light {
  background: var(--white);
  color: var(--black);
}

.btn-light:hover {
  background: var(--gray-light);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: #333;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}

.label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--gray-mid);
  line-height: 1.4;
}

.label-white {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.7);
}

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 32px var(--page-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-top: 18px;
  padding-bottom: 18px;
}

.header-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo-img {
  width: 36px;
  height: auto;
}

.header-logo-text {
  font-size: 16px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.03em;
}

.header-logo-text--dark {
  color: var(--black);
}

/* ─── Dark header (for non-hero pages) ─── */
.header--dark {
  background: var(--warm-white);
  border-bottom: 1px solid var(--line);
}

.header--dark.scrolled {
  background: rgba(247, 247, 244, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-dark {
  color: var(--gray-mid) !important;
}

.nav-dark:hover,
.nav-active {
  color: var(--black) !important;
}

.header-icon--dark {
  border-color: var(--line) !important;
  color: var(--black) !important;
}

.header-icon--dark:hover {
  background: rgba(0, 0, 0, 0.06) !important;
}

.hamburger--dark span {
  background: var(--black) !important;
}

.footer-logo-img {
  width: 48px;
  height: auto;
  margin-bottom: 16px;
}

.header-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.header-nav a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.01em;
  transition: color 0.3s;
  padding: 4px 0;
}

.header-nav a:hover {
  color: white;
}

.header-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.header-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  transition: background 0.3s, border-color 0.3s;
  cursor: pointer;
  background: transparent;
}

.header-icon:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 22px;
  height: 1.5px;
  background: white;
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px var(--page-padding);
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-lines svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  opacity: 0.07;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.hero-left {
  max-width: 600px;
}

.hero-left .label-white {
  margin-bottom: 12px;
}

.hero-title {
  color: white;
  margin-bottom: 0;
}

.hero-center {
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  line-height: 1.65;
}

/* ─── TRUSTED COMPANIES ─── */
.trusted-companies {
  background: var(--white);
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  text-align: center;
}

.trusted-header {
  margin-bottom: 40px;
}

.trusted-header p {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-mid);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 60px;
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: 60px;
  animation: scroll 40s linear infinite;
  align-items: center;
}

.marquee-content img {
  height: 50px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s ease;
}

.marquee-content img:hover {
  filter: grayscale(0%) opacity(1);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 60px));
  }
}

/* ─── SERVICES ─── */
.services {
  background: var(--warm-white);
}

.services-grid {
  display: grid;
  grid-template-columns: 0.9fr 2.1fr;
  gap: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.services-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
}

.services-left .label {
  margin-bottom: 16px;
}

.services-title {
  margin-bottom: 40px;
}

.services-divider {
  width: 100%;
  height: 1px;
  background: var(--line);
  margin-bottom: 40px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 6px;
}

.card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover img {
  transform: scale(1.04);
}

.card-label {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--black);
}

.card-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.card-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s;
  border-radius: 6px;
  pointer-events: none;
}

.card:hover .card-image-wrap::after {
  background: rgba(0, 0, 0, 0.3);
}

.card-overlay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
  white-space: nowrap;
  z-index: 2;
}

.card:hover .card-overlay-btn {
  opacity: 1;
}

/* ─── TESTIMONIAL ─── */
.testimonial {
  background: var(--white);
  padding-top: 80px;
  padding-bottom: 64px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-right {
  position: relative;
}

.quote-mark {
  font-size: 120px;
  line-height: 0.6;
  font-weight: 300;
  color: var(--gray-light);
  margin-bottom: 32px;
  font-family: Georgia, "Times New Roman", serif;
}

.quote-text {
  font-size: clamp(24px, 3vw, 48px);
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
  color: var(--black);
  transition: opacity 0.3s ease;
}

.quote-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-mid);
}

.quote-info p:first-child {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
}

.quote-info p:last-child {
  font-size: 11px;
  color: var(--gray);
  margin-top: 2px;
}

.testimonial-arrows {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 8px;
}

.testimonial-arrows .slider-btn {
  background: var(--black);
  color: white;
  width: 44px;
  height: 44px;
}

.testimonial-arrows .slider-btn:hover {
  background: #333;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
  color: var(--black);
}

.slider-btn svg {
  width: 16px;
  height: 16px;
}

.slider-btn:hover {
  transform: scale(1.08);
  background: var(--gray-light);
}

/* ─── BANNER ─── */
.banner {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.banner-bg {
  position: absolute;
  inset: 0;
}

.banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) contrast(1.05);
}

.banner-content {
  position: relative;
  z-index: 2;
  padding: 80px var(--page-padding);
}

.marquee-wrapper {
  overflow: hidden;
  margin-bottom: 60px;
}

.marquee-text {
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 300;
  letter-spacing: -0.06em;
  color: white;
  white-space: nowrap;
  line-height: 1;
  display: inline-block;
  animation: marqueeScroll 25s linear infinite;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.banner-bottom {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
}

.banner-block {
  max-width: 260px;
}

.banner-block p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.banner-block .label-white {
  margin-bottom: 8px;
}

/* ─── MAP ─── */
.map-section {
  background: var(--white);
  padding: var(--section-padding) 0 0 0;
}

.map-header {
  padding: 0 var(--page-padding);
  max-width: var(--max-width);
  margin: 0 auto 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.map-header h2 {
  max-width: 500px;
}

.map-container {
  width: 100%;
  height: 400px;
  filter: grayscale(0.8) contrast(1.1);
  transition: filter 0.5s;
}

.map-container:hover {
  filter: grayscale(0.2) contrast(1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── CONTACT ─── */
.contact-section {
  background: var(--warm-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-left .label {
  margin-bottom: 16px;
  display: block;
}

.contact-left h2 {
  margin-bottom: 24px;
}

.contact-left p {
  color: var(--gray-mid);
  font-size: 13px;
  line-height: 1.7;
  max-width: 400px;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--gray-mid);
}

.contact-info-item svg {
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 0;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--black);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s;
  letter-spacing: -0.01em;
  -webkit-appearance: none;
}

.form-group textarea {
  resize: none;
  min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--black);
}

.form-group label {
  position: absolute;
  top: 16px;
  left: 0;
  font-size: 12px;
  color: var(--gray);
  pointer-events: none;
  transition: all 0.3s;
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
  top: -8px;
  font-size: 10px;
  color: var(--black);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--dark);
  padding: 96px var(--page-padding) 48px;
  color: white;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 64px;
  gap: 40px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.footer-top-left p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 260px;
  line-height: 1.65;
}

.footer-cta {
  text-align: right;
  max-width: 500px;
}

.footer-cta h2 {
  color: white;
  margin-bottom: 24px;
  font-size: clamp(28px, 3.5vw, 52px);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: var(--line-light);
  margin-bottom: 64px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.footer-col a {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: white;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
  color: rgba(255, 255, 255, 0.7);
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

.footer-brand {
  margin-bottom: 24px;
  text-align: center;
  overflow: hidden;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.footer-brand-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  opacity: 0.15;
  filter: brightness(0) invert(1);
  display: block;
  margin: 0 auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

/* ─── MOBILE NAV ─── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-size: 28px;
  color: white;
  font-weight: 300;
  letter-spacing: -0.03em;
  transition: opacity 0.3s;
}

.mobile-nav a:hover {
  opacity: 0.6;
}

.mobile-nav-close {
  position: absolute;
  top: 32px;
  right: var(--page-padding);
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

/* ─── WhatsApp Float ─── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 150;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
  color: white;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ─── PROJECTS / BEFORE & AFTER ─── */
.projects {
  background: var(--white);
  padding-top: 64px;
  padding-bottom: 80px;
}

.projects-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 40px;
}

.projects-header h2 {
  margin-top: 12px;
}

.projects-desc {
  max-width: 360px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray-mid);
}

/* Before / After slider */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.ba-card {
  border-radius: 8px;
  overflow: hidden;
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 8px;
  cursor: col-resize;
  user-select: none;
}

.ba-img {
  position: absolute;
  inset: 0;
}

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

.ba-before {
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}

.ba-after {
  z-index: 1;
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: col-resize;
  z-index: 5;
  -webkit-appearance: none;
  appearance: none;
}

.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: white;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--black);
}

.ba-label {
  position: absolute;
  bottom: 16px;
  z-index: 4;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: white;
  background: rgba(0, 0, 0, 0.55);
  padding: 5px 12px;
  border-radius: 999px;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.ba-label-before {
  left: 16px;
}

.ba-label-after {
  right: 16px;
}

/* Gallery strip */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ─── TEAM ─── */
.team {
  background: var(--warm-white);
}

.team-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.team-text .label {
  margin-bottom: 12px;
  display: block;
}

.team-text h2 {
  margin-bottom: 24px;
}

.team-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-mid);
  margin-bottom: 32px;
  max-width: 420px;
}

.team-image {
  border-radius: 8px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.6s ease;
}

.team-image:hover img {
  transform: scale(1.02);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  :root {
    --page-padding: 40px;
    --section-padding: 88px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-left {
    min-height: auto;
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }

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

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 800px;
  }

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

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

  .footer-top {
    flex-direction: column;
  }

  .footer-cta {
    text-align: left;
  }

  .map-container {
    height: 320px;
  }

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

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

  .team-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-padding: 24px;
    --section-padding: 72px;
  }

  .header {
    padding: 24px var(--page-padding);
  }

  .header.scrolled {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 700px;
    padding-bottom: 48px;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-center {
    max-width: 100%;
  }

  .services-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .banner-bottom {
    flex-direction: column;
    gap: 24px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    margin-bottom: 24px;
    text-align: center;
    overflow: hidden;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
  }

  .footer-brand-img {
    width: 100%;
    max-width: 240px;
    height: auto;
    opacity: 0.15;
    filter: brightness(0) invert(1);
    display: block;
    margin: 0 auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .marquee-text {
    font-size: clamp(36px, 10vw, 80px);
  }

  .quote-text {
    font-size: clamp(20px, 5vw, 36px);
  }

  .map-container {
    height: 280px;
  }

  .map-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .projects-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

  .gallery-strip {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  h1 {
    font-size: clamp(40px, 10vw, 56px);
  }

  .footer-brand {
    font-size: clamp(48px, 14vw, 160px);
  }

  .service-block-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-block--alt .service-block-inner {
    direction: ltr;
  }

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

  .gallery-strip {
    grid-template-columns: 1fr;
  }
}

.additional-img {
  width: 100%;
  height: 220px;
  flex-shrink: 0;
}

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

.additional-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.service-gallery img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ═══════════════════════════════════════ */
/* ═══ SERVICES PAGE ═══ */
/* ═══════════════════════════════════════ */

.services-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  padding: 160px var(--page-padding) 80px;
  overflow: hidden;
}

.services-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.services-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 18, 15, 0.85) 0%, rgba(20, 18, 15, 0.5) 40%, rgba(20, 18, 15, 0.25) 100%);
  z-index: 1;
}

.services-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.services-hero .label {
  color: rgba(255, 255, 255, 0.65);
}

.services-hero h1 {
  margin-top: 16px;
  margin-bottom: 24px;
  color: var(--white);
}

.services-hero-desc {
  max-width: 640px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* ─── Service Blocks ─── */
.service-block {
  padding: var(--section-padding) var(--page-padding);
  background: var(--warm-white);
  border-top: 1px solid var(--line);
  position: relative;
}

.service-block--alt {
  background: var(--white);
}

/* Subtle gradient accent for odd service blocks */
.service-block:nth-child(odd) {
  background: linear-gradient(145deg, var(--warm-white) 0%, #f0efe8 60%, #ebe8df 100%);
}

.service-block--alt {
  background: linear-gradient(145deg, var(--white) 0%, #faf9f6 60%, #f5f3ef 100%);
}

.service-block-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-block--alt .service-block-inner {
  direction: rtl;
}

.service-block--alt .service-block-inner>* {
  direction: ltr;
}

.service-number {
  font-size: 12px;
  font-weight: 600;
  color: transparent;
  background: linear-gradient(135deg, #b8860b, #c9914e);
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 16px;
}

.service-block-text h2 {
  font-size: clamp(28px, 3vw, 44px);
  margin-bottom: 20px;
}

.service-block-text p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-mid);
  margin-bottom: 12px;
}

.service-block-text .btn {
  margin-top: 20px;
}

.service-block-image {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-block-image:hover img {
  transform: scale(1.03);
}

/* ─── Additional Services ─── */
.additional-services {
  padding: var(--section-padding) var(--page-padding);
  background: linear-gradient(160deg, #1b1b1b 0%, #2a2520 50%, #1b1b1b 100%);
  color: var(--white);
}

.additional-services-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.additional-header {
  margin-bottom: 64px;
}

.additional-header .label {
  color: var(--gray);
}

.additional-header h2 {
  margin-top: 12px;
  color: var(--white);
}

.additional-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.additional-card {
  border-radius: 12px;
  background: var(--dark-bg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.additional-card:hover {
  transform: translateY(-5px);
  border-color: var(--white);
}

.additional-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.2), rgba(201, 145, 78, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.additional-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
}

.additional-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--white);
}

.additional-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 16px;
}

.additional-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.additional-link:hover {
  opacity: 1;
}

/* ─── Services CTA ─── */
.services-cta {
  padding: var(--section-padding) var(--page-padding);
  background: linear-gradient(135deg, #1f1a14 0%, #2a2015 40%, #1a1710 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(184, 134, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.services-cta::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201, 145, 78, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.services-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services-cta-inner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.services-cta-inner>p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.services-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Services Responsive ─── */
@media (max-width: 1024px) {
  .service-block-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .services-hero {
    min-height: 70vh;
    padding-top: 130px;
    padding-bottom: 48px;
  }

  .service-block-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-block--alt .service-block-inner {
    direction: ltr;
  }

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

  .services-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}