/* =========================================================
   GL BALI EVENTS — Landing page styles
   Brand palette: petrol/teal + cream + off-white
   ========================================================= */

:root {
  --primary: #0E4046;
  --primary-dark: #0A2F33;
  --primary-soft: #18585F;
  --cream: #F5F0E8;
  --bg: #FAFAFA;
  --ink: #0A1F22;
  --ink-soft: #4A5C5F;
  --muted: #8A9799;
  --line: #E5DED1;
  --wa-green: #25D366;

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 4px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 8px rgba(14, 64, 70, 0.06);
  --shadow-md: 0 8px 30px rgba(14, 64, 70, 0.12);
  --shadow-lg: 0 20px 60px rgba(14, 64, 70, 0.18);
  --maxw: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--primary);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; }

em {
  font-style: italic;
  color: var(--primary-soft);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 1rem;
}
.eyebrow--dark { color: var(--primary); opacity: 1; }
.eyebrow--light { color: var(--cream); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(14, 64, 70, 0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo img {
  height: 44px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--primary); }
.nav__cta {
  background: var(--primary);
  color: var(--cream) !important;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  transition: background 0.2s;
}
.nav__cta:hover { background: var(--primary-dark); }
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--primary);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  color: var(--cream);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url('assets/portfolio/corporate-golf-jump.jpg') center/cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(10, 47, 51, 0.85) 0%,
    rgba(14, 64, 70, 0.7) 50%,
    rgba(10, 47, 51, 0.85) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero__title {
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero__title em {
  color: #E6C998;
  font-weight: 500;
}
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 620px;
  margin-bottom: 2.5rem;
  opacity: 0.92;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  opacity: 0.75;
}
.trust-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--wa-green);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0.1); }
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px;
  height: 40px;
  border: 2px solid var(--cream);
  border-radius: 12px;
  opacity: 0.6;
}
.hero__scroll span {
  display: block;
  width: 2px; height: 6px;
  background: var(--cream);
  margin: 6px auto;
  animation: scroll-bounce 1.8s infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-sans);
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--wa-green);
  color: white;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  background: #20bd5a;
}
.btn--ghost {
  background: transparent;
  color: inherit;
  border: 1.5px solid currentColor;
}
.btn--ghost:hover {
  background: currentColor;
  color: var(--primary);
}
.hero .btn--ghost { color: var(--cream); }
.hero .btn--ghost:hover { background: var(--cream); color: var(--primary); }
.btn--large {
  padding: 1.1rem 2rem;
  font-size: 1rem;
}

/* ===== TRUSTED BY ===== */
.trusted-by {
  background: var(--cream);
  padding: 3rem 0;
  border-bottom: 1px solid var(--line);
}
.trusted-by__label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.7;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.trusted-by__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 2.5rem;
}
.trusted-by__list span {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  opacity: 0.85;
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
}
.trusted-by__list span:hover { opacity: 1; }

@media (max-width: 640px) {
  .trusted-by__list { gap: 0.75rem 1.5rem; }
  .trusted-by__list span { font-size: 1.1rem; }
}

