/* Sure Glass & Mirrors — North Lauderdale, FL
   Palette sampled from logo.jpg. Light, cool and clean: the product is glass. */

:root {
    --brand-navy: #000060;          /* sampled from logo.jpg */
    --brand-navy-deep: #00003a;
    --brand-blue: #1878b8;          /* sampled */
    --brand-cyan: #10a8e0;          /* sampled */
    --brand-cyan-light: #57c6f2;
    --brand-red: #980000;           /* sampled — outline accent, used sparingly */
    --off-white: #f1f6fa;
    --white: #ffffff;
    --text: #1a2330;
    --text-muted: #59647a;
    --border: rgba(0, 0, 96, 0.14);
    --shadow: 0 12px 40px rgba(0, 0, 58, 0.13);
    --shadow-sm: 0 4px 16px rgba(0, 0, 58, 0.08);
    --radius: 4px;
    --font-display: 'Oswald', Impact, sans-serif;
    --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --container-max: 75rem;
    --container-pad: clamp(1rem, 2.5vw, 1.75rem);
    --section-padding: clamp(3.5rem, 6vw, 5.5rem);
    --fluid-body: clamp(0.9375rem, 0.875rem + 0.25vw, 1.0625rem);
    --fluid-lead: clamp(1rem, 0.95rem + 0.35vw, 1.2rem);
    --fluid-h2: clamp(1.8rem, 1.45rem + 1.4vw, 2.7rem);
    --grid-gap: clamp(0.75rem, 1.5vw, 1.5rem);
    --grid-gap-lg: clamp(1.25rem, 2.5vw, 2.5rem);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    font-size: var(--fluid-body);
    line-height: 1.68;
    color: var(--text);
    background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--brand-cyan); }
:focus-visible { outline: 3px solid var(--brand-cyan); outline-offset: 3px; }

.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding-inline: var(--container-pad); }
.section { padding-block: var(--section-padding); }
.section-light { background: var(--off-white); }

.section-label {
    font-family: var(--font-body);
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--brand-cyan); margin-bottom: 0.6rem;
}
.section-label-light { color: var(--brand-cyan-light); }
.section-title {
    font-family: var(--font-display);
    font-size: var(--fluid-h2); font-weight: 600;
    line-height: 1.07; color: var(--brand-navy);
    text-transform: uppercase; letter-spacing: 0.015em;
}
.section-title em { font-style: normal; color: var(--brand-cyan); }
.section-title-light { color: var(--white); }
.section-title-light em { color: var(--brand-cyan-light); }
.section-title-left { text-align: left; }
.section-head { text-align: center; max-width: min(43rem, 100%); margin: 0 auto clamp(2rem, 4vw, 3rem); }
.section-lead { font-size: var(--fluid-lead); color: var(--text-muted); margin-top: 1rem; line-height: 1.72; }
.section-lead-light { color: rgba(255, 255, 255, 0.8); }
.title-underline {
    width: 4rem; height: 3px;
    background: linear-gradient(90deg, var(--brand-navy), var(--brand-cyan));
    margin: 1.05rem auto 0;
}
.title-underline-left { margin-left: 0; margin-right: auto; }
.title-underline-light { background: linear-gradient(90deg, var(--brand-cyan-light), var(--white)); }

