/* ==========================================================================
   SkyWash Coastal — Design System
   ========================================================================== */

:root {
  /* Brand colors, pulled from logo + brand collateral */
  --navy: #0f2a4a;
  --navy-dark: #0a1d34;
  --blue: #2b7fd1;
  --blue-light: #eaf3fc;
  --green: #8bc53f;
  --green-dark: #6da52c;
  --white: #ffffff;
  --ink: #16283c;
  --ink-soft: #52667a;
  --gray-50: #f6f8fa;
  --gray-100: #eef1f5;
  --gray-200: #dde3ea;

  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(15, 42, 74, 0.08);
  --shadow-md: 0 12px 32px rgba(15, 42, 74, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 42, 74, 0.18);

  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--navy);
}

p {
  margin: 0 0 1em;
}

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

section {
  padding: 88px 0;
}

@media (max-width: 768px) {
  section {
    padding: 56px 0;
  }
}

/* --- Eyebrow / section heading --------------------------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(139, 197, 63, 0.12);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

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

.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* --- Buttons ----------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--navy-dark);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1rem;
}

/* --- Header / Nav -------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 108px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--green);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--blue);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

.nav-phone svg {
  flex-shrink: 0;
  color: var(--green-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-phone span {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

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

/* --- Page hero (interior pages) ------------------------------------------ */

.page-hero {
  position: relative;
  background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy) 55%, var(--blue) 130%);
  color: var(--white);
  padding: 76px 0 90px;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(139, 197, 63, 0.25), transparent 55%);
  pointer-events: none;
}

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

.page-hero .eyebrow {
  background: rgba(139, 197, 63, 0.18);
  color: var(--green);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 3rem);
  max-width: 760px;
}

.page-hero p.lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  max-width: 620px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.breadcrumb a:hover {
  color: var(--white);
}

/* --- Home hero ------------------------------------------------------------ */

.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  padding: 96px 0 120px;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 20, 36, 0.93) 0%, rgba(13, 37, 64, 0.85) 42%, rgba(21, 74, 122, 0.58) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-left: 0;
  margin-right: 0;
}

.hero-copy .eyebrow {
  background: rgba(139, 197, 63, 0.18);
  color: var(--green);
}

.hero-copy h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 4.4vw, 3.4rem);
}

.hero-copy h1 span {
  color: var(--green);
}

.hero-copy p.lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 560px;
}

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

.hero-badges {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
}

@media (min-width: 981px) {
  .hero-badges {
    bottom: 40px;
    justify-content: center;
  }
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-badge svg {
  color: var(--green);
  flex-shrink: 0;
}

.hero-floater {
  position: absolute;
  z-index: 2;
  bottom: 40px;
  left: 24px;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}

.hero-floater .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  flex-shrink: 0;
}

.hero-floater strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--navy);
}

.hero-floater span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  .hero {
    padding: 80px 0 140px;
    min-height: 560px;
  }

  .hero-floater {
    display: none;
  }
}

/* --- Trust strip ----------------------------------------------------------- */

.trust-strip {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 22px 0;
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
}

.trust-item svg {
  color: var(--green-dark);
}

/* --- Grids / cards --------------------------------------------------------- */

.grid {
  display: grid;
  gap: 28px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

@media (max-width: 900px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin-bottom: 0;
}

.card ul {
  margin-top: 14px;
}

.card ul li {
  display: flex;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding: 5px 0;
}

.card ul li svg {
  color: var(--green-dark);
  flex-shrink: 0;
  margin-top: 3px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue);
}

/* --- Alt / tinted sections --------------------------------------------- */

.section-alt {
  background: var(--gray-50);
}

.section-navy {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
}

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.section-navy .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

/* --- Process steps ------------------------------------------------------- */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
  position: relative;
}

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

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

.step {
  position: relative;
  padding: 30px 22px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 18px;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 0;
}

/* --- Stats ----------------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

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

.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--green);
}

.stat span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-head);
  font-weight: 600;
}

/* --- Service area state pills ---------------------------------------------- */

.state-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.state-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--blue-light);
  padding: 10px 18px;
  border-radius: 999px;
}

.state-pill svg {
  color: var(--blue);
  flex-shrink: 0;
}

/* --- Testimonials ---------------------------------------------------------- */

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  color: var(--green);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-card p {
  color: var(--ink);
  font-size: 0.98rem;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-person strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.92rem;
  color: var(--navy);
}

.testimonial-person span {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* --- FAQ accordion ----------------------------------------------------- */

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy);
}

.faq-question .plus {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.faq-item.open .faq-question .plus {
  background: var(--green);
  color: var(--navy-dark);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 0 4px 22px;
  color: var(--ink-soft);
  max-width: 680px;
}

/* --- CTA banner -------------------------------------------------------- */

.cta-banner {
  position: relative;
  background: linear-gradient(120deg, var(--navy-dark), var(--navy) 60%, var(--blue));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 30%, rgba(139, 197, 63, 0.35), transparent 55%);
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
  max-width: 460px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* --- Forms --------------------------------------------------------------- */

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  border: 1px solid var(--gray-200);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 620px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 28px 22px;
  }

  .cta-banner {
    padding: 36px 26px;
  }
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(43, 127, 209, 0.15);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 14px;
  text-align: center;
}

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.form-status.success {
  display: block;
  background: rgba(139, 197, 63, 0.15);
  color: var(--green-dark);
}

.form-status.error {
  display: block;
  background: rgba(214, 69, 69, 0.12);
  color: #b0332f;
}

/* --- Contact info cards -------------------------------------------------- */

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-item .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-family: var(--font-head);
  color: var(--navy);
  margin-bottom: 3px;
}

.contact-info-item span,
.contact-info-item a {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.contact-info-item a:hover {
  color: var(--blue);
}

/* --- Footer -------------------------------------------------------------- */

.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-brand img {
  height: 160px;
  display: block;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: 6px;
  padding: 2px 3px;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.footer-social a:hover {
  background: var(--green);
  color: var(--navy-dark);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.92rem;
  transition: color 0.15s ease;
}

.footer-col ul li a:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 26px 0;
  font-size: 0.82rem;
}

.footer-bottom .badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom .badges span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-bottom .badges svg {
  color: var(--green);
}

/* --- Utility --------------------------------------------------------------- */

.text-center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
