/* ========== SELF-HOSTED FONTS ========== */
@font-face {
  font-family: "europa";
  src: url("/fonts/europa-300.woff2") format("woff2");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "europa";
  src: url("/fonts/europa-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "europa";
  src: url("/fonts/europa-700.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "europa";
  src: url("/fonts/europa-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "ivypresto-display";
  src: url("/fonts/ivypresto-display-300.woff2") format("woff2");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "ivypresto-display";
  src: url("/fonts/ivypresto-display-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ============================================
   DESIGN TOKENS
   ============================================ */

@property --sparkle-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: true;
}

:root {
  --color-primary: #d06a1f;
  --color-primary-light: #e08830;
  --color-primary-dark: #853e25;
  --color-primary-deep: #A62F03;
  --color-accent: #CB280A;
  --color-accent-light: #F7836D;
  --color-accent-muted: #F9A08F;
  --color-cream: #fefaf8;
  --color-cream-dark: #faf2ec;
  --color-warm: #f3e4da;
  --color-warm-dark: #d4b8a6;
  --color-blush: #F9A08F;
  --color-blush-light: #fcd0c7;
  --color-earth: #853e25;
  --color-text: #1e1e1e;
  --color-text-light: #3d3d3d;
  --color-text-muted: #7a7a7a;
  --color-white: #ffffff;
  --color-sage: var(--color-primary);
  --color-sage-light: var(--color-primary-light);
  --color-sage-dark: var(--color-primary-dark);
  --font-display: 'ivypresto-display', Georgia, serif;
  --font-body: 'europa', -apple-system, BlinkMacSystemFont, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  --radius-sm: 2px;
  --radius-md: 3px;
  --radius-lg: 4px;
  --radius-xl: 4px;
  --radius-full: 4px;
  --shadow-sm: 0 2px 8px rgba(166, 47, 3, 0.08);
  --shadow-md: 0 4px 20px rgba(166, 47, 3, 0.1);
  --shadow-lg: 0 8px 40px rgba(166, 47, 3, 0.12);
  --shadow-xl: 0 16px 60px rgba(166, 47, 3, 0.14);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1200px;
  --container-padding: 1.5rem;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html, body {
  overflow-x: hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.7;
  font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.8vw, 1.8rem); }

p {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  color: var(--color-text-light);
  max-width: 65ch;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul { list-style: none; }

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::selection {
  background-color: var(--color-primary-light);
  color: var(--color-white);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-cream); }
::-webkit-scrollbar-thumb { background: var(--color-warm-dark); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--color-primary-light); }

@media (max-width: 768px) {
  :root { --container-padding: 1.25rem; }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.scroll-reveal,
.scroll-reveal-delay-1,
.scroll-reveal-delay-2,
.scroll-reveal-delay-3,
.scroll-reveal-delay-4 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-delay-1 { transition-delay: 0.15s; }
.scroll-reveal-delay-2 { transition-delay: 0.30s; }
.scroll-reveal-delay-3 { transition-delay: 0.45s; }
.scroll-reveal-delay-4 { transition-delay: 0.60s; }

.scroll-reveal.revealed,
.scroll-reveal-delay-1.revealed,
.scroll-reveal-delay-2.revealed,
.scroll-reveal-delay-3.revealed,
.scroll-reveal-delay-4.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SHARED: SPARKLE CARDS
   ============================================ */

@keyframes sparkle-rotate {
  to { --sparkle-angle: 360deg; }
}

.sparkle-card {
  position: relative;
  padding: 2rem;
  border: none;
  border-radius: var(--radius-lg);
  text-align: left;
  overflow: visible;
}

/* Orange sparkle (Craftsmanship / About) */
.sparkle-orange::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--sparkle-angle),
    transparent 0%,
    transparent 25%,
    rgba(180, 180, 190, 0.5) 35%,
    rgba(255, 255, 255, 0.95) 40%,
    rgba(180, 180, 190, 0.5) 45%,
    transparent 55%,
    transparent 100%
  );
  filter: blur(0.5px);
  animation: sparkle-rotate 15s linear infinite;
  z-index: 0;
  pointer-events: none;
}

.sparkle-orange::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(180, 90, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 0;
  pointer-events: none;
}

/* Warm sparkle (PainPoints) */
.sparkle-warm::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--sparkle-angle),
    transparent 0%,
    transparent 20%,
    rgba(180, 180, 190, 0.7) 30%,
    rgba(255, 255, 255, 1) 40%,
    rgba(180, 180, 190, 0.7) 50%,
    transparent 60%,
    transparent 100%
  );
  filter: blur(1.5px);
  animation: sparkle-rotate 15s linear infinite;
  z-index: 0;
  pointer-events: none;
}

