/* ===================================================
   KRONEKER - Desarrollos & Soluciones
   Premium Dark Theme | Mobile First
   =================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  --c-primary: #E65100;
  --c-primary-hover: #BF360F;
  --c-primary-light: #FF8A65;
  --c-primary-glow: rgba(230, 81, 0, .25);

  --c-bg: #0A0A0A;
  --c-bg-alt: #111111;
  --c-bg-card: #1A1A1A;
  --c-bg-card-hover: #222222;

  --c-text: #F0F0F0;
  --c-text-secondary: #A0A0A0;
  --c-text-muted: #666666;

  --c-border: #2A2A2A;
  --c-border-light: #333333;

  --ff-heading: 'Space Grotesk', sans-serif;
  --ff-body: 'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, .4);
  --shadow-glow: 0 0 40px var(--c-primary-glow);

  --transition: .3s cubic-bezier(.4, 0, .2, 1);
  --container-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Smooth touch scrolling on mobile */
@supports (-webkit-overflow-scrolling: touch) {
  body {
    -webkit-overflow-scrolling: touch;
  }
}

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

/* Prevent layout shift from lazy-loaded images */
.project-card img,
.about__image img,
.specialty__gallery img {
  background: var(--c-bg-card);
}

/* GPU-accelerate scrolling sections */
.specialty__gallery,
.projects__grid,
.services__grid {
  will-change: transform;
}

/* Stable image containers */
.project-card {
  contain: layout style paint;
}

a {
  color: var(--c-primary-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--c-primary);
}

ul {
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

.text-accent {
  color: var(--c-primary);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--ff-heading);
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1;
}

.btn--primary {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}

.btn--primary:hover {
  background: var(--c-primary-hover);
  border-color: var(--c-primary-hover);
  color: #fff;
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border-light);
}

.btn--outline:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
}

.section-header__tag {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-primary);
  background: var(--c-primary-glow);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-header__title {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-text);
}

.section-header__subtitle {
  margin-top: 12px;
  color: var(--c-text-secondary);
  font-size: 1.05rem;
}

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  transition: all var(--transition);
  background: rgba(10, 10, 10, .85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border);
}

.navbar--scrolled {
  background: rgba(10, 10, 10, .95);
  padding: 10px 0;
}

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

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c-text);
}

.navbar__logo:hover {
  color: var(--c-text);
}

.navbar__k-svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.navbar__brand {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
}

/* Hamburger */
.navbar__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.navbar__menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--c-bg-alt);
  padding: 100px 32px 32px;
  transition: right var(--transition);
  border-left: 1px solid var(--c-border);
}

.navbar__menu.active {
  right: 0;
}

.navbar__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.navbar__link {
  display: block;
  padding: 12px 0;
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--c-text-secondary);
  transition: color var(--transition);
  border-bottom: 1px solid var(--c-border);
}

.navbar__link:hover {
  color: var(--c-primary);
}

.navbar__link--cta {
  margin-top: 16px;
  text-align: center;
  padding: 12px 28px;
  background: var(--c-primary);
  color: #fff;
  border-radius: var(--radius-full);
  border-bottom: none;
}

.navbar__link--cta:hover {
  background: var(--c-primary-hover);
  color: #fff;
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .5) 50%, rgba(0, 0, 0, .7) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 100px 16px 80px;
}

.hero__badge {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-primary);
  border: 2px solid var(--c-primary);
  padding: 12px 24px;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  animation: fadeInUp .8s ease both;
  max-width: 100%;
  height: auto;
  white-space: normal;
  overflow-wrap: break-word;
  text-align: center;
  line-height: 1.8;
}

.hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  animation: fadeInUp .8s ease .15s both;
}

.hero__title--accent {
  color: var(--c-primary);
}

.hero__subtitle {
  max-width: 560px;
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  margin-bottom: 32px;
  animation: fadeInUp .8s ease .3s both;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeInUp .8s ease .45s both;
}

.hero__actions .btn {
  justify-content: center;
  width: 100%;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 12px;
  position: relative;
}

.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--c-primary);
  border-radius: 2px;
  animation: scrollDown 1.8s ease infinite;
}

/* ===================================================
   ABOUT
   =================================================== */
.about {
  padding: 60px 0;
  background: var(--c-bg);
}

.about__grid {
  display: grid;
  gap: 40px;
}

