:root {
  --wk-color-0: #FF7A3D;
  --wk-color-1: #FF5100;
  --wk-color-2: #1E1810;
  --wk-color-3: #575250;
  --wk-color-4: #F8F5F4;
  --wk-color-5: #FFFFFF;
  --wk-color-6: #000000;
  --color-primary: var(--wk-color-0);
  --color-primary-light: var(--wk-color-1);
  --color-accent: var(--wk-color-0);
  --color-accent-light: var(--wk-color-1);
  --color-text: var(--wk-color-3);
  --color-text-muted: var(--wk-color-3);
  --color-bg: var(--wk-color-5);
  --color-bg-alt: var(--wk-color-4);
  --color-border: #e2e8f0;
  --font-sans: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Barlow', var(--font-sans);
  --container: min(1240px, 92vw);
  --header-h: 72px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent);
}

::selection {
  background: var(--wk-color-0);
  color: #000;
}
::-moz-selection {
  background: var(--wk-color-0);
  color: #000;
}

.site-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  min-height: 120px;
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.header-nav-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 0 0 67.632%;
  max-width: 67.632%;
  gap: 0.25rem;
}

.site-logo {
  flex: 0 0 32.368%;
  max-width: 32.368%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: rgb(255, 122, 61);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  max-width: 768px;
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 543px) {
  .site-logo img {
    max-width: 200px;
  }
}

.site-logo .logo-text.fallback {
  display: none;
}

.site-logo .logo-text.fallback.show {
  display: inline;
}

.site-logo span {
  color: var(--color-accent);
}

.lang-switcher {
  display: flex;
  gap: 0.5rem;
  margin-right: 0;
  margin-left: auto;
}

.lang-switcher a {
  font-size: 0.9375rem;
  color: rgb(255, 122, 61);
  padding: 0.25rem 0.5rem;
  border-radius: 0;
  text-decoration: none;
}

.lang-switcher a:hover,
.lang-switcher a[aria-current] {
  color: var(--wk-color-2);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  justify-content: flex-end;
}

.main-nav a {
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: rgb(255, 122, 61);
  border-radius: 0;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: #000;
  opacity: 0;
  transition: opacity 0.2s;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: rgb(255, 122, 61);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  opacity: 1;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 6px;
}

.menu-toggle,
.lang-toggle {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #e67e22;
  font-size: 2em;
  line-height: 1;
  border-radius: 8px;
}

.lang-toggle svg {
  display: block;
  width: 1em;
  height: 1em;
}

.menu-toggle {
  display: none;
  font-weight: 800;
}

.lang-toggle:hover,
.menu-toggle:hover {
  color: #d35400;
}

.lang-dropdown-wrap {
  position: relative;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.25rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius, 4px);
  box-shadow: var(--shadow);
  padding: 0.5rem;
  min-width: 120px;
  z-index: 10;
}

.lang-dropdown.is-open {
  display: block;
}

.lang-dropdown .lang-switcher {
  flex-direction: column;
  align-items: stretch;
  margin: 0;
}

.lang-dropdown .lang-switcher a {
  display: block;
  padding: 0.5rem 0.75rem;
}

@media (max-width: 768px) {
  .header-actions {
    display: flex;
  }
  .header-inner {
    padding-right: 10px;
  }
  .menu-toggle {
    display: block;
  }
  .site-header {
    background: #fff;
  }
  .header-nav-wrap {
    display: none;
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    box-shadow: var(--shadow);
    max-width: none;
    flex: none;
    gap: 0.5rem;
  }
  .header-nav-wrap.is-open {
    display: flex;
  }
  .lang-switcher {
    margin-left: 0;
    justify-content: flex-end;
  }
  .main-nav {
    display: flex;
    flex-direction: column;
    position: static;
    box-shadow: none;
    padding: 0;
    width: 100%;
  }
  .main-nav a {
    color: var(--wk-color-3);
  }
  .main-nav a:hover,
  .main-nav a[aria-current="page"] {
    color: var(--wk-color-0);
  }
  .main-nav a::after {
    display: none;
  }
  .lang-switcher a {
    color: var(--wk-color-3);
  }
  .lang-switcher a:hover {
    color: var(--wk-color-0);
  }
  .site-logo {
    flex: 0 0 auto;
    max-width: 80%;
  }
  .site-logo img {
    max-width: 220px;
  }
}

