/*
Theme Name: Archtech Builders Custom V2
Theme URI: https://archtechbuilders.com/
Author: Archtech Builders
Description: Custom WordPress theme for Archtech Builders, adapted from the modern static website design.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: archtech-builders-v2
*/

:root {
  --ink: #171733;
  --text: #2f3348;
  --muted: #687086;
  --paper: #f4f6fb;
  --surface: #ffffff;
  --line: #dfe3ee;
  --brick: #d21b46;
  --brick-dark: #a81234;
  --green: #2d2a72;
  --green-dark: #1e1b58;
  --brass: #d21b46;
  --sky: #edf0f8;
  --shadow: 0 18px 50px rgba(23, 23, 51, 0.14);
  --max: 1180px;
  --font-body: "Aptos", "Inter", "SF Pro Text", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Aptos Display", "SF Pro Display", "Inter", "Segoe UI Variable Display", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

main > section {
  scroll-margin-top: 96px;
}

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 14px;
  left: 50%;
  display: flex;
  width: min(calc(100% - 28px), var(--max));
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(45, 42, 114, 0.12);
  border-radius: 8px;
  transform: translateX(-50%);
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(45, 42, 114, 0.16);
  box-shadow: 0 12px 36px rgba(23, 23, 51, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: 156px;
  max-height: 48px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  padding: 11px 13px;
  border-radius: 6px;
  color: currentColor;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--green);
  background: rgba(45, 42, 114, 0.09);
  outline: none;
}

.site-nav .nav-cta {
  color: var(--surface);
  background: var(--brick);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--brick-dark);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(45, 42, 114, 0.06);
  border: 1px solid rgba(45, 42, 114, 0.12);
  border-radius: 6px;
}

.site-header.is-scrolled .language-switch,
.site-header.nav-active .language-switch {
  background: rgba(45, 42, 114, 0.06);
  border-color: rgba(45, 42, 114, 0.12);
}

.language-switch button {
  min-height: 32px;
  padding: 6px 9px;
  color: currentColor;
  background: transparent;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
}

.language-switch button:hover,
.language-switch button:focus-visible,
.language-switch button.is-active {
  color: var(--surface);
  background: var(--green);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: currentColor;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle span + span {
  margin-top: -14px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 90svh;
  overflow: hidden;
  color: var(--surface);
  background: var(--green-dark);
}

.hero-media,
.hero-media::after,
.hero-media img {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(30, 27, 88, 0.94) 0%, rgba(30, 27, 88, 0.66) 46%, rgba(210, 27, 70, 0.18) 82%),
    linear-gradient(0deg, rgba(23, 23, 51, 0.86) 0%, rgba(23, 23, 51, 0) 42%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(calc(100% - 40px), var(--max));
  min-height: 90svh;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: 48px;
  padding: 128px 0 142px;
}

.hero-simple {
  min-height: 78svh;
}

.hero-inner-simple {
  min-height: 78svh;
  grid-template-columns: minmax(0, 760px);
  padding-bottom: 96px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--surface);
  background:
    linear-gradient(135deg, rgba(30, 27, 88, 0.96), rgba(210, 27, 70, 0.78)),
    var(--ink);
}

.page-hero-image {
  background: var(--green-dark);
}

.page-hero-media,
.page-hero-media::after,
.page-hero-media img,
.page-hero-media video {
  position: absolute;
  inset: 0;
}

.page-hero-media img,
.page-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-media video {
  z-index: 0;
}

.page-hero-media::after {
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(30, 27, 88, 0.92), rgba(30, 27, 88, 0.6) 52%, rgba(210, 27, 70, 0.22)),
    linear-gradient(0deg, rgba(23, 23, 51, 0.72), transparent 44%);
}

.page-hero-video .page-hero-media::after {
  background:
    linear-gradient(90deg, rgba(19, 15, 53, 0.34), rgba(34, 26, 79, 0.08) 64%, transparent 88%),
    rgba(34, 26, 79, 0.6);
}

.page-hero-service .page-hero-media img {
  object-position: center 42%;
  transform: scale(1.04);
  animation: serviceHeroDrift 18s ease-in-out infinite alternate;
}

.page-hero-service .page-hero-media::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.2;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.48) 54%, #000 100%);
}

.page-hero-service .page-hero-media::after {
  background:
    linear-gradient(90deg, rgba(23, 20, 61, 0.94) 0%, rgba(30, 27, 88, 0.72) 52%, rgba(55, 46, 112, 0.38) 78%, rgba(23, 20, 61, 0.22) 100%),
    linear-gradient(0deg, rgba(23, 20, 61, 0.72), transparent 54%);
}

@keyframes serviceHeroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.1) translate3d(-1.2%, -0.8%, 0);
  }
}

/* Interactive service journey */
.service-explorer {
  --service-accent: #c82449;
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background:
    linear-gradient(135deg, rgba(98, 91, 166, 0.08), transparent 42%),
    #f5f6fb;
}

.service-explorer-heading,
.service-tabs,
.service-stage,
.service-progress {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.service-explorer-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}

.service-explorer-heading .section-title {
  max-width: 760px;
}

.service-explorer-heading .section-copy {
  max-width: 440px;
  justify-self: end;
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.service-tab {
  display: grid;
  min-height: 86px;
  padding: 16px 18px;
  text-align: left;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(45, 42, 114, 0.12);
  border-radius: 6px;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.service-tab span {
  color: var(--brick);
  font-size: 0.72rem;
  font-weight: 900;
}

.service-tab strong {
  align-self: end;
  font-size: 0.96rem;
}

.service-tab:hover,
.service-tab:focus-visible {
  border-color: rgba(45, 42, 114, 0.36);
  outline: none;
  transform: translateY(-2px);
}

.service-tab.is-active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.service-tab.is-active span {
  color: #f1b5c3;
}

.service-stage {
  --pointer-x: 50%;
  --pointer-y: 50%;
  display: grid;
  perspective: 1200px;
}

.service-panel {
  position: relative;
  grid-area: 1 / 1;
  display: grid;
  min-height: 570px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  background: var(--ink);
  border: 1px solid rgba(45, 42, 114, 0.12);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(23, 20, 61, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px) rotateX(1.2deg) scale(0.985);
  transition: opacity 480ms ease, visibility 480ms ease, transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-panel::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.14), transparent 28%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.service-stage:hover .service-panel.is-active::after {
  opacity: 1;
}

.service-panel.is-active {
  position: relative;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) rotateX(0) scale(1);
}

.service-panel[data-service-panel="interior"] {
  --service-accent: #c6a15b;
}

.service-panel[data-service-panel="visit"] {
  --service-accent: #4f9b8d;
}

.service-panel[data-service-panel="land"] {
  --service-accent: #b9748d;
}

.service-panel-media {
  position: relative;
  min-height: 570px;
  overflow: hidden;
}

.service-panel-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 58%, rgba(23, 20, 61, 0.72)),
    linear-gradient(0deg, rgba(23, 20, 61, 0.28), transparent 44%);
}

