/* M&H General Construction - main stylesheet */

:root {
    --navy: #0a1d48;
    --navy-deep: #07142f;
    --navy-mid: #13306f;
    --blue: #0c53ed;
    --blue-dark: #0a44c4;
    --amber: #f2a51a;
    --amber-dark: #de9108;
    --ink: #1d2433;
    --text: #3d4556;
    --muted: #6a7282;
    --line: #dde2ea;
    --gray: #f2f4f7;
    --ivory: #f7f5ef;
    --white: #ffffff;

    --font-head: "Montserrat", Arial, Helvetica, sans-serif;
    --font-body: "Roboto", Arial, Helvetica, sans-serif;

    --container: 1170px;
    --gutter: 20px;
    --radius: 3px;
    --shadow: 0 10px 35px rgba(10, 29, 72, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--blue-dark);
    text-decoration: none;
}

a:hover {
    color: var(--navy);
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    color: var(--ink);
    line-height: 1.25;
    margin: 0 0 0.6em;
}

p {
    margin: 0 0 1.1em;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.icon {
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
    vertical-align: -0.125em;
}

.container {
    width: 100%;
    max-width: calc(var(--container) + var(--gutter) * 2);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.skip-link {
    position: absolute;
    left: 10px;
    top: -60px;
    z-index: 999;
    padding: 10px 16px;
    background: var(--amber);
    color: var(--navy);
    font-weight: 700;
}

.skip-link:focus {
    top: 10px;
}

:focus-visible {
    outline: 3px solid var(--amber);
    outline-offset: 2px;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 26px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn::after {
    content: "\203A";
    font-size: 1.35em;
    line-height: 0.8;
    transition: transform 0.2s ease;
}

.btn:hover::after {
    transform: translateX(3px);
}

.btn--lg {
    padding: 17px 34px;
    font-size: 14.5px;
}

.btn--block {
    width: 100%;
}

.btn--amber {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--navy);
    box-shadow: 0 4px 14px rgba(242, 165, 26, 0.35);
}

.btn--amber:hover,
.btn--amber:focus-visible {
    background: var(--amber-dark);
    border-color: var(--amber-dark);
    color: var(--navy);
    box-shadow: 0 8px 20px rgba(242, 165, 26, 0.45);
}

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

.btn--outline-navy:hover,
.btn--outline-navy:focus-visible {
    background: var(--navy);
    color: var(--white);
}

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

.btn--navy:hover,
.btn--navy:focus-visible {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.btn--outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.9);
    color: var(--white);
}

.btn--outline-light:hover,
.btn--outline-light:focus-visible {
    background: var(--white);
    color: var(--navy);
}

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

.btn--light:hover,
.btn--light:focus-visible {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--navy);
}

/* Utility bar */

.utility-bar {
    background: var(--blue);
    color: var(--white);
    font-size: 13px;
}

.utility-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-height: 36px;
}

.utility-bar__left,
.utility-bar__right {
    display: flex;
    align-items: center;
    gap: 26px;
}

.utility-bar a,
.utility-bar span {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.utility-bar a:hover {
    color: var(--white);
    text-decoration: underline;
}

.utility-bar__license {
    font-weight: 500;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 2px 14px rgba(10, 29, 72, 0.08);
}

.site-header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 104px;
    transition: min-height 0.25s ease;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.site-logo img {
    width: auto;
    height: 84px;
    max-width: 260px;
    object-fit: contain;
    transition: height 0.25s ease;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 34px;
}

.header-info__item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
}

.header-info__item:hover {
    color: var(--blue-dark);
}

.header-info__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--amber);
    color: var(--navy);
    font-size: 19px;
}

.header-info__text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.header-info__label {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
}

.header-info__text strong {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}

.menu-toggle {
    display: none;
}

.main-nav {
    background: var(--navy);
}

.main-nav__list {
    display: flex;
    align-items: stretch;
    gap: 4px;
}

