:root {
  --brand-blue: #274c9b;
  --brand-blue-deep: #122a63;
  --brand-orange: #b7653f;
  --brand-orange-deep: #8d472d;
  --blue: var(--brand-blue);
  --navy: #070d1d;
  --light: #f8f7f2;
  --grey: #e7e9ef;
  --charcoal: #171a20;
  --sand: #d8c9b2;
  --white: #ffffff;
  --ink-soft: rgba(23, 26, 32, 0.72);
  --border-soft: rgba(39, 76, 155, 0.14);
  --font-heading: "Outfit", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --section-space: 100px;
  --section-space-mobile: 50px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--light);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: var(--brand-blue-deep);
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

a:hover,
a:focus {
  color: var(--brand-orange-deep);
}

section {
  position: relative;
  padding: var(--section-space) 0 0;
}

.section-dark {
  background: radial-gradient(circle at 12% 10%, rgba(39, 76, 155, 0.16), transparent 28%), var(--navy);
  color: var(--white);
}

.section-light {
  background: var(--light);
}

#interior,
.portfolio {
  padding-bottom: var(--section-space);
}

.services {
  margin-bottom: var(--section-space);
}

.final-cta {
  padding-bottom: var(--section-space);
}

.about {
  margin-bottom: var(--section-space);
}

.detail-section#construction {
  margin-bottom: var(--section-space);
}

.process {
  margin-bottom: var(--section-space);
}

.contact {
  margin-bottom: var(--section-space);
}

.eyebrow {
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-orange);
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0;
}

h4,
h5,
h6 {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.7rem);
  line-height: 0.95;
}

p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.section-dark p,
.split-dark p,
.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 0;
  padding: 13px 24px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.32s ease, box-shadow 0.32s ease, color 0.32s ease, background 0.32s ease, border-color 0.32s ease;
}

.btn:focus-visible,
.nav-link:focus-visible,
.filter-buttons button:focus-visible,
.back-top:focus-visible,
.play-button:focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-deep));
  border-color: var(--brand-blue);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(39, 76, 155, 0.2);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--brand-blue-deep), #0a193d);
  border-color: var(--brand-orange);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(39, 76, 155, 0.24), 0 6px 18px rgba(183, 101, 63, 0.16);
}

.btn i {
  transition: transform 0.32s ease;
}

.btn:hover i,
.btn:focus i {
  transform: translate(4px, -4px);
}

.btn-outline-light {
  border-color: rgba(183, 101, 63, 0.68);
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(183, 101, 63, 0.22);
}

.text-primary {
  color: var(--brand-blue-deep) !important;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 25%, rgba(39, 76, 155, 0.2), transparent 30%), var(--navy);
  color: var(--white);
}

.preloader img {
  width: min(520px, 76vw);
  padding: 0;
  background: transparent;
  filter: drop-shadow(0 22px 34px rgba(39, 76, 155, 0.22));
}

.preloader-words {
  position: absolute;
  bottom: 12vh;
  display: flex;
  gap: 28px;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-orange);
}



.site-header {
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 14px 0;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
  padding: 4px 0;
}

.navbar-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.navbar-brand img {
  width: 220px;
  max-height: 58px;
  object-fit: contain;
  padding: 0;
  background: transparent;
  filter: drop-shadow(0 8px 18px rgba(39, 76, 155, 0.2));
  transition: opacity 0.3s ease;
}

.navbar-brand .logo-scrolled {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.site-header.is-scrolled .navbar-brand .logo-default {
  opacity: 0;
}

.site-header.is-scrolled .navbar-brand .logo-scrolled {
  opacity: 1;
}

.navbar .nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 10px !important;
  background: transparent;
  isolation: isolate;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--white);
  background: transparent;
}

.site-header.is-scrolled .navbar .nav-link {
  color: rgba(23, 26, 32, 0.72);
}

.site-header.is-scrolled .navbar .nav-link:hover,
.site-header.is-scrolled .navbar .nav-link.active {
  color: var(--brand-blue-deep);
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 5px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-blue));
  opacity: 0;
  transition: left 0.34s ease, right 0.34s ease, opacity 0.34s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  left: 10px;
  right: 10px;
  opacity: 1;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.site-header.is-scrolled .navbar-toggler {
  border-color: rgba(23, 26, 32, 0.16);
}

.site-header.is-scrolled .navbar-toggler-icon {
  filter: none;
}

.mobile-offcanvas {
  background: radial-gradient(circle at top right, rgba(39, 76, 155, 0.2), transparent 34%), var(--navy);
  color: var(--white);
}

.mobile-offcanvas .offcanvas-title img {
  width: 168px;
  max-width: 100%;
  height: auto;
}

.mobile-offcanvas a {
  display: block;
  color: var(--white);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
}

.mobile-offcanvas a:hover,
.mobile-offcanvas a:focus {
  color: var(--brand-orange);
  border-color: var(--brand-orange);
}

