/* ═══════════════════════════════════════════════════════
   SANZAHRA — Stylesheet principal
═══════════════════════════════════════════════════════ */

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

:root {
  --black: #0a0a0a;
  --white: #fafafa;
  --gray: #888;
  --light-gray: #e5e5e5;
  --cream: #f7f5f2;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', Helvetica, Arial, sans-serif;
}

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

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── MAINTENANCE ── */
#maintenance {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#maintenance.unlocked { opacity: 0; visibility: hidden; pointer-events: none; }
.maint-inner {
  text-align: center; width: 100%; max-width: 550px; padding: 2rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.maint-line { width: 50px; height: 1px; background: rgba(255,255,255,.25); margin: 0 auto 2.5rem; }
.maint-title {
  font-family: var(--serif); font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 300;
  color: var(--white); letter-spacing: .3em; margin-bottom: 1rem; width: 100%;
}
.maint-sub {
  font-size: .7rem; font-weight: 500; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 2rem;
}
.maint-desc {
  font-size: .85rem; line-height: 1.8; color: rgba(255,255,255,.5); margin-bottom: 3rem;
}
.maint-form { display: flex; gap: 0; margin-bottom: 1rem; width: 100%; max-width: 380px; }
.maint-form input {
  flex: 1; background: transparent; border: 1px solid rgba(255,255,255,.2);
  border-right: none; padding: .9rem 1.2rem; color: var(--white);
  font-family: var(--sans); font-size: .8rem; outline: none;
  letter-spacing: .1em; transition: border-color .3s;
}
.maint-form input:focus { border-color: rgba(255,255,255,.5); }
.maint-form input::placeholder { color: rgba(255,255,255,.2); letter-spacing: .1em; }
.maint-form button {
  background: var(--white); border: 1px solid var(--white); color: var(--black);
  padding: .9rem 2rem; font-family: var(--sans); font-size: .65rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; cursor: pointer; transition: all .3s;
}
.maint-form button:hover { background: transparent; color: var(--white); }
.maint-error {
  font-size: .7rem; color: #e74c3c; letter-spacing: .1em;
  opacity: 0; transition: opacity .3s;
}
.maint-error.show { opacity: 1; }
.maint-form.shake { animation: shake .4s ease; }
@keyframes shake { 0%,100%{transform:translateX(0)} 20%{transform:translateX(-8px)} 40%{transform:translateX(8px)} 60%{transform:translateX(-5px)} 80%{transform:translateX(5px)} }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s ease, visibility .8s ease;
}
#loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
#loader span {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  letter-spacing: .35em;
  animation: loaderPulse 1.6s ease-in-out infinite;
}
@keyframes loaderPulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ── NAV ── */
nav#mainNav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: background .4s, backdrop-filter .4s, padding .4s;
}
nav.scrolled,
nav.solid {
  background: rgba(250,250,250,.85);
  backdrop-filter: blur(12px);
  padding: 1rem 3rem;
  border-bottom: 1px solid var(--light-gray);
}
nav .logo {
  grid-column: 2;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: .28em;
  color: var(--white);
  text-decoration: none;
  transition: color .4s, font-size .4s;
  text-align: center;
  line-height: 1;
}
nav.scrolled .logo,
nav.solid .logo { font-size: 1.8rem; }
@media (max-width: 900px) {
  nav .logo { font-size: 1.5rem; }
}
nav.scrolled .logo,
nav.solid .logo { color: var(--black); }

