* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1f;
  --muted: #585c63;
  --mist: #f4f1ee;
  --sand: #f8f5f0;
  --sage: #d9e4dd;
  --clay: #c88b6a;
  --ocean: #2f5d62;
  --night: #222431;
  --sun: #f3b562;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--ocean);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--night);
}

main {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 5vw 1.5rem;
  background: var(--mist);
  border-bottom: 1px solid #e1ded9;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 380px;
  text-align: right;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.nav-link {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 5vw 3rem;
  position: relative;
  min-height: 60vh;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(27, 27, 31, 0.75), rgba(27, 27, 31, 0.2));
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-color: #d4c6bb;
  z-index: -2;
}

.hero-content {
  position: relative;
  max-width: 520px;
  background: rgba(27, 27, 31, 0.72);
  padding: 2.5rem;
  border-radius: 12px;
}

.hero-content h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-content p {
  margin-bottom: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 30px;
  background: var(--sun);
  color: #221d1a;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  background: #f0a748;
  color: #1e1a17;
}

.section {
  padding: 2rem 5vw;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-title {
  font-size: 2rem;
  max-width: 520px;
}

.offset-split {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: stretch;
}

.offset-panel {
  flex: 1 1 320px;
  background: var(--mist);
  padding: 2rem;
  border-radius: 12px;
  position: relative;
  margin-top: 1.5rem;
}

.offset-panel.highlight {
  background: var(--sage);
  margin-top: 0;
  margin-left: -1.5rem;
}

.media-block {
  flex: 1 1 320px;
  background: #d9d1c7;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.media-block img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.card-media {
  background: #eadfd4;
}

.card-media img {
  width: 100%;
  height: 180px;
}

.card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.price {
  font-weight: 700;
  color: var(--ocean);
}

.layered {
  background: var(--night);
  color: #f8f4ef;
  position: relative;
  overflow: hidden;
}

.layered::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.4);
}

.layered .layered-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.layered-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-color: #2a2a2a;
  z-index: -1;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1518717758536-85ae29035b6d?w=1400&q=80");
}

.bg-layered {
  background-image: url("https://images.unsplash.com/photo-1517423440428-a5a00ad493e8?w=1400&q=80");
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1477884213360-7e9d7dcc1e48?w=800&q=80");
}

.bg-contact {
  background-image: url("https://images.unsplash.com/photo-1450778869180-41d0601e046e?w=800&q=80");
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.form-section {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1 1 220px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 0.7rem;
  border-radius: 8px;
  border: 1px solid #d1ccc5;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  bottom: 1.2rem;
  margin: 2rem 5vw;
  background: #ffffff;
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  gap: 1rem;
}

.sticky-cta span {
  font-weight: 600;
}

.footer {
  margin-top: auto;
  padding: 3rem 5vw 2.5rem;
  background: var(--mist);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 1px solid #e1ded9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  background: #ffffff;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn-ghost {
  background: transparent;
  border: 1px solid #c2bdb5;
  color: var(--ink);
}

.btn-ghost:hover,
.btn-ghost:focus {
  background: #f2ede7;
}

.page-title {
  padding: 3rem 5vw 1rem;
  font-size: 2.4rem;
}

.text-block {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero-note {
  font-size: 0.95rem;
  opacity: 0.9;
}

@media (max-width: 860px) {
  .hero-content {
    padding: 2rem;
  }

  .offset-panel.highlight {
    margin-left: 0;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