.service-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-panel.is-active .service-panel-media img {
  transform: scale(1.01);
}

.service-panel-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 64px);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(98, 91, 166, 0.22), transparent 54%),
    var(--ink);
}

.service-panel-count {
  margin-bottom: 22px;
  color: var(--service-accent);
  font-size: 0.76rem;
  font-weight: 900;
}

.service-panel-content h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  line-height: 1.03;
}

.service-panel-content > p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  line-height: 1.7;
}

.service-panel-content ul {
  display: grid;
  gap: 11px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.service-panel-content li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
}

.service-panel-content li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--service-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.service-panel-content .button {
  align-self: flex-start;
}

.service-progress {
  height: 3px;
  margin-top: 14px;
  overflow: hidden;
  background: rgba(45, 42, 114, 0.12);
}

.service-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--brick));
  transform: scaleX(0);
  transform-origin: left;
  animation: serviceExplorerProgress 7s linear forwards;
}

.service-explorer.is-paused .service-progress span {
  animation-play-state: paused;
}

@keyframes serviceExplorerProgress {
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 940px) {
  .service-explorer-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-explorer-heading .section-copy {
    justify-self: start;
  }

  .service-panel {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  }
}

@media (max-width: 780px) {
  .service-explorer {
    padding: 72px 0;
  }

  .service-explorer-heading,
  .service-tabs,
  .service-stage,
  .service-progress {
    width: min(calc(100% - 28px), var(--max));
  }

  .service-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-panel {
    grid-template-columns: 1fr;
  }

  .service-panel-media {
    min-height: 340px;
  }

  .service-panel-media::after {
    background: linear-gradient(0deg, rgba(23, 20, 61, 0.82), transparent 52%);
  }
}

@media (max-width: 460px) {
  .service-tab {
    min-height: 78px;
    padding: 13px;
  }

  .service-panel-media {
    min-height: 270px;
  }

  .service-panel-content {
    padding: 26px 22px 30px;
  }
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 158px 0 92px;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--surface);
  font-family: var(--font-display);
  font-size: 4.3rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.page-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.14rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 700px;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--surface);
  font-family: var(--font-display);
  font-size: 5.6rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.95;
}

.hero-lede {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.button-primary {
  color: var(--surface);
  background: var(--brick);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--brick-dark);
}

.button-secondary {
  color: var(--surface);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.24);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(45, 42, 114, 0.22);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--surface);
  border-color: var(--brick);
}

.availability-panel {
  max-width: 390px;
  justify-self: end;
  padding: 26px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.availability-panel p {
  margin: 0 0 10px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.availability-panel h2 {
  margin: 0;
  color: var(--surface);
  font-size: 1.35rem;
  line-height: 1.25;
}

.availability-panel ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.availability-panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
}

.availability-panel li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--brass);
  border-radius: 999px;
}

.hero-facts {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -18px 48px rgba(0, 0, 0, 0.18);
}