.nav-links { display: flex; gap: 1.6rem; list-style: none; }
.nav-links-left { grid-column: 1; justify-self: start; }
.nav-links-right { grid-column: 3; justify-self: end; }
.nav-links a {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  position: relative;
  transition: color .3s;
}
nav.scrolled .nav-links a,
nav.solid .nav-links a { color: var(--black); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width .3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Dropdown */
.nav-links li.has-dropdown { position: relative; }
.nav-links .dropdown {
  position: absolute; top: calc(100% + 1rem); left: 50%; transform: translateX(-50%) translateY(-10px);
  background: rgba(10,10,10,.96); backdrop-filter: blur(14px);
  min-width: 240px; padding: 1.2rem 0;
  list-style: none; opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
nav.scrolled .nav-links .dropdown,
nav.solid .nav-links .dropdown {
  background: rgba(255,255,255,.97);
  border-color: var(--light-gray);
}
.nav-links .dropdown li { display: block; }
.nav-links .dropdown a {
  display: block; padding: .7rem 1.8rem; font-size: .7rem;
  color: rgba(255,255,255,.85); white-space: nowrap; letter-spacing: .12em;
}
nav.scrolled .nav-links .dropdown a,
nav.solid .nav-links .dropdown a { color: var(--black); }
.nav-links .dropdown a::after { display: none; }
.nav-links .dropdown a:hover { background: rgba(255,255,255,.06); color: var(--white); }
nav.scrolled .nav-links .dropdown a:hover,
nav.solid .nav-links .dropdown a:hover { background: #f1f1f1; color: var(--black); }
.nav-links li.has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-links .dropdown-toggle::before {
  content: ''; display: inline-block; width: 6px; height: 6px;
  border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: rotate(45deg); margin-right: .4rem;
  transition: transform .25s;
}
.nav-links li.has-dropdown:hover .dropdown-toggle::before {
  transform: rotate(225deg);
}

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 200; grid-column: 3; justify-self: end; }
.hamburger span { width: 24px; height: 1.5px; background: var(--white); transition: all .3s; }
nav.scrolled .hamburger span,
nav.solid .hamburger span { background: var(--black); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 150;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
  opacity: 0; visibility: hidden; transition: all .4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--serif); font-size: 1.5rem; color: var(--white);
  text-decoration: none; letter-spacing: .1em;
  opacity: 0; transform: translateY(20px); transition: opacity .4s, transform .4s;
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }

/* ── HERO SLIDER ── */
.hero-slider { position: absolute; inset: 0; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.5);
}
.hero-slider-dots {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .6rem; z-index: 3;
}
.hero-slider-dot {
  width: 28px; height: 2px; background: rgba(255,255,255,.3);
  cursor: pointer; transition: background .3s;
  border: none; padding: 0;
}
.hero-slider-dot.active { background: var(--white); }
.hero-slide-label {
  position: absolute; bottom: 5rem; left: 50%; transform: translateX(-50%);
  font-size: .65rem; font-weight: 500; letter-spacing: .4em;
  text-transform: uppercase; color: rgba(255,255,255,.8);
  z-index: 3; transition: opacity .6s;
}

/* ── LIGHTBOX ── */
#lightbox {
  position: fixed; inset: 0; z-index: 9500;
  background: rgba(0,0,0,.93);
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
#lightbox.open { display: flex; opacity: 1; }
#lightbox img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; z-index: 1;
  background: transparent; border: 1px solid rgba(255,255,255,.3);
  color: var(--white); width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem; transition: all .3s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,.1); border-color: var(--white);
}
.lightbox-close { top: 2rem; right: 2rem; }
.lightbox-prev { left: 2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 2rem; top: 50%; transform: translateY(-50%); }
.lightbox-caption {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7); font-size: .75rem; letter-spacing: .2em;
  text-transform: uppercase; text-align: center;
}
.masonry-item, .portfolio-item { cursor: zoom-in; }

/* ── HERO (home) ── */
.hero {
  position: relative; height: 100vh; width: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--black); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.5);
}
.hero-content {
  position: relative; z-index: 3; text-align: center;
  animation: heroFadeIn 1.5s ease .5s both;
  padding: 0 1.5rem;
}
@keyframes heroFadeIn { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.hero h1 {
  font-family: var(--serif); font-size: clamp(3rem, 8vw, 7rem); font-weight: 300;
  color: var(--white); letter-spacing: .3em; margin-bottom: 1.5rem;
}
.hero p {
  font-size: .75rem; font-weight: 400; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-bottom: 3rem;
}
.hero-line { width: 60px; height: 1px; background: rgba(255,255,255,.3); margin: 0 auto 2rem; }
.hero-scroll { position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll span {
  display: block; width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ── ABOUT HERO con fondo neutro + logo ── */
.about-hero .about-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 40%, #141414 100%);
}
.about-hero .about-hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.04) 0, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,.03) 0, transparent 40%);
}
.about-brand {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: .25em;
  margin: 1.5rem 0;
  text-align: center;
}

