/* ============================================================
   OPTIMUM INTERIORS LIMITED — styles.css
   Design System: Luxury Editorial · Warm Sophistication
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --bg:           #FAFAF7;
  --dark:         #1B2D5E;
  --accent:       #F0A500;
  --accent-dark:  #C07800;
  --surface:      #EEF1F8;
  --border:       rgba(27,45,94,0.12);
  --muted:        #5A6480;
  --white:        #FFFFFF;

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 80px;
  --section-gap: clamp(80px, 10vw, 140px);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
}

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

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

ul { list-style: none; }

/* ── Typography Scale ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.5rem); }

p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--muted);
  line-height: 1.8;
}

/* ── Section Label ── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}

/* ── Gold Divider ── */
.gold-rule {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  margin: 1rem 0 1.8rem;
}
.gold-rule.center {
  margin-left: auto;
  margin-right: auto;
}

/* ── Container ── */
.container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* ── Section Spacing ── */
.section { padding: var(--section-gap) 0; }
.section--surface { background: var(--surface); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--dark);
  color: var(--white);
}
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(196,168,130,0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}
.btn--primary:hover::after { transform: translateX(100%); }
.btn--primary:hover { background: var(--accent-dark); }

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

.btn--accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
}
.btn--accent:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--dark));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,107,61,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(250,250,247,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav__logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  flex: 1;
}
.nav__link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }
.nav__link.active { color: var(--accent-dark); }

.nav.hero-nav .nav__link { color: rgba(255,255,255,0.85); }
.nav.hero-nav .nav__link:hover,
.nav.hero-nav .nav__link.active { color: var(--white); }
.nav.hero-nav .nav__link::after { background: var(--accent); }
.nav.scrolled .nav__link { color: var(--dark); }

/* ── Dropdown ── */
.nav__item { position: relative; }
.nav__item--has-dropdown > .nav__link { display: flex; align-items: center; gap: 5px; }
.nav__item--has-dropdown > .nav__link svg { transition: transform 0.3s var(--ease); flex-shrink: 0; }
.nav__item--has-dropdown:hover > .nav__link svg { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border-top: 2px solid var(--accent);
  box-shadow: 0 16px 48px rgba(27,45,94,0.14);
  min-width: 220px;
  border-radius: 0 0 8px 8px;
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  z-index: 200;
}
.nav__item--has-dropdown:hover .nav__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
  white-space: nowrap;
}
.nav__dropdown-link::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s;
}
.nav__dropdown-link:hover {
  color: var(--accent-dark);
  background: var(--surface);
  padding-left: 1.8rem;
}
.nav__dropdown-link:hover::before { opacity: 1; }

.nav__cta {
  margin-left: 1.5rem;
  padding: 0.65rem 1.5rem;
  font-size: 0.72rem;
}

/* ── Mobile Nav ── */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: all 0.3s var(--ease);
}
.nav.hero-nav .nav__toggle span { background: var(--white); }
.nav.scrolled .nav__toggle span { background: var(--dark); }

.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  visibility: hidden;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(160deg, #1B2D5E 0%, #0D1B3E 100%);
  padding: 2.5rem 8% 3rem;
  z-index: 999;
  transform: translateY(-12px);
  opacity: 0;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0s linear 0.35s;
  pointer-events: none;
  overflow-y: auto;
}
.nav__mobile::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,165,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.nav__mobile.open {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0s linear 0s;
}
/* staggered link entrance */
.nav__mobile ul li {
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav__mobile.open ul li:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.nav__mobile.open ul li:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.10s; }
.nav__mobile.open ul li:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.15s; }
.nav__mobile.open ul li:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.20s; }
.nav__mobile.open ul li:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.25s; }
.nav__mobile-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.3s, padding-left 0.3s;
}
.nav__mobile-link::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.3s;
}
.nav__mobile-link:hover,
.nav__mobile-link.active {
  color: var(--white);
  padding-left: 0.5rem;
}
.nav__mobile-link:hover::before,
.nav__mobile-link.active::before { opacity: 1; }
.nav__mobile-link.active { color: var(--accent); }
/* ── Mobile submenu accordion ── */
.nav__mobile-sub-toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 1rem 0;
  padding-left: calc(6px + 0.75rem) !important; /* match dot + gap offset of sibling links */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}