.hero {
  position: relative;
  background-image: url("/wp-content/uploads/2022/10/HongKong-7.jpg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 260px 1.5rem 240px;
  text-align: left;
}

@media (min-width: 1025px) {
  .hero {
    background-attachment: fixed;
  }
}

@media (max-width: 1024px) {
  .hero {
    padding: 160px 40px 120px;
  }
  .hero-inner {
    margin: 0 30% 0 0;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 160px 24px 104px;
    text-align: center;
  }
  .hero-inner {
    margin: 0 auto;
    max-width: 100%;
  }
}

.hero-background-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--wk-color-2);
  opacity: 0.5;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 72px;
  font-size: 4.5rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  text-transform: capitalize;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 544px) {
  .hero h1 {
    font-size: 36px;
  }
}

.hero .tagline {
  font-size: 1rem;
  color: #CBD2DE;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.hero .cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 32px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
  background: var(--wk-color-0);
  color: #fff;
  border: none;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  box-shadow: 0 16px 32px -16px rgba(255, 94, 20, 0.64);
}

.hero .cta:hover {
  background: var(--wk-color-1);
  color: #fff;
}

.hero .cta::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='currentColor'%3E%3Cpath d='M 18.71875 6.78125 L 17.28125 8.21875 L 24.0625 15 L 4 15 L 4 17 L 24.0625 17 L 17.28125 23.78125 L 18.71875 25.21875 L 27.21875 16.71875 L 27.90625 16 L 27.21875 15.28125 Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}

.section {
  padding: 3.5rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}

.section-projects {
  background-color: rgba(255, 255, 255, 1);
}

.section-projects.is-hidden {
  display: none;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--wk-color-2);
  margin: 0 0 1rem;
  text-transform: capitalize;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin: 0 0 2rem;
  line-height: 1.6;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-alt.section {
  padding: 40px 1.5rem 56px;
}

.section-alt .section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--wk-color-0);
  margin-top: 0.5rem;
}

.intro-block {
  padding: 3rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}

.intro-with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .intro-with-image {
    grid-template-columns: 1fr auto;
    text-align: left;
  }
  .intro-img {
    max-width: 320px;
    border-radius: 4px;
  }
}

.intro-img {
  margin: 0 auto;
}

.intro-block h2 {
  font-family: var(--font-heading);
  font-size: 37px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--wk-color-2);
  margin: 0 0 0.5rem;
  text-transform: capitalize;
}

.intro-block .sub {
  font-size: 24px;
  font-size: 1.5rem;
  color: var(--wk-color-2);
  margin: 0 0 1rem;
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: capitalize;
}

.intro-block .intro-text .sub::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--wk-color-0);
  margin: 0.5rem 0 1.5rem;
  margin-left: 0;
}

.intro-block .intro-text::after {
  display: none;
}

.intro-block p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.6;
}

.stats {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 200px 1.5rem;
  background-color: #fff;
  background-image: url("/wp-content/uploads/2022/10/HongKong-4.jpg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--wk-color-2);
  overflow: hidden;
}

.stats-shape {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  pointer-events: none;
  z-index: 1;
  line-height: 0;
}

.stats-shape svg {
  display: block;
  width: 100%;
  height: 131px;
}

.stats-shape-fill {
  fill: #ffffff;
}

.stats-shape-top {
  top: 0;
}

.stats-shape-bottom {
  bottom: 0;
}

.stats-shape-bottom svg {
  transform: scaleX(-1) scaleY(-1);
}

@media (min-width: 1025px) {
  .stats {
    background-attachment: fixed;
  }
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
}

.stat {
  position: relative;
  z-index: 2;
  text-align: center;
}

.stat .years-number {
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 600;
  display: block;
  color: var(--wk-color-0);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  line-height: 1;
  margin-bottom: -0.1em;
}

.stat .number {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  display: block;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  line-height: 1;
}

.stat .label {
  font-size: 22px;
  color: #fff;
  margin-top: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
}

@media (max-width: 767px) {
  .stat .years-number {
    font-size: 2.8em;
  }
  .stat .number {
    font-size: 1.375rem;
  }
}

.services-intro-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .services-intro-row {
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
}

.services-intro-row .section-title {
  margin-top: 0;
}

.services-intro-row .section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--wk-color-0);
  margin-top: 0.5rem;
}

