:root {
  --okazo-accent: #ffae00;
  --okazo-black: #222222;
  --okazo-text: #3d3d3d;
  --okazo-border: #eeeeee;
  --okazo-container: 1180px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--okazo-text);
  background: #fff;
  line-height: 1.5;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.container {
  width: min(94%, var(--okazo-container));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 9999;
  background: #fff;
  transition: box-shadow .25s ease;
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.site-header.is-sticky .topbar { display: none; }
.site-header.is-sticky .main-header-inner { min-height: 74px; }

.topbar {
  background: var(--okazo-black);
  color: #fff;
  font-size: 13px;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 34px;
}

.topbar-left a,
.address-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.topbar i { color: var(--okazo-accent); }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.main-header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-branding { flex: 0 0 150px; }

.custom-logo {
  max-height: 68px;
  width: auto;
  display: block;
}

.primary-navigation { flex: 1; }

.main-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu > li { position: relative; }

.main-menu > li > a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 88px;
  padding: 0 14px;
  font-size: 14px;
}

.main-menu > li > a:hover,
.main-menu > .current-menu-item > a,
.main-menu > .current-menu-ancestor > a {
  color: var(--okazo-accent);
}

.main-menu > li > a::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 24px;
  height: 2px;
  background: var(--okazo-accent);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.main-menu > li > a:hover::before,
.main-menu > .current-menu-item > a::before,
.main-menu > .current-menu-ancestor > a::before {
  transform: scaleX(1);
}

