/* Stafford Nut & Bolt — shared layout */
:root {
    --orange: #f58220;
    --orange-dark: #d66d12;
    --black: #000;
    --charcoal: #1a1818;
    --grey-hero: #252525;
    --grey-team-bg: #d9d9d9;
    --white: #fff;
    --font-head: 'Oswald', 'Montserrat', Arial, sans-serif;
    --font-body: 'Montserrat', Arial, sans-serif;
    --font-script: 'Dancing Script', cursive;
    --font-script-alt: 'Great Vibes', cursive;
    --container: 1120px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    margin: 0;
    min-height: 100%;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white);
    background: var(--black);
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    color: inherit;
}

#main {
    flex: 1 0 auto;
}

.site-header {
    background: var(--orange);
    border-bottom: 2px solid var(--black);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    height: 60px;
    min-height: 60px;
    max-height: 60px;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
    box-sizing: border-box;
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 60px;
    padding: 0;
    text-decoration: none;
    background: transparent;
    border: none;
}

.header-logo img {
    display: block;
    height: 60px;
    width: auto;
    max-height: 60px;
    object-fit: contain;
}

.header-logo:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 4px;
}

.header-spacer {
    flex: 1;
    min-width: 1rem;
}

.header-nav {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0.5rem 1.25rem;
}

.header-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem 1.75rem;
}

.nav-link {
    font-family: var(--font-head);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 1rem;
    color: var(--white);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding: 0.35rem 0;
}

.nav-link:hover,
.nav-link:focus-visible {
    border-bottom-color: var(--white);
    outline: none;
}

.nav-link.is-active {
    border-bottom-color: var(--white);
}

.has-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.dropdown-toggle {
    width: 1.75rem;
    height: 1.75rem;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.dropdown-toggle::after {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--white);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    margin: 0;
    padding: 0.35rem 0;
    list-style: none;
    background: var(--black);
    border: 2px solid var(--black);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s ease, visibility 0.15s;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1rem;
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    color: var(--white);
    text-decoration: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
    background: var(--orange);
    color: var(--black);
    outline: none;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--black);
    border: 2px solid var(--black);
    cursor: pointer;
    padding: 0 6px;
}

.mobile-menu-btn span {
    display: block;
    height: 2px;
    background: var(--white);
}

.mobile-nav {
    background: var(--black);
    border-bottom: 2px solid var(--orange);
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0.75rem 1.25rem 1rem;
}

.mobile-nav a {
    display: block;
    padding: 0.6rem 0;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: var(--white);
    border-bottom: 1px solid #333;
}

@media (max-width: 900px) {
    .header-spacer {
        display: none;
    }

    .header-nav .header-nav-list {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        margin-left: auto;
    }

    .has-dropdown .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: 0;
        background: #111;
        margin-top: 0.25rem;
        display: none;
    }

    .has-dropdown.is-open .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .has-dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .has-dropdown.is-open:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

