/*
 * Skeleton Software — Landing Template: Arbor
 * Luxury tree & landscaping theme
 * Fresh white base, layered greens, heavy display typography
 * Drop into /landing/css/ and set { "css_file": "landing-arbor.css" } in storage/landing_theme.json
 */

/* ======================================================
   FONTS
====================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700&family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@300;400;500;600&display=swap');

/* ======================================================
   CSS VARIABLES
====================================================== */
:root {
    --font-body:    'Barlow', sans-serif;
    --font-display: 'Playfair Display', serif;
    --font-sub:     'Barlow Condensed', sans-serif;

    /* Greens — layered from deep to bright */
    --green-deep:    #1a2e1a;
    --green-forest:  #254d2b;
    --green-mid:     #3a7d44;
    --green-bright:  #52a85e;
    --green-fresh:   #7ec687;
    --green-pale:    #e8f5ea;
    --green-mist:    #f2faf3;

    /* Neutrals */
    --white:         #ffffff;
    --off-white:     #fafdf8;
    --cream:         #f4f9f0;
    --stone:         #e8ede5;
    --bark:          #5c4a32;
    --bark-light:    #8a7259;
    --ink:           #1a2316;

    /* Semantic tokens */
    --color-ink:          var(--ink);
    --color-ink-light:    #3d4f38;
    --color-ink-muted:    #7a8c74;
    --color-surface:      var(--white);
    --color-surface-alt:  var(--off-white);
    --color-surface-warm: var(--cream);
    --color-border:       #d8e5d3;
    --color-accent:       var(--green-mid);
    --color-accent-hover: var(--green-forest);
    --color-highlight:    var(--green-bright);

    --container:        1200px;
    --container-narrow: 720px;
    --space-xs:  0.5rem;
    --space-sm:  1rem;
    --space-md:  2rem;
    --space-lg:  4rem;
    --space-xl:  6rem;
    --space-2xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 10px;
    --radius-lg: 20px;
    --radius-pill: 999px;

    --shadow-soft:   0 2px 20px rgba(26,46,26,0.07);
    --shadow-medium: 0 8px 40px rgba(26,46,26,0.12);
    --shadow-lift:   0 20px 60px rgba(26,46,26,0.16);
    --shadow-green:  0 8px 32px rgba(58,125,68,0.22);

    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ======================================================
   RESET & BASE
====================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-ink);
    background: var(--color-surface);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }

/* ======================================================
   LAYOUT
====================================================== */
.l-container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}
.l-container--narrow { max-width: var(--container-narrow); }

.l-section { padding: var(--space-xl) 0; }
.l-section--large { padding: var(--space-2xl) 0; }

.l-grid { display: grid; gap: var(--space-md); }
.l-grid--2 { grid-template-columns: repeat(2, 1fr); }
.l-grid--3 { grid-template-columns: repeat(3, 1fr); }
.l-grid--2-align { grid-template-columns: repeat(2, 1fr); align-items: center; }

@media (max-width: 900px) {
    .l-grid--2, .l-grid--3, .l-grid--2-align { grid-template-columns: 1fr; }
}

/* ======================================================
   TYPOGRAPHY
====================================================== */
.t-display {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--color-ink);
    letter-spacing: -0.01em;
}

.t-heading {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-ink);
    letter-spacing: -0.01em;
}

.t-subheading {
    font-family: var(--font-sub);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--color-ink-light);
    text-transform: uppercase;
}

.t-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-ink-light);
}

.t-small { font-size: 0.875rem; color: var(--color-ink-muted); }
.t-center { text-align: center; }

.t-label {
    font-family: var(--font-sub);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-mid);
}

/* Organic leaf-stem accent */
.t-accent {
    display: inline-block;
    width: 48px;
    height: 3px;
    background: var(--green-mid);
    border-radius: 2px;
    margin-bottom: var(--space-md);
    position: relative;
}
.t-accent::after {
    content: '';
    position: absolute;
    right: -8px;
    top: -4px;
    width: 10px;
    height: 10px;
    background: var(--green-bright);
    border-radius: 50% 0 50% 0;
    transform: rotate(45deg);
}

/* ======================================================
   NAVIGATION
====================================================== */
.nav {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
}

.nav.is-scrolled {
    box-shadow: var(--shadow-medium);
}

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

.nav__brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green-forest);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.01em;
}
.nav__brand img { height: 52px; width: auto; }
.nav__sitename { color: var(--green-forest); }

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

