/* ===========================
   COLORADO GUYS LLC
   Professional Landing Page
   =========================== */

:root {
    --navy: #0A2540;
    --navy-deep: #061829;
    --navy-light: #143459;
    --gold: #C9A961;
    --gold-light: #D4B97A;
    --gold-dark: #A88A47;
    --charcoal: #1A2332;
    --slate: #4A5568;
    --slate-light: #718096;
    --cream: #FAF7F2;
    --bone: #F5F1E8;
    --white: #FFFFFF;
    --line: #E5E1D8;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

    --container: 1200px;
    --radius: 4px;
}

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

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

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--white);
    overflow-x: hidden;
}

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

/* ============ TYPOGRAPHY ============ */

h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.kicker {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2.5rem;
}

.kicker::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin-bottom: 1.25rem;
}

.section-sub {
    font-size: 1.125rem;
    color: var(--slate);
    max-width: 640px;
    line-height: 1.7;
}

/* ============ BUTTONS ============ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    border-radius: var(--radius);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -8px rgba(201, 169, 97, 0.5);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.btn-block {
    width: 100%;
}

/* ============ NAVIGATION ============ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    background: transparent;
    transition: all 0.4s var(--ease);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 var(--line);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
    transition: color 0.3s var(--ease);
}

.nav.scrolled .brand,
.footer .brand {
    color: var(--navy);
}

.footer .brand {
    color: var(--cream);
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 1px solid var(--gold);
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.nav.scrolled .brand-mark {
    background: var(--navy);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.brand-tag {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0 auto;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color 0.3s var(--ease);
    position: relative;
}

.nav.scrolled .nav-links a {
    color: var(--navy);
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}

.nav-links a:hover {
    color: var(--gold);
}

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

.nav-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
}

.nav:not(.scrolled) .nav-cta {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s var(--ease);
}

.nav.scrolled .nav-toggle span {
    background: var(--navy);
}

/* ============ HERO ============ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    padding: 8rem 0 6rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(6, 24, 41, 0.92) 0%, rgba(10, 37, 64, 0.88) 100%),
        radial-gradient(ellipse at top right, var(--navy-light) 0%, var(--navy-deep) 70%);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 97, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 97, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.6;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 60%);
    filter: blur(60px);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.eyebrow-line {
    display: inline-block;
    width: 3rem;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 1;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 0.4s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.hero-sub {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 620px;
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 0.6s forwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 0.8s forwards;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 1s forwards;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.meta-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.meta-divider {
    width: 1px;
    height: 40px;
    background: rgba(201, 169, 97, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    z-index: 2;
}

.scroll-line {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-light);
    animation: scrollDown 2.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

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

/* ============ SECTIONS ============ */

.section {
    padding: 7rem 0;
    position: relative;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 5rem;
}

.section-head .kicker {
    padding-left: 0;
    padding-right: 0;
}

.section-head .kicker::before {
    display: none;
}

.section-head .section-sub {
    margin: 0 auto;
}

.section-head-light .kicker {
    color: var(--gold-light);
}

.section-head-light .section-title {
    color: var(--white);
}

.section-head-light .section-sub {
    color: rgba(255, 255, 255, 0.7);
}

/* ============ SERVICES ============ */

.services {
    background: var(--cream);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--line), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    position: relative;
    transition: all 0.4s var(--ease);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -20px rgba(10, 37, 64, 0.15);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-featured {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.service-card-featured::before {
    background: var(--gold);
    transform: scaleX(1);
}

.service-card-featured .service-title {
    color: var(--white);
}

.service-card-featured .service-desc {
    color: rgba(255, 255, 255, 0.8);
}

.service-card-featured .service-list li {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.1);
}

.service-card-featured .service-icon {
    color: var(--gold);
    background: rgba(201, 169, 97, 0.1);
    border-color: rgba(201, 169, 97, 0.3);
}

.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border-radius: 2px;
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--navy);
    margin-bottom: 1.75rem;
}

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

.service-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.975rem;
    color: var(--slate);
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: var(--charcoal);
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
}

.service-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    margin-right: 0.875rem;
    flex-shrink: 0;
}

/* ============ ABOUT ============ */

.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-lead {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.about-content p {
    color: var(--slate);
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--line);
}

.pillar {
    text-align: left;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

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

.pillar h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.pillar p {
    font-size: 0.875rem;
    color: var(--slate);
    line-height: 1.5;
    margin: 0;
}

.about-visual {
    position: relative;
}

.visual-frame {
    position: relative;
    aspect-ratio: 4/5;
    background:
        linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.visual-frame::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: var(--radius);
    pointer-events: none;
}

.visual-frame::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.2) 0%, transparent 70%);
    filter: blur(40px);
}

.visual-card {
    position: relative;
    text-align: center;
    color: var(--white);
    z-index: 1;
}

.visual-quote-mark {
    font-family: var(--font-serif);
    font-size: 6rem;
    line-height: 0.5;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 700;
}

.visual-quote {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 2rem;
}

.visual-attr {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

/* ============ WHY US ============ */

.why {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 97, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 97, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.why-item {
    padding: 2rem 0;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    position: relative;
}

.why-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1rem;
    line-height: 1;
}

.why-item h3 {
    font-size: 1.375rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.why-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ============ NAV MOBILE ============ */

.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 6rem 2rem 2.5rem;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px -12px rgba(10, 37, 64, 0.14);
    transform: translateY(-110%);
    transition: transform 0.4s var(--ease-out);
    z-index: 98;
    pointer-events: none;
}

.nav-mobile.active {
    transform: translateY(0);
    pointer-events: auto;
}

.nav-mobile ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.75rem;
}

.nav-mobile ul li {
    border-bottom: 1px solid var(--line);
}

.nav-mobile ul li a {
    display: block;
    padding: 1rem 0;
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}

.nav-mobile ul li a:hover {
    color: var(--gold-dark);
    padding-left: 0.5rem;
}

.nav-mobile-cta {
    display: block;
    text-align: center;
    width: 100%;
}

/* ============ CONTACT ============ */

.contact {
    background: var(--cream);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.contact-text .section-title {
    margin-bottom: 1rem;
}

.contact-lead {
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 0;
}

.contact-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    margin-top: 2.25rem;
}

.contact-info-cards {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 16px -6px rgba(10, 37, 64, 0.08);
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem 2rem;
    border-bottom: 1px solid var(--line);
}

.contact-info-card:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--gold-dark);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--slate-light);
    margin-bottom: 0.4rem;
}

.contact-value {
    font-size: 1rem;
    color: var(--navy);
    line-height: 1.5;
    font-weight: 500;
}

.contact-link {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

.contact-link:hover {
    color: var(--gold-dark);
}

/* ============ FOOTER ============ */

.footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand .brand {
    margin-bottom: 1.25rem;
}

.footer-tag {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 300px;
}

.footer h5 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul li,
.footer-col ul li a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s var(--ease);
    line-height: 1.5;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.75rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .visual-frame {
        max-width: 500px;
        margin: 0 auto;
        aspect-ratio: 16/10;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        padding: 7rem 0 4rem;
        min-height: auto;
    }

    .hero-meta {
        gap: 1.5rem;
    }

    .meta-divider {
        display: none;
    }

    .meta-num {
        font-size: 2rem;
    }

    .section {
        padding: 4.5rem 0;
    }

    .section-head {
        margin-bottom: 3rem;
    }

    .about-pillars {
        grid-template-columns: 1fr;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .footer-bottom-inner {
        text-align: center;
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.125rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .visual-quote {
        font-size: 1.125rem;
    }
}

/* ============ ANIMATIONS ON SCROLL ============ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