.menu-item-has-children > a::after {
  content: "▾";
  margin-left: 2px;
  color: var(--okazo-accent);
  font-size: 11px;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid #ececec;
  box-shadow: 0 14px 30px rgba(0,0,0,.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .22s ease;
}

.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li { border-bottom: 1px solid #efefef; }
.sub-menu a { display: block; padding: 15px 16px; }
.sub-menu a:hover { color: var(--okazo-accent); background: #fafafa; }

.quote-button,
.mobile-quote-button,
.solid-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 28px;
  border-radius: 3px;
  background: var(--okazo-accent);
  color: #1f1f1f;
  font-weight: 700;
}

.quote-button { flex: 0 0 172px; }
.mobile-quote-button { display: none; }

.menu-toggle {
  display: none;
  width: 45px;
  height: 42px;
  margin-left: auto;
  padding: 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #111;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-section {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, #78522e, #2e3f31);
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.34);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  text-align: center;
}

.hero-content h1 {
  margin: 14px 0 28px;
  font-family: Georgia, serif;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.08;
  color: #fff;
}

.section-kicker {
  color: var(--okazo-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.section-kicker.light { color: #fff; }

.outline-button {
  display: inline-flex;
  padding: 12px 28px;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
}

.section-space { padding: 90px 0; }

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.image-panel {
  min-height: 470px;
  background-size: cover;
  background-position: center;
  border-radius: 3px;
}

.placeholder-image {
  background:
    linear-gradient(135deg, rgba(255,174,0,.85), rgba(25,34,39,.85)),
    linear-gradient(45deg, #ddd, #888);
}

.content-panel h2,
.section-heading h2,
.contact-cta h2 {
  margin: 10px 0 18px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  color: #1f2529;
}

.content-panel p,
.section-heading p,
.contact-cta p {
  font-size: 17px;
  color: #666;
}

.stats-section {
  background: #0b151a;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-card {
  padding: 44px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.12);
}

.stat-card:last-child { border-right: 0; }

.stat-card strong {
  display: block;
  color: var(--okazo-accent);
  font-size: 42px;
}

.stat-card span { font-size: 15px; }

.section-heading {
  max-width: 720px;
  margin-bottom: 45px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.service-grid,
.project-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  padding: 34px;
  border: 1px solid #ececec;
  background: #fff;
  box-shadow: 0 12px 35px rgba(0,0,0,.06);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: var(--okazo-accent);
  color: #111;
  font-size: 24px;
}

.service-card h3,
.project-info h3,
.why-grid h3 {
  margin: 0 0 12px;
  font-size: 21px;
}

.projects-section { background: #f7f7f7; }

.project-card {
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.project-image {
  min-height: 290px;
  background-size: cover;
  background-position: center;
}

.project-info { padding: 22px; }
.project-info span { color: #777; }

.why-section {
  background: #0b151a;
  color: #fff;
}

.light-heading h2,
.light-heading p { color: #fff; }

.why-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
}

.why-grid > div {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
}

.why-grid i {
  color: var(--okazo-accent);
  font-size: 30px;
  margin-bottom: 18px;
}

.contact-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.elementor-extra-content { width: 100%; }

.site-footer {
  background: #071116;
  color: #fff;
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 54px;
  padding-bottom: 42px;
}

.footer-brand .custom-logo {
  max-height: 62px;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}

.footer-grid h3 { margin: 0 0 20px; }
.footer-grid p { margin: 0 0 11px; font-size: 14px; }

.footer-divider { border-top: 1px solid rgba(255,255,255,.18); }

.footer-bottom {
  padding: 18px 0 66px;
  color: #72818a;
  font-size: 12px;
  text-align: center;
}

.floating-button {
  position: fixed;
  right: 18px;
  z-index: 9998;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
}

.whatsapp-button { bottom: 128px; background: #20c768; }
.phone-button { bottom: 78px; background: var(--okazo-accent); }
.scroll-top-button {
  bottom: 28px;
  background: var(--okazo-accent);
  opacity: 0;
  visibility: hidden;
}
.scroll-top-button.is-visible { opacity: 1; visibility: visible; }

@media (max-width: 980px) {
  .site-header.is-sticky .topbar { display: block; }
  .topbar-inner { justify-content: center; }
  .address-item, .topbar-right { display: none; }

  .main-header-inner { min-height: 76px; position: relative; }
  .site-branding { flex-basis: auto; }
  .custom-logo { max-height: 58px; }
  .menu-toggle { display: block; }
  .quote-button { display: none; }

  .primary-navigation {
    position: fixed;
    top: 118px;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    background: #fff;
    overflow-y: auto;
  }

  .primary-navigation.is-open { display: block; }

  .main-menu {
    display: block;
    width: min(94%, var(--okazo-container));
    margin-inline: auto;
    padding-block: 12px;
  }

  .main-menu > li > a {
    min-height: auto;
    padding: 15px 3px;
    border-bottom: 1px solid var(--okazo-border);
  }

  .main-menu > li > a::before { display: none; }

  .sub-menu {
    position: static;
    display: none;
    min-width: 0;
    padding-left: 14px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .submenu-open > .sub-menu { display: block; }
  .menu-item-has-children:hover > .sub-menu { display: none; }
  .menu-item-has-children.submenu-open:hover > .sub-menu { display: block; }

  .mobile-quote-button {
    display: flex;
    width: min(94%, var(--okazo-container));
    margin: 12px auto 24px;
  }

  .two-column,
  .service-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

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

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

  .contact-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .topbar-left a:nth-child(2) { display: none; }

  .hero-section { min-height: 520px; }
  .section-space { padding: 65px 0; }

  .stats-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat-card { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .footer-bottom { padding-bottom: 86px; }
}


/* ===== V6: portada basada en la captura de referencia ===== */
.reference-hero { min-height: 620px; }

.intro-layout {
  display: grid;
  grid-template-columns: .95fr 1.2fr;
  gap: 70px;
  align-items: center;
}
.intro-copy h2,
.why-reference-copy h2,
.progress-copy h2,
.countdown-content h2,
.reference-cta h2 {
  margin: 10px 0 20px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}
.intro-collage {
  position: relative;
  min-height: 390px;
}
.intro-image {
  position: absolute;
  background-size: cover;
  background-position: center;
}
.intro-image-large { inset: 0 0 72px 0; }
.intro-image-small {
  width: 48%;
  height: 135px;
  right: 0;
  bottom: 0;
  border: 10px solid #fff;
}
.intro-accent {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 76px;
  height: 76px;
  background: var(--okazo-accent);
  z-index: -1;
}

.reference-why { background: #f7f7f7; }
.why-reference-grid {
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 70px;
  align-items: center;
}
.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 35px;
}
.why-stats div { text-align: center; }
.why-stats strong {
  display: block;
  font-size: 34px;
  color: #111;
}
.why-stats span { font-size: 13px; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding: 11px 0 11px 28px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--okazo-accent);
  font-weight: 900;
}

.countdown-section {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1a2025, #3b4650);
  background-size: cover;
  background-position: center;
  color: #fff;
}
.countdown-overlay,
.reference-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 13, 18, .66);
}
.countdown-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.countdown-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 3px solid var(--okazo-accent);
  max-width: 620px;
  margin: 28px auto 0;
}
.countdown-box div {
  padding: 20px 18px;
  border-right: 1px solid rgba(255,255,255,.35);
}
.countdown-box div:last-child { border-right: 0; }
.countdown-box strong {
  display: block;
  font-size: 37px;
  font-weight: 500;
}
.countdown-box span { font-size: 12px; }

.progress-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}
.progress-image {
  position: relative;
  min-height: 430px;
  background-size: cover;
  background-position: center;
}
.corner {
  position: absolute;
  width: 42px;
  height: 42px;
  border-color: var(--okazo-accent);
}
.corner-a {
  left: -10px;
  top: -10px;
  border-left: 10px solid var(--okazo-accent);
  border-top: 10px solid var(--okazo-accent);
}
.corner-b {
  right: -10px;
  bottom: -10px;
  border-right: 10px solid var(--okazo-accent);
  border-bottom: 10px solid var(--okazo-accent);
}
.progress-item { margin-top: 22px; }
.progress-item div {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.progress-item::after {
  content: "";
  display: block;
  height: 4px;
  margin-top: 7px;
  background: #e7e7e7;
}
.progress-item i {
  position: relative;
  z-index: 1;
  display: block;
  height: 4px;
  margin-top: -4px;
  background: var(--okazo-accent);
}

.reference-services { background: #fbfbfb; }
.reference-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.reference-service-grid article {
  min-height: 245px;
  padding: 28px 20px;
  background: var(--okazo-accent);
  color: #111;
  border-radius: 8px;
}
.reference-service-grid i { font-size: 35px; }
.reference-service-grid h3 { margin: 17px 0 10px; }
.reference-service-grid p { font-size: 13px; }
.services-more { text-align: center; margin-top: 14px; }
.services-more a,
.dark-button {
  display: inline-block;
  padding: 10px 24px;
  background: #111;
  color: #fff;
  font-size: 12px;
}

.team-section { background: #fff; }
.team-grid {
  display: grid;
  grid-template-columns: .85fr .85fr 1.7fr;
  max-width: 980px;
  margin: auto;
}
.team-grid article {
  background: #fff;
  border: 1px solid #eee;
  text-align: center;
}
.team-photo {
  min-height: 330px;
  background-size: cover;
  background-position: center top;
}
.team-grid article h3 {
  margin: 14px 10px 3px;
  font-size: 15px;
}
.team-grid article span {
  display: block;
  padding-bottom: 14px;
  font-size: 11px;
}
.team-grid aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px;
  background: var(--okazo-accent);
}

.reference-project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.reference-project-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
.reference-project-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .3s ease;
}
.reference-project-card:hover .reference-project-image { transform: scale(1.05); }
.reference-project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 38%, rgba(0,0,0,.78));
}
.reference-project-label {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 20px;
  color: #fff;
}
.reference-project-label h3 { margin: 0 0 5px; }
.reference-project-label span {
  padding-bottom: 2px;
  border-bottom: 1px solid var(--okazo-accent);
  font-size: 11px;
}

.reference-cta {
  position: relative;
  min-height: 340px;
  display: grid;
  align-items: center;
  background: linear-gradient(135deg, #28333a, #10171b);
  background-size: cover;
  background-position: center;
}
.reference-cta .container { position: relative; z-index: 1; }
.reference-cta h2 {
  max-width: 520px;
  color: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1.35fr .8fr;
  gap: 35px;
  align-items: stretch;
}
.faq-list {
  padding: 20px;
  border: 1px solid #eee;
  background: #fff;
}
.faq-list details {
  border-bottom: 1px solid #eee;
  padding: 13px 0;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}
.faq-list p { font-size: 13px; color: #666; }
.faq-image {
  min-height: 420px;
  background-size: cover;
  background-position: center;
}

@media (max-width: 980px) {
  .intro-layout,
  .why-reference-grid,
  .progress-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .intro-collage { min-height: 420px; }
  .reference-service-grid,
  .reference-project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid aside { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .why-stats,
  .countdown-box,
  .reference-service-grid,
  .reference-project-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .countdown-box div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.35); }
  .countdown-box div:last-child { border-bottom: 0; }
  .intro-collage { min-height: 330px; }
  .intro-image-small { height: 105px; }
  .team-grid aside { grid-column: auto; }
}


/* ===== V7 Premium Slider ===== */
.premium-slider-wrap {
  position: relative;
  background: #111;
}

.premium-hero-slider,
.premium-hero-slider .swiper-wrapper,
.premium-hero-slider .swiper-slide {
  min-height: 640px;
}

.premium-slide {
  position: relative;
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.premium-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.40), rgba(0,0,0,.18)),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.36));
}

.premium-slide-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  text-align: center;
}

