:root {
    --navy: #061a31;
    --navy-2: #0a345d;
    --blue: #0f4f86;
    --copper: #b95f27;
    --orange: #eb7626;
    --gold: #e8a95a;
    --ivory: #faf7f2;
    --paper: #fffdf9;
    --ink: #122238;
    --muted: #657386;
    --line: #e5ded5;
    --white: #fff;
    --shadow: 0 20px 60px rgba(6,26,49,.13)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter,Segoe UI,Arial,sans-serif;
    color: var(--ink);
    background: var(--ivory);
    line-height: 1.72
}

main {
    display: block;
    margin: 0;
    padding: 0
}

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

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

.container {
    width: min(1200px,calc(100% - 40px));
    margin: auto
}

.topbar {
    background: var(--navy);
    color: #dce7f1;
    font-size: 12px;
    letter-spacing: .04em
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 6px 0
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #f8f2e9;
    border-bottom: 1px solid rgba(136,86,45,.2);
    box-shadow: 0 6px 28px rgba(6,26,49,.09)
}

.navwrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px
}

.brand {
    display: block;
    flex: 0 0 auto
}

    .brand img {
        width: 100px;
       /* height: 70px;
        object-fit: contain;
        filter: drop-shadow(0 5px 8px rgba(39,22,11,.16))*/
    }

.navlinks {
    display: flex;
    gap: 24px;
    align-items: center;
    font-size: 13px;
    font-weight: 800;
    color: var(--navy)
}

    .navlinks > a:not(.btn) {
        position: relative;
        padding: 29px 0
    }

        .navlinks > a:not(.btn):after {
            content: "";
            position: absolute;
            left: 0;
            right: 100%;
            bottom: 21px;
            height: 2px;
            background: var(--orange);
            transition: .25s
        }

    .navlinks > a:hover:after {
        right: 0
    }

    .navlinks > a:hover {
        color: var(--copper)
    }

.nav-toggle {
    display: none;
    border: 0;
    background: var(--navy);
    color: white;
    border-radius: 8px;
    padding: 10px 13px;
    font-size: 19px
}

.btn, .btn:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 7px;
    padding: 13px 22px;
    min-height: 46px;
    font-family: Inter,Arial,sans-serif;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
    cursor: pointer;
    transition: .25s;
    background: linear-gradient(135deg,var(--orange),var(--copper));
    color: #fff;
    box-shadow: 0 9px 22px rgba(185,95,39,.2)
}

    .btn:hover, .btn:focus {
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(185,95,39,.3);
        color: #fff;
        outline: none
    }

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,.55);
    box-shadow: none
}

.navlinks .nav-cta, .navlinks .nav-cta:visited {
    padding: 12px 17px;
    color: #fff
}

    .navlinks .nav-cta:hover, .navlinks .nav-cta:focus {
        color: #fff;
        background: linear-gradient(135deg,#0f4f86,#061a31)
    }

.actions {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-wrap: wrap;
    margin-top: 28px
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display',Georgia,serif;
    line-height: 1.16;
    margin: 0 0 18px;
    color: var(--navy)
}

h1 {
    font-size: clamp(34px,3.2vw,48px)
}

h2 {
    font-size: clamp(26px,2.5vw,38px)
}

h3 {
    font-size: 20px
}

h4 {
    font-size: 18px
}

p {
    margin: 0 0 18px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 11px;
    font-weight: 800;
    color: var(--copper);
    margin-bottom: 14px
}

    .eyebrow:before {
        content: "";
        width: 32px;
        height: 2px;
        background: var(--orange)
    }

section {
    padding: 84px 0
}

.section-head {
    max-width: 760px;
    margin-bottom: 46px
}

    .section-head.center {
        text-align: center;
        margin-left: auto;
        margin-right: auto
    }

        .section-head.center .eyebrow:after {
            content: "";
            width: 32px;
            height: 2px;
            background: var(--orange)
        }

    .section-head p {
        color: var(--muted);
        font-size: 16px
    }

/* Full, uncropped dynamic banner */
.hero-banner {
    position: relative;
    display: block;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
    background: #eef1f4;
    border-bottom: 1px solid #dfe4e9;
    overflow: hidden;
    line-height: 0
}

.banner-slide {
    display: none;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
    animation: bannerFade .7s ease;
    line-height: 0
}

    .banner-slide.active {
        display: block
    }

    .banner-slide img {
        display: block;
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
        margin: 0;
        padding: 0;
        vertical-align: top
    }

.banner-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3
}