/* hide dot — chevron serves as indicator */
.nav__mobile-sub-toggle::before { display: none !important; }
.nav__mobile-sub-toggle svg {
  flex-shrink: 0;
  margin-left: auto; /* push chevron to the far right */
  transition: transform 0.3s var(--ease);
  opacity: 0.5;
}
.nav__mobile-sub-toggle[aria-expanded="true"] svg { transform: rotate(180deg); opacity: 1; }
.nav__mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__mobile-sub.open { max-height: 500px; }
.nav__mobile-sub-link {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 0.55rem 0 0.55rem 1.2rem;
  border-left: 2px solid rgba(240,165,0,0.25);
  margin: 0.2rem 0;
  transition: color 0.25s, border-color 0.25s, padding-left 0.25s;
}
.nav__mobile-sub-link:hover {
  color: var(--accent);
  border-left-color: var(--accent);
  padding-left: 1.6rem;
}

.nav__mobile-cta {
  margin-top: 2rem;
  width: 100%;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease) 0.3s, transform 0.3s var(--ease) 0.3s;
}
.nav__mobile.open .nav__mobile-cta {
  opacity: 1;
  transform: none;
}
/* mobile menu contact strip */
.nav__mobile-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease) 0.35s, transform 0.3s var(--ease) 0.35s;
}
.nav__mobile.open .nav__mobile-footer { opacity: 1; transform: none; }
.nav__mobile-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  border-bottom: 1px solid rgba(240,165,0,0.3);
  padding-bottom: 0.15rem;
  transition: color 0.3s, border-color 0.3s;
  width: 100%;
}
.nav__mobile-footer a:hover { color: var(--accent); border-color: var(--accent); }
.nav__mobile-footer svg { flex-shrink: 0; }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@keyframes kenBurns {
  0%   { transform: scale(1.08) translate(0%,    0%);    }
  25%  { transform: scale(1.12) translate(-1.5%, 0.8%);  }
  50%  { transform: scale(1.06) translate(1%,   -1%);    }
  75%  { transform: scale(1.1)  translate(-0.5%, 1.2%);  }
  100% { transform: scale(1.08) translate(0%,    0%);    }
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-color: #0D1B3E;
  background-size: cover;
  background-position: center;
  animation: kenBurns 20s ease-in-out infinite;
  will-change: transform;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,24,0.85) 0%,
    rgba(26,26,24,0.60) 60%,
    rgba(26,26,24,0.40) 100%
  );
}
/* respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero__bg { animation: none; transform: scale(1.06); }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: var(--nav-h);
  text-align: center;
}

.hero__label {
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.hero__title {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  max-width: 18ch;
  margin: 0 auto 1.8rem;
  line-height: 1.08;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
}

.hero__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.8);
  max-width: 50ch;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Stats Bar ── */
.stats {
  background: linear-gradient(135deg, #0D1B3E 0%, #1B2D5E 50%, #0D1B3E 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(240,165,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.stats::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}
.stats__item {
  padding: 3rem 2rem 2.8rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.4s, transform 0.4s var(--ease);
  position: relative;
}
.stats__item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px; height: 2px;
  background: var(--accent);
  transition: transform 0.4s var(--ease);
}
.stats__item:last-child { border-right: none; }
.stats__item:hover { background: rgba(240,165,0,0.06); }
.stats__item:hover::before { transform: translateX(-50%) scaleX(1); }
.stats__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(240,165,0,0.12);
  border: 1px solid rgba(240,165,0,0.25);
  margin: 0 auto 1.2rem;
  color: var(--accent);
  transition: background 0.3s, border-color 0.3s;
}
.stats__item:hover .stats__icon {
  background: rgba(240,165,0,0.2);
  border-color: rgba(240,165,0,0.5);
}
.stats__num {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.stats__label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* ── Section Header ── */
.section-head { margin-bottom: 3.5rem; }
.section-head.center { text-align: center; }
.section-head.center .gold-rule { margin-left: auto; margin-right: auto; }

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  position: relative;
  background: var(--white);
  padding: 2.5rem 2rem 2rem;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(to bottom, var(--accent), var(--accent-dark));
  transition: height 0.4s var(--ease);
}
.service-card:hover::before { height: 100%; }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(26,26,24,0.10);
}