.hero-facts div {
  display: grid;
  gap: 6px;
  min-height: 104px;
  padding: 22px 24px;
  color: var(--ink);
  border-right: 1px solid var(--line);
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts span {
  color: var(--brick);
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-facts strong {
  font-size: 1.02rem;
  line-height: 1.25;
}

.section-band {
  background:
    linear-gradient(90deg, rgba(45, 42, 114, 0.08), transparent 48%),
    var(--paper);
}

.home-summary,
.home-projects,
.intro,
.portfolio,
.locations,
.standard,
.landowners,
.buyer-path,
.contact {
  padding: 94px 0;
}

.mini-grid,
.cta-band,
.section-grid,
.section-heading,
.projects-grid,
.landowner-layout,
.chairman-layout,
.path-grid,
.contact-layout,
.standard-grid {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.section-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 3.05rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  display: grid;
  max-width: var(--max);
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.52fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading-simple {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
}

.text-link {
  justify-self: end;
  color: var(--brick);
  font-weight: 900;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--green-dark);
  outline: none;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mini-card {
  min-height: 210px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid rgba(45, 42, 114, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(23, 23, 51, 0.07);
}

.mini-card span {
  color: var(--brick);
  font-size: 0.78rem;
  font-weight: 900;
}

.mini-card h3 {
  margin: 38px 0 10px;
  color: var(--ink);
  font-size: 1.16rem;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
}

.projects-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 78px 0;
}

.cta-band .section-title {
  max-width: 820px;
}

.project-controls {
  display: flex;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto 28px;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 42px;
  padding: 9px 15px;
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(45, 42, 114, 0.16);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  color: var(--surface);
  background: var(--green);
  border-color: var(--green);
  outline: none;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.project-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(45, 42, 114, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(23, 23, 51, 0.08);
}

.project-card.is-hidden {
  display: none;
}

.project-image {
  position: relative;
  display: block;
  height: 250px;
  overflow: hidden;
  background: var(--green);
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 23, 51, 0), rgba(23, 23, 51, 0.26));
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  transition: transform 260ms ease;
}

.project-card:hover .project-image img {
  transform: scale(1.045);
}

.project-image-alt img {
  object-position: 38% center;
}

.project-image-green img {
  filter: saturate(0.92) hue-rotate(10deg);
  object-position: 72% center;
}

.project-image-brick img {
  filter: saturate(1.08) contrast(1.02);
  object-position: 55% center;
}

.project-image-brochure {
  background: var(--sky);
}

.project-image-brochure::after {
  display: none;
}

.project-image-brochure img {
  object-fit: contain;
  object-position: center;
}

.project-body {
  padding: 20px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.project-meta span {
  padding: 5px 8px;
  color: var(--green-dark);
  background: rgba(45, 42, 114, 0.12);
  border-radius: 5px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-meta .status-chip {
  color: var(--surface);
}

.project-meta .status-ready {
  background: var(--green);
}

.project-meta .status-ongoing {
  background: var(--brick);
}

.project-meta .status-sold {
  background: var(--ink);
}

.project-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.2rem;
  letter-spacing: 0;
}

.project-card p {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.project-specs {
  display: grid;
  gap: 10px;
  margin: 0;
}

.project-specs div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.project-specs dt,
.project-specs dd {
  margin: 0;
  font-size: 0.84rem;
}

.project-specs dt {
  color: var(--muted);
}

.project-specs dd {
  color: var(--ink);
  font-weight: 800;
  text-align: right;
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.project-actions a {
  min-height: 38px;
  padding: 9px 12px;
  color: var(--surface);
  background: var(--green);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 900;
}

.project-actions a:last-child {
  color: var(--green-dark);
  background: rgba(45, 42, 114, 0.14);
}

.project-actions a:hover,
.project-actions a:focus-visible {
  background: var(--brick);
  color: var(--surface);
  outline: none;
}

.location-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.location-tile {
  min-height: 160px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid rgba(45, 42, 114, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(23, 23, 51, 0.07);
}

.location-tile.is-large {
  color: var(--surface);
  background:
    linear-gradient(135deg, rgba(210, 27, 70, 0.88), rgba(45, 42, 114, 0.92)),
    var(--green);
}

.location-tile span {
  display: block;
  margin-bottom: 12px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.location-tile.is-large span {
  color: #f0d7a6;
}

.location-tile strong {
  display: block;
  color: currentColor;
  font-size: 1.15rem;
  line-height: 1.25;
}

.standard {
  background: var(--surface);
}

.chairman-section {
  padding: 104px 0;
  background:
    linear-gradient(135deg, rgba(21, 19, 43, 0.04), transparent 48%),
    var(--surface);
}

.chairman-layout {
  display: grid;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 0.74fr);
  gap: 46px;
  align-items: center;
}

.chairman-portrait {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--sky);
  border: 1px solid rgba(21, 19, 43, 0.08);
  border-radius: 8px;
  box-shadow: 0 26px 66px rgba(21, 19, 43, 0.16);
}

.chairman-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 58%, rgba(21, 19, 43, 0.24)),
    linear-gradient(90deg, rgba(201, 31, 67, 0.16), transparent 34%);
}

.chairman-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.chairman-card {
  padding: clamp(26px, 4vw, 46px);
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(21, 19, 43, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.chairman-card .section-title {
  margin-bottom: 12px;
}

.chairman-role {
  margin: 0 0 24px;
  color: var(--brick);
  font-weight: 900;
}

.chairman-card p:not(.section-kicker):not(.chairman-role) {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.standard-item {
  min-height: 250px;
  padding: 24px;
  background: #f8f9fd;
  border: 1px solid rgba(45, 42, 114, 0.08);
  border-radius: 8px;
}

.standard-item svg {
  width: 34px;
  height: 34px;
  color: var(--brick);
}

.standard-item h3 {
  margin: 36px 0 10px;
  color: var(--ink);
  font-size: 1.15rem;
}

.standard-item p {
  margin: 0;
  color: var(--muted);
}

.landowner-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  gap: 70px;
  align-items: center;
}

.landowner-layout .section-copy {
  margin: 20px 0 30px;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid rgba(45, 42, 114, 0.1);
  border-radius: 8px;
}

.process-step > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--surface);
  background: var(--green);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 900;
}

.process-step h3 {
  margin: 0 0 6px;
  color: var(--ink);
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

.buyer-path {
  background:
    linear-gradient(180deg, var(--surface) 0%, var(--paper) 100%);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.path-step {
  min-height: 230px;
  padding: 24px;
  background: var(--surface);
}

.path-step span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--brick);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.path-step h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.12rem;
}

.path-step p {
  margin: 0;
  color: var(--muted);
}

.contact {
  color: var(--surface);
  background:
    linear-gradient(135deg, rgba(30, 27, 88, 0.96), rgba(23, 23, 51, 0.96) 58%, rgba(210, 27, 70, 0.84)),
    var(--green-dark);
}

.contact .section-title,
.contact .section-copy {
  color: var(--surface);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.74fr);
  gap: 68px;
  align-items: start;
}

.contact-copy p:not(.section-kicker) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.contact-lines a:hover,
.contact-lines a:focus-visible {
  color: var(--brass);
  outline: none;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  color: var(--ink);
  background: var(--surface);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 900;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #f8f9fd;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(45, 42, 114, 0.16);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status.is-success {
  color: #176447;
}

.form-status.is-error {
  color: #a3273d;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.inquiry-form.is-submitting button,
.inquiry-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.site-footer {
  color: var(--surface);
  background:
    linear-gradient(135deg, rgba(30, 27, 88, 0.98), rgba(23, 23, 51, 0.98) 62%, rgba(210, 27, 70, 0.82)),
    var(--green-dark);
}

.footer-main,
.footer-bottom {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.16fr) repeat(2, minmax(190px, 0.62fr));
  gap: 34px;
  padding: 62px 0 42px;
}

.bangladesh-flag {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 24px;
  height: 15px;
  overflow: hidden;
  background: #006a4e;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.bangladesh-flag::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  width: 9px;
  height: 9px;
  background: #f42a41;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.footer-brand-block h2 {
  max-width: 430px;
  margin: 0 0 12px;
  color: var(--surface);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.15;
}

.footer-brand-block p,
.footer-column span,
.footer-column address,
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand-block p {
  max-width: 470px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: var(--surface);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-column a,
.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.footer-column address {
  font-style: normal;
  line-height: 1.55;
}

.footer-action {
  width: fit-content;
  margin-top: 6px;
  color: var(--surface);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ff6b86;
  outline: none;
}

.footer-bottom {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-visit-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1100px) {
  .hero h1 {
    font-size: 4.7rem;
  }

  .hero-inner,
  .section-grid,
  .landowner-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .availability-panel {
    max-width: 560px;
    justify-self: start;
  }

  .projects-grid,
  .mini-grid,
  .standard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 0.8fr);
  }
}

@media (max-width: 780px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
    min-height: 62px;
    padding: 9px 10px 9px 12px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 10px;
    left: 10px;
    display: none;
    padding: 10px;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid rgba(45, 42, 114, 0.12);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    display: block;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-inner {
    width: min(calc(100% - 28px), var(--max));
    min-height: 88svh;
    gap: 28px;
    padding: 108px 0 198px;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .hero-lede {
    font-size: 1.04rem;
  }

  .availability-panel {
    padding: 20px;
  }

  .availability-panel h2 {
    font-size: 1.1rem;
  }

  .hero-facts {
    width: min(calc(100% - 28px), var(--max));
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    min-height: auto;
    padding: 14px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-facts div:last-child {
    border-bottom: 0;
  }

  .home-summary,
  .home-projects,
  .intro,
  .portfolio,
  .locations,
  .standard,
  .landowners,
  .buyer-path,
  .contact {
    padding: 68px 0;
  }

  .mini-grid,
  .cta-band,
  .section-grid,
  .section-heading,
  .projects-grid,
  .landowner-layout,
  .path-grid,
  .contact-layout,
  .standard-grid {
    width: min(calc(100% - 28px), var(--max));
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .projects-grid,
  .mini-grid,
  .standard-grid,
  .chairman-layout,
  .path-grid,
  .location-board {
    grid-template-columns: 1fr;
  }

  .hero-inner-simple {
    min-height: 88svh;
    padding: 108px 0 78px;
  }

  .page-hero-inner {
    width: min(calc(100% - 28px), var(--max));
    padding: 126px 0 68px;
  }

  .page-hero h1 {
    font-size: 2.65rem;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .text-link {
    justify-self: start;
  }

  .cta-band {
    gap: 20px;
    padding: 58px 0;
  }

  .language-switch {
    justify-self: start;
  }

  .project-controls {
    width: min(calc(100% - 28px), var(--max));
  }

  .project-image {
    height: 230px;
  }

  .path-grid {
    gap: 0;
  }

  .path-step {
    min-height: auto;
    border-bottom: 1px solid var(--line);
  }

  .path-step:last-child {
    border-bottom: 0;
  }

  .path-step span {
    margin-bottom: 18px;
  }

  .footer-main,
  .footer-bottom {
    width: min(calc(100% - 28px), var(--max));
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 52px 0 34px;
  }

  .footer-brand-block h2 {
    font-size: 1.55rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    gap: 14px;
  }
}

@media (max-width: 460px) {
  .brand-logo {
    width: 132px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .project-specs div {
    display: grid;
  }

  .project-specs dd {
    text-align: left;
  }

  .process-step {
    grid-template-columns: 1fr;
  }
}

/* Modern Archtech refresh */
:root {
  --ink: #15132b;
  --text: #33384d;
  --muted: #667085;
  --paper: #f7f2eb;
  --surface: #fffdf8;
  --line: #e5ddd2;
  --brick: #c91f43;
  --brick-dark: #9f1733;
  --green: #2f5d48;
  --green-dark: #1e3c31;
  --brass: #c99a45;
  --sky: #eef2f5;
  --shadow: 0 18px 48px rgba(21, 19, 43, 0.12);
  --font-body: "Aptos", "Inter", "SF Pro Text", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Aptos Display", "SF Pro Display", "Inter", "Segoe UI Variable Display", ui-sans-serif, system-ui, sans-serif;
}

body {
  background:
    linear-gradient(90deg, rgba(21, 19, 43, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 19, 43, 0.03) 1px, transparent 1px),
    var(--paper);
  background-size: 64px 64px, 64px 64px, auto;
}

html[lang="bn"] body {
  font-family: "Noto Sans Bengali", "Hind Siliguri", "Aptos", "Inter", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
}

.site-header {
  min-height: 70px;
  background: rgba(255, 253, 248, 0.92);
  border-color: rgba(21, 19, 43, 0.08);
  box-shadow: 0 12px 34px rgba(21, 19, 43, 0.08);
}

.site-nav a {
  color: rgba(21, 19, 43, 0.82);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--brick);
  background: rgba(201, 31, 67, 0.08);
}

.site-nav .nav-cta {
  color: var(--surface);
  background: var(--brick);
}

.language-switch {
  background: rgba(47, 93, 72, 0.08);
  border-color: rgba(47, 93, 72, 0.16);
}

.language-switch button.is-active,
.language-switch button:hover,
.language-switch button:focus-visible {
  background: var(--green);
}

.hero {
  --hero-drift: 0px;
  --pointer-x: 0px;
  --pointer-y: 0px;
  min-height: 94svh;
  background:
    linear-gradient(135deg, var(--ink), var(--green-dark)),
    var(--ink);
}

.hero-media {
  z-index: 0;
}

.hero-media img {
  transform: translateY(var(--hero-drift)) scale(1.04);
  transform-origin: center;
  will-change: transform;
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(21, 19, 43, 0.96) 0%, rgba(21, 19, 43, 0.78) 42%, rgba(47, 93, 72, 0.48) 72%, rgba(201, 31, 67, 0.28) 100%),
    linear-gradient(0deg, rgba(21, 19, 43, 0.86) 0%, rgba(21, 19, 43, 0.14) 56%);
}

.motion-canvas {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(var(--pointer-x), var(--pointer-y), 0);
  will-change: transform;
}

.motion-canvas::before {
  content: "";
  position: absolute;
  inset: -18%;
  opacity: 0.34;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 253, 248, 0.1) 1px, transparent 1px);
  background-size: 92px 92px;
  animation: gridDrift 18s linear infinite;
}

.flow-line,
.flow-node,
.flow-panel {
  position: absolute;
  display: block;
}

.flow-line {
  height: 1px;
  width: min(520px, 42vw);
  background: linear-gradient(90deg, transparent, rgba(255, 253, 248, 0.62), transparent);
  animation: lineSweep 8s ease-in-out infinite;
}

.flow-line-a {
  top: 31%;
  right: 8%;
  transform: rotate(-18deg);
}

.flow-line-b {
  bottom: 31%;
  left: 4%;
  transform: rotate(15deg);
  animation-delay: -3s;
}

.flow-node {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 253, 248, 0.3);
  border-radius: 6px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 253, 248, 0.22) 50%, transparent 51%),
    linear-gradient(180deg, transparent 49%, rgba(255, 253, 248, 0.22) 50%, transparent 51%),
    rgba(255, 253, 248, 0.06);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  animation: nodeFloat 9s ease-in-out infinite;
}

