:root{
    --black:#000000;
    --charcoal:#171717;
    --white:#ffffff;
    --cream:#f5f1e8;
    --paper:#fffaf0;
    --stone:#ded6c7;
    --ink:#1d211b;
    --muted:#656b60;
    --line:rgba(0,0,0,.18);
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Gadugi,"Segoe UI",Arial,sans-serif;
    background:var(--cream);
    color:var(--ink);
    line-height:1.65;
}

button,
input,
select,
textarea{
    font-family:Gadugi,"Segoe UI",Arial,sans-serif;
}

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

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

h1,
h2,
h3,
h4{
    font-family:Gadugi,"Segoe UI",Arial,sans-serif;
    font-weight:400;
    line-height:1.08;
}

.container{
    width:min(1220px,92%);
    margin:0 auto;
}

.skip{
    position:absolute;
    left:-999px;
    top:auto;
    background:#fff;
    color:#000;
    padding:10px;
    z-index:999;
}

.skip:focus{
    left:12px;
    top:12px;
}

/* HEADER */

.site-header{
    position:sticky;
    top:0;
    z-index:100;
    background:#000;
    border-bottom:1px solid rgba(255,255,255,.18);
    color:#fff;
}

.nav{
    min-height:84px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:28px;
}

.brand{
    display:flex;
    align-items:center;
    gap:15px;
    color:#fff;
}

.brand img{
    width:112px;
    height:auto;
}

.brand span{
    font-size:12px;
    letter-spacing:.11em;
    text-transform:uppercase;
    line-height:1.35;
    color:#fff;
    font-weight:400;
}

.menu{
    display:flex;
    gap:23px;
    align-items:center;
    font-size:12px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.05em;
}

.menu a,
.menu a:visited,
.menu a:hover,
.menu a:focus,
.menu a[aria-current="page"]{
    color:#fff;
    text-decoration:none;
}

/* BUTTONS */

.nav-button,
.button{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    padding:14px 22px;
    background:#000;
    border:1px solid #fff;
    color:#fff;
    font-size:13px;
    font-weight:600;
    letter-spacing:.06em;
    text-transform:uppercase;
    transition:background .22s ease,border-color .22s ease,color .22s ease;
    cursor:pointer;
}

.nav-button:visited,
.button:visited{
    color:#fff;
}

.nav-button:hover,
.nav-button:focus,
.button:hover,
.button:focus{
    background:#1f1f1f;
    border-color:#fff;
    color:#fff;
}

.button.light{
    background:transparent;
    border-color:#fff;
    color:#fff;
}

.button.light:hover,
.button.light:focus{
    background:rgba(255,255,255,.12);
    border-color:#fff;
    color:#fff;
}

/* HOMEPAGE HERO SLIDER */

.hero,
.hero-slider{
    min-height:690px;
    position:relative;
    overflow:hidden;
    color:#fff;
    display:flex;
    align-items:center;
    background:#000;
}

.hero-slides{
    position:absolute;
    inset:0;
    z-index:0;
}

.hero-slide{
    position:absolute;
    inset:0;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    opacity:0;
    transform:scale(1.02);
    transition:opacity 1.2s ease,transform 6s ease;
}

.hero-slide.active{
    opacity:1;
    transform:scale(1);
}

.hero-slider::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.48),
        rgba(0,0,0,.18) 52%,
        rgba(0,0,0,.03)
    );
    pointer-events:none;
}

.hero .container,
.hero-slider .container{
    position:relative;
    z-index:2;
    padding:92px 0 190px;
}

.hero-copy{
    max-width:650px;
    position:relative;
    z-index:3;
}

.eyebrow{
    color:#000;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.13em;
    margin-bottom:16px;
}

.hero .eyebrow,
.hero-slider .eyebrow{
    color:#fff;
}

.hero h1,
.hero-slider h1{
    font-size:clamp(44px,6vw,78px);
    margin-bottom:24px;
    color:#fff;
}

.hero h1 span,
.hero-slider h1 span{
    color:#fff !important;
}

.rule{
    width:96px;
    height:2px;
    background:#fff;
    margin:0 0 28px;
}

.hero p,
.hero-slider p{
    font-size:20px;
    color:rgba(255,255,255,.92);
    max-width:610px;
}

/* AUDIENCE CARDS */

.audience-panel{
    position:relative;
    z-index:5;
    margin-top:-150px;
}