.icon-mark { display: inline-flex; align-items: center; justify-content: center; color: var(--brand-blue); flex-shrink: 0; }
.icon-mark svg { width: 1.2rem; height: 1.2rem; }
.icon-mark--lg {
    width: 2.85rem; height: 2.85rem; margin-bottom: 0.85rem;
    border-radius: 50%; background: rgba(16, 168, 224, 0.15); color: var(--brand-blue);
}
.icon-mark--tile {
    width: 2.6rem; height: 2.6rem; margin-bottom: 0.9rem;
    border-radius: var(--radius); background: rgba(87, 198, 242, 0.18); color: var(--brand-cyan-light);
}
.service-card .icon-mark--tile svg { width: 1.35rem; height: 1.35rem; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.92rem 1.65rem;
    font-family: var(--font-display);
    font-size: 0.92rem; font-weight: 600;
    letter-spacing: 0.09em; text-transform: uppercase;
    border-radius: var(--radius); border: 2px solid transparent;
    cursor: pointer; transition: var(--transition);
}
.btn-primary {
    background: var(--brand-cyan); color: var(--brand-navy-deep);
    border-color: var(--brand-cyan); box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
    background: var(--brand-navy); border-color: var(--brand-navy);
    color: var(--white); transform: translateY(-1px);
}
.btn-accent { background: var(--white); color: var(--brand-navy); border-color: var(--white); box-shadow: var(--shadow-sm); }
.btn-accent:hover { background: var(--brand-cyan); border-color: var(--brand-cyan); color: var(--brand-navy-deep); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.6); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.14); color: var(--white); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.78rem; }
.btn-block { width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Header */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: var(--transition); }
.header:not(.scrolled) .nav-link { color: rgba(255, 255, 255, 0.93); }
.header:not(.scrolled) .nav-link:hover,
.header:not(.scrolled) .nav-link.active { color: var(--brand-cyan-light); }
.header:not(.scrolled) .logo-name { color: var(--white); }
.header:not(.scrolled) .logo-tag { color: var(--brand-cyan-light); }
.header:not(.scrolled) .hamburger { background: var(--white); }
.header.scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: 0 1px 0 var(--border); }
.header.scrolled .nav-link { color: var(--text); }
.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active { color: var(--brand-blue); }
.header.scrolled .logo-name { color: var(--brand-navy); }
.header.scrolled .logo-tag { color: var(--brand-cyan); }
.header.scrolled .hamburger { background: var(--brand-navy); }
.header-content { display: flex; align-items: center; justify-content: space-between; padding: 0.5rem 0; gap: 1rem; }
.logo { display: flex; align-items: center; gap: 0.7rem; min-width: 0; flex-shrink: 0; }
/* The SGM monogram is angular and finely drawn — a small circle crushed it.
   A larger squared plate gives the linework room to actually read. */
.logo-mark {
    flex-shrink: 0;
    width: clamp(3.5rem, 9vw, 4.4rem); height: clamp(3.5rem, 9vw, 4.4rem);
    border-radius: 6px; overflow: hidden;
    background: var(--white);
    padding: 0.3rem;
    box-shadow: 0 3px 14px rgba(0, 0, 58, 0.3);
}
.header.scrolled .logo-mark { box-shadow: 0 2px 10px rgba(0, 0, 58, 0.18); }
/* The SGM monogram alone is 1.18:1, so it fits the circle. logo-mark.jpg
   squares it on white; the full lockup would clip its very wide wordmark. */
.logo-img { width: 100%; height: 100%; object-fit: contain; transform: scale(1.14); }
.logo-text { display: flex; flex-direction: column; line-height: 1.08; min-width: 0; }
.logo-name {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 3vw, 1.55rem); font-weight: 600;
    letter-spacing: 0.03em; text-transform: uppercase; color: var(--brand-navy);
}
/* "& MIRRORS" matches "SURE GLASS" exactly — same family, size, weight and
   tracking — so the two lines read as one wordmark, the way they do on the
   logo artwork. Hierarchy comes from colour alone, not size. */
.logo-tag {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 3vw, 1.55rem); font-weight: 600;
    letter-spacing: 0.03em; text-transform: uppercase; color: var(--brand-cyan);
}
.nav-list { display: flex; list-style: none; gap: clamp(0.5rem, 1.1vw, 1.05rem); flex-wrap: wrap; }
.nav-link { font-size: 0.77rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; }
.header-actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.header-cta { flex-shrink: 0; white-space: nowrap; }
.header.scrolled .header-actions .btn-secondary { color: var(--brand-navy); border-color: rgba(0,0,96,0.32); }
.header.scrolled .header-actions .btn-secondary:hover { border-color: var(--brand-cyan); color: var(--brand-blue); background: transparent; }

