/* ============================================
   Cowlitz River RV & Mfg. Home Park
   Premium Dark Luxury Theme
   Colors: Midnight Blue + Mint + Gold
============================================ */

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

:root {
    --midnight-950: #060e1a;
    --midnight-900: #0a1628;
    --midnight-800: #0f2136;
    --midnight-700: #162d4a;
    --midnight-600: #1e3a5c;
    --midnight-500: #264669;

    --mint-400: #5eead4;
    --mint-300: #90f0e3;
    --mint-500: #2dd4bf;

    --gold-400: #c9a84c;
    --gold-300: #dfc06e;
    --gold-500: #b8943f;

    --white: #f8fafc;
    --white-80: rgba(248, 250, 252, 0.8);
    --white-60: rgba(248, 250, 252, 0.6);
    --white-40: rgba(248, 250, 252, 0.4);
    --white-20: rgba(248, 250, 252, 0.2);
    --white-10: rgba(248, 250, 252, 0.1);
    --white-05: rgba(248, 250, 252, 0.05);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 30px rgba(94, 234, 212, 0.15);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--white-80);
    background-color: var(--midnight-900);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    color: var(--mint-400);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--mint-300);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    background: var(--mint-400);
    color: var(--midnight-900);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 600;
}

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

.text-gold {
    color: var(--gold-400);
}

/* ============================================
   HEADER
============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--white-10);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(6, 14, 26, 0.95);
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
}

.logo__accent {
    color: var(--mint-400);
}

.logo__text {
    letter-spacing: -0.01em;
}

/* Navigation */
.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav__link {
    color: var(--white-60);
    font-size: 0.9rem;
    font-weight: 500;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-sm);
    transition: color 0.2s ease, background 0.2s ease;
    letter-spacing: 0.01em;
}

.nav__link:hover {
    color: var(--white);
    background: var(--white-05);
}

.nav__link--cta {
    background: var(--gold-400);
    color: var(--midnight-900);
    font-weight: 600;
    margin-left: var(--space-sm);
}

.nav__link--cta:hover {
    background: var(--gold-300);
    color: var(--midnight-900);
}

/* Mobile Nav Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    z-index: 110;
}

.nav__toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--midnight-800);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px var(--space-lg) var(--space-xl);
        gap: var(--space-xs);
        transition: right 0.3s ease;
        border-left: 1px solid var(--white-10);
        box-shadow: var(--shadow-lg);
    }

    .nav__menu.open {
        right: 0;
    }

    .nav__link {
        width: 100%;
        padding: var(--space-sm) var(--space-md);
        font-size: 1rem;
    }

    .nav__link--cta {
        margin-left: 0;
        margin-top: var(--space-sm);
        text-align: center;
        width: 100%;
    }
}

/* ============================================
   HERO
============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--midnight-950);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(6, 14, 26, 0.7) 0%,
        rgba(10, 22, 40, 0.85) 50%,
        rgba(6, 14, 26, 0.95) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    padding-top: 72px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--white-10);
    border: 1px solid var(--white-20);
    color: var(--gold-400);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: var(--space-xs) var(--space-md);
    border-radius: 50px;
    margin-bottom: var(--space-lg);
}

.hero__title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: var(--white);
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--white-60);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-400);
    line-height: 1;
    margin-bottom: 4px;
}

.hero__stat-label {
    font-size: 0.8rem;
    color: var(--white-40);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--white-20);
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--white-40);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   BUTTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn--primary {
    background: var(--mint-400);
    color: var(--midnight-900);
    border-color: var(--mint-400);
}

.btn--primary:hover {
    background: var(--mint-300);
    border-color: var(--mint-300);
    color: var(--midnight-900);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white-20);
}

.btn--outline:hover {
    border-color: var(--white-40);
    background: var(--white-05);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--gold {
    background: var(--gold-400);
    color: var(--midnight-900);
    border-color: var(--gold-400);
}

.btn--gold:hover {
    background: var(--gold-300);
    border-color: var(--gold-300);
    color: var(--midnight-900);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

.btn--outline-sm {
    background: transparent;
    color: var(--mint-400);
    border-color: var(--mint-400);
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
}

.btn--outline-sm:hover {
    background: var(--mint-400);
    color: var(--midnight-900);
}

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

/* ============================================
   SECTIONS
============================================ */
.section {
    padding: var(--space-3xl) 0;
}

.section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-2xl);
}

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

.section__eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mint-400);
    margin-bottom: var(--space-sm);
}

.section__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.section__title--light {
    color: var(--white);
}

.section__subtitle {
    font-size: 1.05rem;
    color: var(--white-60);
    line-height: 1.8;
}

/* ============================================
   CARDS
============================================ */
.lots__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.card {
    background: var(--midnight-800);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--white-20);
}

.card--featured {
    border-color: var(--gold-500);
    background: linear-gradient(135deg, var(--midnight-800) 0%, rgba(201, 168, 76, 0.08) 100%);
}

