/* ==========================================================================
   BASE.CSS - Shared styles for Nova Scotia Permit website
   All design tokens, resets, typography, layout, components, and responsive
   rules shared across all pages.
   ========================================================================== */

/* ==========================================================================
   1. CSS VARIABLES (Design Tokens)
   ========================================================================== */

:root {
  /* Colors */
  --navy: #1e3a5f;
  --navy-light: #2f5a8a;
  --navy-deep: #142a4a;
  --gold: #d4922a;
  --gold-light: #e8b84a;
  --gold-glow: rgba(212, 146, 42, 0.3);
  --blue-accent: #4299e1;
  --teal-accent: #38b2ac;
  --charcoal: #2a3545;
  --gray: #718096;
  --gray-light: #a0aec0;
  --off-white: #f5f0ea;
  --white: #ffffff;
  --green: #38a169;
  --green-light: #c6f6d5;
  --red: #e53e3e;
  --red-light: #fed7d7;
  --warm-accent: #c4745a;
  --warm-accent-light: rgba(196, 116, 90, 0.12);
  --sage: #6b8f71;

  /* Typography */
  --font-main:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "DM Serif Display", Georgia, serif;

  /* Layout */
  --max-width: 1200px;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-glow:
    0 10px 40px rgba(212, 146, 42, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h2 {
  font-size: 2rem;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.3;
  color: var(--navy);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy);
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy);
}

p {
  margin-bottom: 1rem;
}

.text-gray {
  color: var(--gray);
}

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

.text-serif {
  font-family: var(--font-display);
}

/* ==========================================================================
   4. LAYOUT
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-4xl) 0;
}

.section-sm {
  padding: var(--space-3xl) 0;
}

/* Full-bleed section — breaks out of container */
.section-bleed {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: max(var(--space-lg), calc((100vw - var(--max-width)) / 2));
  padding-right: max(var(--space-lg), calc((100vw - var(--max-width)) / 2));
}

/* Wide container for gallery sections */
.container-wide {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Utility classes for repeated patterns */
.narrow-wrapper {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section--flush-bottom {
  padding-bottom: 0;
}

.section--flush-top {
  padding-top: 0;
}

/* Section background rhythm */
.section-warm {
  background: linear-gradient(135deg, var(--off-white) 0%, #fdf6ee 100%);
}

.section-muted {
  background: linear-gradient(180deg, #f0f4f8 0%, var(--off-white) 100%);
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(0);
}

/* Primary - Gold */
.btn-primary {
  background-color: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
}

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

/* Secondary - Navy outline */
.btn-secondary {
  background-color: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 12px 26px;
}

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

/* White */
.btn-white {
  background-color: var(--white);
  color: var(--navy);
  padding: 14px 28px;
}

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

/* Outline White */
.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 12px 26px;
}

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

/* Hero CTA — oversized for hero primary actions */
.btn-hero {
  background-color: var(--gold);
  color: var(--navy);
  padding: 18px 36px;
  font-size: 1.125rem;
  border-radius: var(--radius-lg);
}

.btn-hero:hover {
  background-color: var(--gold-light);
  box-shadow: 0 6px 16px rgba(212, 146, 42, 0.35);
}

/* Inline CTA — text-style with bottom border */
.btn-inline {
  background: none;
  color: var(--navy);
  padding: 4px 0;
  font-size: 0.9375rem;
  border-bottom: 2px solid var(--gold);
  border-radius: 0;
}

.btn-inline:hover {
  color: var(--gold);
  transform: none;
  box-shadow: none;
}

/* Ghost CTA — small, subtle, for tertiary actions */
.btn-ghost {
  background: none;
  color: var(--gray);
  padding: 8px 16px;
  font-size: 0.875rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
}

.btn-ghost:hover {
  color: var(--navy);
  border-color: var(--navy);
  transform: none;
  box-shadow: none;
}

/* Focus-visible for all buttons */
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--navy);
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 1000;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: var(--space-sm);
}

/* ==========================================================================
   6. HEADER
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background-color: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
}

/* Navigation */
.nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  white-space: nowrap;
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--warm-accent));
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--navy);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--navy);
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
}

.nav-phone {
  margin-left: var(--space-xs);
  padding-left: var(--space-lg);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--navy);
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.nav-phone-link:hover {
  background: var(--navy);
  color: var(--white);
}

.nav-phone-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  flex-shrink: 0;
}

.nav-phone-link .phone-number-text {
  display: none;
}

.nav-cta {
  margin-left: var(--space-sm);
}

.nav-cta .btn {
  font-size: 0.875rem;
  padding: 10px 20px;
  white-space: nowrap;
}

/* Services dropdown */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-trigger svg {
  width: 12px;
  height: 12px;
  vertical-align: -1px;
  margin-left: 2px;
  transition: transform 0.2s ease;
}

.nav-item-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm) 0;
  min-width: 220px;
  z-index: 1001;
  margin-top: 8px;
}

.nav-item-dropdown:hover .nav-dropdown {
  display: block;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.nav-dropdown a {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal);
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.nav-dropdown a:hover {
  background-color: var(--off-white);
  color: var(--navy);
}

/* ==========================================================================
   7. MOBILE MENU
   ========================================================================== */

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
}