.sparkle-warm::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    conic-gradient(
      from var(--sparkle-angle),
      transparent 0%,
      transparent 25%,
      rgba(255, 255, 255, 0.12) 33%,
      rgba(255, 255, 255, 0.2) 40%,
      rgba(255, 255, 255, 0.12) 47%,
      transparent 55%,
      transparent 100%
    ),
    linear-gradient(135deg, rgba(180, 90, 15, 0.88), rgba(160, 75, 10, 0.88));
  animation: sparkle-rotate 15s linear infinite;
  z-index: 0;
  pointer-events: none;
}

.sparkle-js-fallback .sparkle-orange::before,
.sparkle-js-fallback .sparkle-warm::before,
.sparkle-js-fallback .sparkle-warm::after,
.sparkle-js-fallback .testimonial-card::before {
  animation: none;
}

.sparkle-card > * {
  position: relative;
  z-index: 1;
}

.sparkle-card-title {
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  margin-top: -0.25rem;
}

.sparkle-card-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: none;
}

/* ============================================
   SHARED: SECTION LABELS & ACCENT
   ============================================ */

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section-label-light {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary-light);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  max-width: 580px;
  color: var(--color-text-light);
}

.accent-italic {
  color: var(--color-primary);
  font-style: italic;
}

.accent-italic-light {
  color: var(--color-primary-light);
  font-style: italic;
}

/* ============================================
   NAVIGATION
   ============================================ */

@keyframes nav-slide-down {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  animation: nav-slide-down 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transition:
    padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    top 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    max-width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-header.scrolled {
  top: 0.75rem;
  left: 0; right: 0;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  background: rgba(30, 30, 30, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  padding: 0.6rem 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  z-index: 10;
  flex-shrink: 0;
  margin: 0 4rem;
}

.nav-logo-img {
  height: 54px;
  width: auto;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  top: -3px;
}

.nav-header.scrolled .nav-logo-img {
  height: 48px;
}

.nav-desktop-links {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0;
  justify-content: space-evenly;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
  letter-spacing: 0.03em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--color-primary-light);
  transition: width var(--transition-base);
}

.nav-link:hover { color: var(--color-white); }
.nav-link:hover::after { width: 100%; }

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.4rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 400;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: all var(--transition-base);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.nav-cta-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--color-white);
}

.nav-mobile-toggle {
  display: none;
  color: var(--color-white);
  z-index: 200;
  position: relative;
  padding: 0.25rem;
  transition: color var(--transition-fast);
}

/* Mobile menu overlay */
.nav-mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100dvh;
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.nav-mobile-link {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.nav-mobile-link:hover { color: var(--color-primary-light); }

.nav-mobile-cta {
  display: inline-flex;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 400;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.4);
  margin-top: 1rem;
}

/* Language toggle */
.lang-toggle {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: border-color var(--transition-fast);
  line-height: 1;
}
.lang-toggle:hover {
  border-color: rgba(255, 255, 255, 0.5);
}
.lang-option {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition-fast);
}
.lang-option.active {
  color: rgba(255, 255, 255, 0.95);
}
.lang-sep {
  color: rgba(255, 255, 255, 0.2);
  font-weight: 400;
}
.nav-mobile-lang-item {
  display: flex;
  justify-content: center;
  padding-top: 0.25rem;
}
.nav-mobile-lang-item .lang-toggle {
  padding: 0.4rem 1.25rem;
  font-size: 0.85rem;
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .nav-desktop-links { display: none; }
  .nav-desktop-only { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-inner { justify-content: space-between; }
  .nav-logo { margin: 0; }
  .nav-logo-img { height: 44px; }
  .nav-header.scrolled .nav-logo-img { height: 36px; }
  .nav-header { padding: 0.75rem 0; }
  .nav-header.scrolled { left: 0.75rem; right: 0.75rem; max-width: none; }
}

/* ============================================
   HERO
   ============================================ */

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.above-fold {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.78);
}

