/* css/layout.css */

section {
  padding: 0;
}

/* GRID SYSTEM */
.container {
  max-width: 1400px;
  margin: 0 auto;
}

/* HERO */


.hero {
  margin-top: var(--nav-height);
  min-height: calc(100vh - var(--nav-height));
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 🔥 balanced like original */
  align-items: stretch;
  /* 🔥 important */
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5rem;
  /* REMOVE top padding */
}

.hero-right {
  position: relative;
  height: 100%;
  min-height: calc(100vh - 80px);
  /* 🔥 KEY FIX */
  overflow: hidden;
}



/* Prevent horizontal overflow issues */
body {
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 1.6rem 4rem;
  /* 🔥 THIS creates height naturally */

  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(77, 69, 62, 0.08);

  z-index: 1000;
}

.cursor,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

body {
  cursor: auto;
}

/* ── Marquee ── */
.marquee-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-block;
  animation: marquee 28s linear infinite;
}

.marquee-inner span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0 3rem;
}

.marquee-inner span.dot {
  color: var(--accent);
  letter-spacing: 0;
  margin: 0 1rem;
}

/* ── About ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 8rem 4rem;
}

.about-left {
  padding-right: 6rem;
}

.section-label {
  font-size: 1rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--accent);
}

.about-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 2.5rem;
}

.about-headline em {
  font-style: italic;
}

.about-body {
  font-size: 0.78rem;
  line-height: 2.1;
  color: var(--stone);
  margin-bottom: 2rem;
}

.about-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 3rem;
}

.stat-item {
  border-top: 1px solid var(--sand);
  padding-top: 1.5rem;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 0.4rem;
}

/* ══════════════════════════════════════════
       SERVICES — hover-reveal panels
    ══════════════════════════════════════════ */
.services {
  background: var(--cream);
  padding: 7rem 4rem;
}

/* SERVICES HEADER */
.services-header {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;

  align-items: start;

  gap: 6rem;

  margin-bottom: 5rem;
}

/* LEFT TITLE */
.services-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.05;
  color: var(--ink);
}

.services-headline em {
  font-style: italic;
  color: var(--accent);
}

/* RIGHT TEXT */
.services-intro {
  font-size: 0.82rem;
  line-height: 2.2;
  color: var(--stone);

  max-width: 42ch;

  justify-self: start;

  padding-top: 1rem;
}

/* Grid of 4 cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--sand);
  position: relative;
}

/* Each card */
.service-card {
  padding: 3rem 2.5rem 3rem 0;
  border-right: 1px solid var(--sand);
  cursor: none;
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
  text-decoration: none;
  transition: background 0.3s;
}

.service-card:last-child {
  border-right: none;
  padding-right: 0;
}

.service-card:first-child {
  padding-left: 0;
}

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.2;
  transition: color 0.3s;
}

.service-desc {
  font-size: 0.72rem;
  line-height: 2;
  color: var(--stone);

}

.service-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.3s;
}

/* ── The full-width reveal panel ── */
.service-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.38s ease, transform 0.38s ease;
  box-shadow: 0 20px 60px rgba(77, 69, 62, 0.18);
}

/* Trigger: hovering the card shows its panel */
.service-card:hover .service-panel,
.service-card:focus-within .service-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.service-card:hover {
  background: rgba(137, 130, 123, 0.06);
}

.service-card:hover .service-title {
  color: var(--stone);
}

.service-card:hover .service-link-arrow {
  gap: 1.2rem;
}

/* Panel visual side */
.sp-visual {
  position: relative;
  overflow: hidden;
}

.sp-visual-bg {
  position: absolute;
  inset: 0;
}

.sp-visual-geo {
  position: absolute;
  inset: 0;
}