.main-nav__list > li {
    position: relative;
}

.main-nav__list > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 52px;
    padding: 0 18px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.main-nav__list > li:first-child > a {
    padding-left: 0;
}

.main-nav__list > li > a:hover,
.main-nav__list > li > a:focus-visible,
.main-nav__list > li > a.is-active {
    color: var(--amber);
}

.main-nav .icon {
    font-size: 16px;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    padding: 8px 0;
    background: var(--white);
    border-top: 3px solid var(--amber);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 9px 20px;
    font-size: 14px;
    color: var(--ink);
}

.dropdown a:hover,
.dropdown a:focus-visible {
    background: var(--gray);
    color: var(--blue-dark);
}

.site-header.is-condensed .site-header__top {
    min-height: 78px;
}

.site-header.is-condensed .site-logo img {
    height: 62px;
}

/* Hero slider */

.hero {
    position: relative;
    height: clamp(460px, calc(100vh - 192px), 640px);
    background: var(--navy);
    overflow: hidden;
}

.hero__slides,
.hero__slide {
    position: absolute;
    inset: 0;
}

.hero__slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease, visibility 0.9s;
}

.hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    transition: transform 7s ease-out;
}

.hero__slide.is-active .hero__bg {
    transform: scale(1);
}

.hero__slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 20, 47, 0.86) 0%, rgba(7, 20, 47, 0.62) 42%, rgba(7, 20, 47, 0.12) 78%);
}

.hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 70px;
}

.hero__title {
    max-width: 640px;
    margin-bottom: 16px;
    font-size: clamp(34px, 3.7vw, 52px);
    font-weight: 800;
    line-height: 1.12;
    color: var(--white);
}

.hero__text {
    max-width: 540px;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero__slide .hero__title,
.hero__slide .hero__text,
.hero__slide .hero__actions {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero__slide.is-active .hero__title {
    opacity: 1;
    transform: none;
    transition-delay: 0.3s;
}

.hero__slide.is-active .hero__text {
    opacity: 1;
    transform: none;
    transition-delay: 0.5s;
}

.hero__slide.is-active .hero__actions {
    opacity: 1;
    transform: none;
    transition-delay: 0.7s;
}

.hero__arrow {
    position: absolute;
    top: calc(50% - 35px);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 0.2s ease;
}

.hero__arrow:hover {
    background: var(--amber);
    color: var(--navy);
}

.hero__arrow--prev {
    left: 18px;
}

.hero__arrow--next {
    right: 18px;
}

.hero__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 110px;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero__dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.hero__dots button.is-active {
    background: var(--amber);
    border-color: var(--amber);
}

/* Overlapping paths panel */

.paths {
    position: relative;
    z-index: 5;
    margin-top: -90px;
}

.paths__panel {
    padding: 38px 40px 42px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.paths__title {
    margin-bottom: 26px;
    font-size: 30px;
    text-align: center;
}

.paths__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.paths__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    text-align: center;
}

.paths__image {
    display: block;
    width: 100%;
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: var(--radius);
}

.paths__image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.paths__image:hover img {
    transform: scale(1.04);
}

.paths__item h3 {
    margin-bottom: 8px;
    font-size: 19px;
}

.paths__item p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

/* Sections */

.section {
    padding: 80px 0;
}

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

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

.section-title {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 24px;
    font-size: 32px;
    font-weight: 700;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--amber);
}

/* About intro */

.about-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
}

.about-intro__copy .section-title {
    max-width: 520px;
}

.about-intro__points {
    margin: 4px 0 26px;
}

.about-intro__points li {
    position: relative;
    padding: 6px 0 6px 26px;
    color: var(--ink);
    font-weight: 500;
}

.about-intro__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 12px;
    height: 7px;
    border-left: 3px solid var(--blue);
    border-bottom: 3px solid var(--blue);
    transform: rotate(-45deg);
}

.about-intro__call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
}