.mobile-menu-toggle, .nav-close { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.mobile-menu-toggle { flex-direction: column; }
.hamburger { width: 25px; height: 2px; background: var(--white); margin: 4px 0; }
.nav-close {
    position: absolute; top: 1.1rem; right: 1.1rem;
    width: 2.9rem; height: 2.9rem;
    align-items: center; justify-content: center;
    font-size: 1.95rem; line-height: 1;
    color: var(--white); background: var(--brand-navy);
    border-radius: 50%; z-index: 3; transition: var(--transition);
}
.nav-close:hover { background: var(--brand-cyan); color: var(--brand-navy-deep); transform: rotate(90deg); }
/* the house template styles .nav-close but never un-hides it */
.nav.active .nav-close { display: flex; }

/* Hero */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
    position: absolute; inset: 0;
    background: url('hero-glass.jpg') center 52% / cover no-repeat;
    background-color: var(--brand-navy-deep);
}
.hero-overlay {
    position: absolute; inset: 0;
    /* Near-black scrim, not a blue wash — lets the glass read as glass */
    background: linear-gradient(100deg,
        rgba(8, 9, 12, 0.9) 0%,
        rgba(8, 9, 12, 0.76) 46%,
        rgba(8, 9, 12, 0.46) 78%,
        rgba(8, 9, 12, 0.58) 100%);
}
/* Bevelled-pane divider — the logo's glass motif */
.hero-bevel { position: absolute; bottom: -1px; left: 0; width: 100%; z-index: 2; line-height: 0; }
.hero-bevel svg { width: 100%; height: clamp(2rem, 4vw, 3rem); display: block; }
.hero .container { width: 100%; }
.hero-layout { position: relative; z-index: 2; max-width: min(41rem, 100%); text-align: left; padding: clamp(7rem, 13vw, 9rem) 0 clamp(4.5rem, 9vw, 6.5rem); }
.hero-kicker { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-cyan-light); margin-bottom: 1rem; }
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 6.2vw, 4.1rem); font-weight: 600;
    line-height: 1.04; color: var(--white);
    text-transform: uppercase; letter-spacing: 0.01em; margin-bottom: 1rem;
}
.hero-title em { font-style: normal; color: var(--brand-cyan-light); }
.hero-subtitle { color: rgba(255, 255, 255, 0.92); font-size: var(--fluid-lead); max-width: 33rem; margin-bottom: 1.95rem; line-height: 1.72; }
/* The offer sits on its own line, tucked close under the service sentence so
   the two read as one block rather than two separate paragraphs. */
.hero-subtitle + .hero-subtitle-offer { margin-top: -1.15rem; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero-stamp {
    margin-top: 1.85rem;
    font-family: var(--font-display);
    font-size: 0.85rem; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.66);
}

/* Portrait viewports crop the hero hard: the photo is landscape 1.50 and a
   phone hero is ~0.46, so `cover` discards about 69% of the width. The
   frameless enclosure sits in the RIGHT THIRD of the photo, so at the default
   centre crop a phone showed only marble wall and the tub — no glass at all.
   Re-aim the crop rather than replace a sharp 2600px photo. */
@media (max-width: 1024px) {
    .hero-bg { background-position: 80% 50%; }
}

@media (max-width: 768px) {
    .hero-bg { background-position: 85% 50%; }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(8,9,12,0.84) 0%, rgba(8,9,12,0.62) 45%, rgba(8,9,12,0.9) 100%);
    }
}

/* Credibility strip */
.credibility-strip { background: var(--white); border-bottom: 1px solid var(--border); padding: clamp(1.35rem, 3vw, 1.9rem) 0; }
.credibility-list { list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); margin: 0; padding: 0; }
.credibility-stat {
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.28rem;
    padding: 0.5rem clamp(0.75rem, 2vw, 1.25rem);
    border-right: 1px solid var(--border);
}
.credibility-stat:last-child { border-right: none; }
.credibility-value {
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 2vw, 1.15rem); font-weight: 600;
    color: var(--brand-navy); line-height: 1.2; text-transform: uppercase; letter-spacing: 0.03em;
}
.credibility-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-muted); line-height: 1.4; }

/* Service pills */
.service-pills { background: var(--off-white); border-bottom: 1px solid var(--border); padding: 1.05rem 0; }
.service-pills-inner { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.service-pill {
    font-size: 0.73rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.42rem 0.9rem; border-radius: 999px;
    background: var(--white); color: var(--brand-navy); border: 1px solid var(--border);
    transition: var(--transition);
}
.service-pill:hover { background: var(--brand-cyan); border-color: var(--brand-cyan); color: var(--brand-navy-deep); transform: translateY(-2px); }

/* About */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--grid-gap-lg); align-items: center; }
.about-copy p { margin-bottom: 1rem; color: var(--text-muted); }
.about-copy p strong { color: var(--text); }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; margin: 1.35rem 0 0; }
.about-tags li {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 0.4rem 0.82rem; background: var(--white); border: 1px solid var(--border); color: var(--brand-navy);
}
.about-stat-chip {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.05rem 1.3rem; background: var(--white);
    border-left: 4px solid var(--brand-cyan); box-shadow: var(--shadow-sm); margin: 1.65rem 0;
}
.about-stat-num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--brand-navy); line-height: 1; }
.about-stat-label { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }
.about-photo { position: relative; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.about-photo img { width: 100%; height: clamp(300px, 34vw, 450px); object-fit: cover; transition: transform 0.9s cubic-bezier(0.22,0.9,0.3,1); }
.about-photo:hover img { transform: scale(1.04); }
.about-photo-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 0.72rem 1.1rem;
    background: linear-gradient(transparent, rgba(0, 0, 58, 0.92));
    color: var(--white); font-size: 0.78rem; font-weight: 600;
    font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.08em;
}

