* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1f2328;
  background: #f5f3ef;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1f2328;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 32px 6vw 80px;
}

header {
  background: #f0ece6;
  border-bottom: 1px solid #d6d0c8;
}

.mag-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 6vw;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a534b;
  max-width: 240px;
}

.mag-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-text,
.hero-media {
  flex: 1 1 320px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.15;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1f2328;
  background: #1f2328;
  color: #f5f3ef;
  font-size: 0.95rem;
}

.btn.secondary {
  background: transparent;
  color: #1f2328;
}

.mag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.mag-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mag-col.wide {
  flex: 2 1 360px;
}

.img-frame {
  background: #d9d1c6;
  padding: 8px;
  border-radius: 18px;
}

.img-frame img {
  border-radius: 14px;
  object-fit: cover;
}

.mag-band {
  background: #ece6dd;
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.backdrop-room {
  background-color: #2f3438;
  background-image: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f5f3ef;
  position: relative;
  overflow: hidden;
}

.backdrop-room::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 35, 40, 0.58);
}

.backdrop-room > * {
  position: relative;
  z-index: 1;
}

.quote {
  font-style: italic;
  color: #3a3f44;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 250px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e4ded5;
}

.price-tag {
  font-weight: 600;
  color: #24534e;
}

.inline-link {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 280px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #e4ded5;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cfc7bc;
  font-size: 0.95rem;
  background: #faf8f5;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: #5a534b;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 22px;
  background: #24534e;
  color: #f5f3ef;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #24534e;
  z-index: 20;
  font-size: 0.9rem;
}

.legal {
  background: #f0ece6;
  padding: 30px 6vw;
  border-top: 1px solid #d6d0c8;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.9rem;
  color: #3f3f3f;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid #e4ded5;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
  box-shadow: 0 16px 30px rgba(31, 35, 40, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hidden {
  display: none;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.two-column .panel {
  flex: 1 1 280px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e4ded5;
}

.small-title {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #6a6157;
}

@media (max-width: 720px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