.about-intro__call .icon {
    color: var(--blue);
}

.about-intro__media {
    position: relative;
}

.about-intro__media img {
    width: 100%;
    aspect-ratio: 4 / 3.3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-intro__more {
    position: absolute;
    left: -24px;
    bottom: 28px;
}

/* Services grid */

.services-grid__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 10px;
}

.service-card {
    display: flex;
    flex-direction: column;
    width: calc((100% - 72px) / 4);
    min-width: 0;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.88);
}

.service-card__image {
    display: block;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card__image:hover img {
    transform: scale(1.05);
}

.service-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px 20px 22px;
    text-align: center;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 17px;
}

.service-card h3 a {
    color: var(--white);
}

.service-card h3 a:hover {
    color: var(--amber);
}

.service-card p {
    flex: 1;
    margin-bottom: 18px;
    font-size: 14.5px;
    line-height: 1.6;
}

/* Take-down band */

.takedown {
    padding: 70px 0 20px;
}

.takedown__band {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) auto;
    align-items: center;
    gap: 36px;
    padding: 0 40px 0 30px;
    min-height: 130px;
    background: var(--blue);
    border-radius: var(--radius);
}

.takedown__image {
    align-self: stretch;
    position: relative;
}

.takedown__image img {
    position: absolute;
    left: 0;
    bottom: -26px;
    width: 170px;
    height: 200px;
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
}

.takedown__copy h2 {
    margin-bottom: 6px;
    font-size: 24px;
    color: var(--white);
}

.takedown__copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15.5px;
}

/* Process */

.process {
    margin-top: 40px;
}

.process__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 2fr);
    gap: 50px;
    align-items: start;
}

.process__intro {
    position: sticky;
    top: 170px;
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.process__step {
    padding: 30px 28px 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 4px 18px rgba(10, 29, 72, 0.06);
}

.process__num {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-head);
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    color: var(--blue);
}

.process__step h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.process__step p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* Estimate */

.estimate__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 60px;
    align-items: start;
}

.estimate__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 4px 0 14px;
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
}

.estimate__phone .icon {
    color: var(--blue);
}

.estimate__license {
    font-size: 14px;
    color: var(--muted);
}

.estimate__form {
    padding: 36px 36px 30px;
    background: var(--amber);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.quote-form__title {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 22px;
    font-size: 24px;
    color: var(--navy);
}

.quote-form__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--navy);
}

.quote-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field {
    display: flex;
    flex-direction: column;
    min-width: 0;
    margin-bottom: 14px;
}

.field label {
    margin-bottom: 5px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.field__hint {
    font-weight: 500;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid rgba(10, 29, 72, 0.18);
    border-radius: var(--radius);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--ink);
}

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

.field input[type="file"] {
    padding: 9px;
    font-size: 14px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: 3px solid var(--navy);
    outline-offset: 0;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
    border-color: #a4161a;
    box-shadow: 0 0 0 1px #a4161a;
}

.field__error {
    margin-top: 5px;
    padding: 3px 8px;
    background: var(--white);
    font-size: 13px;
    font-weight: 500;
    color: #a4161a;
    border-radius: var(--radius);
}

.quote-form__errors {
    margin-bottom: 16px;
    padding: 10px 14px;
    background: var(--white);
    border-left: 4px solid #a4161a;
    color: #a4161a;
    font-weight: 500;
}

.quote-form__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.quote-form__submit {
    margin-top: 6px;
}

.quote-form__submit[disabled] {
    opacity: 0.7;
    cursor: wait;
}

.quote-form__note {
    margin: 12px 0 0;
    font-size: 13px;
    color: var(--navy);
}

/* Areas + FAQ */

.areas-faq__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: start;
}

.areas__lists {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin: 6px 0 18px;
}

.areas__lists h3 {
    margin-bottom: 10px;
    font-size: 17px;
    color: var(--navy);
}

.areas__lists ul {
    columns: 2;
    column-gap: 16px;
}

