/* ============================================
   CRISTALERIA ROQUETAS — STYLESHEET
   Burgundy + Blush · Minimalist Magazine
   ============================================ */

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

:root {
  --burgundy: #7B2D3B;
  --burgundy-deep: #5C1F2C;
  --burgundy-light: #9A3D4F;
  --blush: #F5E6E0;
  --blush-light: #FAF3F0;
  --blush-mid: #EDE0DA;
  --cream: #FDF8F6;
  --white: #FFFFFF;
  --text-dark: #1A1214;
  --text-mid: #4A3538;
  --text-light: #7A6064;
  --text-muted: #A89094;
  --line: rgba(123, 45, 59, 0.12);
  --line-strong: rgba(123, 45, 59, 0.25);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  padding: var(--space-xs) var(--space-sm);
  background: var(--burgundy);
  color: var(--white);
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-size: 0.875rem;
  transition: top var(--transition);
}

.skip-link:focus {
  top: var(--space-sm);
}

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

/* --- HEADER --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 248, 246, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 1px 30px rgba(123, 45, 59, 0.08);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--burgundy);
  font-family: var(--font-display);
  text-decoration: none;
  transition: opacity var(--transition);
}

.logo:hover {
  opacity: 0.8;
}

.logo-icon {
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

/* --- NAV --- */
.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.nav-link {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--burgundy);
  transition: width var(--transition);
}

.nav-link:hover {
  color: var(--burgundy);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link--cta {
  color: var(--white);
  background: var(--burgundy);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
}

.nav-link--cta::after {
  display: none;
}

.nav-link--cta:hover {
  color: var(--white);
  background: var(--burgundy-deep);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-xs);
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-dark);
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(245, 230, 224, 0.6) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-3xl) var(--space-lg);
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.hero-content {
  padding-right: var(--space-lg);
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--burgundy);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.01em;
}

.hero-title .accent {
  font-style: italic;
  color: var(--burgundy);
  font-weight: 300;
}

.hero-desc {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: var(--space-xl);
  max-width: 440px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--burgundy);
  color: var(--white);
  border: 1px solid var(--burgundy);
}

.btn--primary:hover {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(123, 45, 59, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--line-strong);
}

.btn--ghost:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.btn--dark {
  background: var(--text-dark);
  color: var(--white);
  border: 1px solid var(--text-dark);
}

.btn--dark:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--burgundy);
  border: 1px solid var(--white);
}

.btn--white:hover {
  background: var(--blush);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.btn--white-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

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

/* Hero visual */
.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.hero-image-wrapper img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.hero-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--burgundy);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.3;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 30px rgba(123, 45, 59, 0.06);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1;
}

.stat-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--line-strong);
}

.hero-marker {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.hero-marker span:first-child {
  width: 8px;
  height: 8px;
  background: var(--burgundy);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* --- SECTION COMMON --- */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.01em;
}

/* --- SERVICIOS --- */
.servicios {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.servicios .section-header {
  margin-bottom: var(--space-2xl);
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
}

.servicio-card {
  background: var(--white);
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  transition: background var(--transition);
}

.servicio-card:hover {
  background: var(--blush-light);
}

.servicio-num {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  letter-spacing: 0.05em;
}

.servicio-icon {
  color: var(--burgundy);
  margin-bottom: var(--space-md);
  opacity: 0.85;
}

.servicio-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: var(--space-sm);
  color: var(--text-dark);
  line-height: 1.3;
}

.servicio-card p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.servicio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--burgundy);
  transition: gap var(--transition);
}

.servicio-link:hover {
  gap: 10px;
}

/* --- PROYECTOS --- */
.proyectos {
  padding: var(--space-3xl) 0;
  background: var(--cream);
}

.proyectos-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.proyectos-text {
  padding-right: var(--space-lg);
}