.flow-node-a {
  top: 21%;
  right: 23%;
}

.flow-node-b {
  right: 12%;
  bottom: 24%;
  animation-delay: -2s;
}

.flow-node-c {
  bottom: 38%;
  left: 8%;
  animation-delay: -5s;
}

.flow-panel {
  width: clamp(150px, 16vw, 260px);
  height: clamp(84px, 8vw, 126px);
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.16), rgba(255, 253, 248, 0.04)),
    linear-gradient(90deg, rgba(201, 31, 67, 0.16), rgba(47, 93, 72, 0.16));
  backdrop-filter: blur(8px);
  animation: panelFloat 10s ease-in-out infinite;
}

.flow-panel-a {
  top: 17%;
  right: 4%;
}

.flow-panel-b {
  right: 29%;
  bottom: 16%;
  animation-delay: -4s;
}

.flow-panel-c {
  bottom: 20%;
  left: 2%;
  animation-delay: -7s;
}

.hero-inner {
  z-index: 2;
  min-height: 94svh;
}

.hero-inner-simple {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.52fr);
  gap: 58px;
  padding: 136px 0 178px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  color: var(--brass);
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: 5.25rem;
  line-height: 0.98;
}

.hero-lede {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.84);
}

.button {
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(21, 19, 43, 0.1);
}