.card--featured:hover {
    border-color: var(--gold-400);
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.2);
}

.card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card__image {
    transform: scale(1.05);
}

.card__badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--mint-400);
    color: var(--midnight-900);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
}

.card__badge--gold {
    background: var(--gold-400);
}

.card__body {
    padding: var(--space-lg);
}

.card__title {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
}

.card__desc {
    color: var(--white-60);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

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

.card__features li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--white-60);
}

/* ============================================
   AMENITIES
============================================ */
.amenities {
    background: var(--midnight-950);
}

.amenities__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.amenity {
    background: var(--midnight-800);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.amenity:hover {
    border-color: var(--white-20);
    transform: translateY(-4px);
}

.amenity__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.amenity__title {
    font-size: 1.15rem;
    margin-bottom: var(--space-sm);
}

.amenity__desc {
    color: var(--white-60);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   COMMUNITY
============================================ */
.community {
    background: var(--midnight-900);
}

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

.community__image-stack {
    position: relative;
}

.community__image-main {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.community__image-float {
    position: absolute;
    bottom: -30px;
    right: -20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--midnight-800);
}

@media (max-width: 900px) {
    .community__image-float {
        right: 10px;
        bottom: -20px;
    }
}

.community__body {
    color: var(--white-60);
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: var(--space-md);
}

.community__highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.highlight {
    text-align: center;
    padding: var(--space-md);
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-md);
}

.highlight__number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-400);
    line-height: 1;
    margin-bottom: 6px;
}

.highlight__label {
    font-size: 0.82rem;
    color: var(--white-40);
    line-height: 1.4;
}

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

    .community__image-stack {
        max-width: 400px;
        margin: 0 auto;
    }

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

/* ============================================
   LOCATION
============================================ */
.location {
    background: var(--midnight-950);
}

.location__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.location__map {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location__map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.location__map-overlay {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--midnight-900);
    border: 1px solid var(--white-20);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    color: var(--white);
    font-size: 0.9rem;
    backdrop-filter: blur(8px);
}

.location__details {
    padding-top: var(--space-sm);
}

.location__title {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.location__points {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.location__points li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--white-60);
    font-size: 0.95rem;
}

.location__points strong {
    color: var(--white);
}

.location__contact-card {
    background: var(--midnight-800);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.location__contact-title {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.location__address,
.location__phone {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--white-60);
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
}

.location__phone a {
    color: var(--mint-400);
    font-weight: 600;
}

.location__phone a:hover {
    color: var(--mint-300);
}

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

/* ============================================
   CONTACT
============================================ */
.contact {
    background: var(--midnight-900);
}

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

.contact__desc {
    color: var(--white-60);
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: var(--space-xl);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact__detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-md);
}

.contact__detail-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white-40);
    margin-bottom: 2px;
}

.contact__detail-value {
    display: block;
    color: var(--white);
    font-size: 1rem;
    line-height: 1.5;
}

.contact__detail-value a {
    color: var(--white);
}

.contact__detail-value a:hover {
    color: var(--mint-400);
}

/* Form */
.contact__form-wrap {
    background: var(--midnight-800);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.contact__form-title {
    font-size: 1.4rem;
    margin-bottom: var(--space-lg);
}

.form__group {
    margin-bottom: var(--space-md);
}

.form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white-60);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form__input {
    width: 100%;
    background: var(--midnight-900);
    border: 1px solid var(--white-20);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form__input::placeholder {
    color: var(--white-40);
}

.form__input:focus {
    outline: none;
    border-color: var(--mint-400);
    box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.15);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%235eead4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--white-40);
    margin-top: var(--space-sm);
}

.form__success {
    text-align: center;
    padding: var(--space-xl);
}

.form__success-icon {
    margin: 0 auto var(--space-md);
}

.form__success-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.form__success-text {
    color: var(--white-60);
    margin-bottom: var(--space-lg);
}

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

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--midnight-950);
    border-top: 1px solid var(--white-10);
    padding: var(--space-2xl) 0 var(--space-lg);
}

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

.footer__tagline {
    color: var(--white-40);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: var(--space-sm);
    max-width: 300px;
}

.footer__heading {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: var(--space-md);
    font-family: var(--font-body);
}

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

.footer__links a {
    color: var(--white-60);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: var(--mint-400);
}

.footer__contact p {
    color: var(--white-60);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer__contact a {
    color: var(--white-60);
}

.footer__contact a:hover {
    color: var(--mint-400);
}

.footer__bottom {
    border-top: 1px solid var(--white-10);
    padding-top: var(--space-lg);
    text-align: center;
}

.footer__bottom p {
    color: var(--white-40);
    font-size: 0.82rem;
}

@media (max-width: 768px) {
    .footer__inner {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* ============================================
   REDUCED MOTION
============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero__scroll {
        animation: none;
    }
}

/* ============================================
   UTILITIES
============================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
    }
}
