* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1b1d;
  --muted: #5b5b63;
  --accent: #0b6b5f;
  --accent-soft: #e0f3ef;
  --sand: #f4f1ec;
  --slate: #eef0f4;
  --deep: #0d1b2a;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 24px 0 8px;
}

.nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.ad-label {
  font-size: 0.78rem;
  color: var(--muted);
  border: 1px solid #d5d5dc;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffffff;
}

.menu-link {
  font-size: 0.92rem;
  color: var(--muted);
}

.menu-link:hover {
  color: var(--accent);
}

.hero {
  margin-top: 20px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .split-text,
.split .split-media {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-text h1,
.split-text h2,
.split-text h3 {
  margin: 0 0 16px;
}

.split-text p {
  margin: 0 0 16px;
  color: var(--muted);
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn.secondary {
  background: var(--deep);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:hover {
  filter: brightness(1.05);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.section {
  padding: 60px 0;
}

.section.sand {
  background: var(--sand);
}

.section.slate {
  background: var(--slate);
}

.section.deep {
  background: var(--deep);
  color: #ffffff;
}

.section.deep p,
.section.deep a {
  color: #f2f4f7;
}

.image-frame {
  background: #dfe6ea;
  padding: 10px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-frame.small {
  padding: 6px;
}

.image-frame img {
  border-radius: 18px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 200px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(17, 22, 32, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h4 {
  margin: 0;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 50;
}

.floating-cta span {
  font-size: 0.82rem;
  color: var(--muted);
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.form-panel {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(12, 14, 20, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd3dc;
  font-size: 0.95rem;
  font-family: inherit;
}

.note {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid #e0e2e8;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.disclaimer {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  width: min(360px, 90%);
  display: none;
  z-index: 60;
}

.cookie-banner p {
  margin: 0 0 12px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--muted);
}

.legal-content h2 {
  color: var(--ink);
}

.hero-image {
  min-height: 320px;
}

.bg-atria {
  background-color: #d8e2e7;
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-atria .split-text {
  background: rgba(255, 255, 255, 0.9);
  padding: 24px;
  border-radius: 18px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 20, 30, 0.08);
  flex-wrap: wrap;
}

.service-item strong {
  font-weight: 600;
}

.service-item span {
  color: var(--accent);
  font-weight: 600;
}

.contact-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 16px 30px rgba(10, 12, 18, 0.08);
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-cta {
    right: 16px;
    left: 16px;
  }
}
