:root {
  --ember: #b54c23;
  --ember-strong: #9c3f1b;
  --charcoal: #2f2a28;
  --coal: #1f1a18;
  --cream: #f7f1eb;
  --sand: #e6d8ca;
  --text: #2b2523;
  --muted: #625b58;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(31, 26, 24, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--ember);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(90deg, rgba(181, 76, 35, 0.92), rgba(31, 26, 24, 0.92));
  backdrop-filter: blur(6px);
  color: var(--white);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', 'Times New Roman', serif;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f2b289, #b54c23 52%, #8a3516 100%);
  position: relative;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.brand-mark::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(35deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: rgba(255, 255, 255, 0.85);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 600;
  font-size: 14px;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 999px;
}

.nav-links .cta-link {
  background: var(--white);
  color: var(--charcoal);
  padding: 8px 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.hero {
  padding: 120px 0 80px;
  background: linear-gradient(160deg, #fff7f1 20%, rgba(181, 76, 35, 0.12) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 12px;
  color: var(--ember-strong);
  margin: 0 0 12px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: var(--charcoal);
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
}

h2 {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.15;
}

h3 {
  font-size: 20px;
}

.lead, .section-lead {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 20px;
}

.lead {
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 26px 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--ember), var(--ember-strong));
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn.ghost {
  border: 1px solid var(--ember);
  color: var(--ember-strong);
  background: rgba(181, 76, 35, 0.08);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.hero-stats div {
  padding: 14px 16px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
}

.hero-stats strong {
  display: block;
  font-size: 18px;
  color: var(--charcoal);
}

.hero-stats span {
  color: var(--muted);
  font-size: 14px;
}

.hero-media {
  position: relative;
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #d9ccc2;
}

.badge {
  position: absolute;
  bottom: -16px;
  right: 12px;
  background: var(--charcoal);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.value {
  padding: 80px 0 60px;
}

.value-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.1fr 1.2fr;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.pillars article {
  padding: 18px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.services {
  background: var(--charcoal);
  color: var(--white);
  padding: 80px 0;
}

.services h2 {
  color: var(--white);
}

.section-head {
  margin-bottom: 28px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.card {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px;
  min-height: 180px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card h3 {
  color: var(--white);
}

.card p {
  color: rgba(255, 255, 255, 0.85);
}

.projects {
  padding: 80px 0;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.project {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.project-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-body {
  padding: 18px;
}

.process {
  padding: 80px 0;
  background: #f0e6db;
}

.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.process-steps li {
  background: var(--white);
  border-radius: 14px;
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

.step-index {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--ember), var(--ember-strong));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.contact {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 10px;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--white);
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.contact-list span:first-child {
  font-weight: 700;
  color: var(--charcoal);
}

.logo-drop {
  background: rgba(181, 76, 35, 0.1);
  border: 1px dashed rgba(181, 76, 35, 0.5);
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--ember-strong);
  font-weight: 600;
}

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--charcoal);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d2c7bd;
  background: #fdfaf7;
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.site-footer {
  background: var(--coal);
  color: rgba(255, 255, 255, 0.9);
  padding: 36px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.9fr;
  gap: 18px;
  align-items: center;
}

.footer-copy {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer-links,
.footer-legal {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .value-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 80px;
  }

  .badge {
    position: relative;
    inset: auto;
    margin-top: 12px;
    display: inline-block;
  }
}

@media (max-width: 640px) {
  .container {
    width: 92vw;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