.audience-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    border:1px solid rgba(255,255,255,.6);
    background:#000;
    box-shadow:0 30px 90px rgba(0,0,0,.24);
}

.audience-card{
    min-height:320px;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:flex-end;
    border-right:1px solid rgba(255,255,255,.45);
}

.audience-card:last-child{
    border-right:0;
}

.audience-card::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(90deg,rgba(0,0,0,.92),rgba(0,0,0,.55),rgba(0,0,0,.08));
}

.audience-card img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.audience-content{
    position:relative;
    z-index:2;
    color:#fff;
    width:min(520px,88%);
    padding:44px;
}

.small-icon{
    width:48px;
    height:48px;
    margin-bottom:22px;
    border:1px solid #fff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
}

.audience-card h2{
    font-size:clamp(31px,3vw,45px);
    margin-bottom:18px;
    color:#fff;
}

.audience-card p{
    font-size:16px;
    color:rgba(255,255,255,.86);
    margin-bottom:28px;
}

/* GENERAL SECTIONS */

.section{
    padding:88px 0;
}

.section.paper{
    background:var(--paper);
}

.section.dark{
    background:#000;
    color:#fff;
}

.section-title{
    font-size:clamp(36px,4vw,58px);
    margin-bottom:24px;
    color:#000;
}

.dark .section-title{
    color:#fff;
}

.lede{
    font-size:19px;
    color:#3b4137;
    max-width:820px;
    margin-bottom:28px;
}

.dark .lede{
    color:rgba(255,255,255,.82);
}

.grid-2{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:70px;
    align-items:start;
}

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

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

.card{
    background:#fff;
    border:1px solid var(--line);
    padding:30px;
    box-shadow:0 18px 44px rgba(0,0,0,.05);
}

.card h3{
    font-size:27px;
    margin-bottom:13px;
    color:#000;
}

.card p{
    color:#50574d;
}

.card .mini{
    font-size:12px;
    letter-spacing:.09em;
    text-transform:uppercase;
    font-weight:600;
    color:#000;
    margin-bottom:12px;
}

/* MEDIA CARDS */

.media-card{
    position:relative;
    min-height:300px;
    overflow:hidden;
    display:flex;
    align-items:flex-end;
    background:#111;
}

.media-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.78));
    z-index:1;
}

.media-card img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .35s ease;
}

.media-card:hover img{
    transform:scale(1.05);
}

.media-card > div{
    position:relative;
    z-index:2;
    color:#fff;
    padding:28px;
}

.media-card h3{
    font-size:29px;
    margin-bottom:10px;
    color:#fff;
}

.media-card p{
    color:rgba(255,255,255,.84);
}

.media-card a,
.media-card a:visited,
.media-card a:hover,
.media-card a:focus{
    color:#fff;
}

/* SECTORS */

.strip-heading{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    gap:34px;
    align-items:center;
    text-align:center;
    margin-bottom:42px;
}

.strip-heading::before,
.strip-heading::after{
    content:"";
    height:1px;
    background:var(--line);
}

.strip-heading h2{
    font-size:clamp(27px,3vw,38px);
}

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

.sector{
    display:grid;
    grid-template-columns:48px 1fr;
    gap:16px;
    align-items:start;
}

.sector-icon{
    width:44px;
    height:44px;
    border:1px solid #000;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
}

.sector h3{
    font-size:14px;
    letter-spacing:.05em;
    text-transform:uppercase;
    font-weight:600;
    margin-bottom:7px;
}

.sector p{
    font-size:15px;
    color:var(--muted);
}

/* INNER PAGE HERO */

.page-hero{
    min-height:420px;
    color:#fff;
    background:
        linear-gradient(90deg,rgba(0,0,0,.72),rgba(0,0,0,.35),rgba(0,0,0,.08)),
        var(--hero) center/cover no-repeat;
    display:flex;
    align-items:center;
}

.page-hero .container{
    padding:80px 0;
}

.page-hero h1{
    font-size:clamp(42px,5vw,70px);
    max-width:850px;
    margin-bottom:22px;
    color:#fff;
}

.page-hero .lede{
    color:rgba(255,255,255,.9);
}

.breadcrumb{
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:18px;
    color:rgba(255,255,255,.78);
}

.breadcrumb a,
.breadcrumb a:hover,
.breadcrumb a:focus{
    color:#fff;
    border-bottom:0;
    text-decoration:none;
}