.premium-slide-content h1 {
  margin: 14px auto 28px;
  max-width: 980px;
  font-family: Georgia, serif;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 4px 16px rgba(0,0,0,.28);
}

.slide-kicker,
.slide-title,
.slide-button {
  opacity: 0;
  transform: translateY(26px);
}

.is-active-slide .slide-kicker {
  animation: okazoFadeUp .7s .12s forwards;
}

.is-active-slide .slide-title {
  animation: okazoFadeUp .8s .28s forwards;
}

.is-active-slide .slide-button {
  animation: okazoFadeUp .8s .46s forwards;
}

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

.premium-hero-slider .swiper-button-prev,
.premium-hero-slider .swiper-button-next {
  width: 48px;
  height: 48px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  background: rgba(0,0,0,.16);
  backdrop-filter: blur(4px);
}

.premium-hero-slider .swiper-button-prev::after,
.premium-hero-slider .swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
}

.premium-hero-slider .swiper-button-prev {
  left: 28px;
}

.premium-hero-slider .swiper-button-next {
  right: 28px;
}

.premium-hero-slider .swiper-pagination {
  bottom: 22px !important;
}

.premium-hero-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: .65;
}

.premium-hero-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--okazo-accent);
  transform: scale(1.18);
}

/* Header sobre el slider en portada */
.home .site-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 32px;
  background: transparent;
}

.home .site-header .topbar {
  background: rgba(20,20,20,.94);
}

.home .site-header .main-header {
  background: #fff;
}

.home.admin-bar .site-header {
  top: 64px;
}

.home .site-header.is-sticky {
  position: fixed;
  top: 0;
  background: #fff;
}

.home.admin-bar .site-header.is-sticky {
  top: 32px;
}

@media (max-width: 782px) {
  .home.admin-bar .site-header {
    top: 78px;
  }

  .home.admin-bar .site-header.is-sticky {
    top: 46px;
  }
}

@media (max-width: 980px) {
  .premium-hero-slider,
  .premium-hero-slider .swiper-wrapper,
  .premium-hero-slider .swiper-slide {
    min-height: 590px;
  }

  .premium-hero-slider .swiper-button-prev,
  .premium-hero-slider .swiper-button-next {
    display: none;
  }

  .home .site-header {
    top: 0;
  }

  .home.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 600px) {
  .premium-hero-slider,
  .premium-hero-slider .swiper-wrapper,
  .premium-hero-slider .swiper-slide {
    min-height: 540px;
  }

  .premium-slide-content h1 {
    font-size: 38px;
  }
}


/* ===== V7.1: Carrusel nativo corregido ===== */
.premium-slider-wrap {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #111;
}

.native-slider {
  position: relative;
  min-height: 640px;
}

.native-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 640px;
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition:
    opacity .9s ease,
    visibility .9s ease,
    transform 5.5s ease;
}

.native-slide.is-active-slide {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.native-slide .premium-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.40), rgba(0,0,0,.18)),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.40));
}

.native-slide .premium-slide-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  text-align: center;
}

.native-slide .slide-title {
  margin: 14px auto 28px;
  max-width: 980px;
  font-family: Georgia, serif;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 4px 16px rgba(0,0,0,.28);
}

.native-slide .slide-kicker,
.native-slide .slide-title,
.native-slide .slide-button {
  opacity: 0;
  transform: translateY(28px);
}

.native-slide.is-active-slide .slide-kicker {
  animation: okazoFadeUp .7s .12s forwards;
}

.native-slide.is-active-slide .slide-title {
  animation: okazoFadeUp .8s .28s forwards;
}

.native-slide.is-active-slide .slide-button {
  animation: okazoFadeUp .8s .46s forwards;
}

.native-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.76);
  border-radius: 50%;
  background: rgba(0,0,0,.20);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease, transform .2s ease;
}

.native-slider-arrow:hover {
  background: var(--okazo-accent);
  color: #111;
  transform: translateY(-50%) scale(1.06);
}

.native-slider-prev { left: 28px; }
.native-slider-next { right: 28px; }

.native-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 4;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.native-slider-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.native-slider-dots button.is-active {
  background: var(--okazo-accent);
  transform: scale(1.25);
}

/* Oculta cualquier estructura residual de Swiper */
.premium-hero-slider {
  display: none !important;
}

@media (max-width: 980px) {
  .premium-slider-wrap,
  .native-slider,
  .native-slide {
    min-height: 590px;
  }

  .native-slider-arrow {
    display: none;
  }
}

@media (max-width: 600px) {
  .premium-slider-wrap,
  .native-slider,
  .native-slide {
    min-height: 540px;
  }

  .native-slide .slide-title {
    font-size: 38px;
  }
}


/* ==========================================================
   V8 — Mejoras visuales y de interacción
   ========================================================== */

/* Logo un poco más grande y nítido */
.custom-logo {
  max-height: 74px;
  transition: transform .25s ease;
}

.site-branding a:hover .custom-logo {
  transform: scale(1.035);
}

/* Sombra sutil debajo del header */
.main-header {
  box-shadow: 0 3px 16px rgba(0, 0, 0, .06);
}

/* Transiciones más elegantes en el menú */
.main-menu > li > a {
  transition:
    color .22s ease,
    transform .22s ease;
}

.main-menu > li > a:hover {
  transform: translateY(-1px);
}

.sub-menu {
  transition:
    opacity .24s ease,
    visibility .24s ease,
    transform .24s ease;
}

.sub-menu a {
  transition:
    color .2s ease,
    background .2s ease,
    padding-left .2s ease;
}

.sub-menu a:hover {
  padding-left: 21px;
}

/* Botón Cotiza con efecto más visible */
.quote-button,
.mobile-quote-button,
.solid-button {
  position: relative;
  overflow: hidden;
  box-shadow: 0 7px 18px rgba(255, 174, 0, .18);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    filter .22s ease;
}

.quote-button::after,
.mobile-quote-button::after,
.solid-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 42%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, .48),
    transparent
  );
  transform: skewX(-20deg);
  transition: left .45s ease;
}

.quote-button:hover,
.mobile-quote-button:hover,
.solid-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 11px 24px rgba(255, 174, 0, .30);
  filter: brightness(1.03);
}

.quote-button:hover::after,
.mobile-quote-button:hover::after,
.solid-button:hover::after {
  left: 135%;
}