.banner-dot {
    width: 10px;
    height: 10px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: rgba(6,26,49,.35);
    box-shadow: 0 1px 5px rgba(0,0,0,.25)
}

    .banner-dot.active {
        width: 27px;
        border-radius: 8px;
        background: var(--orange)
    }

.banner-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 50%;
    background: rgba(6,26,49,.72);
    color: #fff;
    font-size: 23px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 7px 24px rgba(0,0,0,.22);
    transition: .2s
}

    .banner-arrow:hover, .banner-arrow:focus {
        background: var(--orange);
        transform: translateY(-50%) scale(1.06);
        outline: none
    }

.banner-prev {
    left: 24px
}

.banner-next {
    right: 24px
}

@keyframes bannerFade {
    from {
        opacity: .35
    }

    to {
        opacity: 1
    }
}

.stats {
    position: relative;
    z-index: 4;
    margin-top: -35px
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    background: white;
    border-radius: 14px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border-top: 3px solid var(--orange)
}

.stat {
    padding: 25px 28px;
    border-right: 1px solid #e8ebee
}

    .stat:last-child {
        border: 0
    }

    .stat b {
        display: block;
        color: var(--copper);
        font-size: 26px;
        line-height: 1.2
    }

    .stat span {
        font-size: 12px;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: .06em
    }

.intro-grid, .split-grid {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: 68px;
    align-items: center
}

.copy p {
    color: #536176
}

.copy .lead {
    font-size: 20px;
    color: var(--ink);
    font-weight: 600
}

.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 27px 0
}

.check-item {
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
    font-size: 13px;
    font-weight: 800;
    color: var(--navy)
}

    .check-item:before {
        content: "✓";
        color: var(--orange);
        margin-right: 9px
    }

.prompt-visual {
    min-height: 480px;
    border-radius: 18px;
    background-color: var(--navy);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden
}

    .prompt-visual:after {
        content: "";
        position: absolute;
        inset: 14px;
        border: 1px solid rgba(255,255,255,.38);
        border-radius: 12px;
        pointer-events: none
    }

.visual-ecosystem {
    background-image: linear-gradient(120deg,rgba(6,26,49,.26),rgba(185,95,39,.18)),url('../images/bards-ai-ecosystem.jpg')
}

.visual-kolkata {
    background-image: linear-gradient(90deg,rgba(6,26,49,.62),rgba(6,26,49,.08)),url('../images/kolkata-future-city.jpg')
}

.visual-collaboration {
    background-image: linear-gradient(130deg,rgba(6,26,49,.42),rgba(185,95,39,.2)),url('../images/innovation-collaboration.jpg')
}

.dark-section {
    background: linear-gradient(135deg,#041527,#0a3156);
    color: white;
    position: relative;
    overflow: hidden
}

    .dark-section:before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);
        background-size: 40px 40px
    }

    .dark-section > .container {
        position: relative
    }

    .dark-section h2, .dark-section h3, .dark-section h4 {
        color: white
    }

    .dark-section .section-head p {
        color: #b9c7d5
    }

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

.feature {
    padding: 31px;
    border: 1px solid rgba(255,255,255,.13);
    background: rgba(255,255,255,.055);
    border-radius: 12px;
    transition: .25s
}

    .feature:hover {
        transform: translateY(-5px);
        background: rgba(255,255,255,.09);
        border-color: rgba(232,169,90,.48)
    }

    .feature .number {
        display: block;
        font-size: 11px;
        color: var(--gold);
        letter-spacing: .16em;
        margin-bottom: 16px
    }

    .feature p {
        color: #bac8d5;
        font-size: 14px;
        margin: 0
    }