.site-footer {
    background: #231f20;
    color: var(--white);
    padding: 2.5rem 1.25rem 1.5rem;
    margin-top: 0;
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(80px, 140px) 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-brand {
    align-self: start;
}

.footer-brand .footer-logo-mark {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.footer-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-city {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 1.1rem;
    color: var(--orange);
    margin: 0 0 0.75rem;
}

.footer-col p {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
    color: #e8e8e8;
}

.footer-col a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-line {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-icon {
    display: flex;
    opacity: 0.85;
}

.footer-rule {
    max-width: var(--container);
    margin: 2rem auto 0;
    height: 3px;
    background: var(--orange);
}

.footer-copy {
    text-align: center;
    font-size: 0.75rem;
    color: #aaa;
    margin: 1rem 0 0;
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        justify-self: center;
    }

    .footer-locations {
        grid-template-columns: 1fr;
    }

    .footer-line {
        justify-content: center;
    }
}

/* Home */
.page-home .home-hero {
    display: flex;
    flex-direction: column;
}

.page-home .home-hero-media {
    background: #111;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
}

.page-home .home-hero-picture {
    margin: 0;
    width: 100%;
    max-width: 1600px;
}

.page-home .home-hero-picture img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    vertical-align: bottom;
}

.page-home .home-hero-content {
    text-align: center;
    background: linear-gradient(160deg, var(--grey-hero) 0%, var(--black) 55%);
    padding: 4rem 1.25rem 4.5rem;
    width: 100%;
}

.page-home .home-hero-content-inner {
    max-width: 720px;
    margin: 0 auto;
}

.page-home .home-hero h1 {
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 0.04em;
    margin: 0 0 1rem;
    line-height: 1.1;
}

.page-home .home-hero .lead {
    max-width: 560px;
    margin: 0 auto 2rem;
    color: #ccc;
    font-size: 1.05rem;
}

.page-home .home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn {
    display: inline-block;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    text-decoration: none;
    border: 2px solid var(--black);
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn-primary {
    background: var(--orange);
    color: var(--black);
    box-shadow: 6px 6px 0 var(--black);
}

.btn-primary:hover {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0 var(--black);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    box-shadow: 6px 6px 0 var(--orange);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0 var(--orange);
}

/* Services page */
body.page-services {
    background-color: #231f20;
}

/* Services hero — two equal-height bordered panels */
.page-services .services-hero {
    background: #231f20;
    padding: 3rem 1.25rem 2.5rem;
    border-bottom: 3px solid var(--orange);
}

.services-hero-inner {
    max-width: var(--container);
    margin: 0 auto;
}

.services-hero-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    border: 2px solid var(--white);
    background: #231f20;
}

.services-hero-title-panel {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border-right: 2px solid var(--white);
    min-height: 100%;
}

.services-hero-hatch {
    width: 14px;
    flex-shrink: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.85),
        rgba(255, 255, 255, 0.85) 2px,
        transparent 2px,
        transparent 5px
    );
    opacity: 0.45;
}

.services-hero-title-body {
    flex: 1;
    min-width: 0;
    padding: 1.35rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
}