.areas__lists li {
    padding: 3px 0;
    font-size: 15px;
    break-inside: avoid;
}

.areas__note {
    margin: 0;
    font-weight: 500;
    color: var(--ink);
}

.faq__item {
    margin-bottom: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    font-family: var(--font-head);
    font-size: 15.5px;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
}

.faq__item summary::-webkit-details-marker {
    display: none;
}

.faq__item summary .icon {
    font-size: 22px;
    color: var(--blue);
    transition: transform 0.2s ease;
}

.faq__item[open] summary {
    color: var(--blue-dark);
}

.faq__item[open] summary .icon {
    transform: rotate(180deg);
}

.faq__item p {
    margin: 0;
    padding: 0 18px 18px;
    font-size: 15px;
    line-height: 1.65;
}

.faq__more {
    display: inline-block;
    margin-top: 8px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Footer CTA */

.footer-cta {
    background: var(--navy-deep);
    color: var(--white);
}

.footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 34px;
    padding-bottom: 34px;
}

.footer-cta__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
}

.footer-cta__kicker::before {
    content: "";
    width: 22px;
    height: 3px;
    background: var(--amber);
}

.footer-cta h2 {
    margin: 6px 0 0;
    font-size: 26px;
    color: var(--white);
}

.footer-cta__call {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
}

.footer-cta__call:hover {
    color: var(--amber);
}

.footer-cta__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--amber);
    color: var(--navy);
    font-size: 24px;
}

.footer-cta__label {
    display: block;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
}

.footer-cta__call strong {
    display: block;
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}

/* Footer */

.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 0.8fr);
    gap: 40px;
    padding-top: 60px;
    padding-bottom: 50px;
}

.site-footer h3 {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 18px;
    font-size: 17px;
    color: var(--white);
}

.site-footer h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--amber);
}

.site-footer__logo {
    display: inline-block;
    margin-bottom: 18px;
}

.site-footer__logo img {
    width: auto;
    height: 78px;
}

.site-footer__logo:hover img {
    opacity: 0.85;
}

.site-footer__license {
    font-weight: 700;
    color: var(--white);
}

.site-footer a {
    color: rgba(255, 255, 255, 0.86);
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--amber);
}

.site-footer__contact li {
    display: flex;
    gap: 12px;
    padding: 5px 0;
    overflow-wrap: anywhere;
}

.site-footer__contact .icon {
    margin-top: 5px;
    color: var(--amber);
}

.site-footer__links li {
    padding: 4px 0;
}

.site-footer__links a::before {
    content: "\203A";
    margin-right: 8px;
    color: var(--amber);
}

.site-footer__bottom {
    background: var(--navy-deep);
    font-size: 14px;
}

.site-footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 24px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 22px;
}

/* Mobile navigation */

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 300;
    visibility: hidden;
}

.mobile-nav.is-open {
    visibility: visible;
}

.mobile-nav__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 20, 47, 0.55);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.mobile-nav.is-open .mobile-nav__backdrop {
    opacity: 1;
}

.mobile-nav__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    width: min(360px, 88vw);
    padding: 18px 24px 28px;
    background: var(--navy);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-nav.is-open .mobile-nav__panel {
    transform: none;
}

.mobile-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-nav__logo img {
    width: auto;
    height: 54px;
}

.mobile-nav__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 26px;
    cursor: pointer;
}

.mobile-nav__list > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__list a,
.mobile-nav__expand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    padding: 12px 2px;
    border: 0;
    background: transparent;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    text-align: left;
    cursor: pointer;
}

.mobile-nav__expand .icon {
    font-size: 22px;
    transition: transform 0.2s ease;
}

.mobile-nav__expand[aria-expanded="true"] .icon {
    transform: rotate(180deg);
}

.mobile-nav__sub {
    padding: 0 0 10px 14px;
}

.mobile-nav__sub a {
    min-height: 42px;
    padding: 8px 2px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
}

