* {
  box-sizing: border-box;
}

:root {
  --ink: #1d252c;
  --muted: #63707a;
  --cream: #f7f3ec;
  --white: #ffffff;
  --accent: #b7603b;
  --accent-dark: #8f4528;
  --slate: #2d3a43;
  --line: #ded8cf;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(222, 216, 207, 0.8);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--accent);
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: white;
  background: var(--slate);
}

.hero {
  background:
    linear-gradient(120deg, rgba(247,243,236,0.98), rgba(247,243,236,0.72)),
    radial-gradient(circle at 80% 20%, #d9b59e 0, transparent 40%);
  padding: 96px 0;
}

.hero-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.08;
}

h1 {
  margin: 0 0 22px;
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 5.7rem);
}

.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

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

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

.btn-secondary {
  border: 1px solid var(--slate);
  background: transparent;
}

.btn-light {
  color: var(--slate);
  background: white;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-row span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--accent);
}

.hero-card {
  min-height: 480px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--slate);
  box-shadow: 0 30px 60px rgba(45, 58, 67, 0.22);
}

.paint-swatch {
  position: absolute;
  border-radius: 50%;
}

.swatch-one {
  width: 280px;
  height: 280px;
  right: -60px;
  top: -40px;
  background: #b7603b;
}

.swatch-two {
  width: 190px;
  height: 190px;
  left: 50px;
  top: 70px;
  background: #d8bca8;
}

.swatch-three {
  width: 250px;
  height: 250px;
  right: 30px;
  bottom: -95px;
  background: #6f8793;
}

.hero-card-content {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  padding: 26px;
  border-radius: 16px;
  color: white;
  background: rgba(29, 37, 44, 0.84);
  backdrop-filter: blur(8px);
}

.hero-card h2 {
  margin: 8px 0 12px;
  font-size: 2rem;
}

.small-label {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.section {
  padding: 92px 0;
}

.section-title {
  margin: 0 0 38px;
  max-width: 760px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(29, 37, 44, 0.08);
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--accent);
  background: var(--cream);
  font-weight: 800;
}

.service-card h3 {
  margin: 20px 0 8px;
  font-size: 1.24rem;
}

.service-card p,
.about-panel p,
.contact p {
  color: var(--muted);
}

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

.about-panel {
  padding-right: 24px;
}

.check-list {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  margin: 10px 0;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 50%;
  color: white;
  background: var(--accent);
  font-size: 0.8rem;
}

.stats-panel {
  display: grid;
  gap: 16px;
}

.stat {
  padding: 28px;
  border-left: 5px solid var(--accent);
  border-radius: 12px;
  background: white;
}

.stat strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.3rem;
}

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

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-placeholder {
  min-height: 280px;
  display: grid;
  place-items: end start;
  padding: 24px;
  border-radius: 16px;
  color: white;
  background:
    linear-gradient(to top, rgba(29,37,44,0.92), rgba(29,37,44,0.05)),
    linear-gradient(135deg, #8e9da5, #d8bca8);
  font-weight: 800;
}

.estimate-strip {
  padding: 58px 0;
  color: white;
  background: var(--slate);
}

.estimate-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.estimate-wrap h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.light {
  color: #e9c8b5;
}

.contact-grid {
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cfc7bb;
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.full-width {
  width: 100%;
}

footer {
  padding: 30px 0;
  color: #dce2e5;
  background: #192127;
  font-size: 0.9rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

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

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding: 70px 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .logo span:last-child {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-card {
    min-height: 400px;
  }

  .card-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .estimate-wrap,
  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 70px 0;
  }
}

.hidden-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
footer a { color: inherit; }
