/* ============================================================
   Rakennus- ja Remontointi Huuki Oy — index.css
   Layout D: Image-BG hero → asymmetric grid sections
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
@property --overlay-stop {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 55%;
}

:root {
  --primary:    #B5451B;
  --secondary:  #2D2D2D;
  --accent:     #E8A87C;
  --dark-bg:    #1A1A1A;
  --light-bg:   #FAF7F4;
  --card-bg:    #222222;
  --text-light: #F5F0EB;
  --text-dark:  #1A1A1A;
  --text-muted: #888;

  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Figtree', sans-serif;

  --max-w: 1280px;
  --gap:    clamp(1.5rem, 4vw, 3rem);
  --radius: 2px;

  --transition-fast: 0.2s ease;
  --transition-med:  0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.1;
  font-weight: 800;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 700; }

p { max-width: 65ch; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.section-eyebrow.light { color: var(--accent); }

.section-header {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header h2 { margin-bottom: 1rem; }
.section-sub { color: #555; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  border-radius: var(--radius);
  cursor: pointer;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}
.btn-primary:hover {
  background: #9a3a16;
  border-color: #9a3a16;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition-med), backdrop-filter var(--transition-med), box-shadow var(--transition-med);
}
.site-nav.scrolled {
  background: rgba(26,26,26,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 1.1rem clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
  transform-origin: left;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
}
.nav-cta:hover {
  background: #9a3a16;
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: 0.5rem;
}
.ham-line {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition-fast);
}
.hamburger.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .ham-line:nth-child(2) { opacity: 0; }
.hamburger.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--dark-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.mobile-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  transition: color var(--transition-fast);
}
.mobile-link:hover { color: var(--accent); }
.mobile-phone {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
}
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 2rem;
  color: #fff;
  transition: color var(--transition-fast);
}
.mobile-close:hover { color: var(--accent); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,26,26,0.88) 0%,
    rgba(26,26,26,0.65) var(--overlay-stop),
    rgba(26,26,26,0.3) 100%
  );
  animation: overlayPulse 8s ease-in-out infinite alternate;
}

@keyframes overlayPulse {
  from { --overlay-stop: 55%; }
  to   { --overlay-stop: 65%; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin-inline: auto;
  padding: 8rem clamp(1rem, 5vw, 3rem) 6rem;
  max-width: 820px;
  margin-left: max(3vw, 1rem);
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  max-width: none;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards 0.2s;
}
.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.75rem;
  color: #fff;
}
.wipe-line {
  display: block;
  clip-path: inset(0 100% 0 0);
  animation: wipeIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.wipe-line:nth-child(1) { animation-delay: 0.4s; }
.wipe-delay           { animation-delay: 0.75s; }

@keyframes wipeIn {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  max-width: 560px;
  opacity: 0;
  animation: fadeIn 0.7s ease forwards 1.1s;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards 1.4s;
}
.hero-btn svg { flex-shrink: 0; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards 2s;
}
.hero-scroll-hint span {
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  animation: scrollDot 1.6s ease-in-out infinite;
}
.hero-scroll-hint span:nth-child(2) { animation-delay: 0.2s; }
.hero-scroll-hint span:nth-child(3) { animation-delay: 0.4s; }
@keyframes scrollDot {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50%       { opacity: 1;   transform: translateY(4px); }
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: var(--primary);
  padding: 3.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--light-bg);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  display: flex;
  flex-direction: column;
  border-bottom: 3px solid transparent;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
  border-bottom-color: var(--primary);
}
.service-img-wrap {
  overflow: hidden;
  height: 230px;
  flex-shrink: 0;
}
.service-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img { transform: scale(1.05); }
.service-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-icon {
  width: 48px; height: 48px;
  background: rgba(181,69,27,0.1);
  color: var(--primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.service-body h3 {
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}
.service-body p {
  color: #555;
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 1.25rem;
  max-width: none;
}
.service-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition-fast), gap var(--transition-fast);
  align-self: flex-start;
}
.service-link:hover { color: #9a3a16; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--dark-bg);
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}
.about-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about-img-col {}
.about-img-frame {
  position: relative;
}
.about-img {
  width: 100%;
  height: clamp(380px, 50vw, 520px);
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--primary);
  color: #fff;
  width: 110px; height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  box-shadow: 0 4px 20px rgba(181,69,27,0.4);
}
.badge-year {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1;
}
.badge-text {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

.about-text-col {
  color: var(--text-light);
}
.about-text-col h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}
.about-text-col p {
  color: rgba(245,240,235,0.75);
  margin-bottom: 1rem;
  font-size: 1rem;
  max-width: none;
}
.about-values {
  margin: 2rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.value-dot {
  flex-shrink: 0;
  width: 10px; height: 10px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 0.35rem;
}
.value-item strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.value-item p {
  color: rgba(245,240,235,0.65);
  font-size: 0.9rem;
  margin: 0;
  max-width: none;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--light-bg);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: #fff;
  padding: 2.25rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.quote-icon { color: var(--primary); opacity: 0.7; }
blockquote p {
  font-size: 1rem;
  color: #444;
  line-height: 1.75;
  font-style: italic;
  max-width: none;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.testimonial-author strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}
.testimonial-author span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.93) 0%, rgba(45,45,45,0.82) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.cta-text h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.cta-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: none;
}
.cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.cta-phone-link, .cta-email-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  transition: all var(--transition-fast);
}
.cta-phone-link:hover, .cta-email-link:hover {
  background: rgba(181,69,27,0.15);
  border-color: var(--primary);
}
.cta-phone-icon, .cta-email-icon {
  width: 52px; height: 52px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  animation: phonePulse 2.5s ease-in-out infinite;
}
.cta-email-icon { animation: none; }
.cta-phone-info, .cta-email-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.cta-phone-label, .cta-email-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}
.cta-phone-number {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.cta-email-address {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
@keyframes phonePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(181,69,27,0.5); }
  50%       { box-shadow: 0 0 0 12px rgba(181,69,27,0); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--secondary);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem 3rem;
  align-items: start;
  padding-bottom: 3rem;
}
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  max-width: 240px;
}
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-fast);
}
.footer-nav a:hover { color: var(--accent); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: right;
}
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-fast);
}
.footer-contact a:hover { color: var(--accent); }
.footer-contact span { font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem clamp(1rem, 5vw, 3rem);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--delay, 0s);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-img {
    height: 380px;
  }
  .about-badge {
    bottom: -1rem; right: -0.5rem;
    width: 90px; height: 90px;
  }
  .badge-year { font-size: 1.3rem; }

  .cta-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-contact { text-align: left; }
  .footer-nav ul { justify-content: flex-start; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  .hero-content {
    padding: 7rem 1.25rem 4rem;
    margin-left: 0;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn { width: 100%; justify-content: center; }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-img-wrap { height: 200px; }

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

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .cta-phone-number { font-size: 1.5rem; }

  .footer-inner { gap: 1.5rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .wipe-line { clip-path: none !important; }
  .hero-eyebrow,
  .hero-sub,
  .hero-actions { opacity: 1 !important; transform: none !important; }
}