/* ===== SECTIONS ===== */
.section {
  padding: clamp(60px, 10vw, 120px) 0;
}
.section--light { background: var(--bg); }
.section--cream { background: var(--cream); }
.section--dark {
  background: var(--primary-dark);
  color: var(--cream);
}
.section__head {
  margin-bottom: 4rem;
  max-width: 720px;
}
.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section__title { margin-bottom: 1rem; }
.section__title--light { color: var(--cream); }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.service-card--feature {
  background: var(--primary);
  color: var(--cream);
  border-color: var(--primary);
}
.service-card--feature h3 { color: var(--cream); }
.service-card--feature .service-card__icon { color: #E6C998; }
.service-card--feature:hover { background: var(--primary-dark); }
.service-card__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  color: var(--primary);
}
.service-card--feature .service-card__icon {
  background: rgba(245, 240, 232, 0.12);
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  opacity: 0.85;
}
.service-card ul {
  list-style: none;
  font-size: 0.9rem;
}
.service-card li {
  padding: 0.4rem 0;
  border-top: 1px solid currentColor;
  opacity: 0.7;
}
.service-card li:first-child { border-top: none; }

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-item--tall { grid-row: span 2; }
.portfolio-item--wide { grid-column: span 2; }
.portfolio-item figcaption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 31, 34, 0.9) 0%, rgba(10, 31, 34, 0) 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--cream);
}
.portfolio-cat {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.4rem;
}
.portfolio-item h4 {
  color: var(--cream);
  font-size: 1.15rem;
}
.portfolio-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  opacity: 0.6;
  text-align: center;
}
.portfolio-note code {
  background: rgba(245, 240, 232, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.85rem;
}

/* ===== ABOUT ===== */
.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about__text p {
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.about__stats > div {
  display: flex;
  flex-direction: column;
}
.about__stats strong {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--primary);
  font-weight: 600;
}
.about__stats span {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

/* ===== PROCESS ===== */
.process {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.process li {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
}
.process__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--primary);
  opacity: 0.3;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.process h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.process p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonials blockquote {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--primary);
}
.testimonials p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonials cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* ===== CASE STUDIES ===== */
.case-studies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.case-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.case-card--feature {
  background: var(--primary);
  color: var(--cream);
  border-color: var(--primary);
}
.case-card--feature h3 { color: var(--cream); }
.case-card--feature:hover { background: var(--primary-dark); }
.case-card__tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 0.75rem;
  color: inherit;
}
.case-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.case-card--feature h3 { color: var(--cream); }
.case-card__brief {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.case-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid currentColor;
  border-color: rgba(0,0,0,0.08);
}
.case-card--feature .case-card__stats { border-color: rgba(245,240,232,0.2); }
.case-card__stats > div { display: flex; flex-direction: column; }
.case-card__stats strong {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
}
.case-card--feature .case-card__stats strong { color: #E6C998; }
.case-card__stats span {
  font-size: 0.7rem;
  opacity: 0.65;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

@media (max-width: 960px) {
  .case-studies { grid-template-columns: 1fr; }
}

/* ===== CTA ===== */
.cta {
  background: var(--primary);
  color: var(--cream);
  padding: clamp(60px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(230, 201, 152, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta__inner {
  position: relative;
  text-align: center;
  max-width: 720px;
}
.cta h2 {
  color: var(--cream);
  margin-bottom: 1rem;
}
.cta p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 2.5rem;
}
.cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta .btn--ghost { color: var(--cream); }
.cta .btn--ghost:hover { background: var(--cream); color: var(--primary); }

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  color: var(--cream);
  padding: 4rem 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}
.footer__brand img {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
  background: var(--cream);
  padding: 8px 12px;
  border-radius: 8px;
}
.footer__brand p {
  font-size: 0.9rem;
  opacity: 0.7;
  max-width: 280px;
}
.footer__col h4 {
  color: var(--cream);
  margin-bottom: 1rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.footer__col a {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.footer__col a:hover { opacity: 1; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.8rem;
  opacity: 0.7;
}
.footer__bottom a {
  color: var(--cream);
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer__bottom a:hover { opacity: 1; text-decoration: underline; }

/* ===== FLOATING WA ===== */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 60px; height: 60px;
  background: var(--wa-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .services-grid,
  .portfolio-grid,
  .testimonials,
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-item--wide { grid-column: span 2; }
  .portfolio-item--tall { grid-row: auto; }
  .about {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about__image img { height: 380px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 24px;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-md);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { font-size: 1.1rem; width: 100%; padding: 0.5rem 0; }
  .nav__cta { display: inline-block; width: auto; }

  .services-grid,
  .portfolio-grid,
  .testimonials,
  .process,
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .portfolio-grid { grid-auto-rows: 240px; }
  .portfolio-item--wide { grid-column: auto; }

  .about__stats { grid-template-columns: 1fr 1fr; }
  .about__stats > div:last-child { grid-column: span 2; }

  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero { padding-top: 100px; }
  .hero__ctas .btn { flex: 1; justify-content: center; }
  .wa-float { width: 54px; height: 54px; bottom: 16px; right: 16px; }
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 140px 0 80px;
  max-width: 820px;
  margin: 0 auto;
}
.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.5rem 0 0.5rem;
}
.legal-page h2 {
  font-size: 1.35rem;
  margin: 2.5rem 0 0.75rem;
}
.legal-page p, .legal-page li {
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
  font-size: 0.97rem;
}
.legal-page ul {
  margin: 0 0 1rem 1.5rem;
}
.legal-page a {
  color: var(--primary);
  text-decoration: underline;
}
.legal-meta {
  font-size: 0.85rem !important;
  color: var(--muted) !important;
  margin-bottom: 2.5rem !important;
}
.legal-back {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

/* ===== FAQ ===== */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--primary);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  padding: 0 0 1.5rem;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.65;
}

/* ===== STICKY MOBILE WA BAR ===== */
.mobile-cta {
  display: none;
}
@media (max-width: 640px) {
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 95;
    background: var(--primary);
    color: var(--cream);
    padding: 0.85rem 1rem;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  }
  .mobile-cta__text {
    font-size: 0.85rem;
    line-height: 1.3;
  }
  .mobile-cta__text strong { display: block; font-size: 0.95rem; }
  .mobile-cta__btn {
    background: var(--wa-green);
    color: white;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
  }
  body { padding-bottom: 70px; }
  .wa-float { bottom: 80px; }
}

/* ===== REVEAL ON SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
