* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #5b5f66;
  --paper: #f7f4ef;
  --accent: #7a3e2b;
  --accent-soft: #f0e2d6;
  --sky: #e7eef4;
  --moss: #dfe8db;
  --sand: #f3ede3;
  --shadow: 0 18px 40px rgba(20, 20, 20, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  padding: 28px 6vw 16px;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.brand {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.86rem;
  color: var(--muted);
  max-width: 320px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(20, 20, 20, 0.08);
}

main {
  padding: 0 6vw 80px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  padding: 40px 0 20px;
}

.hero-text {
  flex: 1 1 340px;
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-visual {
  flex: 1 1 320px;
  min-height: 320px;
  border-radius: 32px;
  background-color: var(--sky);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26, 26, 26, 0.15), rgba(122, 62, 43, 0.1));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  font-weight: 600;
}

.asym-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin: 60px 0;
}

.asym-section.reverse {
  flex-direction: row-reverse;
}

.offset-box {
  flex: 1 1 320px;
  background: var(--sand);
  padding: 26px;
  border-radius: 20px;
  position: relative;
  top: 18px;
}

.offset-box.dark {
  background: var(--moss);
}

.img-frame {
  flex: 1 1 320px;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--sky);
  box-shadow: var(--shadow);
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.feature-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(25, 25, 25, 0.08);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card .img-frame {
  height: 170px;
  border-radius: 0;
  background-color: var(--sand);
}

.service-card img {
  width: 100%;
  height: 100%;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.highlight-strip {
  background-color: var(--accent-soft);
  padding: 26px;
  border-radius: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.highlight-strip .text {
  flex: 2 1 320px;
}

.highlight-strip .action {
  flex: 1 1 200px;
  text-align: right;
}

.form-shell {
  background: #fff;
  padding: 32px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-option {
  flex: 1 1 220px;
  background: var(--paper);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d8d2c9;
  font-size: 0.95rem;
  background: #fff;
}

.form-message {
  font-size: 0.9rem;
  color: var(--accent);
  min-height: 20px;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.testimonial {
  flex: 1 1 240px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(18, 18, 18, 0.08);
}

.story-panel {
  background-color: var(--sky);
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.story-panel .text {
  flex: 2 1 300px;
}

.story-panel .image {
  flex: 1 1 240px;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin: 30px 0 40px;
}

.page-hero .copy {
  flex: 1 1 320px;
}

.page-hero .visual {
  flex: 1 1 320px;
  min-height: 220px;
  border-radius: 22px;
  background-color: var(--moss);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.column {
  flex: 1 1 300px;
}

.legal {
  max-width: 900px;
}

footer {
  background: #1f1f1f;
  color: #f5f1ea;
  padding: 40px 6vw;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.footer-grid a {
  color: #f5f1ea;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #d8d2c9;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #fff;
  padding: 12px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.hidden {
  display: none;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
}

.bg-contrast {
  background-image: url("https://images.unsplash.com/photo-1503676382389-4809596d5290?w=1400&q=80");
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
}

.bg-about {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
}

.bg-contact {
  background-image: url("https://images.unsplash.com/photo-1475721027785-f74eccf877e2?w=1400&q=80");
}
