/* ===================================
   Goat Yard Marine — Styles
   Classic & Elegant | Burgundy + Blush
   =================================== */

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

:root {
    --burgundy: #6B1D2A;
    --burgundy-deep: #4A1219;
    --burgundy-light: #8B2E3F;
    --blush: #F5E6D3;
    --blush-light: #FDF6EE;
    --blush-dark: #E8D5C0;
    --cream: #FAF7F4;
    --charcoal: #1A1A1A;
    --text: #2C2C2C;
    --text-light: #5A5A5A;
    --text-muted: #8A8A8A;
    --white: #FFFFFF;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Lato', 'Helvetica Neue', sans-serif;
    --radius: 8px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(107, 29, 42, 0.08);
    --shadow-lg: 0 12px 48px rgba(107, 29, 42, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--sans);
    color: var(--text);
    background-color: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.2;
    color: var(--charcoal);
}

.section-eyebrow {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 14px 32px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: none;
}

.btn--primary {
    background: var(--burgundy);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--ghost {
    background: transparent;
    color: var(--burgundy);
    border: 1.5px solid var(--burgundy);
}

.btn--ghost:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 244, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(107, 29, 42, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(107, 29, 42, 0.06);
}

.nav__inner {
    max-width: 1200px;
    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: 10px;
}

.nav__logo-mark {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--burgundy);
    background: var(--burgundy);
    color: var(--white);
    padding: 6px 10px;
    border-radius: 4px;
}

.nav__logo-text {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--burgundy);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--burgundy);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--burgundy);
    background: var(--blush);
    padding: 8px 18px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav__cta:hover {
    background: var(--burgundy);
    color: var(--white);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle-line {
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
    border-radius: 2px;
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--blush-light) 50%, var(--blush) 100%);
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--burgundy) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, var(--burgundy) 1px, transparent 1px),
        radial-gradient(circle at 60% 80%, var(--burgundy) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 50px 50px;
    pointer-events: none;
}

.hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero__eyebrow::before {
    content: '';
    width: 40px;
    height: 1.5px;
    background: var(--burgundy);
}

.hero__headline {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.hero__headline em {
    font-style: italic;
    color: var(--burgundy);
}

.hero__subhead {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__stat-number {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--burgundy);
}

.hero__stat-label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

.hero__right {
    position: relative;
    height: 600px;
}

.hero__image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero__image--main {
    width: 75%;
    height: 80%;
    top: 0;
    right: 0;
}

.hero__image--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image--accent {
    width: 55%;
    height: 50%;
    bottom: 0;
    left: 0;
    border: 4px solid var(--white);
}

.hero__image--accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image--stamp {
    width: 120px;
    height: 120px;
    bottom: 38%;
    right: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__stamp {
    width: 100%;
    height: 100%;
    border: 2px solid var(--burgundy);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: var(--burgundy);
    font-family: var(--serif);
    font-weight: 600;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--white);
    transform: rotate(-15deg);
}

.hero__stamp svg {
    margin-bottom: 2px;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--burgundy), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* ---------- Services ---------- */
.services {
    padding: 120px 0;
    background: var(--white);
}

.services__header {
    text-align: center;
    margin-bottom: 64px;
}

.services__header .section-desc {
    margin: 0 auto;
}

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

.service-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card--featured {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.service-card--featured .service-card__img {
    height: 200px;
}

.service-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--burgundy);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 2;
}

.service-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blush);
    border-radius: var(--radius);
    color: var(--burgundy);
    margin: 24px 24px 0;
    transition: var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--burgundy);
    color: var(--white);
}

.service-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 16px 24px;
    color: var(--charcoal);
}

.service-card__desc {
    padding: 0 24px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
}

.service-card__img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    margin-top: 16px;
}

/* ---------- About ---------- */
.about {
    padding: 120px 0;
    background: var(--cream);
}

.about__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image-col {
    position: relative;
    height: 680px;
}

.about__image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 80%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__image-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 5px solid var(--cream);
    box-shadow: var(--shadow);
}

.about__image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__content .section-title {
    margin-bottom: 24px;
}

