@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Josefin+Sans:wght@400;500;600;700&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --color-primary: #0f766e;
  --color-primary-strong: #0c5f59;
  --color-cta: #0369a1;
  --color-text: #134e4a;
  --color-text-muted: #2f5f57;
  --color-bg: #f0fdfa;
  --color-surface: #ffffff;
  --color-border: rgba(12, 28, 20, 0.1);
  --focus-ring: 0 0 0 4px rgba(3, 105, 161, 0.24);
}

html,
body {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  font-family: "Cinzel", "Noto Serif TC", serif;
  letter-spacing: 0.02em;
}

body {
  font-family: "Josefin Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Noto Sans TC", sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
}

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

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 247, 245, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(16, 34, 24, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.logo-mark {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 14px;
}

.logo-text {
  font-size: 14px;
  color: #304838;
}

.site-nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.site-nav a {
  position: relative;
  padding: 4px 0;
}

.site-nav a[aria-current="page"] {
  color: var(--color-primary-strong);
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.2s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--color-text);
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(
      to bottom right,
      rgba(8, 44, 30, 0.6),
      rgba(20, 90, 62, 0.4)
    ),
    url("../images/home/hero.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(255, 255, 255, 0.16),
    transparent 60%
  );
}

.hero-content {
  position: relative;
  padding: 80px 16px 88px;
  max-width: 720px;
}

.hero--slim {
  min-height: 58vh;
}

.hero--slim .hero-content {
  padding: 72px 16px 64px;
}

.hero--slim .hero-subtitle {
  margin-bottom: 20px;
}

.hero-kicker {
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.9;
}

.hero h1 {
  font-size: clamp(28px, 3.1vw, 40px);
  line-height: 1.25;
  margin: 0 0 14px;
}

.hero-subtitle {
  font-size: 15px;
  max-width: 42rem;
  margin: 0 0 24px;
  line-height: 1.75;
}

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

.hero-mission {
  display: inline-block;
  max-width: 28rem;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(15, 118, 110, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.hero-mission-label {
  margin: 0 0 4px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.88;
}

.hero-mission-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.section-portal {
  padding: 0 0 56px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}

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

.portal-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16 / 10;
  box-shadow: 0 16px 40px rgba(12, 28, 20, 0.14);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.portal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.88);
  transition: transform 0.25s ease;
}

.portal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 28, 20, 0.72), rgba(12, 28, 20, 0.08));
}

.portal-card-label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.portal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(12, 28, 20, 0.18);
}

.portal-card:hover img {
  transform: scale(1.03);
}

.section-portal--compact {
  padding: 28px 0 36px;
  margin-top: 0;
  background: #f0fdfa;
}

.portal-quick-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.portal-quick-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.portal-quick-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(12, 28, 20, 0.08);
  border-color: rgba(15, 118, 110, 0.28);
}

.portal-quick-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--color-primary);
  flex-shrink: 0;
}

.portal-quick-icon svg {
  width: 20px;
  height: 20px;
}

.section-about-band {
  padding: 44px 0;
  background: linear-gradient(135deg, var(--color-primary-strong), var(--color-primary));
  color: #ffffff;
}

.about-band-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: center;
}