.button-secondary {
  color: var(--surface);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.project-finder {
  position: relative;
  max-width: 420px;
  justify-self: end;
  color: var(--surface);
  background: rgba(255, 253, 248, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition:
    transform 160ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.project-finder::before {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.finder-options {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 22px;
}

.finder-options button {
  min-height: 42px;
  padding: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
}

.finder-options button:hover,
.finder-options button:focus-visible,
.finder-options button.is-active {
  color: var(--ink);
  background: var(--surface);
  outline: none;
}

.finder-result {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.finder-result span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.finder-result h3 {
  margin: 0;
  color: var(--surface);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.18;
}

.finder-result p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.hero-facts {
  z-index: 3;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid rgba(21, 19, 43, 0.08);
  box-shadow: 0 -16px 42px rgba(21, 19, 43, 0.16);
}

.hero-facts div {
  border-color: var(--line);
}

.hero-facts span,
.mini-card span,
.path-step span,
.location-tile span {
  color: var(--brick);
}

.home-summary,
.home-projects,
.intro,
.portfolio,
.locations,
.standard,
.landowners,
.buyer-path,
.contact {
  padding: 104px 0;
}

.section-band {
  background:
    linear-gradient(90deg, rgba(47, 93, 72, 0.09), transparent 48%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.72), rgba(247, 242, 235, 0.9));
}

.section-title {
  max-width: 900px;
}

.signal-ribbon {
  position: relative;
  overflow: hidden;
  height: 74px;
  background:
    linear-gradient(90deg, rgba(21, 19, 43, 0.98), rgba(30, 60, 49, 0.95)),
    var(--ink);
}

.signal-ribbon::before,
.signal-ribbon::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: 18vw;
  pointer-events: none;
}

.signal-ribbon::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink), transparent);
}

.signal-ribbon::after {
  right: 0;
  background: linear-gradient(270deg, var(--ink), transparent);
}

.signal-track {
  display: grid;
  width: max(1600px, 220vw);
  height: 100%;
  grid-template-columns: repeat(6, minmax(220px, 1fr));
  animation: signalMove 22s linear infinite;
  will-change: transform;
}

.signal-track span {
  position: relative;
  border-right: 1px solid rgba(255, 253, 248, 0.12);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.08), transparent 42%),
    linear-gradient(180deg, transparent 48%, rgba(201, 31, 67, 0.36) 49%, transparent 51%);
}

.signal-track span::before,
.signal-track span::after {
  content: "";
  position: absolute;
  left: 28px;
  height: 1px;
  background: rgba(255, 253, 248, 0.34);
}

.signal-track span::before {
  top: 26px;
  width: 72px;
}

.signal-track span::after {
  bottom: 24px;
  width: 132px;
  background: rgba(201, 154, 69, 0.72);
}

.mini-card,
.project-card,
.standard-item,
.process-step,
.location-tile {
  background: rgba(255, 253, 248, 0.94);
  border-color: rgba(21, 19, 43, 0.08);
  box-shadow: var(--shadow);
}

.mini-card,
.standard-item,
.path-step,
.location-tile {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.mini-card:hover,
.standard-item:hover,
.path-step:hover,
.location-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 31, 67, 0.22);
  box-shadow: 0 24px 56px rgba(21, 19, 43, 0.14);
}

.buyer-path {
  background:
    linear-gradient(180deg, var(--surface), rgba(238, 242, 245, 0.78)),
    var(--surface);
}

.path-grid {
  border-color: rgba(21, 19, 43, 0.1);
}

.path-step {
  background: var(--surface);
}

.path-step h3,
.mini-card h3,
.standard-item h3,
.location-tile strong {
  color: var(--ink);
}

.home-projects {
  background: var(--surface);
}

.project-card {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 31, 67, 0.24);
  box-shadow: 0 28px 62px rgba(21, 19, 43, 0.16);
}

.project-image {
  background:
    linear-gradient(135deg, rgba(47, 93, 72, 0.12), rgba(201, 31, 67, 0.08)),
    var(--sky);
}

.project-body {
  background: var(--surface);
}

.project-meta span {
  color: var(--green-dark);
  background: rgba(47, 93, 72, 0.1);
}

.project-meta .status-ready {
  background: var(--green);
}

.project-meta .status-ongoing {
  background: var(--brick);
}

.project-meta .status-sold {
  background: var(--ink);
}

.project-actions a {
  background: var(--green);
}

.project-actions a:last-child {
  color: var(--brick-dark);
  background: rgba(201, 31, 67, 0.1);
}

.project-actions a:hover,
.project-actions a:focus-visible {
  background: var(--brick);
}

.location-board {
  align-self: stretch;
}

.location-tile {
  min-height: 178px;
}

.location-tile.is-large {
  background:
    linear-gradient(135deg, rgba(21, 19, 43, 0.92), rgba(47, 93, 72, 0.88)),
    var(--green-dark);
}

.location-tile.is-large span,
.location-tile.is-large strong {
  color: var(--surface);
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(21, 19, 43, 0.96), rgba(47, 93, 72, 0.88) 58%, rgba(201, 31, 67, 0.78)),
    var(--ink);
}

.page-hero-media::after {
  background:
    linear-gradient(90deg, rgba(21, 19, 43, 0.94), rgba(21, 19, 43, 0.62) 52%, rgba(47, 93, 72, 0.22)),
    linear-gradient(0deg, rgba(21, 19, 43, 0.74), transparent 44%);
}

.project-controls {
  padding: 6px;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(21, 19, 43, 0.08);
  border-radius: 8px;
  width: fit-content;
}

.filter-button {
  color: var(--text);
  background: transparent;
  border-color: transparent;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  background: var(--green);
  border-color: var(--green);
}

.contact,
.site-footer {
  background:
    linear-gradient(135deg, rgba(21, 19, 43, 0.98), rgba(30, 60, 49, 0.96) 58%, rgba(201, 31, 67, 0.86)),
    var(--ink);
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  background: #fbf7f1;
  border-color: var(--line);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal].is-visible.project-card,
[data-reveal].is-visible.mini-card,
[data-reveal].is-visible.standard-item,
[data-reveal].is-visible.process-step,
[data-reveal].is-visible.path-step,
[data-reveal].is-visible.location-tile,
[data-reveal].is-visible.chairman-portrait,
[data-reveal].is-visible.chairman-card,
[data-reveal].is-visible.inquiry-form {
  transform: perspective(900px) translate3d(0, var(--fx-lift, 0px), 0) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
}

[data-reveal].is-visible.project-card:hover,
[data-reveal].is-visible.mini-card:hover,
[data-reveal].is-visible.standard-item:hover,
[data-reveal].is-visible.process-step:hover,
[data-reveal].is-visible.path-step:hover,
[data-reveal].is-visible.location-tile:hover,
[data-reveal].is-visible.chairman-portrait:hover,
[data-reveal].is-visible.chairman-card:hover,
[data-reveal].is-visible.inquiry-form:hover {
  --fx-lift: -5px;
}

@keyframes gridDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(92px, 92px, 0);
  }
}

@keyframes lineSweep {
  0%,
  100% {
    opacity: 0.24;
    clip-path: inset(0 82% 0 0);
  }

  48%,
  58% {
    opacity: 0.88;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes nodeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(10px, -14px, 0) rotate(4deg);
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }

  50% {
    transform: translate3d(-12px, 16px, 0) rotate(2deg);
  }
}

