:root {
  --bg: #fff8ef;
  --bg-soft: #f6ead8;
  --text: #24170f;
  --muted: #6b5b4b;
  --wood: #8a4f25;
  --wood-dark: #4b2816;
  --gold: #d7a447;
  --cream: #fffdf8;
  --line: rgba(36, 23, 15, 0.12);
  --shadow: 0 24px 70px rgba(75, 40, 22, 0.16);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 239, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--wood-dark), var(--wood), var(--gold));
  color: white;
  font-size: 11px;
  letter-spacing: 0.05em;
  box-shadow: 0 12px 30px rgba(75, 40, 22, 0.25);
}

.brand-text {
  font-size: 19px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  color: var(--muted);
}

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

.nav-cta {
  color: white !important;
  background: var(--wood-dark);
  padding: 11px 18px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--wood-dark);
  margin: 5px 0;
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 76px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto auto;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(215, 164, 71, 0.25), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
  position: relative;
}

.eyebrow {
  color: var(--wood);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  margin: 0 0 12px;
}

h1, h2, h3, h4, p {
  margin-top: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
}

.hero-text {
  color: var(--muted);
  font-size: 19px;
  max-width: 640px;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--wood-dark), var(--wood));
  color: white;
  box-shadow: 0 16px 36px rgba(75, 40, 22, 0.28);
}

.btn.secondary {
  background: var(--cream);
  border-color: var(--line);
  color: var(--wood-dark);
}

.btn.full {
  width: 100%;
  border: 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 520px;
  gap: 14px;
}

.hero-stats div {
  padding: 16px;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.hero-stats strong {
  display: block;
  font-size: 18px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 14px;
}

.hero-card {
  background: linear-gradient(135deg, rgba(138, 79, 37, 0.16), rgba(215, 164, 71, 0.24));
  border: 1px solid rgba(138, 79, 37, 0.16);
  border-radius: 36px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.image-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(75, 40, 22, 0.68), rgba(138, 79, 37, 0.38)),
    repeating-linear-gradient(45deg, #9b6336 0 16px, #84512e 16px 32px);
  color: white;
  border-radius: var(--radius);
  padding: 24px;
  overflow: hidden;
  position: relative;
}

.image-placeholder::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(255,255,255,0.45);
  border-radius: 20px;
}

.image-placeholder span {
  display: block;
  font-size: 28px;
  font-weight: 900;
  z-index: 1;
}

.image-placeholder small {
  display: block;
  max-width: 300px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  z-index: 1;
}

.image-placeholder.large {
  min-height: 520px;
}

.image-placeholder.tall {
  min-height: 560px;
}

.section {
  padding: 86px 0;
}

.intro-strip {
  padding: 0 0 30px;
}

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

.strip-grid > div {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 40px rgba(75, 40, 22, 0.08);
}

.mini-title {
  display: block;
  color: var(--wood);
  font-weight: 900;
  margin-bottom: 8px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

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

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

.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 16px 48px rgba(75, 40, 22, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
}

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

.dark-section {
  background:
    radial-gradient(circle at top right, rgba(215, 164, 71, 0.22), transparent 35%),
    linear-gradient(135deg, #2c170d, #120b07);
  color: white;
}

.section-heading.light p:not(.eyebrow) {
  color: rgba(255,255,255,0.74);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  opacity: 0.94;
}

.gallery-item span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(18, 11, 7, 0.72);
  backdrop-filter: blur(10px);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: process;
}

.process-grid article {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--wood-dark);
  color: white;
  font-weight: 900;
  margin-bottom: 20px;
}

.process-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.split-section {
  background: var(--bg-soft);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 58px;
  align-items: center;
}

.split-grid p {
  color: var(--muted);
}

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

.check-list li {
  padding: 12px 0 12px 34px;
  border-bottom: 1px solid rgba(36, 23, 15, 0.1);
  position: relative;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--wood);
  font-weight: 900;
}

.cta-section {
  padding: 58px 0;
}

.cta-box {
  border-radius: 34px;
  padding: 42px;
  background:
    radial-gradient(circle at top right, rgba(215, 164, 71, 0.32), transparent 34%),
    linear-gradient(135deg, #4b2816, #8a4f25);
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta-box .eyebrow,
.cta-box p {
  color: rgba(255,255,255,0.78);
}

.cta-box h2 {
  margin-bottom: 8px;
}

.cta-box .btn.primary {
  background: white;
  color: var(--wood-dark);
  box-shadow: none;
  flex: 0 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: start;
}

.contact-grid p {
  color: var(--muted);
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}

.contact-cards div {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
}

.contact-cards strong,
.contact-cards span {
  display: block;
}

.contact-cards span {
  color: var(--muted);
  margin-top: 4px;
}

.contact-form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  font-weight: 800;
  margin-bottom: 16px;
}

input, select, textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(36, 23, 15, 0.14);
  border-radius: 16px;
  background: #fff;
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--wood);
  box-shadow: 0 0 0 4px rgba(138, 79, 37, 0.12);
}

.form-note {
  text-align: center;
  margin: 14px 0 0;
  font-size: 14px;
}

.site-footer {
  background: #120b07;
  color: white;
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 38px;
}

.footer-grid p,
.footer-bottom {
  color: rgba(255,255,255,0.66);
}

.footer-grid a {
  display: block;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
}

.footer-grid a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 36px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
}

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

  .nav-links {
    position: absolute;
    top: 78px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 14px;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

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

  .image-placeholder.large,
  .image-placeholder.tall {
    min-height: 360px;
  }

  .strip-grid,
  .service-grid,
  .gallery-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .hero {
    padding: 64px 0 48px;
  }

  .section {
    padding: 64px 0;
  }

  .brand-text {
    font-size: 16px;
  }

  .hero-stats,
  .strip-grid,
  .service-grid,
  .gallery-grid,
  .process-grid,
  .contact-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .cta-box {
    padding: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