/* ── EQUIPO con emoticonos/iniciales ── */
.team-card .team-photo.avatar-style {
  background: linear-gradient(135deg, #f5f1ea, #e8dfd1);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 4.5rem; font-weight: 300;
  color: rgba(0,0,0,.5);
}
.team-card .team-emoji {
  font-size: 4rem; opacity: .6;
}

/* ── MODA: Coming Soon cards ── */
.coming-soon-card {
  position: relative; padding: 4rem 2rem;
  background: var(--black); color: var(--white);
  text-align: center; border: 1px solid rgba(255,255,255,.08);
}
.coming-soon-card .cs-logo {
  font-family: var(--serif); font-size: 2.5rem; font-weight: 300;
  letter-spacing: .1em; margin-bottom: 1.5rem;
}
.coming-soon-card .cs-badge {
  display: inline-block; padding: .4rem 1.2rem;
  border: 1px solid rgba(255,255,255,.3);
  font-size: .65rem; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-top: 1rem;
}
.coming-soon-card .cs-desc {
  color: rgba(255,255,255,.6); margin-top: 1rem;
  max-width: 500px; margin-left: auto; margin-right: auto;
  line-height: 1.7; font-size: .9rem;
}

/* ── PAGE HERO (subpáginas) ── */
.page-hero {
  position: relative; min-height: 75vh; width: 100%;
  display: flex; align-items: flex-end; justify-content: center;
  background: var(--black); overflow: hidden;
  padding: 14rem 2rem 5rem;
}
.page-hero .hero-bg::before { background: rgba(0,0,0,.55); }
.page-hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; }
.page-hero .kicker {
  font-size: .7rem; font-weight: 500; letter-spacing: .3em;
  text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300; color: var(--white); letter-spacing: .15em;
  margin-bottom: 1.5rem; line-height: 1.1;
}
.page-hero .subtitle {
  font-size: 1rem; font-weight: 300; color: rgba(255,255,255,.7);
  max-width: 600px; margin: 0 auto; line-height: 1.7;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 2rem 3rem 0;
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gray);
}
.breadcrumb a { color: var(--gray); text-decoration: none; transition: color .3s; }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb span { margin: 0 .5rem; opacity: .5; }

