/* ============================================
   CRONUS CONCRETE — Light Architectural Theme
   Warm, refined, editorial. Truth to materials.
   ============================================ */

/* --- Design Tokens --- */
:root {
  /* Palette — light-dominant */
  --bg-primary:       #F5F3EF;
  --bg-secondary:     #EDE9E3;
  --bg-concrete:      #E5E1DB;
  --bg-light:         #F5F3EF;
  --bg-light-alt:     #DDD8D1;
  --bg-dark:          #141414;
  --bg-dark-alt:      #1E1E1E;
  --brand:            #536941;
  --brand-light:      #6B8455;
  --brand-dark:       #3F5131;
  --text-light:       #F5F3EF;
  --text-dark:        #2C2824;
  --text-muted:       #7A756F;
  --text-muted-light: #9A9590;
  --border-dark:      rgba(0,0,0,0.08);
  --border-light:     rgba(0,0,0,0.08);

  /* Typography */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-pad:    clamp(80px, 12vw, 160px);
  --section-pad-sm: clamp(48px, 8vw, 96px);
  --container:      1280px;
  --container-pad:  clamp(20px, 5vw, 48px);

  /* Transitions */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Image Protection */
img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: auto;
  -webkit-user-drag: none;
}

body {
  background: var(--bg-primary);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}
a img, button img { pointer-events: auto; }
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Concrete Grain Overlay --- */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0.02;
  z-index: 10000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 512px 512px;
}

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* --- Section Foundations --- */
.section { padding: var(--section-pad) 0; }
.section--dark { background: var(--bg-dark); color: var(--text-light); }
.section--concrete { background: var(--bg-secondary); }
.section--light {
  background: var(--bg-light);
  color: var(--text-dark);
}
.section--light-alt {
  background: var(--bg-light-alt);
  color: var(--text-dark);
}

/* --- Typography --- */
.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.h1 { font-size: clamp(3rem, 10vw, 7rem); }
.h2 { font-size: clamp(2rem, 6vw, 4rem); }
.h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
.h4 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--brand);
}
.section--light .section-label { color: var(--brand); }
.section--light .section-label::before { background: var(--brand); }

.body-lg {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.8;
}

.text-muted { color: var(--text-muted); }
.section--light .text-muted { color: #6B6B6B; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  cursor: pointer;
}
.btn__arrow {
  transition: transform 0.3s var(--ease-out);
}
.btn:hover .btn__arrow {
  transform: translateX(4px);
}

.btn--primary {
  background: var(--brand);
  color: var(--text-light);
}
.btn--primary:hover {
  background: var(--brand-light);
}

.btn--outline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--outline:hover {
  border-color: var(--text-light);
  background: rgba(255,255,255,0.05);
}

.btn--outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid rgba(0,0,0,0.2);
}
.btn--outline-dark:hover {
  border-color: var(--text-dark);
  background: rgba(0,0,0,0.03);
}

.btn--large {
  padding: 20px 48px;
  font-size: 14px;
}

/* ============================
   NAVIGATION
   ============================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  transition: background 0.4s var(--ease-out), border-color 0.4s, color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(245,243,239,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border-light);
}
.nav__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
  transition: color 0.4s;
}
.nav--scrolled .nav__logo { color: var(--text-dark); }
.nav__logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.4s;
}
.nav--scrolled .nav__logo-img { filter: none; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  position: relative;
}
.nav--scrolled .nav__link { color: var(--text-muted); }
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brand-light);
  transition: width 0.3s var(--ease-out);
}
.nav__link:hover,
.nav__link--active {
  color: #fff;
}
.nav--scrolled .nav__link:hover,
.nav--scrolled .nav__link--active {
  color: var(--text-dark);
}
.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}
.nav__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--brand-light);
  transition: color 0.3s;
}
.nav__phone:hover { color: #fff; }
.nav--scrolled .nav__phone { color: var(--brand-light); }
.nav--scrolled .nav__phone:hover { color: var(--text-dark); }
.nav__phone svg {
  width: 16px;
  height: 16px;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 2;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.nav--scrolled .nav__hamburger span { background: var(--text-dark); }
.nav__hamburger--active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav__hamburger--active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger--active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,20,20,0.35) 0%,
    rgba(20,20,20,0.2) 50%,
    rgba(20,20,20,0.55) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  padding-top: 120px;
}
.hero__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 12vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 24px;
}
.hero__title em {
  font-style: normal;
  color: var(--brand-light);
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  color: var(--text-muted-light);
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 48px;
}
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--brand), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================
   STATS STRIP
   ============================ */
