
:root {
  --bg: #f8f4ee;
  --bg-soft: #efe5d9;
  --paper: #ffffff;
  --text: #2f2b27;
  --muted: #6f665d;
  --accent: #8a6a4f;
  --accent-dark: #60462f;
  --line: rgba(96,70,47,.18);
  --shadow: 0 22px 60px rgba(96,70,47,.12);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 18px;
}

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

a {
  color: inherit;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248,244,238,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.logo {
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--accent-dark);
  text-decoration: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
}

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


.hero {
  min-height: 82vh;
  display: grid;
  place-items: center;
  padding: 80px 22px;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.35)),
    url('../images/hero-banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.hero-card {
  max-width: 980px;
  color: #fff;
  text-align: left;
}

.kicker {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  margin-bottom: 18px;
  opacity: .9;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.05;
  margin: 0 0 26px;
  font-weight: 500;
}

.hero p {
  max-width: 760px;
  font-size: 21px;
  margin: 0 0 18px;
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-block;
  font-family: Arial, sans-serif;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 999px;
  background: #fff;
  color: var(--accent-dark);
  font-weight: 700;
}

.button.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.75);
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 84px 22px;
}

.section {
  margin-bottom: 92px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(280px,.9fr);
  gap: 44px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(280px,.9fr) minmax(0,1.1fr);
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 54px);
}

.image-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 10px solid #fff;
}

.image-card img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

h2 {
  margin: 0 0 24px;
  color: var(--accent-dark);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 500;
}

h3 {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 28px;
  line-height: 1.25;
  font-weight: 500;
}

p {
  margin: 0 0 18px;
}

.lead {
  font-size: 21px;
  color: var(--muted);
}

.services-grid {
  display: grid;
  gap: 28px;
}

.service {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: 0 12px 36px rgba(96,70,47,.08);
}

.quote {
  margin: 24px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--accent);
  background: var(--bg-soft);
  border-radius: 18px;
  font-size: 22px;
}

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

.gallery img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(96,70,47,.12);
}

.contact-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  background: #fff;
}

.contact-form button {
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  background: var(--accent-dark);
  color: #fff;
  cursor: pointer;
}

.notice {
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: var(--muted);
}

.footer {
  background: var(--accent-dark);
  color: #fff;
  padding: 44px 22px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  font-family: Arial, sans-serif;
}

.footer a {
  color: #fff;
  margin-left: 18px;
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 70px 22px;
}

.legal-page .card {
  margin-bottom: 28px;
}

@media (max-width: 900px) {
  .nav-inner {
    display: block;
  }
  .nav-links {
    margin-top: 12px;
  }
  .split,
  .split.reverse,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .image-card img {
    height: 360px;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  body {
    font-size: 17px;
  }
  .hero {
    min-height: 74vh;
  }
  main {
    padding-top: 56px;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery img {
    height: 260px;
  }
}