.hero-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1.5rem;
  max-width: 680px;
  padding-top: 4rem;
  animation: hero-fade-up 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.hero-accent {
  color: var(--color-primary-light);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  text-align: left;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
  justify-content: flex-start;
}

.hero-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.hero-primary-btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(166, 47, 3, 0.4);
  color: var(--color-white);
}

.hero-secondary-btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.hero-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--color-white);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 2rem;
  margin-top: 1rem;
  justify-content: flex-start;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  justify-content: center;
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-trust-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--color-primary-light);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-trust-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero-trust-divider {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 968px) {
  .hero-container { justify-content: center; }
  .hero-content { align-items: center; text-align: center; padding-top: 2rem; }
  .hero-subtitle { margin: 0 auto; font-size: 1rem; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
}

@media (max-width: 480px) {
  .hero { padding: 5rem 0 2.5rem; min-height: 100svh; }
  .hero-content { padding-top: 1.5rem; gap: 1.25rem; }
  .hero-title { font-size: 3.12rem; }
  .hero-subtitle { font-size: 0.92rem; line-height: 1.7; }
  .hero-actions { flex-direction: column; width: 100%; gap: 0.75rem; }
  .hero-primary-btn, .hero-secondary-btn { justify-content: center; width: 100%; padding: 0.9rem 1.5rem; font-size: 0.95rem; }
  .hero-trust { gap: 1.25rem; padding-top: 1.5rem; margin-top: 0.5rem; }
  .hero-trust-number { font-size: 2rem; }
  .hero-trust-label { font-size: 0.78rem; }
  .hero-trust-divider { height: 40px; }
}

/* ============================================
   MARQUEE
   ============================================ */

.marquee {
  overflow: hidden;
  background: var(--color-primary);
  padding: 0.9rem 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 73s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2.5rem;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.marquee-icon {
  font-size: 0.85rem;
  opacity: 0.7;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .marquee-item { padding: 0 1.5rem; font-size: 1rem; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--color-cream-dark) 0%, #efe0d3 100%);
}

.testimonials-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.testimonials-header h2 { margin-bottom: 1rem; }
.testimonials-header .section-subtitle { max-width: 480px; margin: 0 auto; }

/* Arc wrapper */
.arc-wrapper {
  height: 380px;
  margin: -4.5rem calc(-1 * var(--container-padding));
  pointer-events: none;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.arc-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.arc-logo-img {
  filter: brightness(0);
  opacity: 0.55;
}

/* Card marquee */
.card-marquee-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-left: calc(-1 * var(--container-padding));
  margin-right: calc(-1 * var(--container-padding));
  padding: 0.5rem 0.25rem 1rem;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.card-marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  --card-marquee-distance: 50%;
  animation: card-marquee 40s linear infinite;
}

@keyframes card-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * var(--card-marquee-distance))); }
}

/* Testimonial card */
.testimonial-card {
  flex: 0 0 380px;
  padding: 2rem;
  background: transparent;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  overflow: visible;
}

/* Orange sparkle for testimonial cards */
.testimonial-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--sparkle-angle),
    transparent 0%, transparent 25%,
    rgba(200, 120, 30, 0.5) 35%,
    rgba(240, 160, 50, 0.95) 40%,
    rgba(200, 120, 30, 0.5) 45%,
    transparent 55%, transparent 100%
  );
  filter: blur(0.5px);
  animation: sparkle-rotate 15s linear infinite;
  z-index: 0;
  pointer-events: none;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.97);
  z-index: 0;
  pointer-events: none;
}

