:root {
  --navy: #071d35;
  --navy-2: #0b2a4b;
  --charcoal: #252b31;
  --slate: #6e7882;
  --mist: #eef1f3;
  --soft: #f7f8f8;
  --white: #ffffff;
  --ink: #151a1f;
  --line: #dfe4e7;
  --accent: #8094a7;
  --shadow: 0 24px 60px rgba(7, 29, 53, .14);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 9999; background: #fff; padding: 10px 14px; }
.skip-link:focus { left: 8px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(7,29,53,.08);
}
.nav-wrap { min-height: 84px; display: flex; align-items: center; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 235px; }
.brand-mark { width: 52px; height: 52px; overflow: hidden; border-radius: 50%; background: #fff; box-shadow: 0 0 0 1px rgba(7,29,53,.08); flex: 0 0 auto; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; padding: 2px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { letter-spacing: .14em; color: var(--navy); font-size: 15px; }
.brand-copy small { margin-top: 7px; color: var(--slate); font-size: 11px; letter-spacing: .035em; }
.brand-owner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(7,29,53,.08);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7,29,53,.06);
}
.brand-owner img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 24%;
}
.brand-owner span { display: flex; flex-direction: column; line-height: 1.05; }
.brand-owner small { color: #74808a; font-size: 10px; font-weight: 700; }
.brand-owner strong { color: var(--navy); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.main-nav { margin-left: auto; display: flex; gap: 28px; align-items: center; }
.main-nav a { font-size: 14px; font-weight: 650; color: #3d4650; transition: color .2s ease; }
.main-nav a:hover { color: var(--navy); }
.header-call { background: var(--navy); color: #fff; padding: 13px 18px; border-radius: 12px; font-size: 13px; font-weight: 800; letter-spacing: .02em; white-space: nowrap; }
.menu-button { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 10px; }
.menu-button span { display: block; height: 2px; background: var(--navy); margin: 5px 0; transition: .2s; }

.hero { position: relative; overflow: hidden; color: #fff; background: linear-gradient(115deg, #071d35 0%, #0a2542 60%, #132e47 100%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: rgba(255,255,255,.12); }
.hero-grid { min-height: 690px; display: grid; grid-template-columns: 1.08fr .92fr; gap: 74px; align-items: center; position: relative; z-index: 2; padding-top: 58px; padding-bottom: 58px; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-glow-one { width: 650px; height: 650px; right: -240px; top: -260px; background: radial-gradient(circle, rgba(144,164,184,.22), transparent 66%); }
.hero-glow-two { width: 380px; height: 380px; left: 42%; bottom: -260px; background: radial-gradient(circle, rgba(255,255,255,.09), transparent 68%); }
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 22px; font-size: 12px; letter-spacing: .22em; font-weight: 800; color: #bbc6d0; }
.eyebrow span { width: 36px; height: 1px; background: #9aabbc; }
.eyebrow.dark { color: #6f7b86; }
.eyebrow.dark span { background: #8a99a8; }
.hero h1 { margin: 0; font-size: clamp(52px, 6vw, 78px); line-height: .98; letter-spacing: -.055em; font-weight: 820; }
.hero h1 em { display: inline-block; color: #b6c2ce; font-style: normal; font-weight: 660; }
.hero-lead { margin: 30px 0 0; max-width: 620px; color: #d3dae0; font-size: 20px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 10px; border-radius: 12px; padding: 15px 20px; font-size: 14px; font-weight: 800; border: 1px solid transparent; cursor: pointer; transition: transform .2s ease, background .2s ease, border .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: #fff; color: var(--navy); }
.button-primary svg { width: 18px; height: 18px; fill: currentColor; }
.button-ghost { border-color: rgba(255,255,255,.26); background: rgba(255,255,255,.03); color: #fff; }
.button-ghost:hover { background: rgba(255,255,255,.08); }
.hero-trust { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; margin-top: 44px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.15); max-width: 540px; }
.hero-trust div { display: flex; flex-direction: column; gap: 5px; }
.hero-trust strong { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.hero-trust span { color: #aeb9c3; font-size: 12px; }

.hero-panel { position: relative; }
.hero-photo-card { background: #fff; color: var(--ink); border-radius: 26px; padding: 16px; box-shadow: 0 36px 80px rgba(0,0,0,.26); transform: rotate(1.2deg); }
.photo-wrap { position: relative; height: 420px; overflow: hidden; border-radius: 17px; background: #dce2e6; }
.photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.photo-badge { position: absolute; right: 14px; bottom: 14px; background: rgba(7,29,53,.9); color: #fff; padding: 8px 11px; border-radius: 9px; font-size: 10px; letter-spacing: .12em; font-weight: 800; backdrop-filter: blur(7px); }
.owner-card-copy { padding: 22px 13px 14px; }
.owner-card-copy .mini-label { color: #7d8791; font-size: 10px; letter-spacing: .2em; font-weight: 800; margin: 0 0 8px; }
.owner-card-copy h2 { margin: 0; color: var(--navy); font-size: 28px; letter-spacing: -.02em; }
.owner-card-copy > p:not(.mini-label) { margin: 5px 0 20px; color: #75808a; font-size: 14px; }
.owner-links { display: flex; flex-wrap: wrap; gap: 8px 18px; padding-top: 16px; border-top: 1px solid #e5e8ea; }
.owner-links a { color: var(--navy); font-size: 13px; font-weight: 750; }
.hero-note { position: absolute; left: -44px; bottom: -26px; background: var(--charcoal); color: #fff; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 18px 40px rgba(0,0,0,.23); border-radius: 15px; display: flex; align-items: center; gap: 13px; padding: 15px 17px; max-width: 330px; transform: rotate(-1.5deg); }
.note-icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 2px solid #92a5b8; font-size: 11px; font-weight: 900; letter-spacing: -.08em; color: #b4c0cb; }
.hero-note p { margin: 0; color: #c8d0d7; font-size: 12px; line-height: 1.45; }
.hero-note strong { color: #fff; font-size: 13px; }

.quick-strip { background: var(--charcoal); color: #fff; }
.quick-strip-inner { min-height: 76px; display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; text-transform: uppercase; font-size: 11px; letter-spacing: .14em; font-weight: 800; color: #c9d0d5; }
.quick-strip-inner i { width: 4px; height: 4px; border-radius: 50%; background: #77838e; }

.section { padding: 104px 0; }
.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; margin-bottom: 40px; }
.section-heading h2, .about-copy h2, .turnover-copy h2, .contact-copy h2 { margin: 0; font-size: clamp(40px, 5vw, 58px); line-height: 1.04; letter-spacing: -.045em; color: var(--navy); }
.section-heading > p { margin: 0; color: #66717b; font-size: 17px; line-height: 1.75; }
.section-owner-inline {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 34px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #fbfcfd);
}
.section-owner-inline img {
  width: 110px;
  height: 110px;
  border-radius: 24px;
  object-fit: cover;
  object-position: 50% 25%;
}
.section-owner-inline span,
.turnover-owner span,
.contact-owner span { display: inline-block; margin-bottom: 6px; color: #7f8a94; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
.section-owner-inline strong,
.turnover-owner strong,
.contact-owner strong { display: block; color: var(--navy); font-size: 20px; line-height: 1.2; }
.section-owner-inline p,
.turnover-owner p,
.contact-owner p { margin: 7px 0 0; color: #6d7882; font-size: 15px; line-height: 1.7; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 300px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.service-icon { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; background: #eef2f5; color: var(--navy); margin-bottom: 50px; }
.service-icon svg { width: 28px; height: 28px; fill: currentColor; }
.service-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 20px; }
.service-card p { margin: 0; color: #6f7982; font-size: 15px; line-height: 1.7; }

.turnover { padding: 105px 0; background: var(--charcoal); color: #fff; }
.turnover-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.turnover-copy h2 { color: #fff; }
.turnover-copy > p:not(.eyebrow) { margin: 24px 0; color: #c3cbd1; font-size: 17px; line-height: 1.75; max-width: 500px; }
.turnover-owner {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  align-items: center;
  margin: 28px 0 12px;
  padding: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  max-width: 500px;
}
.turnover-owner img,
.contact-owner img,
.footer-owner img {
  width: 86px;
  height: 86px;
  border-radius: 18px;
  object-fit: cover;
  object-position: 50% 25%;
}
.turnover-owner strong,
.contact-owner strong { color: #fff; }
.turnover-owner p,
.contact-owner p { color: #c8d0d7; }
.text-link { display: inline-flex; gap: 10px; margin-top: 8px; color: #fff; font-size: 14px; font-weight: 800; }
.text-link span { color: #a8b4bf; }
.turnover-list { border-top: 1px solid rgba(255,255,255,.2); }
.list-item { display: grid; grid-template-columns: 54px 1fr; gap: 22px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.list-item > span { color: #8493a0; font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.list-item strong { display: block; font-size: 18px; margin-bottom: 8px; }
.list-item p { margin: 0; color: #aeb7bf; font-size: 14px; line-height: 1.65; }

.audience { background: var(--soft); }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.audience-card { padding: 34px 32px 38px; background: #fff; border-radius: var(--radius); border: 1px solid #eceff1; }
.audience-number { display: inline-block; margin-bottom: 70px; color: #9aa4ad; font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.audience-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 24px; }
.audience-card p { margin: 0; color: #707a83; line-height: 1.7; font-size: 15px; }

.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.about-photo { position: relative; }
.about-photo > img { width: 100%; max-height: 560px; object-fit: cover; object-position: 50% 25%; border-radius: 28px; box-shadow: var(--shadow); }
.about-label { position: absolute; right: -25px; bottom: 30px; background: #fff; padding: 17px 20px; border-radius: 13px; box-shadow: 0 16px 40px rgba(7,29,53,.16); display: flex; flex-direction: column; }
.about-label span { font-size: 9px; color: #838f98; letter-spacing: .17em; font-weight: 800; }
.about-label strong { margin-top: 5px; color: var(--navy); font-size: 17px; }
.about-copy .about-lead { margin-top: 26px; font-size: 18px; color: #4e5963; line-height: 1.72; }
.about-copy > p:not(.eyebrow):not(.about-lead) { color: #727c85; font-size: 15px; line-height: 1.75; }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 32px; }
.about-facts div { padding: 15px 0 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 5px; }
.about-facts span { color: #8b949c; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.about-facts strong { color: var(--navy); font-size: 13px; }

.contact { padding: 105px 0; color: #fff; background: linear-gradient(115deg, #071d35, #0a2745); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 76px; align-items: start; }
.contact-copy h2 { color: #fff; }
.contact-copy > p:not(.eyebrow) { margin: 24px 0 26px; max-width: 500px; color: #c3ccd4; font-size: 17px; line-height: 1.7; }
.contact-owner {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 26px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.contact-methods { display: grid; gap: 12px; }
.contact-methods a { display: flex; align-items: center; gap: 13px; color: #fff; }
.contact-icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.1); }
.contact-methods a div { display: flex; flex-direction: column; gap: 3px; }
.contact-methods small { color: #93a3b2; font-size: 9px; letter-spacing: .15em; font-weight: 800; }
.contact-methods strong { font-size: 14px; }
.contact-form { background: #fff; color: var(--ink); border-radius: 24px; padding: 28px; box-shadow: 0 32px 70px rgba(0,0,0,.25); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contact-form label { display: block; margin-bottom: 14px; color: #59636d; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; border: 1px solid #dfe4e8; border-radius: 10px; background: #fbfcfc; color: var(--ink); padding: 13px 14px; outline: none; text-transform: none; letter-spacing: 0; font-weight: 500; transition: border .2s, box-shadow .2s; }
.contact-form textarea { resize: vertical; min-height: 125px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #8ca1b5; box-shadow: 0 0 0 3px rgba(123,148,171,.16); }
.form-submit { width: 100%; border: 0; background: var(--navy); color: #fff; }
.form-note { margin: 10px 0 0; color: #8b949c; text-align: center; font-size: 11px; line-height: 1.5; }

.site-footer { background: #151a1f; color: #fff; padding: 32px 0; }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 20px 30px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.brand-mark.small { width: 48px; height: 48px; }
.footer-brand div { display: flex; flex-direction: column; gap: 5px; }
.footer-brand strong { font-size: 13px; letter-spacing: .11em; }
.footer-brand span { color: #8f99a2; font-size: 11px; }
.footer-owner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer-owner div { display: flex; flex-direction: column; gap: 3px; }
.footer-owner strong { font-size: 13px; }
.footer-owner span { color: #97a1aa; font-size: 11px; }
.footer-contact { display: flex; gap: 18px; font-size: 12px; color: #c0c7cc; justify-self: end; }
.copyright { grid-column: 1 / -1; margin: 2px 0 0; color: #69737b; font-size: 10px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

@media (max-width: 1100px) {
  .brand-owner { display: none; }
  .footer-inner { grid-template-columns: 1fr auto; }
  .footer-owner { order: 3; }
  .footer-contact { justify-self: start; }
}

@media (max-width: 980px) {
  .main-nav { position: absolute; display: none; left: 20px; right: 20px; top: 74px; background: #fff; border: 1px solid #e3e7ea; box-shadow: var(--shadow); border-radius: 16px; padding: 12px; flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 12px; }
  .menu-button { display: block; margin-left: auto; }
  .header-call { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 54px; min-height: auto; padding-top: 72px; padding-bottom: 86px; }
  .hero-copy { max-width: 720px; }
  .hero-panel { max-width: 560px; margin: 0 auto; }
  .section-heading, .turnover-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 46px; }
  .section-heading { align-items: start; }
  .section-owner-inline { grid-template-columns: 96px 1fr; }
  .section-owner-inline img { width: 96px; height: 96px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-number { margin-bottom: 34px; }
  .about-photo { max-width: 560px; }
  .about-label { right: 18px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-contact { justify-self: start; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .nav-wrap { min-height: 72px; }
  .brand { min-width: 0; }
  .brand-mark { width: 46px; height: 46px; }
  .brand-copy strong { font-size: 13px; }
  .brand-copy small { display: none; }
  .hero-grid { padding-top: 56px; padding-bottom: 80px; }
  .hero h1 { font-size: clamp(46px, 14vw, 64px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-trust { grid-template-columns: 1fr; gap: 15px; }
  .hero-panel { width: 100%; }
  .photo-wrap { height: 360px; }
  .owner-links { flex-direction: column; }
  .hero-note { left: 12px; right: 12px; bottom: -38px; max-width: none; }
  .quick-strip { padding: 18px 0; }
  .quick-strip-inner { min-height: 0; gap: 12px 16px; justify-content: flex-start; }
  .section, .turnover, .contact { padding: 78px 0; }
  .section-heading { margin-bottom: 32px; }
  .section-owner-inline,
  .turnover-owner,
  .contact-owner { grid-template-columns: 1fr; }
  .section-owner-inline img,
  .turnover-owner img,
  .contact-owner img,
  .footer-owner img { width: 100%; max-width: 180px; height: auto; aspect-ratio: 1 / 1; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-icon { margin-bottom: 34px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .about-facts { grid-template-columns: 1fr; }
  .about-photo > img { max-height: 480px; }
  .about-label { left: 16px; right: 16px; bottom: 16px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-owner,
  .footer-contact { flex-direction: column; gap: 8px; align-items: flex-start; }
  .copyright { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button, .service-card { transition: none; }
}


/* Image / logo display corrections */
html, body { overflow-x: hidden; }

.brand-mark {
  padding: 3px;
  background: #fff;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
}

.hero-panel {
  width: 100%;
  max-width: 430px;
  margin-left: auto;
}
.hero-photo-card {
  width: 100%;
}
.photo-wrap {
  height: auto;
  aspect-ratio: 652 / 800;
  background: #fff;
}
.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.about-grid > *,
.hero-grid > *,
.contact-grid > *,
.turnover-grid > * {
  min-width: 0;
}

.about-photo > img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.about-copy h2 {
  max-width: 100%;
  text-wrap: balance;
}

@media (max-width: 1100px) {
  .hero-panel {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 680px) {
  .hero-panel {
    max-width: 390px;
  }
  .photo-wrap {
    height: auto;
  }
  .about-photo > img {
    max-height: none;
  }
}

/* Fixed navigation: all page content scrolls underneath the top bar */
body {
  padding-top: 84px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

#services,
#turnovers,
#about,
#contact {
  scroll-margin-top: 104px;
}

@media (max-width: 680px) {
  body {
    padding-top: 72px;
  }

  #services,
  #turnovers,
  #about,
  #contact {
    scroll-margin-top: 88px;
  }
}

/* ===== Dynamic site additions ===== */
.main-nav a[aria-current="page"] { color: var(--navy); }
.home-work { background: #fff; }
.work-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.work-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.work-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.work-card-image { aspect-ratio: 4 / 3; overflow: hidden; background: #eef1f3; }
.work-card-image img { width: 100%; height: 100%; object-fit: cover; }
.work-card-copy { padding: 22px 22px 24px; }
.work-card-copy > span { display: block; margin-bottom: 8px; color: #8b949c; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
.work-card-copy h3 { margin: 0 0 8px; color: var(--navy); font-size: 22px; }
.work-card-copy p { margin: 0; color: #707a83; font-size: 14px; line-height: 1.65; }
.work-more { margin-top: 32px; text-align: center; }
.work-button { background: var(--navy); color: #fff; }

.work-page { min-height: 70vh; }
.work-hero { background: linear-gradient(115deg, var(--navy), var(--navy-2)); color: #fff; padding: 96px 0 82px; }
.work-hero h1 { margin: 0; font-size: clamp(52px, 8vw, 82px); line-height: .95; letter-spacing: -.055em; }
.work-hero > .container > p:last-child { max-width: 720px; margin: 26px 0 0; color: #cbd4dc; font-size: 18px; line-height: 1.7; }
.work-library { background: var(--soft); }
.work-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.work-filters button { border: 1px solid #d8dee3; background: #fff; color: #52606c; padding: 10px 15px; border-radius: 999px; font-weight: 750; cursor: pointer; }
.work-filters button.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.project-list { display: grid; gap: 58px; }
.project-block { scroll-margin-top: 110px; }
.project-heading { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: end; margin-bottom: 22px; }
.project-heading span { color: #7e8992; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.project-heading h2 { margin: 7px 0 0; color: var(--navy); font-size: clamp(30px, 5vw, 46px); line-height: 1; letter-spacing: -.03em; }
.project-heading p { margin: 0; color: #68737d; line-height: 1.7; }
.project-photos { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.gallery-photo { display: block; padding: 0; border: 0; border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 3; background: #dfe4e7; cursor: zoom-in; }
.gallery-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.gallery-photo:hover img { transform: scale(1.025); }
.empty-gallery { text-align: center; padding: 70px 24px; background: #fff; border: 1px solid var(--line); border-radius: 22px; }
.empty-gallery h2 { margin: 0 0 10px; color: var(--navy); }
.empty-gallery p { margin: 0; color: #74808a; }
.lightbox { position: fixed; inset: 0; z-index: 3000; background: rgba(8,15,22,.94); display: grid; place-items: center; padding: 60px 24px 24px; }
.lightbox[hidden] { display: none; }
.lightbox-inner { max-width: min(1200px, 92vw); max-height: 88vh; text-align: center; }
.lightbox-inner img { max-width: 100%; max-height: 80vh; margin: auto; object-fit: contain; border-radius: 12px; }
.lightbox-inner p { color: #fff; margin: 14px 0 0; font-weight: 700; }
.lightbox-close { position: fixed; right: 22px; top: 18px; border: 0; background: rgba(255,255,255,.1); color: #fff; width: 46px; height: 46px; border-radius: 50%; font-size: 32px; line-height: 1; cursor: pointer; }

@media (max-width: 980px) {
  .work-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .project-heading { grid-template-columns: 1fr; gap: 14px; }
  .project-photos { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 680px) {
  .work-grid, .project-photos { grid-template-columns: 1fr; }
  .work-hero { padding: 66px 0 56px; }
  .work-hero > .container > p:last-child { font-size: 16px; }
  .work-filters { gap: 8px; }
  .work-filters button { padding: 9px 12px; font-size: 13px; }
}

/* v2.1 contact form status + human verification */
.form-hp{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.contact-alert{margin:0 0 18px;padding:13px 15px;border-radius:11px;font-size:13px;font-weight:750;line-height:1.5}
.contact-alert.success{background:#e9f8f1;color:#086444;border:1px solid #bde8d5}
.contact-alert.error{background:#fff0ee;color:#9b1c14;border:1px solid #f4c7c2}
.human-check{display:grid!important;grid-template-columns:auto auto minmax(90px,130px);align-items:center;justify-content:start;gap:10px!important;margin:5px 0 16px!important;padding:14px 15px;border:1px solid #dfe4e8;border-radius:11px;background:#f7f9fa}
.human-check>span{color:#59636d;font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}
.human-check>strong{color:var(--navy);font-size:16px;white-space:nowrap}
.human-check>input{margin:0!important;min-width:90px;background:#fff!important}
@media(max-width:520px){.human-check{grid-template-columns:1fr auto}.human-check>input{grid-column:1/-1;width:100%!important}}