/* 1-5 supplied image carousel */
.showcase-section {
    background: #f1ece5;
    overflow: hidden
}

.carousel-shell {
    position: relative
}

.image-carousel {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 3px 28px;
    scrollbar-width: none
}

    .image-carousel::-webkit-scrollbar {
        display: none
    }

.showcase-card {
    flex: 0 0 calc(33.333% - 15px);
    scroll-snap-align: start;
    background: white;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 10px 35px rgba(6,26,49,.1);
    transition: .25s
}

    .showcase-card:hover {
        transform: translateY(-5px)
    }

    .showcase-card img {
        width: 100%;
        aspect-ratio: 4/5.55;
        object-fit: cover;
        object-position: top;
        border-radius: 9px
    }

    .showcase-card div {
        padding: 15px 8px 7px
    }

    .showcase-card b {
        display: block;
        color: var(--navy)
    }

    .showcase-card span {
        font-size: 12px;
        color: var(--copper);
        font-weight: 700
    }

.carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 9px;
    margin-top: 18px
}

.carousel-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #cfc4b8;
    background: white;
    color: var(--navy);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: .2s
}

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

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px
}

.experience {
    background: white;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 27px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(6,26,49,.055)
}

    .experience:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(var(--orange),var(--gold))
    }

    .experience .icon {
        width: 46px;
        height: 46px;
        border-radius: 10px;
        background: #fff0e5;
        color: var(--copper);
        display: grid;
        place-items: center;
        font-weight: 900;
        margin-bottom: 20px
    }

    .experience p {
        font-size: 14px;
        color: var(--muted);
        margin: 0
    }

.audience-wrap {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 65px;
    align-items: center
}

.audience-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.audience {
    background: white;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 17px
}

    .audience b {
        display: block;
        color: var(--navy);
        margin-bottom: 4px
    }

    .audience span {
        font-size: 12px;
        color: var(--muted)
    }

.timeline {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    position: relative;
    gap: 24px
}

    .timeline:before {
        content: "";
        position: absolute;
        left: 5%;
        right: 5%;
        top: 19px;
        height: 2px;
        background: linear-gradient(90deg,var(--copper),var(--gold),var(--blue))
    }

.timeline-item {
    position: relative;
    padding-top: 52px
}

    .timeline-item:before {
        content: "";
        position: absolute;
        top: 10px;
        left: 0;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: white;
        border: 5px solid var(--copper);
        z-index: 2
    }

    .timeline-item span {
        color: var(--copper);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .15em
    }

    .timeline-item p {
        font-size: 13px;
        color: var(--muted)
    }

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

.gallery-card {
    background: white;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(6,26,49,.08);
    transition: .3s;
    border: 1px solid #ece6df
}

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

    .gallery-card img {
        width: 100%;
        height: 260px;
        object-fit: cover
    }

    .gallery-card .body {
        padding: 20px
    }

        .gallery-card .body p {
            margin: 0;
            color: var(--copper);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .08em
        }

.video-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 28px
}

.video-card {
    background: white;
    padding: 12px;
    border-radius: 14px;
    box-shadow: var(--shadow)
}

    .video-card iframe {
        width: 100%;
        height: 310px;
        border: 0;
        border-radius: 9px
    }

    .video-card h3 {
        padding: 12px 8px 0
    }

.cta {
    background: linear-gradient(120deg,var(--copper),#743112);
    color: white;
    border-radius: 18px;
    padding: 53px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow)
}

    .cta h2 {
        color: white;
        margin: 0;
        max-width: 720px
    }

