*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1d1f24;
  background-color: #f7f5f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.top-bar {
  padding: 20px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.9rem;
  background-color: #e9d8b5;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #253043;
  color: #fdfcf9;
  position: relative;
}

.hero-overlay {
  background: rgba(20, 24, 33, 0.55);
  padding: 80px 0 120px;
}

.hero-layout {
  display: flex;
  gap: 32px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0 0 16px;
}

.hero-card {
  flex: 0 1 320px;
  background-color: rgba(253, 252, 249, 0.95);
  color: #1d1f24;
  padding: 24px;
  border-radius: 18px;
  margin-bottom: -60px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: #2b4c7e;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background-color: transparent;
  color: #2b4c7e;
  border: 1px solid #2b4c7e;
}

.button.ghost {
  background-color: #f0eadf;
  color: #1d1f24;
  border: 1px solid #d7c8aa;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background-color: #ffffff;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 18px;
}

.asym-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.offset-left {
  margin-left: -40px;
}

.offset-right {
  margin-right: -40px;
}

.image-frame {
  background-color: #dfe6ec;
  padding: 12px;
  border-radius: 16px;
  flex: 1 1 280px;
}

.image-frame img {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  object-fit: cover;
}

.text-card {
  background-color: #fdfcf9;
  padding: 28px;
  border-radius: 18px;
  flex: 1 1 320px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.services-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  background-color: #fdfcf9;
  border-radius: 18px;
  overflow: hidden;
  flex: 1 1 260px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-tag {
  font-weight: 700;
  color: #2b4c7e;
}

.quote-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.quote {
  flex: 1 1 260px;
  background-color: #2b4c7e;
  color: #fff;
  padding: 20px;
  border-radius: 16px;
}

.booking-section {
  background-image: url("https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1a1f2b;
  color: #fff;
}

.booking-overlay {
  background: rgba(18, 22, 30, 0.7);
  padding: 80px 0;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-form label {
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d0d6dd;
  font-size: 1rem;
}

.booking-form textarea {
  min-height: 120px;
}

.inline-link {
  color: #2b4c7e;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #f0b429;
  color: #1d1f24;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.footer {
  background-color: #1a1f2b;
  color: #f7f5f1;
  padding: 50px 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.legal-text {
  font-size: 0.9rem;
  color: #d6dbe3;
}

.page-hero {
  padding: 70px 0 40px;
}

.page-hero h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 12px;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-card {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  flex: 1 1 260px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
  width: min(340px, 90vw);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}