.mobile-nav__actions {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.mobile-nav__actions .btn {
    min-height: 50px;
    font-size: 15px;
}

body.menu-open {
    overflow: hidden;
}

/* Mobile sticky bar */

.mobile-bar {
    display: none;
}

/* Responsive */

@media (max-width: 1199px) {
    .header-info {
        gap: 22px;
    }

    .header-info__item:nth-child(2) {
        display: none;
    }

    .main-nav__list > li > a {
        padding: 0 13px;
    }

    .service-card {
        width: calc((100% - 48px) / 3);
    }
}

@media (max-width: 991px) {
    :root {
        --gutter: 22px;
    }

    html {
        scroll-padding-top: 90px;
    }

    .utility-bar .utility-bar__right,
    .utility-bar .utility-bar__email {
        display: none;
    }

    .utility-bar__inner {
        justify-content: center;
    }

    .site-header__top {
        min-height: 82px;
    }

    .site-logo img {
        height: 64px;
    }

    .header-info,
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border: 0;
        border-radius: var(--radius);
        background: var(--navy);
        color: var(--white);
        font-size: 28px;
        cursor: pointer;
    }

    .site-header.is-condensed .site-header__top {
        min-height: 70px;
    }

    .site-header.is-condensed .site-logo img {
        height: 54px;
    }

    .hero {
        height: 560px;
    }

    .hero__slide::after {
        background: linear-gradient(0deg, rgba(7, 20, 47, 0.9) 0%, rgba(7, 20, 47, 0.62) 55%, rgba(7, 20, 47, 0.35) 100%);
    }

    .hero__content {
        justify-content: flex-end;
        padding-bottom: 130px;
    }

    .hero__arrow {
        display: none;
    }

    .hero__dots {
        bottom: 96px;
    }

    .paths {
        margin-top: -70px;
    }

    .paths__panel {
        padding: 30px 24px;
    }

    .paths__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .about-intro__grid,
    .estimate__grid,
    .areas-faq__grid,
    .process__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 36px;
    }

    .about-intro__more {
        left: 16px;
        bottom: 16px;
    }

    .process__intro {
        position: static;
    }

    .service-card {
        width: calc((100% - 24px) / 2);
    }

    .takedown__band {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
        padding: 30px 26px;
        text-align: left;
    }

    .takedown__image {
        display: none;
    }

    .takedown__band .btn {
        justify-self: start;
    }

    .footer-cta__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

    .site-footer__about {
        grid-column: 1 / -1;
    }

    .mobile-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 200;
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding-bottom: env(safe-area-inset-bottom);
        background: var(--navy);
        box-shadow: 0 -4px 16px rgba(7, 20, 47, 0.2);
    }

    .mobile-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 56px;
        font-family: var(--font-head);
        font-size: 15px;
        font-weight: 700;
    }

    .mobile-bar__call {
        background: var(--blue);
        color: var(--white);
    }

    .mobile-bar__quote {
        background: var(--amber);
        color: var(--navy);
    }

    .mobile-bar__call:hover,
    .mobile-bar__call:focus-visible {
        color: var(--white);
    }

    .mobile-bar__quote:hover,
    .mobile-bar__quote:focus-visible {
        color: var(--navy);
    }

    body {
        padding-bottom: 56px;
    }
}

