:root {
  --hci-bg: #f6f3ef;
  --hci-surface: #ffffff;
  --hci-surface-soft: #efebe4;
  --hci-text: #171412;
  --hci-muted: #625a54;
  --hci-border: rgba(23, 20, 18, 0.12);
  --hci-dark: #171412;
  --hci-accent: #a48862;
  --hci-shadow: 0 20px 60px rgba(23, 20, 18, 0.08);
  --hci-radius: 28px;
  --hci-container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--hci-text);
  background: var(--hci-bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }

.hci-container {
  width: min(calc(100% - 40px), var(--hci-container));
  margin: 0 auto;
}

.hci-hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.hci-topbar {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hci-brand img {
  width: 290px;
  max-width: 100%;
  background: rgba(255,255,255,0.92);
  padding: 14px 20px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.hci-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  color: rgba(255,255,255,0.92);
}

.hci-nav a:hover { color: #fff; }
.hci-nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
}

.hci-hero-content {
  padding: 90px 0 120px;
  margin-top: auto;
}

.hci-eyebrow,
.hci-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}
.hci-eyebrow { color: rgba(255,255,255,0.78); }
.hci-kicker { color: #8b7a68; }

.hci-hero h1 {
  max-width: 980px;
  margin: 0 0 24px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  font-weight: 600;
}

.hci-lead {
  max-width: 760px;
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.45;
  color: rgba(255,255,255,0.9);
}

.hci-cta-row {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hci-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
.hci-button:hover { transform: translateY(-1px); }
.hci-button-primary { background: #fff; color: var(--hci-dark); }
.hci-button-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.35); }

.hci-section {
  padding: 100px 0;
}
.hci-section-soft { background: var(--hci-surface-soft); }

.hci-section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}
.hci-section-heading h2,
.hci-two-col h2,
.hci-panel h2,
.hci-footer-banner h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.06;
  font-weight: 600;
}
.hci-section-heading p,
.hci-two-col p,
.hci-panel p,
.hci-footer-banner p,
.hci-project-card p,
.hci-pillars p,
.hci-audience-list li,
.hci-contact-box p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--hci-muted);
}

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

.hci-stat-card,
.hci-project-card,
.hci-pillars article,
.hci-panel,
.hci-contact-box,
.hci-impact-cards article {
  background: var(--hci-surface);
  border: 1px solid var(--hci-border);
  border-radius: var(--hci-radius);
  box-shadow: var(--hci-shadow);
}

.hci-stat-card {
  padding: 30px;
}
.hci-stat-card strong {
  display: block;
  font-size: clamp(32px, 3vw, 48px);
  margin-bottom: 10px;
  line-height: 1;
}
.hci-stat-card span {
  color: var(--hci-muted);
  font-size: 18px;
  line-height: 1.6;
}

.hci-two-col {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 42px;
  align-items: start;
}

.hci-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
}
.hci-pillars article {
  padding: 28px;
}
.hci-pillars h3,
.hci-project-card h3,
.hci-contact-box h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.15;
}

.hci-project-grid .hci-project-card { padding: 30px; }
.hci-project-card-dark {
  background: var(--hci-dark);
  color: #fff;
}
.hci-project-card-dark p { color: rgba(255,255,255,0.82); }

.hci-gallery-wrap { background: #111; color: #fff; }
.hci-gallery-wrap .hci-kicker { color: #d3b387; }
.hci-gallery-wrap .hci-section-heading p { color: rgba(255,255,255,0.78); }
.hci-gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-auto-rows: 280px;
  gap: 18px;
}
.hci-gallery-item,
.hci-gallery-item img {
  width: 100%;
  height: 100%;
}
.hci-gallery-item {
  overflow: hidden;
  border-radius: 24px;
}
.hci-gallery-item img {
  object-fit: cover;
  transition: transform .5s ease;
}
.hci-gallery-item:hover img { transform: scale(1.03); }
.hci-gallery-large { grid-row: span 2; }

.hci-impact {
  background: linear-gradient(180deg, #201c19 0%, #151210 100%);
  color: #fff;
}
.hci-impact .hci-kicker { color: #d3b387; }
.hci-impact p { color: rgba(255,255,255,0.78); }
.hci-impact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.hci-impact-cards article {
  padding: 26px;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
  box-shadow: none;
}
.hci-impact-cards strong {
  display: block;
  font-size: 42px;
  margin-bottom: 8px;
}
.hci-impact-cards span {
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  line-height: 1.55;
}

.hci-audience-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}
.hci-audience-list {
  list-style: none;
  margin: 0;
  padding: 32px;
  background: var(--hci-surface);
  border: 1px solid var(--hci-border);
  border-radius: var(--hci-radius);
  box-shadow: var(--hci-shadow);
}
.hci-audience-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 18px;
}
.hci-audience-list li:last-child { margin-bottom: 0; }
.hci-audience-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--hci-accent);
  font-size: 28px;
  line-height: 1;
}