.testimonial-card > * { position: relative; z-index: 1; }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 0.5;
  color: var(--color-primary);
  opacity: 0.3;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-light);
  font-style: italic;
  flex: 1;
  max-width: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-cream-dark);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  display: block;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--color-text);
}

.testimonial-role {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

@media (max-width: 868px) {
  .testimonial-card { flex: 0 0 320px; padding: 1.5rem; }
  .arc-wrapper { height: 260px; margin-bottom: 1rem; }
  .testimonials-section { padding: 4rem 0; }
  .testimonials-header { margin-bottom: 2rem; }
  .card-marquee-track { gap: 1.25rem; }
}

@media (max-width: 480px) {
  .testimonial-card { flex: 0 0 290px; }
  .arc-wrapper { height: 180px; margin: -2rem calc(-1 * var(--container-padding)) 0.5rem; }
  .testimonials-section { padding: 3rem 0; }
  .card-marquee-track { animation-duration: 58.8s; }
}

/* ============================================
   CRAFTSMANSHIP
   ============================================ */

.craftsmanship-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  border-radius: var(--radius-lg);
}

.craftsmanship-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craftsmanship-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.72);
}

.craftsmanship-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 4rem var(--container-padding);
  margin-top: 4rem;
}

.craftsmanship-title {
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.craftsmanship-body {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.7;
}

.craftsmanship-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 868px) {
  .craftsmanship-section { min-height: auto; padding: 4rem 0; }
  .craftsmanship-content { padding: 3rem var(--container-padding); margin-top: 0; }
  .craftsmanship-features { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .sparkle-card { padding: 1.25rem 1rem; }
}

@media (max-width: 480px) {
  .craftsmanship-section { padding: 3rem 0; }
  .craftsmanship-content { padding: 2rem var(--container-padding); }
  .craftsmanship-body { font-size: 0.95rem; }
  .craftsmanship-features { grid-template-columns: 1fr; gap: 0.75rem; margin-top: 2rem; }
  .craftsmanship-features .sparkle-card { padding: 1.25rem; }
  .craftsmanship-features .sparkle-card-title { font-size: 1.1rem; }
  .craftsmanship-features .sparkle-card-desc { font-size: 0.9rem; }
}

/* ============================================
   PAINPOINTS
   ============================================ */

.painpoints-section {
  padding: 0;
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
}

.painpoints-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 6rem var(--container-padding);
  position: relative;
  z-index: 1;
}

.painpoints-content-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 50%;
}

.painpoints-header { text-align: left; margin-bottom: 0; }
.painpoints-header h2 { margin-bottom: 1rem; color: var(--color-text); }
.painpoints-header .section-subtitle { max-width: 580px; }

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

.painpoints-card { padding: 2rem; }

.painpoints-image-col {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  overflow: hidden;
}

.painpoints-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 868px) {
  .painpoints-container { padding: 4rem var(--container-padding); }
  .painpoints-content-col { max-width: 100%; }
  .painpoints-image-col { position: relative; width: 100%; top: auto; right: auto; bottom: auto; height: auto; }
  .painpoints-header { text-align: center; }
  .painpoints-header .section-subtitle { margin: 0 auto; }
  .painpoints-grid { grid-template-columns: 1fr 1fr; }
  .painpoints-image { min-height: 300px; max-height: 400px; }
}

@media (max-width: 480px) {
  .painpoints-container { padding: 3rem var(--container-padding); }
  .painpoints-grid { grid-template-columns: 1fr; }
  .painpoints-card { padding: 1.25rem; }
  .painpoints-card .sparkle-card-title { font-size: 1.1rem; }
  .painpoints-card .sparkle-card-desc { font-size: 0.85rem; }
  .painpoints-image { min-height: 220px; max-height: 300px; }
}

/* ============================================
   BENEFITS
   ============================================ */

.benefits-section {
  padding: 6rem 0;
  background: #f0e4d8;
}

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

.benefits-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.benefits-header h2 { margin-bottom: 1rem; }
.benefits-header .section-subtitle { max-width: 580px; margin: 0 auto; }

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

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  border: 1px solid transparent;
  overflow: hidden;
}