/* ── SECTIONS BASE ── */
section { padding: 5rem 3rem; }
.container { max-width: 1200px; margin: 0 auto; }
.container-wide { max-width: 1400px; margin: 0 auto; }
.section-label {
  font-size: .65rem; font-weight: 500; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gray); margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.2; margin-bottom: 2rem;
}
.section-text { font-size: .95rem; line-height: 1.8; color: #444; max-width: 650px; }
.section-text + .section-text { margin-top: 1.5rem; }

/* reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--black);
  color: var(--black);
  padding: .9rem 2.5rem;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s;
}
.btn:hover { background: var(--black); color: var(--white); }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: transparent; color: var(--black); }
.btn-light {
  border-color: var(--white); color: var(--white);
}
.btn-light:hover { background: var(--white); color: var(--black); }

/* ── MARQUEE ── */
.marquee-container {
  overflow: hidden; padding: 2.5rem 0;
  border-top: 1px solid var(--light-gray); border-bottom: 1px solid var(--light-gray);
}
.marquee { display: flex; width: max-content; animation: marquee 25s linear infinite; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.marquee span {
  font-family: var(--serif); font-size: clamp(1.5rem, 4vw, 3rem); font-weight: 300;
  letter-spacing: .15em; white-space: nowrap; padding: 0 2rem; color: var(--black); opacity: .5;
}
.marquee span.filled { opacity: .3; }

/* ── TWO-COL ── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; max-width: 1200px; margin: 0 auto;
}
.two-col.reverse > :first-child { order: 2; }
.two-col-image {
  aspect-ratio: 3/4;
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.two-col-image.wide { aspect-ratio: 4/3; }
.two-col-image.tall { aspect-ratio: 3/5; }

/* ── IMAGE BREAK ── */
.image-break {
  width: 100%; height: 55vh; min-height: 400px;
  background-size: cover; background-position: center; background-attachment: fixed;
  position: relative;
}
.image-break::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.35);
}
.image-break-text {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white); text-align: center; padding: 0 2rem;
}
.image-break-text h3 {
  font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300; letter-spacing: .15em; margin-bottom: .5rem;
}
.image-break-text p {
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* ── SERVICES VISUAL GRID ── */
.services-visual-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 1400px; margin: 3rem auto 0; gap: 4px;
}
.service-visual-card {
  position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer;
  background-size: cover; background-position: center;
  text-decoration: none;
  transition: transform .6s ease;
}
.service-visual-card:hover { transform: scale(1.01); }
.service-visual-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.1) 60%);
  transition: background .4s;
}
.service-visual-card:hover::before {
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.3) 60%);
}
.service-visual-card .card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem; color: var(--white); z-index: 2;
}
.service-visual-card .card-number {
  font-family: var(--serif); font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,.5); margin-bottom: .5rem; letter-spacing: .1em;
}
.service-visual-card h3 {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 300;
  letter-spacing: .05em; margin-bottom: .5rem;
}
.service-visual-card p {
  font-size: .72rem; line-height: 1.6; color: rgba(255,255,255,.7);
  max-height: 0; overflow: hidden; transition: max-height .4s ease, margin .4s;
}
.service-visual-card:hover p { max-height: 100px; margin-top: .5rem; }
.service-visual-card .card-arrow {
  position: absolute; top: 2rem; right: 2rem;
  font-size: 1.2rem; color: rgba(255,255,255,.4);
  transition: color .3s, transform .3s;
  z-index: 2;
}
.service-visual-card:hover .card-arrow { color: var(--white); transform: translate(3px,-3px); }

/* ── PORTFOLIO ── */
.portfolio-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto;
  gap: 4px; max-width: 100%; margin: 3rem -3rem 0;
}
.portfolio-item {
  position: relative; overflow: hidden; cursor: pointer;
  background-size: cover; background-position: center;
  min-height: 300px;
  text-decoration: none;
}
.portfolio-item.tall { grid-row: span 2; min-height: 604px; }
.portfolio-item.wide { grid-column: span 2; }
.portfolio-item::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0); transition: background .4s;
}
.portfolio-item:hover::before { background: rgba(0,0,0,.55); }
.portfolio-item .portfolio-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem; color: var(--white); z-index: 2;
  transform: translateY(20px); opacity: 0; transition: all .4s;
}
.portfolio-item:hover .portfolio-info { transform: translateY(0); opacity: 1; }
.portfolio-info h4 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 300;
  letter-spacing: .05em; margin-bottom: .3rem;
}
.portfolio-info span {
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* ── GALLERY (service pages) ── */
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  max-width: 1400px; margin: 0 auto;
}
.gallery-item {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  overflow: hidden; position: relative;
}

/* ── TAGS ── */
.tag-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.tag {
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .6rem 1.2rem; border: 1px solid var(--light-gray); transition: all .3s;
  background: transparent;
}
.tag:hover { background: var(--black); color: var(--white); border-color: var(--black); }

