:root {
  --ink: #1f2428;
  --soft-ink: #3f4a52;
  --accent: #b46b5a;
  --accent-dark: #8f5144;
  --cream: #f6f1ec;
  --sand: #efe4d6;
  --mist: #f2f4f7;
  --shadow: 0 18px 40px rgba(22, 26, 29, 0.12);
  --radius: 18px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 0 6vw 100px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 6vw 10px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-block h1 {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--soft-ink);
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.nav-links a {
  font-weight: 600;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.hero-copy h2 {
  font-size: 2.7rem;
  margin: 0;
}

.hero-copy p {
  margin: 0;
  color: var(--soft-ink);
}

.hero-media {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 360px;
  background-color: #d8cfc7;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-media span {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.88);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.btn {
  align-self: flex-start;
  background: var(--accent);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
  box-shadow: none;
}

.split-row {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.image-card {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: #dcd2c6;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 320px;
}

.content-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content-block h3 {
  margin: 0;
  font-size: 2rem;
}

.offset-panel {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.bg-ambient {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.bg-ambient::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 17, 20, 0.55);
}

.bg-ambient > * {
  position: relative;
  z-index: 1;
}

.offset-panel::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: var(--accent);
  top: -20px;
  right: 30px;
  opacity: 0.18;
}

.testimonial-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.testimonial {
  flex: 1 1 220px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 18px;
  box-shadow: var(--shadow);
}

.service-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: var(--mist);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-sm);
  background-color: #dfe5e8;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.form-panel {
  flex: 1.1;
  background: var(--sand);
  padding: 30px;
  border-radius: var(--radius);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid #c9c4be;
  font-size: 1rem;
}

.form-aside {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.callout {
  background: var(--cream);
  padding: 18px;
  border-radius: var(--radius-sm);
}

.footer {
  padding: 40px 6vw 60px;
  background: #111417;
  color: #e6eaee;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f0d9cf;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.sticky-cta button {
  background: var(--accent-dark);
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid var(--accent-dark);
  background: #fff;
  cursor: pointer;
}

.page-hero {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 40px 6vw;
  background: var(--cream);
}

.page-hero h2 {
  margin: 0;
  font-size: 2.4rem;
}

.page-section {
  padding: 0 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-section .image-card img {
  height: 260px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 220px;
  background: var(--mist);
  padding: 20px;
  border-radius: var(--radius-sm);
}

.legal {
  padding: 30px 6vw 80px;
  max-width: 900px;
}

.legal h2 {
  margin-top: 0;
}

@media (max-width: 900px) {
  .hero,
  .split-row,
  .form-wrap {
    flex-direction: column;
  }

  .nav-links {
    align-items: flex-start;
  }
}
