:root {
  --cream: #faf9f6;
  --accent: #e16941;
  --accent-dark: #c75535;
  --text: #111827;
  --muted: #4b5563;
  --border: #e5e7eb;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

.container {
  width: min(1152px, 92vw);
  margin: 0 auto;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--accent);
  color: var(--white);
  font-size: 0.9rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.top-bar a:hover {
  color: var(--text);
}

.site-header {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 32px;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  border-color: var(--text);
  color: var(--text);
}

.btn-outline:hover {
  background: var(--text);
  color: var(--white);
}

.hero {
  padding: 196px 24px 80px;
  background: var(--cream);
}

.hero-content {
  text-align: center;
  max-width: 896px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--muted);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
  padding-top: 48px;
}

.featured-project {
  padding: 96px 24px;
  background: var(--cream);
}

.featured-project-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.featured-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.12);
}

.featured-image-card img {
  height: 500px;
  object-fit: cover;
}

.featured-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--accent);
  color: var(--white);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.featured-details h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.featured-details p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.featured-meta span {
  display: block;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 4px;
}

.featured-meta strong {
  display: block;
  font-size: 1rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted);
}

.section {
  padding: 96px 24px;
  background: var(--white);
}

.section-cream {
  background: var(--cream);
}

.section-heading {
  text-align: center;
  margin-bottom: 64px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.125rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
}

.service-item {
  display: flex;
  gap: 24px;
}

.service-number {
  font-size: 3rem;
  font-weight: 700;
  color: #e5e7eb;
  flex-shrink: 0;
}

.service-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.service-title h3 {
  font-size: 1.5rem;
}

.service-item p {
  color: var(--muted);
}

.icon {
  font-size: 1.5rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.chip {
  padding: 8px 24px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  color: #374151;
  background: var(--white);
  font-weight: 500;
  transition: all 0.2s ease;
}

.chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.chip-active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(225, 105, 65, 0.25);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.portfolio-card {
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
}

.portfolio-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.portfolio-meta {
  padding: 20px;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(225, 105, 65, 0.1);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.portfolio-meta h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.portfolio-meta p {
  color: var(--muted);
  font-size: 0.95rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.05);
}

.testimonial-card p {
  color: #374151;
  margin-bottom: 24px;
}

.testimonial-meta {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: grid;
  gap: 4px;
  font-size: 0.9rem;
}

.testimonial-meta span {
  color: var(--muted);
}

.about {
  text-align: center;
  max-width: 896px;
}

.about h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 24px;
}

.about p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.contact {
  padding: 128px 24px;
  background: var(--white);
}

.contact-content {
  text-align: center;
  max-width: 896px;
}

.contact h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
  margin-bottom: 16px;
}

.contact p {
  color: var(--muted);
  font-size: 1.2rem;
  margin-bottom: 48px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.contact-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 24px;
  display: grid;
  gap: 8px;
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: var(--white);
  border-color: var(--border);
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.08);
}

.contact-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-weight: 700;
}

.contact-icon .icon-svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.contact-card:hover .contact-icon {
  background: var(--accent);
}

.contact-card:hover .contact-icon .icon-svg {
  color: var(--white);
}

.contact-card h4 {
  font-size: 1rem;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 48px 24px 24px;
}

.footer-brand h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 600;
  background: var(--white);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-social .icon-svg {
  width: 18px;
  height: 18px;
  color: currentColor;
}

.footer-note {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 24px;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