.service-card__num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(196,168,130,0.25);
  line-height: 1;
  margin-bottom: 1.2rem;
  transition: color 0.4s;
}
.service-card:hover .service-card__num { color: rgba(196,168,130,0.5); }
.service-card__title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}
.service-card__text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Process Steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark), var(--accent));
}

.process-step {
  text-align: center;
  padding: 0 1.5rem 2rem;
  position: relative;
  z-index: 1;
}
.process-step__circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--dark);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--accent);
  position: relative;
  transition: all 0.3s var(--ease);
}
.process-step:hover .process-step__circle {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(196,168,130,0.15);
}
.process-step__title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.process-step__text {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── Portfolio Grid ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.portfolio-item:nth-child(1) { grid-column: span 8; grid-row: span 1; }
.portfolio-item:nth-child(2) { grid-column: span 4; grid-row: span 1; }
.portfolio-item:nth-child(3) { grid-column: span 4; }
.portfolio-item:nth-child(4) { grid-column: span 4; }
.portfolio-item:nth-child(5) { grid-column: span 4; }
.portfolio-item:nth-child(6) { grid-column: span 6; }
.portfolio-item:nth-child(7) { grid-column: span 6; }

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform 0.7s var(--ease);
}
.portfolio-item:hover img { transform: scale(1.06); }

.portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,24,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.portfolio-item:hover .portfolio-item__overlay { opacity: 1; }
.portfolio-item__label {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--white);
}

/* ── Testimonials ── */
/* ── Reviews Slider ── */
.reviews-slider {
  position: relative;
  overflow: hidden;
}
.reviews-slider__track {
  display: flex;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  margin-right: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  transition: all 0.35s var(--ease);
}
/* Slider controls */
.reviews-slider__btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--dark);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
  z-index: 10;
  box-shadow: 0 4px 16px rgba(27,45,94,0.10);
}
.reviews-slider__btn:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.reviews-slider__btn--prev { left: -22px; }
.reviews-slider__btn--next { right: -22px; }
.reviews-slider__dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 2rem;
}
.reviews-slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: 1.5px solid var(--muted);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  padding: 0;
}
.reviews-slider__dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.3);
}

/* ── Split Grid (text + image two-col layout) ── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 768px) {
  .split-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  /* Always put the image above the text on mobile */
  .split-grid__media { order: -1; }
}

@media (max-width: 768px) {
  .testimonial-card { flex: 0 0 100%; margin-right: 1.5rem; }
  .reviews-slider__btn--prev { left: 0; }
  .reviews-slider__btn--next { right: 0; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .testimonial-card { flex: 0 0 calc(50% - 0.75rem); }
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,26,24,0.08);
  border-color: var(--accent);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}
.star { color: var(--accent); font-size: 0.9rem; }

.testimonial-card__text {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
}
.testimonial-card__meta {
  font-size: 0.75rem;
  color: var(--accent-dark);
}