/* Services */
.services { background: linear-gradient(168deg, var(--brand-navy) 0%, var(--brand-navy-deep) 100%); color: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--grid-gap); margin-bottom: 2.25rem; }
.service-card {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-top: 3px solid transparent;
    border-radius: var(--radius);
    padding: 1.55rem 1.35rem 1.7rem;
    transition: var(--transition);
}
.service-card:hover { background: rgba(16, 168, 224, 0.14); border-top-color: var(--brand-cyan); transform: translateY(-3px); }
.service-card:hover .icon-mark--tile { background: var(--brand-cyan); color: var(--brand-navy-deep); }
.service-card .icon-mark--tile { transition: var(--transition); }
.service-card h3 {
    font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.03em; color: var(--white);
    margin-bottom: 0.5rem; line-height: 1.2;
}
.service-card p { font-size: 0.92rem; color: rgba(255, 255, 255, 0.76); line-height: 1.63; }
.services-cta { text-align: center; }

/* CTA band */
.cta-band { position: relative; padding: clamp(3.25rem, 6.5vw, 5rem) 0; overflow: hidden; }
.cta-band-bg { position: absolute; inset: 0; background: url('cta-glass.jpg') center 55% / cover no-repeat; background-attachment: fixed; }
.cta-band-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,9,12,0.9), rgba(0,0,58,0.8)); }
.cta-band-inner { position: relative; z-index: 1; text-align: center; max-width: min(41rem, 100%); margin: 0 auto; }
.cta-band-title { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.85rem); font-weight: 600; color: var(--white); margin-bottom: 0.9rem; line-height: 1.07; text-transform: uppercase; }
.cta-band-title em { font-style: normal; color: var(--brand-cyan-light); }
.cta-band-text { color: rgba(255, 255, 255, 0.9); margin-bottom: 1.7rem; font-size: var(--fluid-lead); }
.cta-band-buttons { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }

/* Portfolio — the client's own completed work */
.work-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--grid-gap); }
.work-item {
    position: relative; overflow: hidden;
    border: 1px solid var(--border); border-radius: var(--radius);
    box-shadow: var(--shadow-sm); background: var(--brand-navy-deep);
    transition: var(--transition);
}
.work-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.work-item img {
    width: 100%; height: clamp(230px, 26vw, 320px);
    object-fit: cover; display: block;
    transition: transform 0.85s cubic-bezier(0.22,0.9,0.3,1);
}
.work-item:hover img { transform: scale(1.06); }
.work-item figcaption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.4rem 1rem 0.75rem;
    background: linear-gradient(transparent, rgba(0, 0, 58, 0.9));
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.09em; text-transform: uppercase;
}

/* Why us */
.why-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--grid-gap); }
.why-card {
    padding: 1.7rem 1.35rem; background: var(--white);
    border: 1px solid var(--border); border-top: 3px solid var(--brand-cyan);
    border-radius: var(--radius); box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-card:hover .icon-mark--lg { background: var(--brand-cyan); color: var(--brand-navy-deep); }
.why-card .icon-mark--lg { transition: var(--transition); }
.why-card h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; color: var(--brand-navy); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.63; }

/* FAQ */
.faq { background: var(--brand-navy-deep); color: var(--white); }
.faq-list { max-width: min(43rem, 100%); margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.14); padding: 1.1rem 0; }
.faq-item summary {
    font-family: var(--font-display); font-weight: 600; font-size: 1.06rem;
    text-transform: uppercase; letter-spacing: 0.03em; cursor: pointer; list-style: none;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--white);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.35rem; color: var(--brand-cyan-light); flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item[open] summary::after { content: '\2212'; transform: rotate(180deg); }