.hci-panel {
  padding: 36px;
}
.hci-panel ul {
  margin: 0 0 28px 0;
  padding: 0;
  list-style: none;
}
.hci-panel li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.6;
}
.hci-panel li::before {
  content: "—";
  position: absolute;
  left: 0;
}
.hci-panel-dark {
  background: var(--hci-dark);
  color: #fff;
  border-color: rgba(255,255,255,0.08);
}
.hci-panel-dark p,
.hci-panel-dark li { color: rgba(255,255,255,0.82); }
.hci-panel-dark .hci-kicker { color: #d3b387; }
.hci-panel-dark .hci-button-secondary {
  background: #fff;
  color: var(--hci-dark);
  border-color: #fff;
}

.hci-footer-banner {
  padding: 90px 0;
  background: linear-gradient(135deg, #111111 0%, #231c15 50%, #40332a 100%);
  color: #fff;
}
.hci-footer-banner-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}
.hci-footer-logo {
  width: 280px;
  background: rgba(255,255,255,0.96);
  padding: 16px 18px;
  border-radius: 22px;
  margin-bottom: 28px;
}
.hci-footer-banner p { color: rgba(255,255,255,0.82); }
.hci-contact-box {
  padding: 30px;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.1);
  box-shadow: none;
}
.hci-contact-box p,
.hci-contact-box a { color: rgba(255,255,255,0.88); }

.hci-simple-page {
  min-height: 100vh;
  padding: 80px 0;
}
.hci-simple-wrap {
  max-width: 820px;
  background: #fff;
  padding: 48px;
  border-radius: 24px;
  border: 1px solid var(--hci-border);
}

@media (max-width: 1100px) {
  .hci-grid-4,
  .hci-pillars,
  .hci-gallery-grid,
  .hci-grid-2,
  .hci-two-col,
  .hci-audience-wrap,
  .hci-footer-banner-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hci-gallery-large { grid-row: span 1; }
  .hci-gallery-grid { grid-auto-rows: 240px; }
}

@media (max-width: 920px) {
  .hci-topbar,
  .hci-nav,
  .hci-grid-4,
  .hci-grid-2,
  .hci-two-col,
  .hci-pillars,
  .hci-impact-cards,
  .hci-audience-wrap,
  .hci-footer-banner-inner {
    grid-template-columns: 1fr;
  }

  .hci-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hci-nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hci-hero-content {
    padding: 56px 0 90px;
  }

  .hci-section {
    padding: 72px 0;
  }

  .hci-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
}

@media (max-width: 640px) {
  .hci-container { width: min(calc(100% - 24px), var(--hci-container)); }
  .hci-brand img { width: 230px; }
  .hci-panel,
  .hci-stat-card,
  .hci-project-card,
  .hci-impact-cards article,
  .hci-audience-list,
  .hci-contact-box,
  .hci-pillars article { padding: 22px; }
  .hci-section-heading p,
  .hci-two-col p,
  .hci-panel p,
  .hci-footer-banner p,
  .hci-project-card p,
  .hci-pillars p,
  .hci-audience-list li,
  .hci-contact-box p,
  .hci-stat-card span,
  .hci-impact-cards span,
  .hci-panel li { font-size: 17px; }
}

.hci-site-footer {
  padding: 22px 0 30px;
  background: #111111;
  color: rgba(255,255,255,0.84);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hci-site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.hci-site-footer-copy {
  font-size: 14px;
  line-height: 1.4;
}
.hci-site-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hci-social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.hci-social-button:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.26);
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  .hci-site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