/* ── Google Rating Badge ── */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
}
.rating-badge__score {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--dark);
}
.rating-badge__stars { display: flex; gap: 2px; }
.rating-badge__label {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  line-height: 1.5;
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--dark);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(240,165,0,0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(192,120,0,0.07) 0%, transparent 60%);
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-banner__title {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}
.cta-banner__sub {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 50ch;
  margin: 0 auto 2.5rem;
}
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ── Footer ── */
.footer {
  background: #0D1B3E;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer__logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  margin-bottom: 1rem;
  display: block;
}
.footer__brand-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 30ch;
  margin-bottom: 1.5rem;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.footer__social {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s;
  text-decoration: none;
}
.footer__social:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(196,168,130,0.08);
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer__link:hover { color: var(--accent); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}
.footer__contact-icon {
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer__contact-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ── Global: faint gold underline on all tel/mailto links ── */
a[href^="tel:"],
a[href^="mailto:"] {
  border-bottom: 1px solid rgba(240,165,0,0.3);
  padding-bottom: 0.1rem;
  transition: color 0.3s, border-color 0.3s;
}
a[href^="tel:"]:hover,
a[href^="mailto:"]:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer__credit {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer__credit a {
  color: var(--accent);
  transition: color 0.3s;
}
.footer__credit a:hover { color: var(--white); }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: var(--white);
  padding: 0.75rem 1.25rem 0.75rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s var(--ease);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: calc(2rem + 140px);
  z-index: 900;
  width: 44px; height: 44px;
  background: var(--dark);
  border: 1px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.3s var(--ease);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--accent);
  color: var(--white);
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.4s; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.5s; }
.stagger.visible > *:nth-child(7) { opacity: 1; transform: none; transition-delay: 0.6s; }
.stagger.visible > *:nth-child(8) { opacity: 1; transform: none; transition-delay: 0.7s; }

/* ── Shimmer CTA ── */
.shimmer-wrap {
  position: relative;
  display: inline-block;
}
.shimmer-wrap::before {
  content: '';
  position: absolute;
  top: -2px; right: -2px; bottom: -2px; left: -2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(196,168,130,0.6) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2.4s linear infinite;
  z-index: -1;
  border-radius: 2px;
}
@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(196,168,130,0.12) 0%, transparent 70%);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__label {
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}
.page-hero__title {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
}
.page-hero__title em { font-style: italic; color: var(--accent); }
.page-hero__sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  max-width: 55ch;
  margin: 1.2rem auto 0;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
  justify-content: center;
  letter-spacing: 0.06em;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* ── About Page ── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-intro__img {
  position: relative;
}
.about-intro__img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.about-intro__img::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  border: 2px solid var(--accent);
  z-index: -1;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.value-item {
  padding: 1.2rem;
  border-left: 3px solid var(--accent);
  background: var(--surface);
}
.value-item__title {
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.3rem;
}
.value-item__text {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── Services Page ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
/* Desktop: image spans both rows on the left; header+body stack on the right */
.service-detail__img    { grid-column: 1; grid-row: 1 / 3; }
.service-detail__header { grid-column: 2; grid-row: 1; align-self: end; padding-bottom: 1.5rem; }
.service-detail__body   { grid-column: 2; grid-row: 2; align-self: start; }
/* Reverse: image on the right */
.service-detail.reverse .service-detail__img    { grid-column: 2; grid-row: 1 / 3; }
.service-detail.reverse .service-detail__header { grid-column: 1; grid-row: 1; }
.service-detail.reverse .service-detail__body   { grid-column: 1; grid-row: 2; }
.service-detail__img {
  overflow: hidden;
  height: 380px;
}
.service-detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.service-detail:hover .service-detail__img img { transform: scale(1.04); }
.service-detail__num {
  font-family: var(--font-head);
  font-size: 5rem;
  color: rgba(196,168,130,0.2);
  line-height: 1;
  margin-bottom: 0;
}
.service-detail__title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 1rem;
  margin-top: -1rem;
}
.service-detail__text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.service-detail__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-detail__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.service-detail__list li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Projects Page ── */
.projects-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  justify-content: center;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: rgba(196,168,130,0.08);
}

.projects-masonry {
  columns: 3;
  column-gap: 16px;
}
.project-tile {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.project-tile img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease);
}
.project-tile:hover img { transform: scale(1.05); }
.project-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,24,0.85) 0%, rgba(26,26,24,0.1) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.project-tile:hover .project-tile__overlay { opacity: 1; }
.project-tile__title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--white);
}
.project-tile__cat {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.2rem;
}

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
}

.contact-info-card {
  background: var(--dark);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  bottom: -3rem; right: -3rem;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,168,130,0.12), transparent);
}

