/* CW Service Engineering - industrial design system */
:root {
  --ink: #15202b;
  --ink-soft: #2a3a48;
  --muted: #5d6d7a;
  --paper: #eef1f4;
  --paper-2: #e2e7ec;
  --white: #f7f9fb;
  --steel: #8a9aaa;
  --steel-light: #c5ced6;
  --brass: #a8873a;
  --brass-bright: #c4a352;
  --alert: #9b2e2e;
  --alert-bg: #1a0f0f;
  --line: rgba(21, 32, 43, 0.12);
  --shadow: 0 18px 40px rgba(21, 32, 43, 0.12);
  --radius: 2px;
  --header-h: 78px;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Segoe UI", sans-serif;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--brass); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: 0.02em;
  line-height: 1.12;
  margin: 0 0 0.55em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); text-transform: uppercase; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.45rem); text-transform: none; letter-spacing: 0.01em; }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); text-transform: none; letter-spacing: 0.02em; }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.15rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Technical grid background */
.tech-grid {
  background-image:
    linear-gradient(rgba(21,32,43,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,32,43,0.045) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 249, 251, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: padding 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(21,32,43,0.08);
}
.site-header.is-scrolled .header-inner { min-height: 58px; }
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: min-height 0.25s var(--ease);
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo img, .logo svg { width: 168px; height: auto; }
.nav-desktop {
  display: none;
  flex: 1;
  justify-content: center;
  gap: 0.15rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-desktop a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}
.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--brass);
}
.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-1px); color: inherit; }
.btn-primary {
  background: var(--ink);
  color: var(--white);
}
.btn-primary:hover { background: #0d151c; color: var(--white); }
.btn-brass {
  background: var(--brass);
  color: #1a1508;
}
.btn-brass:hover { background: var(--brass-bright); color: #1a1508; }
.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-outline-light {
  background: transparent;
  border-color: rgba(247,249,251,0.55);
  color: var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--ink); }
.btn-call {
  background: var(--brass);
  color: #1a1508;
}
.btn-ghost-light {
  background: rgba(247,249,251,0.12);
  color: var(--white);
  border-color: rgba(247,249,251,0.25);
}
.menu-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

.nav-mobile {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 0.75rem 1.25rem 1.25rem;
}
.nav-mobile.is-open { display: block; }
.nav-mobile a {
  display: block;
  padding: 0.7rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.nav-mobile .mobile-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1rem;
}

@media (min-width: 980px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .header-actions .btn-enquire { display: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: #101820;
}
.hero-simple {
  min-height: min(62vh, 560px);
  align-items: center;
}
.hero-van {
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: visible;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(196,149,74,0.12), transparent 55%),
    linear-gradient(165deg, #15202b 0%, #0a1016 55%, #101820 100%);
}
.hero-van .hero-content {
  padding-top: 2.75rem;
  padding-bottom: 1.75rem;
}
.hero-van-photo {
  width: 100%;
  line-height: 0;
  background: #0a1016;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-van-photo img {
  width: 100%;
  height: auto;
  max-width: none;
  display: block;
  object-fit: contain;
  object-position: center bottom;
  animation: heroVanIn 1.1s var(--ease) both;
}
@keyframes heroVanIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: heroDrift 22s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.03) translate3d(0,0,0); }
  to { transform: scale(1.08) translate3d(-1%, -0.5%, 0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10,16,22,0.88) 0%, rgba(10,16,22,0.68) 52%, rgba(10,16,22,0.4) 100%),
    linear-gradient(to top, rgba(10,16,22,0.7), transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.25rem 3rem;
  width: 100%;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-bright);
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--brass);
}
.hero h1 { max-width: 16ch; margin-bottom: 0.6rem; }
.hero-simple h1 { max-width: 18ch; text-transform: none; letter-spacing: 0.01em; }
.hero-lead {
  max-width: 36rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(247,249,251,0.9);
  margin-bottom: 0.85rem;
}
.hero-meta {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.92rem;
  color: var(--steel-light);
  margin-bottom: 1.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Trust bar */
.trust-bar {
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.trust-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.15rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 1rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trust-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border: 1px solid rgba(196,163,82,0.45);
  display: grid;
  place-items: center;
  color: var(--brass-bright);
}
.trust-icon svg { width: 18px; height: 18px; }

@media (min-width: 760px) {
  .trust-bar-inner { grid-template-columns: repeat(5, 1fr); }
}

/* Photo text bands - pictures behind copy */
.band-photo {
  position: relative;
  color: var(--white);
  background-color: #15202b;
  background-image: var(--band-image);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.band-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(105deg, rgba(15,22,29,0.9) 0%, rgba(15,22,29,0.78) 55%, rgba(15,22,29,0.55) 100%);
}
.band-photo-dark .band-photo-overlay {
  background:
    linear-gradient(115deg, rgba(10,16,22,0.92) 0%, rgba(10,16,22,0.8) 50%, rgba(21,32,43,0.62) 100%);
}
.band-photo-content {
  position: relative;
  z-index: 1;
  max-width: 44rem;
}
.band-photo .kicker { color: var(--brass-bright); }
.band-photo h2 { color: var(--white); }
.band-photo p { color: rgba(247,249,251,0.9); }
.band-photo .simple-list {
  color: rgba(247,249,251,0.92);
  columns: 1;
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
}
@media (min-width: 560px) {
  .band-photo .simple-list { columns: 2; column-gap: 2rem; }
}
.band-photo .simple-list li { margin-bottom: 0.35rem; break-inside: avoid; }

.region-summary {
  display: grid;
  gap: 1.25rem;
  margin: 1.5rem 0;
}
@media (min-width: 800px) {
  .region-summary { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.region-summary h3 {
  color: var(--brass-bright);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.region-summary p {
  font-size: 0.98rem;
  margin-bottom: 0;
  color: rgba(247,249,251,0.85);
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.service-list li { border-bottom: 1px solid var(--line); }
.service-list a {
  display: grid;
  gap: 0.25rem;
  padding: 1.05rem 0.15rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, padding-left 0.2s var(--ease);
}
.service-list a:hover {
  background: rgba(255,255,255,0.45);
  padding-left: 0.65rem;
  color: inherit;
}
.service-list strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 650;
}
.service-list span {
  color: var(--muted);
  font-size: 0.98rem;
}

.contact-highlight {
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 1.25rem 0;
}
.contact-highlight a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}
.contact-highlight a:hover { color: var(--brass); }

/* Sections */
.section {
  padding: 3.75rem 0;
  position: relative;
}
.section-tight { padding: 2.75rem 0; }
.section-dark {
  background: var(--ink);
  color: var(--white);
}
.section-dark h2 { color: var(--white); }
.section-dark p { color: rgba(247,249,251,0.9); }
.section-dark .kicker { color: var(--brass-bright); }
.section-dark .simple-list {
  color: rgba(247,249,251,0.92);
  columns: 1;
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
}
@media (min-width: 700px) {
  .section-dark .simple-list { columns: 2; column-gap: 2rem; }
}
.section-dark .simple-list li { margin-bottom: 0.35rem; break-inside: avoid; }
.section-steel {
  background: linear-gradient(160deg, #d9e0e6 0%, #eef1f4 45%, #d5dde4 100%);
}
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section-head {
  max-width: 42rem;
  margin-bottom: 2.25rem;
}
.section-head p { color: var(--muted); }
.section-dark .section-head p { color: var(--steel-light); }
.kicker {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.55rem;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
  .split.reverse { grid-template-columns: 0.95fr 1.05fr; }
  .split.reverse .split-copy { order: 2; }
}

.frame {
  position: relative;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}
.frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(176,141,62,0.35);
  pointer-events: none;
}
.frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.frame-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0.7rem 1rem;
  background: rgba(21,32,43,0.78);
  color: var(--white);
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

/* Cards / grids - restrained industrial panels */
.grid-3, .grid-2, .grid-4 {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 980px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.35rem 1.25rem 1.4rem;
  position: relative;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.panel:hover {
  border-color: rgba(176,141,62,0.55);
  transform: translateY(-2px);
}
.panel a.stretched {
  text-decoration: none;
  color: inherit;
  display: block;
}
.panel a.stretched::after {
  content: "";
  position: absolute;
  inset: 0;
}
.panel-num {
  font-family: var(--font-display);
  color: var(--brass);
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.panel h3 { margin-bottom: 0.45rem; }
.panel p { color: var(--muted); margin-bottom: 0.85rem; font-size: 0.98rem; }
.panel-link {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--brass);
}

.equip-tile {
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.15rem;
  color: var(--white);
  text-decoration: none;
  overflow: hidden;
  border: 1px solid rgba(21,32,43,0.2);
  background: #1a2530;
}
.equip-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transition: transform 0.5s var(--ease), opacity 0.35s;
}
.equip-tile:hover img { transform: scale(1.06); opacity: 0.58; }
.equip-tile span {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.equip-tile small {
  position: relative;
  z-index: 1;
  color: var(--steel-light);
  margin-top: 0.25rem;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.brand-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.88rem;
  transition: border-color 0.2s, background 0.2s;
}
.brand-chip:hover {
  border-color: var(--brass);
  background: #faf6ec;
  color: var(--ink);
}

/* Breakdown */
.breakdown {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(155,46,46,0.28), transparent 45%),
    linear-gradient(135deg, #140c0c, #1d1414 45%, #0f1419);
  color: var(--white);
  border-block: 1px solid rgba(155,46,46,0.35);
  position: relative;
  overflow: hidden;
}
.breakdown::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.breakdown .wrap { position: relative; z-index: 1; }
.breakdown h2 { color: #ffb4b4; }
.breakdown .btn-call { min-width: min(100%, 260px); font-size: 1.05rem; }

.why-list {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 800px) {
  .why-list { grid-template-columns: repeat(2, 1fr); }
}
.why-item {
  border-left: 3px solid var(--brass);
  padding: 0.85rem 0 0.85rem 1rem;
  background: rgba(255,255,255,0.03);
}
.section:not(.section-dark) .why-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brass);
}

/* Gallery */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}
.filter-btn {
  border: 1px solid var(--line);
  background: var(--white);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 650;
  font-size: 0.8rem;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
}
.filter-btn.is-active,
.filter-btn:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}
@media (min-width: 800px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: zoom-in;
  padding: 0;
  background: #1a2530;
}
.gallery-item-wide {
  aspect-ratio: 16/9;
}
@media (min-width: 800px) {
  .gallery-item-wide {
    grid-column: 1 / -1;
  }
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.gallery-item-wide img {
  object-fit: contain;
  background: #0a1016;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.55rem 0.7rem;
  background: rgba(21,32,43,0.78);
  color: #fff;
  font-size: 0.78rem;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8,12,16,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(960px, 100%);
  max-height: 80vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  color: #fff;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 1.4rem;
}
.lightbox-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* Instagram strip */
.ig-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (min-width: 700px) {
  .ig-strip { grid-template-columns: repeat(4, 1fr); }
}
.ig-tile {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
}
.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.ig-tile:hover img { transform: scale(1.06); }

/* Areas / map */
.map-panel {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 1rem;
}
.map-svg {
  width: 100%;
  height: auto;
  display: block;
  background: #dfe6ec;
}
.area-cols {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .area-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .area-cols { grid-template-columns: repeat(3, 1fr); }
}
.area-group {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 1.1rem 1.15rem;
}
.area-group h3 { margin-bottom: 0.65rem; }
.area-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  gap: 1rem;
  font-size: 0.95rem;
}
.area-group a { text-decoration: none; border-bottom: 1px solid transparent; }
.area-group a:hover { border-bottom-color: var(--brass); }

/* Contact */
.contact-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; }
}
.contact-card {
  background: var(--ink);
  color: var(--white);
  padding: 1.75rem 1.4rem;
}
.contact-card a { color: var(--brass-bright); text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }
.form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.4rem;
}
.form-row {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
}
label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
input, select, textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  min-height: 46px;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  background: var(--paper);
  font: inherit;
  color: var(--ink);
  border-radius: var(--radius);
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(176,141,62,0.45);
  outline-offset: 1px;
  border-color: var(--brass);
}
.form-note {
  font-size: 0.92rem;
  color: var(--alert);
  margin: 0.5rem 0 1rem;
}
.file-hint {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-weight: 400;
  margin-top: 0.35rem;
}

