/* ================================================================
   ORIZONTALE — Main Stylesheet
   ================================================================ */

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

:root {
  --white:   #FAFAF8;
  --cream:   #F4F0EA;
  --sand:    #E5DDD3;
  --warm:    #C8BFB0;
  --taupe:   #8A7E72;
  --dark:    #111009;
  --black:   #0A0806;
  --gold:    #9A7040;
  --gold-lt: #B8904A;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Jost', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--dark); font-family: var(--sans); font-weight: 300; overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── UTILITIES ── */
.container { max-width: 1260px; margin: 0 auto; padding: 0 56px; }
.sec { padding: 96px 0; }
.sec-cream { background: var(--cream); }
.sec-dark  { background: var(--dark); }
.sec-label {
  font-size: .57rem; letter-spacing: .44em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.sec-label::before { content: ''; width: 18px; height: 1px; background: var(--gold); }
.sec-h {
  font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 300; line-height: 1.12; color: var(--dark);
}
.sec-h em { font-style: italic; color: var(--gold); }
.sec-h.light { color: white; }
.sec-h.light em { color: rgba(255,255,255,.55); }
.sec-p { font-size: .82rem; color: var(--taupe); line-height: 1.95; max-width: 560px; margin-top: 14px; }
.sec-p.light { color: rgba(255,255,255,.4); }

/* BUTTONS */
.btn-primary {
  display: inline-block; padding: 14px 36px;
  background: var(--dark); color: white;
  font-family: var(--sans); font-size: .62rem;
  letter-spacing: .22em; text-transform: uppercase;
  transition: background .3s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold); color: white; }
.btn-secondary {
  display: inline-block; padding: 14px 36px;
  border: 1px solid var(--warm); color: var(--dark);
  font-family: var(--sans); font-size: .62rem;
  letter-spacing: .22em; text-transform: uppercase;
  transition: border-color .3s, color .3s;
}
.btn-secondary:hover { border-color: var(--dark); }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px; background: #25D366; color: white;
  font-family: var(--sans); font-size: .62rem;
  letter-spacing: .22em; text-transform: uppercase;
  transition: background .3s;
}
.btn-whatsapp:hover { background: #1da851; color: white; }
.btn-ghost {
  display: inline-block; padding: 12px 32px;
  border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.6);
  font-family: var(--sans); font-size: .6rem;
  letter-spacing: .22em; text-transform: uppercase;
  transition: all .3s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.5); color: white; }

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

/* ── NAV ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 76px; background: rgba(250,250,248,.97);
  border-bottom: 1px solid var(--sand);
  display: flex; align-items: center; padding: 0 56px;
  transition: box-shadow .3s;
  backdrop-filter: blur(10px);
}
.site-header.shadow { box-shadow: 0 1px 24px rgba(0,0,0,.07); }
.site-logo { flex-shrink: 0; margin-right: auto; line-height: 0; }
.site-logo img { height: 48px; width: auto; }
.site-logo .text-logo {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 300;
  letter-spacing: .12em; color: var(--dark);
}
.nav-menu { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-menu a {
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--taupe); transition: color .25s;
}
.nav-menu a:hover,
.nav-menu .current-menu-item a { color: var(--dark); }
.nav-whatsapp {
  margin-left: 28px; flex-shrink: 0;
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--dark); border-bottom: 1px solid var(--warm);
  padding-bottom: 2px; transition: color .25s, border-color .25s;
}
.nav-whatsapp:hover { color: var(--gold); border-color: var(--gold); }
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
  margin-left: 20px;
}
.menu-toggle span { display: block; width: 20px; height: 1px; background: var(--dark); transition: .3s; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: 76px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--sand);
  z-index: 199; padding: 24px 56px; flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--taupe); padding: 12px 0; border-bottom: 1px solid var(--sand);
  transition: color .25s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--dark); }

/* ── HERO ── */
.hero {
  margin-top: 76px; position: relative;
  height: calc(100vh - 76px); min-height: 560px;
  overflow: hidden; display: flex; align-items: flex-end;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,.75) 0%, rgba(10,8,6,.2) 60%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 56px 72px; max-width: 760px;
}
.hero-eyebrow {
  font-size: .58rem; letter-spacing: .44em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before { content: ''; width: 18px; height: 1px; background: rgba(255,255,255,.4); }
.hero-title {
  font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 300; color: white; line-height: 1.08; margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: rgba(255,255,255,.7); }
.hero-sub {
  font-size: .82rem; color: rgba(255,255,255,.6);
  line-height: 1.8; max-width: 480px; margin-bottom: 36px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; right: 56px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.35); font-size: .52rem; letter-spacing: .3em;
  text-transform: uppercase; cursor: pointer;
}
.scroll-line { width: 1px; height: 36px; background: linear-gradient(rgba(255,255,255,.35), transparent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ── STATS ── */
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-bottom: 1px solid var(--sand);
}
.stat-cell {
  padding: 28px 24px; text-align: center;
  border-right: 1px solid var(--sand);
}
.stat-cell:last-child { border-right: none; }
.stat-n { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--dark); line-height: 1; margin-bottom: 5px; }
.stat-l { font-size: .55rem; letter-spacing: .2em; text-transform: uppercase; color: var(--taupe); }

