/* majestyc.ca: one stylesheet for the whole site. */

@font-face { font-family: "Poppins"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/poppins-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/poppins-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/poppins-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 800; font-display: swap; src: url("../fonts/poppins-latin-800-normal.woff2") format("woff2"); }

:root {
  --black: #111111;
  --black-2: #1c1917;
  --black-3: #292524;
  --line-dark: #3a3532;
  --orange: #e8590c;
  --orange-hover: #c2410c;
  --orange-strong: #cc4a0a; /* behind white text: 4.6:1 contrast */
  --orange-strong-hover: #b03f08;
  --orange-soft: #fb923c;
  --white: #ffffff;
  --paper: #ffffff;
  --paper-alt: #f5f3f0;
  --ink: #1c1917;
  --ink-muted: #57534e;
  --on-dark-muted: #c9c3bd;
  --line: #e7e5e4;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(17, 17, 17, 0.08);
  --container: 1200px;
  --gutter: 20px;
  --header-h: 68px;
  --font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; font-family: var(--font); font-size: 16px; line-height: 1.6; color: var(--ink); background: var(--paper); }
img { max-width: 100%; height: auto; display: block; }
picture { display: block; }
a { color: var(--orange-hover); }
h1, h2, h3 { line-height: 1.15; margin: 0 0 0.5em; font-weight: 800; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--orange-soft); outline-offset: 2px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: 860px; }
.center { text-align: center; }
.muted { opacity: 0.75; }
.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; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--orange-strong); color: #fff; padding: 10px 16px; border-radius: var(--radius-sm); font-weight: 700; }
.skip:focus { top: 12px; }
.icon { width: 1.15em; height: 1.15em; flex: none; }
.icon-sm { width: 0.95em; height: 0.95em; }
.kicker { color: var(--orange); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 0.75rem; }
.lead { font-size: 1.1rem; color: var(--on-dark-muted); max-width: 38rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5em; min-height: 46px; padding: 10px 20px; border-radius: var(--radius-sm); border: 2px solid transparent; font: inherit; font-weight: 700; font-size: 0.95rem; text-decoration: none; cursor: pointer; transition: background-color .15s, border-color .15s, color .15s; }
.btn-lg { min-height: 54px; padding: 12px 26px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--orange-strong); color: #fff; }
.btn-primary:hover { background: var(--orange-strong-hover); }
.btn-outline { border-color: #fff; color: #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: var(--black); }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: var(--black-3); }
.btn[disabled] { opacity: .6; cursor: progress; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--black); color: #fff; border-bottom: 1px solid #242424; }
.header-inner { display: flex; align-items: center; gap: 16px; min-height: var(--header-h); }
.logo { font-weight: 800; font-size: 1.15rem; letter-spacing: 0.04em; color: #fff; text-decoration: none; margin-right: auto; white-space: nowrap; }
.logo span { color: var(--orange); }
.site-nav { display: flex; align-items: center; gap: 12px; }
.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-link { display: inline-flex; align-items: center; gap: 4px; padding: 10px 12px; color: #fff; text-decoration: none; font: inherit; font-weight: 600; font-size: 0.95rem; background: none; border: 0; cursor: pointer; border-radius: var(--radius-sm); }
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--orange-soft); }
.lang-switch { border: 1px solid #444; padding: 6px 10px; font-size: 0.85rem; }
.has-sub { position: relative; }
.sub { position: absolute; top: calc(100% + 6px); left: 0; min-width: 240px; list-style: none; margin: 0; padding: 8px; background: var(--black-2); border: 1px solid var(--line-dark); border-radius: var(--radius); box-shadow: 0 16px 40px rgba(0,0,0,.35); display: none; }
.has-sub.open .sub { display: block; }
.sub a { display: block; padding: 10px 12px; color: #fff; text-decoration: none; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.95rem; }
.sub a:hover, .sub a[aria-current="page"] { background: var(--black-3); color: var(--orange-soft); }
.sub-toggle[aria-expanded="true"] .icon { transform: rotate(180deg); }
.header-phone { min-height: 42px; padding: 8px 16px; }
.nav-toggle { display: none; background: none; border: 0; color: #fff; padding: 10px; cursor: pointer; }
.nav-toggle .icon { width: 28px; height: 28px; }
.nav-toggle-close { display: none; }

@media (max-width: 959px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { position: fixed; inset: var(--header-h) 0 0 0; background: var(--black); flex-direction: column; align-items: stretch; padding: 16px var(--gutter) 100px; overflow-y: auto; display: none; }
  .nav-open .site-nav { display: flex; }
  .nav-open .nav-toggle-open { display: none; }
  .nav-open .nav-toggle-close { display: inline; }
  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-link { width: 100%; justify-content: space-between; padding: 14px 8px; font-size: 1.1rem; border-bottom: 1px solid #222; border-radius: 0; }
  .lang-switch { border: 0; border-bottom: 1px solid #222; justify-content: flex-start; }
  .sub { position: static; display: none; box-shadow: none; border: 0; background: transparent; padding: 0 0 8px 12px; }
  .header-phone { margin-top: 16px; min-height: 52px; }
  body.nav-open { overflow: hidden; }
}

/* Hero */
.hero { position: relative; background: radial-gradient(ellipse at 85% 10%, #2a1a10 0%, var(--black) 58%); color: #fff; padding: 56px 0 76px; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.hero h1 { margin-bottom: 0.4em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.hero-phone { margin: 14px 0 0; color: var(--on-dark-muted); font-weight: 600; letter-spacing: .02em; }
.hero-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-photo { border-radius: var(--radius); overflow: hidden; background: var(--black-3); aspect-ratio: 4 / 3; }
.hero-photo-main { grid-column: span 2; aspect-ratio: 16 / 9; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 959px) {
  .hero { padding: 36px 0 70px; }
  .hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-photos .hero-photo:not(.hero-photo-main) { display: none; }
}

/* Forklift easter egg */
.forklift { position: absolute; left: max(var(--gutter), calc((100% - var(--container)) / 2 + var(--gutter))); bottom: 0; width: 76px; height: 48px; color: #fff; opacity: .85; pointer-events: none; }
.forklift-truck { position: absolute; left: 0; bottom: -7px; width: 48px; height: 48px; }
.forklift-boxes { position: absolute; left: 38px; bottom: 0; width: 30px; height: 30px; will-change: transform; }
.forklift-forks { will-change: transform; }

/* Trust band */
.trust { background: var(--orange-strong); color: #fff; }
.trust-list { display: flex; flex-wrap: wrap; gap: 12px 40px; list-style: none; margin: 0 auto; padding-top: 18px; padding-bottom: 18px; }
.trust-list li { display: flex; flex-direction: column; line-height: 1.3; }
.trust-list strong { font-size: 1.2rem; font-weight: 800; display: inline-flex; align-items: center; gap: 6px; }
.trust-list span { font-size: 0.85rem; }
.trust-list a { color: #fff; text-decoration: none; display: flex; flex-direction: column; }
.trust-list a:hover strong { text-decoration: underline; }
@media (max-width: 599px) { .trust-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; } .trust-list strong { font-size: 1.05rem; } }

/* Sections */
.section { padding: 72px 0; }
.section-alt { background: var(--paper-alt); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.section-head p { color: var(--ink-muted); font-size: 1.05rem; margin: 0; }
@media (max-width: 599px) { .section { padding: 52px 0; } }

/* Service cards */
.service-cards { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card a { display: flex; flex-direction: column; height: 100%; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; color: inherit; text-decoration: none; transition: box-shadow .2s, transform .2s; }
.service-card a:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.service-card-photo { aspect-ratio: 4 / 3; background: var(--paper-alt); overflow: hidden; }
.service-card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 70%; }
.service-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.service-card-body p { color: var(--ink-muted); font-size: 0.95rem; flex: 1; }
.service-card .more { color: var(--orange-hover); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 959px) { .service-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 599px) { .service-cards { grid-template-columns: 1fr; } }

/* Process */
.process { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.process-step { background: #fff; border-radius: var(--radius); padding: 24px 22px; border: 1px solid var(--line); position: relative; }
.process-num { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--orange-strong); color: #fff; font-weight: 800; margin-bottom: 14px; }
.process-step p { color: var(--ink-muted); font-size: 0.95rem; margin: 0; }
@media (max-width: 959px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 599px) { .process { grid-template-columns: 1fr; } }

/* Gallery */
.gallery { list-style: none; margin: 0 0 32px; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery li { margin: 0; }
.gallery a { position: relative; display: block; aspect-ratio: 4 / 3; border-radius: var(--radius-sm); overflow: hidden; background: var(--paper-alt); }
.gallery img, .gallery picture { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.gallery a:hover img { transform: scale(1.04); }
.gallery-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 12px 10px; color: #fff; font-size: 0.85rem; font-weight: 600; line-height: 1.35; background: linear-gradient(transparent, rgba(0,0,0,.75)); }
@media (max-width: 959px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 599px) { .gallery { grid-template-columns: 1fr 1fr; gap: 8px; } }

/* Reviews */
.review-list { list-style: none; margin: 0 0 32px; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.review-stars { color: #f59e0b; display: flex; gap: 2px; margin: 0 0 10px; }
.review blockquote { margin: 0 0 12px; }
.review { display: flex; flex-direction: column; }
.review blockquote { flex: 1; font-size: 1.02rem; }
.review-author { font-weight: 700; margin: 0; }
.review-author span { font-weight: 400; color: var(--ink-muted); }
.section-head .icon-star, .trust .icon-star { color: #f59e0b; vertical-align: -0.15em; }
.trust .icon-star { color: #fff; }
.reviews-band { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.reviews-band h2 { margin-bottom: 0.25em; font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
.reviews-band p { margin: 0; color: var(--ink-muted); }
.reviews-band .icon { color: #f59e0b; }
@media (max-width: 959px) { .review-list { grid-template-columns: 1fr; } }

/* Contact section + quote form */
.contact-section { background: var(--black); color: #fff; padding: 72px 0; }
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; align-items: start; }
.contact-panel h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.contact-phone { display: inline-flex; align-items: center; gap: 10px; font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800; color: var(--orange); text-decoration: none; margin: 4px 0 20px; }
.contact-phone:hover { color: var(--orange-soft); }
.contact-facts { margin: 0; display: grid; gap: 14px; }
.contact-facts > div { display: grid; grid-template-columns: 22px 1fr; column-gap: 12px; align-items: start; }
.contact-facts .icon { color: var(--orange-soft); margin-top: 3px; grid-row: span 2; }
.contact-facts dt { font-size: 0.8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--on-dark-muted); }
.contact-facts dd { margin: 0; font-weight: 600; }
.contact-facts a { color: #fff; }
@media (max-width: 959px) { .contact-grid { grid-template-columns: 1fr; } }

.quote-form { background: var(--black-2); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 28px; }
.quote-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 16px; }
.field { margin: 0 0 16px; border: 0; padding: 0; min-width: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label, .field legend, .field .label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; padding: 0; }
.opt { font-weight: 400; color: var(--on-dark-muted); }
.quote-form input[type=text], .quote-form input[type=tel], .quote-form input[type=email], .quote-form input[type=date], .quote-form textarea {
  width: 100%; min-height: 48px; padding: 11px 14px; border-radius: var(--radius-sm); border: 1px solid #57534e; background: #0c0a09; color: #f5f5f4; font: inherit; }
.quote-form textarea { min-height: 110px; resize: vertical; }
.quote-form input::placeholder, .quote-form textarea::placeholder { color: #8a837d; }
.quote-form input:focus, .quote-form textarea:focus { outline: 2px solid var(--orange-soft); outline-offset: 0; border-color: var(--orange-soft); }
.quote-form input[type=date] { color-scheme: dark; }
.quote-form .field-error { border-color: #f87171 !important; }
@media (max-width: 599px) { .quote-form { padding: 20px 16px; } .field-row { grid-template-columns: 1fr; gap: 0; } }

.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; margin: 0 !important; font-weight: 600 !important; }
.chip input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.chip span { display: inline-block; padding: 9px 16px; border-radius: 999px; border: 1px solid #57534e; font-size: 0.9rem; cursor: pointer; transition: background-color .15s, border-color .15s; }
.chip input:checked + span { background: var(--orange-strong); border-color: var(--orange-strong); color: #fff; }
.chip input:focus-visible + span { outline: 3px solid var(--orange-soft); outline-offset: 2px; }
.chip:hover span { border-color: var(--orange-soft); }

.more-details { margin: 4px 0 18px; }
.more-details summary { cursor: pointer; color: var(--orange-soft); font-weight: 700; list-style: none; padding: 6px 0; display: inline-block; }
.more-details summary::-webkit-details-marker { display: none; }
.more-details .when-open, .more-details[open] .when-closed { display: none; }
.more-details[open] .when-open { display: inline; }
.more-details[open] summary { margin-bottom: 12px; }

.dropzone { display: flex !important; flex-direction: column; align-items: center; gap: 6px; padding: 22px 16px; border: 2px dashed #57534e; border-radius: var(--radius); text-align: center; color: var(--on-dark-muted); cursor: pointer; font-weight: 400 !important; transition: border-color .15s, background-color .15s; }
.dropzone .icon { width: 28px; height: 28px; color: var(--orange-soft); }
.dropzone u { color: var(--orange-soft); font-weight: 700; }
.dropzone.dragover, .dropzone:hover { border-color: var(--orange-soft); background: rgba(232, 89, 12, .08); }
.dropzone input[type=file] { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.dropzone:focus-within { outline: 3px solid var(--orange-soft); outline-offset: 2px; }
.file-list { list-style: none; margin: 10px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.file-list li { position: relative; width: 76px; }
.file-thumb { width: 76px; height: 76px; border-radius: var(--radius-sm); background: var(--black-3) center / cover no-repeat; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--on-dark-muted); overflow: hidden; text-align: center; padding: 4px; }
.file-thumb video { width: 100%; height: 100%; object-fit: cover; }
.file-name { display: block; font-size: 0.7rem; color: var(--on-dark-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 3px; }
.file-remove { position: absolute; top: -8px; right: -8px; width: 26px; height: 26px; border-radius: 50%; border: 0; background: #fff; color: var(--black); font-size: 16px; line-height: 1; cursor: pointer; box-shadow: 0 2px 6px rgba(0,0,0,.4); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-progress { display: block; width: 100%; height: 8px; margin-top: 14px; accent-color: var(--orange); }
.form-progress[hidden] { display: none; }
.form-status { margin: 12px 0 0; font-weight: 600; }
.form-status:empty { display: none; }
.form-status.error { color: #fca5a5; }
.form-status.success { color: #86efac; font-size: 1.05rem; }
.form-after { margin: 10px 0 0; color: var(--on-dark-muted); font-size: 0.85rem; text-align: center; }
.quote-form.sent .field, .quote-form.sent .field-row, .quote-form.sent .chips, .quote-form.sent .more-details, .quote-form.sent button, .quote-form.sent .form-after { display: none; }

/* FAQ */
.faq-list { display: grid; gap: 10px; margin-bottom: 28px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.section-alt .faq-item { background: #fff; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-q { margin: 0; font-size: 1.02rem; font-weight: 700; line-height: 1.4; }
.faq-chevron { color: var(--orange); transition: transform .2s; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item p { margin: 0; padding: 0 20px 20px; color: var(--ink-muted); }

/* Inner page heroes */
.page-hero { background: radial-gradient(ellipse at 85% 10%, #2a1a10 0%, var(--black) 58%); color: #fff; padding: 48px 0 56px; }
.page-hero-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: center; }
.page-hero-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; background: var(--black-3); }
.page-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 75%; }
.page-hero-simple { padding: 56px 0; }
.page-hero-simple h1 { margin-bottom: 0.3em; }
.breadcrumbs { font-size: 0.85rem; color: var(--on-dark-muted); margin-bottom: 14px; }
.breadcrumbs a { color: var(--on-dark-muted); }
.breadcrumbs a:hover { color: #fff; }
@media (max-width: 959px) { .page-hero-inner { grid-template-columns: 1fr; gap: 26px; } }

/* Service page body */
.service-body { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.prose { font-size: 1.05rem; }
.prose p { color: #3f3a36; }
.prose h2 { font-size: 1.5rem; margin-top: 1.4em; }
.bullets { padding-left: 1.2em; margin: 0; }
.bullets li { margin: 6px 0; }
.bullets li::marker { color: var(--orange); }
.included { background: var(--paper-alt); border-radius: var(--radius); padding: 26px; position: sticky; top: calc(var(--header-h) + 20px); }
.included h2 { font-size: 1.3rem; }
.checklist { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 10px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; }
.checklist .icon { color: var(--orange); margin-top: 4px; }
@media (max-width: 959px) { .service-body { grid-template-columns: 1fr; gap: 28px; } .included { position: static; } }

/* Contact page: service area */
.area-section { background: var(--black); color: #fff; padding-top: 0; }
.area-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 44px; align-items: center; border-top: 1px solid #262220; padding-top: 64px; }
.area-text { color: var(--on-dark-muted); font-size: 1.05rem; }
.area-section .checklist { margin: 18px 0 26px; }
.area-map { width: 100%; height: auto; border-radius: var(--radius); }
@media (max-width: 959px) { .area-grid { grid-template-columns: 1fr; gap: 28px; padding-top: 48px; } }

/* Footer */
.site-footer { background: #0b0b0b; color: var(--on-dark-muted); padding: 56px 0 24px; font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 32px; }
.footer-tagline { margin-top: 12px; max-width: 26rem; }
.footer-title { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.footer-links, .footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-links a, .footer-contact a { color: var(--on-dark-muted); text-decoration: none; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact .icon { color: var(--orange-soft); margin-top: 4px; }
.footer-bottom { border-top: 1px solid #222; margin-top: 36px; padding-top: 20px; font-size: 0.85rem; }
.footer-bottom p { margin: 0; }
@media (max-width: 959px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 599px) { .footer-grid { grid-template-columns: 1fr; } }

/* Phone call bar */
.callbar { display: none; }
@media (max-width: 959px) {
  .callbar { display: grid; grid-template-columns: 1.3fr 1fr; gap: 8px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; padding: 8px 10px calc(8px + env(safe-area-inset-bottom)); background: rgba(17, 17, 17, 0.96); border-top: 1px solid #2a2a2a; }
  .callbar a { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; border-radius: var(--radius-sm); font-weight: 800; text-decoration: none; }
  .callbar-call { background: var(--orange-strong); color: #fff; }
  .callbar-quote { background: #2a2a2a; color: #fff; }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .nav-open .callbar { display: none; }
}

/* Lightbox (lightbox.js) */
.lb { position: fixed; inset: 0; z-index: 1000; background: rgba(12, 10, 9, 0.97); display: flex; flex-direction: column; color: #fff; }
.lb[hidden] { display: none; }
.lb-bar { display: flex; align-items: center; gap: 8px; padding: 10px 14px; }
.lb-count { margin-right: auto; font-weight: 700; font-variant-numeric: tabular-nums; }
.lb-btn { min-width: 46px; min-height: 46px; display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 999px; background: rgba(255,255,255,.12); color: #fff; font: inherit; font-size: 1.3rem; cursor: pointer; }
.lb-btn:hover, .lb-btn:focus-visible { background: rgba(255,255,255,.25); }
.lb-stage { position: relative; flex: 1 1 auto; min-height: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; touch-action: pan-y pinch-zoom; }
.lb-img { max-width: 100%; max-height: 100%; object-fit: contain; cursor: zoom-in; user-select: none; }
.lb-stage.zoomed { overflow: auto; display: block; touch-action: auto; }
.lb-stage.zoomed .lb-img { max-width: none; max-height: none; cursor: zoom-out; }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 1.8rem; }
.lb-prev { left: 12px; } .lb-next { right: 12px; }
.lb-stage.zoomed .lb-prev, .lb-stage.zoomed .lb-next { display: none; }
.lb-caption { padding: 8px 16px 18px; text-align: center; color: #d6d3d1; min-height: 1.6em; }

/* 404 */
.notfound { padding: 88px 0; }
