* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1c1f;
  --muted: #5d646e;
  --surface: #f6f4f0;
  --accent: #1d5c4a;
  --accent-2: #b5732a;
  --shadow: 0 18px 45px rgba(27, 28, 31, 0.12);
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 24px 6vw 12px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.ad-label {
  font-size: 0.82rem;
  color: var(--muted);
  border: 1px solid #d8d8d8;
  padding: 6px 10px;
  border-radius: 20px;
  background: #faf9f6;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 40px 6vw 80px;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-color: #2f343b;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 22, 0.58);
}

.hero-content {
  position: relative;
  max-width: 620px;
  color: #ffffff;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  margin: 0 0 16px;
}

.hero p {
  font-size: 1.1rem;
  margin: 0 0 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: #184e3f;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: rgba(29, 92, 74, 0.12);
}

.section {
  padding: 80px 6vw;
}

.section.alt {
  background: var(--surface);
}

.bg-stage {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
  background-color: #2e333a;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.bg-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 22, 0.6);
}

.bg-stage > * {
  position: relative;
}

.bg-room {
  background-image: url("https://images.unsplash.com/photo-1504386106331-3e4e71712b38?w=1400&q=80");
  background-color: #32353b;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.bg-room::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 28, 31, 0.58);
}

.bg-room > * {
  position: relative;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.image-box {
  background-color: #e8e4dd;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.offset-block {
  margin-left: 12%;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid var(--accent-2);
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.form-wrap {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4d4d4;
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.footer {
  padding: 50px 6vw 70px;
  background: #111315;
  color: #f5f5f5;
}

.footer a {
  color: #f5f5f5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}

.disclaimer {
  margin-top: 28px;
  font-size: 0.9rem;
  color: #c7c7c7;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
  display: none;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.simple-header {
  padding: 60px 6vw 40px;
  background: var(--surface);
}

.content-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.content-columns > div {
  flex: 1 1 320px;
}

.muted {
  color: var(--muted);
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.callout {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.list {
  padding-left: 18px;
}

.notice {
  background: #fdf4ec;
  border-radius: 12px;
  padding: 16px 18px;
  border: 1px solid #f0d7c1;
}