/* ── BRAND / ABOUT ── */
.brand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.brand-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--sand); }
.brand-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 52px; }
.service-card {
  padding: 40px 28px; background: var(--cream);
  border: 1px solid var(--sand); position: relative; overflow: hidden;
  transition: background .3s;
}
.service-card:hover { background: var(--dark); }
.service-card:hover .service-icon,
.service-card:hover .service-title,
.service-card:hover .service-desc { color: white; }
.service-card:hover .service-line { background: rgba(255,255,255,.2); }
.service-icon { font-size: 1.8rem; margin-bottom: 20px; color: var(--gold); transition: color .3s; }
.service-line { width: 24px; height: 1px; background: var(--gold); margin-bottom: 16px; transition: background .3s; }
.service-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 300; color: var(--dark); margin-bottom: 10px; transition: color .3s; }
.service-desc { font-size: .78rem; color: var(--taupe); line-height: 1.85; transition: color .3s; }

/* ── RENDER VS REALIDAD ── */
.render-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 52px; }
.render-item { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--sand); }
.render-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.render-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 24px; background: linear-gradient(transparent, rgba(10,8,6,.6));
  font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.8);
}

/* ── AMBIENTES ── */
.ambientes-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 48px; }
.ambiente-card {
  position: relative; aspect-ratio: 2/3; overflow: hidden;
  background: var(--sand); cursor: pointer;
}
.ambiente-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .9s cubic-bezier(.16,1,.3,1);
}
.ambiente-card:hover img { transform: scale(1.06); }
.ambiente-card::after {
  content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 1px;
  background: linear-gradient(90deg,transparent,rgba(154,112,64,.55),transparent);
  transform: scaleX(0); transition: transform .6s cubic-bezier(.16,1,.3,1);
  transform-origin: center;
}
.ambiente-card:hover::after { transform: scaleX(1); }
.ambiente-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,12,8,.75) 0%, transparent 55%); }
.ambiente-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; }
.ambiente-lbl { font-size: .48rem; letter-spacing: .36em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 5px; }
.ambiente-name { font-family: var(--serif); font-size: 1.1rem; font-weight: 300; color: white; }

/* ── PROYECTOS GRID ── */
.proyectos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 48px; }
.proyecto-card { position: relative; background: var(--sand); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.proyecto-card.featured { grid-column: span 2; aspect-ratio: 16/9; }
.proyecto-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.16,1,.3,1); }
.proyecto-card:hover img { transform: scale(1.04); }
.proyecto-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,12,8,.88) 0%, transparent 50%); opacity: 0; transition: opacity .35s; }
.proyecto-card:hover .proyecto-scrim { opacity: 1; }
.proyecto-hz {
  position: absolute; left: 0; right: 0; top: 50%; height: 1px;
  background: linear-gradient(90deg,transparent,rgba(154,112,64,.5),transparent);
  transform: scaleX(0); transition: transform .55s cubic-bezier(.16,1,.3,1); transform-origin: center;
}
.proyecto-card:hover .proyecto-hz { transform: scaleX(1); }
.proyecto-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; transform: translateY(5px); transition: transform .35s; }
.proyecto-card:hover .proyecto-info { transform: none; }
.proyecto-tag { font-size: .48rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 4px; }
.proyecto-name { font-family: var(--serif); font-size: 1rem; font-weight: 300; color: white; }
.proyecto-year { font-size: .58rem; color: rgba(255,255,255,.32); margin-top: 2px; }

