/* ============================================================
   BNMT INVESTMENTS LLC — Site #19 — Forest + Gold Theme
   Colors: #064e3b (forest) #f59e0b (gold) #fefce8 (ivory)
   Text: #1c1917 / #44403c / #78716c
   ============================================================ */

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

:root {
    --forest: #064e3b;
    --forest-light: #0a6b52;
    --forest-dark: #043828;
    --gold: #f59e0b;
    --gold-light: #fbbf24;
    --gold-dark: #d97706;
    --ivory: #fefce8;
    --ivory-dark: #fef9c3;
    --text-dark: #1c1917;
    --text-mid: #44403c;
    --text-light: #78716c;
    --white: #ffffff;
    --section-pad: clamp(4rem, 8vw, 7rem);
    --container-max: 1100px;
    --radius: 12px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-mid);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* --- Utility --- */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--section-pad) 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-dark);
    background: var(--ivory);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

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

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.btn-gold {
    background: var(--gold);
    color: var(--text-dark);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

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

.btn-outline:hover {
    background: var(--ivory);
    color: var(--forest);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(254, 252, 232, 0.25);
}

.btn-outline-dark {
    background: transparent;
    color: var(--forest);
    border-color: var(--forest);
}

.btn-outline-dark:hover {
    background: var(--forest);
    color: var(--ivory);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 78, 59, 0.2);
}

.btn-lg {
    font-size: 1.05rem;
    padding: 1rem 2.5rem;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: var(--forest);
    padding: 0.6rem 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--ivory);
    letter-spacing: -0.02em;
}

.logo-icon {
    font-size: 1.6rem;
    color: var(--gold);
}

.logo-accent {
    color: var(--gold);
}

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

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ivory);
    opacity: 0.85;
    transition: opacity var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover {
    opacity: 1;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--ivory);
    border-radius: 2px;
    transition: all var(--transition);
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* ============================================================
   HERO — Curved Ribbon Banner
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--forest);
    overflow: hidden;
    padding: 6rem 1.5rem 3rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(245, 158, 11, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(6, 78, 59, 0.3) 0%, transparent 60%);
}

/* The curved ribbon */
.hero-ribbon {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin-bottom: 2.5rem;
    z-index: 2;
}

.hero-ribbon-inner {
    position: relative;
    background: var(--ivory);
    padding: 2.5rem 3rem;
    clip-path: polygon(
        0% 0%,
        100% 0%,
        96% 50%,
        100% 100%,
        0% 100%,
        4% 50%
    );
    text-align: center;
}

.hero-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--forest);
    line-height: 1.3;
}

.hero-highlight {
    color: var(--gold-dark);
}

.hero-underline {
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 1.2rem auto 0;
    border-radius: 2px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 640px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--ivory);
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--ivory);
    opacity: 0.6;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    animation: floatDown 2s ease-in-out infinite;
    z-index: 2;
}

.scroll-arrow {
    font-size: 1.2rem;
}

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

/* ============================================================
   SERVICES — Gradient Border Cards
   ============================================================ */
.services {
    background: var(--white);
}

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 840px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: default;
}

.service-card:nth-child(even) {
    background: var(--ivory);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.service-card-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--forest) 0%, var(--gold) 100%);
    border-radius: 3px 0 0 3px;
}

.service-card-body {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem 1.75rem 1.75rem 2rem;
}

.service-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--ivory);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest);
}

.service-icon svg {
    width: 36px;
    height: 36px;
}

.service-card:nth-child(even) .service-icon {
    background: var(--white);
}

.service-info {
    flex: 1;
    min-width: 0;
}

.service-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.service-desc {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.85rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--forest);
    background: var(--ivory-dark);
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    letter-spacing: 0.02em;
}

.service-card:nth-child(even) .tag {
    background: var(--ivory-dark);
}

/* ============================================================
   ABOUT — Vision + Values
   ============================================================ */
.about {
    background: var(--ivory);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-vision {
    text-align: center;
    margin-bottom: 3rem;
}

.vision-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 1rem;
}

.vision-text {
    font-size: 1.02rem;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto;
}

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

.value-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.2rem;
    background: var(--ivory);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
}

.value-icon svg {
    width: 30px;
    height: 30px;
}

.value-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.value-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================================
   INDUSTRIES — Gauge Meter Bars
   ============================================================ */
.industries {
    background: var(--white);
}

.industries-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 760px;
    margin: 0 auto;
}

.industry-bar {
    display: grid;
    grid-template-columns: 220px 1fr 64px;
    align-items: center;
    gap: 1.2rem;
    padding: 0.25rem 0;
}

.industry-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
}

.industry-icon {
    font-size: 1.3rem;
}

.industry-track {
    position: relative;
    height: 14px;
    background: #e5e7eb;
    border-radius: 100px;
    overflow: hidden;
}

.industry-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--fill-width);
    background: linear-gradient(90deg, var(--forest) 0%, var(--forest-light) 60%, var(--gold) 100%);
    border-radius: 100px;
    animation: meterFill 1.2s ease-out forwards;
    transform-origin: left center;
}

