@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap");

* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #5a5f66;
  --accent: #2f4b45;
  --soft: #f4f2ef;
  --warm: #f7eee2;
  --night: #0f1a18;
  --line: #e3ddd4;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--soft);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-bottom-color: var(--accent);
}

.sidebar-card {
  border: 1px solid var(--line);
  padding: 16px;
  background: #fff;
  font-size: 14px;
  line-height: 1.5;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

main {
  padding: 32px 8vw 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero {
  background: var(--night);
  color: #fff;
  padding: 48px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  padding: 14px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.button.secondary {
  background: #fff;
  color: var(--accent);
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 230px;
  background: var(--warm);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #eadfd2;
}

.price {
  font-size: 20px;
  font-weight: 700;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  background: #fff;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--soft);
  padding: 24px;
  border-radius: 20px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-step span {
  font-weight: 700;
  color: var(--accent);
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.gallery figure {
  flex: 1 1 180px;
  margin: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.gallery figcaption {
  padding: 12px;
  font-size: 13px;
  color: var(--muted);
}

.callout {
  background: var(--accent);
  color: #fff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  font-style: italic;
  color: var(--muted);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 14px;
  background: #fff;
}

.form-panel {
  display: flex;
  gap: 28px;
  background: var(--soft);
  padding: 28px;
  border-radius: 24px;
}

.form-panel form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 15px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-aside {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 14px 20px;
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

footer {
  padding: 24px 8vw 40px;
  background: var(--night);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.policy-page {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--soft);
  padding: 24px;
  border-radius: 18px;
}

.content-narrow {
  max-width: 740px;
}

.section-header {
  font-family: "Playfair Display", serif;
  font-size: 30px;
}

.note {
  color: var(--muted);
  font-size: 15px;
}

.dual {
  display: flex;
  gap: 24px;
}

.dual > div {
  flex: 1;
}

.image-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  main {
    padding: 24px 6vw 80px;
  }

  .split,
  .split.reverse,
  .form-panel,
  .dual {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