/* Tarjetas de servicios */
.reference-service-grid article {
  transition:
    transform .24s ease,
    box-shadow .24s ease;
}

.reference-service-grid article:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .14);
}

/* Proyectos con hover más profesional */
.reference-project-card {
  box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
  transition:
    transform .28s ease,
    box-shadow .28s ease;
}

.reference-project-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, .20);
}

.reference-project-card:hover .reference-project-label h3 {
  color: var(--okazo-accent);
}

.reference-project-label h3 {
  transition: color .22s ease;
}

/* Equipo */
.team-grid article,
.team-grid aside {
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.team-grid article:hover,
.team-grid aside:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .12);
}

/* FAQ */
.faq-list details {
  transition:
    background .2s ease,
    padding-left .2s ease;
}

.faq-list details:hover {
  background: #fafafa;
  padding-left: 8px;
}

.faq-list details[open] summary {
  color: var(--okazo-accent);
}

/* Botones flotantes */
.floating-button {
  transition:
    transform .22s ease,
    box-shadow .22s ease;
}

.floating-button:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
}

/* Aparición suave de secciones */
.reveal-section {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity .75s ease,
    transform .75s ease;
}

.reveal-section.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Mantener contenido visible para usuarios con animaciones reducidas */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal-section {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .custom-logo {
    max-height: 62px;
  }

  .main-menu > li > a:hover {
    transform: none;
  }
}


/* V10 — Página Nosotros */
.about-banner{position:relative;min-height:340px;display:flex;align-items:center;background-size:cover;background-position:center;color:#fff}
.about-banner-overlay{position:absolute;inset:0;background:rgba(5,12,17,.46)}
.about-banner .container{position:relative;z-index:1}
.about-banner h1{margin:0;font-size:clamp(46px,6vw,74px);color:#fff}
.about-intro-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:70px;align-items:center}
.about-intro h2,.about-team-heading h2,.about-construction-copy h2{margin:10px 0 20px;font-size:clamp(34px,4vw,50px);line-height:1.08}
.about-rich-text p{margin:0 0 16px;color:#666;font-size:16px;line-height:1.8}
.about-intro-image{min-height:410px;background-size:cover;background-position:center;border-bottom:8px solid var(--okazo-accent)}
.about-pillars{background:#f8f8f8}
.about-pillar-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:45px}
.about-pillar-grid article{text-align:center}
.pillar-icon{width:72px;height:72px;margin:0 auto 18px;display:grid;place-items:center;border-radius:50%;background:#111;color:#fff;font-size:28px}
.about-pillar-grid h3{color:var(--okazo-accent);font-size:21px}
.about-pillar-grid p,.values-list{color:#666;font-size:14px;line-height:1.8}
.values-list{display:inline-block;margin:0;padding-left:24px;text-align:left}
.about-team-heading{max-width:760px;margin-bottom:35px}
.about-featured-team{display:grid;grid-template-columns:.75fr .75fr 1.5fr;max-width:980px;margin-bottom:28px}
.about-featured-team article{text-align:center;border:1px solid #eee;background:#fff}
.about-team-photo{min-height:340px;background-size:cover;background-position:center top}
.about-featured-team article h3{margin:14px 10px 3px;font-size:15px}
.about-featured-team article span{display:block;padding-bottom:14px;font-size:11px;color:#777}
.about-featured-team aside{display:flex;flex-direction:column;justify-content:center;padding:44px;background:#fff}
.about-featured-team aside h2{margin:0 0 18px}
.about-members-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:14px}
.about-members-grid article{background:#fff;border:1px solid #eee;text-align:center;transition:transform .22s ease,box-shadow .22s ease}
.about-members-grid article:hover{transform:translateY(-4px);box-shadow:0 12px 24px rgba(0,0,0,.10)}
.member-placeholder{min-height:170px;display:grid;place-items:center;background:linear-gradient(135deg,#e8e8e8,#bcbcbc);color:#fff;font-size:48px}
.about-members-grid h3{margin:10px 8px 2px;font-size:13px}
.about-members-grid span{display:block;padding:0 8px 12px;color:#888;font-size:10px}
.about-construction-cta{position:relative;min-height:420px;display:flex;align-items:center;background-size:cover;background-position:center;color:#fff}
.about-construction-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(4,12,18,.80),rgba(4,12,18,.34))}
.about-construction-cta .container{position:relative;z-index:1}
.about-construction-copy{max-width:560px}
.about-construction-copy h2,.about-construction-copy p{color:#fff}
.about-circle-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:35px}
.about-circle-grid article{text-align:center}
.progress-circle{width:128px;height:128px;margin:0 auto 18px;display:grid;place-items:center;border-radius:50%;background:radial-gradient(circle at center,#fff 58%,transparent 60%),conic-gradient(var(--okazo-accent) 0 100%,#eee 0)}
.progress-circle span{font-size:20px;font-weight:800}
.about-circle-grid h3{font-size:14px;text-transform:uppercase}
.about-circle-grid p{color:#777;font-size:12px}
.about-timeline{background:#fafafa}
.timeline{position:relative;max-width:980px;margin:50px auto 0}
.timeline::before{content:"";position:absolute;left:50%;top:0;bottom:0;width:2px;background:#ddd;transform:translateX(-50%)}
.timeline article{position:relative;width:50%;margin-bottom:56px}
.timeline article>div{padding:24px;border:2px solid var(--okazo-accent);background:#fff}
.timeline-left{padding-right:42px}
.timeline-right{margin-left:50%;padding-left:42px}
.timeline-date{display:block;margin-bottom:8px;color:var(--okazo-accent);font-size:12px;font-weight:700}
.timeline h3{margin:0 0 10px;font-size:20px}
.timeline p{margin:0;color:#666;font-size:13px}
.testimonial-card{max-width:850px;margin:auto;text-align:center}
.testimonial-avatar{width:96px;height:96px;margin:0 auto 15px;border-radius:50%;background-size:cover;background-position:center}
.testimonial-card h3{margin:0 0 3px}
.testimonial-card span{color:#888;font-size:12px}
.testimonial-card p{margin-top:24px;color:#666;line-height:1.9}
@media(max-width:980px){.about-intro-grid{grid-template-columns:1fr}.about-pillar-grid{grid-template-columns:1fr}.about-featured-team{grid-template-columns:1fr 1fr}.about-featured-team aside{grid-column:1/-1}.about-members-grid{grid-template-columns:repeat(3,1fr)}.about-circle-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.about-banner{min-height:250px}.about-featured-team,.about-members-grid,.about-circle-grid{grid-template-columns:1fr}.about-featured-team aside{grid-column:auto}.timeline::before{left:13px}.timeline article{width:100%;margin-left:0;padding-left:42px;padding-right:0}}


/* V10.1 — Fotografías editables del equipo */
.member-placeholder.has-member-image {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  color: transparent;
}

.member-placeholder.has-member-image i {
  display: none;
}


/* ==========================================================
   V11 — Página Servicios
   ========================================================== */

.services-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.services-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 17, .38);
}

.services-banner .container {
  position: relative;
  z-index: 1;
}

.services-banner h1 {
  margin: 0;
  font-size: clamp(50px, 7vw, 82px);
  color: #fff;
}

.services-main {
  background: #fff;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 980px;
  margin: 45px auto 0;
}

.services-page-card {
  min-height: 300px;
  padding: 42px 30px;
  text-align: center;
  background: #fff;
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    background .24s ease;
}

.services-page-card:nth-child(even) {
  background: #fafafa;
}

.services-page-card:hover {
  z-index: 2;
  transform: translateY(-7px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .11);
  background: #fff;
}

.services-page-icon {
  margin-bottom: 18px;
  color: #777;
  font-size: 45px;
  transition:
    color .22s ease,
    transform .22s ease;
}

.services-page-card:hover .services-page-icon {
  color: var(--okazo-accent);
  transform: scale(1.08);
}

.services-page-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.services-page-card p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.75;
}

.services-contact-banner {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.services-contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 12, 18, .78),
    rgba(4, 12, 18, .42)
  );
}

.services-contact-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.services-contact-inner > div {
  max-width: 650px;
}

.services-contact-inner h2 {
  margin: 0 0 14px;
  max-width: 580px;
  color: #fff;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
}

.services-contact-inner p {
  margin: 0;
  color: #fff;
  line-height: 1.75;
}

.services-why {
  background: #f7f7f7;
}

.services-why-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 75px;
  align-items: start;
}

.services-why h2 {
  margin: 0 0 20px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
}

.services-why p {
  color: #666;
  line-height: 1.8;
}

.services-why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.services-why-stats article {
  text-align: center;
}

.services-why-stats strong {
  display: block;
  color: #444;
  font-size: 44px;
}

.services-why-stats span {
  color: #666;
  font-size: 14px;
}

.services-checks ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-checks li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: #555;
}

.services-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--okazo-accent);
  font-weight: 900;
}

.services-checks > p {
  margin-top: 22px;
}

@media (max-width: 980px) {
  .services-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .services-why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .services-banner {
    min-height: 270px;
  }

  .services-page-grid,
  .services-why-stats {
    grid-template-columns: 1fr;
  }

  .services-page-card {
    min-height: auto;
  }
}


/* ==========================================================
   V12 — Página Proyectos
   ========================================================== */

.projects-page-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.projects-page-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 18, .45);
}

.projects-page-banner .container {
  position: relative;
  z-index: 1;
}

.projects-page-banner h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 80px);
  color: #fff;
}

.projects-page-intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.projects-page-intro h2 {
  margin: 10px 0 0;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.08;
}

.projects-page-intro p {
  margin: 0 0 18px;
  color: #666;
  line-height: 1.8;
}

.project-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 55px;
}

.project-category-card {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .10);
}

.project-category-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .35s ease;
}

.project-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, rgba(0, 0, 0, .78));
}