.services-intro-row .section-subtitle {
  margin-bottom: 0;
}

.services-preview-image {
  text-align: center;
  margin-bottom: 0;
}

.services-preview-image img {
  max-width: 100%;
  width: 320px;
  height: auto;
  margin: 0;
  border-radius: 0;
  box-shadow: 64px 64px 160px -40px rgba(0, 0, 0, 0.24);
}

.services-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.section-alt .services-preview .service-card:first-child {
  display: none;
}

.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 0.75rem;
  object-fit: contain;
}

.service-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--color-primary-light);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--wk-color-2);
  margin: 0 0 0.5rem;
  text-transform: capitalize;
}

.service-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--color-primary-light);
}

.service-card p {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

.service-card .more {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 14px;
  padding: 18px 32px;
  background: var(--wk-color-0);
  color: #fff;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  box-shadow: 0 16px 32px -16px rgba(255, 94, 20, 0.64);
}

.service-card .more:hover {
  background: var(--wk-color-1);
  color: #fff;
}

.service-card .more::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='currentColor'%3E%3Cpath d='M 18.71875 6.78125 L 17.28125 8.21875 L 24.0625 15 L 4 15 L 4 17 L 24.0625 17 L 17.28125 23.78125 L 18.71875 25.21875 L 27.21875 16.71875 L 27.90625 16 L 27.21875 15.28125 Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.projects-grid {
  display: grid;
  grid-template-columns: 50% 25% 25%;
  grid-template-rows: auto auto;
  gap: 0;
}

@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: 50% 50%;
    grid-template-rows: repeat(3, auto);
  }
}

@media (max-width: 767px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

.project-card {
  background: var(--color-bg);
  border: none;
  border-radius: 0;
  overflow: hidden;
  transition: box-shadow 0.2s;
  position: relative;
}

.project-card .thumb {
  aspect-ratio: 1;
  min-height: 200px;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.project-card .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--wk-color-2);
  opacity: 0.48;
  transition: opacity 0.3s, background 0.3s;
}

.project-card:hover .thumb::after {
  background: var(--wk-color-0);
  opacity: 0.56;
}

.project-card .thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card .thumb .thumb-placeholder {
  display: none;
  z-index: 0;
}

.project-card .thumb .thumb-placeholder.show {
  display: block;
}

.content-area .projects-grid .project-card .thumb {
  display: none;
}

.project-card .body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.project-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.25rem;
}

.project-card .num {
  font-size: 9em;
  font-weight: 600;
  line-height: 1;
  color: rgba(255, 255, 255, 0.24);
  display: block;
  margin-top: -0.3em;
}

.page-header {
  background: var(--color-primary);
  color: #fff;
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}

.services-hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  box-sizing: border-box;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/wp-content/uploads/2022/10/About-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.services-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--wk-color-2);
  opacity: 0.5;
  pointer-events: none;
}

.services-hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-hero__inner {
  text-align: center;
  width: 100%;
  margin-top: 120px;
}

.services-hero__title {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  padding: 0;
  line-height: 1;
}

@media (max-width: 1024px) {
  .services-hero {
    padding: 0 40px;
  }
}

@media (max-width: 767px) {
  .services-hero {
    padding: 0 24px;
  }
  .services-hero__inner {
    text-align: center;
  }
}

.licenses-hero {
  background-image: url("/wp-content/uploads/2022/10/HongKong-5.jpg");
}

.projects-hero {
  background-image: url("/wp-content/uploads/2022/10/HongKong-6.jpg");
}

.about-hero {
  background-image: url("/wp-content/uploads/2022/10/HongKong-3.jpg");
}

.contact-hero {
  background-image: url("/wp-content/uploads/2022/10/HongKong-2.jpg");
}

.about-three {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: var(--container);
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .about-three {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding: 0 1.5rem 2rem;
  }
}

.about-three__item {
  background: var(--color-bg);
  padding: 1.5rem;
}