/* ── PROCESS STEPS ── */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem;
  max-width: 1200px; margin: 3rem auto 0;
}
.process-step {
  padding: 2rem 0; border-top: 1px solid var(--light-gray);
}
.process-step .step-num {
  font-family: var(--serif); font-size: 2rem; font-weight: 300;
  color: var(--gray); display: block; margin-bottom: 1rem;
}
.process-step h4 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
  margin-bottom: .8rem;
}
.process-step p {
  font-size: .85rem; line-height: 1.7; color: #555;
}

/* ── FEATURE LIST ── */
.features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  max-width: 1200px; margin: 3rem auto 0;
}
.features-row { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.feature {
  padding: 1.8rem 1.5rem; background: var(--cream); border-left: 2px solid var(--black);
}
.features-row .feature { padding: 1.5rem 1.2rem; }
.feature h4 {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 400;
  margin-bottom: .7rem;
}
.feature p {
  font-size: .82rem; line-height: 1.6; color: #444;
}

/* alternating bg */
.bg-light { background: var(--cream); }
.bg-dark { background: var(--black); color: var(--white); }
.bg-dark .section-label { color: rgba(255,255,255,.4); }
.bg-dark .section-title { color: var(--white); }
.bg-dark .section-text { color: rgba(255,255,255,.7); }

/* ── CTA BLOCK ── */
.cta-block {
  text-align: center; padding: 6rem 2rem; max-width: 800px; margin: 0 auto;
}
.cta-block .section-title { margin-bottom: 1.5rem; }
.cta-block p { font-size: 1rem; line-height: 1.8; color: #555; margin-bottom: 2.5rem; }

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem;
  max-width: 1200px; margin: 0 auto;
  align-items: start;
}
.contact-info .section-label { color: rgba(255,255,255,.45); margin-bottom: 1.2rem; }
.contact-info .section-title { color: var(--white); margin-bottom: 1.5rem; }
.contact-info > p { font-size: .95rem; line-height: 1.85; color: rgba(255,255,255,.7); margin-bottom: 2.5rem; max-width: 480px; }
.contact-info ul { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; padding: 0; }
.contact-info li {
  display: grid; grid-template-columns: 110px 1fr; gap: 1.5rem;
  align-items: baseline; padding-bottom: 1.3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-info li:last-child { border-bottom: none; }
.contact-info li strong {
  font-size: .65rem; font-weight: 600; letter-spacing: .25em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
}
.contact-info li a,
.contact-info li span { font-size: .92rem; color: var(--white); text-decoration: none; line-height: 1.5; border: none; }
.contact-info li a:hover { color: rgba(255,255,255,.7); }

.contact-form { display: flex; flex-direction: column; gap: 1.8rem; }
.contact-form label {
  display: flex; flex-direction: column; gap: .5rem;
}
.contact-form label > span {
  font-size: .65rem; font-weight: 600; letter-spacing: .25em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
}
.contact-form input,
.contact-form textarea {
  background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,.2);
  padding: .8rem 0; color: var(--white); font-family: var(--sans); font-size: .95rem;
  outline: none; transition: border-color .3s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--white); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.25); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form button {
  align-self: flex-start; margin-top: 1rem;
  background: transparent; border: 1px solid var(--white);
  color: var(--white); padding: 1rem 3rem; font-family: var(--sans); font-size: .7rem;
  font-weight: 500; letter-spacing: .25em; text-transform: uppercase; cursor: pointer; transition: all .3s;
}
.contact-form button:hover { background: var(--white); color: var(--black); }

/* ── LEGAL PAGES ── */
.legal {
  max-width: 850px; margin: 0 auto; padding: 10rem 2rem 6rem;
  font-size: .95rem; line-height: 1.8; color: #333;
}
.legal h1 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; margin-bottom: .5rem;
}
.legal .legal-meta {
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 3rem;
}
.legal h2 {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 400;
  margin: 2.5rem 0 1rem;
}
.legal p { margin-bottom: 1rem; }
.legal ul { margin: 1rem 0 1rem 1.5rem; }
.legal li { margin-bottom: .5rem; }