/* CONTENT */

.content{
    max-width:880px;
}

.content h2{
    font-size:40px;
    margin:34px 0 16px;
}

.content h3{
    font-size:30px;
    margin:26px 0 10px;
}

.content p{
    font-size:18px;
    margin-bottom:17px;
    color:#3c4238;
}

.content ul{
    padding-left:22px;
    margin:12px 0 24px;
}

.content li{
    margin-bottom:8px;
}

.faq{
    display:grid;
    gap:14px;
    margin-top:28px;
}

.faq details{
    background:#fff;
    border:1px solid var(--line);
    padding:22px;
}

.faq summary{
    font-weight:600;
    cursor:pointer;
    color:#000;
}

.faq p{
    margin-top:12px;
    color:#43483f;
}

.quote-panel{
    background:#000;
    color:#fff;
    padding:44px;
    margin-top:34px;
}

.quote-panel p{
    color:rgba(255,255,255,.84);
    font-size:20px;
}

/* CONTACT */

.contact-page{
    background:#000;
    color:#fff;
    padding:92px 0 0;
}

.contact-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:70px;
    align-items:start;
}

.contact-copy .eyebrow{
    color:#fff;
}

.contact-copy h2{
    font-size:clamp(38px,4vw,62px);
    color:#fff;
    margin-bottom:24px;
}

.contact-copy p{
    font-size:18px;
    color:rgba(255,255,255,.84);
    margin-bottom:20px;
}

.contact-details{
    margin-top:36px;
    padding-top:26px;
    border-top:1px solid rgba(255,255,255,.2);
}

.contact-details h3{
    font-size:17px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.06em;
    margin-bottom:16px;
    color:#fff;
}

.contact-details a,
.contact-details a:visited,
.contact-details a:hover,
.contact-details a:focus{
    color:#fff;
    border-bottom:0;
    text-decoration:none;
}

.contact-form-card{
    background:#000;
    padding:42px;
    border:1px solid rgba(255,255,255,.24);
    box-shadow:0 30px 90px rgba(0,0,0,.35);
}