.nav__link {
    font-family: var(--font-sub);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-ink-light);
    position: relative;
    padding-bottom: 2px;
    transition: color var(--transition);
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 2px;
    background: var(--green-mid);
    border-radius: 1px;
    transition: width var(--transition);
}
.nav__link:hover { color: var(--green-forest); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--green-forest);
    color: var(--white);
    font-family: var(--font-sub);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.nav__cta:hover {
    background: var(--green-deep);
    color: var(--white);
    box-shadow: var(--shadow-green);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1300;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-forest);
    border-radius: 1px;
    transition: var(--transition);
    position: absolute;
    left: 4px;
}
.nav__toggle span { top: 15px; }
.nav__toggle span::before { content: ''; top: -8px; }
.nav__toggle span::after  { content: ''; top: 8px; }
.nav__toggle.is-active span { background: transparent; }
.nav__toggle.is-active span::before { top: 0; transform: rotate(45deg); }
.nav__toggle.is-active span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 768px) {
    .nav__toggle { display: block; }
    .nav__links {
        position: absolute;
        top: 76px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        display: none;
        border-top: 1px solid var(--color-border);
        box-shadow: var(--shadow-medium);
    }
    .nav__links.is-open { display: flex; }
    .nav__link {
        width: 100%;
        padding: 16px 24px;
        border-bottom: 1px solid var(--color-border);
        font-size: 1rem;
    }
    .nav__link::after { display: none; }
    .nav__cta { margin: 16px 24px; }
    .nav__inner { position: relative; }
}

/* ======================================================
   HERO
====================================================== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--green-deep);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 1;
}

/* Multi-layer gradient — light from left, dark vignette */
.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(26,46,26,0.62) 0%, rgba(26,46,26,0.25) 55%, rgba(26,46,26,0.08) 100%),
        linear-gradient(to top, rgba(26,46,26,0.65) 0%, transparent 40%);
}

/* Organic curved bottom edge */
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 80px;
    background: var(--color-surface);
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: 760px;
    padding: var(--space-2xl) 0 calc(var(--space-2xl) + 60px);
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sub);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-fresh);
    margin-bottom: var(--space-md);
}
.hero__eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--green-fresh);
    border-radius: 1px;
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 8vw, 6.5rem);
    font-weight: 900;
    line-height: 0.97;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: var(--space-md);
}

/* Green italic accent word */
.hero__headline em {
    color: var(--green-fresh);
    font-style: italic;
}

.hero__sub {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: var(--space-lg);
    font-weight: 300;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--white);
    color: var(--green-forest);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    border-radius: var(--radius-pill);
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
    letter-spacing: -0.01em;
}
.hero__btn:hover {
    background: var(--green-pale);
    box-shadow: 0 12px 40px rgba(255,255,255,0.25);
    transform: translateY(-3px);
    color: var(--green-forest);
}

/* ======================================================
   ABOUT
====================================================== */
.about { background: var(--color-surface); }

.about__text { padding-right: var(--space-lg); }
.about__text .t-heading { margin-bottom: var(--space-md); }
.about__text .t-body p { margin-bottom: 1rem; }
.about__text .t-body strong { color: var(--green-forest); font-weight: 600; }
.about__text .t-body a { color: var(--green-mid); }

.about__img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lift);
}
.about__img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Decorative green corner block */
.about__img::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: -12px;
    width: 80px;
    height: 80px;
    background: var(--green-pale);
    border-radius: var(--radius-md);
    z-index: -1;
}
.about__img::after {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 48px;
    height: 48px;
    background: var(--green-mid);
    border-radius: 50%;
    opacity: 0.25;
    z-index: -1;
}

@media (max-width: 900px) {
    .about__text { padding-right: 0; }
    .about__img { margin-top: var(--space-md); }
}

/* ======================================================
   SERVICES
====================================================== */
.services { background: var(--color-surface-warm); }
.services__header { margin-bottom: var(--space-lg); }

.svc-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

/* Green left border reveal on hover */
.svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--green-bright), var(--green-forest));
    transition: height 0.4s ease;
    border-radius: 2px 0 0 2px;
}
.svc-card:hover::before { height: 100%; }
.svc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

/* Pale green circle watermark */
.svc-card::after {
    content: '';
    position: absolute;
    bottom: -30px; right: -30px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: var(--green-pale);
    pointer-events: none;
}

.svc-card__icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-md);
    background: var(--green-pale);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    font-size: 1.4rem;
    color: var(--green-mid);
}

.svc-card__title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--green-deep);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.svc-card__body {
    color: var(--color-ink-light);
    font-size: 0.9375rem;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}
.svc-card__body p { margin-bottom: 0.75rem; }
.svc-card__body p:last-child { margin-bottom: 0; }
.svc-card__body ul { margin: 0.5rem 0; padding-left: 1.2rem; list-style: disc; }
.svc-card__body li { margin-bottom: 0.35rem; }
.svc-card__body strong { color: var(--green-forest); }

/* ======================================================
   PACKAGES
====================================================== */
.packages { background: var(--color-surface); }
.packages__header { margin-bottom: var(--space-lg); }

.pkg-card {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
}
.pkg-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-green);
}

.pkg-card__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 3px solid var(--green-pale);
}

.pkg-card__body {
    padding: var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pkg-card__title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--green-deep);
    margin-bottom: var(--space-xs);
    letter-spacing: -0.01em;
}