/* Page hero (inner) - photo behind text */
.page-hero {
  background:
    linear-gradient(115deg, rgba(21,32,43,0.88), rgba(21,32,43,0.62)),
    url("../images/hero-workshop.jpg") center/cover;
  color: var(--white);
  padding: 2.75rem 0 2.5rem;
  border-bottom: 2px solid var(--brass);
}
.page-hero h1 {
  text-transform: none;
  letter-spacing: 0.01em;
  max-width: 22ch;
}
.breadcrumbs {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  color: var(--steel-light);
}
.breadcrumbs a { color: var(--steel-light); text-decoration: none; }
.breadcrumbs a:hover { color: var(--brass-bright); }
.page-hero p { max-width: 40rem; color: rgba(247,249,251,0.88); margin-bottom: 0; }

.content-prose { max-width: 48rem; }
.content-prose h2 { margin-top: 2rem; }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

/* Footer */
.site-footer {
  background: #0f161d;
  color: var(--steel-light);
  padding: 3.5rem 0 1.5rem;
  border-top: 1px solid rgba(176,141,62,0.35);
}
.footer-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
}
.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.9rem;
}
.site-footer a { color: var(--steel-light); text-decoration: none; }
.site-footer a:hover { color: var(--brass-bright); }
.footer-brand p { max-width: 26ch; }
.footer-brand strong {
  display: block;
  color: var(--brass-bright);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0.5rem 0 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.45rem; }
.socials { display: flex; gap: 0.65rem; margin-top: 1rem; }
.socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
}
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  justify-content: space-between;
  font-size: 0.9rem;
}
.legal-links { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Sticky mobile call */
.sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  display: none;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(15,22,29,0.96);
  border-top: 1px solid rgba(176,141,62,0.45);
  gap: 0.55rem;
}
.sticky-call .btn { flex: 1; min-height: 48px; }
@media (max-width: 760px) {
  .sticky-call { display: flex; }
  body { padding-bottom: 74px; }
  .hero-actions .btn-call { min-width: 100%; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Utility */
.muted { color: var(--muted); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.center-cta { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.75rem; }
