:root {
  color-scheme: light;
  --bg: #f6f2ec;
  --surface: #ffffff;
  --surface-strong: #111111;
  --text: #1f2429;
  --muted: #5f6370;
  --accent: #f15a24;
  --accent-soft: rgba(241, 90, 36, 0.12);
  --border: rgba(31, 36, 41, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.98) 0%, rgba(32, 32, 32, 0.95) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--accent);
  padding: 1rem 2rem;
  box-shadow: 0 4px 20px rgba(241, 90, 36, 0.15);
}

.brand-row {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(241, 90, 36, 0.2));
}

.site-nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.site-nav a {
  color: #f6f2ec;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-pill {
  max-width: 1180px;
  margin: 0.75rem auto 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  color: #f6f2ec;
  font-size: 0.95rem;
}

.contact-pill span {
  opacity: 0.8;
}

.contact-pill a {
  background: var(--accent);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(241, 90, 36, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-pill a:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(241, 90, 36, 0.4);
  font-weight: 700;
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

.hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.75));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #f6f2ec;
  max-width: 720px;
  padding: 2rem;
}

.eyebrow {
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  margin: 0 0 1.2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ffffff;
  font-weight: 800;
}

.herrgin: 0 0 2rem;
  color: #e8e4dc;
  font-size: 1.15rem;
  line-height: 1.7
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.3);
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 16px rgba(241, 90, 36, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-outline {
  border: 1px solid rgba(17, 17, 17, 0.14);
  color: var(--surface-strong);
  background: white;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin: -2rem 2rem 3rem;
  position: relative;
  z-index: 5;
}

.hero-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 24px 50px rgba(17, 17, 17, 0.03);
}

.accent-card {
  background: linear-gradient(180deg, #fff3e8 0%, #ffe8d4 100%);
  border-color: transparent;
}

.hero-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
}

.hero-card p {
  margin: 0;
  color: var(--muted);
}

.feature-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 4rem 0 2rem;
  padding: 2rem;
  background: white;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.05);
}

.feature-strip h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(2rem, 2.4vw, 3rem);
}

.feature-pill {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 90, 36, 0.24);
}

.icon-box {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1.35rem;
  border-radius: 16px;
  background: var(--accent-soft);
  font-size: 1.35rem;
}

.service-card h3 {
  margin: 0 0 1rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.about-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about-visual {
  min-height: 420px;
  border-radius: 36px;
  background: radial-gradient(circle at top left, rgba(241, 90, 36, 0.24), transparent 35%),
    linear-gradient(180deg, #1c1c1c 0%, #323232 100%);
  position: relative;
  overflow: hidden;
}

.about-visual::before,
.about-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.about-visual::before {
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
  top: 16%;
  left: 12%;
}

.about-visual::after {
  width: 140px;
  height: 140px;
  background: rgba(241, 90, 36, 0.18);
  bottom: 14%;
  right: 12%;
}

.about-copy h2 {
  font-size: clamp(2.1rem, 2.8vw, 3rem);
  margin-top: 0.5rem;
}

.about-copy p {
  color: var(--muted);
  margin: 1.4rem 0 1.8rem;
  max-width: 34rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 0.85rem;
}

.about-list li {
  padding-left: 1.2rem;
  position: relative;
  color: var(--muted);
}

.about-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2.3rem, 3vw, 3.4rem);
  margin: 0.5rem 0 0;
}

.project-section {
  margin-bottom: 3rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.project-card {
  background: white;
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-card.featured {
  background: #111111;
  color: white;
  border-color: transparent;
}

.project-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.project-card h3,
.testimonial-card p {
  margin: 0;
}

.project-card p {
  margin: 0;
  color: var(--muted);
}

.testimonial-section {
  margin-bottom: 3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: white;
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid var(--border);
}

.testimonial-card footer {
  margin-top: 1.5rem;
  color: var(--accent);
  font-weight: 700;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  padding: 2.5rem;
  background: white;
  border-radius: 36px;
  box-shadow: 0 36px 90px rgba(17, 17, 17, 0.08);
}

.contact-copy h2 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2.2rem, 3vw, 3rem);
}

.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.contact-stats {
  display: grid;
  gap: 1rem;
}

.contact-stats div {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  background: var(--bg);
  border-radius: 24px;
  padding: 1.4rem 1.5rem;
}

.contact-stats strong {
  font-size: 2rem;
  color: var(--surface-strong);
}

.contact-stats span {
  display: block;
  color: var(--muted);
}

.site-footer {
  margin-top: 3rem;
  padding: 2rem;
  background: #111111;
  color: #f6f2ec;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.8rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(246, 242, 236, 0.8);
}

@media (max-width: 1024px) {
  .hero,
  .about-panel,
  .contact-panel,
  .project-grid,
  .testimonial-grid,
  .cards-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-pill {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .site-header,
  main {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .brand-row,
  .feature-strip,
  .contact-panel,
  .about-panel {
    gap: 1.25rem;
  }

  .site-nav {
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .feature-strip,
  .about-panel,
  .contact-panel {
    padding: 1.75rem;
  }
}
