:root {
  --red: #c81e32;
  --red-dark: #951426;
  --brown: #a07850;
  --sand: #e3d4c6;
  --sage: #adb8a9;
  --cream: #f7f2ec;
  --paper: #fffdf9;
  --ink: #181515;
  --muted: #6f6862;
  --line: rgba(24, 21, 21, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Trebuchet MS", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--sans); font-size: 1rem; line-height: 1.6; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; left: 1rem; top: -5rem; background: var(--ink); color: white; padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-header { position: fixed; z-index: 30; inset: 0 0 auto; height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 0 clamp(1.25rem, 4vw, 4.5rem); transition: background .25s ease, box-shadow .25s ease, height .25s ease; }
.site-header.scrolled { height: 70px; background: rgba(247, 242, 236, .94); box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(12px); }
.brand { display: inline-flex; align-items: center; width: 138px; text-decoration: none; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: clamp(1.15rem, 2.4vw, 2.3rem); font-size: .86rem; font-weight: 700; }
.main-nav a { position: relative; text-decoration: none; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -.35rem; width: 100%; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.main-nav > a:hover::after, .main-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: .7rem 1.1rem; border: 1px solid var(--ink); transition: color .2s, background .2s; }
.nav-cta:hover, .nav-cta:focus-visible { color: white; background: var(--ink); }
.menu-button { display: none; width: 46px; height: 46px; border: 0; background: transparent; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-button span:not(.sr-only) { width: 24px; height: 2px; background: var(--ink); transition: transform .2s, opacity .2s; }

.hero { position: relative; min-height: 760px; display: grid; grid-template-columns: minmax(0, .95fr) minmax(340px, .75fr); align-items: center; gap: clamp(2rem, 5vw, 6.5rem); overflow: hidden; padding: 9rem clamp(1.25rem, 7vw, 8rem) 5.2rem; }
.hero-word { position: absolute; left: -.8vw; bottom: -3.8vw; z-index: -1; color: rgba(200, 30, 50, .055); font-family: var(--serif); font-size: clamp(6rem, 17vw, 18rem); font-weight: 800; line-height: .8; letter-spacing: -.08em; white-space: nowrap; }
.hero-copy { max-width: 760px; }
.eyebrow { margin: 0 0 1.2rem; color: var(--red); font-size: .77rem; font-weight: 900; letter-spacing: .19em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 780px; margin-bottom: 1.75rem; font-family: var(--serif); font-size: clamp(3.3rem, 6.2vw, 6.7rem); font-weight: 800; letter-spacing: -.067em; line-height: .91; }
h1 em { color: var(--red); font-style: normal; }
.hero-name { display: block; margin-bottom: .85rem; font-family: var(--sans); font-size: 1.15rem; font-weight: 900; line-height: 1.3; letter-spacing: .04em; }
.hero-lead { max-width: 650px; margin-bottom: 2.2rem; color: #554e49; font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.2rem; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: .65rem; padding: .75rem 1.25rem; border: 1px solid transparent; font-size: .85rem; font-weight: 900; letter-spacing: .02em; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--red); color: white; box-shadow: 0 12px 30px rgba(200, 30, 50, .2); }
.button-primary:hover, .button-primary:focus-visible { background: var(--red-dark); box-shadow: 0 16px 36px rgba(149, 20, 38, .26); }
.button-link { padding-inline: .15rem; color: var(--ink); }
.button-link span { color: var(--red); font-size: 1.2rem; }
.hero-visual { position: relative; width: min(100%, 610px); justify-self: end; }
.portrait-frame { position: relative; overflow: hidden; aspect-ratio: .78; border-radius: 17rem 17rem 1rem 1rem; background: var(--sand); box-shadow: 0 35px 80px rgba(71, 48, 35, .16); }
.portrait-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.4); pointer-events: none; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; transform: scale(1.18); }
.hero-stamp-float { position: absolute; left: -2.1rem; bottom: 2.6rem; width: 146px; height: 146px; animation: hero-stamp-float 4.2s ease-in-out infinite; }
.hero-stamp { display: flex; width: 100%; height: 100%; align-items: center; justify-content: center; flex-direction: column; border-radius: 50%; background: var(--red); color: white; text-align: center; transform: rotate(-8deg); transform-origin: center; box-shadow: 0 12px 25px rgba(149, 20, 38, .28); transition: transform .32s cubic-bezier(.2,.75,.25,1), box-shadow .32s ease; }
.hero-stamp span { font-family: var(--serif); font-size: 1.55rem; font-weight: 800; letter-spacing: -.05em; }
.hero-stamp small { margin-top: .25rem; font-size: .58rem; font-style: italic; font-weight: 800; }
.hero-location { position: absolute; right: -1.4rem; top: 5rem; padding: .7rem .85rem; background: var(--ink); color: white; font-size: .66rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; writing-mode: vertical-rl; }

@keyframes hero-stamp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (hover: hover) and (pointer: fine) {
  .hero-stamp-float:hover { animation-play-state: paused; }
  .hero-stamp-float:hover .hero-stamp { transform: rotate(-3deg) scale(1.055); box-shadow: 0 20px 38px rgba(149, 20, 38, .36); }
}

.hero-stamp-float:active .hero-stamp { transform: rotate(-6deg) scale(.97); }

.impact-strip { display: grid; grid-template-columns: 1.15fr repeat(3, 1fr); background: var(--paper); border-block: 1px solid var(--line); }
.impact-strip > * { min-height: 155px; display: flex; justify-content: center; flex-direction: column; padding: 1.6rem clamp(1.25rem, 3vw, 3rem); border-right: 1px solid var(--line); }
.impact-strip > *:last-child { border-right: 0; }
.impact-intro { background: var(--ink); color: white; }
.impact-intro p { max-width: 230px; margin: .8rem 0 0; font-family: var(--serif); font-size: 1.2rem; font-weight: 700; line-height: 1.25; }
.impact-line { width: 42px; height: 4px; background: var(--red); }
.impact-strip article strong { color: var(--red); font-family: var(--serif); font-size: clamp(2.7rem, 4vw, 4rem); line-height: 1; letter-spacing: -.06em; }
.impact-strip article span { max-width: 220px; margin-top: .6rem; color: var(--muted); font-size: .79rem; font-weight: 700; line-height: 1.4; }

.section { padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 7vw, 8rem); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: clamp(2rem, 7vw, 8rem); align-items: end; margin-bottom: clamp(3rem, 6vw, 5.5rem); }
.section-heading h2, .profile-copy h2, .vision-heading h2, .closing h2 { margin-bottom: 0; font-family: var(--serif); font-size: clamp(2.55rem, 5vw, 5.4rem); letter-spacing: -.06em; line-height: .98; }
.section-heading > p { margin: 0 0 .5rem; color: var(--muted); font-size: 1.03rem; }
.management { background: var(--paper); }
.management-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.management-card { position: relative; min-height: 340px; padding: clamp(1.8rem, 3.7vw, 3.6rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s ease, transform .25s ease; }
.management-card:hover { z-index: 1; background: var(--cream); transform: translateY(-3px); }
.management-feature { background: var(--red); color: white; }
.management-feature:hover { background: var(--red-dark); }
.card-index { position: absolute; right: 1.6rem; top: 1.2rem; color: rgba(24,21,21,.13); font-family: var(--serif); font-size: 4rem; font-weight: 800; line-height: 1; }
.management-feature .card-index { color: rgba(255,255,255,.18); }
.status { display: inline-flex; margin-bottom: 2rem; padding: .32rem .65rem; border: 1px solid currentColor; border-radius: 10rem; font-size: .62rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.status-done { color: #5c7760; }
.management-feature .status-done { color: white; }
.status-progress { color: var(--brown); }
.management-card h3 { max-width: 470px; margin-bottom: 1rem; font-family: var(--serif); font-size: clamp(1.7rem, 2.6vw, 2.65rem); letter-spacing: -.04em; line-height: 1.08; }
.management-card p { max-width: 540px; color: var(--muted); }
.management-feature p { color: rgba(255,255,255,.8); }
.management-card > a { display: inline-flex; gap: .5rem; align-items: center; margin-top: 1rem; font-size: .78rem; font-weight: 900; text-underline-offset: .35rem; }
.management-note { max-width: 820px; margin: 2rem 0 0 auto; color: var(--muted); font-size: .76rem; text-align: right; }
.management-gallery { display: grid; grid-template-columns: 1.22fr .78fr; grid-template-rows: repeat(2, minmax(240px, 1fr)); gap: 1rem; margin-top: clamp(3.5rem, 7vw, 7rem); }
.management-gallery figure { position: relative; min-height: 290px; margin: 0; overflow: hidden; background: var(--sand); }
.management-gallery .gallery-main { grid-row: 1 / 3; min-height: 650px; }
.management-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.management-gallery figure:hover img { transform: scale(1.025); }
.management-gallery figcaption { position: absolute; inset: auto 1rem 1rem; max-width: calc(100% - 2rem); padding: .8rem 1rem; background: rgba(24,21,21,.88); color: rgba(255,255,255,.82); font-size: .76rem; backdrop-filter: blur(8px); }
.management-gallery figcaption span { display: block; color: white; font-family: var(--serif); font-size: 1.15rem; font-weight: 800; }

.method-section { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr); }
.method-quote { position: relative; min-height: 640px; display: flex; justify-content: flex-end; flex-direction: column; padding: clamp(4rem, 8vw, 8rem); overflow: hidden; background: var(--sand); }
.method-quote::after { content: ""; position: absolute; width: 440px; height: 440px; right: -220px; top: -220px; border: 1px solid rgba(160,120,80,.5); border-radius: 50%; box-shadow: 0 0 0 55px rgba(160,120,80,.08), 0 0 0 110px rgba(160,120,80,.05); }
.quote-mark { position: absolute; left: clamp(2rem, 7vw, 7rem); top: clamp(2rem, 5vw, 4rem); color: var(--red); font-family: var(--serif); font-size: 10rem; line-height: 1; }
.method-quote blockquote { max-width: 760px; margin: 0 0 2rem; font-family: var(--serif); font-size: clamp(2.7rem, 5vw, 5.4rem); font-weight: 800; letter-spacing: -.06em; line-height: .98; }
.method-quote > p { max-width: 620px; margin-bottom: 0; color: #61594f; font-size: 1.05rem; }
.method-steps { padding: clamp(4rem, 7vw, 7rem) clamp(2rem, 6vw, 6rem); background: var(--sage); }
.method-steps .eyebrow { color: #253328; }
.method-steps ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(24,21,21,.22); }
.method-steps li { display: grid; grid-template-columns: 48px minmax(0, .72fr) minmax(130px, 1fr); gap: 1rem; align-items: baseline; padding: 1.55rem 0; border-bottom: 1px solid rgba(24,21,21,.22); }
.method-steps li > span { color: rgba(24,21,21,.48); font-family: var(--serif); font-size: .75rem; }
.method-steps strong { font-family: var(--serif); font-size: 1.4rem; }
.method-steps small { font-size: .76rem; line-height: 1.45; }

.vision-section { position: relative; overflow: hidden; padding: clamp(5.5rem, 10vw, 10rem) clamp(1.25rem, 7vw, 8rem); background: var(--red); color: white; }
.vision-orbit { position: absolute; width: min(53vw, 760px); aspect-ratio: 1; top: -48%; right: -11%; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.03), 0 0 0 160px rgba(255,255,255,.025); }
.eyebrow-light { color: rgba(255,255,255,.72); }
.vision-heading { position: relative; z-index: 1; max-width: 1000px; }
.vision-heading h2 { max-width: 950px; }
.vision-heading > p:last-child { max-width: 720px; margin: 2rem 0 0; color: rgba(255,255,255,.8); font-size: 1.05rem; }
.vision-pillars { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; margin-top: clamp(4rem, 7vw, 7rem); background: rgba(255,255,255,.25); }
.vision-pillars article { min-height: 285px; padding: 2rem; background: var(--red); }
.vision-pillars span { display: block; margin-bottom: 3.4rem; color: rgba(255,255,255,.5); font-family: var(--serif); font-size: .75rem; }
.vision-pillars h3 { margin-bottom: 1rem; font-family: var(--serif); font-size: 1.45rem; line-height: 1.1; }
.vision-pillars p { margin-bottom: 0; color: rgba(255,255,255,.7); font-size: .83rem; }

.profile { display: grid; grid-template-columns: minmax(310px, .85fr) minmax(0, 1.15fr); gap: clamp(3rem, 8vw, 9rem); align-items: center; background: var(--cream); }
.profile-photo { position: relative; align-self: stretch; min-height: 700px; }
.profile-photo::before { content: ""; position: absolute; inset: 1.2rem -1.2rem -1.2rem 1.2rem; border: 1px solid var(--red); }
.profile-photo img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; filter: saturate(.88); }
.profile-photo > span { position: absolute; z-index: 2; right: -1.4rem; bottom: 2.4rem; padding: .6rem .85rem; background: var(--red); color: white; font-family: var(--serif); font-size: 1.4rem; font-weight: 800; }
.profile-copy h2 { max-width: 740px; }
.profile-lead { max-width: 650px; margin: 1.7rem 0 2.5rem; color: var(--muted); font-size: 1.08rem; }
.timeline { border-top: 1px solid var(--line); }
.timeline article { display: grid; grid-template-columns: 104px 1fr; gap: 1.5rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.timeline article > span { color: var(--red); font-family: var(--serif); font-size: .85rem; font-weight: 800; }
.timeline h3 { margin: 0 0 .25rem; font-family: var(--serif); font-size: 1.2rem; }
.timeline p { margin: 0; color: var(--muted); font-size: .82rem; }

.news { background: var(--paper); }
.section-heading.compact { align-items: center; }
.section-heading.compact h2 { max-width: 840px; }
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.news-card { position: relative; min-height: 340px; display: flex; flex-direction: column; padding: clamp(1.7rem, 3vw, 2.8rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; transition: background .25s, color .25s; }
.news-card:hover, .news-card:focus-visible { background: var(--ink); color: white; }
.news-date { margin-bottom: 4.5rem; color: var(--red); font-size: .65rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.news-card h3 { max-width: 380px; margin-bottom: auto; font-family: var(--serif); font-size: clamp(1.6rem, 2.6vw, 2.35rem); letter-spacing: -.04em; line-height: 1.08; }
.news-card p { margin: 1.4rem 0 0; color: var(--muted); font-size: .78rem; font-weight: 800; }
.news-card:hover p, .news-card:focus-visible p { color: rgba(255,255,255,.62); }
.news-arrow { position: absolute; right: 1.5rem; bottom: 1.3rem; color: var(--red); font-size: 1.5rem; }

.closing { display: flex; align-items: end; justify-content: space-between; gap: 3rem; padding: clamp(5rem, 9vw, 8rem) clamp(1.25rem, 7vw, 8rem); background: var(--red); color: white; }
.closing-copy { max-width: 950px; }
.closing h2 { font-size: clamp(3rem, 6.5vw, 7rem); }
.closing-copy > p:last-child { margin: 1.6rem 0 0; color: rgba(255,255,255,.75); }
.closing-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button-white { background: white; color: var(--red); }
.button-outline-light { border-color: rgba(255,255,255,.65); color: white; }
.button-outline-light:hover { background: white; color: var(--red); }

footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; padding: 2rem clamp(1.25rem, 7vw, 8rem); background: var(--ink); color: white; }
.brand-footer { width: 145px; }
footer p { margin: 0; color: rgba(255,255,255,.6); font-size: .72rem; }
.footer-note { justify-self: end; }

.js .reveal { transition: opacity .65s ease, transform .65s ease; }
.js .reveal.reveal-pending { opacity: 0; transform: translateY(22px); }
.js .reveal.reveal-pending[data-delay="1"] { transition-delay: .1s; }
.js .reveal.reveal-pending[data-delay="2"] { transition-delay: .18s; }
.js .reveal.reveal-pending[data-delay="3"] { transition-delay: .26s; }

@media (max-width: 1080px) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(330px, .78fr); gap: 3rem; padding-inline: 3.5rem; }
  .impact-strip { grid-template-columns: repeat(3, 1fr); }
  .impact-intro { grid-column: 1 / -1; min-height: 90px; flex-direction: row; align-items: center; gap: 1rem; }
  .impact-intro p { max-width: none; margin: 0; }
  .vision-pillars { grid-template-columns: repeat(2, 1fr); }
  .method-section { grid-template-columns: 1fr; }
  .method-quote { min-height: 560px; }
  .profile { gap: 4rem; }
  .profile-photo { min-height: 620px; }
  .closing { align-items: flex-start; flex-direction: column; }
  footer { grid-template-columns: 1fr 1fr; }
  footer > p:nth-child(2) { justify-self: end; }
  .footer-note { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 4.5rem; }
  .site-header { height: 70px; padding-inline: 1.25rem; }
  .menu-button { position: relative; z-index: 32; display: flex; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; z-index: 31; inset: 0; display: flex; align-items: flex-start; justify-content: center; flex-direction: column; gap: 1.2rem; padding: 7rem 2rem 3rem; background: var(--cream); font-family: var(--serif); font-size: 2rem; transform: translateX(100%); transition: transform .3s ease; }
  .main-nav.open { transform: translateX(0); }
  .nav-cta { margin-top: 1rem; font-family: var(--sans); font-size: .85rem; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 3rem; padding: 8.5rem 1.25rem 4rem; }
  h1 { font-size: clamp(3.3rem, 14vw, 5.4rem); }
  .hero-copy { position: relative; z-index: 2; }
  .hero-visual { width: min(90%, 550px); justify-self: center; }
  .portrait-frame { aspect-ratio: .88; border-radius: 14rem 14rem .6rem .6rem; }
  .hero-stamp-float { left: -1rem; bottom: 1.5rem; width: 120px; height: 120px; animation-duration: 4.8s; }
  .hero-location { right: -1rem; }
  .impact-strip { grid-template-columns: 1fr; }
  .impact-intro { grid-column: auto; }
  .impact-strip > * { min-height: 125px; border-right: 0; border-bottom: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 1.4rem; }
  .management-grid, .news-grid { grid-template-columns: 1fr; }
  .management-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .management-gallery .gallery-main { grid-row: auto; min-height: 480px; }
  .management-card { min-height: 300px; }
  .management-note { text-align: left; }
  .profile { grid-template-columns: 1fr; }
  .profile-photo { min-height: 620px; }
  .vision-pillars { grid-template-columns: 1fr; }
  .vision-pillars article { min-height: 220px; }
  .news-card { min-height: 300px; }
}

@media (max-width: 520px) {
  .brand { width: 120px; }
  .hero { padding-top: 7rem; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-actions .button-link { justify-content: flex-start; width: auto; }
  .hero-visual { width: 95%; }
  .hero-stamp-float { left: -.5rem; width: 108px; height: 108px; }
  .hero-stamp span { font-size: 1.25rem; }
  .hero-location { display: none; }
  .section { padding-inline: 1.25rem; }
  .section-heading h2, .profile-copy h2, .vision-heading h2, .closing h2 { font-size: clamp(2.5rem, 12vw, 3.8rem); }
  .method-quote { min-height: 520px; padding: 7rem 1.5rem 3.5rem; }
  .method-steps { padding-inline: 1.5rem; }
  .method-steps li { grid-template-columns: 36px 1fr; }
  .method-steps small { grid-column: 2; }
  .vision-section { padding-inline: 1.25rem; }
  .profile-photo { min-height: 520px; }
  .profile-photo::before { inset: .8rem -.5rem -.8rem .8rem; }
  .profile-photo > span { right: -.4rem; }
  .timeline article { grid-template-columns: 84px 1fr; gap: .8rem; }
  .closing { padding-inline: 1.25rem; }
  footer { grid-template-columns: 1fr; }
  footer > p:nth-child(2), .footer-note { justify-self: start; }
  .footer-note { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .js .reveal.reveal-pending { opacity: 1; transform: none; }
}