.contact-form-card form{
    display:grid;
    gap:14px;
}

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

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea{
    width:100%;
    border:1px solid #fff;
    background:rgba(255,255,255,.08);
    color:#fff;
    padding:16px;
    font-size:15px;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder{
    color:rgba(255,255,255,.7);
}

.contact-form-card select{
    color:#fff;
}

.contact-form-card option{
    color:#000;
    background:#fff;
}

.contact-form-card textarea{
    min-height:160px;
    resize:vertical;
}

.form-button{
    width:100%;
    background:#000;
    color:#fff;
    border-color:#fff;
}

.form-button:hover,
.form-button:focus{
    background:#1f1f1f;
    color:#fff;
}

.map-band{
    margin-top:90px;
    min-height:330px;
    background:
        linear-gradient(rgba(0,0,0,.58),rgba(0,0,0,.58)),
        url('../images/radstock-map.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
}

.map-card{
    color:#fff;
}

.map-card h3{
    font-size:38px;
    margin-bottom:12px;
    color:#fff;
}

.map-card p{
    max-width:520px;
    color:rgba(255,255,255,.82);
    margin-bottom:18px;
}

.map-card a,
.map-card a:hover,
.map-card a:focus{
    color:#fff;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.06em;
}

/* CTA */

.cta{
    background:
        linear-gradient(rgba(0,0,0,.82),rgba(0,0,0,.82)),
        url('../images/development-land.jpg') center/cover no-repeat;
    color:#fff;
    padding:90px 0;
}

.cta-inner{
    display:grid;
    grid-template-columns:1fr auto;
    gap:40px;
    align-items:center;
}

.cta h2{
    font-size:clamp(36px,4vw,58px);
    max-width:760px;
    margin-bottom:18px;
    color:#fff;
}

.cta p{
    max-width:660px;
    color:rgba(255,255,255,.82);
    font-size:18px;
}

/* FOOTER */

.footer{
    background:#000;
    color:#fff;
    padding:44px 0 24px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr .8fr 1fr;
    gap:40px;
    align-items:start;
    margin-bottom:32px;
}

.footer img{
    width:112px;
}

.footer h3{
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:12px;
    color:#fff;
    font-weight:600;
}

.footer p,
.footer li{
    color:rgba(255,255,255,.78);
    font-size:14px;
}

.footer ul{
    list-style:none;
}

.footer li{
    margin-bottom:7px;
}

.footer a,
.footer a:visited,
.footer a:hover,
.footer a:focus,
.footer a[href^="tel:"],
.footer a[href^="mailto:"]{
    color:#fff;
    text-decoration:none;
    border-bottom:0;
}

.copyright{
    border-top:1px solid rgba(255,255,255,.12);
    padding-top:18px;
    display:flex;
    justify-content:space-between;
    gap:24px;
    font-size:13px;
    color:rgba(255,255,255,.62);
}

/* MISCELLANEOUS */

.seo-summary{
    border-left:4px solid #000;
    background:#fff;
    padding:22px;
    margin:24px 0;
}

.pill-list{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:20px;
}

.pill{
    border:1px solid #000;
    color:#000;
    padding:8px 12px;
    font-size:13px;
    font-weight:600;
}

.index-list{
    columns:2;
    column-gap:36px;
    margin-top:18px;
}

.index-list a{
    display:block;
    padding:6px 0;
    border-bottom:1px solid var(--line);
    color:#000;
}

.feature-list{
    display:grid;
    gap:14px;
    margin-top:28px;
}

.feature{
    border-top:1px solid var(--stone);
    padding-top:14px;
    font-weight:600;
    color:#000;
}

/* RESPONSIVE */

@media(max-width:1050px){
    .menu{
        display:none;
    }

    .audience-grid,
    .grid-2,
    .contact-grid,
    .cta-inner{
        grid-template-columns:1fr;
    }

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

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

@media(max-width:720px){
    .nav{
        min-height:auto;
        padding:16px 0;
    }

    .brand img{
        width:96px;
    }

    .hero .container,
    .hero-slider .container{
        padding:70px 0 170px;
    }

    .audience-panel{
        margin-top:-120px;
    }

    .audience-grid,
    .grid-3,
    .grid-4,
    .sector-grid,
    .form-row,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .audience-card{
        min-height:360px;
    }

    .audience-content{
        padding:30px;
    }

    .strip-heading{
        grid-template-columns:1fr;
    }

    .strip-heading::before,
    .strip-heading::after{
        display:none;
    }

    .section{
        padding:64px 0;
    }

    .contact-form-card{
        padding:28px;
    }

    .copyright{
        flex-direction:column;
    }

    .index-list{
        columns:1;
    }
}

@media(prefers-reduced-motion:reduce){
    .hero-slide{
        transition:opacity .3s ease;
        transform:none;
    }
}


/* FINAL HEADER NAVIGATION RULES */
.site-header .menu a,
.site-header .menu a:link,
.site-header .menu a:visited,
.site-header .menu a:hover,
.site-header .menu a:focus,
.site-header .menu a:active,
.site-header .menu a[aria-current="page"] {
    color: #ffffff !important;
    background: transparent !important;
    text-decoration: none !important;
    border: 0 !important;
    outline-color: #ffffff;
}

.site-header .nav-button,
.site-header .nav-button:link,
.site-header .nav-button:visited,
.site-header .nav-button:hover,
.site-header .nav-button:focus,
.site-header .nav-button:active {
    color: #ffffff !important;
    background: transparent !important;
    border: 1px solid #ffffff !important;
    text-decoration: none !important;
}

/* FINAL CONTACT LINK RULES */
.contact-page .contact-details,
.contact-page .contact-details p,
.contact-page .contact-details strong,
.contact-page .contact-details h3,
.contact-page .contact-details a,
.contact-page .contact-details a:link,
.contact-page .contact-details a:visited,
.contact-page .contact-details a:hover,
.contact-page .contact-details a:focus,
.contact-page .contact-details a:active {
    color: #ffffff !important;
    text-decoration: none !important;
    border-bottom: 0 !important;
}

/* FINAL FOOTER CONTACT LINK RULES */
.footer a[href^="tel:"],
.footer a[href^="mailto:"],
.footer a[href^="tel:"]:link,
.footer a[href^="mailto:"]:link,
.footer a[href^="tel:"]:visited,
.footer a[href^="mailto:"]:visited,
.footer a[href^="tel:"]:hover,
.footer a[href^="mailto:"]:hover,
.footer a[href^="tel:"]:focus,
.footer a[href^="mailto:"]:focus {
    color: #ffffff !important;
    text-decoration: none !important;
    border-bottom: 0 !important;
}