/* ============================================
   Tilton Laundry — "Neighborhood Washhouse"
   Warm vintage Americana + retro-modern
   ============================================ */

:root {
    --cream:       #FFF8EE;
    --cream-dark:  #F0E6D6;
    --navy:        #1A2744;
    --navy-light:  #243352;
    --teal:        #2B8A7E;
    --teal-dark:   #1A6B60;
    --teal-light:  #D4F0ED;
    --light-teal:  #D4F0ED;
    --coral:       #E8614D;
    --coral-light: #F9D4CE;
    --gold:        #D4A843;
    --gold-light:  #F5E6C4;

    --text:        #1A2744;
    --text-muted:  #5A6B82;
    --white:       #FFFFFF;

    --font-display: 'Syne', Georgia, serif;
    --font-body:    'Outfit', -apple-system, sans-serif;

    --radius:      12px;
    --radius-lg:   20px;
    --shadow:      0 4px 24px rgba(26, 39, 68, .08);
    --shadow-lg:   0 12px 48px rgba(26, 39, 68, .12);
    --transition:  .3s cubic-bezier(.4, 0, .2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }
address { font-style: normal; }

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 540px;
    margin: 0 auto 48px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .95rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}
.btn--primary:hover {
    background: #D14D38;
    border-color: #D14D38;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 97, 77, .35);
}

.btn--outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn--outline:hover {
    background: var(--navy);
    color: var(--cream);
    transform: translateY(-2px);
}