@keyframes signalMove {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 1100px) {
  .hero-inner-simple {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .project-finder {
    max-width: 620px;
    justify-self: start;
  }

  .hero h1 {
    font-size: 4.4rem;
  }

  .flow-panel-a,
  .flow-node-a {
    display: none;
  }
}

@media (max-width: 780px) {
  .site-header {
    background: rgba(255, 253, 248, 0.98);
  }

  .site-nav {
    background: var(--surface);
  }

  .hero,
  .hero-inner {
    min-height: 92svh;
  }

  .hero-inner-simple {
    min-height: 92svh;
    padding: 112px 0 250px;
  }

  .hero h1 {
    font-size: 3.15rem;
    line-height: 1;
  }

  .finder-options {
    grid-template-columns: 1fr;
  }

  .motion-canvas {
    opacity: 0.48;
  }

  .flow-panel,
  .flow-node {
    display: none;
  }

  .signal-ribbon {
    height: 54px;
  }

  .hero-facts {
    width: min(calc(100% - 28px), var(--max));
  }

  .home-summary,
  .home-projects,
  .intro,
  .portfolio,
  .locations,
  .standard,
  .landowners,
  .buyer-path,
  .contact {
    padding: 72px 0;
  }

  .project-controls {
    width: min(calc(100% - 28px), var(--max));
  }

  .filter-button {
    flex: 1 1 auto;
  }
}

@media (max-width: 460px) {
  .hero-inner-simple {
    padding-bottom: 286px;
  }

  .hero h1 {
    font-size: 2.56rem;
  }

  .hero-facts strong {
    font-size: 0.95rem;
  }

  .project-finder {
    padding: 20px;
  }
}

/* Modern visual polish */
:root {
  --ink: #111318;
  --text: #26313d;
  --muted: #667085;
  --paper: #f6f8f2;
  --surface: #fffffb;
  --line: #dce5dd;
  --brick: #ff3d71;
  --brick-dark: #d61e55;
  --green: #008b63;
  --green-dark: #12372e;
  --brass: #ffca3a;
  --sky: #edf7ff;
  --aqua: #00b8ff;
  --lime: #c7ff5e;
  --shadow: 0 18px 44px rgba(17, 19, 24, 0.1);
  --shadow-pop: 0 24px 58px rgba(17, 19, 24, 0.16);
  --font-body: "Plus Jakarta Sans", "Aptos", "Inter", "SF Pro Text", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Space Grotesk", "Plus Jakarta Sans", "Aptos Display", "SF Pro Display", "Inter", ui-sans-serif, system-ui, sans-serif;
}

body {
  background:
    linear-gradient(90deg, rgba(0, 139, 99, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 61, 113, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 56px 56px, 56px 56px, auto;
}

.site-header {
  min-height: 68px;
  background: rgba(255, 255, 251, 0.9);
  border-color: rgba(17, 19, 24, 0.08);
  box-shadow: 0 14px 38px rgba(17, 19, 24, 0.1);
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(255, 255, 251, 0.98);
  border-color: rgba(0, 139, 99, 0.18);
}

.site-nav a {
  color: rgba(17, 19, 24, 0.82);
  font-weight: 850;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--brick-dark);
  background: rgba(255, 61, 113, 0.1);
}

.site-nav .nav-cta,
.button-primary {
  background: linear-gradient(135deg, var(--brick), #ff7b54);
  box-shadow: 0 14px 30px rgba(255, 61, 113, 0.22);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, var(--brick-dark), var(--green));
}

.language-switch {
  background: rgba(0, 139, 99, 0.08);
  border-color: rgba(0, 139, 99, 0.16);
}

.language-switch button.is-active,
.language-switch button:hover,
.language-switch button:focus-visible {
  color: var(--ink);
  background: var(--lime);
}

.hero {
  background:
    linear-gradient(135deg, var(--ink), var(--green-dark)),
    var(--ink);
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(17, 19, 24, 0.96) 0%, rgba(18, 55, 46, 0.8) 45%, rgba(0, 184, 255, 0.26) 72%, rgba(255, 61, 113, 0.34) 100%),
    linear-gradient(0deg, rgba(17, 19, 24, 0.9) 0%, rgba(17, 19, 24, 0.12) 56%);
}

.motion-canvas::before {
  opacity: 0.28;
  background:
    linear-gradient(90deg, rgba(0, 184, 255, 0.16) 1px, transparent 1px),
    linear-gradient(180deg, rgba(199, 255, 94, 0.12) 1px, transparent 1px);
  background-size: 76px 76px;
}

.flow-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 184, 255, 0.76), rgba(199, 255, 94, 0.7), transparent);
}

.flow-node {
  border-color: rgba(0, 184, 255, 0.36);
  background:
    linear-gradient(90deg, transparent 49%, rgba(199, 255, 94, 0.28) 50%, transparent 51%),
    linear-gradient(180deg, transparent 49%, rgba(0, 184, 255, 0.28) 50%, transparent 51%),
    rgba(255, 255, 251, 0.07);
  box-shadow: 0 18px 42px rgba(0, 184, 255, 0.12);
}

.flow-panel {
  border-color: rgba(199, 255, 94, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 251, 0.15), rgba(255, 255, 251, 0.05)),
    linear-gradient(90deg, rgba(0, 184, 255, 0.18), rgba(255, 61, 113, 0.16), rgba(199, 255, 94, 0.12));
}

.hero h1 {
  font-size: 5.15rem;
  font-weight: 760;
}

.page-hero h1,
.section-title {
  font-weight: 760;
}

.page-hero h1 {
  font-size: 4.05rem;
}

.section-title {
  font-size: 3.1rem;
}

.eyebrow,
.section-kicker {
  color: var(--green);
  font-weight: 900;
}

.hero .eyebrow,
.page-hero .eyebrow,
.contact .section-kicker,
.footer-column h3 {
  color: var(--lime);
}

.button {
  border-radius: 8px;
  font-weight: 900;
}

.button-secondary {
  background: rgba(255, 255, 251, 0.14);
  border-color: rgba(255, 255, 251, 0.32);
}

.button-outline {
  background: rgba(255, 255, 251, 0.74);
  border-color: rgba(0, 139, 99, 0.22);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--surface);
  background: var(--ink);
  border-color: var(--ink);
}

.project-finder,
.availability-panel {
  background: rgba(255, 255, 251, 0.13);
  border-color: rgba(0, 184, 255, 0.26);
  box-shadow: 0 24px 64px rgba(17, 19, 24, 0.22);
}

.finder-options button {
  border-color: rgba(255, 255, 251, 0.18);
}

.finder-options button:hover,
.finder-options button:focus-visible,
.finder-options button.is-active {
  color: var(--ink);
  background: var(--lime);
}

