:root {
  color-scheme: light;
  font-family: 'Inter', sans-serif;
  color: #1f2b2d;
  background: #f5f1e7;
  --bg: #f7f4ee;
  --bg-soft: #eef4f1;
  --surface: #ffffff;
  --surface-alt: #f0f5f2;
  --surface-strong: #edf3f1;
  --border: rgba(26, 69, 52, 0.12);
  --primary: #1a5d4c;
  --primary-dark: #0f3d35;
  --primary-soft: #dfeee8;
  --accent: #d79a34;
  --accent-soft: #f5e5bf;
  --heading: #6d4225;
  --heading-deep: #3b2416;
  --text: #1f2b2d;
  --text-muted: #53666d;
  --shadow: rgba(18, 36, 31, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(215, 154, 52, 0.12), transparent 28%),
    linear-gradient(180deg, #f6f4ee 0%, #f2f6f4 100%);
  color: var(--text-muted);
}

img {
  max-width: 100%;
  display: block;
}

.page-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 24px 36px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--heading-deep);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(26, 93, 76, 0.12);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a,
.footer-links a {
  position: relative;
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.footer-links a:hover::after,
.site-nav a:hover,
.footer-links a:hover {
  color: var(--primary);
}

.site-nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
}

.hero-section {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
  padding: 70px 0 40px;
}

.hero-small {
  padding-top: 48px;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(26, 93, 76, 0.12), rgba(215, 154, 52, 0.15));
  border: 1px solid rgba(26, 93, 76, 0.14);
  color: var(--primary);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--heading);
}

.hero-copy p {
  color: var(--text-muted);
  max-width: 620px;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(26, 93, 76, 0.18);
}

.btn-outline {
  background: #ffffff;
  border-color: rgba(26, 93, 76, 0.18);
  color: var(--primary-dark);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  position: relative;
  color: var(--primary-dark);
  padding-left: 18px;
  font-weight: 600;
}

.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

.hero-visual {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 28px 64px rgba(18, 35, 31, 0.12);
}

.showcase-card {
  position: relative;
  width: min(430px, 100%);
  min-height: 460px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(239,243,240,0.9));
  border: 1px solid rgba(26, 93, 76, 0.08);
  box-shadow: 0 24px 70px rgba(20, 42, 33, 0.09);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.25s ease;
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(26, 93, 76, 0.14);
  transform: translateZ(25px);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 26px 0;
  color: var(--primary-dark);
  font-weight: 600;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  box-shadow: 0 0 18px rgba(26, 93, 76, 0.35);
}

.office-visual {
  position: relative;
  height: 280px;
  margin: 20px 18px 0;
  border-radius: 28px;
  overflow: hidden;
  transform: translateZ(48px);
  background: linear-gradient(135deg, rgba(31, 86, 67, 0.12), rgba(215, 154, 52, 0.14));
}

.office-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
  filter: saturate(0.9) contrast(1.1);
}

.building-glow {
  position: absolute;
  inset: 6% 12% 12%;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(26, 93, 76, 0.12), rgba(215, 154, 52, 0.1));
  filter: blur(18px);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 20px 26px 28px;
  transform: translateZ(56px);
}

.info-strip div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(26, 93, 76, 0.08);
}

.info-strip small {
  display: block;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.info-strip strong {
  color: var(--primary-dark);
  font-size: 1.05rem;
}

.stats-grid,
.info-grid,
.card-grid,
.suggestion-grid {
  display: grid;
  gap: 24px;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  margin: 20px 0 30px;
}

.stats-grid article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 160px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(240,245,242,0.9));
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(18, 36, 31, 0.05);
  padding: 28px 22px;
}

.stats-grid strong {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--primary-dark);
  line-height: 1.1;
}

.stats-grid span {
  color: var(--text-muted);
  margin-top: 8px;
}

.info-grid {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  margin: 16px 0 52px;
}

.info-grid article,
.feature-card,
.contact-card,
.form-card,
.address-card,
.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(18, 36, 31, 0.05);
}

.info-grid h2,
.feature-card h3,
.address-card h3,
.contact-card h3,
.project-card h3 {
  margin: 0 0 12px;
  color: var(--heading);
}

.info-grid p,
.feature-card p,
.address-card p,
.contact-card p,
.project-card p {
  color: var(--text-muted);
}

.services-section,
.form-section,
.projects-section {
  padding-top: 18px;
}

.section-header {
  margin-bottom: 26px;
}

.section-header span {
  display: inline-block;
  padding: 8px 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(26, 93, 76, 0.12), rgba(215, 154, 52, 0.16));
  border: 1px solid rgba(26, 93, 76, 0.14);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 0.72rem;
}

.section-header h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.card-grid {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 93, 76, 0.03), transparent 55%);
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(26, 93, 76, 0.08), rgba(215, 154, 52, 0.12));
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.showcase-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  margin-top: 52px;
  align-items: center;
}

.showcase-copy {
  padding: 16px 0;
}

.showcase-copy h2 {
  color: var(--heading);
  font-size: clamp(2rem, 3vw, 2.9rem);
  margin: 14px 0 18px;
  line-height: 1.08;
}

.showcase-copy p,
.showcase-copy li {
  color: var(--text-muted);
}

.showcase-copy ul {
  margin: 20px 0 0;
  padding-left: 22px;
  display: grid;
  gap: 10px;
}

.address-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(240,245,242,0.98));
}

.mini-detail {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(26, 93, 76, 0.08);
}

