:root {
  --ink: #231817;
  --brown: #7b5549;
  --rose: #c98572;
  --blush: #fff1eb;
  --paper: #fffaf7;
  --cream: #f7e3d8;
  --line: #ead3c9;
  --muted: #6d5b57;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 8%;
  background: linear-gradient(135deg, var(--ink), var(--brown));
  color: var(--white);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 700;
}

.logo img {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: #fff7ef;
  object-fit: contain;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.85fr);
  gap: 44px;
  align-items: center;
  min-height: calc(100svh - 76px);
  padding: 76px 8%;
  background: var(--blush);
}

.logo-showcase {
  display: grid;
  place-items: center;
  padding: 34px 8% 18px;
  background: linear-gradient(135deg, #fff7ef, #f5d8c8);
}

.logo-showcase img {
  width: min(520px, 92vw);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(35, 24, 23, 0.16);
}

.hero-copy {
  max-width: 680px;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 78px);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 52px);
}

h3 {
  margin-bottom: 10px;
  color: var(--brown);
  font-size: 22px;
}

p {
  color: var(--muted);
}

.hero p {
  max-width: 610px;
  margin-bottom: 26px;
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border: 0;
  border-radius: 40px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

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

.hero-image {
  display: grid;
  place-items: center;
  min-height: 430px;
  border-radius: 28px;
  padding: clamp(18px, 4vw, 42px);
  background: linear-gradient(135deg, #fff7ef, #f5d8c8);
  box-shadow: 0 18px 44px rgba(35, 24, 23, 0.15);
}

.hero-image img {
  width: min(100%, 520px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.phone-btn {
  margin-top: 22px;
}

.section,
.gallery-section,
.about-section,
.pricing,
.contact {
  padding: 74px 8%;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.services,
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.card,
.step,
.price-box,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(35, 24, 23, 0.07);
}

.card,
.step {
  padding: 26px;
}

.gallery-section {
  background: var(--cream);
}

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

.gallery-tile {
  display: grid;
  place-items: center;
  min-height: 300px;
  border: 1px dashed rgba(35, 24, 23, 0.32);
  border-radius: 8px;
  background: linear-gradient(135deg, #e8c7b5, #fff1eb);
  color: var(--brown);
  font-weight: 800;
  text-align: center;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.65fr);
  gap: 34px;
  align-items: center;
  padding: clamp(30px, 5vw, 56px);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.about p,
.about .eyebrow {
  color: #f1d5c8;
}

.about ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  font-weight: 700;
}

.step span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.pricing {
  background: var(--blush);
}

.price-box {
  max-width: 760px;
  margin: auto;
  padding: clamp(26px, 4vw, 40px);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.price-row strong {
  color: var(--brown);
}

.price-note {
  margin-top: 18px;
  font-size: 14px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
  background: linear-gradient(135deg, var(--brown), var(--ink));
  color: var(--white);
}

.contact p,
.contact .eyebrow {
  color: #f1d5c8;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

label {
  display: grid;
  gap: 7px;
  color: var(--brown);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

textarea {
  resize: vertical;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 8%;
  background: #1f1717;
  color: var(--white);
}

footer p {
  color: var(--white);
}

@media (max-width: 980px) {
  .hero,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .services,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .logo img {
    width: 58px;
    height: 58px;
  }

  nav {
    gap: 14px;
  }

  h1 {
    font-size: 38px;
  }

  .services,
  .steps,
  .gallery {
    grid-template-columns: 1fr;
  }

  .price-row {
    flex-direction: column;
    gap: 4px;
  }
}
