@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,500&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ===================== TOKENS ===================== */
:root {
  /* Color: named per the brief's design plan */
  --walnut-950: #1B140F;
  --walnut-800: #2E2118;
  --walnut-700: #3E2C1F;
  --sawdust-50: #F7F1E6;
  --sawdust-100: #EFE5D2;
  --oak-200: #E4D3B8;
  --brass-300: #D9AD6C;
  --brass-500: #B8863B;
  --brass-600: #9C702E;
  --char-900: #14100D;
  --rust-600: #8B4A2B;

  --text-on-dark: var(--sawdust-100);
  --text-on-dark-muted: #C9B79C;
  --text-on-light: var(--char-900);
  --text-on-light-muted: #5C4E3E;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Spacing scale (8pt rhythm, generous for marketing page) */
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  --container: 1180px;
  --radius-sm: 4px;
  --radius-md: 10px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 180ms;
  --dur-med: 300ms;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body, h1, h2, h3, p, dl, dd, figure, blockquote { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; padding: 0; }

body {
  font-family: var(--font-body);
  background: var(--sawdust-50);
  color: var(--text-on-light);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

:focus-visible {
  outline: 2.5px solid var(--brass-500);
  outline-offset: 3px;
  border-radius: 2px;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brass-500);
  color: var(--char-900);
  padding: var(--space-xs) var(--space-sm);
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { left: var(--space-sm); top: var(--space-sm); }

/* ===================== TYPE ===================== */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-300);
  margin-bottom: var(--space-sm);
}
.eyebrow--dark { color: var(--brass-600); }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 1.5rem + 1.6vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 20ch;
  margin-bottom: var(--space-sm);
}
.section-title--on-dark { color: var(--sawdust-50); }

.section-lede {
  font-size: 1.0625rem;
  max-width: 52ch;
  color: var(--text-on-light-muted);
  margin-bottom: var(--space-xl);
}
.section-lede--on-dark { color: var(--text-on-dark-muted); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn--brass {
  background: var(--brass-500);
  color: var(--char-900);
  box-shadow: 0 1px 0 rgba(0,0,0,0.15);
}
.btn--brass:hover {
  background: var(--brass-300);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(184, 134, 59, 0.55);
}
.btn--brass:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--sawdust-50);
  border: 1.5px solid rgba(247, 241, 230, 0.35);
}
.btn--ghost:hover {
  border-color: var(--brass-300);
  color: var(--brass-300);
  transform: translateY(-2px);
}

.btn--small { min-height: 40px; padding: 0.55rem 1.25rem; font-size: 0.875rem; }
.btn--wide { width: 100%; }

/* ===================== HEADER / NAV ===================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), padding var(--dur-med) var(--ease-out);
  padding: var(--space-md) 0;
}
.site-header.is-scrolled {
  background: rgba(27, 20, 15, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(184, 134, 59, 0.25);
  padding: var(--space-sm) 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--sawdust-50);
  margin-right: auto;
}
.wordmark span { color: var(--brass-300); }

.primary-nav {
  display: none;
  gap: var(--space-lg);
}
.primary-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--dur-fast) var(--ease-out);
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--brass-300);
  transition: width var(--dur-med) var(--ease-out);
}
.primary-nav a:hover { color: var(--sawdust-50); }
.primary-nav a:hover::after { width: 100%; }

.header-cta { display: none; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--sawdust-50);
  margin: 0 auto;
  transition: transform var(--dur-med) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-height: 0;
  overflow: hidden;
  padding: 0 var(--space-md);
  background: var(--walnut-950);
  transition: max-height var(--dur-med) var(--ease-out), padding var(--dur-med) var(--ease-out);
}
.mobile-nav.is-open { max-height: 420px; padding: var(--space-md); }
.mobile-nav a {
  color: var(--sawdust-100);
  font-weight: 500;
  font-size: 1.05rem;
  padding: var(--space-2xs) 0;
}

@media (min-width: 900px) {
  .primary-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none; }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse 120% 80% at 50% -10%, var(--walnut-700), var(--walnut-950) 60%);
  color: var(--sawdust-50);
  overflow: hidden;
  padding-top: 80px;
}

.hero__rings {
  position: absolute;
  top: 50%; left: 50%;
  width: min(150vw, 1400px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  opacity: 0.35;
  animation: rings-rotate 120s linear infinite;
  pointer-events: none;
}
.hero__rings svg { width: 100%; height: 100%; }
.hero__rings circle {
  fill: none;
  stroke: var(--brass-500);
  stroke-width: 0.6;
  opacity: 0.5;
}
@keyframes rings-rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__rings { animation: none; }
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-3xl);
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem, 2rem + 4.5vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin-bottom: var(--space-md);
}

.hero__sub {
  font-size: 1.1875rem;
  color: var(--text-on-dark-muted);
  max-width: 46ch;
  margin-bottom: var(--space-lg);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero__scroll-cue {
  position: absolute;
  bottom: var(--space-xl);
  left: var(--space-md);
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(247,241,230,0.35);
  border-radius: 14px;
  z-index: 1;
}
.hero__scroll-cue span {
  position: absolute;
  top: 7px; left: 50%;
  width: 4px; height: 4px;
  margin-left: -2px;
  background: var(--brass-300);
  border-radius: 50%;
  animation: scroll-cue 1.8s ease-in-out infinite;
}
@keyframes scroll-cue {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; transform: translateY(14px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-cue span { animation: none; }
}
@media (max-width: 640px) {
  .hero__scroll-cue { display: none; }
}

/* ===================== DOVETAIL DIVIDER (signature) ===================== */
.joint {
  position: relative;
  line-height: 0;
  z-index: 2;
}
.joint svg { display: block; width: 100%; height: 28px; }
.joint--to-light { color: var(--sawdust-50); margin-top: -1px; }
.joint--to-dark { color: var(--walnut-950); margin-top: -1px; }