.about-band-text h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.about-band-text p {
  margin: 0 0 14px;
  max-width: 42rem;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.text-link-light {
  color: #ffffff;
}

.text-link-light:hover {
  color: rgba(255, 255, 255, 0.85);
}

.badge-list-light li {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.section-dual-feed {
  background: #ffffff;
}

.section-dual-feed--compact {
  padding-top: 48px;
  padding-bottom: 48px;
}

.section-dual-feed--compact .feed-panel-body {
  padding: 4px 18px 12px;
}

.section-dual-feed--compact .feed-item {
  padding: 10px 0;
}

.section-news-preview {
  background: #ffffff;
}

.feed-panel--solo {
  max-width: 42rem;
  margin: 0 auto;
}

.sector-showcase {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.sector-showcase-header h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.sector-showcase .project-item {
  max-width: 40rem;
}

.sector-showcase--page .sector-showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.sector-showcase--page .sector-showcase-header h2 {
  margin: 0;
  font-size: 22px;
}

.business-intro h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.business-intro p {
  margin: 0 0 14px;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.business-intro-list {
  margin: 0;
}

.business-summary {
  display: grid;
  gap: 18px;
  max-width: 42rem;
}

.audience-grid,
.land-dev-types,
.coop-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.land-dev-types {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.audience-card h3,
.type-card h3,
.coop-card h3 {
  margin-top: 0;
  font-size: 17px;
}

.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.process-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 16px;
}

.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--color-primary-strong);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.process-step h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.process-step p {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.projects-list--featured {
  grid-template-columns: minmax(0, 1fr);
  max-width: 40rem;
}

.section-sectors {
  padding-top: 56px;
  background: linear-gradient(180deg, #f8faf9 0%, #eef6f3 100%);
  border-bottom: 1px solid var(--color-border);
}

.section-sectors .section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 28px;
}

.section-sectors .section-header h2 {
  font-size: clamp(24px, 2.4vw, 30px);
}

.section-sectors .sector-card {
  border-color: rgba(15, 118, 110, 0.14);
  box-shadow: 0 14px 36px rgba(12, 28, 20, 0.09);
}

.dual-feed-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.feed-panel {
  border: 1px solid var(--color-border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: 0 10px 30px rgba(12, 24, 18, 0.06);
}

.feed-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: var(--color-primary);
  color: #ffffff;
}

.feed-panel-header h2 {
  margin: 0;
  font-size: 18px;
}

.feed-panel-more {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.15s ease;
}

.feed-panel-more:hover {
  color: #ffffff;
  text-decoration: underline;
}

.feed-panel-body {
  padding: 8px 18px 16px;
}

.feed-item {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(16, 34, 24, 0.08);
}

.feed-item:last-child {
  border-bottom: none;
}

.feed-item time {
  font-size: 12px;
  color: #6c8072;
}

.feed-item-title {
  font-size: 14px;
  color: var(--color-primary-strong);
  line-height: 1.45;
  transition: color 0.15s ease;
}

.feed-item-title:hover {
  color: var(--color-cta);
  text-decoration: underline;
}

.feed-item-project p {
  margin: 0;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.section-service-icons {
  background: linear-gradient(180deg, #f0fdfa 0%, #e6f4f1 100%);
}

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

.service-icon-item {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
  padding: 22px 14px;
  border-radius: 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.service-icon-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(12, 28, 20, 0.1);
  border-color: rgba(15, 118, 110, 0.28);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--color-primary);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-icon-item strong {
  font-size: 15px;
  color: var(--color-text);
}

.service-icon-item span {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease,
    border-color 0.15s ease, transform 0.08s ease;
}

.btn.primary {
  background: #ffffff;
  color: var(--color-primary-strong);
  border-color: transparent;
}

.btn.primary:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

.btn.ghost {
  border-color: rgba(245, 247, 245, 0.6);
  color: #ffffff;
  background: transparent;
}

.btn.ghost:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.btn.outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.btn.outline:hover {
  background: rgba(28, 107, 74, 0.06);
}

.btn.small {
  padding: 8px 14px;
  font-size: 13px;
}

.section {
  padding: 72px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6c8072;
  margin-bottom: 8px;
}

.section-header h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.section-header p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
}

.grid {
  display: grid;
  gap: 20px;
}

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

.sectors-grid--duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 56rem;
  margin: 0 auto;
}

.card {
  border-radius: 18px;
  background: var(--color-surface);
  padding: 20px 18px;
  box-shadow: 0 10px 30px rgba(12, 24, 18, 0.07);
  border: 1px solid var(--color-border);
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    border-color 0.12s ease, background-color 0.12s ease;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 18px;
}

.card p {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-muted);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(12, 28, 20, 0.12);
  border-color: rgba(28, 107, 74, 0.2);
}

.sector-card h3 {
  font-size: 17px;
}

.sector-card-media {
  position: relative;
  width: calc(100% + 36px);
  margin: -20px -18px 14px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: #dbe5df;
}

.sector-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05) brightness(0.92);
}

.sector-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 43, 31, 0.08),
    rgba(11, 43, 31, 0.28)
  );
  pointer-events: none;
}

.section-products {
  background: linear-gradient(
    180deg,
    #f5f7f5 0%,
    #e4ece6 45%,
    #f5f7f5 100%
  );
}

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

.section-about-preview {
  background: #ffffff;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.4fr);
  gap: 36px;
  align-items: center;
}