@keyframes meterFill {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.industry-pct {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--forest);
    font-family: 'Playfair Display', Georgia, serif;
    text-align: right;
}

/* ============================================================
   APPROACH — Gantt Bars
   ============================================================ */
.approach {
    background: var(--ivory);
}

.gantt-chart {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.gantt-row {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: box-shadow var(--transition);
}

.gantt-row:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.gantt-label {
    flex-shrink: 0;
    width: 220px;
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    background: var(--white);
    z-index: 1;
}

.gantt-phase {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-dark);
}

.gantt-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.gantt-timeline {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.gantt-track {
    flex: 1;
    padding: 1rem 1.2rem 1rem 0;
    min-width: 0;
}

.gantt-bar {
    height: 38px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 1rem;
    width: var(--bar-width);
    min-width: 90px;
    transition: width 0.6s ease-out;
}

.gantt-bar-forest {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
    color: var(--ivory);
}

.gantt-bar-gold {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: var(--text-dark);
}

.gantt-bar-label {
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.gantt-footer {
    max-width: 760px;
    margin: 1.5rem auto 0;
    text-align: center;
}

.gantt-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.legend-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 0.2rem;
}

.legend-forest {
    background: var(--forest);
}

.legend-gold {
    background: var(--gold);
    margin-left: 1rem;
}

.gantt-note {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

/* ============================================================
   CONTACT — Phone Dialer Card
   ============================================================ */
.contact {
    background: var(--white);
}

.contact-wrapper {
    display: flex;
    justify-content: center;
}

.phone-card {
    background: var(--white);
    border: 2px solid var(--ivory);
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}

.phone-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.phone-card-top {
    background: var(--forest);
    padding: 2.5rem 2rem 2rem;
    display: flex;
    justify-content: center;
}

.phone-icon-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ringPulse 2.5s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 0 0 16px rgba(245, 158, 11, 0); }
}

.phone-icon-large {
    font-size: 2.4rem;
}

.phone-card-body {
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
}

.phone-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.phone-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--forest);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
    transition: color var(--transition);
    display: block;
    margin-bottom: 0.5rem;
}

.phone-number:hover {
    color: var(--gold-dark);
}

.phone-hours {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.phone-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-phone,
.btn-email {
    width: 100%;
    justify-content: center;
}

.phone-card-footer {
    background: var(--ivory);
    padding: 1rem 1.5rem;
    text-align: center;
}

.phone-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--text-mid);
}

.address-icon {
    font-size: 1rem;
}

/* ============================================================
   CTA — Quote Testimonial
   ============================================================ */
.cta {
    background: var(--forest);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
}

.cta-container {
    max-width: 720px;
    margin: 0 auto;
    padding: var(--section-pad) 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-quote-mark {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 6rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: -1rem;
}

.cta-quote p {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.cta-cite {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ivory);
    opacity: 0.85;
    margin-bottom: 2.5rem;
    font-style: normal;
}

.cta-action {
    display: flex;
    justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--forest-dark);
    color: var(--ivory);
    padding: 3.5rem 0 0;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--ivory);
    margin-bottom: 0.8rem;
}

.footer-desc {
    font-size: 0.88rem;
    opacity: 0.7;
    line-height: 1.6;
    max-width: 320px;
}

.footer-col-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.88rem;
    opacity: 0.7;
    transition: opacity var(--transition), color var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-contact li {
    font-size: 0.88rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(254, 252, 232, 0.12);
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.55;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .industry-bar {
        grid-template-columns: 1fr 1fr 48px;
        gap: 0.6rem;
    }

    .industry-label {
        grid-column: 1;
    }

    .industry-track {
        grid-column: 2;
    }

    .industry-pct {
        grid-column: 3;
    }

    .gantt-label {
        width: 170px;
        padding: 0.8rem 1rem;
    }

    .gantt-track {
        padding: 0.8rem 1rem 0.8rem 0;
    }
}

@media (max-width: 700px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: var(--forest);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transition: right var(--transition);
        box-shadow: -4px 0 32px rgba(0,0,0,0.3);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-ribbon-inner {
        padding: 1.8rem 1.5rem;
        clip-path: polygon(
            0% 0%,
            100% 0%,
            94% 50%,
            100% 100%,
            0% 100%,
            6% 50%
        );
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .service-card-body {
        flex-direction: column;
        gap: 0.75rem;
    }

    .service-icon {
        width: 44px;
        height: 44px;
    }

    .service-icon svg {
        width: 28px;
        height: 28px;
    }

    .industry-bar {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    .industry-label {
        grid-column: auto;
    }

    .industry-track {
        grid-column: auto;
    }

    .industry-pct {
        grid-column: auto;
        text-align: left;
    }

    .gantt-row {
        flex-direction: column;
        align-items: stretch;
    }

    .gantt-label {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.7rem 1rem;
    }

    .gantt-track {
        padding: 0 1rem 0.8rem;
    }

    .gantt-bar {
        width: 100% !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-ribbon-inner {
        padding: 1.4rem 1.2rem;
    }

    .cta-quote p {
        font-size: 1.15rem;
    }

    .phone-number {
        font-size: 1.45rem;
    }
}

/* --- In-View Animation --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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