/* ── FOOTER ── */
footer {
  background: var(--black); border-top: 1px solid rgba(255,255,255,.08);
  padding: 4rem 3rem 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  max-width: 1400px; margin: 0 auto 3rem;
}
.footer-brand .footer-logo {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 400;
  letter-spacing: .25em; color: var(--white); margin-bottom: 1rem;
  display: block;
}
.footer-brand p {
  font-size: .8rem; line-height: 1.8; color: rgba(255,255,255,.5);
  max-width: 320px;
}
.footer-col h5 {
  font-size: .7rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--white); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .7rem; }
.footer-col a {
  font-size: .8rem; color: rgba(255,255,255,.5); text-decoration: none;
  transition: color .3s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1400px; margin: 0 auto; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p {
  font-size: .75rem; color: var(--white); letter-spacing: .1em;
}
.footer-bottom .footer-links {
  display: flex; gap: 1.5rem; list-style: none;
}
.footer-bottom .footer-links a {
  font-size: .75rem; color: rgba(255,255,255,.5); text-decoration: none;
  transition: color .3s;
}
.footer-bottom .footer-links a:hover { color: var(--white); }

/* ── COOKIE BANNER ── */
#cookieBanner {
  position: fixed; bottom: 2rem; left: 2rem; right: 2rem;
  max-width: 540px; z-index: 9000;
  background: var(--black); color: var(--white);
  padding: 1.5rem 1.8rem;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 10px 40px rgba(0,0,0,.4);
  transform: translateY(150%); opacity: 0;
  transition: transform .6s ease, opacity .6s ease;
}
#cookieBanner.show { transform: translateY(0); opacity: 1; }
.cookie-title {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 400;
  margin-bottom: .5rem;
}
.cookie-text {
  font-size: .8rem; line-height: 1.6; color: rgba(255,255,255,.65);
  margin-bottom: 1.2rem;
}
.cookie-text a { color: var(--white); border-bottom: 1px solid rgba(255,255,255,.3); text-decoration: none; }
.cookie-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.cookie-actions button {
  font-family: var(--sans); font-size: .68rem;
  letter-spacing: .2em; text-transform: uppercase;
  padding: .7rem 1.5rem; cursor: pointer; border: 1px solid var(--white);
  background: transparent; color: var(--white); transition: all .3s;
}
.cookie-actions .accept { background: var(--white); color: var(--black); }
.cookie-actions .accept:hover { background: transparent; color: var(--white); }
.cookie-actions .reject:hover { background: var(--white); color: var(--black); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-visual-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid, .features { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .hamburger { display: flex; }
  nav { padding: 1.2rem 1.5rem; grid-template-columns: 1fr auto 1fr; }
  nav .logo { grid-column: 2; }
  section { padding: 3.5rem 1.5rem; }
  .breadcrumb { padding: 1.5rem 1.5rem 0; }
  .features-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .two-col, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.reverse > :first-child { order: 0; }
  .services-visual-grid { grid-template-columns: 1fr; }
  .service-visual-card { aspect-ratio: 16/10; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; margin: 3rem -1.5rem 0; }
  .portfolio-item.tall { grid-row: span 1; min-height: 300px; }
  .portfolio-item.wide { grid-column: span 1; }
  .gallery { grid-template-columns: 1fr; }
  .image-break { background-attachment: scroll; }
  .process-grid, .features { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #cookieBanner { left: 1rem; right: 1rem; bottom: 1rem; padding: 1.2rem; }
}

/* ── NUEVAS MAQUETACIONES ── */

/* sobre-nosotros: narrativo */
.pull-quote {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.3;
  color: #1a1a1a;
  padding: 2rem 1rem;
}
.pull-quote::before,
.pull-quote::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: #b8a07a;
  margin: 2rem auto;
}
.full-image {
  width: 100%;
  aspect-ratio: 21/9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.stat-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.stat-block .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 300;
  line-height: 1;
  color: #b8a07a;
  letter-spacing: -0.02em;
}
.stat-block .stat-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 400;
}
.stat-block .stat-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}
.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: #d9cdb8;
  z-index: 0;
}
.timeline-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.timeline-dot {
  width: 12px;
  height: 12px;
  background: #b8a07a;
  border: 3px solid #faf7f2;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 4px rgba(184,160,122,0.2);
}
.timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
.timeline-item p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}
.team-card { text-align: center; }
.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  margin-bottom: 1.5rem;
  filter: grayscale(30%);
  transition: filter 0.4s ease;
}
.team-card:hover .team-photo { filter: grayscale(0%); }
.team-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.team-card .role {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b8a07a;
}