.hero {
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 13, 29, 0.93), rgba(7, 13, 29, 0.52), rgba(39, 76, 155, 0.16)), url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=2200&q=85") center/cover no-repeat;
  transform: scale(1.08);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 8vw 8vw;
  opacity: 0.28;
}

.display-title {
  max-width: 1000px;
  font-size: clamp(4rem, 10vw, 10.7rem);
  line-height: 0.84;
  color: var(--white);
}

.hero-copy {
  max-width: 680px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.scroll-indicator {
  position: absolute;
  right: 42px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.scroll-indicator span {
  width: 1px;
  height: 70px;
  background: var(--brand-orange);
}

.intro-statement {
  color: var(--charcoal);
}

.word-reveal .word {
  display: inline-block;
  opacity: 0.14;
}

.split-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.split-mask .split-line {
  display: inline-block;
  will-change: transform;
}

.cinematic-copy,
.section-heading p,
.detail-section p,
.about p,
.sticky-copy p,
.contact p,
.contact-list > *,
.tag-list,
.hero-actions,
.cta-panel > div {
  will-change: transform, opacity;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 52px;
}

.service-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--navy);
  color: var(--white);
  isolation: isolate;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 11, 30, 0.03), rgba(5, 11, 30, 0.94));
}

.service-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.service-card span {
  position: absolute;
  top: 24px;
  left: 26px;
  color: var(--brand-orange);
  font-family: var(--font-heading);
  font-weight: 800;
}

.service-card h3 {
  font-size: 1.55rem;
}

.service-card p {
  min-height: 130px;
  color: rgba(255, 255, 255, 0.74);
}

.service-card a {
  color: var(--white);
  font-weight: 800;
}

.service-card a:hover,
.service-card a:focus {
  color: var(--brand-orange);
}

.detail-section {
  overflow: hidden;
}

.detail-image,
.about-image {
  width: 100%;
  height: min(68vh, 680px);
  object-fit: cover;
  will-change: transform;
}

.image-reveal-wrap {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  clip-path: inset(0 0 0 0);
}

.image-reveal-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
  transform: translateX(var(--curtain-x, 0));
  transform-origin: left center;
  will-change: transform;
  pointer-events: none;
}

.image-reveal-wrap.reveal-from-right::after {
  transform-origin: right center;
}

.detail-section h2,
.about h2 {
  margin-bottom: 24px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.tag-list span {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(183, 101, 63, 0.24);
  font-size: 0.86rem;
  font-weight: 700;
}

.dark-tags span {
  background: var(--grey);
  color: var(--charcoal);
  border-color: var(--border-soft);
}

.split-dark {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy) 50%, #07164b 50%, #07164b 100%);
  color: var(--white);
}

.video-panel {
  position: relative;
  min-height: 520px;
}

.video-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-orange));
  color: var(--white);
  transform: translate(-50%, -50%);
  font-size: 2rem;
}

.play-button:hover,
.play-button:focus {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-blue-deep));
  transform: translate(-50%, -50%) scale(1.04);
}

.marquee {
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 7vw, 7rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  padding: 28px 0;
}

.marquee div {
  display: inline-flex;
  gap: 40px;
  animation: marquee 28s linear infinite;
}

.marquee span::after {
  content: "•";
  margin-left: 40px;
  color: var(--brand-orange);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.sticky-copy {
  position: sticky;
  top: 120px;
}

.timeline {
  border-left: 1px solid var(--border-soft);
}

.timeline-item {
  position: relative;
  padding: 0 0 56px 46px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 6px;
  width: 15px;
  height: 15px;
  background: var(--brand-orange);
  box-shadow: 0 0 0 6px rgba(183, 101, 63, 0.13);
}

.timeline-item span {
  color: var(--brand-blue-deep);
  font-family: var(--font-heading);
  font-weight: 800;
}

.timeline-item h3 {
  margin: 8px 0 10px;
  font-size: 2rem;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-buttons button {
  min-height: 44px;
  border: 1px solid rgba(183, 101, 63, 0.32);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
  padding: 10px 17px;
  font-weight: 800;
}

.filter-buttons button.active,
.filter-buttons button:hover {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: var(--white);
}

.portfolio-grid {
  margin: 0 -10px;
}

.portfolio-item {
  width: calc(33.333% - 20px);
  margin: 10px;
  position: relative;
  display: block;
  overflow: hidden;
  color: var(--white);
}

.portfolio-item:nth-child(2),
.portfolio-item:nth-child(5) {
  margin-top: 70px;
}

.portfolio-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.portfolio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(5, 11, 30, 0.88));
}

.portfolio-item span {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 22px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
}

.portfolio-item:hover img {
  transform: scale(1.07);
}

.stat {
  padding: 30px 18px;
  background: var(--white);
  border: 1px solid var(--border-soft);
}

.stat strong {
  display: block;
  color: var(--brand-blue-deep);
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
}

.stat strong::after {
  content: "+";
  color: var(--brand-orange);
}

.stat span {
  display: block;
  margin-top: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(23, 26, 32, 0.58);
}