@media (max-width: 600px) {
    :root {
        --gutter: 18px;
    }

    .site-logo img {
        height: 58px;
    }

    .hero {
        height: 540px;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__text {
        font-size: 16px;
        margin-bottom: 22px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hero__actions .btn {
        padding: 13px 20px;
    }

    .hero__content {
        padding-bottom: 110px;
    }

    .hero__dots {
        bottom: 84px;
    }

    .paths__title {
        font-size: 24px;
    }

    .section-title {
        font-size: 25px;
    }

    .service-card {
        width: 100%;
    }

    .process__steps,
    .quote-form__row,
    .areas__lists {
        grid-template-columns: minmax(0, 1fr);
        gap: 0 16px;
    }

    .process__steps {
        gap: 16px;
    }

    .estimate__form {
        padding: 26px 20px 22px;
    }

    .estimate__phone {
        font-size: 22px;
    }

    .areas__lists {
        gap: 14px;
    }

    .footer-cta h2 {
        font-size: 22px;
    }

    .site-footer__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
    }

    .site-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Simple pages (thank you, 404) */

.simple-page__inner {
    max-width: 760px;
}

.simple-page__code {
    margin: 0 0 6px;
    font-family: var(--font-head);
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    color: var(--blue);
}

.simple-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

/* Services grid head and note */

.services-grid__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.services-grid__head .section-title {
    margin-bottom: 14px;
}

.services-grid__note {
    margin: 26px 0 0;
    font-size: 15.5px;
    color: var(--ink);
}

.services-grid__note a {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Scroll reveal */

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.no-js [data-reveal] {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }
}

a.btn[href^="tel:"]::after,
.mobile-nav__actions .btn[href^="tel:"]::after {
    content: none;
}

/* Inner page banner */

.page-banner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 300px;
    padding: 46px 0;
    background: var(--navy);
    overflow: hidden;
}

.page-banner__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.page-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 20, 47, 0.92) 0%, rgba(7, 20, 47, 0.72) 55%, rgba(7, 20, 47, 0.45) 100%);
}

.page-banner__inner {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    max-width: 780px;
    margin: 0 0 12px;
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    color: var(--white);
}

.page-banner__sub {
    max-width: 660px;
    margin: 0;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumb a {
    color: var(--amber);
}

.breadcrumb a:hover {
    color: var(--white);
}

/* Shared inner page blocks */

.narrow {
    max-width: 820px;
}

.lede {
    font-size: 18px;
    line-height: 1.65;
    color: var(--ink);
}

.intro-block {
    max-width: 820px;
    margin-bottom: 36px;
}

.check-list li {
    position: relative;
    padding: 7px 0 7px 30px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 16px;
    width: 12px;
    height: 7px;
    border-left: 3px solid var(--blue);
    border-bottom: 3px solid var(--blue);
    transform: rotate(-45deg);
}

/* Service page layout */

.service-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.85fr);
    gap: 50px;
    align-items: start;
}

.service-intro__copy .section-title {
    margin-top: 28px;
    font-size: 26px;
}

.service-intro__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.service-aside img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 22px;
}

.service-aside__box {
    padding: 24px 24px 18px;
    background: var(--gray);
    border-top: 3px solid var(--amber);
    border-radius: var(--radius);
}

.service-aside__box h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.service-aside__list li {
    border-bottom: 1px solid var(--line);
}

.service-aside__list li:last-child {
    border-bottom: 0;
}

.service-aside__list a {
    display: block;
    padding: 10px 0;
    font-family: var(--font-head);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink);
}

.service-aside__list a:hover,
.service-aside__list .is-current a {
    color: var(--blue-dark);
}

.service-aside__list .is-current a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.service-aside__call {
    margin-top: 22px;
    padding: 24px;
    background: var(--navy);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.86);
}

.service-aside__call p {
    margin: 0 0 6px;
    font-size: 15px;
}

.service-aside__call a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-head);
    font-size: 21px;
    font-weight: 800;
    color: var(--white);
}

.service-aside__call a:hover {
    color: var(--amber);
}

.service-aside__license {
    margin: 10px 0 0 !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.72);
}

/* Option and work cards */

.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.option-card {
    padding: 28px 26px 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 3px solid var(--blue);
    border-radius: var(--radius);
}

.option-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.option-card p {
    margin-bottom: 0;
    font-size: 15px;
}