.about-three__heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--wk-color-2);
  margin: 0 0 0.75rem;
  text-align: center;
}

.about-three__heading::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-primary);
  margin: 0.5rem auto 0;
}

.about-three__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--color-text);
  line-height: 1.4;
}

.about-three__list li {
  margin-bottom: 0.2rem;
}

.more-updates-banner {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .more-updates-banner {
    font-size: 32px;
    padding: 1.5rem 1rem;
  }
}

.content-area--licenses {
  padding: 2rem 1.5rem 3rem;
}

body:has(.content-area--licenses) main > section#fire {
  display: none;
}

.license-block {
  margin-bottom: 2.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

main > .license-block {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.license-block--text-only .license-block__content {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .license-block--text-only .license-block__content {
    padding: 2rem;
  }
}

.license-block--with-icon {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .license-block--with-icon {
    grid-template-columns: auto 1fr;
    align-items: start;
  }
}

.license-block__icon {
  padding: 1.5rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.license-block__icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .license-block__icon {
    padding: 2rem;
    min-width: 140px;
  }
  .license-block__icon img {
    width: 100px;
    height: 100px;
  }
}

.license-block__content {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .license-block__content {
    padding: 2rem;
  }
}

.license-block__heading {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--wk-color-2);
  margin: 0 0 0.75rem;
}

.license-block__heading::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-primary);
  margin-top: 0.5rem;
}

.license-block__list {
  margin: 0.75rem 0 0;
}

.content-area {
  padding: 2rem 1.5rem 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.content-area--projects,
.content-area--services,
.content-area--licenses,
.content-area--about,
.content-area--contact {
  background-image: url("/wp-content/uploads/2022/10/HongKong-4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-width: none;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-bottom: 0;
  padding-bottom: 0;
}

.content-area--projects .section-alt.services-cta,
.content-area--services .section-alt.services-cta,
.content-area--licenses .section-alt.services-cta,
.content-area--about .section-alt.services-cta,
.content-area--contact .section-alt.services-cta {
  background: transparent;
}

.content-area--projects .services-cta .section-title,
.content-area--projects .services-cta .section-subtitle,
.content-area--services .services-cta .section-title,
.content-area--services .services-cta .section-subtitle,
.content-area--licenses .services-cta .section-title,
.content-area--licenses .services-cta .section-subtitle,
.content-area--about .services-cta .section-title,
.content-area--about .services-cta .section-subtitle,
.content-area--contact .services-cta .section-title,
.content-area--contact .services-cta .section-subtitle {
  color: #fff;
}

.content-area--projects .services-cta .section-title,
.content-area--services .services-cta .section-title,
.content-area--licenses .services-cta .section-title,
.content-area--about .services-cta .section-title,
.content-area--contact .services-cta .section-title {
  text-transform: uppercase;
  font-size: 28px;
}

.content-area--projects .services-cta__text,
.content-area--services .services-cta__text,
.content-area--licenses .services-cta__text,
.content-area--about .services-cta__text,
.content-area--contact .services-cta__text {
  text-align: left;
  width: 100%;
}

.content-area--projects .services-cta .section-subtitle,
.content-area--services .services-cta .section-subtitle,
.content-area--licenses .services-cta .section-subtitle,
.content-area--about .services-cta .section-subtitle,
.content-area--contact .services-cta .section-subtitle {
  text-align: left;
}

body:has(.content-area--projects) .site-footer,
body:has(.content-area--services) .site-footer,
body:has(.content-area--licenses) .site-footer,
body:has(.content-area--about) .site-footer,
body:has(.content-area--contact) .site-footer {
  margin-top: 0;
}

.content-area h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 2rem 0 0.75rem;
}

.content-area h2:first-child {
  margin-top: 0;
}

.content-area p,
.content-area ul {
  margin: 0 0 1rem;
  color: var(--color-text);
}

.content-area ul {
  padding-left: 1.5rem;
}

.content-area--services {
  padding: 2rem 1.5rem 3rem;
}

.services-intro {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.services-intro__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wk-color-2);
  margin: 0 0 0.75rem;
}

.services-intro__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: var(--color-primary);
  margin-top: 0.5rem;
}

.services-intro__text {
  margin: 0;
  color: var(--color-text);
  line-height: 1.7;
}