.services-hero h1 {
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: clamp(2.85rem, 6.5vw, 4.35rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    margin: 0;
    line-height: 1.02;
    color: var(--white);
}

.services-hero-rule {
    height: 2px;
    background: var(--white);
    width: 100%;
    margin: 1rem 0 1.1rem;
    flex-shrink: 0;
}

.services-tagline {
    margin: 0;
    padding: 0;
    line-height: 1.35;
}

.services-tagline .line {
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    color: var(--orange);
    letter-spacing: 0.06em;
    font-weight: 700;
}

.services-tagline .script {
    font-family: var(--font-script);
    text-transform: none;
    font-weight: 600;
    font-size: clamp(1.45rem, 2.6vw, 1.85rem);
    color: var(--orange);
    margin: 0 0.2rem;
}

.services-hero-intro-panel {
    padding: 1.35rem 1.5rem 1.5rem;
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.65;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.services-hero-intro-panel p {
    margin: 0;
}

.services-hero-intro-panel .accent {
    color: var(--orange);
    font-weight: 700;
}

.page-services .services-list {
    position: relative;
    padding: 3rem 1.25rem 4rem;
    background: #000;
    overflow: hidden;
}

.services-bg-stamp {
    pointer-events: none;
    position: absolute;
    top: 8%;
    right: -18%;
    width: min(92vw, 920px);
    aspect-ratio: 1;
    opacity: 0.12;
    background: url('/img/services/stafford-bg-stamp.png') center / contain no-repeat;
    filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
    .services-bg-stamp {
        right: -28%;
        width: min(110vw, 720px);
        top: 12%;
        opacity: 0.1;
    }
}

.services-timeline {
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
    padding-left: 2rem;
    border-left: 3px solid var(--orange);
}

.service-block {
    position: relative;
    padding-bottom: 3.5rem;
    padding-left: 1.5rem;
}

.service-block:last-child {
    padding-bottom: 0;
}

.service-block::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.35rem;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid var(--orange);
    transform: translateX(-1px);
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.service-block h2 {
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: clamp(1.85rem, 3.2vw, 2.5rem);
    letter-spacing: 0.04em;
    color: var(--white);
    margin: 0 0 0.75rem;
    line-height: 1.15;
}

.service-block p {
    margin: 0;
    color: #d5d5d5;
    font-size: 0.95rem;
}

.service-visual {
    position: relative;
    border: 2px solid var(--white);
    background: #000;
    overflow: hidden;
}

.service-visual img.photo {
    display: block;
    width: 100%;
    filter: grayscale(1);
}

.service-visual img.overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: soft-light;
    opacity: 0.85;
    pointer-events: none;
}

@media (max-width: 900px) {
    .services-hero-bento {
        grid-template-columns: 1fr;
    }

    .services-hero-title-panel {
        border-right: none;
        border-bottom: 2px solid var(--white);
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-visual {
        order: -1;
    }
}

/* History */
body.page-history {
    --history-max-width: 1320px;
}

.page-history .history-main {
    padding: 3rem clamp(0.5rem, 2vw, 0.85rem) 4rem;
    background: var(--charcoal);
}

.history-layout {
    max-width: var(--history-max-width, 1320px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    gap: 2rem;
    align-items: start;
}

.history-title-grid {
    display: grid;
    grid-template-columns: 16px 1fr;
    align-items: stretch;
    margin-bottom: 2rem;
    border: 2px solid var(--white);
    background: #231f20;
}

.history-title-hatch {
    border-right: 2px solid var(--white);
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0.9) 2px,
        transparent 2px,
        transparent 5px
    );
    opacity: 0.4;
    min-height: 100%;
}

.history-title-panel {
    display: grid;
    grid-template-rows: auto auto;
    min-width: 0;
}

.history-title-top {
    border-bottom: 2px solid var(--white);
    padding: 1.35rem 1.5rem 1.25rem;
}

.history-title-heading {
    margin: 0;
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: clamp(2.85rem, 7.5vw, 4.75rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.03em;
}

.history-title-our {
    color: var(--white);
}

.history-title-hi {
    color: var(--white);
}

.history-title-story {
    color: var(--orange);
}

.history-title-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 0;
}

.history-title-established {
    border-right: 2px solid var(--white);
    padding: 1.15rem 1.35rem 1.25rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.35em;
    white-space: nowrap;
}

.history-established-script {
    font-family: var(--font-script);
    color: var(--orange);
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.15;
}

.history-established-year {
    font-family: var(--font-script);
    color: var(--orange);
    font-weight: 600;
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.15;
}

.history-title-location {
    background: var(--orange);
    color: var(--black);
    font-family: var(--font-head);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.07em;
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    padding: 1.15rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

@media (max-width: 560px) {
    .history-title-bottom {
        grid-template-columns: 1fr;
    }

    .history-title-established {
        border-right: none;
        border-bottom: 2px solid var(--white);
    }
}

.history-body p {
    color: #e8e8e8;
    margin: 0 0 1rem;
    font-size: 0.95rem;
}

.history-media {
    position: relative;
}

.history-media .history-photo {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

@media (max-width: 900px) {
    .history-layout {
        grid-template-columns: 1fr;
    }
}

.page-history .history-rule {
    height: 3px;
    background: var(--orange);
    max-width: var(--history-max-width, 1320px);
    margin: 0 auto;
}

/* Team */
body.page-team {
    background-color: #fff;
    position: relative;
}

body.page-team::before,
body.page-team::after {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    width: min(120px, 14vw);
    z-index: 0;
    pointer-events: none;
    background-image: url('/img/company/stafford-bg-texture.png');
    background-repeat: repeat-y;
    background-size: 100% auto;
    background-position: center top;
}

body.page-team::before {
    left: 0;
}

body.page-team::after {
    right: 0;
}

body.page-team #main,
body.page-team .site-footer {
    position: relative;
    z-index: 1;
}

body.page-team #main {
    color: var(--black);
}

.page-team .team-shell {
    max-width: 1040px;
    margin: 0 auto;
    padding: 2.5rem 1rem 3.5rem;
    position: relative;
    z-index: 1;
}

.team-panel {
    background: var(--white);
    border: 4px solid var(--black);
    box-shadow: 12px 12px 0 var(--orange);
    overflow: visible;
}

.team-head {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-bottom: 2px solid var(--black);
}

.team-head h1 {
    margin: 0;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 1.1rem 1.25rem 1.15rem;
    font-size: clamp(2.15rem, 5.5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.05;
    border-right: 2px solid var(--black);
    background: var(--white);
}

.team-head .sub {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    text-align: center;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 1.1rem 1.25rem 1.15rem;
    font-size: clamp(1.35rem, 3.4vw, 2.15rem);
    font-weight: 700;
    line-height: 1.25;
    background: var(--orange);
    color: var(--black);
}

.team-hero-wrap {
    position: relative;
    border-bottom: 2px solid var(--black);
    overflow: visible;
}

.team-hero-wrap img.hero {
    display: block;
    width: 100%;
    filter: grayscale(1);
    max-height: 380px;
    object-fit: cover;
}

.team-hero-wrap .mascot {
    position: absolute;
    right: 5%;
    bottom: 0;
    max-width: min(220px, 32vw);
    width: auto;
    height: auto;
    z-index: 3;
    transform: translateY(42%);
    filter: drop-shadow(4px 4px 0 var(--black));
    pointer-events: none;
}

.team-directory {
    padding: 4.5rem 1.25rem 2rem;
    position: relative;
    z-index: 1;
    background: var(--white);
}

.team-section {
    margin-bottom: 2.5rem;
}

.team-section:last-child {
    margin-bottom: 0;
}

.team-section-head {
    display: grid;
    grid-template-columns: 16px 1fr;
    align-items: stretch;
    margin: 0 0 0.65rem;
    border: 2px solid var(--black);
    background: var(--white);
}

.team-section-hatch {
    border-right: 2px solid var(--black);
    background: repeating-linear-gradient(
        -45deg,
        var(--black),
        var(--black) 2px,
        transparent 2px,
        transparent 5px
    );
    opacity: 0.35;
    min-height: 100%;
}

.team-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.1rem 0.9rem;
    min-width: 0;
}

.team-section-title h2 {
    margin: 0;
    flex-shrink: 0;
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    font-weight: 700;
    color: var(--black);
}

.team-section-rule {
    flex: 1;
    height: 3px;
    background: var(--black);
    min-width: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 2px solid var(--black);
}

.team-cell {
    padding: 1rem 1rem 1.1rem;
    border-right: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    font-size: 0.88rem;
    background: var(--white);
}

.team-cell:nth-child(3n) {
    border-right: none;
}

.team-cell .name {
    display: inline-block;
    font-weight: 800;
    text-transform: uppercase;
    font-family: var(--font-head);
    letter-spacing: 0.03em;
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
    background: #e3e3e3;
    padding: 0.2em 0.45em 0.15em;
    line-height: 1.25;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.team-cell .title {
    margin: 0 0 0.35rem;
    color: #222;
}

.team-cell a.email {
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: break-all;
}

@media (max-width: 900px) {
    .team-head {
        grid-template-columns: 1fr;
    }

    .team-head h1 {
        border-right: none;
        border-bottom: 2px solid var(--black);
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-cell:nth-child(3n) {
        border-right: 2px solid var(--black);
    }

    .team-cell:nth-child(2n) {
        border-right: none;
    }
}

@media (max-width: 560px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-cell {
        border-right: none;
    }

    .team-hero-wrap .mascot {
        right: 50%;
        transform: translate(50%, 38%);
        max-width: min(200px, 55vw);
    }

    .team-directory {
        padding-top: 5rem;
    }
}

/* Contact */
.page-contact .contact-section {
    padding: 3rem 1.25rem 4rem;
    background: var(--charcoal);
}

.contact-wrap {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.page-contact h1 {
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    letter-spacing: 0.04em;
    margin: 0 0 1rem;
    color: var(--white);
}

.contact-blurb {
    color: #ccc;
    font-size: 0.95rem;
    margin: 0 0 1.75rem;
    line-height: 1.55;
}

.contact-details {
    border: 2px solid var(--orange);
    padding: 1.35rem 1.5rem 1.5rem;
    background: rgba(0, 0, 0, 0.35);
    text-align: center;
}

.contact-details h2 {
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: 1rem;
    color: var(--orange);
    margin: 1.25rem 0 0.5rem;
    letter-spacing: 0.06em;
}

.contact-details h2:first-child {
    margin-top: 0;
}

.contact-details p,
.contact-details a {
    margin: 0 0 0.35rem;
    font-size: 0.9rem;
    color: #eee;
}

.contact-details a {
    color: var(--orange);
}
