* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #fffaf2;
  --text: #2f241c;
  --muted: #76685b;
  --clay: #b66b45;
  --clay-dark: #854832;
  --sand: #efe0cc;
  --cream: #fff7ec;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(70, 40, 20, 0.12);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(182, 107, 69, 0.2), transparent 32%),
    linear-gradient(135deg, #fffaf2 0%, #f3ddc5 100%);
}

.navbar {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  color: var(--muted);
}

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

.menu-toggle {
  display: none;
  border: 0;
  background: var(--white);
  color: var(--text);
  font-size: 1.5rem;
  border-radius: 12px;
  padding: 6px 12px;
  cursor: pointer;
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0 110px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--clay);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(2.5rem, 7vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}

.hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.1rem;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(182, 107, 69, 0.25);
}

.secondary {
  background: rgba(255, 255, 255, 0.75);
  color: var(--clay-dark);
}

.hero-card {
  min-height: 420px;
  padding: 28px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-card h2 {
  position: relative;
  z-index: 2;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.hero-card p {
  position: relative;
  z-index: 2;
  color: var(--muted);
}

.shape {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: var(--clay);
  opacity: 0.85;
}

.shape-one {
  width: 210px;
  height: 210px;
  top: 54px;
  left: 52px;
}

.shape-two {
  width: 150px;
  height: 150px;
  top: 130px;
  right: 42px;
  background: #d39a70;
}

.shape-three {
  width: 110px;
  height: 110px;
  top: 240px;
  left: 160px;
  background: #8e5a3f;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-warm {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1120px) / 2));
  padding-right: max(16px, calc((100% - 1120px) / 2));
  background: var(--sand);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.section-heading h2,
.contact-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.card,
.price-box,
.contact-box {
  background: var(--cream);
  border: 1px solid rgba(133, 72, 50, 0.12);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 14px 30px rgba(70, 40, 20, 0.06);
}

.card h3,
.price-box h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.card p,
.price-box p,
.contact-section p {
  color: var(--muted);
}

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

.gallery-item {
  min-height: 210px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(133, 72, 50, 0.82), rgba(211, 154, 112, 0.76)),
    var(--sand);
  color: var(--white);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  font-size: 1.4rem;
  font-weight: 800;
}

.price {
  color: var(--clay-dark) !important;
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.featured {
  background: var(--text);
  color: var(--white);
}

.featured p {
  color: rgba(255, 255, 255, 0.75);
}

.featured .price {
  color: #ffd4b7 !important;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.contact-box p {
  margin-bottom: 12px;
}

.full {
  width: 100%;
  margin-top: 12px;
}

.footer {
  text-align: center;
  padding: 28px 16px;
  color: var(--muted);
  background: #f1dfcb;
}

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

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    background: var(--white);
    padding: 18px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    z-index: 10;
  }

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

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

  .hero {
    padding-top: 54px;
  }

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

  .cards,
  .pricing,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    min-height: 160px;
  }
}
