* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1c1c;
  --muted: #5b5b5b;
  --bg: #f6f2ee;
  --accent: #d86a4a;
  --accent-dark: #b85136;
  --cream: #fff7f1;
  --stone: #e6e0da;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  display: block;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 28px 0 10px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.82rem;
  color: var(--muted);
  padding-left: 10px;
  border-left: 1px solid #cfc7bf;
}

.hero {
  padding: 50px 0 80px;
  position: relative;
}

.hero-layout {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-text {
  flex: 1.1;
}

.hero-text h1 {
  font-size: clamp(2.3rem, 3.2vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-text p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.hero-image {
  flex: 0.9;
  position: relative;
}

.image-frame {
  background-color: #e4dcd2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image .image-frame {
  transform: translateY(20px);
}

.accent-block {
  position: absolute;
  width: 180px;
  height: 140px;
  background: var(--cream);
  border-radius: 18px;
  top: -30px;
  right: -20px;
  z-index: -1;
}

.asym-section {
  padding: 70px 0;
}

.bg-vision {
  background-color: #efe8e2;
  background-image: url("https://images.unsplash.com/photo-1686100511433-4691a531af33?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHw1Mnx8SW5uZW5yYXVtLVZpc3VhbGlzaWVydW5nZW4lMjBmdWVyJTIwQnVlcm9zJTJDJTIwZGllJTIwRW50c2NoZWlkdW5nZW4lMjBncmVpZmJhciUyMG1hY2hlbi58ZGV8MHwwfHx8MTc4NDI4MDYyOXww&ixlib=rb-4.1.0&q=80&w=1080");
  background-size: cover;
  background-position: center;
  position: relative;
}

.bg-vision::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 242, 238, 0.88);
}

.bg-vision > .container {
  position: relative;
}

.asym-row {
  display: flex;
  gap: 36px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1;
}

.asym-text h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.asym-text p {
  color: var(--muted);
}

.asym-image {
  flex: 1;
}

.floating-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-top: 24px;
}

.floating-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.floating-card li {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.pricing {
  background: #fff;
  padding: 80px 0;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border-radius: 16px;
  background: var(--cream);
}

.pricing-item h3 {
  font-size: 1.2rem;
}

.pricing-item span {
  font-weight: 700;
  color: var(--accent);
}

.pricing-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.process {
  padding: 70px 0;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.step {
  background: #fff;
  padding: 20px 24px;
  border-radius: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow);
}

.step-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.gallery {
  padding: 70px 0;
  background: var(--stone);
}

.gallery-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.gallery-card {
  flex: 1 1 250px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-section {
  padding: 80px 0;
  background: #fff;
}

.form-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.form-panel {
  flex: 1.1;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7cec4;
  font-size: 0.95rem;
  width: 100%;
  font-family: inherit;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.form-side {
  flex: 0.9;
  background: var(--cream);
  padding: 24px;
  border-radius: 18px;
}

.form-side h3 {
  margin-bottom: 10px;
}

.footer {
  padding: 40px 0 70px;
  background: #1f1c1a;
  color: #f4efe9;
}

.footer a {
  color: #f4efe9;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.88rem;
  color: #d7cdc5;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 30;
}

.sticky-cta a {
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
  width: min(360px, 90%);
  z-index: 40;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.is-hidden {
  display: none;
}

.page-hero {
  padding: 60px 0 30px;
}

.page-hero h1 {
  font-size: 2.4rem;
}

.content-block {
  padding: 40px 0 60px;
}

.content-block p {
  color: var(--muted);
  margin-bottom: 14px;
}

.contact-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.list-clean {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.note-box {
  background: var(--cream);
  padding: 18px;
  border-radius: 14px;
}

@media (max-width: 960px) {
  .hero-layout,
  .asym-row,
  .form-wrapper {
    flex-direction: column;
  }

  .hero-image .image-frame {
    transform: none;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