/* ── PORQUE NOSOTROS ── */
.features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0; margin-top: 52px; border: 1px solid var(--sand); }
.feature-item {
  padding: 36px 32px; border-right: 1px solid var(--sand); border-bottom: 1px solid var(--sand);
  position: relative;
}
.feature-item::before { content: ''; position: absolute; top: 0; left: 0; width: 24px; height: 1px; background: var(--gold); }
.feature-item:nth-child(even) { border-right: none; }
.feature-item:nth-child(3),
.feature-item:nth-child(4) { border-bottom: none; }
.feature-n { font-family: var(--serif); font-size: 2.4rem; font-weight: 300; color: var(--sand); line-height: 1; margin-bottom: 12px; }
.feature-title { font-family: var(--serif); font-size: 1rem; font-weight: 300; color: var(--dark); margin-bottom: 8px; }
.feature-desc { font-size: .77rem; color: var(--taupe); line-height: 1.85; }

/* ── INSTAGRAM ── */
.instagram-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; margin-top: 40px; }
.instagram-item { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--sand); }
.instagram-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.instagram-item:hover img { transform: scale(1.06); }

/* ── CTA ── */
.cta-section {
  padding: 96px 56px; text-align: center;
  background: var(--dark); position: relative; overflow: hidden;
}
.cta-lines { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 20px 0; pointer-events: none; }
.cta-lines span { display: block; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.05) 30%, rgba(255,255,255,.07) 50%, rgba(255,255,255,.05) 80%, transparent); }
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-h { font-family: var(--serif); font-size: clamp(2rem,3.5vw,3.2rem); font-weight: 300; color: white; margin-bottom: 16px; }
.cta-h em { font-style: italic; color: rgba(255,255,255,.55); }
.cta-p { font-size: .82rem; color: rgba(255,255,255,.4); line-height: 1.9; margin-bottom: 36px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 52px; }
.post-card { display: flex; flex-direction: column; }
.post-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--sand); margin-bottom: 20px; }
.post-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.post-card:hover .post-thumb img { transform: scale(1.04); }
.post-cat { font-size: .5rem; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.post-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 300; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.post-title a { transition: color .25s; }
.post-title a:hover { color: var(--gold); }
.post-excerpt { font-size: .78rem; color: var(--taupe); line-height: 1.8; margin-bottom: 14px; flex: 1; }
.post-meta { font-size: .55rem; letter-spacing: .15em; text-transform: uppercase; color: var(--warm); }
.post-read-more { font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: var(--dark); border-bottom: 1px solid var(--warm); padding-bottom: 1px; display: inline-block; margin-top: 12px; transition: color .25s, border-color .25s; }
.post-read-more:hover { color: var(--gold); border-color: var(--gold); }

/* Single post */
.post-header { padding: 80px 0 48px; border-bottom: 1px solid var(--sand); margin-bottom: 56px; }
.post-content { max-width: 720px; font-size: .9rem; line-height: 2; color: #444; }
.post-content h2 { font-family: var(--serif); font-size: 1.6rem; font-weight: 300; color: var(--dark); margin: 40px 0 16px; }
.post-content h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 300; color: var(--dark); margin: 32px 0 12px; }
.post-content p { margin-bottom: 20px; }
.post-content img { margin: 32px 0; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-info-item { margin-bottom: 24px; }
.contact-label { font-size: .52rem; letter-spacing: .36em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.contact-value { font-size: .85rem; color: var(--dark); }
.contact-value a { transition: color .25s; }
.contact-value a:hover { color: var(--gold); }

.wpcf7-form,
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { font-size: .52rem; letter-spacing: .3em; text-transform: uppercase; color: var(--taupe); }
.form-group input,
.form-group select,
.form-group textarea,
.wpcf7-form input,
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%; background: white; border: 1px solid var(--sand);
  padding: 12px 14px; font-family: var(--sans); font-size: .8rem;
  color: var(--dark); outline: none; transition: border-color .25s;
  -webkit-appearance: none; border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--dark); }
.form-group textarea { resize: none; height: 120px; }
.form-success { padding: 16px 20px; background: #f0faf4; border: 1px solid #b3e6c8; color: #1a7a3a; font-size: .82rem; display: none; }
.form-success.show { display: block; }

/* ── FOOTER ── */
.site-footer { background: var(--dark); }
.footer-hz { display: flex; flex-direction: column; gap: 3px; }
.footer-hz span { display: block; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.12) 30%, rgba(255,255,255,.12) 70%, transparent); }
.footer-hz span:nth-child(2) { opacity: .5; }
.footer-hz span:nth-child(3) { opacity: .22; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding: 56px; }
.footer-brand-desc { font-size: .78rem; color: rgba(255,255,255,.35); line-height: 1.85; margin-top: 16px; max-width: 300px; }
.footer-logo img { height: 36px; }
.footer-logo .text-logo { font-family: var(--serif); font-size: 1.2rem; color: rgba(255,255,255,.5); letter-spacing: .12em; }
.footer-col-title { font-size: .56rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: .72rem; color: rgba(255,255,255,.35); transition: color .25s; }
.footer-links a:hover { color: rgba(255,255,255,.7); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 56px; display: flex;
  align-items: center; justify-content: space-between;
}
.footer-copy { font-size: .54rem; letter-spacing: .12em; color: rgba(255,255,255,.2); }
.footer-location { font-size: .54rem; letter-spacing: .1em; color: rgba(255,255,255,.18); }