.project-category-card:hover .project-category-image {
  transform: scale(1.06);
}

.project-category-label {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: #fff;
}

.project-category-label h3 {
  margin: 0 0 6px;
  font-size: 25px;
}

.project-category-label span {
  padding-bottom: 3px;
  border-bottom: 2px solid var(--okazo-accent);
  font-size: 12px;
}

.projects-gallery-section {
  background: #f7f7f7;
}

.projects-masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 10px;
}

.project-gallery-item {
  position: relative;
  overflow: hidden;
}

.project-gallery-tall {
  grid-row: span 2;
}

.project-gallery-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .32s ease;
}

.project-gallery-hover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 174, 0, .78);
  color: #111;
  font-size: 30px;
  opacity: 0;
  transition: opacity .25s ease;
}

.project-gallery-item:hover .project-gallery-image {
  transform: scale(1.07);
}

.project-gallery-item:hover .project-gallery-hover {
  opacity: 1;
}

.projects-gallery-button {
  margin-top: 35px;
  text-align: center;
}

.other-projects-section {
  background: #fff;
}

.other-projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.other-project-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  min-height: 280px;
  border: 1px solid #eee;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .06);
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.other-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, .12);
}

.other-project-image {
  min-height: 280px;
  background-size: cover;
  background-position: center;
}

.other-project-content {
  padding: 32px;
}

.other-project-content h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.other-project-content p {
  color: #666;
  line-height: 1.75;
}

.other-project-content a {
  display: inline-block;
  margin-top: 8px;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--okazo-accent);
  font-weight: 700;
}

.projects-newsletter {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.projects-newsletter-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 18, .76);
}

.projects-newsletter-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
}

.projects-newsletter-content h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(38px, 5vw, 58px);
}

.projects-newsletter-content p {
  color: #fff;
}

.projects-newsletter-form {
  display: grid;
  grid-template-columns: 1fr 190px;
  max-width: 650px;
  margin: 30px auto 0;
}

.projects-newsletter-form input,
.projects-newsletter-form button {
  min-height: 54px;
  border: 0;
}

.projects-newsletter-form input {
  padding: 0 18px;
  background: #fff;
}

.projects-newsletter-form button {
  background: var(--okazo-accent);
  color: #111;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 980px) {
  .projects-page-intro-grid {
    grid-template-columns: 1fr;
  }

  .project-category-grid {
    grid-template-columns: 1fr;
  }

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

  .other-projects-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .projects-page-banner {
    min-height: 270px;
  }

  .projects-masonry-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .project-gallery-tall {
    grid-row: span 1;
  }

  .other-project-card {
    grid-template-columns: 1fr;
  }

  .projects-newsletter-form {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================
   V13 — Casas de Campo
   ========================================================== */

.country-banner {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.country-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 17, .43);
}

.country-banner .container {
  position: relative;
  z-index: 1;
}

.country-banner h1 {
  margin: 0;
  font-size: clamp(54px, 7vw, 88px);
  color: #fff;
}

.country-intro {
  margin: 0 auto 55px;
  text-align: center;
  color: #666;
  font-size: 15px;
}

.country-project-row {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto 34px;
}

.country-row-reverse .country-project-info {
  order: 2;
}

.country-row-reverse .country-slider {
  order: 1;
}

.country-project-info {
  padding: 20px 20px 20px 0;
}

.country-home-icon {
  margin-bottom: 14px;
  color: var(--okazo-accent);
  font-size: 31px;
  text-align: center;
}

.country-project-info h2 {
  margin: 0;
  text-align: center;
  font-weight: 400;
  line-height: 1.2;
}

.country-project-info h2 span {
  color: #777;
  font-size: 30px;
  font-weight: 400;
}

.country-project-info h2 strong {
  color: var(--okazo-accent);
  font-size: 30px;
}

.country-project-info > small {
  display: block;
  margin-top: 11px;
  text-align: center;
  color: #666;
}

.country-features {
  max-width: 300px;
  margin: 34px auto 0;
  padding: 0;
  list-style: none;
}

.country-features li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 19px;
}

