* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --ink: #1b1a19;
  --muted: #5f5a52;
  --accent: #2f5d62;
  --accent-2: #b56b3e;
  --paper: #ffffff;
  --sand: #efe7dc;
  --stone: #ded7cc;
  --shadow: 0 18px 40px rgba(27, 26, 25, 0.08);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  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(1100px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: relative;
  padding: 24px 0 10px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand strong {
  font-size: 24px;
}

.ad-label {
  font-size: 13px;
  color: var(--accent-2);
  border: 1px solid var(--accent-2);
  padding: 4px 10px;
  border-radius: 999px;
}

.nav-toggle {
  border: 1px solid var(--ink);
  background: var(--paper);
  padding: 8px 14px;
  font-size: 14px;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  padding: 6px 10px;
  border: 1px solid transparent;
}

.nav-links a[data-action] {
  border: 1px solid var(--ink);
  border-radius: 999px;
}

.nav-panel {
  display: none;
  margin-top: 12px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--stone);
}

.nav-panel.open {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero {
  position: relative;
  padding: 80px 0 120px;
  color: #fff;
  background-image: url("https://images.unsplash.com/photo-1502005097973-6a7082348e28?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 24, 21, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 560px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions-space {
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.section {
  padding: 70px 0;
}

.section-offset {
  background: var(--paper);
  border-top-right-radius: 80px;
  border-bottom-left-radius: 80px;
  box-shadow: var(--shadow);
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.section-sand {
  background: var(--sand);
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split > * {
  flex: 1 1 300px;
}

.image-card {
  background: #d5cdc0;
  padding: 12px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.image-card img {
  border-radius: 18px;
  width: 100%;
  height: 360px;
}

.offset-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.offset-block {
  background: var(--paper);
  padding: 24px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  flex: 1 1 260px;
}

.offset-block:nth-child(2) {
  margin-top: 32px;
}

.offset-block:nth-child(3) {
  margin-top: -20px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--paper);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.img-frame {
  background-color: #d5cdc0;
  overflow: hidden;
}

.service-card .img-frame {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent-2);
}

.highlight {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 36, 35, 0.65);
}

.highlight .container {
  position: relative;
  z-index: 1;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  background: var(--accent-2);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.form-wrap {
  background: var(--paper);
  border-radius: 30px;
  padding: 32px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 16px;
  background: #fff;
}

.footer {
  margin-top: auto;
  padding: 40px 0;
  background: #1f1d1b;
  color: #f6f1ea;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.legal-note {
  margin-top: 20px;
  font-size: 13px;
  color: #cfc7bd;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
  padding: 16px;
  border-radius: 16px;
  max-width: 320px;
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--paper);
  cursor: pointer;
}

.page-hero {
  padding: 60px 0 40px;
}

.page-hero img {
  width: 100%;
  height: 280px;
  border-radius: 28px;
  background: #d3cbc0;
}

.bg-sand {
  background-color: #d5cdc0;
}

.bg-stone {
  background-color: #cfc7bd;
}

.bg-warm {
  background-color: #d7cec4;
}

.bg-soft {
  background-color: #d7d0c6;
}

.bg-neutral {
  background-color: #d8d1c7;
}

.bg-light {
  background-color: #dcd4c9;
}

.bg-earth {
  background-color: #d4cbc1;
}

.bg-contrast {
  background-color: #2a2a2a;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.notice {
  background: var(--sand);
  padding: 16px;
  border-radius: 16px;
  margin-top: 18px;
}

@media (min-width: 900px) {
  .hero-content {
    margin-left: 6%;
  }

  .section-offset {
    padding-top: 90px;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 60px 0 90px;
  }

  .floating-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