.about-text h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.about-text p {
  margin-top: 0;
  margin-bottom: 10px;
  color: #4a5b50;
  font-size: 14px;
}

.badge-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge-list li {
  padding: 6px 12px;
  border-radius: 999px;
  background: #f0f4f1;
  font-size: 13px;
  color: #304838;
}

.section-projects-preview {
  background: #f5f7f5;
}

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

.project-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  height: 100%;
}

.project-tag {
  position: static;
  display: inline-flex;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 999px;
  background: #e3f0e9;
  color: #245d3f;
}

.project-card h3 {
  margin: 0;
  line-height: 1.35;
}

.section-footer {
  margin-top: 28px;
  text-align: center;
}

.section-news {
  background: #ffffff;
}

.news-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.news-item {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 4px;
  border-bottom: 1px solid rgba(16, 34, 24, 0.08);
  font-size: 14px;
}

.news-item time {
  min-width: 92px;
  color: #6c8072;
}

.news-title {
  color: #1c4b34;
}

.news-title:hover {
  text-decoration: underline;
}

.section-links {
  background: #0f2419;
  color: #f5f7f5;
}

.links-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.3fr);
  gap: 32px;
  align-items: center;
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  font-size: 14px;
}

.link-list li + li {
  margin-top: 6px;
}

.link-list a {
  color: #c6e2d1;
}

.link-list a:hover {
  color: #ffffff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--color-cta);
}

.text-link:hover {
  text-decoration: underline;
}

.site-footer {
  background: #060e09;
  color: #91a296;
  padding: 40px 0 0;
  font-size: 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(145, 162, 150, 0.18);
}

.footer-brand {
  max-width: 18rem;
}

.footer-company {
  margin: 0 0 8px;
  color: #e5efe8;
  font-size: 14px;
}

.footer-tagline {
  margin: 0;
  line-height: 1.6;
  color: #91a296;
}

