* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2429;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: #2a4f7a;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 28px 6vw 0;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.82rem;
  max-width: 220px;
  text-align: center;
  color: #6b4c36;
  background: #f1e7d6;
  padding: 6px 10px;
  border-radius: 20px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}

.nav-links a {
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 20px 6vw 0;
}

.hero-top {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-copy h1 {
  font-size: 2.4rem;
  line-height: 1.2;
}

.hero-image {
  flex: 0.9;
  background: #d7dfe6;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.primary-btn {
  background: #2a4f7a;
  color: #fff;
}

.secondary-btn {
  background: #f0c39c;
  color: #3b2c22;
}

.ghost-btn {
  background: transparent;
  border: 1px solid #2a4f7a;
  color: #2a4f7a;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.asym-block.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1.1;
  min-width: 260px;
}

.asym-image {
  flex: 0.9;
  min-width: 220px;
  background: #cfe0d6;
  border-radius: 20px;
  overflow: hidden;
}

.floating-note {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  align-self: flex-start;
  max-width: 360px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card .card-image {
  background: #ead7c5;
  border-radius: 14px;
  overflow: hidden;
}

.price {
  font-weight: 700;
  color: #2a4f7a;
}

.split-band {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 36px 6vw;
  background: #1f2429;
  color: #f7f5f2;
  align-items: center;
}

.split-band .band-text {
  flex: 1.1;
}

.split-band .band-image {
  flex: 0.9;
  background: #414851;
  border-radius: 20px;
  overflow: hidden;
}

.testimonial {
  background: #fdf8f1;
  border-radius: 18px;
  padding: 18px;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.form-panel {
  flex: 1.2;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccd2d8;
  font-size: 0.95rem;
}

.form-aside {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sticky-cta {
  position: sticky;
  top: 70vh;
  align-self: flex-end;
  background: #2a4f7a;
  color: #fff;
  padding: 14px 20px;
  border-radius: 16px;
}

.footer {
  padding: 40px 6vw;
  background: #efebe5;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  max-width: 280px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-background {
  background: #ddd4c8;
  border-radius: 28px;
  overflow: hidden;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-workshop {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.bg-atelier {
  background-image: url("https://images.unsplash.com/photo-1451976426598-a7593bd6d0b2?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.bg-materials {
  background-image: url("https://images.unsplash.com/photo-1501594907352-04cda38ebc29?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.bg-interior {
  background-image: url("https://images.unsplash.com/photo-1502005097973-6a7082348e28?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.bg-kitchen {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=600&q=80");
  background-size: cover;
  background-position: center;
}

.bg-living {
  background-image: url("https://images.unsplash.com/photo-1501183638710-841dd1904471?w=600&q=80");
  background-size: cover;
  background-position: center;
}

.bg-exterior {
  background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.bg-team {
  background-image: url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.bg-plan {
  background-image: url("https://images.unsplash.com/photo-1493666438817-866a91353ca9?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.bg-texture {
  background-image: url("https://images.unsplash.com/photo-1481277542470-605612bd2d61?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.bg-floor {
  background-image: url("https://images.unsplash.com/photo-1472224371017-08207f84aaae?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.page-title {
  padding: 20px 6vw 0;
}

.page-title h1 {
  font-size: 2.2rem;
}

.simple-content {
  padding: 0 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.notice-box {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
}

.inline-cta {
  font-weight: 700;
  color: #2a4f7a;
}

@media (max-width: 900px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav-links {
    text-align: left;
  }

  .hero-top,
  .asym-block,
  .split-band,
  .form-wrap {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    align-self: stretch;
    text-align: center;
  }
}