.mini-detail span {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.mini-detail strong {
  color: var(--primary-dark);
  font-size: 0.98rem;
}

label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--primary-dark);
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(26, 93, 76, 0.12);
  background: rgba(255,255,255,0.8);
  color: var(--text);
  outline: none;
  font: inherit;
  margin-bottom: 18px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(83, 102, 109, 0.75);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(26, 93, 76, 0.4);
  box-shadow: 0 0 0 4px rgba(26, 93, 76, 0.08);
}

.form-card {
  max-width: 740px;
}

.contact-card {
  margin-top: 28px;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}

.contact-card li {
  color: var(--text-muted);
}

.form-status {
  min-height: 20px;
  margin-top: 10px;
  color: var(--primary);
}

.project-card {
  overflow: hidden;
  padding: 0;
}

.project-image {
  width: 100%;
  height: 230px;
  background-size: cover;
  background-position: center;
}

.project-card .project-body {
  padding: 24px 24px 28px;
}

.project-card .meta {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 24px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 24px;
}

.story-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(18, 36, 31, 0.05);
}

.story-card h3 {
  color: var(--primary-dark);
  margin-top: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 26px;
  margin-top: 46px;
  border-top: 1px solid rgba(26, 93, 76, 0.08);
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 18px;
}

@media (max-width: 960px) {
  .hero-section,
  .showcase-panel {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .info-grid,
  .card-grid,
  .suggestion-grid,
  .project-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .page-shell {
    padding: 20px 18px 32px;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .site-nav,
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }
}

.office-visual {
  position: relative;
  height: 280px;
  margin: 20px 18px 0;
  border-radius: 28px;
  background: radial-gradient(circle at center, rgba(90, 200, 255, 0.18), rgba(7, 17, 31, 0.6) 40%, rgba(7, 17, 31, 0.9));
  overflow: hidden;
  transform: translateZ(48px);
}

.building-glow {
  position: absolute;
  inset: 6% 12% 12%;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(125, 143, 255, 0.18), rgba(140, 232, 209, 0.08));
  filter: blur(18px);
}

.building-block {
  position: absolute;
  bottom: 16%;
  width: 24%;
  border-radius: 18px 18px 12px 12px;
  background: linear-gradient(180deg, rgba(154, 184, 255, 0.7), rgba(20, 38, 62, 0.96));
  box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.08), 0 20px 35px rgba(0, 0, 0, 0.28);
}

.block-a {
  left: 18%;
  height: 48%;
}

.block-b {
  left: 38%;
  height: 62%;
  background: linear-gradient(180deg, rgba(112, 238, 218, 0.78), rgba(20, 38, 62, 0.96));
}

.block-c {
  left: 58%;
  height: 52%;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 20px 26px 28px;
  transform: translateZ(56px);
}

.info-strip div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.info-strip small {
  display: block;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.info-strip strong {
  color: #fff;
  font-size: 1.05rem;
}

.stats-grid,
.info-grid,
.card-grid,
.suggestion-grid {
  display: grid;
  gap: 24px;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  margin: 20px 0 30px;
}

.stats-grid article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 160px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(17, 31, 50, 0.92), rgba(9, 18, 31, 0.92));
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(7, 14, 25, 0.32);
  padding: 28px 22px;
}

.stats-grid strong {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: #fff;
  line-height: 1.1;
}

.stats-grid span {
  color: var(--text-muted);
  margin-top: 8px;
}

.info-grid {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  margin: 16px 0 52px;
}

.info-grid article,
.feature-card,
.contact-card,
.form-card,
.address-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 28px 80px rgba(5, 8, 22, 0.28);
}

.info-grid h2,
.feature-card h3,
.address-card h3,
.contact-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
}

.info-grid p,
.feature-card p,
.address-card p,
.contact-card p {
  color: var(--text-muted);
}

.services-section,
.form-section {
  padding-top: 18px;
}

.section-header {
  margin-bottom: 26px;
}

.section-header span {
  display: inline-block;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.75rem;
  margin-bottom: 12px;
}

.section-header h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.card-grid {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(92, 200, 255, 0.08), transparent 55%);
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(217, 195, 162, 0.18), rgba(179, 138, 90, 0.16));
  color: var(--accent-warm);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.showcase-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  margin-top: 52px;
  align-items: center;
}

.showcase-copy {
  padding: 16px 0;
}

.showcase-copy h2 {
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.9rem);
  margin: 14px 0 18px;
  line-height: 1.08;
}

.showcase-copy p,
.showcase-copy li {
  color: var(--text-muted);
}

.showcase-copy ul {
  margin: 20px 0 0;
  padding-left: 22px;
  display: grid;
  gap: 10px;
}

.address-card {
  background: linear-gradient(180deg, rgba(17, 31, 50, 0.94), rgba(10, 18, 31, 1));
}

.mini-detail {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-detail span {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.mini-detail strong {
  color: #fff;
  font-size: 0.98rem;
}

label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #edf5ff;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #f4f7ff;
  outline: none;
  font: inherit;
  margin-bottom: 18px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(223, 234, 255, 0.52);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(217, 195, 162, 0.72);
  box-shadow: 0 0 0 4px rgba(217, 195, 162, 0.1);
}

.form-card {
  max-width: 740px;
}

.contact-card {
  margin-top: 28px;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}

.contact-card li {
  color: var(--text-muted);
}

.form-status {
  min-height: 20px;
  margin-top: 10px;
  color: #b9f1ff;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 26px;
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #afc2ea;
}

.footer-links {
  display: flex;
  gap: 18px;
}

@media (max-width: 960px) {
  .hero-section,
  .showcase-panel {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .info-grid,
  .card-grid,
  .suggestion-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .page-shell {
    padding: 20px 18px 32px;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .site-nav,
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }
}