.proyectos-desc {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.proyectos-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-item--large {
  grid-column: 1 / -1;
}

.gallery-item--large img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item--small img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

/* --- NOSOTROS --- */
.nosotros {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.nosotros-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.nosotros-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.nosotros-image img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.nosotros-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(to top, rgba(26, 18, 20, 0.7), transparent);
  color: var(--white);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.nosotros-image-overlay p {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.nosotros-content {
  padding-left: var(--space-lg);
}

.nosotros-divider {
  width: 48px;
  height: 1px;
  background: var(--burgundy);
  margin-bottom: var(--space-lg);
}

.nosotros-content p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: var(--space-md);
}

.nosotros-content strong {
  color: var(--text-dark);
  font-weight: 500;
}

.nosotros-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--line);
}

.value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-mid);
}

.value svg {
  color: var(--burgundy);
  flex-shrink: 0;
}

/* --- CTA --- */
.cta {
  padding: var(--space-3xl) 0;
  background: var(--burgundy);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 50%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(245, 230, 224, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta .container {
  position: relative;
  text-align: center;
}

.cta-eyebrow {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-sm);
}

.cta-title {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.0625rem;
  max-width: 520px;
  margin: 0 auto var(--space-xl);
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* --- CONTACTO --- */
.contacto {
  padding: var(--space-3xl) 0;
  background: var(--cream);
}

.contacto-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.contacto-divider {
  width: 48px;
  height: 1px;
  background: var(--burgundy);
  margin-bottom: var(--space-lg);
}

.contacto-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.contacto-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contacto-item svg {
  color: var(--burgundy);
  flex-shrink: 0;
  margin-top: 3px;
}

.contacto-label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contacto-item span:last-child {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.contacto-item a {
  color: var(--burgundy);
  transition: color var(--transition);
}

.contacto-item a:hover {
  color: var(--burgundy-deep);
}

.contacto-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
}

/* --- FORM --- */
.contacto-form-wrap {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}

.form-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.required {
  color: var(--burgundy);
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--blush-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--burgundy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.08);
}

.form-select {
  appearance: none;
  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='%237A6064' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

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

.form-success {
  text-align: center;
  padding: var(--space-xl);
}

.form-success svg {
  color: var(--burgundy);
  margin-bottom: var(--space-md);
}

.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}

.form-success p {
  font-size: 0.9375rem;
  color: var(--text-mid);
}

/* --- FOOTER --- */
.site-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo--footer {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}

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

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-phone {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 4px;
  transition: color var(--transition);
}

.footer-phone:hover {
  color: var(--blush);
}

.footer-address {
  font-size: 0.8125rem;
  line-height: 1.6;
}

.footer-bottom {
  padding-top: var(--space-lg);
  text-align: center;
}

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

/* --- ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding: var(--space-2xl) var(--space-lg);
  }

  .hero-content {
    padding-right: 0;
    order: 1;
  }

  .hero-visual {
    order: 2;
    max-width: 500px;
  }

  .hero-image-wrapper img {
    height: 400px;
  }

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

  .proyectos-layout,
  .nosotros-layout,
  .contacto-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .nosotros-content {
    padding-left: 0;
  }

  .proyectos-text {
    padding-right: 0;
  }

  .nosotros-image img {
    height: 400px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 5rem;
    --space-2xl: 4rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }

  .nav-list.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1rem;
  }

  .nav-link--cta {
    padding: 14px 28px;
  }

  .hero-title {
    font-size: clamp(2.25rem, 8vw, 3.5rem);
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .stat-divider {
    display: none;
  }

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

  .servicio-card {
    padding: var(--space-lg);
  }

  .nosotros-values {
    grid-template-columns: 1fr;
  }

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

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

  .contacto-form-wrap {
    padding: var(--space-lg);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-brand {
    grid-column: auto;
  }

  .hero-marker {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .header-inner {
    padding: 0 var(--space-md);
  }

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

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

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

  .gallery-item--large img,
  .gallery-item--small img {
    height: 240px;
  }
}