.signal-ribbon {
  background:
    linear-gradient(90deg, var(--ink), var(--green-dark) 55%, #2b1433),
    var(--ink);
}

.signal-track span {
  background:
    linear-gradient(90deg, rgba(0, 184, 255, 0.12), transparent 42%),
    linear-gradient(180deg, transparent 48%, rgba(255, 61, 113, 0.48) 49%, transparent 51%);
}

.signal-track span::after {
  background: rgba(199, 255, 94, 0.78);
}

.section-band {
  background:
    linear-gradient(90deg, rgba(0, 184, 255, 0.08), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 251, 0.86), rgba(243, 248, 240, 0.92));
}

.mini-card,
.project-card,
.standard-item,
.process-step,
.path-step,
.location-tile,
.chairman-card,
.inquiry-form {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 251, 0.98), rgba(248, 255, 247, 0.94));
  border-color: rgba(17, 19, 24, 0.08);
  box-shadow: var(--shadow);
}

.mini-card::before,
.project-card::before,
.standard-item::before,
.process-step::before,
.path-step::before,
.location-tile::before,
.chairman-card::before,
.inquiry-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--aqua), var(--brick), var(--lime));
  opacity: 0.86;
}

.mini-card:hover,
.standard-item:hover,
.path-step:hover,
.process-step:hover,
.location-tile:hover,
.project-card:hover,
.chairman-card:hover,
.inquiry-form:hover {
  border-color: rgba(255, 61, 113, 0.24);
  box-shadow: var(--shadow-pop);
}

.project-image {
  background:
    linear-gradient(135deg, rgba(0, 184, 255, 0.1), rgba(255, 61, 113, 0.08)),
    var(--sky);
}

.project-meta span {
  color: var(--green-dark);
  background: rgba(0, 139, 99, 0.1);
  border: 1px solid rgba(0, 139, 99, 0.1);
}

.project-meta .status-ready {
  color: var(--surface);
  background: var(--green);
  border-color: var(--green);
}

.project-meta .status-ongoing {
  color: var(--surface);
  background: var(--brick);
  border-color: var(--brick);
}

.project-meta .status-sold {
  color: var(--surface);
  background: var(--ink);
  border-color: var(--ink);
}

.project-actions a {
  background: var(--green);
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.project-actions a:last-child {
  color: var(--ink);
  background: rgba(199, 255, 94, 0.5);
}

.project-actions a:hover,
.project-actions a:focus-visible {
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-2px);
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.location-tile.is-large,
.contact,
.site-footer {
  background:
    linear-gradient(135deg, rgba(17, 19, 24, 0.98), rgba(18, 55, 46, 0.96) 54%, rgba(255, 61, 113, 0.82)),
    var(--ink);
}

.contact-lines a:hover,
.contact-lines a:focus-visible,
.footer-column a:hover,
.footer-column a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--lime);
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  background: #fbfff8;
  border-color: var(--line);
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(0, 184, 255, 0.18);
}

/* Logo color alignment */
:root {
  --ink: #17143d;
  --text: #2b2c48;
  --muted: #667085;
  --paper: #f5f6fb;
  --surface: #ffffff;
  --line: #e1e4f0;
  --brick: #d21b46;
  --brick-dark: #a81234;
  --green: #2d2a72;
  --green-dark: #1e1b58;
  --brass: #d21b46;
  --sky: #eef0f8;
  --aqua: #625ba6;
  --lime: #ffe2ea;
  --shadow: 0 18px 44px rgba(23, 20, 61, 0.1);
  --shadow-pop: 0 24px 58px rgba(23, 20, 61, 0.16);
}

body {
  background:
    linear-gradient(90deg, rgba(45, 42, 114, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(210, 27, 70, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 56px 56px, 56px 56px, auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(45, 42, 114, 0.1);
  box-shadow: 0 14px 38px rgba(23, 20, 61, 0.1);
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(210, 27, 70, 0.18);
}

.site-nav a {
  color: rgba(23, 20, 61, 0.82);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--brick-dark);
  background: rgba(210, 27, 70, 0.1);
}

.site-nav .nav-cta,
.button-primary {
  background: linear-gradient(135deg, var(--brick), #e0345b);
  box-shadow: 0 14px 30px rgba(210, 27, 70, 0.22);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, var(--brick-dark), var(--green));
}

.language-switch {
  background: rgba(45, 42, 114, 0.08);
  border-color: rgba(45, 42, 114, 0.16);
}

.language-switch button.is-active,
.language-switch button:hover,
.language-switch button:focus-visible {
  color: var(--surface);
  background: var(--green);
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(23, 20, 61, 0.96) 0%, rgba(30, 27, 88, 0.82) 45%, rgba(98, 91, 166, 0.32) 72%, rgba(210, 27, 70, 0.34) 100%),
    linear-gradient(0deg, rgba(23, 20, 61, 0.9) 0%, rgba(23, 20, 61, 0.12) 56%);
}

.motion-canvas::before {
  background:
    linear-gradient(90deg, rgba(255, 226, 234, 0.16) 1px, transparent 1px),
    linear-gradient(180deg, rgba(210, 27, 70, 0.12) 1px, transparent 1px);
}

.flow-line {
  background: linear-gradient(90deg, transparent, rgba(255, 226, 234, 0.76), rgba(210, 27, 70, 0.72), transparent);
}

.flow-node {
  border-color: rgba(255, 226, 234, 0.34);
  background:
    linear-gradient(90deg, transparent 49%, rgba(210, 27, 70, 0.26) 50%, transparent 51%),
    linear-gradient(180deg, transparent 49%, rgba(255, 226, 234, 0.26) 50%, transparent 51%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 42px rgba(210, 27, 70, 0.12);
}

.flow-panel {
  border-color: rgba(255, 226, 234, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05)),
    linear-gradient(90deg, rgba(98, 91, 166, 0.2), rgba(210, 27, 70, 0.16), rgba(255, 226, 234, 0.12));
}

.hero .eyebrow,
.page-hero .eyebrow,
.contact .section-kicker,
.footer-column h3 {
  color: var(--lime);
}

.button-outline {
  border-color: rgba(45, 42, 114, 0.22);
}

.project-finder,
.availability-panel {
  border-color: rgba(255, 226, 234, 0.26);
  box-shadow: 0 24px 64px rgba(23, 20, 61, 0.24);
}

.finder-options button:hover,
.finder-options button:focus-visible,
.finder-options button.is-active {
  color: var(--surface);
  background: var(--brick);
}

.signal-ribbon {
  background:
    linear-gradient(90deg, var(--ink), var(--green-dark) 58%, var(--brick-dark)),
    var(--ink);
}

.signal-track span {
  background:
    linear-gradient(90deg, rgba(255, 226, 234, 0.12), transparent 42%),
    linear-gradient(180deg, transparent 48%, rgba(210, 27, 70, 0.48) 49%, transparent 51%);
}

.signal-track span::after {
  background: rgba(255, 226, 234, 0.78);
}

.section-band {
  background:
    linear-gradient(90deg, rgba(45, 42, 114, 0.08), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 246, 251, 0.94));
}

