* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1b1a17;
  background: #f7f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.nav {
  padding: 24px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand h1 {
  font-size: 1.6rem;
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  font-size: 0.9rem;
  color: #4c3c2a;
}

.ad-label {
  font-size: 0.85rem;
  background: #efe7dc;
  padding: 8px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: #1b1a17;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 26px 0 40px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-visual {
  background-color: #d9d1c8;
  border-radius: 28px;
  overflow: hidden;
  height: 380px;
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-copy h2 {
  font-size: 2.6rem;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1b1a17;
  background: #1b1a17;
  color: #fff;
  cursor: pointer;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button.secondary {
  background: transparent;
  color: #1b1a17;
}

.button.ghost {
  background: #f0e8de;
  border-color: transparent;
  color: #1b1a17;
}

.floating-note {
  align-self: flex-start;
  padding: 14px 18px;
  border-radius: 18px;
  background: #efe7dc;
  max-width: 320px;
  margin-left: auto;
}

.story {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 34px 0;
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 26px;
  border-radius: 22px;
}

.story-split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-visual {
  background-color: #d9d1c8;
  border-radius: 22px;
  overflow: hidden;
  height: 260px;
}

.story-visual img {
  width: 100%;
  height: 100%;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #816a4f;
}

.asym-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fdfbf7;
  border-radius: 24px;
  padding: 24px;
}

.panel.dark {
  background: #1b1a17;
  color: #fdfbf7;
}

.panel.dark .button {
  background: #fdfbf7;
  color: #1b1a17;
  border-color: transparent;
}

.offset-left {
  margin-left: 4%;
}

.offset-right {
  margin-right: 6%;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-tile {
  background: #d9d1c8;
  border-radius: 18px;
  overflow: hidden;
  height: 240px;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
}

.services-reveal {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 28px;
  border-radius: 26px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  background: #f5efe6;
  border-radius: 18px;
}

.price {
  font-weight: 600;
  color: #4c3c2a;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px;
  border-radius: 28px;
  background: #1b1a17;
  color: #fdfbf7;
}

.form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap label {
  font-size: 0.9rem;
}

.form-wrap select,
.form-wrap input,
.form-wrap textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: none;
  font-size: 1rem;
}

.form-wrap button {
  border: none;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #efe7dc;
  padding: 10px 0;
  margin-top: 28px;
}

.sticky-cta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer {
  padding: 36px 0 46px;
  margin-top: auto;
  font-size: 0.9rem;
  background: #efe7dc;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  text-decoration: underline;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1b1a17;
  color: #fdfbf7;
  padding: 18px;
  border-radius: 20px;
  max-width: 320px;
  display: none;
  z-index: 10;
}

.cookie-banner p {
  margin: 0 0 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
}

.page-hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px;
  background-color: #fdfbf7;
  border-radius: 24px;
}

.page-hero img {
  border-radius: 24px;
  height: 280px;
  width: 100%;
  background-color: #d9d1c8;
}

.content-block {
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (min-width: 860px) {
  .hero-grid {
    flex-direction: row;
  }

  .hero-card {
    flex: 1.1;
  }

  .hero-visual {
    flex: 0.9;
    height: 420px;
  }

  .story-split {
    flex-direction: row;
  }

  .story-split .story-block {
    flex: 1.1;
  }

  .story-visual {
    flex: 0.9;
    height: 320px;
  }

  .asym-grid {
    flex-direction: row;
  }

  .asym-grid .panel {
    flex: 1;
  }

  .gallery-row {
    flex-direction: row;
  }

  .gallery-tile {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .contact-grid {
    flex-direction: row;
  }
}