.feature-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 3px;
  font-size: 20px;
}

.feature-icon.yellow {
  background: var(--okazo-accent);
  color: #111;
}

.feature-icon.dark {
  background: #222;
  color: #fff;
}

.country-features strong {
  display: block;
  color: #444;
  font-size: 18px;
}

.country-features small {
  color: #777;
  font-size: 11px;
}

.country-slider {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: #eee;
}

.country-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition:
    opacity .5s ease,
    visibility .5s ease,
    transform .7s ease;
}

.country-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.country-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(0,0,0,.18);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background .2s ease,
    color .2s ease;
}

.country-arrow:hover {
  background: var(--okazo-accent);
  color: #111;
}

.country-prev {
  left: 0;
}

.country-next {
  right: 0;
}

@media (max-width: 980px) {
  .country-project-row {
    grid-template-columns: 1fr;
    margin-bottom: 70px;
  }

  .country-row-reverse .country-project-info,
  .country-row-reverse .country-slider {
    order: initial;
  }

  .country-project-info {
    padding-right: 0;
  }
}

@media (max-width: 600px) {
  .country-banner {
    min-height: 280px;
  }

  .country-project-info h2 span,
  .country-project-info h2 strong {
    font-size: 25px;
  }

  .country-slider {
    min-height: 330px;
  }
}


/* ==========================================================
   V14 — Viviendas Comerciales
   ========================================================== */

.commercial-banner {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.commercial-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 17, .43);
}

.commercial-banner .container {
  position: relative;
  z-index: 1;
}

.commercial-banner h1 {
  margin: 0;
  font-size: clamp(54px, 7vw, 88px);
  color: #fff;
}

.commercial-intro {
  margin: 0 auto 55px;
  text-align: center;
  color: #666;
  font-size: 15px;
}

.commercial-project-row {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto 34px;
}

.commercial-row-reverse .commercial-project-info {
  order: 2;
}

.commercial-row-reverse .commercial-slider {
  order: 1;
}

.commercial-project-info {
  padding: 20px 20px 20px 0;
}

.commercial-home-icon {
  margin-bottom: 14px;
  color: var(--okazo-accent);
  font-size: 31px;
  text-align: center;
}

.commercial-project-info h2 {
  margin: 0;
  text-align: center;
  font-weight: 400;
  line-height: 1.2;
}

.commercial-project-info h2 span {
  color: #777;
  font-size: 30px;
  font-weight: 400;
}

.commercial-project-info h2 strong {
  color: var(--okazo-accent);
  font-size: 30px;
}

.commercial-project-info > small {
  display: block;
  margin-top: 11px;
  text-align: center;
  color: #666;
}

.commercial-features {
  max-width: 300px;
  margin: 34px auto 0;
  padding: 0;
  list-style: none;
}

.commercial-features li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 19px;
}

.commercial-features strong {
  display: block;
  color: #444;
  font-size: 18px;
}

.commercial-features small {
  color: #777;
  font-size: 11px;
}

.commercial-slider {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: #eee;
}

.commercial-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition:
    opacity .5s ease,
    visibility .5s ease,
    transform .7s ease;
}

.commercial-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.commercial-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(0,0,0,.18);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background .2s ease,
    color .2s ease;
}

.commercial-arrow:hover {
  background: var(--okazo-accent);
  color: #111;
}

.commercial-prev {
  left: 0;
}

.commercial-next {
  right: 0;
}

@media (max-width: 980px) {
  .commercial-project-row {
    grid-template-columns: 1fr;
    margin-bottom: 70px;
  }

  .commercial-row-reverse .commercial-project-info,
  .commercial-row-reverse .commercial-slider {
    order: initial;
  }

  .commercial-project-info {
    padding-right: 0;
  }
}

@media (max-width: 600px) {
  .commercial-banner {
    min-height: 280px;
  }

  .commercial-project-info h2 span,
  .commercial-project-info h2 strong {
    font-size: 25px;
  }

  .commercial-slider {
    min-height: 330px;
  }
}


/* ==========================================================
   V15 — Viviendas Multifamiliares
   ========================================================== */

.multifamily-banner {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.multifamily-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 17, .43);
}

.multifamily-banner .container {
  position: relative;
  z-index: 1;
}

.multifamily-banner h1 {
  margin: 0;
  font-size: clamp(54px, 7vw, 88px);
  color: #fff;
}

.multifamily-intro {
  margin: 0 auto 55px;
  text-align: center;
  color: #666;
  font-size: 15px;
}

.multifamily-project-row {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto 34px;
}

.multifamily-row-reverse .multifamily-project-info {
  order: 2;
}

.multifamily-row-reverse .multifamily-slider {
  order: 1;
}

.multifamily-project-info {
  padding: 20px 20px 20px 0;
}

.multifamily-home-icon {
  margin-bottom: 14px;
  color: var(--okazo-accent);
  font-size: 31px;
  text-align: center;
}

.multifamily-project-info h2 {
  margin: 0;
  text-align: center;
  font-weight: 400;
  line-height: 1.2;
}

.multifamily-project-info h2 span {
  color: #777;
  font-size: 30px;
  font-weight: 400;
}

.multifamily-project-info h2 strong {
  color: var(--okazo-accent);
  font-size: 30px;
}

.multifamily-project-info > small {
  display: block;
  margin-top: 11px;
  text-align: center;
  color: #666;
}

.multifamily-features {
  max-width: 300px;
  margin: 34px auto 0;
  padding: 0;
  list-style: none;
}

.multifamily-features li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 19px;
}

.multifamily-features strong {
  display: block;
  color: #444;
  font-size: 18px;
}

.multifamily-features small {
  color: #777;
  font-size: 11px;
}

.multifamily-slider {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: #eee;
}

.multifamily-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition:
    opacity .5s ease,
    visibility .5s ease,
    transform .7s ease;
}