.benefit-card-image-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.benefit-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.benefit-card:hover .benefit-card-image { transform: scale(1.05); }

.benefit-card:hover {
  border-color: var(--color-sage-light);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(166, 47, 3, 0.18);
}

.benefit-card-title {
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--color-text);
  padding: 0 2rem;
}

.benefit-card-desc {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  flex: 1;
  padding: 0 2rem;
  max-width: none;
}

.benefit-card-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: color var(--transition-fast);
  padding: 0 2rem 2rem;
}

.benefit-card-link:hover { color: var(--color-primary-dark); }

@media (max-width: 868px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; max-width: 100%; margin: 0 auto; }
  .benefits-section { padding: 4rem 0; }
  .benefits-header { margin-bottom: 2.5rem; }
}

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

@media (max-width: 480px) {
  .benefits-section { padding: 3rem 0; }
  .benefit-card-image-wrap { height: 180px; }
  .benefit-card-title { font-size: 1.1rem; padding: 0 1.25rem; }
  .benefit-card-desc { font-size: 0.9rem; padding: 0 1.25rem; }
  .benefit-card-link { padding: 0 1.25rem 1.5rem; }
}

/* ============================================
   IMAGE BREAK (Parallax)
   ============================================ */

.image-break {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
}

.image-break-inner {
  position: absolute;
  top: -15%;
  left: 0;
  right: 0;
  bottom: -15%;
  background-size: cover;
  background-position: center 70%;
  background-repeat: no-repeat;
  will-change: transform;
}

@media (max-width: 768px) {
  .image-break { height: 280px; }
}

/* ============================================
   PROCESS
   ============================================ */

.process-section {
  padding: 6rem 0;
  background: var(--color-cream);
}

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

.process-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.process-header h2 { margin-bottom: 1rem; }
.process-header .section-subtitle { max-width: 580px; margin: 0 auto; }

.process-vine {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  overflow: visible;
}

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

.process-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.process-card-title {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.process-card-desc {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  max-width: none;
}

@media (max-width: 868px) {
  .process-section { padding: 4rem 0; }
  .process-header { margin-bottom: 2.5rem; }
  .process-columns { grid-template-columns: repeat(2, 1fr); }
  .process-vine { display: none; }
  .process-number::before {
    content: '';
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    margin-right: 0.5rem;
    vertical-align: middle;
  }
}

@media (max-width: 480px) {
  .process-section { padding: 3rem 0; }
  .process-container {
    position: relative;
  }
  .process-vine-wrap {
    display: block;
    position: absolute;
    inset: 0;
    overflow: visible;
    pointer-events: none;
    z-index: 0;
  }
  .process-vine {
    display: block;
    position: absolute;
    width: 100%;
    height: 72px;
    margin: 0;
    transform-origin: 0 0;
    opacity: 0.45;
  }
  .process-header,
  .process-columns { position: relative; z-index: 1; }
  .process-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .process-column {
    display: grid;
    grid-template-columns: 3.25rem minmax(0, 1fr);
    column-gap: 1rem;
    align-items: start;
    text-align: left;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .process-column:last-child { border-bottom: none; padding-bottom: 0; }
  .process-number {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 2.5rem;
    margin: 0.1rem auto 0;
    font-size: 1.1rem;
    text-align: center;
  }
  .process-number::before { display: none; }
  .process-card-title {
    grid-column: 2;
    font-size: 1.3rem;
    white-space: normal;
  }
  .process-card-desc {
    grid-column: 2;
    font-size: 0.9rem;
  }
}

/* ============================================
   ABOUT
   ============================================ */

.about-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #111;
  border-radius: var(--radius-lg);
}

.about-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.6);
}

.about-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 960px;
  padding: 4rem var(--container-padding) 6.25rem;
  margin-top: 2rem;
}

.about-title { color: var(--color-white); margin-bottom: 1.25rem; }