/* ===================== SECTIONS ===================== */
section[id] { scroll-margin-top: 84px; }
.section { padding: var(--space-2xl) 0; }
.section--light { background: var(--sawdust-50); color: var(--text-on-light); }
.section--dark { background: var(--walnut-950); color: var(--text-on-dark); }

/* ===================== SERVICES ===================== */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 640px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--sawdust-100);
  border: 1px solid rgba(139, 74, 43, 0.12);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -16px rgba(27, 20, 15, 0.25);
  border-color: var(--brass-500);
}
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sawdust-50);
  color: var(--brass-600);
  margin-bottom: var(--space-md);
  transition: background-color var(--dur-med) var(--ease-out), color var(--dur-med) var(--ease-out);
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card:hover .service-card__icon {
  background: var(--brass-500);
  color: var(--char-900);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-2xs);
}
.service-card p {
  color: var(--text-on-light-muted);
  font-size: 0.9375rem;
}

/* ===================== GALLERY ===================== */
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 640px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item--wide { grid-column: span 2; }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
  isolation: isolate;
  cursor: pointer;
}
.gallery-item--wide { aspect-ratio: 8 / 5; }

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  transition: transform var(--dur-med) var(--ease-out);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(20,16,13,0.85) 0%, rgba(20,16,13,0.15) 55%, transparent 80%);
}
.gallery-item:hover::before { transform: scale(1.06); }

.gallery-item[data-tone="walnut"]::before {
  background:
    repeating-linear-gradient(100deg, rgba(0,0,0,0.08) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, #6B4226, #3E2716 70%);
}
.gallery-item[data-tone="oak"]::before {
  background:
    repeating-linear-gradient(95deg, rgba(0,0,0,0.06) 0 2px, transparent 2px 16px),
    linear-gradient(160deg, #C79A5E, #8A6335 70%);
}
.gallery-item[data-tone="cedar"]::before {
  background:
    repeating-linear-gradient(105deg, rgba(0,0,0,0.07) 0 2px, transparent 2px 12px),
    linear-gradient(160deg, #A85C36, #6E3A20 70%);
}
.gallery-item[data-tone="pine"]::before {
  background:
    repeating-linear-gradient(98deg, rgba(0,0,0,0.05) 0 2px, transparent 2px 18px),
    linear-gradient(160deg, #D8B98A, #A9834F 70%);
}

.gallery-item__tag {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(20, 16, 13, 0.55);
  color: var(--brass-300);
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.gallery-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  position: relative;
}

/* ===================== ABOUT ===================== */
.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
.about__copy p {
  color: var(--text-on-light-muted);
  margin-bottom: var(--space-sm);
  max-width: 58ch;
}
.about__copy .section-title { margin-bottom: var(--space-md); }

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  border-top: 1px solid rgba(139, 74, 43, 0.2);
  padding-top: var(--space-lg);
}
.stat dt {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-light-muted);
  margin-bottom: var(--space-2xs);
}
.stat dd {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.6rem + 1.5vw, 2.75rem);
  font-weight: 700;
  color: var(--rust-600);
}
.stat dd span { color: var(--brass-500); }

@media (min-width: 900px) {
  .about__inner { grid-template-columns: 1.3fr 1fr; align-items: center; }
  .about__stats { grid-template-columns: 1fr; border-top: none; border-left: 1px solid rgba(139, 74, 43, 0.2); padding-top: 0; padding-left: var(--space-xl); }
}

/* ===================== TESTIMONIALS ===================== */
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 800px) {
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  position: relative;
  background: var(--sawdust-100);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md) var(--space-md);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.testimonial-card:hover {
  transform: translateY(-4px) rotate(-0.4deg);
  box-shadow: 0 16px 32px -16px rgba(27, 20, 15, 0.25);
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sawdust-50);
  box-shadow: inset 0 0 0 1.5px rgba(139, 74, 43, 0.35);
}
.testimonial-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--text-on-light);
  margin-bottom: var(--space-md);
}
.testimonial-card footer {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--brass-600);
  font-weight: 600;
}
.testimonial-card footer span {
  display: block;
  color: var(--text-on-light-muted);
  font-weight: 400;
  margin-top: 2px;
}