.mobile-menu-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--navy);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-nav-link {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: var(--space-sm) 0;
}

.mobile-nav-cta {
  margin-top: var(--space-lg);
}

.mobile-nav-phone {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-phone a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  padding: var(--space-sm) 0;
  min-height: 44px;
}

.mobile-nav-phone a svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* ==========================================================================
   8. BREADCRUMBS
   ========================================================================== */

.breadcrumbs {
  padding: var(--space-md) 0;
  font-size: 0.875rem;
  color: var(--gray);
}

.breadcrumbs a {
  color: var(--gray);
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--navy);
}

.breadcrumbs span {
  margin: 0 var(--space-sm);
}

/* Breadcrumb aliases for alternate markup */
.breadcrumb {
  padding: var(--space-md) 0;
  font-size: 0.875rem;
  color: var(--gray);
}

.breadcrumb a {
  color: var(--gray);
  transition: color 0.2s ease;
}

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

.breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--gray);
}

.breadcrumb-item a {
  color: var(--gray);
  transition: color 0.2s ease;
}

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

/* ==========================================================================
   9. HERO
   ========================================================================== */

.hero {
  background-color: var(--navy);
  color: var(--white);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero-content {
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(212, 146, 42, 0.2);
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: var(--space-lg);
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #cbd5e0;
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
}

.hero-image {
  display: none;
}

.hero-image-frame {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  backdrop-filter: blur(10px);
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */

.footer {
  background-color: var(--charcoal);
  color: var(--white);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.footer-brand p {
  color: var(--gray-light);
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--gray-light);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-contact-link:hover {
  color: var(--white);
}

.footer-contact-link svg {
  flex-shrink: 0;
}

.footer-column h4 {
  color: var(--white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-link {
  color: var(--gray-light);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.footer-copyright {
  color: var(--gray-light);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  color: var(--gray-light);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

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

/* ==========================================================================
   11. TOOLTIPS
   ========================================================================== */

.tooltip-term {
  position: relative;
  border-bottom: 1px dotted var(--gray);
  cursor: help;
}

.tooltip-term::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--navy);
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  width: max-content;
  max-width: 250px;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  z-index: 100;
  pointer-events: none;
}

.tooltip-term::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--navy);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  z-index: 100;
}

.tooltip-term:hover::after,
.tooltip-term:hover::before,
.tooltip-term:focus::after,
.tooltip-term:focus::before {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   12. ANIMATIONS
   ========================================================================== */

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

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}
.reveal-delay-6 {
  transition-delay: 0.6s;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   13. RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* --- Mobile (up to 639px) --- */
@media (max-width: 639px) {
  h1 {
    font-size: 1.875rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  h4 {
    font-size: 1.125rem;
  }

  /* Phase 4.1: Reduce section padding for tighter mobile experience */
  .section {
    padding: var(--space-xl) 0;
  }

  .section-sm {
    padding: var(--space-lg) 0;
  }

  .container,
  .container-narrow {
    padding: 0 var(--space-md);
  }

  .hero {
    padding: var(--space-2xl) 0;
  }

  .page-hero {
    padding: var(--space-xl) 0;
  }

  /* Phase 5.1: Hero subtitle improvements */
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.8;
  }

  /* Phase 4.3: Reduce hero CTA spacing */
  .hero-ctas .btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  .hero-ctas {
    gap: var(--space-sm);
  }

  /* Show 3D model on mobile with spacing */
  .hero-image {
    display: block;
    margin-top: var(--space-lg);
  }

  .footer {
    padding: var(--space-xl) 0 var(--space-md);
  }

  .footer-grid {
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
  }

  /* Phase 2.1: Mobile menu items - increase touch target to 44px minimum */
  .mobile-nav-link {
    padding: 12px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Phase 2.2: Footer contact links - increase touch target */
  .footer-contact-link {
    padding: 8px 0;
    min-height: 44px;
  }

  /* Phase 1.1: Hide SVG diagrams on mobile (text alternatives shown via cards) */
  .lanes-diagram {
    display: none;
  }

  /* Phase 5.2: Badge contrast improvement - slightly higher opacity */
  .hero-badge {
    background-color: rgba(212, 146, 42, 0.25);
  }

  /* Mobile press feedback */
  .btn:active {
    transform: scale(0.97) !important;
  }
}

/* --- Small screens and up (640px) --- */
@media (min-width: 640px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-ctas {
    flex-direction: row;
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* --- Medium screens and up (768px) --- */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* --- Large screens and up (1024px) --- */
@media (min-width: 1024px) {
  h1 {
    font-size: 4rem;
  }

  .hero {
    padding: var(--space-4xl) 0 calc(var(--space-4xl) + 32px);
  }

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

  .hero-image {
    display: block;
    position: relative;
  }

  .hero-ctas {
    flex-direction: row;
  }

  .hero-subtitle {
    font-size: 1.375rem;
  }
}

/* --- Desktop nav (1280px) — enough room for all nav items --- */
@media (min-width: 1280px) {
  .nav {
    display: block;
  }

  .mobile-menu-btn {
    display: none;
  }
}

/* ==========================================================================
   14. STICKY HEADER CTA
   ========================================================================== */

/* Sticky header CTA - only show after scrolling past hero */
.header .nav-cta .btn {
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