.sp-visual-geo::before {
  content: '';
  position: absolute;
  top: 12%;
  left: 8%;
  width: 55%;
  height: 70%;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.sp-visual-geo::after {
  content: '';
  position: absolute;
  bottom: 8%;
  right: 6%;
  width: 40%;
  height: 55%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.sp-label {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  user-select: none;
}

/* Panel content side */
.sp-content {
  background: var(--ink);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
}

.sp-content .section-label {
  color: var(--sand);
  margin-bottom: 1.8rem;
}

.sp-content .section-label::before {
  background: var(--sand);
}

.sp-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  line-height: 1.18;
  margin-bottom: 1.5rem;
  color: var(--cream);
}

.sp-headline em {
  font-style: italic;
  color: var(--sand);
}

.sp-body {
  font-size: 0.73rem;
  line-height: 2.1;
  color: var(--light);
  margin-bottom: 2rem;
}

.sp-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.sp-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.7rem;
  color: rgba(235, 233, 233, 0.7);
}

.sp-pillar::before {
  content: '—';
  color: var(--sand);
  flex-shrink: 0;
}

.sp-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.4rem;
  transition: border-color 0.3s, gap 0.3s;
  width: fit-content;
}

.sp-cta:hover {
  gap: 1.8rem;
  border-color: var(--sand);
}

.sp-cta::after {
  content: '→';
}

/* Per-service visual colours */
.sp-01 .sp-visual-bg {
  background: linear-gradient(145deg, #d2dde5 0%, #c8c3bd 55%, #89827b 100%);
}

.sp-02 .sp-visual-bg {
  background: linear-gradient(145deg, #c8c3bd 0%, #89827b 55%, #4d453e 100%);
}

.sp-03 .sp-visual-bg {
  background: linear-gradient(145deg, #d2dde5 0%, #c5c3c3 45%, #89827b 100%);
}

.sp-04 .sp-visual-bg {
  background: linear-gradient(145deg, #ebe9e9 0%, #c8c3bd 50%, #847161 100%);
}

/* ── Interior Design Feature ── */
.interior-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.interior-visual {
  background: linear-gradient(160deg, #d2dde5 0%, #c8c3bd 60%, #89827b 100%);
  position: relative;
  overflow: hidden;
}

.interior-visual-grid {
  position: absolute;
  inset: 0;
}

.interior-visual-grid::before {
  content: '';
  position: absolute;
  top: 12%;
  left: 8%;
  width: 55%;
  height: 70%;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.interior-visual-grid::after {
  content: '';
  position: absolute;
  bottom: 8%;
  right: 6%;
  width: 40%;
  height: 55%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.interior-visual-label {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  user-select: none;
}

.interior-content {
  background: var(--ink);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
}

.interior-content .section-label {
  color: var(--accent);
}

.interior-content .section-label::before {
  background: var(--accent);
}

.interior-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.8rem;
}

.interior-headline em {
  font-style: italic;
  color: var(--accent);
}

.interior-body {
  font-size: 0.75rem;
  line-height: 2.1;
  color: var(--sand);
  margin-bottom: 2.5rem;
}

.interior-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.interior-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.72rem;
  color: rgba(235, 233, 233, 0.7);
}

.interior-pillar::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.05em;
}

.interior-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.5rem;
  transition: border-color 0.3s, gap 0.3s;
  width: fit-content;
}

.interior-cta:hover {
  gap: 2rem;
  border-color: var(--accent);
}

.interior-cta::after {
  content: '→';
}

/* ── Art Works ── */
.artworks {
  padding: 7rem 4rem;
  background: var(--white);
}

.artworks-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  margin-bottom: 1.5rem;
}

.artworks-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.1;
}

.artworks-headline em {
  font-style: italic;
  color: var(--accent);
}

.artworks-intro-text {
  font-size: 0.75rem;
  line-height: 2;
  color: var(--stone);
  max-width: 38ch;
  justify-self: end;
}

.artworks-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--stone);
  margin-bottom: 4rem;
  max-width: 60ch;
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.art-card {
  position: relative;
  overflow: hidden;
  background: var(--sand);
  cursor: none;
}

.art-thumb {
  width: 100%;
  aspect-ratio: 3/4;
  display: block;
  transition: transform 0.6s ease;
}

.art-card:hover .art-thumb {
  transform: scale(1.04);
}

.art-info {
  padding: 1.5rem;
}

.art-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 0.3rem;
}

.art-medium {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
}

