:root {
  --bg: #0a0d12;
  --bg-alt: #0f141b;
  --panel: #131922;
  --panel-soft: #18202b;
  --text: #f4f1eb;
  --muted: #b8c0cb;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #d2b48c;
  --accent-strong: #e6ccb0;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --max-width: 1180px;
}

/* =========================
   Base
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(210, 180, 140, 0.08), transparent 22%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.03), transparent 18%),
    linear-gradient(180deg, #090c11 0%, #0d1117 45%, #0b0f14 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

li {
  margin-bottom: 0.55rem;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.bronze-text {
  color: var(--accent);
}

.bronze-divider {
  width: 100%;
  max-width: 1180px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(210, 180, 140, 0.18) 18%,
    rgba(210, 180, 140, 0.45) 50%,
    rgba(210, 180, 140, 0.18) 82%,
    transparent 100%
  );
}

/* =========================
   Header / Nav
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(10, 13, 18, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--text);
}

/* =========================
   Shared Typography / UI
========================= */

.hero {
  padding: 7rem 0 4rem;
}

.eyebrow,
.section-label,
.mini-label {
  display: block;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(3.1rem, 5vw, 5.3rem);
  line-height: 0.95;
  max-width: 10.5ch;
}

.hero-text,
.section p,
.feature-card p,
.contact-panel p,
.about-column p,
.project-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.04rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #111;
  box-shadow: 0 12px 28px rgba(210, 180, 140, 0.2);
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.section {
  padding: 5rem 0;
}

.section h2 {
  margin: 0.7rem 0 1rem;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
  max-width: 14ch;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-list {
  color: var(--muted);
  line-height: 1.7;
}

/* =========================
   Homepage
========================= */

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-card {
  display: flex;
  justify-content: center;
}

.hero-logo-shell {
  width: min(100%, 460px);
  border-radius: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  text-align: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(210, 180, 140, 0.14), transparent 30%),
    linear-gradient(180deg, #171d26 0%, #10151c 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-logo {
  width: 100%;
  max-width: 380px;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

.hero-brand-details {
  max-width: 320px;
}

.hero-brand-name {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.hero-brand-services {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
}

.hero-brand-location {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.value-strip {
  padding: 0 0 2.5rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.value-card,
.content-card,
.feature-card,
.contact-panel,
.about-cta,
.project-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.value-card,
.content-card,
.feature-card,
.contact-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
}

.value-card {
  padding: 1.5rem;
}

.value-card span {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.value-card strong {
  font-size: 1.05rem;
  line-height: 1.5;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.content-card {
  padding: 1.7rem;
}

.content-card h3,
.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.feature-card {
  padding: 1.9rem;
}

.contact-section {
  padding-bottom: 6rem;
}

.contact-panel {
  padding: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.contact-grid div {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 0.45rem;
}

/* =========================
   About Page
========================= */

.about-hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: start;
}

.about-hero-copy {
  max-width: 760px;
}

.about-hero-title {
  margin: 1rem 0 1rem;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.94;
  max-width: 9ch;
}

.about-hero-subtitle {
  margin: 0 0 1.5rem;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.45;
  color: var(--muted);
  max-width: 24ch;
  font-weight: 500;
}

.about-hero-side {
  max-width: 430px;
  justify-self: end;
}

.about-hero-image-wrap {
  width: 100%;
  max-width: 380px;
  padding: 6px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(210, 180, 140, 0.95),
    rgba(160, 120, 75, 0.85)
  );
  box-shadow:
    0 0 0 1px rgba(210, 180, 140, 0.18),
    0 18px 40px rgba(0, 0, 0, 0.32),
    0 0 28px rgba(210, 180, 140, 0.08);
  margin-bottom: 1rem;
}

.about-hero-image {
  width: 100%;
  display: block;
  border-radius: 18px;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  object-position: center 22%;
}

.about-hero-side-label {
  margin-bottom: 0.9rem;
}

.about-side-text {
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.02rem;
  max-width: 36ch;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-column h2 {
  margin-top: 0.65rem;
  margin-bottom: 1rem;
}

.about-column p {
  line-height: 1.85;
}

.founder-section {
  max-width: 1000px;
}

.founder-inline {
  margin-top: 2rem;
}

.founder-photo-inline {
  width: 220px;
  float: left;
  margin: 0 2rem 1rem 0;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.founder-text p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 1.02rem;
  margin-bottom: 1.2rem;
}

.about-cta-section .about-cta {
  max-width: 920px;
}

.about-cta {
  padding: 2rem;
  background:
    radial-gradient(circle at top left, rgba(210, 180, 140, 0.07), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
}

/* =========================
   Projects Page
========================= */

.projects-hero-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: start;
}

.projects-hero-copy {
  max-width: 820px;
}

.projects-hero-title {
  margin: 1rem 0 1rem;
  font-size: clamp(2.4rem, 4.8vw, 4.3rem);
  line-height: 0.98;
  max-width: 10ch;
}
.projects-hero-copy .about-hero-subtitle {
  margin: 0 0 1.25rem;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.45;
  max-width: 26ch;
}

.projects-hero-side {
  width: 100%;
  max-width: 560px;
  justify-self: end;
}

.project-hero-image-wrap {
  width: 100%;
  max-width: 560px;
  margin-bottom: 1rem;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(210, 180, 140, 0.95),
    rgba(160, 120, 75, 0.85)
  );
  padding: 6px;
  box-shadow:
    0 0 0 1px rgba(210, 180, 140, 0.18),
    0 18px 40px rgba(0, 0, 0, 0.32),
    0 0 28px rgba(210, 180, 140, 0.08);
}

.project-hero-image {
  display: block;
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.25s ease;
}

.project-hero-image-wrap a:hover .project-hero-image {
  transform: scale(1.02);
}
.project-highlight-label {
  margin: 0 0 0.9rem;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.projects-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.project-card {
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(210, 180, 140, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
}

.project-card-featured {
  background:
    radial-gradient(circle at top right, rgba(210, 180, 140, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.project-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.project-type-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(210, 180, 140, 0.28);
  background: rgba(210, 180, 140, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.project-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.7rem;
  line-height: 1.15;
}

.project-card h4 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
  color: var(--text);
}

.project-summary {
  margin-bottom: 1.5rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.04rem;
}

.project-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.project-card .service-list {
  margin-top: 0.75rem;
}

.project-card .mini-label {
  margin: 0;
}

.project-links {
  margin-top: 1.5rem;
}

/* =========================
   Footer
========================= */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2rem;
}

.footer-row {
  color: var(--muted);
  font-size: 0.92rem;
}

/* =========================
   Responsive
========================= */

@media (max-width: 920px) {
  .main-nav {
    display: none;
  }

  .hero {
    padding-top: 5.8rem;
  }

  .hero-layout,
  .value-grid,
  .card-grid,
  .split-section,
  .contact-grid,
  .about-hero-layout,
  .about-content-grid,
  .projects-hero-layout,
  .projects-intro-grid,
  .projects-grid,
  .project-columns {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .section h2,
  .about-hero-title,
  .about-hero-subtitle,
  .about-side-text,
  .projects-hero-title {
    max-width: 100%;
  }

  .hero-logo {
    max-width: 320px;
  }

  .about-hero-side,
  .projects-hero-side {
    max-width: 100%;
    justify-self: start;
  }

  .project-hero-image-wrap,
  .about-hero-image-wrap {
    max-width: 100%;
  }

  .project-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-type-badge {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .founder-photo-inline {
    float: none;
    display: block;
    width: 100%;
    max-width: 260px;
    margin: 0 auto 1.5rem;
  }
}