@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
    --navy-950: #061826;
    --navy-900: #0a2236;
    --navy-800: #113653;
    --blue-700: #087fa7;
    --blue-500: #16b7d2;
    --aqua-300: #7de5ec;
    --gold-500: #f4bd4a;
    --white: #ffffff;
    --off-white: #f6fafc;
    --surface: #edf5f8;
    --text: #1d2c35;
    --muted: #667984;
    --border: #d7e4e9;
    --font-body: 'DM Sans', Arial, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --container: 1180px;
    --shadow-sm: 0 10px 30px rgba(6, 24, 38, .08);
    --shadow-md: 0 22px 60px rgba(6, 24, 38, .15);
    --radius: 22px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1,h2,h3,p,ul,blockquote,figure { margin: 0; }
ul { padding: 0; list-style: none; }
h1,h2,h3 { font-family: var(--font-heading); line-height: 1.08; }
h1 { font-size: clamp(3rem, 6.4vw, 6.2rem); }
h2 { font-size: clamp(2.25rem, 4.5vw, 4.3rem); }
h3 { font-size: clamp(1.4rem, 2vw, 2rem); }
p { color: var(--muted); }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 2000; padding: .8rem 1rem; background: var(--white); border-radius: 10px; transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.eyebrow { display: inline-flex; align-items: center; gap: .7rem; margin-bottom: 1rem; color: var(--blue-700); font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 34px; height: 3px; border-radius: 9px; background: var(--gold-500); }
.eyebrow.light { color: var(--aqua-300); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: .85rem 1.5rem; border: 1px solid transparent; border-radius: 999px; font-weight: 700; transition: .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-sm { min-height: 44px; padding: .65rem 1.15rem; }
.button-primary { background: linear-gradient(135deg, var(--blue-500), var(--blue-700)); color: var(--white); box-shadow: 0 12px 28px rgba(8,127,167,.25); }
.button-secondary { background: var(--gold-500); color: var(--navy-950); }
.button-outline { border-color: var(--navy-900); color: var(--navy-900); }
.button-ghost { border-color: rgba(255,255,255,.45); color: var(--white); background: rgba(255,255,255,.07); }
.button-light { background: var(--white); color: var(--navy-950); }
.section { padding: 110px 0; }
.section-soft { background: var(--off-white); }
.section-dark { background: var(--navy-950); color: var(--white); overflow: hidden; }
.section-heading { max-width: 770px; margin-bottom: 48px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2 { margin-bottom: 1rem; }
.section-heading p { font-size: 1.1rem; }
.centered-action { margin-top: 42px; text-align: center; }

.announcement { background: var(--navy-950); color: var(--white); font-size: .88rem; }
.announcement-inner { min-height: 38px; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.announcement a { color: var(--aqua-300); font-weight: 700; }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(215,228,233,.8); transition: box-shadow .2s ease; }
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.navbar { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .8rem; }
.brand img { width: 48.brand img {
    width: 110px;
    max-width: none;
    height: auto;
}px; }
.brand span { display: grid; line-height: 1.15; }
.brand strong { color: var(--navy-950); font-size: 1.12rem; }
.brand small { margin-top: .25rem; color: var(--muted); font-size: .72rem; letter-spacing: .04em; }
.primary-nav { display: flex; align-items: center; gap: 1.35rem; }
.nav-link { position: relative; color: var(--navy-900); font-weight: 600; font-size: .95rem; }
.nav-link::after { content: ''; position: absolute; left: 0; right: 0; bottom: -10px; height: 2px; background: var(--blue-500); transform: scaleX(0); transition: .2s ease; }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.header-phone {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    min-height: 42px;
    padding: .55rem .85rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--off-white);
    color: var(--navy-950);
    font-size: .88rem;
    font-weight: 800;
    white-space: nowrap;
    transition: .2s ease;
}
.header-phone:hover {
    border-color: var(--blue-500);
    color: var(--blue-700);
    transform: translateY(-1px);
}
.header-phone span:first-child {
    color: var(--blue-700);
    font-size: 1rem;
}
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 12px; background: var(--surface); }
.menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 4px auto; background: var(--navy-950); }