.stats {
  background: var(--bg-secondary);
  padding: 64px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stats__item {
  padding: 16px;
}
.stats__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 8px;
}
.stats__label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================
   SPLIT SECTION (image + content)
   ============================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__image {
  position: relative;
  overflow: hidden;
}
.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 96px);
}
.split__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.split__text {
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
}
.section--light .split__text { color: var(--text-muted); }

/* ============================
   SERVICE CARDS (homepage overview)
   ============================ */
.services-overview {
  padding: var(--section-pad) 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.service-card__image {
  position: absolute;
  inset: 0;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.7);
  transition: all 0.6s var(--ease-out);
}
.service-card:hover .service-card__image img {
  filter: grayscale(0%) brightness(0.85);
  transform: scale(1.05);
}
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.75) 0%, transparent 60%);
  z-index: 1;
}
.service-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  z-index: 2;
}
.service-card__number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: -8px;
}
.service-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: var(--text-light);
}
.service-card__desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted-light);
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 20px;
}
.service-card__link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s var(--ease-out);
}
.service-card:hover .service-card__link { gap: 14px; }

/* ============================
   HORIZONTAL SCROLL GALLERY
   ============================ */
.gallery {
  padding: var(--section-pad) 0 var(--section-pad-sm);
  overflow: hidden;
}
.gallery__header {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.gallery__track {
  display: flex;
  gap: 4px;
  cursor: grab;
  user-select: none;
  padding: 0 var(--container-pad);
  transition: cursor 0.1s;
}
.gallery__track:active { cursor: grabbing; }
.gallery__track.is-dragging { cursor: grabbing; }

.gallery__item {
  flex-shrink: 0;
  width: clamp(280px, 35vw, 500px);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.8);
  transition: all 0.6s var(--ease-out);
}
.gallery__item:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.03);
}
.gallery__item-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery__item:hover .gallery__item-overlay { opacity: 1; }
.gallery__item-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ============================
   PHILOSOPHY
   ============================ */
.philosophy {
  padding: var(--section-pad) 0;
  text-align: center;
}
.philosophy__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 32px;
}
.philosophy__text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  max-width: 800px;
  margin: 0 auto 24px;
}
.philosophy__attribution {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================
   CTA BAND
   ============================ */
.cta-band {
  background: var(--brand-dark);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  opacity: 0.9;
}
.cta-band__content {
  position: relative;
  z-index: 1;
}
.cta-band__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--text-light);
}
.cta-band__subtitle {
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  font-size: 1.05rem;
}
.cta-band__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn--white {
  background: var(--text-light);
  color: var(--brand-dark);
}
.btn--white:hover {
  background: #fff;
}
.btn--ghost {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: #141414;
  color: var(--text-light);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}
.footer__brand img { height: 32px; }
.footer__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 320px;
}
.footer__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--text-light); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-muted);
}
.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  stroke: var(--brand-light);
}
.footer__contact-item a {
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer__contact-item a:hover { color: var(--text-light); }

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__social a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
}
.footer__social a:hover {
  border-color: var(--brand);
  background: rgba(83,105,65,0.1);
}
.footer__social svg {
  width: 18px;
  height: 18px;
  fill: var(--text-muted);
  transition: fill 0.3s;
}
.footer__social a:hover svg { fill: var(--brand-light); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================
   STICKY MOBILE CTA
   ============================ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 8999;
  background: #141414;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 16px;
}
.mobile-cta__inner {
  display: flex;
  gap: 10px;
}
.mobile-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}
.mobile-cta__btn--call {
  background: var(--brand);
  color: var(--text-light);
}
.mobile-cta__btn--quote {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--text-light);
}
.mobile-cta__btn svg {
  width: 16px;
  height: 16px;
}

/* ============================
   PAGE HERO (interior pages)
   ============================ */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,20,20,0.45);
  z-index: 1;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-pad) var(--container-pad);
  padding-top: calc(var(--section-pad) + 80px);
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

/* ============================
   SERVICES PAGE - Detail sections
   ============================ */
.service-detail {
  padding: var(--section-pad) 0;
}
.service-detail__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.service-detail__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 300;
}
.service-detail__list li::before {
  content: '';
  width: 6px;
  height: 1px;
  background: var(--brand);
  flex-shrink: 0;
  margin-top: 11px;
}
.section--light .service-detail__list li::before { background: var(--brand-dark); }

/* Process Timeline */
.process {
  padding: var(--section-pad-sm) 0;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.process__step {
  padding: 48px 32px;
  text-align: center;
  position: relative;
  border: 1px solid var(--border-light);
}
.process__number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: rgba(0,0,0,0.06);
  margin-bottom: 16px;
  line-height: 1;
}
.process__step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.process__step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================
   PORTFOLIO PAGE
   ============================ */