/* Simple breadcrumb without banner */
.page-hero {
    padding: 38px 0;
    background: #f5f0e9;
    border-bottom: 1px solid #ded5ca
}

    .page-hero .eyebrow, .page-hero p {
        display: none
    }

    .page-hero h1 {
        font-size: 34px;
        margin: 7px 0 0;
        color: var(--navy)
    }

        .page-hero h1:before {
            content: "Home  /  ";
            font-family: Inter,Arial,sans-serif;
            font-size: 12px;
            font-weight: 700;
            color: var(--copper);
            display: block;
            letter-spacing: .08em;
            margin-bottom: 8px
        }

.content-card {
    background: white;
    border-radius: 14px;
    padding: 34px;
    box-shadow: var(--shadow);
    border: 1px solid #ebe5de
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px
}

    .field.full {
        grid-column: 1/-1
    }

    .field label {
        font-size: 12px;
        font-weight: 800;
        color: var(--navy)
    }

    .field input, .field textarea, .field select {
        width: 100%;
        padding: 13px 14px;
        border: 1px solid #d7dee5;
        border-radius: 7px;
        font: inherit;
        background: #fff
    }

        .field input.btn, .field input[type=submit].btn {
            width: auto;
            min-width: 190px;
            border: 0;
            background: linear-gradient(135deg,var(--orange),var(--copper));
            color: #fff;
            font-family: Inter,Arial,sans-serif;
            font-size: 14px;
            font-weight: 800;
            cursor: pointer;
            box-shadow: 0 9px 22px rgba(185,95,39,.2)
        }

            .field input.btn:hover, .field input[type=submit].btn:hover {
                background: linear-gradient(135deg,#0f4f86,#061a31);
                color: #fff
            }

.form-anchor {
    scroll-margin-top: 120px
}

.captcha-wrap {
    max-width: 100%;
    overflow: hidden;
    padding-top: 4px
}

.captcha-help {
    font-size: 12px;
    color: var(--muted);
    margin: 6px 0 0
}

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

.message {
    display: block;
    margin-top: 15px;
    font-weight: 700
}

.accordion details {
    background: white;
    margin-bottom: 12px;
    border-radius: 10px;
    padding: 20px 24px;
    box-shadow: 0 5px 20px rgba(6,26,49,.06);
    border-left: 3px solid var(--orange)
}

.accordion summary {
    cursor: pointer;
    font-weight: 800;
    color: var(--navy)
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 23px
}

.chip {
    padding: 8px 12px;
    background: white;
    border: 1px solid #e1d7cc;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700
}

.image-frame {
    position: relative
}

    .image-frame img {
        border-radius: 16px;
        box-shadow: var(--shadow)
    }

    .image-frame:after {
        content: "";
        position: absolute;
        inset: 16px -16px -16px 16px;
        border: 2px solid var(--copper);
        border-radius: 16px;
        z-index: -1
    }

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

.empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 45px;
    background: white;
    border-radius: 12px;
    color: var(--muted)
}

.footer {
    background: #031426;
    color: #c7d3df;
    padding: 68px 0 20px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .8fr .9fr 1.1fr;
    gap: 42px
}

.footer h3 {
    color: white;
    font-family: Inter,Arial,sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .1em
}

.footer a {
    display: block;
    margin: 8px 0;
    color: #b8c6d3
}

    .footer a:hover {
        color: var(--gold)
    }

.footer-logo img {
    width: 105px;
    height: 105px;
    object-fit: contain;
    margin-bottom: 15px
}

.footer-tag {
    font-size: 10px;
    color: var(--gold);
    letter-spacing: .16em;
    font-weight: 800
}

.copyright {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 43px;
    padding-top: 20px;
    text-align: center;
    font-size: 12px
}