.footer-heading {
  margin: 0 0 10px;
  color: #e5efe8;
  font-size: 13px;
  font-weight: 600;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li + li {
  margin-top: 6px;
}

.footer-list a,
.footer-contact a:not(.btn) {
  color: #c6e2d1;
}

.footer-list a:hover,
.footer-contact a:not(.btn):hover {
  color: #ffffff;
}

.footer-contact p {
  margin: 0 0 6px;
  line-height: 1.55;
}

.footer-cta {
  margin-top: 12px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 16px 0 24px;
}

.footer-bottom p {
  margin: 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-info p {
  margin: 0 0 2px;
}

.footer-link {
  color: #c6e2d1;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-link:hover {
  color: #ffffff;
}

.page-hero {
  padding: 56px 0 44px;
  background: linear-gradient(135deg, #0f2419, #184c36);
  color: #ffffff;
}

.page-hero-inner h1 {
  margin: 0 0 10px;
  font-size: clamp(26px, 2.8vw, 36px);
}

.page-hero-subtitle {
  margin: 0;
  max-width: 54rem;
  color: rgba(245, 247, 245, 0.88);
  font-size: 14px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.content-main h2 {
  margin: 18px 0 8px;
  font-size: 20px;
}

.content-main p {
  margin: 0 0 12px;
  color: #4a5b50;
  font-size: 14px;
}

.bullet {
  margin: 0;
  padding-left: 18px;
  color: #4a5b50;
  font-size: 14px;
}

.bullet li + li {
  margin-top: 6px;
}

.info-card h2,
.info-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.kv {
  margin: 0 0 14px;
}

.kv > div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(16, 34, 24, 0.08);
}

.kv dt {
  font-size: 12px;
  color: #6c8072;
}

.kv dd {
  margin: 0;
  font-size: 13px;
  color: #304838;
}

.section-header.align-left {
  text-align: left;
  margin-bottom: 22px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.section-alt {
  background: #ffffff;
}

.cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 20px;
  border-radius: 18px;
  background: #0f2419;
  color: #f5f7f5;
}

.cta-card h2 {
  margin: 0 0 4px;
  font-size: 18px;
}

.cta-card p {
  margin: 0;
  font-size: 13px;
  color: rgba(245, 247, 245, 0.86);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 22px;
}

.chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(16, 34, 24, 0.14);
  background: #ffffff;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.12s ease, border-color 0.12s ease,
    transform 0.08s ease;
}

.chip:hover {
  transform: translateY(-1px);
  border-color: rgba(28, 107, 74, 0.28);
}

.chip.is-active {
  background: #184c36;
  color: #ffffff;
  border-color: transparent;
}

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

.project-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-item-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.project-item .project-tag {
  position: static;
  display: inline-flex;
  margin: 0;
}

.project-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.project-meta {
  margin: 0;
  font-size: 13px;
  color: #6c8072;
}

.project-desc {
  margin: 12px 0 0;
  color: #4a5b50;
  font-size: 14px;
  flex-grow: 1;
}

.project-detail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.project-detail > div {
  border-radius: 14px;
  background: #f0f4f1;
  padding: 10px 10px;
  display: grid;
  gap: 2px;
}

.project-detail span {
  font-size: 11px;
  color: #6c8072;
}

.project-detail strong {
  font-size: 12px;
  color: #304838;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr);
  gap: 22px;
  align-items: start;
}

.news-aside {
  position: sticky;
  top: 80px;
}

.aside-title {
  margin: 0 0 10px;
  font-size: 16px;
}

.news-nav {
  display: grid;
  gap: 10px;
}

.news-nav-item {
  display: grid;
  gap: 2px;
  padding: 12px 12px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(12, 28, 20, 0.06);
  box-shadow: 0 10px 30px rgba(12, 24, 18, 0.06);
}

.news-nav-date {
  font-size: 12px;
  color: #6c8072;
}

.news-nav-title {
  font-size: 13px;
  color: #1c4b34;
}

.post {
  padding: 22px 20px;
}

.post-head h2 {
  margin: 0 0 6px;
  font-size: 18px;
}

.post-meta {
  margin: 0;
  font-size: 12px;
  color: #6c8072;
}

.post-body p {
  margin: 0 0 12px;
  color: #4a5b50;
  font-size: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.contact-form-card h2 {
  margin: 0 0 6px;
}

.muted {
  color: #6c8072;
  font-size: 13px;
  margin: 0 0 12px;
}

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

.field {
  display: grid;
  gap: 6px;
}

.field span {
  font-size: 12px;
  color: var(--color-text-muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(16, 34, 24, 0.14);
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  background: #ffffff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(3, 105, 161, 0.58);
  box-shadow: var(--focus-ring);
}

.field-full {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  align-items: center;
}

.form-hint {
  margin-top: 12px;
}

.form-toast {
  display: none;
  margin-top: 12px;
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 13px;
}

.form-toast.is-success {
  display: block;
  background: rgba(28, 107, 74, 0.12);
  border: 1px solid rgba(28, 107, 74, 0.22);
  color: #1c6b4a;
}

.form-toast.is-error {
  display: block;
  background: rgba(176, 35, 35, 0.08);
  border: 1px solid rgba(176, 35, 35, 0.22);
  color: #8f1f1f;
}

.form-toast.is-info {
  display: block;
  background: rgba(16, 34, 24, 0.06);
  border: 1px solid rgba(16, 34, 24, 0.12);
  color: #304838;
}

.map-placeholder {
  border-radius: 16px;
  border: 1px dashed rgba(245, 247, 245, 0.35);
  background: rgba(245, 247, 245, 0.08);
  padding: 16px 14px;
  text-align: center;
}

.map-embed {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(12, 28, 20, 0.1);
  background: #dbe7e2;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.map-link {
  margin: 10px 0 0;
}

.form-config {
  margin: 12px 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(16, 34, 24, 0.12);
  background: rgba(16, 34, 24, 0.03);
  padding: 10px 12px;
}

.form-config summary {
  cursor: pointer;
  font-size: 13px;
  color: var(--color-text);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 10px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.form-config-body {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .portal-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .portal-quick-bar {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }

  .about-band-layout,
  .dual-feed-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .sectors-grid--duo {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

  .about-layout,
  .links-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .content-grid,
  .news-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .land-dev-types {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .news-aside {
    position: static;
  }
}

@media (max-width: 720px) {
  .header-inner {
    height: 56px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    inset: 56px 0 auto;
    background: rgba(245, 247, 245, 0.98);
    padding: 12px 16px 16px;
    flex-direction: column;
    gap: 10px;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.12s ease-out, opacity 0.12s ease-out;
  }

  .site-nav.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: 64vh;
  }

  .hero--slim {
    min-height: 56vh;
  }

  .hero-content {
    padding-top: 64px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sectors-grid,
  .service-icons-grid,
  .products-grid,
  .projects-grid,
  .feature-grid,
  .service-grid,
  .projects-list,
  .land-dev-types,
  .audience-grid,
  .coop-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 56px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .split-feature,
  .process-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .process-layout-media {
    position: static;
  }

  .project-showcase {
    grid-template-columns: minmax(0, 1fr);
  }

  .coop-visual-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .image-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .compare-duo-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Land development page visuals */
.page-hero--cover {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  background-image: linear-gradient(
      to top,
      rgba(8, 44, 30, 0.82),
      rgba(20, 90, 62, 0.45)
    ),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 0 0 48px;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12), transparent 55%);
  pointer-events: none;
}

.page-hero--cover .page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero--cover .page-hero-subtitle {
  color: rgba(245, 247, 245, 0.92);
  max-width: 40rem;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.split-feature-media {
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
  background: #dbe5df;
}

.split-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04) brightness(0.94);
}

.split-feature-body {
  padding: 24px 22px;
}

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

.image-card {
  padding: 0;
  overflow: hidden;
}

.image-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dbe5df;
}

.image-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.92);
  transition: transform 0.25s ease;
}

.image-card:hover .image-card-media img {
  transform: scale(1.03);
}

.image-card-body {
  padding: 18px 18px 20px;
}

.image-card-body h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.image-card-body p {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.section-banner {
  position: relative;
  margin-bottom: 22px;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 21 / 7;
  min-height: 160px;
  background: #dbe5df;
}

.section-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) brightness(0.82);
}

.section-banner-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(8, 44, 30, 0.78), transparent);
}