.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--c-primary);
  border-radius: var(--radius-lg);
  opacity: .3;
  pointer-events: none;
}

.about__image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about__lead {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about__text p {
  color: var(--c-text-secondary);
  margin-bottom: 28px;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--c-border);
}

.about__stat {
  text-align: center;
}

.about__stat-number {
  display: block;
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1;
}

.about__stat-label {
  display: block;
  font-size: .8rem;
  color: var(--c-text-muted);
  margin-top: 4px;
}

/* ===================================================
   SERVICES (Especialidades Cards)
   =================================================== */
.services {
  padding: 60px 0;
  background: var(--c-bg-alt);
}

.services__grid {
  display: grid;
  gap: 16px;
}

.service-card {
  display: block;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  color: var(--c-text);
  text-decoration: none;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  background: var(--c-bg-card-hover);
  border-color: var(--c-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  color: var(--c-text);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-primary-glow);
  color: var(--c-primary);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.service-card__title {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--c-text);
}

.service-card__desc {
  font-size: .93rem;
  color: var(--c-text-secondary);
  line-height: 1.7;
}

/* ===================================================
   SPECIALTY SECTIONS
   =================================================== */
.specialty,
.projects,
.services {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.specialty {
  padding: 60px 0;
  background: var(--c-bg);
}

.specialty--alt {
  background: var(--c-bg-alt);
}

.specialty__gallery {
  display: grid;
  gap: 16px;
}

/* ===================================================
   PROJECTS / GALLERY
   =================================================== */
.projects {
  padding: 60px 0;
  background: var(--c-bg-alt);
}

.projects__grid {
  display: grid;
  gap: 16px;
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.project-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-card__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, transparent 100%);
  transform: translateY(0);
  opacity: 1;
  transition: all var(--transition);
}

.project-card__tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 4px;
}

.project-card__caption h3 {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

/* Featured card in specialty galleries */
.project-card--featured {
  aspect-ratio: 16/9;
}

/* ===================================================
   CONTACT
   =================================================== */
.contact {
  padding: 60px 0;
  background: var(--c-bg);
}

.contact__grid {
  display: grid;
  gap: 40px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__info-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
  min-width: 0;
}

.contact__info-card:hover {
  border-color: var(--c-primary);
}

.contact__info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-primary-glow);
  color: var(--c-primary);
  border-radius: var(--radius-sm);
}

.contact__info-card>div {
  min-width: 0;
  flex: 1;
}

.contact__info-card h3 {
  font-family: var(--ff-heading);
  font-size: .9rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 4px;
}

.contact__info-card p,
.contact__info-card a {
  display: block;
  font-size: .85rem;
  color: var(--c-text-secondary);
  line-height: 1.6;
  word-break: normal;
  overflow-wrap: anywhere;
}

.contact__info-card a:hover {
  color: var(--c-primary);
}

.contact__name {
  font-size: .78rem;
  color: var(--c-text-muted);
  margin-bottom: 4px;
}

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  position: relative;
}

.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--c-text);
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: var(--c-text-muted);
}

.contact__form select {
  color: var(--c-text-muted);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact__form select:valid {
  color: var(--c-text);
}

.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px var(--c-primary-glow);
}

.contact__form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__form .btn {
  margin-top: 8px;
}

.contact__form .btn svg {
  flex-shrink: 0;
}

.contact__form-feedback {
  font-size: .9rem;
  text-align: center;
  min-height: 24px;
}

.contact__form-feedback.success {
  color: #4caf50;
}

.contact__form-feedback.error {
  color: #f44336;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  padding: 40px 0 24px;
  background: var(--c-bg-card);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-border);
}

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

.footer__k-svg {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.footer__brand-text {
  display: flex;
  flex-direction: column;
}

.footer__name {
  display: block;
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--c-text);
}

.footer__tagline {
  display: block;
  font-size: .78rem;
  color: var(--c-text-muted);
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-full);
  color: var(--c-text-secondary);
  font-size: .85rem;
  font-family: var(--ff-body);
  transition: all var(--transition);
}

.footer__social-link:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  background: var(--c-primary-glow);
}

.footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-full);
  color: var(--c-text-secondary);
  transition: all var(--transition);
}

.footer__social-icon:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  background: var(--c-primary-glow);
}

