* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1e1f22;
  --muted: #5a5f69;
  --accent: #1e6b5a;
  --accent-2: #c97b2f;
  --soft: #f4f2ee;
  --soft-2: #eef3f3;
  --line: #d9d8d4;
  --bg-dark: #1a2322;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 5vw;
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--accent);
}

main {
  flex: 1;
}

section {
  padding: 56px 5vw;
}

.split {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 320px;
}

.split-content h1,
.split-content h2 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.split-content p {
  margin-bottom: 16px;
  color: var(--muted);
}

.hero {
  color: #ffffff;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero .split {
  position: relative;
  z-index: 1;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 12px;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.btn.secondary:hover,
.btn:hover,
button.btn:hover {
  opacity: 0.9;
}

.media-frame {
  background: var(--soft);
  border-radius: 20px;
  overflow: hidden;
}

.media-frame img {
  width: 100%;
  height: 100%;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.cards {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card h3 {
  font-size: 20px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.muted {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.bg-soft {
  background: var(--soft);
}

.bg-soft-2 {
  background: var(--soft-2);
}

.bg-dark {
  background: var(--bg-dark);
  color: #ffffff;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
}

.bg-shadows {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
}

.bg-about {
  background-image: url("https://images.unsplash.com/photo-1519710164239-da123dc03ef4?w=1400&q=80");
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
}

.bg-contact {
  background-image: url("https://images.unsplash.com/photo-1451976426598-a7593bd6d0b2?w=1400&q=80");
}

.form-panel {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 14px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.sticky-cta a {
  color: var(--accent);
  font-weight: 600;
}

.footer {
  background: #f7f7f7;
  padding: 32px 5vw;
  font-size: 14px;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-grid div {
  flex: 1 1 200px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 30;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.image-panel {
  background: var(--soft);
  border-radius: 18px;
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  height: 100%;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.list li {
  color: var(--muted);
}

.reference-list a {
  color: var(--accent);
}

@media (max-width: 768px) {
  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}
