:root {
  --ink: #081b3d;
  --ink-soft: #12345d;
  --steel-900: #12345d;
  --steel-700: #aebfd1;
  --steel-500: #8fa6bd;
  --steel-200: rgba(190, 214, 235, .24);
  --steel-100: #12345d;
  --white: #f3f7fb;
  --amber: #ff6a13;
  --amber-deep: #d84d08;
  --line: rgba(190, 214, 235, .24);
  --shadow: 0 20px 50px rgba(0, 8, 24, .28);
  --radius: 14px;
  --max: 1180px;
  --font-display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--white); background: var(--ink); font-family: var(--font-body); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.skip-link { position: absolute; top: -4rem; left: 1rem; z-index: 100; padding: .65rem 1rem; background: var(--amber); color: var(--ink); font-weight: 800; text-decoration: none; }
.skip-link:focus { top: 1rem; }

.site-header { position: relative; z-index: 10; background: var(--ink); color: var(--white); border-bottom: 1px solid rgba(255,255,255,.12); }
.nav-shell { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; gap: .75rem; align-items: center; text-decoration: none; color: var(--white); }
.brand-mark { width: 39px; height: 39px; display: grid; place-items: center; background: var(--amber); color: var(--ink); font-family: var(--font-display); font-weight: 900; font-size: .85rem; letter-spacing: -.05em; transform: skew(-9deg); }
.brand-mark span { transform: skew(9deg); }
.brand-name { font-family: var(--font-display); font-size: 1.55rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.menu-toggle { display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.28); padding: .55rem; color: var(--white); background: transparent; cursor: pointer; }
.menu-toggle svg { width: 1.4rem; height: 1.4rem; }
.primary-nav { display: none; position: absolute; top: 76px; left: 0; right: 0; padding: .75rem 1rem 1rem; background: var(--ink); border-top: 1px solid rgba(255,255,255,.1); }
.primary-nav.is-open { display: block; }
.primary-nav ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .2rem; }
.primary-nav a { display: block; padding: .7rem .75rem; color: #e8ebec; text-decoration: none; font-size: .88rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--amber); }

.hero { position: relative; overflow: hidden; isolation: isolate; background: var(--ink); color: var(--white); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; opacity: .19; background: repeating-linear-gradient(125deg, transparent 0 70px, rgba(255,255,255,.17) 71px 72px, transparent 73px 130px); }
.hero::after { content: ""; position: absolute; z-index: -1; width: 32rem; height: 32rem; top: -11rem; right: -12rem; border: 1px solid rgba(242,165,26,.25); border-radius: 50%; box-shadow: 0 0 0 35px rgba(242,165,26,.04), 0 0 0 70px rgba(242,165,26,.025); }
.hero-grid { min-height: 590px; display: grid; align-items: center; padding-block: 5.2rem 4rem; }
.eyebrow { display: flex; align-items: center; gap: .6rem; margin: 0 0 1.25rem; color: var(--amber); font-size: .75rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 1.8rem; height: 2px; background: currentColor; }
.hero h1, .page-hero h1 { max-width: 760px; margin: 0; font-family: var(--font-display); font-size: clamp(3.25rem, 13vw, 7.7rem); font-weight: 900; line-height: .9; letter-spacing: -.065em; text-transform: uppercase; }
.hero h1 em, .page-hero h1 em { color: var(--amber); font-style: normal; }
.hero-copy { max-width: 580px; margin: 1.7rem 0 0; color: #d8dfe1; font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: .55rem; padding: .75rem 1.2rem; border: 2px solid transparent; border-radius: 999px; background: var(--amber); color: var(--ink); text-decoration: none; font-size: .78rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); background: #ffc14c; }
.button-secondary { background: transparent; border-color: rgba(255,255,255,.4); color: var(--white); }
.button-secondary:hover { background: var(--steel-100); color: var(--white); }
.button-dark { background: var(--steel-100); color: var(--white); border-color: rgba(190, 214, 235, .3); }
.button-dark:hover { background: var(--steel-900); }
.button-arrow::after { content: "→"; font-size: 1.1rem; }

.section { padding-block: 4.7rem; }
.section-tight { padding-block: 3rem; }
.section-dark { background: var(--ink); color: var(--white); }
.section-steel { background: var(--steel-100); color: var(--white); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; }
.section-heading h2 { max-width: 650px; margin: 0; font-family: var(--font-display); font-size: clamp(2.3rem, 6vw, 4.25rem); line-height: .95; letter-spacing: -.055em; text-transform: uppercase; }
.section-heading p { max-width: 340px; margin: 0; color: var(--steel-700); }
.section-dark .section-heading p { color: #b8c0c3; }
.rule { height: 1px; margin: 0 0 1.6rem; background: var(--line); }

.service-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.service-card { min-height: 295px; display: flex; flex-direction: column; justify-content: space-between; padding: 1.45rem; background: var(--steel-100); border-radius: var(--radius); }
.section-dark .service-card { background: var(--ink-soft); border-color: rgba(255,255,255,.1); }
.service-number { color: var(--amber-deep); font-size: .76rem; font-weight: 900; letter-spacing: .12em; }
.service-icon { display: grid; place-items: center; width: 46px; height: 46px; margin: 1.1rem 0 1.3rem; background: var(--amber); color: var(--ink); border-radius: 12px; }
.service-icon svg { width: 25px; height: 25px; }
.service-card h3 { margin: 0 0 .55rem; font-family: var(--font-display); font-size: 1.65rem; line-height: 1; text-transform: uppercase; }
.service-card p { margin: 0; color: var(--steel-700); font-size: .94rem; }
.section-dark .service-card p { color: #bec6c8; }
.card-link { display: inline-flex; align-items: center; gap: .45rem; margin-top: 1.3rem; color: var(--amber-deep); font-size: .76rem; font-weight: 900; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.section-dark .card-link { color: var(--amber); }
.card-link::after { content: "↗"; font-size: 1rem; }

.split-callout { display: grid; gap: 2rem; align-items: center; }
.callout-label { margin: 0 0 .75rem; color: var(--amber-deep); font-size: .75rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.split-callout h2 { margin: 0; font-family: var(--font-display); font-size: clamp(2.3rem, 6vw, 4.1rem); line-height: .94; letter-spacing: -.055em; text-transform: uppercase; }
.split-callout p { color: var(--steel-700); }
.callout-panel { position: relative; min-height: 245px; display: flex; align-items: end; overflow: hidden; padding: 1.4rem; background: var(--steel-900); color: var(--white); }
.callout-panel::before { content: ""; position: absolute; inset: 0; opacity: .27; background: linear-gradient(135deg, transparent 40%, var(--amber) 40.5% 41.5%, transparent 42% 58%, var(--amber) 58.5% 59.5%, transparent 60%), repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 34px); }
.callout-panel > * { position: relative; }
.callout-panel strong { display: block; font-family: var(--font-display); font-size: 2.2rem; line-height: .92; text-transform: uppercase; }
.callout-panel small { display: block; margin-top: .65rem; color: #e5e8e9; }

.page-hero { background: var(--ink); color: var(--white); padding-block: 4rem 4.3rem; }
.page-hero h1 { font-size: clamp(3.3rem, 11vw, 6.5rem); }
.page-hero p { max-width: 650px; margin: 1.3rem 0 0; color: #cbd2d5; font-size: 1.05rem; }
.breadcrumb { margin: 0 0 1.3rem; color: var(--amber); font-size: .73rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }

.service-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.service-row { display: grid; gap: 1.3rem; padding: 1.5rem; background: var(--steel-100); }
.service-row-number { color: var(--amber-deep); font-weight: 900; letter-spacing: .1em; }
.service-row h2 { margin: 0; font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); line-height: .95; letter-spacing: -.04em; text-transform: uppercase; }
.service-row p { margin: 0; color: var(--steel-700); }
.service-row ul { margin: 0; padding-left: 1.1rem; color: var(--steel-700); }
.service-row li + li { margin-top: .3rem; }

.gallery-grid { display: grid; gap: 1rem; }
.gallery-card { min-height: 280px; display: flex; flex-direction: column; justify-content: space-between; padding: 1rem; border: 1px solid var(--steel-200); background: var(--steel-100); }
.gallery-placeholder { flex: 1; min-height: 200px; display: grid; place-items: center; text-align: center; border: 1px dashed rgba(190,214,235,.45); border-radius: 10px; background-color: var(--steel-100); background-image: linear-gradient(135deg, rgba(190,214,235,.08) 25%, transparent 25%, transparent 50%, rgba(190,214,235,.08) 50%, rgba(190,214,235,.08) 75%, transparent 75%); background-size: 18px 18px; }
.gallery-placeholder span { display: inline-block; padding: .5rem .65rem; background: rgba(23,26,29,.9); color: var(--white); font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.gallery-meta { display: flex; justify-content: space-between; gap: 1rem; padding-top: .8rem; font-size: .75rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.gallery-meta span:last-child { color: var(--amber-deep); }
.gallery-note { margin-top: 1.25rem; color: var(--steel-700); font-size: .9rem; }

.about-grid { display: grid; gap: 3rem; }
.about-lead { font-family: var(--font-display); font-size: clamp(2.2rem, 6vw, 4.1rem); line-height: .97; letter-spacing: -.05em; text-transform: uppercase; }
.about-copy p { color: var(--steel-700); }
.feature-list { display: grid; gap: 1rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.feature-list li { display: flex; gap: .9rem; align-items: start; padding-top: 1rem; border-top: 1px solid var(--line); }
.feature-list b { color: var(--amber-deep); font-family: var(--font-display); font-size: 1.3rem; }
.feature-list strong { display: block; font-size: .9rem; }
.feature-list span { display: block; margin-top: .15rem; color: var(--steel-700); font-size: .88rem; }

.contact-grid { display: grid; gap: 2.5rem; }
.contact-intro h2 { margin: 0; font-family: var(--font-display); font-size: clamp(2.5rem, 7vw, 4.5rem); line-height: .92; letter-spacing: -.055em; text-transform: uppercase; }
.contact-intro > p { max-width: 480px; color: var(--steel-700); }
.contact-details { display: grid; gap: .85rem; margin-top: 2rem; }
.detail { display: grid; gap: .1rem; padding: .9rem 0; border-top: 1px solid var(--line); }
.detail-label { color: var(--amber-deep); font-size: .7rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.detail a, .detail span { font-weight: 700; text-decoration: none; }
.contact-form { padding: 1.3rem; background: var(--steel-100); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-intro { margin: 0 0 1.1rem; font-family: var(--font-display); font-size: 1.6rem; line-height: 1; text-transform: uppercase; }
.form-grid { display: grid; gap: 1.35rem; }
.field { display: grid; gap: .55rem; }
.field label { font-size: .76rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(190,214,235,.42); border-radius: 10px; padding: .75rem; background: var(--ink); color: var(--white); }
.field textarea { min-height: 145px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #748087; }
.form-footnote { margin: .8rem 0 0; color: var(--steel-700); font-size: .75rem; }

.site-footer { padding-block: 2.5rem 1.2rem; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; gap: 2rem; padding-bottom: 2.2rem; }
.footer-tagline { max-width: 270px; margin: .9rem 0 0; color: #bbc3c6; font-size: .9rem; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .55rem 1rem; align-content: start; }
.footer-links a { color: #d5dbdd; font-size: .83rem; text-decoration: none; }
.footer-links a:hover { color: var(--amber); }
.footer-contact { display: grid; gap: .3rem; align-content: start; font-size: .86rem; }
.footer-contact a { color: #d5dbdd; text-decoration: none; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .7rem; padding-top: 1.1rem; border-top: 1px solid rgba(255,255,255,.14); color: #929da1; font-size: .73rem; }
.footer-bottom span:last-child { color: var(--amber); }

@media (min-width: 600px) {
  .container { width: min(calc(100% - 3.5rem), var(--max)); }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid.two { grid-template-columns: repeat(2, 1fr); }
  .contact-form { padding: 2rem; }
}

@media (min-width: 800px) {
  .menu-toggle { display: none; }
  .primary-nav { display: block; position: static; padding: 0; background: transparent; border: 0; }
  .primary-nav ul { display: flex; align-items: center; gap: .2rem; }
  .primary-nav a { padding: .55rem .7rem; font-size: .72rem; }
  .hero-grid { min-height: 660px; }
  .split-callout { grid-template-columns: 1.15fr .85fr; gap: 5rem; }
  .service-row { grid-template-columns: 75px 1.1fr 1fr; align-items: start; padding: 2.2rem; }
  .service-row ul { padding-top: .25rem; }
  .about-grid { grid-template-columns: .85fr 1.15fr; gap: 7rem; }
  .contact-grid { grid-template-columns: .85fr 1.15fr; gap: 6rem; align-items: start; }
  .footer-grid { grid-template-columns: 1.4fr .7fr .9fr; }
}

@media (min-width: 1040px) {
  .hero-grid { padding-block: 6rem 5rem; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ATA Welding LTD brand details */
.brand-logo { width: 54px; height: 54px; flex: 0 0 54px; object-fit: contain; border-radius: 2px; }
.header-call { display: inline-flex; align-items: center; gap: .35rem; margin-left: auto; padding: .45rem .7rem; color: var(--white); border: 1px solid rgba(255,255,255,.28); text-decoration: none; font-size: .75rem; font-weight: 900; letter-spacing: .04em; white-space: nowrap; }
.header-call span { color: var(--amber); text-transform: uppercase; }
.header-call:hover { background: var(--amber); color: var(--ink); }
.service-area { margin: 1.2rem 0 0; color: #d8e0e8; font-size: .88rem; letter-spacing: .03em; }
.service-area strong { color: var(--amber); }
.button-call { background: var(--amber); color: var(--ink); }
.button-call:hover { background: #ff8942; color: var(--ink); }
.contact-call { margin-top: 1.2rem; }
.trust-strip { background: var(--steel-100); color: var(--white); border-bottom: 1px solid var(--steel-200); }
.trust-items { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem 2rem; padding-block: 1rem; font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-align: center; text-transform: uppercase; }
.trust-items span + span::before { content: "·"; margin-right: 2rem; }
.mobile-call { display: none; }
@media (max-width: 799px) {
  .brand-logo { width: 45px; height: 45px; flex-basis: 45px; }
  .brand-name { font-size: 1.2rem; }
  .header-call { padding: .38rem .5rem; font-size: .68rem; }
  .header-call span { display: none; }
  .mobile-call { position: fixed; z-index: 20; right: 1rem; bottom: 1rem; left: 1rem; display: flex; min-height: 50px; align-items: center; justify-content: center; border: 2px solid var(--ink); background: var(--amber); color: var(--ink); box-shadow: 0 8px 24px rgba(8,27,61,.28); font-size: .8rem; font-weight: 900; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
  body { padding-bottom: 4.8rem; }
  .trust-items { display: grid; gap: .25rem; }
  .trust-items span + span::before { display: none; }
}


/* Verified Google review section */
.review-section .section-heading p { color: #b8c0c3; }
.review-link { color: var(--amber); font-weight: 800; text-decoration: none; }
.review-link:hover { color: var(--white); }
.review-grid { display: grid; gap: 1rem; }
.review-card { padding: 1.25rem; background: var(--ink-soft); border: 1px solid rgba(255,255,255,.14); }
.review-stars { color: var(--amber); letter-spacing: .12em; font-size: .9rem; }
.review-card p { margin: .85rem 0 1rem; color: #d8dfe1; font-size: .9rem; line-height: 1.55; }
.review-card span { color: var(--white); font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
@media (min-width: 600px) {
  .review-grid { grid-template-columns: repeat(2, 1fr); }
}
.content-card { padding: 1.35rem; border: 1px solid var(--steel-200); background: var(--steel-100); }
.content-card h3 { margin: 0 0 .35rem; font-family: var(--font-display); font-size: 1.75rem; line-height: 1; text-transform: uppercase; }
.content-card p:last-child { margin: 0; color: var(--steel-700); }
.content-card a { color: var(--amber-deep); font-weight: 800; }

/* Two-surface refresh and shared rounded UI */
.service-grid, .service-list { border-radius: var(--radius); overflow: hidden; }
.service-icon { border-radius: 12px; }
.service-row, .gallery-card, .content-card { border-radius: var(--radius); }
.gallery-card { background: var(--steel-100); }
.gallery-placeholder { border-radius: 10px; border-color: rgba(190,214,235,.45); background-color: var(--steel-100); background-image: linear-gradient(135deg, rgba(190,214,235,.08) 25%, transparent 25%, transparent 50%, rgba(190,214,235,.08) 50%, rgba(190,214,235,.08) 75%, transparent 75%); }
.contact-form { background: var(--steel-100); border-color: var(--steel-200); border-radius: var(--radius); }
.field input, .field select, .field textarea { border: 1px solid rgba(190,214,235,.42); border-radius: 10px; background: var(--ink); color: var(--white); }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--amber) 50%), linear-gradient(135deg, var(--amber) 50%, transparent 50%); background-position: calc(100% - 18px) 1.1rem, calc(100% - 13px) 1.1rem; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.field input::placeholder, .field textarea::placeholder { color: #93a9bd; }
.trust-strip { background: var(--steel-100); color: var(--white); border-bottom: 1px solid var(--steel-200); }
.trust-items strong { color: var(--amber); }
.brand-logo, .menu-toggle, .header-call, .mobile-call, .skip-link { border-radius: 999px; }
.primary-nav { border-radius: 0 0 var(--radius) var(--radius); }
.contact-info-grid { display: grid; gap: 1rem; }
.faq-section { padding-top: 0; }
.faq-list { display: grid; gap: .75rem; max-width: 850px; }
.faq-list details { background: var(--steel-100); border: 1px solid var(--steel-200); border-radius: var(--radius); overflow: hidden; }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.05rem 1.2rem; color: var(--white); font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; color: var(--amber); font-size: 1.4rem; line-height: 1; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { margin: 0; padding: 0 1.2rem 1.1rem; color: var(--steel-700); }
@media (min-width: 600px) { .contact-info-grid { grid-template-columns: repeat(2, 1fr); } }

/* Contrast and final corner treatment */
button, input, select, textarea { font: inherit; }
.callout-panel, .gallery-placeholder span { border-radius: var(--radius); }
.service-number, .service-row-number, .card-link, .callout-label, .detail-label, .gallery-meta span:last-child, .feature-list b { color: var(--amber); }
.brand-logo { border-radius: 12px; }


/* === Hard 2-tone + rounded pass (no light/white surfaces) === */
:root {
  --bg-a: #081b3d;
  --bg-b: #14325a;
  --ink: var(--bg-a);
  --ink-soft: var(--bg-b);
  --steel-900: var(--bg-b);
  --steel-100: var(--bg-b);
  --paper: var(--bg-a);
  --text: #eef3f8;
  --white: #eef3f8; /* text only — never use as a fill */
  --muted: #a9bdd2;
  --steel-700: var(--muted);
  --radius: 18px;
  --radius-sm: 14px;
  --radius-pill: 999px;
}
body { background: var(--bg-a) !important; color: var(--text) !important; }
.section, .section-dark, .page-hero, .hero, .site-header, .site-footer { background: var(--bg-a); color: var(--text); }
.section-steel, .trust-strip { background: var(--bg-b) !important; color: var(--text) !important; }
.service-card, .service-row, .gallery-card, .content-card, .contact-form,
.review-card, .faq-list details, .callout-panel {
  background: var(--bg-b) !important;
  color: var(--text) !important;
  border-radius: var(--radius) !important;
  border: 1px solid rgba(190,214,235,.22);
}
.gallery-placeholder {
  background-color: var(--bg-a) !important;
  border-radius: var(--radius-sm) !important;
}
.field input, .field select, .field textarea {
  background: var(--bg-a) !important;
  color: var(--text) !important;
  border-radius: var(--radius-sm) !important;
  border: 1px solid rgba(190,214,235,.35) !important;
}
.button, .header-call, .mobile-call, .menu-toggle, .skip-link {
  border-radius: var(--radius-pill) !important;
}
.brand-logo, .service-icon, .gallery-placeholder span {
  border-radius: var(--radius-sm) !important;
}
.service-grid, .service-list {
  background: transparent !important;
  border: 0 !important;
  gap: 1rem !important;
  border-radius: 0 !important;
  overflow: visible !important;
}
.section-heading p, .service-card p, .service-row p, .service-row ul,
.contact-intro > p, .form-footnote, .gallery-note, .faq-list details p,
.content-card p:last-child, .about-copy p, .feature-list span {
  color: var(--muted) !important;
}
.contact-form { box-shadow: 0 18px 40px rgba(0,0,0,.28); }

/* form field spacing fix */
.contact-form { display: grid; gap: 1.35rem; }
.contact-form .form-intro { margin-bottom: 0; }
.contact-form .form-grid { gap: 1.35rem; }
.contact-form .field { gap: .55rem; margin: 0; }
.contact-form .field + .field,
.contact-form .form-grid + .field,
.contact-form .field + .form-grid,
.contact-form .form-grid + .form-grid { margin-top: 0; }
.contact-form .button { margin-top: .25rem; justify-self: start; }
.contact-form .form-footnote { margin-top: 0; }
.contact-form label span { display: none; }


/* Real project gallery */
.before-after-grid { display: grid; gap: 1rem; }
.before-after-card { min-height: 0; padding: 1rem; }
.pair-label { margin-bottom: .7rem; color: var(--amber); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.before-after-images { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; }
.before-after-images figure, .context-card { margin: 0; }
.gallery-card img, .gallery-photo { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-sm); }
.before-after-images .gallery-photo { aspect-ratio: 1 / 1; }
.before-after-images figcaption, .context-card figcaption { margin-top: .5rem; color: var(--muted); font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.before-after-images figure:first-child figcaption { color: var(--muted); }
.before-after-images figure:last-child figcaption { color: var(--amber); }
.context-heading { margin: 4rem 0 1.35rem; }
.context-heading .eyebrow { margin-bottom: .65rem; }
.context-heading h3 { margin: 0; font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: .95; text-transform: uppercase; }
.context-gallery { display: grid; gap: 1rem; }
.context-card { min-height: 0; padding: .75rem; }
.context-card figcaption { padding: 0 .15rem .15rem; }
@media (min-width: 600px) {
  .before-after-grid { grid-template-columns: repeat(2, 1fr); }
  .context-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .before-after-grid { grid-template-columns: repeat(3, 1fr); }
  .context-gallery { grid-template-columns: repeat(4, 1fr); }
}

/* stage gallery for automotive */
.stage-grid { display: grid; gap: 1.25rem; }
.stage-card .stage-label {
  display: inline-flex; margin-bottom: .85rem; padding: .35rem .75rem;
  border-radius: 999px; background: rgba(255,106,19,.16); color: var(--amber);
  font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase;
}
.stage-images { display: grid; gap: .75rem; }
.stage-images figure { margin: 0; }
.stage-images figcaption { margin-top: .45rem; color: var(--muted, #a9bdd2); font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
@media (min-width: 700px) {
  .stage-images { grid-template-columns: 1fr 1fr; }
  .stage-grid { grid-template-columns: 1fr; }
}
@media (min-width: 980px) {
  .stage-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
  .stage-images { grid-template-columns: 1fr; }
}
.pair-label { display: none !important; }

/* security multi-after set */
#security .before-after-grid {
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  #security .before-after-grid {
    grid-template-columns: 1fr 1fr;
  }
  #security .security-multi-after {
    grid-column: 1 / -1;
  }
}
.security-set-b {
  display: grid !important;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.security-set-b figure:nth-child(1) {
  /* Before — full width, larger */
}
.security-set-b figure:nth-child(n+2) {
  /* After shots */
}
@media (min-width: 700px) {
  .security-set-b {
    grid-template-columns: 1fr 1fr;
  }
  .security-set-b figure:nth-child(1) {
    grid-column: 1 / -1;
  }
}
@media (min-width: 900px) {
  .security-set-b {
    grid-template-columns: repeat(3, 1fr);
  }
  .security-set-b figure:nth-child(1) {
    grid-column: 1 / -1;
  }
}
.security-set-b .gallery-photo {
  aspect-ratio: 4 / 3 !important;
  min-height: 240px;
  object-fit: cover;
}
.security-set-b figure:nth-child(1) .gallery-photo {
  min-height: 320px;
  aspect-ratio: 16 / 10 !important;
}
.security-context { grid-template-columns: 1fr; max-width: 720px; }

/* clickable gallery photos */
.gallery-photo {
  cursor: zoom-in;
  transition: transform .2s ease, box-shadow .2s ease;
}
.gallery-photo:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(4, 12, 28, .88);
  backdrop-filter: blur(6px);
}
.lightbox.is-open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: min(1100px, 100%);
  max-height: 90vh;
}
.lightbox-inner img {
  display: block;
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  aspect-ratio: auto;
  object-fit: contain;
}
.lightbox-caption {
  margin: .85rem 0 0;
  color: #d7e2ef;
  text-align: center;
  font-size: .9rem;
}
.lightbox-close {
  position: absolute;
  top: -0.6rem;
  right: -0.6rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: var(--amber, #ff6a13);
  color: #081b3d;
  font-size: 1.4rem;
  font-weight: 900;
  cursor: pointer;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}
.lightbox-prev { left: -3.2rem; }
.lightbox-next { right: -3.2rem; }
@media (max-width: 800px) {
  .lightbox-prev { left: .25rem; }
  .lightbox-next { right: .25rem; }
  .lightbox-close { top: .25rem; right: .25rem; }
}
body.lightbox-open { overflow: hidden; }

/* security layout refine */
#security .security-full-grid {
  grid-template-columns: 1fr !important;
  max-width: 100%;
}
#security .security-full-pair,
#security .security-multi-after {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
}
#security .security-gate-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 700px) {
  #security .security-gate-pair {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}
#security .security-gate-pair .gallery-photo {
  aspect-ratio: 16 / 10 !important;
  min-height: 320px;
  width: 100%;
  object-fit: cover;
}
#security .security-set-b {
  width: 100%;
}
#security .security-full-pair,
#security .security-multi-after {
  box-sizing: border-box;
}
.security-lobby-centered {
  display: flex !important;
  justify-content: center;
  max-width: none !important;
  width: 100%;
}
.security-lobby-centered .context-card {
  width: min(720px, 100%);
  margin-inline: auto;
}
.security-lobby-centered .gallery-photo {
  aspect-ratio: 16 / 10;
  min-height: 280px;
}