.contact-info-card__title {
  color: var(--white);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.5rem;
}
.contact-info-card__sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-item__icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.3s;
}
.contact-info-item:hover .contact-info-item__icon {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.contact-info-item__label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.2rem;
}
.contact-info-item__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.contact-info-item__text a { color: inherit; transition: color 0.3s; }
.contact-info-item__text a:hover { color: var(--accent); }

/* GHL Form Skeleton Loader */
.ghl-skeleton {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  background: #f7f4ef;
  z-index: 1;
  pointer-events: none;
}
.ghl-skeleton__row {
  height: 48px;
  border-radius: 6px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #ece8e0 25%, #e0dbd3 50%, #ece8e0 75%);
  background-size: 200% 100%;
  animation: ghlShimmer 1.4s infinite;
}
.ghl-skeleton__row--half { width: 48%; display: inline-block; }
.ghl-skeleton__row--half + .ghl-skeleton__row--half { margin-left: 4%; }
.ghl-skeleton__btn {
  height: 48px;
  width: 50%;
  border-radius: 6px;
  margin-top: 0.5rem;
  background: linear-gradient(90deg, #c4a882 25%, #b89a72 50%, #c4a882 75%);
  background-size: 200% 100%;
  animation: ghlShimmer 1.4s infinite;
  opacity: 0.5;
}
@keyframes ghlShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 0.85rem 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6660' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196,168,130,0.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }

.form-submit { align-self: flex-start; }

/* Map */
.map-wrap {
  margin-top: 4rem;
  height: 400px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  filter: grayscale(20%);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-intro { grid-template-columns: 1fr; gap: 3rem; }
  .about-intro__img::after { display: none; }
  .service-detail {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.5rem;
  }
  .service-detail.reverse .service-detail__img,
  .service-detail__img    { grid-column: 1; grid-row: 2; }
  .service-detail.reverse .service-detail__header,
  .service-detail__header { grid-column: 1; grid-row: 1; }
  .service-detail.reverse .service-detail__body,
  .service-detail__body   { grid-column: 1; grid-row: 3; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { order: 2; }
  .reveal-right { order: 1; }
  .ghl-wrap { overflow: hidden; position: relative; }
  .ghl-wrap #inline-l16tTdaqvg0CG0wSsarz { margin-top: -60px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .stats__inner { grid-template-columns: repeat(4, 1fr); }
  .stats__item { padding: 1.6rem 0.5rem 1.4rem; border-right: 1px solid rgba(255,255,255,0.07); }
  .stats__item:last-child { border-right: none; }
  .stats__icon { width: 32px; height: 32px; margin-bottom: 0.7rem; }
  .stats__icon svg { width: 14px; height: 14px; }
  .stats__num { font-size: 1.4rem; margin-bottom: 0.3rem; }
  .stats__label { font-size: 0.55rem; letter-spacing: 0.1em; }
  .portfolio-item:nth-child(1) { grid-column: span 12; }
  .portfolio-item:nth-child(2) { grid-column: span 12; }
  .portfolio-item:nth-child(3) { grid-column: span 6; }
  .portfolio-item:nth-child(4) { grid-column: span 6; }
  .portfolio-item:nth-child(5) { grid-column: span 12; }
  .portfolio-item:nth-child(6) { grid-column: span 12; }
  .portfolio-item:nth-child(7) { grid-column: span 12; }
  .projects-masonry { columns: 2; }
}

@media (max-width: 640px) {
  :root { --nav-h: 68px; }
  .stats__inner { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__logo-img { margin: 0 auto; }
  .footer__brand-desc { margin-left: auto; margin-right: auto; text-align: center; }
  .footer__bottom { justify-content: center; text-align: center; }
  .footer__socials { justify-content: center; }
  .footer__links { align-items: center; }
  .footer__contact-item { justify-content: center; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .projects-masonry { columns: 1; }
  .back-to-top { right: calc(2rem + 120px); }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 0.75rem; border-radius: 50%; }
  .portfolio-item img { min-height: 200px; }
}

/* ── Utility ── */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