/* servicios: catálogo vertical */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid #ece5d7;
  position: relative;
  overflow: hidden;
}
.service-row:last-child { border-bottom: none; }
.service-row.reverse > :first-child { order: 2; }
.service-row-image {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.service-row-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}
.service-row-content .big-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 300;
  color: #e8ddc7;
  line-height: 1;
  letter-spacing: -0.02em;
}
.service-row-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: #1a1a1a;
  margin: 0;
}
.service-row-content > p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}
.service-row-content ul {
  list-style: disc;
  padding-left: 1.3rem;
  color: #777;
  font-size: 0.95rem;
  line-height: 1.8;
}
.service-row-content ul li { margin-bottom: 0.4rem; }
.service-row-content .btn { align-self: flex-start; }

/* portfolio: masonry */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 4rem auto 1rem;
  max-width: 1200px;
}
.portfolio-filter {
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  padding: 0.6rem 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}
.portfolio-filter:hover,
.portfolio-filter.active {
  color: #1a1a1a;
  border-bottom-color: #b8a07a;
}
.masonry {
  columns: 3;
  column-gap: 4px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0.5rem;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 4px;
  position: relative;
  display: block;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}
.masonry-item .img {
  width: 100%;
  display: block;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.masonry-item:hover .img { transform: scale(1.04); }
.masonry-item .info {
  padding: 1.2rem 1.4rem;
  background: #faf7f2;
}
.masonry-item .info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 0.3rem;
}
.masonry-item .info span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b8a07a;
}

/* contacto: imagen + formulario en dos bloques */
.contact-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}
.contact-duo-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 520px;
  aspect-ratio: auto;
}
.contact-duo-form {
  display: flex;
  flex-direction: column;
}
.contact-duo-lead {
  font-size: .95rem; line-height: 1.7; color: #555;
  margin-bottom: 2rem; max-width: 460px;
}
.contact-duo .contact-simple-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,.08);
}
@media (max-width: 900px) {
  .contact-duo { grid-template-columns: 1fr; gap: 2rem; }
  .contact-duo-image { min-height: 300px; }
}

/* contacto: simple split imagen + formulario (legacy) */
.contact-simple {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding: 0 !important;
}
.contact-simple-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-simple-form {
  padding: 8rem 4rem 4rem;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}
.contact-simple-form .kicker-dark {
  font-size: .7rem; font-weight: 500; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gray); margin-bottom: 1rem;
}
.contact-simple-form h1 {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300; letter-spacing: .05em; margin-bottom: 1rem; color: var(--black);
}
.contact-simple-form .lead {
  font-size: .95rem; line-height: 1.7; color: #555; margin-bottom: 2.5rem;
  max-width: 440px;
}
.contact-form-simple {
  display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem;
}
.contact-form-simple input,
.contact-form-simple textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,.15);
  padding: .9rem 0;
  font-family: var(--sans); font-size: .9rem;
  color: var(--black); outline: none;
  transition: border-color .3s;
}
.contact-form-simple input:focus,
.contact-form-simple textarea:focus { border-color: var(--black); }
.contact-form-simple input::placeholder,
.contact-form-simple textarea::placeholder { color: rgba(0,0,0,.35); }
.contact-form-simple textarea { resize: vertical; min-height: 90px; }
.contact-form-simple button {
  align-self: flex-start; margin-top: .8rem;
  background: var(--black); border: 1px solid var(--black);
  color: var(--white); padding: .9rem 2.8rem;
  font-family: var(--sans); font-size: .7rem; font-weight: 500;
  letter-spacing: .25em; text-transform: uppercase;
  cursor: pointer; transition: all .3s;
}
.contact-form-simple button:hover { background: transparent; color: var(--black); }
.contact-simple-info {
  display: flex; flex-direction: column; gap: .7rem;
  padding-top: 2rem; border-top: 1px solid rgba(0,0,0,.1);
  font-size: .85rem; color: #555;
}
.contact-simple-info a {
  color: var(--black); text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.15);
  padding-bottom: 2px; width: fit-content;
  transition: border-color .3s;
}
.contact-simple-info a:hover { border-color: var(--black); }
@media (max-width: 900px) {
  .contact-simple { grid-template-columns: 1fr; min-height: auto; }
  .contact-simple-image { min-height: 45vh; }
  .contact-simple-form { padding: 4rem 1.5rem; }
}