.art-price {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.art-enquire {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: gap 0.3s;
}

.art-enquire:hover {
  gap: 1.4rem;
}

.art-enquire::after {
  content: '→';
}

.art-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
}

/* ── Work ── */
.work {
  padding: 8rem 4rem;
  background: var(--cream);
}

.work-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.work-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.work-headline em {
  font-style: italic;
}

.work-link {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s, gap 0.3s;
}

.work-link:hover {
  color: var(--ink);
  gap: 1.5rem;
}

.work-link::after {
  content: '→';
}

.work-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.work-item {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}

.work-item:first-child {
  grid-row: span 2;
}

.work-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  display: block;
}

.work-item:first-child .work-thumb {
  aspect-ratio: unset;
  height: 100%;
  min-height: 420px;
}

.work-thumb-bg {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.work-item:hover .work-thumb-bg {
  transform: scale(1.03);
}

.work-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(77, 69, 62, 0.75));
  color: var(--white);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.work-item:hover .work-caption {
  transform: translateY(0);
}

.work-caption-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
}

.work-caption-type {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.3rem;
}

/* ── Contact ── */
.contact {
  background: var(--ink);
  color: var(--cream);
  padding: 8rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.contact-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.0;
}

.contact-headline em {
  font-style: italic;
  color: var(--accent);
}

.contact-sub {
  font-size: 0.75rem;
  line-height: 2;
  color: var(--stone);
  margin-top: 1.5rem;
}

.contact-free-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--accent);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-free-tag::before {
  content: '✦';
  font-size: 0.5rem;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.contact-item-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.5rem;
}

.contact-item-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.5;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
  cursor: none;
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ── Footer ── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--stone);
}

.f-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.f-logo img {
  height: 32px;
  width: auto;

}

.f-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(235, 233, 233, 0.6);
  text-transform: uppercase;
}

footer p {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

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

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

/* ── Responsive ── */
@media(max-width:900px) {
  nav {
    padding: 1.2rem 1.5rem;
  }

  nav ul {
    gap: 1.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 7rem 2rem 4rem;
  }

  .hero-right {
    height: 55vw;
  }

  .about,
  .contact {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about {
    padding: 5rem 2rem;
  }

  .about-left {
    padding-right: 0;
  }

  .services {
    padding: 5rem 2rem;
  }

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

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

  .service-card {
    border-bottom: 1px solid var(--sand);
    padding: 2rem 1.5rem 2rem 0;
  }

  .service-panel {
    display: none;
  }

  .interior-feature {
    grid-template-columns: 1fr;
  }

  .interior-visual {
    min-height: 280px;
  }

  .interior-content {
    padding: 4rem 2rem;
  }

  .artworks {
    padding: 5rem 2rem;
  }

  .artworks-header {
    grid-template-columns: 1fr;
  }

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

  .work {
    padding: 5rem 2rem;
  }

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

  .work-item:first-child {
    grid-row: span 1;
  }

  .work-item:first-child .work-thumb {
    min-height: 280px;
  }

  .contact {
    padding: 5rem 2rem;
  }

  footer {
    padding: 1.5rem 2rem;
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }

  .vertical-text {
    display: none;
  }

}

@media(max-width:560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

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

/* ── Service Feature Sections ── */
.svc-feature {
  min-height: 560px;
}

.svc-reverse {
  direction: rtl;
}

.svc-reverse>* {
  direction: ltr;
}

/* Residential – warm earth gradient */
.svc-visual-residential {
  background: linear-gradient(145deg, #ebe9e9 0%, #c8c3bd 45%, #89827b 100%);
}

/* Commercial – cool mist gradient */
.svc-visual-commercial {
  background: linear-gradient(160deg, #d2dde5 0%, #c5c3c3 50%, #847161 100%);
}

/* Renovation – deep warm gradient */
.svc-visual-renovation {
  background: linear-gradient(135deg, #c8c3bd 0%, #89827b 50%, #4d453e 100%);
}

.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 60px;
  height: 60px;

  background: #25D366;
  color: white;
  border-radius: 50%;

  font-size: 14px;
  font-weight: 500;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

/* Hover effect */
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Optional: pulse animation */
.whatsapp-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 1.8s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}