.about__divider {
    width: 60px;
    height: 3px;
    background: var(--burgundy);
    border-radius: 2px;
    margin-bottom: 28px;
}

.about__body {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.about__value {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
}

.about__value-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blush);
    border-radius: 50%;
    color: var(--burgundy);
    flex-shrink: 0;
}

/* ---------- Why Us ---------- */
.why-us {
    padding: 120px 0;
    background: var(--burgundy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: 
        radial-gradient(circle at 10% 20%, var(--white) 1px, transparent 1px),
        radial-gradient(circle at 90% 80%, var(--white) 1px, transparent 1px);
    background-size: 50px 50px, 70px 70px;
    pointer-events: none;
}

.why-us .container {
    position: relative;
    z-index: 1;
}

.why-us__header {
    text-align: center;
    margin-bottom: 64px;
}

.why-us .section-eyebrow {
    color: var(--blush);
}

.why-us .section-title {
    color: var(--white);
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.why-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.why-card__number {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(245, 230, 211, 0.2);
    line-height: 1;
    margin-bottom: 16px;
}

.why-card__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.why-card__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
}

/* ---------- Testimonials ---------- */
.testimonials {
    padding: 100px 0;
    background: var(--blush-light);
}

.testimonials__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.testimonials__quote-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonials__quote-mark {
    color: var(--blush-dark);
    margin-bottom: 16px;
}

.testimonials__quote {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 20px;
}

.testimonials__attribution {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--burgundy);
    letter-spacing: 0.04em;
}

/* ---------- Contact ---------- */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__info .section-title {
    margin-bottom: 16px;
}

.contact__info .section-desc {
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact__detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blush);
    border-radius: var(--radius);
    color: var(--burgundy);
    flex-shrink: 0;
}

.contact__detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact__detail-value {
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
}

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

.contact__detail-value a:hover {
    color: var(--burgundy-deep);
    text-decoration: underline;
}

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

.contact__form-wrap {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow);
}

.contact__form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 28px;
    color: var(--charcoal);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form__input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--blush-dark);
    border-radius: var(--radius);
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form__input:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(107, 29, 42, 0.1);
}

.form__input::placeholder {
    color: var(--text-muted);
}

.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 24 24' fill='none' stroke='%238A8A8A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

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

.contact__success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    color: var(--burgundy);
}

.contact__success svg {
    margin-bottom: 16px;
}

.contact__success h4 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.contact__success p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 0 32px;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 32px;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__logo-mark {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--blush);
    background: var(--burgundy);
    padding: 6px 10px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

.footer__logo-text {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.footer__tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}

.footer__links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

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

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer__bottom a {
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.footer__bottom a:hover {
    color: var(--blush);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero__right {
        height: 450px;
        order: -1;
    }

    .hero__left {
        text-align: center;
    }

    .hero__eyebrow {
        justify-content: center;
    }

    .hero__subhead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card--featured {
        grid-row: span 1;
    }

    .about__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__image-col {
        height: 450px;
    }

    .contact__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 247, 244, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        transform: translateY(-120%);
        transition: var(--transition);
        border-bottom: 1px solid rgba(107, 29, 42, 0.08);
    }

    .nav__menu.open {
        transform: translateY(0);
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 100px 24px 80px;
        min-height: auto;
    }

    .hero__right {
        height: 350px;
    }

    .hero__image--stamp {
        width: 80px;
        height: 80px;
    }

    .hero__stamp {
        font-size: 0.55rem;
    }

    .services {
        padding: 80px 0;
    }

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

    .why-us {
        padding: 80px 0;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
    }

    .testimonials {
        padding: 80px 0;
    }

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

    .contact {
        padding: 80px 0;
    }

    .contact__form-wrap {
        padding: 32px 24px;
    }

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

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

    .footer__top {
        flex-direction: column;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__right {
        height: 280px;
    }

    .hero__image--main {
        width: 80%;
        height: 75%;
    }

    .hero__image--accent {
        width: 60%;
        height: 50%;
    }

    .hero__stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero__stat-divider {
        width: 40px;
        height: 1px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}

/* ---------- Animations ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