.multifamily-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.multifamily-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(0, 0, 0, .18);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background .2s ease,
    color .2s ease;
}

.multifamily-arrow:hover {
  background: var(--okazo-accent);
  color: #111;
}

.multifamily-prev {
  left: 0;
}

.multifamily-next {
  right: 0;
}

.multifamily-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 3;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.multifamily-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(40, 40, 40, .52);
  cursor: pointer;
}

.multifamily-dots button.is-active {
  background: #222;
  transform: scale(1.2);
}

@media (max-width: 980px) {
  .multifamily-project-row {
    grid-template-columns: 1fr;
    margin-bottom: 70px;
  }

  .multifamily-row-reverse .multifamily-project-info,
  .multifamily-row-reverse .multifamily-slider {
    order: initial;
  }

  .multifamily-project-info {
    padding-right: 0;
  }
}

@media (max-width: 600px) {
  .multifamily-banner {
    min-height: 280px;
  }

  .multifamily-project-info h2 span,
  .multifamily-project-info h2 strong {
    font-size: 25px;
  }

  .multifamily-slider {
    min-height: 330px;
  }
}


/* ==========================================================
   V16 — Contacto
   ========================================================== */

.contact-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.contact-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 17, .43);
}

.contact-banner .container {
  position: relative;
  z-index: 1;
}

.contact-banner h1 {
  margin: 0;
  font-size: clamp(54px, 7vw, 88px);
  color: #fff;
}

.contact-form-stage {
  position: relative;
  min-height: 260px;
  padding-bottom: 20px;
  background-size: cover;
  background-position: center;
}

.contact-stage-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 174, 0, .58);
}

.contact-form-stage .container {
  position: relative;
  z-index: 1;
}

.contact-panel {
  position: relative;
  top: 65px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.contact-form-visual,
.contact-details {
  padding: 44px;
}

.contact-form-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-visual input {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid #e6e6e6;
  background: #fff;
}

.contact-two-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form-visual button {
  min-height: 48px;
  border: 0;
  background: var(--okazo-accent);
  color: #111;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-form-visual button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 174, 0, .24);
}

.contact-details h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
}

.contact-details > p {
  color: #777;
}

.contact-details ul {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 11px;
}

.contact-details li i {
  width: 20px;
  color: var(--okazo-accent);
}

.contact-details li span {
  color: #555;
}

.contact-location {
  padding-top: 145px;
  text-align: center;
}

.contact-location h2 {
  margin: 0 0 30px;
  color: var(--okazo-accent);
  font-size: 32px;
}

.contact-map-placeholder {
  min-height: 430px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px dashed #d8d8d8;
  background: #fafafa;
  color: #777;
}

.contact-map-placeholder i {
  margin-bottom: 16px;
  color: var(--okazo-accent);
  font-size: 48px;
}

.contact-map-placeholder p {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 700;
}

.contact-map-placeholder small {
  max-width: 520px;
  padding: 0 20px;
  line-height: 1.6;
}

.contact-cards-section {
  background: #fff;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 980px;
  margin: 45px auto 0;
}

.contact-info-cards article {
  min-height: 320px;
  padding: 50px 34px;
  border: 1px solid #e9e9e9;
  text-align: center;
  transition: transform .24s ease, box-shadow .24s ease;
}

.contact-info-cards article:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, .10);
}

.contact-card-icon {
  margin-bottom: 22px;
  color: #777;
  font-size: 42px;
}

.contact-info-cards h3 {
  margin: 0 0 15px;
  font-size: 22px;
}

.contact-info-cards p {
  color: #666;
  line-height: 1.75;
}

@media (max-width: 980px) {
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-location {
    padding-top: 110px;
  }

  .contact-info-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-banner {
    min-height: 280px;
  }

  .contact-panel {
    top: 35px;
  }

  .contact-form-visual,
  .contact-details {
    padding: 28px;
  }

  .contact-two-fields {
    grid-template-columns: 1fr;
  }

  .contact-location {
    padding-top: 80px;
  }
}


/* ==========================================================
   V17 — Blog
   ========================================================== */

.blog-page-section {
  background: #fff;
}

.blog-heading {
  margin-bottom: 55px;
}

.blog-heading h1 {
  margin: 10px 0 0;
  font-size: clamp(40px, 5vw, 60px);
  color: #171717;
}

.blog-post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin: 0 auto;
  gap: 50px 38px;
  align-items: start;
}

.blog-post-card {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
}

.blog-post-image {
  display: block;
  overflow: hidden;
  margin-bottom: 16px;
}

.blog-post-image img {
  display: block;
  width: 100%;
  height: 285px;
  object-fit: cover;
  transition: transform .35s ease;
}

.blog-post-card:hover .blog-post-image img {
  transform: scale(1.04);
}

.blog-post-content h2 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 500;
}

.blog-post-content h2 a {
  color: #202020;
  transition: color .2s ease;
}

.blog-post-content h2 a:hover {
  color: var(--okazo-accent);
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
  color: #999;
  font-size: 13px;
}

.blog-post-excerpt {
  color: #666;
  line-height: 1.75;
}

.blog-post-excerpt p {
  margin: 0;
}

.blog-read-more {
  display: inline-block;
  margin-top: 12px;
  color: #ff3b16;
  font-size: 15px;
  font-weight: 500;
  transition: color .2s ease;
}

.blog-read-more:hover {
  color: var(--okazo-accent);
}

.blog-pagination {
  margin-top: 55px;
  text-align: center;
}

.blog-pagination .nav-links {
  display: inline-flex;
  gap: 8px;
}

.blog-pagination a,
.blog-pagination span {
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #e5e5e5;
}

.blog-pagination .current,
.blog-pagination a:hover {
  border-color: var(--okazo-accent);
  background: var(--okazo-accent);
  color: #111;
}

.blog-empty {
  text-align: center;
  color: #777;
}

.single-post-container {
  max-width: 900px;
}

.single-post-header {
  margin-bottom: 30px;
  text-align: center;
}

.single-post-header h1 {
  margin: 0 0 14px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.1;
}

.single-post-header .blog-post-meta {
  justify-content: center;
}

.single-post-image {
  margin-bottom: 35px;
}

.single-post-image img {
  width: 100%;
  height: auto;
}

.single-post-content {
  color: #555;
  font-size: 17px;
  line-height: 1.85;
}

.single-post-content h2,
.single-post-content h3 {
  color: #222;
}

