@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
  --bg: #f6f3ee;
  --ink: #1f1d1b;
  --muted: #5c5a57;
  --accent: #b62d2d;
  --accent-soft: #f0d6d6;
  --sand: #efe8df;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 7vw;
  gap: 1rem;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  padding: 2rem 7vw 4rem;
  gap: 2rem;
  position: relative;
}

.hero-text {
  flex: 1 1 340px;
  padding: 2rem 0;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 0 0 1rem;
}

.hero-text p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 1.8rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  max-width: 420px;
}

.hero-visual {
  flex: 1 1 320px;
  position: relative;
  min-height: 320px;
}

.hero-visual img {
  border-radius: 1.8rem;
  height: 100%;
  object-fit: cover;
}

.floating-tag {
  position: absolute;
  bottom: -1.2rem;
  left: 2rem;
  background: var(--accent-soft);
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.section {
  padding: 4rem 7vw;
  position: relative;
}

.section.alt {
  background: var(--sand);
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 1.2rem;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  position: relative;
}

.media img {
  border-radius: 1.2rem;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.offset-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 1.5rem;
  margin-top: -3rem;
  margin-left: 3rem;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  flex: 1 1 240px;
  background: var(--white);
  border-radius: 1.2rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.card img {
  border-radius: 0.9rem;
  height: 140px;
  object-fit: cover;
}

.service-price {
  font-weight: 600;
  color: var(--accent);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.timeline-step span {
  font-weight: 700;
  color: var(--accent);
}

.testimonial {
  background: var(--white);
  padding: 1.6rem;
  border-radius: 1.2rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.testimonial.spaced {
  margin-top: 1.2rem;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

form {
  flex: 1 1 320px;
  background: var(--white);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

label {
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.4rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 0.8rem;
  border: 1px solid #d3cbc2;
  margin-bottom: 1rem;
  font-family: inherit;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  top: 1rem;
  align-self: flex-start;
  background: var(--accent);
  color: var(--white);
  padding: 1.2rem;
  border-radius: 1.2rem;
  max-width: 240px;
}

.footer {
  padding: 3rem 7vw;
  background: #1c1b1a;
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer a {
  color: var(--white);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  z-index: 999;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  flex: 1 1 220px;
}

.policy-list {
  max-width: 820px;
}

.policy-list h3 {
  margin-top: 2rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-card {
  background: var(--white);
  padding: 1.6rem;
  border-radius: 1.2rem;
  flex: 1 1 220px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.hero-lite {
  padding: 3rem 7vw 1rem;
}

.hero-lite h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

@media (max-width: 768px) {
  .offset-box {
    margin: 1.5rem 0 0;
  }

  .sticky-cta {
    position: relative;
    top: auto;
    max-width: 100%;
  }

  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