.service-block {
  margin-bottom: 2.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

main > .service-block {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.service-block--text-only .service-block__content {
  padding: 1.5rem;
}

.service-block--image-left,
.service-block--image-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .service-block--image-left {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .service-block--image-right {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .service-block--image-right .service-block__image {
    order: 2;
  }
  .service-block--image-right .service-block__content {
    order: 1;
  }
}

.service-block__image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--color-bg-alt);
  overflow: hidden;
}

.service-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-block__content {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .service-block__content {
    padding: 2rem;
  }
}

.service-block__heading {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--wk-color-2);
  margin: 0 0 0.75rem;
}

.service-block__heading::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-primary);
  margin-top: 0.5rem;
}

.service-block__content p {
  margin: 0 0 1rem;
  color: var(--color-text);
  line-height: 1.7;
}

.service-block__list {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  color: var(--color-text);
}

.service-block__list li {
  margin-bottom: 0.35rem;
}

.services-cta {
  margin-top: 2rem;
  padding: 2rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
}

.services-cta__text {
  flex: 1;
  min-width: 200px;
}

.services-cta .section-title {
  margin-top: 0;
  text-align: left;
}

.services-cta .section-subtitle {
  text-align: left;
  margin-bottom: 0;
}

.services-cta__btn-wrap {
  flex-shrink: 0;
  margin: 0;
}

.services-cta .btn {
  margin-top: 0;
}

.license-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.license-list li {
  padding: 0.75rem 1rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  border-left: 4px solid var(--color-accent);
}

.contact-details-section {
  max-width: var(--container);
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
}

.contact-details {
  background: var(--color-bg-alt);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

.contact-details .icon-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.contact-details .icon-list__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.contact-details .icon-list__icon {
  flex-shrink: 0;
  width: 1.25em;
  height: 1.25em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.contact-details .icon-list__icon svg {
  width: 100%;
  height: 100%;
}

.contact-details address {
  font-style: normal;
  line-height: 1.7;
}

.contact-details a[href^="tel"],
.contact-details a[href^="mailto"] {
  display: inline;
  margin-top: 0;
}

.site-footer {
  background: #000;
  color: #fff;
  padding: 2.5rem 1.5rem 2rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(0, 3fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-nav-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-nav-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-nav-group {
    grid-template-columns: 1fr;
  }
}

.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 181px;
  height: auto;
  max-width: 100%;
}

.footer-logo-wrap .footer-copyright {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 1);
  background-color: transparent;
  max-width: 280px;
}

.footer-inner h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--wk-color-0);
}

.footer-nav-group .footer-contact-heading {
  margin-top: 1.25rem;
}

.footer-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-inner .icon-list,
.footer-inner .footer-icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-inner .icon-list__item,
.footer-inner .footer-icon-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.footer-inner .icon-list__icon,
.footer-inner .icon-list__icon {
  flex-shrink: 0;
  width: 1.25em;
  height: 1.25em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-inner .icon-list__icon svg,
.footer-inner .icon-list__icon svg {
  width: 100%;
  height: 100%;
}

.footer-inner .icon-list__icon.icon-check {
  color: #22c55e;
}

.footer-inner li {
  margin-bottom: 0.4rem;
}

.footer-inner a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}

.footer-inner a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.9;
}

.footer-copyright-year {
  color: rgba(255, 255, 255, 1);
  padding: 0;
  margin: 0;
}

.footer-social-links {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 1);
  background-color: transparent;
  transition: color 0.2s;
}

.footer-social-links a:hover {
  color: #fff;
}

.footer-social-links svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 32px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
  border-radius: 0;
  background: var(--wk-color-0);
  color: #fff;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  box-shadow: 0 16px 32px -16px rgba(255, 94, 20, 0.64);
}
.btn:hover {
  background: var(--wk-color-1);
  color: #fff;
}
.btn::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='currentColor'%3E%3Cpath d='M 18.71875 6.78125 L 17.28125 8.21875 L 24.0625 15 L 4 15 L 4 17 L 24.0625 17 L 17.28125 23.78125 L 18.71875 25.21875 L 27.21875 16.71875 L 27.90625 16 L 27.21875 15.28125 Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