.premium-accordion {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.premium-accordion .accordion-item {
  border: 1px solid rgba(183, 101, 63, 0.2);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.premium-accordion .accordion-button {
  background: transparent;
  color: var(--white);
  box-shadow: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
}

.premium-accordion .accordion-button:not(.collapsed) {
  color: var(--brand-orange);
}

.premium-accordion .accordion-button::after {
  filter: invert(1);
}

.premium-accordion .accordion-body {
  color: rgba(255, 255, 255, 0.7);
}

.final-cta {
  background: var(--navy);
}

.cta-panel {
  min-height: 420px;
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(90deg, rgba(7, 13, 29, 0.95), rgba(7, 13, 29, 0.66), rgba(39, 76, 155, 0.16)), url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=1800&q=85") center/cover;
  color: var(--white);
}

.cta-panel h2 {
  max-width: 900px;
  margin-bottom: 30px;
}

.cta-panel > div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.contact-list > a,
.contact-list > span {
  color: var(--charcoal);
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  padding: 0;
  min-height: 28px;
  transform: translate(0px, 32px);
}

.contact-list i {
  color: var(--brand-orange);
  width: 16px;
  margin-top: 0;
  line-height: 1;
}

.contact-text {
  display: block;
  min-width: 0;
}

.contact-list a:hover,
.contact-list a:focus {
  color: var(--brand-blue-deep);
}

.contact-form {
  background: var(--white);
  padding: 34px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 24px 70px rgba(5, 11, 30, 0.06);
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10000;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.32);
  font-size: 2rem;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
  color: var(--white);
  background: #1ebe5b;
  transform: translateY(-3px);
}

.form-control,
.form-select {
  min-height: 54px;
  border-radius: 0;
  border: 1px solid var(--grey);
  background-color: var(--light);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 0.2rem rgba(39, 76, 155, 0.12);
}

textarea.form-control {
  min-height: 150px;
}

.site-footer {
  padding: 80px 0 34px;
  background: #030817;
  color: var(--white);
}

.site-footer img {
  width: 260px;
  padding: 0;
  margin-bottom: 24px;
  background: transparent;
  filter: drop-shadow(0 10px 22px rgba(39, 76, 155, 0.18));
}

.site-footer h3 {
  font-size: 1rem;
  margin-bottom: 18px;
  color: var(--brand-orange);
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--brand-orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
}

.back-top {
  width: 46px;
  height: 46px;
  display: grid !important;
  place-items: center;
  margin: 0 !important;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-orange));
  color: var(--white) !important;
}

.back-top:hover,
.back-top:focus {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-blue-deep));
  color: var(--white) !important;
  transform: translateY(-3px);
}

@media (max-width: 1199px) {
  .navbar-brand img {
    width: 190px;
  }
}

@media (max-width: 991px) {
  section {
    padding: var(--section-space-mobile) 0;
  }

  #interior,
  .portfolio {
    padding-bottom: var(--section-space-mobile);
  }

  .services {
    margin-bottom: var(--section-space-mobile);
  }

  .final-cta {
    padding-bottom: var(--section-space-mobile);
  }

  .about {
    margin-bottom: var(--section-space-mobile);
  }

  .detail-section#construction {
    margin-bottom: var(--section-space-mobile);
  }

  .process {
    margin-bottom: var(--section-space-mobile);
  }

  .contact {
    margin-bottom: var(--section-space-mobile);
  }

  h2 {
    line-height: 1.03;
  }

  .display-title {
    font-size: clamp(3.3rem, 16vw, 7rem);
  }

  .split-dark {
    background: var(--navy);
  }

  .premium-accordion {
    grid-template-columns: 1fr;
  }

  .portfolio-item {
    width: calc(50% - 20px);
  }
}

@media (max-width: 767px) {
  .preloader-words {
    gap: 12px;
    font-size: 0.68rem;
  }

  .preloader-logo-wrap {
    width: min(320px, 78vw);
  }

  .navbar-brand img {
    width: 168px;
  }

  .hero {
    min-height: 760px;
  }

  .hero .row {
    min-height: 760px !important;
  }

  .hero-actions .btn,
  .cta-panel .btn {
    width: 100%;
  }

  .cta-panel > div {
    display: grid;
    gap: 12px;
    width: 100%;
  }

  .cta-panel .btn {
    padding: 15px 24px;
  }

  .scroll-indicator {
    display: none;
  }

  .service-card {
    min-height: 430px;
  }

  .detail-image,
  .about-image,
  .video-panel,
  .video-panel img {
    height: 420px;
    min-height: 420px;
  }

  .sticky-copy {
    position: static;
  }

  .portfolio-item {
    width: calc(100% - 20px);
  }

  .portfolio-item:nth-child(2),
  .portfolio-item:nth-child(5) {
    margin-top: 10px;
  }

  .portfolio-item img {
    height: 360px;
  }

  .cta-panel {
    padding: 42px 24px;
  }

  .contact-form {
    padding: 24px;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    font-size: 1.85rem;
  }

  .image-reveal-wrap::after {
    display: none;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .image-reveal-wrap::after {
    display: none;
  }
}