.option-card a {
    display: inline-block;
    margin-top: 12px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.work-card {
    padding: 30px 28px 26px;
    background: var(--white);
    border-left: 4px solid var(--amber);
    box-shadow: 0 4px 18px rgba(10, 29, 72, 0.06);
}

.work-card h3 {
    margin-bottom: 10px;
    font-size: 19px;
}

.work-card p {
    font-size: 15px;
}

.work-card a {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.related-grid .service-card {
    width: 100%;
}

/* Mid page quote band */

.quote-band {
    padding: 44px 0;
    background: var(--navy);
}

.quote-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.quote-band h2 {
    margin: 0 0 6px;
    font-size: 26px;
    color: var(--white);
}

.quote-band p {
    margin: 0;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.88);
}

.quote-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Contact list */

.contact-list {
    margin: 22px 0;
}

.contact-list li {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.contact-list li:last-child {
    border-bottom: 0;
}

.contact-list__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--amber);
    color: var(--navy);
    font-size: 19px;
}

.contact-list strong {
    display: block;
    font-family: var(--font-head);
    font-size: 13px;
    color: var(--muted);
    font-weight: 700;
}

.contact-list span span,
.contact-list li > span:last-child {
    font-size: 16px;
    color: var(--ink);
}

/* FAQ page */

.faq-group {
    margin-bottom: 40px;
}

.faq-group:last-of-type {
    margin-bottom: 20px;
}

.faq-note,
.service-areas-note {
    margin-top: 22px;
    font-size: 15.5px;
    color: var(--ink);
}

.areas__lists--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

.areas__lists--wide h2 {
    margin-bottom: 12px;
    font-size: 22px;
    color: var(--navy);
}

/* Legal pages */

.legal h2 {
    margin-top: 32px;
    font-size: 21px;
}

.legal h2:first-of-type {
    margin-top: 10px;
}

.legal__updated {
    font-size: 14px;
    color: var(--muted);
}

@media (max-width: 991px) {
    .page-banner {
        min-height: 240px;
    }

    .service-intro__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 36px;
    }

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

    .quote-band__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .related-grid,
    .areas__lists--wide {
        grid-template-columns: minmax(0, 1fr);
    }

    .quote-band__actions {
        width: 100%;
    }

    .quote-band__actions .btn {
        flex: 1 1 100%;
    }
}

/* Homepage estimate call to action */

.home-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
    gap: 50px;
    align-items: center;
}

.home-cta__panel {
    padding: 30px 30px 26px;
    background: var(--amber);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.home-cta__label {
    margin: 0 0 14px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
}

.home-cta__or {
    margin: 18px 0 6px;
    font-size: 14px;
    color: var(--navy);
}

.home-cta__phone {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
}

.home-cta__phone:hover {
    color: var(--navy-deep);
}

.home-cta__hours {
    margin: 8px 0 0;
    font-size: 13.5px;
    color: var(--navy);
}

/* Contact page */

.contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.contact__estimate-card {
    margin: 26px 0 18px;
    padding: 26px 26px 22px;
    background: var(--gray);
    border-left: 4px solid var(--amber);
    border-radius: var(--radius);
}

.contact__estimate-card h3 {
    margin-bottom: 8px;
    font-size: 19px;
}

.contact__estimate-card p {
    font-size: 15px;
}

.contact__form {
    padding: 34px 32px 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 4px solid var(--amber);
    border-radius: var(--radius);
    box-shadow: 0 6px 24px rgba(10, 29, 72, 0.07);
}

.quote-form--light .field input,
.quote-form--light .field textarea {
    background: var(--gray);
}

.quote-form--light .quote-form__note {
    color: var(--text);
}

/* Estimate page aside */

.estimate__aside {
    margin-top: 26px;
    padding: 24px 26px 20px;
    background: var(--gray);
    border-radius: var(--radius);
}

.estimate__aside-title {
    margin-bottom: 4px;
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--ink);
}

.estimate__aside p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .home-cta__inner,
    .contact__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
    }
}

@media (max-width: 600px) {
    .contact__form {
        padding: 24px 20px 20px;
    }
}
