/* ==========================================================================
   Execuwash - site stylesheet
   Brand colors extracted from the shop's real signage (black + orange).
   ========================================================================== */

:root {
  --bg: #0b0b0d;
  --bg-raised: #16161a;
  --surface: #161619;
  --surface-2: #1d1d21;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f3f1ec;
  --text-dim: #b6b3ac;
  --text-faint: #817d76;
  --accent: #ef5f1f;
  --accent-light: #ff8a4c;
  --accent-dim: rgba(239, 95, 31, 0.14);
  --accent-ink: #1a0e06;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --container: 1240px;
  --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Outfit", "Segoe UI", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}

p {
  margin: 0;
}

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

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

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

section {
  padding-block: 96px;
}

@media (max-width: 768px) {
  section {
    padding-block: 64px;
  }
}

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

.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 60ch;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), background 0.18s ease, border-color 0.18s ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--accent);
  color: #100904;
}

.btn-primary:hover {
  background: var(--accent-light);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}

.btn-block {
  width: 100%;
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 11, 13, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.nav-logo img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--accent-light);
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 72px 0 0 0;
    height: calc(100dvh - 72px);
    background: var(--bg);
    flex-direction: column;
    justify-content: flex-start;
    padding: 36px 24px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.2rem;
    color: var(--text);
  }

  .nav-cta .btn-ghost {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

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

.hero {
  padding-top: 56px;
  padding-bottom: 72px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  max-width: 12ch;
  margin-bottom: 20px;
}

.hero-content .lede {
  color: var(--text-dim);
  font-size: 1.15rem;
  max-width: 44ch;
  margin-bottom: 32px;
}

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

.hero-media {
  position: relative;
}

.hero-media .frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(11, 11, 13, 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
  padding: 12px 18px;
  border-radius: 999px;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-badge i {
  color: var(--accent-light);
  font-size: 1.1rem;
}

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

  .hero-content h1 {
    max-width: none;
  }

  .hero-media .frame {
    aspect-ratio: 4 / 3;
  }
}

/* ---------- trust strip ---------- */

.trust-strip {
  padding-block: 40px;
  border-block: 1px solid var(--border);
  background: var(--surface);
}

.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-item i {
  font-size: 1.6rem;
  color: var(--accent-light);
  flex-shrink: 0;
}

.trust-item span {
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}

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

@media (max-width: 540px) {
  .trust-strip .container {
    grid-template-columns: 1fr;
  }
}

/* ---------- about (split) ---------- */

.about .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.about-body p + p {
  margin-top: 16px;
}

.about-body p {
  color: var(--text-dim);
  font-size: 1.02rem;
  max-width: 58ch;
}

.about-body h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

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

/* ---------- steam tech (full width media) ---------- */

.tech {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.tech .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.tech-copy {
  max-width: 720px;
}

.tech-copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.tech-copy p {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 68ch;
}

.tech-stats {
  display: flex;
  gap: 40px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.tech-stat strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  color: var(--accent-light);
}

.tech-stat span {
  color: var(--text-faint);
  font-size: 0.9rem;
}

.tech-video {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
  max-width: 860px;
}

.tech-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- services (bento) ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}

.service-card.featured {
  grid-column: span 3;
  min-height: 420px;
}

.service-card:not(.featured) {
  grid-column: span 3;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 11, 13, 0.94) 8%, rgba(11, 11, 13, 0.35) 60%, rgba(11, 11, 13, 0.05) 100%);
  z-index: 1;
}

.service-body {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.service-body h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.service-body ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.7;
}

.service-body ul li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 9px;
  vertical-align: middle;
}

.service-body a {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card.featured,
  .service-card:not(.featured) {
    grid-column: auto;
  }
}

/* ---------- pricing ---------- */

.pricing-group + .pricing-group {
  margin-top: 56px;
}

.pricing-group h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.price-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.price-card h4 {
  font-size: 1.08rem;
}

.price-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.55;
  flex-grow: 1;
}

.price-tag {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--accent-light);
}

.price-tag small {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-light);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-card.cta-card {
  background: var(--accent-dim);
  border-color: rgba(239, 95, 31, 0.32);
  justify-content: center;
  align-items: flex-start;
}

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

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

/* ---------- gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

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

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

/* lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 6, 7, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 84vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-strong);
  color: var(--text);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

/* ---------- partner / mothers care ---------- */

.partner {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.partner-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.partner-copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.partner-copy p {
  color: var(--text-dim);
  font-size: 1.02rem;
  max-width: 52ch;
}

.partner-video {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
}

.partner-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.product-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.product-strip::-webkit-scrollbar {
  height: 6px;
}

.product-strip::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 4px;
}

.product-chip {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 168px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  text-align: center;
}

.product-chip img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-chip span {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 8px;
}

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

/* ---------- contact ---------- */

.contact .container {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
}

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

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

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field label {
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
}

.field input,
.field textarea {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-faint);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

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

.form-note {
  font-size: 0.82rem;
  color: var(--text-faint);
}

.form-status {
  font-size: 0.88rem;
  font-weight: 600;
  min-height: 1.2em;
}

.form-status.ok {
  color: #6fcf7c;
}

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

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 14px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-dim);
  font-size: 0.94rem;
  line-height: 1.5;
}

.info-row + .info-row {
  margin-top: 12px;
}

.info-row i {
  color: var(--accent-light);
  font-size: 1.15rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

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

/* ---------- inner page hero ---------- */

.page-hero {
  padding-top: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 14px;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  max-width: 18ch;
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 62ch;
}

.page-hero .btn {
  margin-top: 24px;
}

/* ---------- product grid (catalog pages) ---------- */

.product-grid-section {
  padding-block: 64px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.product-card .product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  overflow: hidden;
}

.product-card .product-image img {
  position: absolute;
  inset: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  object-fit: contain;
}

.product-card .product-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.product-card h3 {
  font-size: 1.08rem;
  color: #16161a;
}

.product-card p {
  color: #55555c;
  font-size: 0.9rem;
  line-height: 1.6;
}

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

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

/* ---------- category nav chips ---------- */

.category-nav {
  border-block: 1px solid var(--border);
  background: var(--surface);
}

.category-nav .container {
  padding-block: 22px;
}

.category-nav-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-chip {
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  color: var(--text-dim);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.category-chip:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}

.category-chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #100904;
}

/* ---------- brand strip ---------- */

.brands {
  padding-block: 48px;
  border-top: 1px solid var(--border);
}

.brands-label {
  text-align: center;
  color: var(--text-faint);
  font-size: 0.92rem;
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 28px;
}

.brand-strip {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 1260 / 129;
  margin-inline: auto;
  overflow: hidden;
}

.brand-strip img {
  position: absolute;
  width: 158.73%;
  height: 200.78%;
  left: -23.81%;
  top: -59.69%;
}

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  padding-block: 56px 32px;
  background: #08080a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 34px;
  margin-bottom: 16px;
  border-radius: 5px;
}

.footer-brand p {
  color: var(--text-faint);
  font-size: 0.9rem;
  max-width: 34ch;
}

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

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  color: var(--text-dim);
  font-size: 0.92rem;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-faint);
  font-size: 0.84rem;
}

.footer-bottom a {
  color: var(--text-faint);
}

.footer-bottom a:hover {
  color: var(--accent-light);
}

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

/* ---------- scroll to top ---------- */

.whatsapp-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 55;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

.whatsapp-float:active {
  transform: scale(0.96);
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: #100904;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 55;
}

.to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ---------- reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}