.section-banner-caption p {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  max-width: 28rem;
}

.type-card--visual {
  padding: 0;
  overflow: hidden;
}

.type-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dbe5df;
}

.type-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.9);
  transition: transform 0.25s ease;
}

.type-card--visual:hover .type-card-media img {
  transform: scale(1.03);
}

.type-card-body {
  padding: 16px 18px 18px;
}

.type-card-body h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.type-card-body p {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-muted);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.4fr);
  gap: 28px;
  align-items: start;
}

.process-layout-media {
  position: sticky;
  top: 88px;
  border-radius: 18px;
  overflow: hidden;
  background: #dbe5df;
}

.process-layout-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) brightness(0.9);
}

.process-layout-caption {
  margin: 0;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-muted);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.coop-visual-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.coop-visual-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 18px;
  min-height: 220px;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(12, 24, 18, 0.07);
}

.coop-visual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.72);
  transition: transform 0.25s ease;
}

.coop-visual-card:hover img {
  transform: scale(1.04);
}

.coop-visual-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 18px;
  background: linear-gradient(to top, rgba(8, 44, 30, 0.88), rgba(8, 44, 30, 0.2));
  color: #ffffff;
}

.coop-visual-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.coop-visual-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(245, 247, 245, 0.9);
}

.project-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.project-showcase-media {
  min-height: 260px;
  background: #dbe5df;
}

.project-showcase-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.92);
}

.project-showcase-body {
  padding: 22px 20px;
}

.cta-card--visual {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 220px;
  padding: 0;
  background-image: linear-gradient(
      to right,
      rgba(8, 44, 30, 0.92),
      rgba(15, 36, 25, 0.78)
    ),
    var(--cta-image);
  background-size: cover;
  background-position: center;
}

.cta-card-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 50%, rgba(255, 255, 255, 0.08), transparent 50%);
  pointer-events: none;
}

.cta-card-content {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
  display: grid;
  gap: 12px;
  max-width: 28rem;
  color: #f5f7f5;
}

.cta-card--visual .btn.primary {
  justify-self: start;
}

@media (max-width: 900px) {
  .split-feature {
    grid-template-columns: minmax(0, 1fr);
  }

  .split-feature-media {
    min-height: 220px;
  }

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

  .compare-duo-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .process-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .project-showcase {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-banner {
    aspect-ratio: 16 / 9;
  }
}

.compare-duo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.compare-card {
  padding: 0;
  overflow: hidden;
}

.compare-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dbe5df;
}

.compare-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.9);
}

.compare-card-body {
  padding: 18px 18px 20px;
}

.compare-card-body h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.compare-card-body p {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}