/* contacto: split asimétrico */
.page-hero.short { min-height: 45vh; height: 45vh; }
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 80vh;
}
.contact-side-image {
  background-size: cover;
  background-position: center;
  min-height: 100%;
}
.contact-side-form {
  padding: 5rem 4rem;
  background: #faf7f2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-side-form h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: #1a1a1a;
}
.contact-side-form > p {
  color: #666;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.contact-quick-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-quick-info .item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-left: 1px solid #ece5d7;
}
.contact-quick-info .item:first-child { border-left: none; }
.contact-quick-info .icon-line {
  width: 30px;
  height: 1px;
  background: #b8a07a;
  margin: 0 auto 1.2rem;
}
.contact-quick-info h5 {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #b8a07a;
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.contact-quick-info p,
.contact-quick-info a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: #1a1a1a;
  text-decoration: none;
  line-height: 1.4;
}
.contact-quick-info a:hover { color: #b8a07a; }
.faq {
  max-width: 800px;
  margin: 3rem auto 0;
}
.faq details {
  border-top: 1px solid #ece5d7;
  padding: 1.5rem 0;
  cursor: pointer;
}
.faq details:last-of-type { border-bottom: 1px solid #ece5d7; }
.faq summary {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #1a1a1a;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: #b8a07a;
  transition: transform 0.3s ease;
  font-weight: 300;
}
.faq details[open] summary::after { content: '\2212'; }
.faq details p {
  margin-top: 1rem;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.8;
}
.contact-map {
  width: 100%;
  aspect-ratio: 16/6;
  background-size: cover;
  background-position: center;
  filter: grayscale(40%) contrast(1.05);
}

/* Responsive new layouts */
@media (max-width: 900px) {
  .stat-block { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .timeline { flex-direction: column; gap: 2.5rem; }
  .timeline::before {
    top: 5%; bottom: 5%; left: 50%; right: auto;
    width: 1px; height: auto;
  }
  .team-grid { grid-template-columns: 1fr; gap: 2rem; }
  .service-row { grid-template-columns: 1fr; gap: 2rem; padding: 3.5rem 0; }
  .service-row.reverse > :first-child { order: 0; }
  .masonry { columns: 2; }
  .contact-split { grid-template-columns: 1fr; min-height: auto; }
  .contact-side-image { min-height: 300px; }
  .contact-side-form { padding: 3rem 1.5rem; }
  .contact-quick-info { grid-template-columns: 1fr 1fr; }
  .contact-quick-info .item { border-left: none; border-top: 1px solid #ece5d7; }
  .contact-quick-info .item:nth-child(-n+2) { border-top: none; }
  .pull-quote { font-size: 1.6rem; padding: 1.5rem 1rem; }
  .full-image { aspect-ratio: 16/10; }
}
@media (max-width: 600px) {
  .masonry { columns: 1; }
  .contact-quick-info { grid-template-columns: 1fr; }
  .contact-quick-info .item { border-top: 1px solid #ece5d7; }
  .contact-quick-info .item:first-child { border-top: none; }
}