.mini-card,
.project-card,
.standard-item,
.process-step,
.path-step,
.location-tile,
.chairman-card,
.inquiry-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 248, 253, 0.96));
  border-color: rgba(23, 20, 61, 0.08);
}

.mini-card:hover,
.standard-item:hover,
.path-step:hover,
.process-step:hover,
.location-tile:hover,
.project-card:hover,
.chairman-card:hover,
.inquiry-form:hover {
  border-color: rgba(210, 27, 70, 0.24);
}

.project-image {
  background:
    linear-gradient(135deg, rgba(45, 42, 114, 0.1), rgba(210, 27, 70, 0.08)),
    var(--sky);
}

.project-meta span {
  color: var(--green-dark);
  background: rgba(45, 42, 114, 0.1);
  border: 1px solid rgba(45, 42, 114, 0.1);
}

.project-actions a:last-child {
  color: var(--brick-dark);
  background: rgba(210, 27, 70, 0.1);
}

.project-actions a:hover,
.project-actions a:focus-visible {
  color: var(--surface);
  background: var(--brick);
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  color: var(--surface);
  background: var(--green);
  border-color: var(--green);
}

.location-tile.is-large,
.contact,
.site-footer {
  background:
    linear-gradient(135deg, rgba(23, 20, 61, 0.98), rgba(30, 27, 88, 0.96) 58%, rgba(210, 27, 70, 0.82)),
    var(--ink);
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  background: #fbfbff;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(210, 27, 70, 0.16);
}

/* Compact chairman profile */
.chairman-section {
  padding: 78px 0;
}

.chairman-layout {
  width: min(calc(100% - 40px), 1060px);
  grid-template-columns: minmax(270px, 0.42fr) minmax(0, 0.58fr);
  gap: 30px;
  align-items: stretch;
}

.chairman-portrait {
  width: 100%;
  max-width: none;
  min-height: 360px;
  aspect-ratio: 4 / 5;
  justify-self: start;
  box-shadow: 0 18px 44px rgba(23, 20, 61, 0.14);
}

.chairman-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(22px, 3vw, 34px);
}

.chairman-card .section-title {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
}

.managing-director-section {
  padding-top: 0;
}

.managing-director-layout {
  grid-template-columns: minmax(0, 0.58fr) minmax(270px, 0.42fr);
}

.managing-director-layout .chairman-portrait img {
  object-position: center 18%;
}

/* Softer branded balance */
:root {
  --brick: #c82449;
  --brick-dark: #961b38;
  --brass: #b73752;
  --lime: #f7e4ea;
}

.site-nav .nav-cta,
.button-primary {
  background: linear-gradient(135deg, var(--brick), #b72750);
  box-shadow: 0 14px 30px rgba(200, 36, 73, 0.18);
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(23, 20, 61, 0.96) 0%, rgba(30, 27, 88, 0.84) 48%, rgba(98, 91, 166, 0.34) 78%, rgba(200, 36, 73, 0.18) 100%),
    linear-gradient(0deg, rgba(23, 20, 61, 0.88) 0%, rgba(23, 20, 61, 0.1) 56%);
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(23, 20, 61, 0.96), rgba(45, 42, 114, 0.9) 62%, rgba(200, 36, 73, 0.34)),
    var(--ink);
}

.page-hero-media::after {
  background:
    linear-gradient(90deg, rgba(23, 20, 61, 0.94), rgba(30, 27, 88, 0.64) 56%, rgba(200, 36, 73, 0.14)),
    linear-gradient(0deg, rgba(23, 20, 61, 0.74), transparent 44%);
}

.signal-ribbon {
  background:
    linear-gradient(90deg, var(--ink), var(--green-dark) 62%, #3b2d72),
    var(--ink);
}

.signal-track span {
  background:
    linear-gradient(90deg, rgba(255, 226, 234, 0.1), transparent 42%),
    linear-gradient(180deg, transparent 48%, rgba(200, 36, 73, 0.28) 49%, transparent 51%);
}

.mini-card::before,
.project-card::before,
.standard-item::before,
.process-step::before,
.path-step::before,
.location-tile::before,
.chairman-card::before,
.inquiry-form::before {
  background: linear-gradient(90deg, var(--green), rgba(98, 91, 166, 0.82), rgba(200, 36, 73, 0.52), var(--lime));
}

.contact,
.site-footer {
  background:
    linear-gradient(135deg, rgba(23, 20, 61, 0.98), rgba(30, 27, 88, 0.96) 64%, rgba(200, 36, 73, 0.36)),
    var(--ink);
}

.location-tile.is-large {
  background:
    linear-gradient(135deg, rgba(23, 20, 61, 0.94), rgba(45, 42, 114, 0.9) 70%, rgba(200, 36, 73, 0.3)),
    var(--green-dark);
}

@media (max-width: 780px) {
  .chairman-layout {
    width: min(calc(100% - 28px), var(--max));
    grid-template-columns: minmax(210px, 0.42fr) minmax(0, 0.58fr);
    gap: 18px;
  }

  .chairman-portrait {
    min-height: 310px;
  }

  .chairman-card {
    padding: 22px;
  }

  .managing-director-layout {
    grid-template-columns: minmax(0, 0.58fr) minmax(210px, 0.42fr);
  }
}

@media (max-width: 620px) {
  .chairman-layout {
    grid-template-columns: 1fr;
  }

  .chairman-portrait {
    max-width: 320px;
    min-height: auto;
  }

  .managing-director-layout .chairman-portrait {
    order: -1;
  }
}

@media (max-width: 1100px) {
  .hero h1 {
    font-size: 4.25rem;
  }

  .page-hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 780px) {
  .hero h1 {
    font-size: 3.05rem;
  }

  .page-hero h1,
  .section-title {
    font-size: 2.45rem;
  }
}

@media (max-width: 460px) {
  .hero h1 {
    font-size: 2.45rem;
  }

  .page-hero h1,
  .section-title {
    font-size: 2.12rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 1ms;
    animation-duration: 1ms;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .page-hero-service .page-hero-media img {
    animation: none;
    transform: scale(1.05);
  }

  .service-progress span {
    display: none;
  }

  .service-panel,
  .service-panel-media img {
    transition: none;
  }

  .motion-canvas::before,
  .flow-line,
  .flow-node,
  .flow-panel,
  .signal-track {
    animation: none;
  }

  .hero-media img,
  .motion-canvas,
  .project-finder,
  [data-reveal].is-visible.project-card,
  [data-reveal].is-visible.mini-card,
  [data-reveal].is-visible.standard-item,
  [data-reveal].is-visible.process-step,
  [data-reveal].is-visible.path-step,
  [data-reveal].is-visible.location-tile,
  [data-reveal].is-visible.chairman-portrait,
  [data-reveal].is-visible.chairman-card,
  [data-reveal].is-visible.inquiry-form {
    transform: none;
  }
}
