/* ========================================
   ARCHITEC — Dark Luxury Architecture Site
   ======================================== */

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

:root {
    --bg: #0a0a0a;
    --bg-card: #111111;
    --text: #f0efe9;
    --text-dim: #8a8a8a;
    --accent: #c8a96e;
    --accent-light: #e0c98f;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-behavior: auto;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* ========================================
   LOADER
   ======================================== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loader-line {
    width: 200px;
    height: 1px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.loader-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--accent);
    transition: width 0.1s linear;
}

.loader-text {
    font-family: var(--sans);
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    color: var(--text-dim);
}

.loader-count {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    font-variant-numeric: tabular-nums;
}

.loader.loaded {
    pointer-events: none;
    animation: loaderOut 0.8s var(--ease) forwards;
}

@keyframes loaderOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem clamp(1.5rem, 4vw, 3rem);
    transition: background 0.4s, backdrop-filter 0.4s;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.dot {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--text-dim);
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}

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

.nav-cta {
    padding: 0.5rem 1.25rem !important;
    border: 1px solid var(--border-hover);
    border-radius: 100px;
    color: var(--text) !important;
    transition: all 0.3s var(--ease) !important;
}

.nav-cta:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-menu-btn span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.3s var(--ease);
}

.nav-menu-btn.active span:first-child {
    transform: rotate(45deg) translate(3px, 4px);
}

.nav-menu-btn.active span:last-child {
    transform: rotate(-45deg) translate(3px, -4px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

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

.mobile-menu a {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--text-dim);
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-menu-btn { display: flex; }
}

/* ========================================
   HERO — VIDEO FRAME SCRUB
   ======================================== */
.hero {
    position: relative;
    height: 500vh;
}

.hero-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(10,10,10,0.6) 100%),
        linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, transparent 30%, transparent 70%, rgba(10,10,10,0.95) 100%);
    pointer-events: none;
}

.hero-content {
    position: absolute;
    bottom: 12%;
    left: clamp(1.5rem, 4vw, 3rem);
    max-width: 680px;
    z-index: 2;
}

.hero-tag {
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 6.5vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(60px);
}

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

.hero-sub {
    font-size: 0.95rem;
    color: var(--text-dim);
    max-width: 440px;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border: 1px solid var(--accent);
    border-radius: 100px;
    color: var(--accent);
    transition: all 0.4s var(--ease);
    opacity: 0;
    transform: translateY(20px);
}

.hero-btn:hover {
    background: var(--accent);
    color: var(--bg);
}

.hero-btn svg {
    transition: transform 0.3s var(--ease);
}