/* ── PAGE HEADERS ── */
.page-header {
  margin-top: 76px; padding: 80px 0;
  background: var(--cream); border-bottom: 1px solid var(--sand);
}
.page-header-inner { max-width: 1260px; margin: 0 auto; padding: 0 56px; }
.page-title { font-family: var(--serif); font-size: clamp(2.4rem,5vw,4rem); font-weight: 300; color: var(--dark); }
.page-title em { font-style: italic; color: var(--gold); }
.page-subtitle { font-size: .82rem; color: var(--taupe); margin-top: 12px; line-height: 1.8; max-width: 560px; }
.breadcrumb { font-size: .55rem; letter-spacing: .2em; text-transform: uppercase; color: var(--taupe); margin-bottom: 16px; }
.breadcrumb a { color: var(--gold); }

/* ── 404 ── */
.not-found { text-align: center; padding: 120px 56px; }
.not-found .big-num { font-family: var(--serif); font-size: 8rem; font-weight: 300; color: var(--sand); line-height: 1; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .site-header { padding: 0 32px; }
  .hero-content { padding: 0 32px 56px; }
  .cta-section { padding: 72px 32px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; padding: 40px 32px; }
  .footer-bottom { padding: 16px 32px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .ambientes-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-top: 1px solid var(--sand); }
  .stat-cell:nth-child(4) { border-top: 1px solid var(--sand); border-right: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .brand-grid { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none !important; }
  .feature-item:nth-child(3) { border-bottom: 1px solid var(--sand) !important; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 20px; height: 64px; }
  .site-logo img { height: 40px; }
  .nav-menu, .nav-whatsapp { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { padding: 20px; top: 64px; }
  .hero { margin-top: 64px; min-height: calc(100vh - 64px); }
  .hero-content { padding: 0 20px 48px; }
  .hero-title { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-scroll { right: 20px; }
  .sec { padding: 64px 0; }
  .container { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .ambientes-grid { grid-template-columns: repeat(2,1fr); }
  .render-grid { grid-template-columns: 1fr; }
  .proyectos-grid { grid-template-columns: 1fr; }
  .proyecto-card.featured { grid-column: span 1; aspect-ratio: 4/3; }
  .instagram-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; padding: 32px 20px; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 14px 20px; }
  .page-header { padding: 56px 0; }
  .page-header-inner { padding: 0 20px; }
  .cta-section { padding: 64px 20px; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
}