.btn--light {
    background: rgba(255,255,255,.15);
    color: var(--cream);
    border-color: rgba(255,255,255,.3);
}
.btn--light:hover {
    background: rgba(255,255,255,.25);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--full { width: 100%; }


/* ======================
   NAVIGATION
   ====================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255, 248, 238, .85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(26, 39, 68, .06);
    transition: background var(--transition), box-shadow var(--transition);
}
.nav--scrolled {
    background: rgba(255, 248, 238, .95);
    box-shadow: 0 2px 20px rgba(26, 39, 68, .08);
}

.nav__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--navy);
    text-decoration: none;
}
.nav__logo:hover { color: var(--teal); }
.nav__logo img { width: 40px; height: 40px; }

.nav__links {
    display: flex;
    gap: 8px;
}
.nav__links a {
    display: block;
    padding: 8px 20px;
    font-weight: 500;
    font-size: .95rem;
    color: var(--text-muted);
    border-radius: 50px;
    transition: all var(--transition);
}
.nav__links a:hover,
.nav__links a.active {
    color: var(--navy);
    background: rgba(43, 138, 126, .08);
}
.nav__links a.active { font-weight: 600; }

/* Mobile toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav__toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }


/* ======================
   HERO (Home)
   ====================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 40%, var(--teal-dark) 100%);
    z-index: 0;
}

.hero__grain {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
}

.hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 120px;
}

.hero__est {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: .9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    animation: fadeSlideUp .8s ease both;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    color: var(--cream);
    margin-bottom: 24px;
}
.hero__title-line {
    display: block;
    animation: fadeSlideUp .8s ease both;
    animation-delay: .15s;
}
.hero__title-line--accent {
    color: var(--gold);
    font-style: italic;
    animation-delay: .3s;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255, 248, 238, .7);
    max-width: 480px;
    margin-bottom: 36px;
    animation: fadeSlideUp .8s ease both;
    animation-delay: .45s;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeSlideUp .8s ease both;
    animation-delay: .6s;
}

.hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    z-index: 2;
    line-height: 0;
}
.hero__wave svg { width: 100%; height: auto; }


/* --- Animated Washing Machine --- */
.hero__machine {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease .4s both;
}

.machine {
    width: 320px;
    height: 380px;
    position: relative;
}

.machine__body {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #e8e8e8 0%, #c0c0c0 30%, #d8d8d8 50%, #b0b0b0 80%, #a0a0a0 100%);
    border-radius: 24px;
    position: relative;
    box-shadow:
        0 20px 60px rgba(0,0,0,.3),
        inset 0 1px 0 rgba(255,255,255,.6),
        inset 0 -1px 0 rgba(0,0,0,.15);
    overflow: hidden;
}

.machine__panel {
    position: absolute;
    top: 20px; left: 30px; right: 30px;
    height: 55px;
    background: linear-gradient(180deg, #9a9a9a, #b5b5b5);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.3);
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 16px;
}

.machine__dial {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2.5px solid #ddd;
    background: linear-gradient(145deg, #ccc, #999);
    position: relative;
}
.machine__dial::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 3px; height: 12px;
    background: #eee;
    border-radius: 2px;
    transform-origin: bottom center;
    transform: translate(-50%, -100%);
}
.machine__dial--1::after { transform: translate(-50%, -100%) rotate(-30deg); }
.machine__dial--2::after { transform: translate(-50%, -100%) rotate(45deg); }
.machine__dial--2 { border-color: #ddd; }
.machine__dial--2::after { background: #eee; }

.machine__indicator {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #4ADE80;
    margin-left: auto;
    box-shadow: 0 0 8px rgba(74, 222, 128, .6);
    animation: pulse 2s ease-in-out infinite;
}

.machine__door {
    position: absolute;
    top: 95px; left: 50%;
    transform: translateX(-50%);
    width: 220px; height: 220px;
    border-radius: 50%;
    background: linear-gradient(145deg, #888, #aaa 40%, #999 60%, #777);
    display: flex;
    align-items: center;
    justify-content: center;
}

.machine__door-ring {
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 4px solid rgba(200, 200, 200, .8);
    box-shadow: inset 0 0 20px rgba(0,0,0,.15), 0 0 4px rgba(255,255,255,.3);
}

.machine__drum {
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, rgba(43, 138, 126, .15), rgba(0,0,0,.1));
    overflow: hidden;
    position: relative;
}

.machine__clothes {
    position: absolute;
    inset: 0;
    animation: spin 4s linear infinite;
}

.machine__cloth {
    position: absolute;
    opacity: .65;
}
.machine__cloth path { fill: currentColor; }
.machine__cloth--1 {
    width: 45px; height: 40px;
    top: 15px; left: 55px;
    transform: rotate(20deg);
    color: var(--coral);
}
.machine__cloth--2 {
    width: 35px; height: 48px;
    top: 75px; left: 20px;
    transform: rotate(-15deg);
    color: var(--gold);
}
.machine__cloth--3 {
    width: 40px; height: 36px;
    top: 105px; left: 85px;
    transform: rotate(40deg);
    opacity: .5;
    color: var(--cream);
}
.machine__cloth--4 {
    width: 40px; height: 22px;
    top: 50px; left: 105px;
    transform: rotate(-30deg);
    color: var(--teal-light);
}

.machine__water {
    position: absolute;
    bottom: 0; left: -10%; right: -10%;
    height: 50%;
    background: linear-gradient(0deg, rgba(43, 138, 126, .25), transparent);
    border-radius: 0 0 50% 50%;
    animation: waterSlosh 3s ease-in-out infinite;
}

.machine__door-handle {
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px; height: 28px;
    background: linear-gradient(180deg, #d0d0d0, #a0a0a0);
    border-radius: 6px;
    box-shadow: 2px 0 8px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.5);
}


/* --- Floating bubbles --- */
.hero__bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bubble--hero {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.2), rgba(255,255,255,.03));
    border: 1px solid rgba(255,255,255,.08);
    animation: floatBubble linear infinite;
}
.bubble--h1 { width: 20px; height: 20px; left: 10%; animation-duration: 12s; animation-delay: 0s; bottom: -30px; }
.bubble--h2 { width: 35px; height: 35px; left: 25%; animation-duration: 16s; animation-delay: 2s; bottom: -40px; }
.bubble--h3 { width: 14px; height: 14px; left: 45%; animation-duration: 10s; animation-delay: 4s; bottom: -20px; }
.bubble--h4 { width: 28px; height: 28px; left: 60%; animation-duration: 14s; animation-delay: 1s; bottom: -35px; }
.bubble--h5 { width: 18px; height: 18px; left: 75%; animation-duration: 11s; animation-delay: 3s; bottom: -25px; }
.bubble--h6 { width: 40px; height: 40px; left: 85%; animation-duration: 18s; animation-delay: 5s; bottom: -45px; }
.bubble--h7 { width: 12px; height: 12px; left: 50%; animation-duration: 9s;  animation-delay: 6s; bottom: -15px; }


/* ======================
   FEATURES
   ====================== */
.features {
    padding: 80px 0;
    background: var(--cream);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--coral));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.feature-card__icon {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    color: var(--teal);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.feature-card p {
    color: var(--text-muted);
    font-size: .95rem;
}

/* Pop-in animation */
.feature-card--pop {
    opacity: 0;
    transform: translateY(30px);
    animation: popIn .6s ease forwards;
    animation-delay: calc(var(--delay) * .15s + .2s);
}


/* ======================
   HOURS BAND
   ====================== */
.hours-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hours-band__inner {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.hours-band__clock {
    flex-shrink: 0;
    width: 80px;
    animation: fadeIn 1s ease;
}

.hours-band__text {
    color: var(--cream);
}
.hours-band__text h2 {
    font-size: 1.6rem;
    color: var(--cream);
    margin-bottom: 8px;
}
.hours-band__text p {
    font-size: 1rem;
    color: rgba(255,248,238,.7);
}
.hours-band__text strong {
    color: var(--cream);
    font-weight: 600;
}

.hours-band__address {
    color: rgba(255,248,238,.7);
    font-size: .95rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.hours-band__address a { color: rgba(255,248,238,.8); }
.hours-band__address a:hover { color: var(--cream); }


/* ======================
   CTA SECTION
   ====================== */
.cta {
    padding: 80px 0;
    background: var(--cream);
}

.cta__inner {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 64px 40px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.cta__inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral));
}

.cta__inner h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 12px;
}
.cta__inner p {
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 32px;
}

.cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ======================
   PAGE HERO (Services, Help Wanted)
   ====================== */
.page-hero {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
}
.page-hero > .container {
    position: relative;
    z-index: 1;
}
.page-hero--services {
    background: linear-gradient(160deg, var(--navy) 0%, var(--teal-dark) 100%);
}
.page-hero--hiring {
    background: linear-gradient(160deg, var(--navy) 0%, #3a1f44 50%, var(--coral) 100%);
}

.page-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--cream);
    margin-bottom: 16px;
    line-height: 1.4;
    padding-bottom: 6px;
    animation: fadeSlideUp .6s ease both;
}

