:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-soft: #f2f4f8;
  --text: #1f2937;
  --muted: #5f6b7a;
  --card: #ffffff;
  --card-border: rgba(15, 23, 42, 0.1);
  --accent: #d97706;
  --accent-2: #ec4899;
  --accent-dark: #b45309;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-hero: 0 18px 40px rgba(15, 23, 42, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.centered {
  text-align: center;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.brand .brand-text > span {
  color: var(--accent);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
}

.nav-links a,
.mobile-menu a {
  color: rgba(31, 41, 55, 0.74);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.mobile-menu a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  background: none;
  color: var(--text);
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0.2rem 1rem 0.8rem;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.mobile-menu li {
  padding: 0.5rem 0;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding-top: 64px;
}

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

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(15, 23, 42, 0.78) 10%, rgba(15, 23, 42, 0.68) 65%, rgba(17, 24, 39, 0.76) 100%);
}

.hero-content {
  position: relative;
  color: #fff;
  padding: 5rem 0;
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  margin: 0.55rem 0 1rem;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--accent);
}

.hero-logo {
  width: clamp(48px, 7vw, 74px);
  height: clamp(48px, 7vw, 74px);
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
  margin-right: 0.65rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.hero p {
  max-width: 640px;
  color: rgba(244, 246, 251, 0.87);
}

.eyebrow {
  display: inline-block;
  background: rgba(217, 119, 6, 0.2);
  color: #ffbe68;
  padding: 0.35rem 0.82rem;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.3rem;
}

.btn {
  display: inline-block;
  padding: 0.78rem 1.22rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-hero);
}

.btn.primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn.full {
  width: 100%;
  text-align: center;
}

.section {
  padding: 5.2rem 0;
  background: var(--surface);
}

.section-alt {
  background: #1e2f46;
  color: #f3f6fb;
}

.areas {
  padding: 6.5rem 0;
}

.section-alt-light {
  background: #ffffff;
}

.section-label {
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 0.4rem;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.95rem, 4vw, 3.1rem);
}

.section-subtitle {
  color: var(--muted);
  max-width: 660px;
  margin: 0 auto 2rem;
}

.section-alt h2 {
  color: #f8fbff;
}

.section-alt .section-subtitle {
  color: rgba(243, 246, 251, 0.78);
}

.card-grid,
.project-grid {
  display: grid;
  gap: 1rem;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.project-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.card,
.project-card,
.pricing-card {
  background: var(--card);
  border-radius: 14px;
  border: 1px solid var(--card-border);
}

.card {
  padding: 1.25rem;
}

.service-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: var(--shadow-soft);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 119, 6, 0.42);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.14);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(217, 119, 6, 0.12);
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.service-card:hover .service-icon {
  background: rgba(217, 119, 6, 0.2);
}

.service-icon svg,
.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  margin-top: 0.25rem;
  margin-bottom: 0.45rem;
}

.card p {
  color: #5b6778;
}

.project-card {
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.project-card:hover {
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.15);
  border-color: rgba(236, 72, 153, 0.26);
}

.project-card img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-card .content {
  padding: 1rem;
}

.project-card p {
  font-size: 0.92rem;
  color: #576579;
  margin: 0.4rem 0;
}

.project-card strong {
  color: #1f2937;
}

.time {
  color: var(--accent);
  font-weight: 700;
}

.time-icon {
  color: var(--accent);
}

.areas-list {
  color: #e6edf8;
  font-size: clamp(1.25rem, 2.3vw, 1.8rem);
  font-weight: 600;
  line-height: 1.7;
}

.areas-note {
  color: #d0daea;
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
}

.pricing-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 2rem;
  text-align: left;
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-soft);
}

.price {
  font-size: 1.25rem;
}

.price strong {
  font-size: 3rem;
}

.price-sub {
  color: var(--accent);
  font-weight: 700;
  margin-top: -0.3rem;
}

#pricing-list {
  padding-left: 1.1rem;
}

#pricing-list li {
  margin-bottom: 0.45rem;
  color: #4b5563;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.contact-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 1rem;
}

.section-alt .contact-item p,
.section-alt .contact-item strong {
  color: #f3f6fb;
}

.contact-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.65rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(217, 119, 6, 0.18);
  color: var(--accent);
}

.contact-item p {
  margin: 0.2rem 0;
}


.contact-actions {
  margin-top: 0.7rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-link {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(217, 119, 6, 0.2);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.84rem;
  transition: background-color 0.2s ease;
}

.contact-link:hover {
  background: rgba(217, 119, 6, 0.32);
}

.footer-brand {
  justify-content: center;
  margin: 0 0 0.35rem;
}

.site-footer {
  background: #ffffff;
  color: #64748b;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  padding: 1.5rem 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 82vh;
  }

  .brand-logo {
    width: 30px;
    height: 30px;
  }

  .hero-logo {
    width: clamp(40px, 12vw, 56px);
    height: clamp(40px, 12vw, 56px);
    margin-right: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .service-card,
  .project-card,
  .project-card img,
  .fade-in {
    transition: none;
  }
}