/* ===================== CONTACT ===================== */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}
@media (min-width: 900px) {
  .contact__inner { grid-template-columns: 1.2fr 0.8fr; }
}

.quote-form {
  margin-top: var(--space-lg);
  background: var(--walnut-800);
  border: 1px dashed rgba(217, 173, 108, 0.35);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-row { display: flex; flex-direction: column; gap: var(--space-2xs); }
.form-row--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 520px) {
  .form-row--split { grid-template-columns: 1fr 1fr; }
}
.form-row--split > div { display: flex; flex-direction: column; gap: var(--space-2xs); }

label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
}
label span { color: var(--brass-300); }

input, textarea {
  font: inherit;
  font-size: 1rem;
  background: rgba(247, 241, 230, 0.06);
  border: 1.5px solid rgba(247, 241, 230, 0.18);
  border-radius: var(--radius-sm);
  color: var(--sawdust-50);
  padding: 0.75rem 0.9rem;
  min-height: 48px;
  transition: border-color var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out);
}
textarea { min-height: auto; resize: vertical; }
input::placeholder, textarea::placeholder { color: var(--text-on-dark-muted); }
input:hover, textarea:hover { border-color: rgba(217, 173, 108, 0.4); }
input:focus, textarea:focus {
  outline: none;
  border-color: var(--brass-300);
  background: rgba(247, 241, 230, 0.1);
}
input[aria-invalid="true"], textarea[aria-invalid="true"] {
  border-color: #C1543C;
}

.form-error {
  font-size: 0.8125rem;
  color: #E08A73;
  min-height: 1em;
}

.form-status {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--brass-300);
  min-height: 1.2em;
}

.contact__info h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--sawdust-50);
  margin-bottom: var(--space-md);
}
.contact__info h3:not(:first-child) { margin-top: var(--space-xl); }

.info-list { display: flex; flex-direction: column; gap: var(--space-md); }
.info-list li { color: var(--text-on-dark-muted); font-size: 0.9375rem; line-height: 1.5; }
.info-list__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-500);
  margin-bottom: 0.25rem;
}
.info-list a { transition: color var(--dur-fast) var(--ease-out); }
.info-list a:hover { color: var(--brass-300); }

.hours-list { display: flex; flex-direction: column; gap: var(--space-2xs); font-size: 0.9375rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: var(--space-2xs) 0;
  border-bottom: 1px solid rgba(247, 241, 230, 0.08);
  color: var(--text-on-dark-muted);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
}
.hours-list li span:first-child { color: var(--sawdust-100); font-weight: 500; }

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--char-900);
  color: var(--text-on-dark-muted);
  padding: var(--space-xl) 0 var(--space-lg);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
.footer-brand p { margin-top: var(--space-2xs); font-size: 0.9375rem; max-width: 32ch; }
.footer-nav { display: flex; flex-wrap: wrap; gap: var(--space-md); }
.footer-nav a { font-size: 0.9375rem; transition: color var(--dur-fast) var(--ease-out); }
.footer-nav a:hover { color: var(--brass-300); }

.footer-social { display: flex; gap: var(--space-sm); }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(247, 241, 230, 0.18);
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { border-color: var(--brass-300); color: var(--brass-300); transform: translateY(-2px); }

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: #6B5D4C;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(247, 241, 230, 0.08);
  margin-top: var(--space-md);
  grid-column: 1 / -1;
}

@media (min-width: 900px) {
  .footer-inner {
    grid-template-columns: 1.4fr 1fr auto;
    align-items: start;
  }
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