.pkg-card__price {
    font-family: var(--font-sub);
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-mid);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pkg-card__desc {
    color: var(--color-ink-light);
    font-size: 0.9375rem;
    line-height: 1.75;
    flex: 1;
}
.pkg-card__desc p { margin-bottom: 0.75rem; }
.pkg-card__desc ul { margin: 0.5rem 0; padding-left: 1.25rem; list-style: disc; }
.pkg-card__desc li { margin-bottom: 0.35rem; }

/* Includes box */
.includes {
    margin-top: var(--space-lg);
    background: var(--green-mist);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
}

/* Leaf pattern overlay */
.includes::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, var(--green-pale) 0%, transparent 70%);
    pointer-events: none;
}

.includes__title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--green-deep);
    margin-bottom: var(--space-md);
    text-align: center;
    letter-spacing: -0.01em;
}

.includes__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    position: relative;
}

.includes__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    font-family: var(--font-sub);
    font-weight: 600;
    color: var(--color-ink-light);
    letter-spacing: 0.02em;
}

.includes__check {
    width: 22px; height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: var(--green-mid);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
    margin-top: 1px;
}

.closing-text {
    text-align: center;
    margin-top: var(--space-lg);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green-forest);
    font-style: italic;
}
.closing-text p { margin: 0; }

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

/* ======================================================
   CTA BANNER
====================================================== */
.cta-banner {
    background: var(--green-forest);
    position: relative;
    overflow: hidden;
}

/* Organic blob shapes */
.cta-banner::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50% 30% 60% 40%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 300px; height: 300px;
    border-radius: 40% 60% 30% 70%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}

.cta-banner .l-grid--2-align { position: relative; z-index: 2; }

.cta-banner__img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lift);
    border: 3px solid rgba(255,255,255,0.15);
}
.cta-banner__img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.cta-banner__text { padding-left: var(--space-lg); }

.cta-banner__text .t-heading { color: var(--white); margin-bottom: var(--space-md); }
.cta-banner__text .t-accent { background: var(--green-fresh); }
.cta-banner__text .t-accent::after { background: rgba(255,255,255,0.4); }
.cta-banner__text .t-label { color: var(--green-fresh); }
.cta-banner__text .t-body { color: rgba(255,255,255,0.78); }

.cta-banner__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--white);
    color: var(--green-forest);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    border-radius: var(--radius-pill);
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.cta-banner__link:hover {
    background: var(--green-pale);
    color: var(--green-deep);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

@media (max-width: 900px) { .cta-banner__text { padding-left: 0; margin-top: var(--space-md); } }

/* ======================================================
   CONTACT
====================================================== */
.contact { background: var(--color-surface-warm); }
.contact__header { margin-bottom: var(--space-lg); }

.contact__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contact__info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--color-ink-light);
}
.contact__info-item a {
    color: var(--green-forest);
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
}
.contact__info-item a:hover { color: var(--green-mid); }

.contact__info-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-md);
    background: var(--green-pale);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: var(--green-mid);
}

.form__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

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

.form__label {
    display: block;
    font-family: var(--font-sub);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-forest);
    margin-bottom: 6px;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-ink);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    -webkit-appearance: none;
}
.form__input:focus,
.form__textarea:focus {
    border-color: var(--green-mid);
    box-shadow: 0 0 0 3px rgba(58,125,68,0.1);
}
.form__textarea { min-height: 140px; resize: vertical; }

.form__captcha { max-width: 220px; }
.form__honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.form__submit {
    width: 100%;
    padding: 18px;
    background: var(--green-forest);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
    margin-top: var(--space-sm);
}
.form__submit:hover {
    background: var(--green-deep);
    box-shadow: var(--shadow-green);
    transform: translateY(-2px);
}

/* ======================================================
   FOOTER
====================================================== */
.site-footer {
    background: var(--green-deep);
    color: rgba(255,255,255,0.5);
    padding: 48px 0 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Curved top edge */
.site-footer::before {
    content: '';
    position: absolute;
    top: -2px; left: 0; right: 0;
    height: 60px;
    background: var(--color-surface-warm);
    clip-path: ellipse(55% 100% at 50% 0%);
}

.site-footer__social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.site-footer__social a {
    display: inline-flex;
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    transition: all var(--transition);
}
.site-footer__social a:hover {
    background: var(--green-mid);
    border-color: var(--green-mid);
}
.site-footer__social svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.5); transition: fill var(--transition); }
.site-footer__social a:hover svg { fill: var(--white); }

.site-footer__credit {
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
    font-size: 0.85rem;
}
.site-footer__copy {
    position: relative;
    z-index: 1;
}
.site-footer__copy p { margin: 4px 0; font-size: 0.85rem; }

/* Legacy footer selectors */
.footer { background: var(--green-deep); color: rgba(255,255,255,0.5); padding: var(--space-lg) 0; text-align: center; }
.footer__inner { text-align: center; }
.footer__name { color: var(--green-fresh); font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.footer__copy { font-size: 0.8125rem; }

/* ======================================================
   ANIMATIONS
====================================================== */
@media (prefers-reduced-motion: no-preference) {
    .fade-up {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-up.is-visible { opacity: 1; transform: translateY(0); }
}