.page-hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255,248,238,.65);
    max-width: 520px;
    margin: 0 auto;
    animation: fadeSlideUp .6s ease .15s both;
}

.page-hero__wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    line-height: 0;
}
.page-hero__wave svg { width: 100%; height: auto; }


/* ======================
   PRICING CARDS
   ====================== */
.pricing {
    padding: 80px 0 60px;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
    opacity: 0;
    transform: translateY(24px);
    animation: popIn .5s ease forwards;
    animation-delay: calc(var(--delay) * .12s + .1s);
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pricing-card--dropoff {
    border: 2px solid var(--teal);
}

.pricing-card__header {
    margin-bottom: 20px;
}
.pricing-card__title {
    font-size: 1.15rem;
    color: var(--navy);
}

.pricing-card__price {
    margin-bottom: 20px;
}
.pricing-card__amount {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
}
.pricing-card__unit {
    display: block;
    font-size: .85rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.pricing-card__desc {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.6;
}

.pricing-card__badge {
    position: absolute;
    top: 16px; right: -8px;
    background: var(--coral);
    color: var(--white);
    font-family: var(--font-display);
    font-size: .75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 2px 8px rgba(232, 97, 77, .3);
}
.pricing-card__badge::after {
    content: '';
    position: absolute;
    top: 100%; right: 0;
    border: 4px solid transparent;
    border-top-color: #C04030;
    border-right-color: #C04030;
}


/* ======================
   AMENITIES
   ====================== */
.amenities {
    padding: 60px 0 80px;
    background: var(--cream-dark);
}

.amenities__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.amenity {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius);
    background: var(--cream);
    transition: transform var(--transition), box-shadow var(--transition);
    opacity: 0;
    animation: popIn .5s ease forwards;
    animation-delay: calc(var(--delay) * .08s + .1s);
}
.amenity:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.amenity__icon {
    width: 48px; height: 48px;
    margin: 0 auto 16px;
    color: var(--teal);
}

.amenity h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 6px;
}
.amenity p {
    font-size: .85rem;
    color: var(--text-muted);
}


/* ======================
   ECO SECTION
   ====================== */
.eco {
    padding: 80px 0;
}

.eco__inner {
    display: flex;
    align-items: center;
    gap: 48px;
    background: var(--teal-light);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 2px solid rgba(43, 138, 126, .15);
}

.eco__icon {
    flex-shrink: 0;
    width: 100px;
}

.eco__text h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--teal-dark);
}
.eco__text p {
    color: var(--text-muted);
    margin-bottom: 8px;
}
.eco__text strong {
    color: var(--teal-dark);
}


/* ======================
   JOB LISTING
   ====================== */
.job-listing {
    padding: 80px 0;
}

.job-listing__grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.job-listing__details h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}
.job-listing__details h3 {
    font-size: 1.1rem;
    margin: 28px 0 12px;
    color: var(--teal-dark);
}

.job-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.job-tag {
    display: inline-block;
    padding: 5px 14px;
    background: var(--teal-light);
    color: var(--teal-dark);
    font-size: .8rem;
    font-weight: 600;
    border-radius: 50px;
}

.job-duties {
    list-style: none;
    padding: 0;
}
.job-duties li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: .95rem;
}
.job-duties li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--teal);
    opacity: .5;
}

.job-perks {
    margin-top: 32px;
    padding: 24px;
    background: var(--gold-light);
    border-radius: var(--radius);
}
.job-perks h3 {
    margin: 0 0 12px;
    color: var(--navy);
}

