:root {
  --ink: #2b2422;
  --muted: #776c67;
  --paper: #fbf6f2;
  --shell: #efe5df;
  --copper: #b66d5b;
  --copper-dark: #744035;
  --taupe: #8d8982;
  --rose-light: #e8b2a5;
  --line: rgba(43, 36, 34, 0.12);
  --shadow: 0 18px 60px rgba(59, 43, 36, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(251, 246, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(116, 64, 53, 0.18);
  border-radius: 50%;
}

.brand-mark img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(182, 109, 91, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px clamp(18px, 6vw, 72px) 72px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(43, 36, 34, 0.74), rgba(116, 64, 53, 0.34) 55%, rgba(43, 36, 34, 0.12)),
    linear-gradient(0deg, rgba(43, 36, 34, 0.44), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(690px, 100%);
  color: white;
}

.hero-logo {
  width: min(360px, 72vw);
  margin: 0 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(43, 36, 34, 0.32);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--rose-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-section h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.hero h1 {
  font-size: clamp(3rem, 9vw, 6.8rem);
}

.hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 20px 0 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: white;
  background: var(--copper);
  box-shadow: 0 12px 30px rgba(182, 109, 91, 0.32);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.4);
}

.intro-section {
  padding: 0 clamp(18px, 6vw, 72px);
  background: var(--paper);
}

.intro-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1120px;
  margin: -38px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-grid article {
  min-height: 112px;
  padding: 24px;
  background: white;
}

.intro-grid strong,
.intro-grid span {
  display: block;
}

.intro-grid strong {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
}

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

.section,
.price-section,
.testimonial-section,
.contact-section {
  padding: 88px clamp(18px, 6vw, 72px);
}

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

.section-heading h2,
.contact-section h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.section-heading p:not(.eyebrow),
.contact-section p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
}

.service-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(59, 43, 36, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.service-card div {
  padding: 22px;
}

.service-card h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

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

.price-section {
  background: var(--shell);
}

.price-list {
  max-width: 860px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

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

.price-row strong {
  color: var(--copper-dark);
  white-space: nowrap;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  grid-auto-rows: 230px;
  gap: 14px;
  max-width: 1160px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.gallery-grid img:last-child {
  grid-column: span 2;
}

.testimonial-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  background: #eeeae4;
}

.quote {
  padding: clamp(26px, 4vw, 42px);
  background: white;
  border-left: 5px solid var(--copper);
  border-radius: 8px;
}

.quote p {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
}

.quote span {
  color: var(--muted);
  font-weight: 700;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--copper-dark);
  color: white;
}

.contact-section p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-section .button.secondary {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(18px, 6vw, 72px);
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

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

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    display: none;
    min-width: 220px;
    padding: 10px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    border-radius: 6px;
  }

  .hero {
    min-height: 88vh;
  }

  .intro-grid,
  .testimonial-section {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
  }

  .gallery-grid img:first-child,
  .gallery-grid img:last-child {
    grid-row: auto;
    grid-column: auto;
  }

  .contact-section {
    display: block;
  }
}

@media (max-width: 540px) {
  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 84vh;
    padding: 96px 18px 54px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(43, 36, 34, 0.78), rgba(43, 36, 34, 0.18)),
      linear-gradient(90deg, rgba(116, 64, 53, 0.58), rgba(43, 36, 34, 0.15));
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-logo {
    width: min(300px, 82vw);
  }

  .button {
    width: 100%;
  }

  .section,
  .price-section,
  .testimonial-section,
  .contact-section {
    padding: 64px 18px;
  }

  .intro-grid {
    margin-top: -22px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .price-row {
    padding: 16px 18px;
  }
}