.hero-btn:hover svg {
    transform: translate(3px, -3px);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    right: clamp(1.5rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% { top: -100%; }
    100% { top: 100%; }
}

.hero-scroll-hint span {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.hero-frame-counter {
    position: absolute;
    top: 50%;
    right: clamp(1.5rem, 4vw, 3rem);
    transform: translateY(-50%);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--text-dim);
    font-variant-numeric: tabular-nums;
    z-index: 2;
    writing-mode: vertical-rl;
}

/* ========================================
   STORY CARDS — Scroll-triggered overlays
   ======================================== */
.story-cards {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.story-card {
    position: absolute;
    width: clamp(260px, 22vw, 340px);
    padding: 1.75rem;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: none;
    pointer-events: auto;
    overflow: hidden;
}

/* Position variants */
.story-card[data-pos="left"] {
    left: clamp(1.5rem, 4vw, 4rem);
    top: 50%;
    margin-top: -80px;
}

.story-card[data-pos="right"] {
    right: clamp(1.5rem, 4vw, 4rem);
    top: 50%;
    margin-top: -80px;
}

.story-card[data-pos="center"] {
    left: 50%;
    top: 50%;
    margin-top: -80px;
    transform: translate(-50%, 30px);
}

.story-card-num {
    display: block;
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(200, 169, 110, 0.12);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.story-card h3 {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.65rem;
}

.story-card p {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.story-card-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: width 0.6s var(--ease);
}

.story-card.visible .story-card-line {
    width: 100%;
}

@media (max-width: 768px) {
    .story-card {
        width: clamp(200px, 65vw, 300px);
    }
    .story-card[data-pos="left"],
    .story-card[data-pos="right"] {
        left: 50%;
        right: auto;
        transform: translate(-50%, 30px);
    }
    .story-card[data-pos="left"].visible,
    .story-card[data-pos="right"].visible {
        transform: translate(-50%, 0);
    }
}

/* ========================================
   MARQUEE
   ======================================== */
.marquee-section {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding-right: 2.5rem;
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    color: var(--text-dim);
    white-space: nowrap;
}

.marquee-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

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

/* ========================================
   ABOUT
   ======================================== */
.about {
    padding: clamp(6rem, 12vw, 10rem) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
}

.section-tag {
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
}

.about-heading {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.25;
}

.about-heading em {
    color: var(--accent);
}

.about-text {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.stat-num {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    display: inline;
}

.stat-plus {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--text-dim);
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
}

/* ========================================
   PROJECTS — HORIZONTAL SCROLL
   ======================================== */
.projects {
    padding: clamp(4rem, 8vw, 6rem) 0 0;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
}

.projects-scroll {
    overflow: hidden;
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.projects-track {
    display: flex;
    gap: 2rem;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    width: max-content;
}

.project-card {
    width: clamp(300px, 30vw, 420px);
    flex-shrink: 0;
    cursor: pointer;
    group: true;
}

.project-img {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 3/4;
    margin-bottom: 1.25rem;
}

.project-img-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s var(--ease);
    position: relative;
    overflow: hidden;
}

.project-card:hover .project-img-bg {
    transform: scale(1.03);
}

/* 3D CSS Shapes inside project cards */
.project-3d-shape {
    width: 60%;
    height: 60%;
    position: relative;
    transform-style: preserve-3d;
    animation: float3d 6s ease-in-out infinite;
}

.shape-1 {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1rem;
    transform: perspective(800px) rotateY(-15deg) rotateX(10deg);
    box-shadow: 20px 20px 60px rgba(0,0,0,0.3), -5px -5px 20px rgba(255,255,255,0.02);
}

.shape-2 {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: perspective(800px) rotateY(10deg) rotateX(-5deg);
}

.shape-3 {
    background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: perspective(800px) rotateX(20deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.shape-4 {
    background: linear-gradient(180deg, rgba(0,173,181,0.15), transparent);
    border: 1px solid rgba(0,173,181,0.2);
    border-radius: 0.5rem;
    transform: perspective(800px) rotateY(20deg) rotateX(10deg) rotateZ(5deg);
}

.shape-5 {
    background: linear-gradient(135deg, rgba(141,153,174,0.1), transparent);
    border: 1px solid rgba(141,153,174,0.15);
    border-radius: 2rem 0.5rem 2rem 0.5rem;
    transform: perspective(800px) rotateY(-10deg) rotateX(15deg);
}

@keyframes float3d {
    0%, 100% { transform: perspective(800px) rotateY(-15deg) rotateX(10deg) translateY(0); }
    50% { transform: perspective(800px) rotateY(-10deg) rotateX(15deg) translateY(-10px); }
}

.project-year {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    padding: 0.3rem 0.75rem;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-dim);
}

.project-info h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.35rem;
    transition: color 0.3s;
}

.project-card:hover .project-info h3 {
    color: var(--accent);
}

.project-info p {
    font-size: 0.8rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    padding: clamp(6rem, 12vw, 10rem) 0;
}

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

.service-card {
    position: relative;
    padding: clamp(2rem, 4vw, 3rem);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    transition: all 0.5s var(--ease);
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.service-card:hover .service-line {
    width: 100%;
    background: var(--accent);
}

.service-num {
    font-family: var(--serif);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.04);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-weight: 700;
    transition: color 0.4s;
}

.service-card:hover .service-num {
    color: rgba(200, 169, 110, 0.1);
}

.service-card h3 {
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 380px;
}

.service-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--border);
    transition: all 0.6s var(--ease);
}

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

/* ========================================
   PHILOSOPHY — WORD REVEAL
   ======================================== */
.philosophy {
    position: relative;
    height: 300vh;
}

.philosophy-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-quote p {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
    max-width: 900px;
    letter-spacing: 0.02em;
}

.quote-word {
    display: inline-block;
    opacity: 0.12;
    transition: opacity 0.3s;
    margin-right: 0.3em;
}

.quote-word.active {
    opacity: 1;
}

.quote-word em {
    color: var(--accent);
    font-style: italic;
}

/* ========================================
   CONTACT & FOOTER
   ======================================== */
.contact {
    padding: clamp(6rem, 12vw, 10rem) 0 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
}

.contact-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.contact-heading em {
    color: var(--accent);
}

.company-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.8;
}

.company-contact p {
    margin: 0;
}

.company-contact strong {
    color: var(--text);
    font-weight: 600;
}

.company-contact a {
    color: var(--accent-light);
}

.company-contact a:hover {
    text-decoration: underline;
}

.contact-email {
    font-family: var(--serif);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-style: italic;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border);
    padding-bottom: 4px;
    transition: all 0.3s;
}

.contact-email:hover {
    color: var(--accent);
    border-color: var(--accent);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 0;
    background: none;
    border: none;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-family: var(--sans);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

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

.form-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    align-self: flex-start;
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    background: var(--accent);
    color: var(--bg);
    border: 1px solid var(--accent);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.4s var(--ease);
}

.form-btn:hover {
    background: transparent;
    color: var(--accent);
}

.form-btn svg {
    transition: transform 0.3s var(--ease);
}

.form-btn:hover svg {
    transform: translateX(4px);
}

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

.footer {
    margin-top: clamp(6rem, 12vw, 10rem);
    padding: 2rem 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
}

.footer-copy {
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.75rem;
    color: var(--text-dim);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

/* ========================================
   GLOBAL REVEAL ANIMATIONS
   ======================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s var(--ease);
}

/* Stagger children */
.stagger-reveal > * {
    opacity: 0;
    transform: translateY(30px);
}

.stagger-reveal.revealed > *:nth-child(1) { transition-delay: 0s; }
.stagger-reveal.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-reveal.revealed > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-reveal.revealed > *:nth-child(4) { transition-delay: 0.3s; }

.stagger-reveal.revealed > * {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.7s var(--ease);
}