@media (min-width: 981px) {
  .blog-post-card:nth-child(1) {
    padding-top: 12px;
  }

  .blog-post-card:nth-child(1):not(:has(.blog-post-image)) {
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .blog-post-grid {
    grid-template-columns: 1fr;
  }

  .blog-post-image img {
    height: 240px;
  }
}


/* V17.1 — Corrección de Blog */
.blog-placeholder-image {
  height: 285px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255,174,0,.92), rgba(24,32,37,.92));
  color: #fff;
  font-size: 58px;
}

.blog-empty-state {
  max-width: 680px;
  margin: 30px auto 0;
  padding: 60px 30px;
  border: 1px solid #ececec;
  background: #fafafa;
  text-align: center;
}

.blog-empty-state i {
  margin-bottom: 18px;
  color: var(--okazo-accent);
  font-size: 54px;
}

.blog-empty-state h2 {
  margin: 0 0 12px;
}

.blog-empty-state p {
  margin: 0;
  color: #666;
  line-height: 1.7;
}


/* ==========================================================
   V17.2 — Blog refinado según referencia
   ========================================================== */

.blog-page-section {
  padding-top: 92px;
  padding-bottom: 85px;
}

.blog-heading {
  margin-bottom: 46px;
}

.blog-heading h1 {
  font-size: clamp(42px, 5vw, 58px);
  line-height: 1.1;
}

.blog-reference-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 34px;
  max-width: 980px;
  margin: 0 auto;
  align-items: start;
}

.blog-reference-card {
  min-width: 0;
}

.blog-featured-text {
  padding-top: 8px;
}

.blog-reference-image {
  display: block;
  overflow: hidden;
  margin-bottom: 12px;
}

.blog-reference-image img {
  display: block;
  width: 100%;
  height: 242px;
  object-fit: cover;
  transition: transform .32s ease;
}

.blog-standard-card:hover .blog-reference-image img {
  transform: scale(1.035);
}

.blog-placeholder-image {
  height: 242px;
}

.blog-reference-content h2 {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
}

.blog-featured-text .blog-reference-content h2 {
  font-size: 24px;
  line-height: 1.18;
}

.blog-reference-content h2 a {
  color: #222;
}

.blog-reference-content h2 a:hover {
  color: var(--okazo-accent);
}

.blog-reference-content .blog-post-meta {
  margin-bottom: 12px;
  color: #aaa;
  font-size: 12px;
}

.blog-reference-excerpt {
  color: #666;
  font-size: 14px;
  line-height: 1.65;
}

.blog-reference-excerpt p {
  margin: 0;
}

.blog-read-more {
  margin-top: 9px;
  color: #ff3b16;
  font-size: 14px;
  font-weight: 500;
}

.blog-read-more:hover {
  color: var(--okazo-accent);
}

.blog-pagination {
  margin-top: 42px;
}

/* Evita demasiado espacio antes del footer */
.blog-page-section + .site-footer,
.home .site-content + .site-footer {
  margin-top: 0;
}

@media (max-width: 760px) {
  .blog-page-section {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .blog-reference-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .blog-featured-text {
    padding-top: 0;
  }

  .blog-reference-image img,
  .blog-placeholder-image {
    height: 230px;
  }
}


/* ==========================================================
   V18 Ultimate — Blog personalizado
   ========================================================== */

.ultimate-blog-section {
  min-height: 650px;
  padding: 105px 0 95px;
  background: #fff;
}

.ultimate-blog-heading {
  margin-bottom: 42px;
  text-align: center;
}

.ultimate-blog-heading span {
  display: block;
  margin-bottom: 12px;
  color: #ff3b16;
  font-size: 14px;
}

.ultimate-blog-heading h1 {
  margin: 0;
  color: #171717;
  font-size: clamp(44px, 5vw, 62px);
  line-height: 1.05;
}

.ultimate-blog-featured-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 36px;
  max-width: 980px;
  margin: 0 auto;
  align-items: start;
}

.ultimate-blog-text-card {
  padding-top: 10px;
}

.ultimate-blog-text-card h2,
.ultimate-blog-image-card h2 {
  margin: 0 0 7px;
  color: #202020;
  font-size: 23px;
  line-height: 1.18;
  font-weight: 500;
}

.ultimate-blog-image-card h2 {
  margin-top: 11px;
  text-transform: uppercase;
}

.ultimate-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 13px;
  color: #aaa;
  font-size: 12px;
}

.ultimate-blog-text-card p,
.ultimate-blog-image-card p,
.ultimate-extra-card p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.68;
}

.ultimate-blog-text-card > a,
.ultimate-blog-image-card > a,
.ultimate-read-more {
  display: inline-block;
  margin-top: 10px;
  color: #ff3b16;
  font-size: 14px;
  font-weight: 500;
}

.ultimate-blog-main-image {
  width: 100%;
  height: 245px;
  background-size: cover;
  background-position: center;
}

.ultimate-blog-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 980px;
  margin: 55px auto 0;
}

.ultimate-extra-card {
  border-top: 1px solid #eee;
  padding-top: 28px;
}

.ultimate-extra-image {
  display: block;
  overflow: hidden;
  margin-bottom: 15px;
}

.ultimate-extra-image img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  transition: transform .3s ease;
}

.ultimate-extra-card:hover .ultimate-extra-image img {
  transform: scale(1.04);
}

.ultimate-extra-card h3 {
  margin: 0 0 7px;
  font-size: 21px;
  line-height: 1.25;
}

.ultimate-extra-card h3 a {
  color: #222;
}

.ultimate-extra-card h3 a:hover {
  color: var(--okazo-accent);
}

@media (max-width: 760px) {
  .ultimate-blog-section {
    padding: 70px 0;
  }

  .ultimate-blog-featured-grid,
  .ultimate-blog-extra-grid {
    grid-template-columns: 1fr;
  }

  .ultimate-blog-main-image {
    height: 230px;
  }
}


/* ==========================================================
   V19 — Mapa real en Contacto
   ========================================================== */

.contact-map-embed {
  overflow: hidden;
  border-radius: 14px;
  background: #eee;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .14);
}

.contact-map-embed iframe {
  display: block;
  width: 100%;
  height: 470px;
  border: 0;
}

.contact-map-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.contact-map-info-grid article {
  min-height: 190px;
  padding: 30px 24px;
  border: 1px solid #ededed;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
  transition:
    transform .24s ease,
    box-shadow .24s ease;
}

.contact-map-info-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .12);
}

.contact-map-info-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--okazo-accent);
  color: #111;
  font-size: 23px;
}

.contact-map-info-grid h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.contact-map-info-grid p {
  margin: 4px 0;
  color: #666;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .contact-map-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-map-embed iframe {
    height: 360px;
  }
}