.hero { position: relative; min-height: 760px; display: grid; align-items: center; overflow: hidden; background: var(--navy-950); color: var(--white); }
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { background: linear-gradient(90deg, rgba(3,15,25,.92) 0%, rgba(5,27,44,.74) 48%, rgba(5,27,44,.2) 100%); }
.hero-content { position: relative; z-index: 2; padding-block: 100px; }
.hero-copy { max-width: 760px; }
.hero h1 { max-width: 720px; color: var(--white); }
.hero h1 em { color: var(--blue-500); }
.hero-lead { max-width: 650px; margin-top: 1.4rem; color: rgba(255,255,255,.78); font-size: 1.17rem; }
.trust-badge { display: inline-flex; gap: .65rem; align-items: center; margin-bottom: 1.4rem; padding: .55rem .85rem; border: 1px solid rgba(125,229,236,.45); border-radius: 999px; background: rgba(6,24,38,.44); font-size: .86rem; font-weight: 700; }
.trust-badge span { color: var(--gold-500); letter-spacing: .06em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-points { display: flex; flex-wrap: wrap; gap: 1rem 1.8rem; margin-top: 2rem; color: rgba(255,255,255,.82); font-size: .9rem; }
.hero-points li::before { content: '✓'; margin-right: .45rem; color: var(--aqua-300); font-weight: 800; }
.stats-strip { background: var(--white); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stats-grid div { padding: 28px 18px; text-align: center; border-right: 1px solid var(--border); }
.stats-grid div:last-child { border-right: 0; }
.stats-grid strong, .stats-grid span { display: block; }
.stats-grid strong { color: var(--navy-950); font-size: 1.1rem; }
.stats-grid span { color: var(--muted); font-size: .88rem; }

.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); transition: .25s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.service-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.service-card > div { padding: 28px; }
.service-card span { color: var(--blue-700); font-weight: 800; }
.service-card h3 { margin: .45rem 0 .7rem; }
.service-card a { display: inline-block; margin-top: 1rem; color: var(--blue-700); font-weight: 700; }

.split-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.image-stack { position: relative; }
.image-main { width: 100%; border-radius: 28px; box-shadow: var(--shadow-md); }
.experience-card { position: absolute; right: -30px; bottom: -30px; max-width: 290px; padding: 22px; border-radius: 18px; background: var(--white); color: var(--navy-950); box-shadow: var(--shadow-md); }
.experience-card strong, .experience-card span { display: block; }
.experience-card span { margin-top: .35rem; color: var(--muted); font-size: .9rem; }
.content-panel h2 { margin-bottom: 1.2rem; color: var(--white); }
.content-panel > p { color: rgba(255,255,255,.72); }
.split-layout.light .content-panel h2 { color: var(--navy-950); }
.split-layout.light .content-panel > p { color: var(--muted); margin-bottom: 1rem; }
.check-list { display: grid; gap: .85rem; margin: 1.7rem 0 2rem; }
.check-list li { color: rgba(255,255,255,.86); }
.check-list li::before { content: '✓'; display: inline-grid; place-items: center; width: 24px; height: 24px; margin-right: .7rem; border-radius: 50%; background: rgba(22,183,210,.18); color: var(--aqua-300); font-weight: 800; }
.check-list.dark li { color: var(--text); }
.check-list.dark li::before { background: rgba(22,183,210,.12); color: var(--blue-700); }

.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.process-step { padding: 28px; border-radius: 20px; background: var(--off-white); }
.process-step span { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 1.3rem; border-radius: 50%; background: var(--navy-950); color: var(--white); font-weight: 800; }
.process-step h3 { margin-bottom: .6rem; font-family: var(--font-body); font-size: 1.12rem; }
.gallery-preview { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 20px; }
.gallery-preview img { width: 100%; height: 360px; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow-sm); }
.testimonial-section { background: linear-gradient(180deg, var(--white), var(--off-white)); }
.testimonial-card { max-width: 900px; margin-inline: auto; padding: 58px; border-radius: 28px; background: var(--white); box-shadow: var(--shadow-md); text-align: center; }
.quote-mark { height: 60px; color: var(--blue-500); font-family: var(--font-heading); font-size: 6rem; line-height: .8; }
.testimonial-card blockquote { color: var(--navy-950); font-family: var(--font-heading); font-size: clamp(1.6rem,3vw,2.6rem); line-height: 1.35; }
.testimonial-card p { margin-top: 1.3rem; font-weight: 700; }
.cta-section { padding: 75px 0; background: linear-gradient(135deg,var(--blue-700),var(--navy-900)); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.cta-inner h2 { color: var(--white); }
.cta-inner p { color: rgba(255,255,255,.75); }

.page-hero { padding: 110px 0 95px; background: radial-gradient(circle at 80% 20%, rgba(22,183,210,.34), transparent 34%), linear-gradient(135deg,var(--navy-950),var(--navy-800)); color: var(--white); }
.page-hero.compact { padding: 85px 0 75px; }
.page-hero-inner { max-width: 900px; }
.page-hero h1 { color: var(--white); }
.page-hero p:last-child { max-width: 700px; margin-top: 1.2rem; color: rgba(255,255,255,.74); font-size: 1.1rem; }
.service-list { display: grid; gap: 85px; }
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.service-detail.reverse > div { order: 2; }
.service-detail img { width: 100%; border-radius: 24px; box-shadow: var(--shadow-sm); }
.service-detail h2 { margin-bottom: 1rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feature-card { padding: 34px; border: 1px solid var(--border); border-radius: 20px; background: var(--white); }
.feature-card h3 { margin-bottom: .8rem; font-family: var(--font-body); font-size: 1.25rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.gallery-card { overflow: hidden; border-radius: 22px; background: var(--white); box-shadow: var(--shadow-sm); }
.gallery-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery-card figcaption { padding: 18px 20px; font-weight: 700; }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 32px; align-items: start; }
.contact-card, .form-card { padding: 38px; border-radius: 24px; }
.contact-card { background: var(--navy-950); color: var(--white); }
.contact-card h2 { color: var(--white); margin-bottom: .8rem; }
.contact-card > p { color: rgba(255,255,255,.7); }
.contact-list { display: grid; gap: 1rem; margin: 2rem 0; }
.contact-list li { display: grid; }
.contact-list strong { color: var(--aqua-300); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.hours { padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.18); }
.hours h3 { margin-bottom: 1rem; font-family: var(--font-body); font-size: 1.05rem; }
.hours div { display: flex; justify-content: space-between; gap: 1rem; color: rgba(255,255,255,.72); }
.form-card { border: 1px solid var(--border); background: var(--white); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
form label { display: grid; gap: .5rem; margin-bottom: 18px; font-weight: 700; }
input, select, textarea { width: 100%; border: 1px solid var(--border); border-radius: 12px; padding: .9rem 1rem; color: var(--text); background: var(--off-white); }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(22,183,210,.18); border-color: var(--blue-500); }
.alert { margin-bottom: 20px; padding: 16px 18px; border-radius: 12px; }
.alert.success { background: #eaf8ef; color: #176b36; }
.alert.error { background: #fff0f0; color: #8b2424; }
.alert ul { margin-top: .6rem; padding-left: 1.2rem; list-style: disc; }

.site-footer { padding: 78px 0 24px; background: var(--navy-950); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr 1fr; gap: 44px; }
.brand-footer strong { color: var(--white); }
.brand-footer small { color: rgba(255,255,255,.58); }
.footer-brand p { max-width: 430px; margin-top: 1.25rem; color: rgba(255,255,255,.6); }
.footer-heading { margin-bottom: 1rem; color: var(--white); font-family: var(--font-body); font-size: 1rem; }
.footer-links, .footer-contact { display: grid; gap: .65rem; color: rgba(255,255,255,.68); }
.footer-links a:hover, .footer-contact a:hover { color: var(--aqua-300); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); font-size: .86rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
    .primary-nav { position: fixed; inset: 122px 20px auto; display: none; flex-direction: column; align-items: stretch; padding: 24px; border-radius: 20px; background: var(--white); box-shadow: var(--shadow-md); }
    .primary-nav.is-open { display: flex; }
    .menu-toggle { display: block; }
    .nav-link::after { display: none; }
    .header-phone {
        justify-content: center;
        width: 100%;
        min-height: 48px;
        border-color: rgba(8,127,167,.25);
        background: rgba(8,127,167,.08);
        font-size: 1rem;
    }
    .service-grid, .feature-grid, .gallery-grid { grid-template-columns: repeat(2,1fr); }
    .split-layout, .service-detail, .contact-layout { grid-template-columns: 1fr; }
    .service-detail.reverse > div { order: initial; }
    .process-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .experience-card { right: 18px; }
}

@media (max-width: 700px) {
    .container { width: min(100% - 28px, var(--container)); }
    .announcement-inner { justify-content: center; text-align: center; }
    .announcement-inner a { display: none; }
    .navbar { min-height: 72px; }
    .brand small { display: none; }
    .primary-nav { inset: 110px 14px auto; }
    .hero { min-height: 690px; }
    .hero-content { padding-block: 80px; }
    h1 { font-size: clamp(2.75rem, 15vw, 4.4rem); }
    h2 { font-size: clamp(2rem, 10vw, 3rem); }
    .hero-points { display: grid; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .stats-grid div:nth-child(2) { border-right: 0; }
    .section { padding: 76px 0; }
    .service-grid, .feature-grid, .gallery-grid, .process-grid, .form-grid { grid-template-columns: 1fr; }
    .gallery-preview { grid-template-columns: 1fr; }
    .gallery-preview img { height: 280px; }
    .cta-inner { align-items: flex-start; flex-direction: column; }
    .testimonial-card { padding: 38px 24px; }
    .contact-card, .form-card { padding: 26px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

/* Real project photography and portfolio additions */
.photo-hero .hero-media img { filter: saturate(1.05) contrast(1.02); }
.photo-page-hero { position: relative; isolation: isolate; overflow: hidden; background-image: linear-gradient(90deg, rgba(7,24,39,.94) 0%, rgba(7,24,39,.78) 50%, rgba(7,24,39,.38) 100%), var(--page-hero-image); background-position: center; background-size: cover; }
.photo-page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 70%, rgba(7,24,39,.28)); }
.service-card img { aspect-ratio: 16/10; object-fit: cover; }
.project-preview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.project-tile { overflow: hidden; border-radius: 24px; background: var(--white); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.project-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.project-tile img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.project-tile div { padding: 24px; }
.project-tile span, .portfolio-card figcaption span { color: var(--blue-700); font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.project-tile h3 { margin: .45rem 0 .55rem; font-family: var(--font-body); font-size: 1.28rem; }
.before-after-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; }
.before-after-card { position: relative; overflow: hidden; border-radius: 24px; background: var(--white); box-shadow: var(--shadow-sm); }
.before-after-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.before-after-card figcaption { padding: 18px 22px; font-weight: 700; }
.image-label { position: absolute; z-index: 2; top: 16px; left: 16px; padding: 8px 13px; border-radius: 999px; background: rgba(7,24,39,.9); color: white; font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.image-label.after { background: var(--blue-700); }
.portfolio-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.portfolio-card { overflow: hidden; border-radius: 24px; background: var(--white); box-shadow: var(--shadow-sm); }
.portfolio-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.portfolio-card figcaption { padding: 20px 22px 23px; }
.portfolio-card h3 { margin-top: .45rem; font-family: var(--font-body); font-size: 1.2rem; }
.project-feature .image-main { min-height: 430px; object-fit: cover; }
.finished-project { max-width: 1050px; margin-inline: auto; overflow: hidden; border-radius: 28px; background: var(--white); box-shadow: var(--shadow-md); }
.finished-project img { width: 100%; max-height: 680px; object-fit: cover; }
.finished-project figcaption { padding: 20px 26px; font-size: 1.05rem; font-weight: 800; }

@media (max-width: 980px) {
    .project-preview-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 700px) {
    .project-preview-grid, .before-after-grid, .portfolio-grid { grid-template-columns: 1fr; }
    .photo-page-hero { background-image: linear-gradient(rgba(7,24,39,.82), rgba(7,24,39,.82)), var(--page-hero-image); }
    .project-feature .image-main { min-height: 300px; }
}


/* Show complete portfolio photographs without cropping */
.before-after-card img,
.portfolio-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
}


/* Enhanced quote request form */
.form-section {
    margin-bottom: 28px;
}

.form-section-title {
    display: block;
    margin: 0 0 14px;
    color: var(--navy-950);
    font-size: 1rem;
    font-weight: 900;
}

.service-selector {
    padding: 0;
    border: 0;
}

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

.service-check {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--off-white);
    cursor: pointer;
    transition: .2s ease;
}

.service-check:hover {
    border-color: var(--blue-500);
    background: rgba(8, 127, 167, .06);
}

.service-check:has(input:checked) {
    border-color: var(--blue-500);
    background: rgba(8, 127, 167, .1);
    box-shadow: 0 0 0 2px rgba(8, 127, 167, .08);
}

.service-check input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--blue-700);
}

.service-check span {
    color: var(--navy-950);
    font-weight: 800;
}

.upload-panel {
    padding: 20px;
    border: 1px dashed var(--blue-500);
    border-radius: 16px;
    background: rgba(8, 127, 167, .045);
}

.upload-panel label {
    margin-bottom: 12px;
}

.upload-panel label span,
.upload-panel label small {
    display: block;
}

.upload-panel label small {
    margin-top: 5px;
    color: var(--slate-600);
    font-weight: 500;
}

.upload-panel input[type="file"] {
    width: 100%;
    padding: 11px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
}

.quote-tip {
    margin: 24px 0;
    padding: 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
}

.quote-tip p {
    margin: 6px 0 0;
}

.quote-submit {
    width: 100%;
    min-height: 52px;
}

.privacy-note,
.small-note {
    margin: 12px 0 0;
    color: var(--slate-600);
    font-size: .82rem;
}

.alert p {
    margin: 6px 0 0;
}

@media (max-width: 700px) {
    .service-check-grid {
        grid-template-columns: 1fr;
    }
}

/* SEO, speed and portfolio polish */
.project-tile img,
.portfolio-card img,
.before-after-card img,
.finished-project img {
    transition: transform .45s ease, filter .45s ease;
}
.project-tile:hover img,
.portfolio-card:hover img,
.before-after-card:hover img,
.finished-project:hover img {
    transform: scale(1.035);
    filter: saturate(1.06) contrast(1.02);
}
.portfolio-card,
.before-after-card,
.finished-project {
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}
.portfolio-card:hover,
.before-after-card:hover,
.finished-project:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
[data-lightbox] { cursor: zoom-in; }
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(2, 10, 18, .94);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, visibility .22s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(94vw, 1500px); max-height: 86vh; object-fit: contain; border-radius: 12px; box-shadow: 0 24px 80px rgba(0,0,0,.48); }
.lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}
.lightbox-caption { position: absolute; bottom: 18px; left: 20px; right: 20px; color: #fff; text-align: center; }
body.lightbox-open { overflow: hidden; }
.reviews-ready { max-width: 760px; margin: 0 auto; padding: 46px; border: 1px solid var(--border); border-radius: 26px; background: var(--white); box-shadow: var(--shadow-sm); text-align: center; }
.review-stars { margin-bottom: .6rem; color: #d59b13; font-size: 1.55rem; letter-spacing: .15em; }
.reviews-ready h3 { margin-bottom: .7rem; }
.reviews-ready p { max-width: 590px; margin: 0 auto 1.5rem; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}


/* Expanded footer and NorthPoint website credit */
.footer-service-area {
    margin-top: .8rem !important;
    color: var(--aqua-300) !important;
    font-size: .86rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
    transition: color .2s ease, transform .2s ease;
}

.footer-links a {
    display: inline-flex;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
    color: var(--aqua-300);
}

.footer-quote-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: 1.35rem;
    color: var(--aqua-300);
    font-weight: 850;
    transition: gap .2s ease, color .2s ease;
}

.footer-quote-link:hover,
.footer-quote-link:focus-visible {
    gap: .7rem;
    color: var(--white);
}

.northpoint-credit a {
    position: relative;
    color: rgba(255,255,255,.82);
    font-weight: 750;
    transition: color .2s ease;
}

.northpoint-credit a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -3px;
    left: 0;
    height: 1px;
    background: var(--aqua-300);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.northpoint-credit a:hover,
.northpoint-credit a:focus-visible {
    color: var(--aqua-300);
}

.northpoint-credit a:hover::after,
.northpoint-credit a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.developer-signature-section {
    display: grid;
    min-height: 72vh;
    place-items: center;
    padding: clamp(88px, 12vw, 150px) 0;
    background:
        radial-gradient(circle at 50% 20%, rgba(22,183,210,.12), transparent 38%),
        linear-gradient(180deg, #f8fbfd 0%, #eef6f9 100%);
}

.developer-signature-wrap {
    display: flex;
    justify-content: center;
}

.developer-signature-card {
    width: min(100%, 820px);
    padding: clamp(42px, 7vw, 78px);
    border: 1px solid rgba(8,127,167,.16);
    border-radius: 32px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 28px 80px rgba(7,24,39,.12);
    text-align: center;
}

.developer-kicker {
    margin-bottom: 1.8rem;
    color: var(--blue-700);
    font-size: clamp(.82rem, 2vw, .95rem);
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.northpoint-logo {
    display: block;
    width: min(100%, 520px);
    height: auto;
    max-height: 230px;
    margin: 0 auto 2rem;
    object-fit: contain;
}

.developer-signature-card h1 {
    margin-bottom: 1.25rem;
    font-size: clamp(2rem, 5vw, 3.8rem);
}

.developer-signature-card h1 a {
    color: var(--navy-950);
    transition: color .2s ease;
}

.developer-signature-card h1 a:hover,
.developer-signature-card h1 a:focus-visible {
    color: var(--blue-700);
}

.developer-signature-card > p:not(.developer-kicker) {
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
}

.developer-location {
    margin-top: 1.4rem;
    color: var(--slate-600);
    font-size: .92rem;
    font-style: italic;
}

@media (max-width: 700px) {
    .site-footer { padding-top: 64px; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { align-items: flex-start; }
    .developer-signature-card { border-radius: 24px; }
}


/* Seasonal service banner */
.seasonal-banner { background: linear-gradient(135deg, var(--navy-950), var(--blue-700)); color: var(--white); }
.seasonal-banner-inner { min-height: 210px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-top: 2.5rem; padding-bottom: 2.5rem; }
.seasonal-banner h2 { color: var(--white); margin-bottom: .55rem; }
.seasonal-banner p:last-child { margin: 0; max-width: 720px; color: rgba(255,255,255,.82); }

/* FAQ */
.faq-section { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: clamp(2rem,5vw,5rem); align-items: start; }
.faq-list { border-top: 1px solid rgba(7,24,39,.12); }
.faq-item { border-bottom: 1px solid rgba(7,24,39,.12); }
.faq-item h3 { margin: 0; }
.faq-question { width: 100%; padding: 1.35rem 0; border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; color: var(--navy-950); font: inherit; font-weight: 750; text-align: left; cursor: pointer; }
.faq-question:hover, .faq-question:focus-visible { color: var(--blue-700); }
.faq-plus { flex: 0 0 2rem; height: 2rem; display: grid; place-items: center; border-radius: 50%; background: rgba(8,127,167,.10); color: var(--blue-700); font-size: 1.25rem; transition: transform .2s ease; }
.faq-question[aria-expanded="true"] .faq-plus { transform: rotate(45deg); }
.faq-answer { padding: 0 2.75rem 1.35rem 0; }
.faq-answer p { margin: 0; color: var(--slate-700); }

/* Persistent contact actions */
.sticky-contact-bar { position: fixed; right: 22px; bottom: 22px; z-index: 900; display: flex; gap: .55rem; padding: .45rem; border-radius: 999px; background: rgba(6,24,38,.94); box-shadow: 0 18px 45px rgba(6,24,38,.25); backdrop-filter: blur(10px); }
.sticky-contact-bar a { min-height: 46px; padding: 0 1rem; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: .45rem; font-weight: 800; text-decoration: none; }
.sticky-call { color: var(--white); }
.sticky-quote { background: linear-gradient(135deg, var(--blue-500), var(--blue-700)); color: var(--white); }
.sticky-contact-bar a:hover, .sticky-contact-bar a:focus-visible { transform: translateY(-2px); }
@media (max-width: 760px) {
 .seasonal-banner-inner { align-items: flex-start; flex-direction: column; }
 .faq-layout { grid-template-columns: 1fr; gap: 1.5rem; }
 body { padding-bottom: 70px; }
 .sticky-contact-bar { left: 0; right: 0; bottom: 0; gap: 0; padding: 0; border-radius: 0; background: var(--navy-950); }
 .sticky-contact-bar a { width: 50%; min-height: 62px; border-radius: 0; }
 .sticky-call { border-right: 1px solid rgba(255,255,255,.15); }
}


/* === Native FAQ accordion fix === */
.faq-section {
    background: var(--white, #ffffff);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.faq-list {
    width: 100%;
    border-top: 1px solid rgba(7, 24, 39, .12);
}

details.faq-item {
    width: 100%;
    border-bottom: 1px solid rgba(7, 24, 39, .12);
}

details.faq-item > summary {
    list-style: none;
}

details.faq-item > summary::-webkit-details-marker {
    display: none;
}

summary.faq-question {
    width: 100%;
    min-height: 72px;
    margin: 0;
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    color: var(--navy-950, #071827);
    font-size: clamp(1rem, 1.3vw, 1.12rem);
    font-weight: 750;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
    user-select: none;
}

summary.faq-question:hover,
summary.faq-question:focus-visible {
    color: var(--blue-700, #087fa7);
    outline: none;
}

.faq-plus {
    flex: 0 0 2.25rem;
    width: 2.25rem;
    height: 2.25rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(8, 127, 167, .10);
    color: var(--blue-700, #087fa7);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    transition: transform .2s ease, background .2s ease;
}

details.faq-item[open] .faq-plus {
    transform: rotate(45deg);
    background: rgba(8, 127, 167, .16);
}

.faq-answer {
    padding: 0 3.25rem 1.35rem 0;
}

.faq-answer p {
    margin: 0;
    color: var(--slate-700, #475569);
    line-height: 1.7;
}

@media (max-width: 760px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    summary.faq-question {
        min-height: 64px;
        font-size: 1rem;
    }

    .faq-answer {
        padding-right: 0;
    }
}

/* Keep persistent contact actions from covering the footer */
.sticky-contact-bar {
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.sticky-contact-bar.is-footer-visible {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px);
}