.about-body {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 868px) {
  .about-section { min-height: auto; padding: 4rem 0; }
  .about-content { padding: 3rem var(--container-padding); margin-top: 0; }
  .about-features { gap: 1rem; }
  .about-features .sparkle-card { padding: 1.25rem 1rem; }
}

@media (max-width: 480px) {
  .about-section { padding: 3rem 0; }
  .about-content { padding: 2rem var(--container-padding); }
  .about-body { font-size: 0.95rem; }
  .about-features { grid-template-columns: 1fr; gap: 0.75rem; margin-top: 2rem; }
  .about-features .sparkle-card { padding: 1.25rem; }
  .about-features .sparkle-card-title { font-size: 1.1rem; }
  .about-features .sparkle-card-desc { font-size: 0.9rem; }
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-banner {
  position: relative;
  padding: 8rem 0 2.8rem;
  background: var(--color-cream);
}

.contact-banner-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 0 var(--container-padding);
}

.contact-banner-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
}

.contact-banner-title {
  color: var(--color-text);
  line-height: 1.15;
}

.contact-banner-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-light);
  max-width: 560px;
}

.contact-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.75rem var(--container-padding) 5rem;
  background: var(--color-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(166, 47, 3, 0.08);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-info-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
}

.contact-info-value {
  font-size: 1.05rem;
  color: var(--color-text);
  transition: color var(--transition-fast);
}

a.contact-info-value:hover { color: var(--color-primary); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--color-white);
  border: 1px solid rgba(43, 43, 43, 0.12);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-text);
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(43, 43, 43, 0.35);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-primary);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232b2b2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.form-input.input-error,
.form-textarea.input-error {
  border-color: #c0392b;
  background: #fdf2f2;
}

.form-input.input-error:focus,
.form-textarea.input-error:focus {
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

.form-error {
  font-size: 0.78rem;
  color: #c0392b;
  font-weight: 500;
  min-height: 1em;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  align-self: flex-start;
}

.form-submit-btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(166, 47, 3, 0.4);
}

.form-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-send-error {
  font-size: 0.85rem;
  color: #e05252;
  margin-top: 0.75rem;
}

.form-success {
  text-align: center;
  padding: 3rem 2rem;
}

.form-success-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(166, 47, 3, 0.1);
  border-radius: 50%;
  color: var(--color-primary);
  margin: 0 auto 1.5rem;
}

.form-success-title {
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.form-success-text {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .contact-banner { padding: 3.5rem 0; }
  .contact-banner-subtitle { font-size: 0.95rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form-col { order: -1; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit-btn { width: 100%; justify-content: center; }
  .contact-container { padding: 1.25rem var(--container-padding) 3rem; }
  .contact-info { gap: 1.5rem; }
  .contact-info-icon { width: 42px; height: 42px; }
  .form-input, .form-textarea, .form-select { font-size: 16px; }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

.footer-tagline {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 300px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-social:hover { color: var(--color-primary-light); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-group-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-link-group ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link-group a,
.footer-link-group span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-link-group a:hover { color: var(--color-primary-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: none;
}

@media (max-width: 768px) {
  .footer { padding: 3rem 0 0; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-tagline { font-size: 0.88rem; }
  .footer-logo-img { height: 36px; }
}

@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom p { font-size: 0.78rem; }
}

/* ============================================
   MOBILE TOUCH TARGETS & POLISH
   ============================================ */

@media (max-width: 768px) {
  /* Ensure minimum 44px touch targets */
  .nav-mobile-toggle { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
  .hero-primary-btn, .hero-secondary-btn { min-height: 48px; }
  .benefit-card-link { min-height: 44px; display: inline-flex; align-items: center; }
  .form-submit-btn { min-height: 48px; }
  .nav-mobile-link { min-height: 44px; display: inline-flex; align-items: center; }
  .footer-link-group a { min-height: 44px; display: inline-flex; align-items: center; }

  /* Prevent horizontal overflow */
  .painpoints-section { overflow: hidden; }
  .benefits-section { overflow: hidden; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .scroll-reveal-delay-1,
  .scroll-reveal-delay-2,
  .scroll-reveal-delay-3,
  .scroll-reveal-delay-4 {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
