* {
  box-sizing: border-box;
}

:root {
  --bg: #f5f3ef;
  --ink: #1e1f22;
  --muted: #5b6168;
  --accent: #2a6f6f;
  --accent-2: #caa874;
  --panel: #ffffff;
  --soft: #efe8dd;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.header {
  padding: 28px 0 10px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #2a2620;
}

.hero {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 0 60px;
}

.hero-text {
  flex: 1;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  margin-bottom: 16px;
}

.hero-card {
  flex: 1;
  background: var(--panel);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transform: translateY(22px);
}

.img-frame {
  background: #dde3e2;
  border-radius: 14px;
  overflow: hidden;
}

.frame-hero {
  height: 320px;
}

.frame-medium {
  height: 280px;
}

.frame-wide {
  height: 320px;
}

.frame-card {
  height: 160px;
}

.frame-dark {
  background-color: #2a2f33;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: var(--soft);
}

.offset-left {
  display: flex;
  gap: 30px;
  align-items: center;
}

.offset-left .panel {
  background: var(--panel);
  padding: 26px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  flex: 1;
  transform: translateX(-20px);
}

.offset-left .visual {
  flex: 1;
}

.offset-right {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.offset-right .panel {
  flex: 1.1;
  background: var(--panel);
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transform: translateX(20px);
}

.offset-right .visual {
  flex: 0.9;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  list-style: none;
  margin: 18px 0 0;
}

.pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: #e8efe7;
  font-size: 0.85rem;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  background: var(--panel);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  flex: 1 1 260px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
}

.service-content {
  padding: 18px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.story {
  display: flex;
  gap: 22px;
  align-items: center;
}

.story .note {
  background: var(--panel);
  padding: 20px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.bg-photo {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
}

.bg-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 20, 22, 0.55);
}

.bg-photo .container {
  position: relative;
  z-index: 1;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: var(--panel);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.form-wrap {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.form-panel {
  background: var(--panel);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  flex: 1;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
}

.footer {
  padding: 40px 0;
  background: #111416;
  color: #d4d8dc;
}

.footer a {
  color: #d4d8dc;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-grid > div {
  flex: 1 1 200px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #b5bdc3;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 20;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--panel);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  padding: 40px 0 20px;
}

.legal {
  background: var(--panel);
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .hero,
  .offset-left,
  .offset-right,
  .story,
  .form-wrap {
    flex-direction: column;
  }

  .hero-card,
  .offset-left .panel,
  .offset-right .panel {
    transform: none;
  }
}
