:root {
  --bg: #f5f1ea;
  --text: #1a1917;
  --muted: #6a5f55;
  --accent: #2f6b5c;
  --accent-dark: #235346;
  --accent-warm: #d28b3a;
  --surface: #ffffff;
  --ink: #11100f;
  --sand: #efe6d6;
  --line: #e0d7c8;
  --hot: #e84b31;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(28, 26, 23, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(210, 139, 58, 0.18), transparent 38%),
    radial-gradient(circle at 85% 10%, rgba(47, 107, 92, 0.2), transparent 40%),
    linear-gradient(150deg, #f7f3ee 0%, #efe7dc 55%, #f6f2ec 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 243, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--accent);
  background: #f1ede6;
  border-radius: 16px;
  padding: 8px 14px;
  box-shadow: inset 0 0 0 1px rgba(47, 107, 92, 0.3);
}

.logo-title {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.logo-subtitle {
  color: var(--muted);
  font-size: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.nav-cta {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(47, 107, 92, 0.32);
}

.hero {
  position: relative;
  padding: 56px 0 44px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(210, 139, 58, 0.24), transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(47, 107, 92, 0.18), transparent 40%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
}

.hero-content h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 900;
  margin: 12px 0 14px;
  color: var(--ink);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--accent-dark);
  font-weight: 600;
}

.lead {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.primary-btn,
.ghost-btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.primary-btn {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 15px 30px rgba(47, 107, 92, 0.32);
}

.ghost-btn {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid rgba(47, 107, 92, 0.4);
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  background: #f1ede6;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  color: var(--muted);
}

.hero-media {
  display: flex;
  justify-content: center;
}

.image-stack {
  position: relative;
  width: min(360px, 75vw);
  height: 340px;
}

.image-stack img {
  position: absolute;
  width: 70%;
  height: 70%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  top: 0;
  left: 0;
}

.image-stack img:last-child {
  bottom: 0;
  right: 0;
}

.section {
  padding: 56px 0;
}

.section-head {
  margin-bottom: 22px;
}

.section-head h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 900;
}

.section-head p {
  color: var(--muted);
  margin-top: 12px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.about-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.muted {
  color: var(--muted);
}

.clients-section {
  background: linear-gradient(140deg, #f7f3ee 0%, #f1e5d6 100%);
}

.clients-full {
  padding-bottom: 12px;
}

.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.clients-carousel {
  overflow: hidden;
  padding: 8px 0 18px;
}

.clients-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scroll 18s linear infinite;
  padding: 0 4vw;
}

.client-logo {
  background: #f0e7d9;
  padding: 14px 22px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 64px;
  box-shadow: 0 10px 24px rgba(28, 26, 23, 0.08);
  border: 1px solid rgba(35, 83, 70, 0.12);
}

.client-logo img {
  max-height: 38px;
  max-width: 140px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.28));
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.project-list {
  display: grid;
  gap: 14px;
}

.project-item {
  padding: 16px;
  border-radius: 16px;
  background: var(--sand);
}

.prices {
  background: linear-gradient(155deg, #f7f3ee 0%, #efe2cf 100%);
}

.top-prices {
  padding: 50px 0 44px;
}

.price-table-wrapper {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
}

.price-table th {
  color: var(--muted);
  font-weight: 600;
}

.price-table tr.hot {
  background: rgba(232, 67, 44, 0.08);
  border-left: 4px solid var(--hot);
}

.hot-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  margin-right: 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  background: var(--hot);
  letter-spacing: 1px;
}

.price-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
}

.location-details {
  list-style: none;
  margin: 14px 0 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.map-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-embed {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.map-footer {
  padding: 14px 18px;
  color: var(--muted);
  background: var(--sand);
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.doc-card {
  background: var(--surface);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.doc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.order {
  background: linear-gradient(150deg, #f9f6f2 0%, #f1e3d1 100%);
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.contact-card {
  background: var(--surface);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-line {
  margin-top: 10px;
}

.order-form {
  background: var(--surface);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.order-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.order-form input,
.order-form textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
}

.site-footer {
  padding: 24px 0 30px;
  border-top: 1px solid var(--line);
  background: #f7f3ee;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  .image-stack {
    height: 260px;
  }
}