.job-perks__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.job-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
}
.job-perk__icon { font-size: 1.2rem; }


/* --- Application Form --- */
.apply-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 96px;
}

.apply-card h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}
.apply-card > p {
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 500;
    font-size: .9rem;
    margin-bottom: 6px;
    color: var(--navy);
}

.required { color: var(--coral); }

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: .95rem;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius);
    background: var(--cream);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(43, 138, 126, .1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #A0AEC0;
}

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

.form-errors {
    background: var(--coral-light);
    border: 1px solid var(--coral);
    border-radius: var(--radius);
    padding: 12px 16px;
    margin-bottom: 20px;
}
.form-errors p {
    color: #8B2E1E;
    font-size: .85rem;
    margin-bottom: 4px;
}
.form-errors p:last-child { margin-bottom: 0; }

.form-success {
    text-align: center;
    padding: 48px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.form-success__icon {
    width: 64px; height: 64px;
    margin: 0 auto 16px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}
.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.form-success p {
    color: var(--text-muted);
}


/* ======================
   FOOTER
   ====================== */
.footer {
    background: var(--navy);
    color: rgba(255, 248, 238, .7);
    padding: 64px 0 0;
    position: relative;
    overflow: hidden;
}

.footer__bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.footer .bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(43,138,126,.12), rgba(43,138,126,.02));
    border: 1px solid rgba(43,138,126,.06);
}
.footer .bubble--1 { width: 80px; height: 80px; top: 10%; left: 5%; }
.footer .bubble--2 { width: 50px; height: 50px; top: 60%; left: 15%; }
.footer .bubble--3 { width: 120px; height: 120px; top: 5%; right: 8%; }
.footer .bubble--4 { width: 40px; height: 40px; top: 50%; right: 20%; }
.footer .bubble--5 { width: 30px; height: 30px; top: 30%; left: 45%; }

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.footer__logo {
    width: 60px; height: 60px;
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: .95rem;
    max-width: 240px;
}

.footer h3 {
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 700;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.footer a {
    color: rgba(255,248,238,.6);
    transition: color var(--transition);
}
.footer a:hover { color: var(--cream); }

.footer__info address {
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer__fb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer__fb svg { width: 20px; height: 20px; flex-shrink: 0; }

.footer__bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 28px 0;
    margin-top: 48px;
    border-top: 1px solid rgba(255,248,238,.08);
    font-size: .85rem;
}


/* ======================
   ANIMATIONS
   ====================== */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes popIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: .4; }
}

@keyframes waterSlosh {
    0%, 100% { transform: translateX(0) scaleY(1); }
    25%      { transform: translateX(8px) scaleY(1.08); }
    75%      { transform: translateX(-8px) scaleY(.94); }
}

@keyframes floatBubble {
    0%   { transform: translateY(0) scale(1); opacity: 0; }
    10%  { opacity: .6; }
    90%  { opacity: .15; }
    100% { transform: translateY(-100vh) scale(.6); opacity: 0; }
}


/* ======================
   RESPONSIVE
   ====================== */
@media (max-width: 900px) {
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 140px;
    }
    .hero__subtitle { margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }
    .hero__machine { order: -1; }
    .machine { width: 240px; height: 290px; }
    .machine__door { width: 160px; height: 160px; top: 75px; }
    .machine__drum { width: 130px; height: 130px; }
    .machine__cloth--1 { width: 40px; height: 25px; top: 15px; left: 45px; }
    .machine__cloth--2 { width: 30px; height: 35px; top: 55px; left: 18px; }
    .machine__cloth--3 { width: 35px; height: 22px; top: 80px; left: 62px; }
    .machine__cloth--4 { width: 25px; height: 32px; top: 35px; left: 82px; }

    .features__grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .pricing__grid { grid-template-columns: 1fr 1fr; max-width: 700px; margin-left: auto; margin-right: auto; }
    .amenities__grid { grid-template-columns: 1fr 1fr; }
    .job-listing__grid { grid-template-columns: 1fr; }
    .apply-card { position: static; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .eco__inner { flex-direction: column; text-align: center; }
    .hours-band__inner { flex-direction: column; gap: 24px; }
}

@media (max-width: 600px) {
    .nav__links {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: rgba(255,248,238,.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 16px 24px;
        gap: 4px;
        transform: translateY(-110%);
        transition: transform .35s ease;
        box-shadow: 0 8px 24px rgba(26,39,68,.1);
    }
    .nav__links--open { transform: translateY(0); }
    .nav__toggle { display: flex; }

    .amenities__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; text-align: center; }
    .footer__tagline { margin: 0 auto; }
    .footer__logo { margin: 0 auto 16px; }
}