@media(max-width:1050px) {
    .navlinks {
        gap: 15px;
        font-size: 12px
    }

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

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

@media(max-width:900px) {
    .nav-toggle {
        display: block
    }

    .navlinks {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 82px;
        padding: 20px;
        background: #fbf6ef;
        flex-direction: column;
        box-shadow: var(--shadow);
        align-items: stretch
    }

        .navlinks.open {
            display: flex
        }

        .navlinks > a:not(.btn) {
            padding: 10px
        }

            .navlinks > a:not(.btn):after {
                display: none
            }

    .topbar {
        display: none
    }

    .stats {
        margin-top: 0
    }

    .stats-grid, .feature-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .intro-grid, .split-grid, .audience-wrap, .about-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }

    .showcase-card {
        flex-basis: 47%
    }

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

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

        .timeline:before {
            display: none
        }

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

@media(max-width:600px) {
    .container {
        width: min(100% - 26px,1200px)
    }

    .navwrap {
        min-height: 76px
    }

    .brand img {
        width: 62px;
        height: 62px
    }

    .navlinks {
        top: 76px
    }

    .banner-dots {
        bottom: 7px
    }

    .banner-dot {
        width: 7px;
        height: 7px
    }

    .stats-grid, .feature-grid, .experience-grid, .gallery-grid, .video-grid, .footer-grid, .form-grid, .audience-list, .timeline {
        grid-template-columns: 1fr
    }

    .stat {
        border-right: 0;
        border-bottom: 1px solid #e8ebee
    }

    .field.full {
        grid-column: auto
    }

    .showcase-card {
        flex-basis: 88%
    }

    section {
        padding: 56px 0
    }

    .cta {
        padding: 30px 22px;
        display: block
    }

        .cta .btn {
            margin-top: 22px
        }

    .page-hero {
        padding: 24px 0
    }

        .page-hero h1 {
            font-size: 27px
        }

    .video-card iframe {
        height: 220px
    }

    .check-list {
        grid-template-columns: 1fr
    }

    .prompt-visual {
        min-height: 320px
    }

    .timeline-item {
        padding-top: 34px
    }

        .timeline-item:before {
            top: 0
        }
}

@media(max-width:600px) {
    h1 {
        font-size: 32px
    }

    h2 {
        font-size: 27px
    }

    h3 {
        font-size: 19px
    }

    .banner-arrow {
        width: 36px;
        height: 36px;
        font-size: 17px
    }

    .banner-prev {
        left: 8px
    }

    .banner-next {
        right: 8px
    }

    .content-card {
        padding: 22px
    }

    .field input.btn, .field input[type=submit].btn {
        width: 100%;
        min-width: 0
    }

    .form-anchor {
        scroll-margin-top: 90px
    }
}

@media(max-width:390px) {
    .g-recaptcha {
        transform: scale(.82);
        transform-origin: 0 0;
        margin-bottom: -14px
    }

    .captcha-wrap {
        min-height: 66px
    }
}

/* Compact navigation and balanced typography for phones/tablets. */
@media(max-width:900px) {
    .navlinks {
        gap: 2px;
        padding: 10px 14px;
        max-height: calc(100vh - 82px);
        overflow-y: auto
    }

        .navlinks > a:not(.btn) {
            padding: 8px 10px
        }

        .navlinks .nav-cta {
            min-height: 42px;
            margin-top: 4px;
            padding: 10px 14px
        }
}

@media(max-width:600px) {
    .navlinks {
        top: 76px;
        max-height: calc(100vh - 76px)
    }

    .stats-grid {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }

    .stat {
        padding: 16px 14px;
        border-right: 1px solid #e8ebee;
        border-bottom: 1px solid #e8ebee
    }

        .stat:nth-child(2n) {
            border-right: 0
        }

        .stat:nth-last-child(-n+2) {
            border-bottom: 0
        }

        .stat b {
            font-size: 20px
        }

        .stat span {
            font-size: 9px;
            line-height: 1.35
        }

    h1 {
        font-size: 27px;
        line-height: 1.2
    }

    h2 {
        font-size: 24px;
        line-height: 1.22
    }

    h3 {
        font-size: 18px
    }

    .copy .lead {
        font-size: 16px;
        line-height: 1.55
    }

    .copy p {
        font-size: 14px
    }

    section {
        padding: 44px 0
    }

    .section-head {
        margin-bottom: 30px
    }

    .eyebrow {
        font-size: 9px;
        letter-spacing: .13em
    }
}