.faq-item summary:hover { color: var(--brand-cyan-light); }
.faq-item p { margin-top: 0.78rem; color: rgba(255, 255, 255, 0.79); line-height: 1.74; font-size: 0.96rem; }
.faq-item a { color: var(--brand-cyan-light); }
.faq-item a:hover { color: var(--white); }

/* Contact */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--grid-gap-lg); align-items: start; }
.contact-details { list-style: none; margin-top: 1.65rem; display: flex; flex-direction: column; gap: 0.92rem; }
.contact-details li { display: flex; flex-direction: column; gap: 0.18rem; }
.contact-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-cyan); }
.contact-form { background: var(--white); padding: clamp(1.55rem, 3vw, 2.1rem); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.form-row { margin-bottom: 1.05rem; }
.form-row label { display: block; font-size: 0.73rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.38rem; }
.form-row input, .form-row select, .form-row textarea {
    width: 100%; padding: 0.8rem 0.9rem;
    font-family: var(--font-body); font-size: 0.96rem;
    border: 1px solid var(--border); border-radius: var(--radius);
    background: var(--off-white); color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    outline: none; border-color: var(--brand-cyan); box-shadow: 0 0 0 3px rgba(16, 168, 224, 0.2);
}
.form-error { color: #b42318; font-size: 0.87rem; margin-bottom: 0.75rem; }

/* Footer */
.footer-banner { background: linear-gradient(90deg, var(--brand-navy), var(--brand-blue)); padding: 1.3rem 0; text-align: center; }
.footer-tagline { font-family: var(--font-display); font-size: clamp(1rem, 2.6vw, 1.26rem); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--white); line-height: 1.4; }
/* Background on <footer>, not .footer-main — that element also carries
   .container (max-width 75rem) and would leave white gutters on wide screens. */
.footer { background: var(--brand-navy-deep); }
.footer-main { padding: 2.45rem 0; display: flex; flex-direction: column; align-items: center; gap: 1.05rem; text-align: center; }
.footer-logo {
    height: clamp(6rem, 15vw, 8rem); width: auto; max-width: min(20rem, 88vw);
    object-fit: contain; background: var(--white);
    border-radius: var(--radius); padding: 0.55rem 0.9rem;
}
.footer-address { font-size: 0.84rem; color: rgba(255, 255, 255, 0.6); line-height: 1.6; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center; }
.footer-nav a { font-size: 0.77rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(255,255,255,0.63); transition: var(--transition); }
.footer-nav a:hover { color: var(--brand-cyan-light); }
.footer-copy { font-size: 0.82rem; color: rgba(255, 255, 255, 0.44); }

/* Scroll reveal */
.scroll-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }
.stagger-children > * { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger-children.visible > * { opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.11s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.17s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.23s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.29s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.35s; }

/* Responsive */
@media (max-width: 1024px) {
    .header-actions { display: none; }
    .mobile-menu-toggle { display: flex; }
    .nav {
        display: none; position: fixed; top: 0; left: 0;
        width: 100%; min-height: 100vh; min-height: 100dvh; z-index: 10000;
        padding: clamp(5rem, 14vh, 7rem) var(--container-pad) 2rem;
        overflow-y: auto; background: rgba(255, 255, 255, 0.98);
        flex-direction: column; align-items: center; justify-content: flex-start;
    }
    .nav.active { display: flex; }
    .nav.active .nav-list { flex-direction: column; align-items: center; gap: 1.35rem; width: 100%; max-width: 18rem; }
    .nav.active .nav-link { display: block; width: 100%; text-align: center; font-size: 1.05rem; color: var(--brand-navy) !important; padding: 0.38rem 0; }
    .services-grid, .work-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .why-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 768px) {
    .credibility-list { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .credibility-stat { padding: 0.85rem 0.75rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .credibility-stat:nth-child(2n) { border-right: none; }
    .credibility-stat:nth-last-child(-n+2) { border-bottom: none; }
    .about-split, .contact-split { grid-template-columns: 1fr; }
    .services-grid, .work-grid, .why-grid { grid-template-columns: 1fr; }
    .cta-band-bg { background-attachment: scroll; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .scroll-reveal, .stagger-children > * { opacity: 1; transform: none; transition: none; }
    .service-card:hover, .why-card:hover, .work-item:hover, .service-pill:hover { transform: none; }
    .work-item:hover img, .about-photo:hover img { transform: none; }
    .nav-close:hover { transform: none; }
}