.portfolio-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  background: transparent;
  transition: all 0.3s;
  cursor: pointer;
}
.filter-btn:hover,
.filter-btn--active {
  color: var(--text-dark);
  border-color: var(--brand);
  background: rgba(83,105,65,0.1);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 4px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.85);
  transition: all 0.6s var(--ease-out);
}
.portfolio-item:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.04);
}
.portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,20,20,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}
.portfolio-item:hover .portfolio-item__overlay { opacity: 1; }
.portfolio-item__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox--open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox__img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.3s;
}
.lightbox__close:hover { border-color: var(--text-light); }

/* ============================
   ABOUT PAGE
   ============================ */
.differentiators {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.diff-card {
  padding: 48px 40px;
  border: 1px solid var(--border-light);
}
.diff-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}
.diff-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--brand-light);
  fill: none;
  stroke-width: 1.5;
}
.diff-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.diff-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  text-align: center;
}
.team-card__photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 16px;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s;
}
.team-card:hover .team-card__photo img { filter: grayscale(0%); }
.team-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.team-card__role {
  font-size: 13px;
  color: var(--text-muted);
}

.areas-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.areas-list li {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
}

/* ============================
   CONTACT PAGE
   ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
}
.contact-form__group {
  margin-bottom: 24px;
}
.contact-form__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--brand);
}
.contact-form__textarea { min-height: 160px; resize: vertical; }
.contact-form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238A8580' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.contact-form__select option { background: var(--bg-secondary); }

.contact-form__status {
  font-size: 14px;
  margin-top: 16px;
  min-height: 24px;
}
.contact-form__status--success { color: var(--brand-light); }
.contact-form__status--error { color: #C45C5C; }

.contact-info {
  padding: 48px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-info__item {
  display: flex;
  gap: 16px;
}
.contact-info__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--brand-light);
  fill: none;
  stroke-width: 1.5;
}
.contact-info__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-info__value {
  font-size: 1rem;
  color: var(--text-dark);
}
.contact-info__value a {
  transition: color 0.3s;
}
.contact-info__value a:hover { color: var(--brand-light); }

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.trust-badge {
  text-align: center;
  padding: 32px 16px;
  border: 1px solid var(--border-light);
}
.trust-badge__icon {
  margin: 0 auto 12px;
  width: 32px; height: 32px;
}
.trust-badge__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--brand-light);
  fill: none;
  stroke-width: 1.5;
}
.trust-badge__text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================
   REVEAL ANIMATIONS
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal--left {
  transform: translateX(-32px);
}
.reveal--right {
  transform: translateX(32px);
}
.revealed {
  opacity: 1;
  transform: translate(0);
}

/* Stagger children */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.3s; }

/* Text clip reveal */
.text-reveal {
  overflow: hidden;
}
.text-reveal__inner {
  transform: translateY(100%);
  transition: transform 0.8s var(--ease-out);
}
.revealed .text-reveal__inner {
  transform: translateY(0);
}

/* Counter animation (handled by JS) */
.counter { display: inline-block; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 16/9; }
  .split { grid-template-columns: 1fr; }
  .split__image { min-height: 300px; }
  .split--reverse { direction: ltr; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .differentiators { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__hamburger { display: flex; }

  /* Mobile Nav Overlay */
  .nav__links--open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(245,243,239,0.98);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 1;
  }
  .nav__links--open .nav__link {
    font-size: 24px;
    letter-spacing: 3px;
  }

  .hero__title { font-size: clamp(2.8rem, 14vw, 5rem); }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__scroll-hint { display: none; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stats__item { padding: 24px 16px; border: 1px solid var(--border-light); }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; gap: 12px; text-align: center; }

  .process__grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-badges { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* Show sticky mobile CTA */
  .mobile-cta { display: block; }
  /* Add bottom padding to body for mobile CTA */
  body { padding-bottom: 72px; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .gallery__item { width: 85vw; }
}

/* ============================
   CUSTOM CURSOR (desktop only)
   ============================ */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--text-dark);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  opacity: 0;
  transition: opacity 0.2s;
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(44, 40, 36, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  opacity: 0;
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), opacity 0.2s, border-color 0.3s;
  will-change: transform;
}
.cursor-ring--hover {
  width: 56px; height: 56px;
  border-color: var(--brand-light);
}
.has-cursor,
.has-cursor * { cursor: none !important; }
.has-cursor a, .has-cursor button { cursor: none !important; }