.footer__bottom {
  padding-top: 24px;
  text-align: center;
}

.footer__bottom p {
  font-size: .82rem;
  color: var(--c-text-muted);
}

.footer__credit {
  margin-top: 6px;
  font-size: .78rem;
  color: var(--c-text-muted);
}

.footer__credit a {
  color: var(--c-text-secondary);
  transition: color var(--transition);
}

.footer__credit a:hover {
  color: var(--c-primary);
}

.footer__stock-credit {
  margin-top: 4px;
  font-size: .72rem;
  color: var(--c-text-muted);
}

.footer__stock-credit a {
  color: var(--c-text-muted);
}

.footer__stock-credit a:hover {
  color: var(--c-primary);
}

/* ===================================================
   WHATSAPP FLOAT
   =================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .5);
  color: #fff;
}

/* ===================================================
   ANIMATIONS
   =================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollDown {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.25, .46, .45, .94), transform .6s cubic-bezier(.25, .46, .45, .94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   RESPONSIVE - Small (480px)
   =================================================== */
@media (min-width: 480px) {
  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero__actions .btn {
    width: auto;
  }

  .hero__badge {
    font-size: .8rem;
    letter-spacing: 2.5px;
    padding: 14px 28px;
  }

  .hero__content {
    padding: 120px 20px 80px;
  }

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

  .project-card--featured {
    grid-column: 1 / -1;
  }
}

/* ===================================================
   RESPONSIVE - Tablet (640px)
   =================================================== */
@media (min-width: 640px) {
  .container {
    padding: 0 32px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .about,
  .services,
  .specialty,
  .projects,
  .contact {
    padding: 80px 0;
  }

  .service-card {
    padding: 32px 28px;
  }

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

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

  .contact__info-card {
    padding: 20px;
  }

  /* Contact info: 2×2 grid at tablet */
  .contact__info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  /* Captions hidden by default on tablet+, show on hover */
  .project-card__caption {
    transform: translateY(10px);
    opacity: 0;
  }

  .project-card:hover .project-card__caption {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===================================================
   RESPONSIVE - Desktop (960px)
   =================================================== */
@media (min-width: 960px) {
  .container {
    padding: 0 40px;
  }

  .about,
  .services,
  .specialty,
  .projects,
  .contact {
    padding: 100px 0;
  }

  /* Navbar desktop */
  .navbar__toggle {
    display: none;
  }

  .navbar__menu {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: none;
    padding: 0;
    border: none;
  }

  .navbar__list {
    flex-direction: row;
    align-items: center;
    gap: 4px;
  }

  .navbar__link {
    padding: 8px 16px;
    font-size: .9rem;
    border-bottom: none;
    border-radius: var(--radius-full);
  }

  .navbar__link:hover {
    background: rgba(255, 255, 255, .06);
  }

  .navbar__link--cta {
    margin-top: 0;
    margin-left: 8px;
    padding: 10px 24px;
  }

  .navbar__link--cta:hover {
    background: var(--c-primary-hover);
  }

  .hero__badge {
    font-size: .85rem;
    letter-spacing: 3px;
    padding: 14px 32px;
    max-width: 700px;
  }

  /* Hero */
  .hero__content {
    padding: 0 40px;
    max-width: 700px;
  }

  /* About */
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .about__stats {
    gap: 24px;
  }

  .about__stat-number {
    font-size: 2.4rem;
  }

  /* Services - 5 cards: 3+2 layout */
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Specialty galleries */
  .specialty__gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .project-card--featured {
    grid-column: 1 / -1;
    aspect-ratio: 21/9;
  }

  /* Projects */
  .projects__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Contact */
  .contact__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .contact__info {
    display: flex;
    flex-direction: column;
  }

  .contact__form {
    height: 100%;
  }

  .contact__form .form-group:has(textarea) {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .contact__form textarea {
    flex: 1;
  }

  /* Footer */
  .footer__top {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ===================================================
   RESPONSIVE - Large Desktop (1200px)
   =================================================== */
@media (min-width: 1200px) {
  .hero__title {
    font-size: 4.5rem;
  }

  .services__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .service-card {
    padding: 28px 20px;
  }
}

/* ---------- Mobile Menu Overlay ---------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ---------- Selection ---------- */
::selection {
  background: var(--c-primary);
  color: #fff;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--c-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--c-border-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--c-primary);
}