@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Playfair+Display:wght@500;700&display=swap");

:root {
  --ink: #1e1e24;
  --muted: #4f5b62;
  --accent: #b44a2f;
  --accent-dark: #8f3720;
  --sand: #f3eee7;
  --night: #1f2a2e;
  --olive: #7a6b4c;
  --sky: #d9e6ef;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(27, 28, 30, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.header {
  background: var(--white);
  padding: 24px 0 18px;
  border-bottom: 1px solid rgba(27, 28, 30, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
}

.brand h1 {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.nav {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
}

.nav a {
  font-size: 0.95rem;
  color: var(--muted);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-bottom: 2px solid var(--accent);
  color: var(--ink);
}

.ad-label {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--accent-dark);
  font-weight: 600;
}

.hero {
  background: var(--night);
  color: var(--white);
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1543785734-4b6e564642f8?w=1400&q=80") center/cover no-repeat;
  opacity: 0.45;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.hero h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0;
}

.hero p {
  max-width: 560px;
  margin: 0;
  font-size: 1.05rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  width: fit-content;
}

.section {
  padding: 70px 0;
}

.bg-plaza {
  background-color: #2b2f33;
  background: url("https://images.unsplash.com/photo-1655410799546-275c27f50616?w=1400&q=80") center/cover no-repeat;
  color: var(--white);
}

.bg-plaza .section-title,
.bg-plaza p {
  color: var(--white);
}

.bg-retiro {
  background-color: #2b3a33;
  background: url("https://images.unsplash.com/photo-1605684437254-344f03b1e65c?w=1400&q=80") center/cover no-repeat;
  color: var(--white);
}

.bg-retiro .section-title,
.bg-retiro p {
  color: var(--white);
}

.overlay-section {
  position: relative;
}

.overlay-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 24, 28, 0.45);
}

.overlay-section .container {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 16px;
  font-family: "Playfair Display", serif;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-media {
  flex: 1;
  position: relative;
}

.image-frame {
  background: var(--sky);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offset-card {
  background: var(--white);
  padding: 26px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: absolute;
  bottom: -28px;
  right: -20px;
  width: min(240px, 80%);
}

.offset-card span {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 260px;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.service-card .service-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.banner {
  background: var(--olive);
  color: var(--white);
  padding: 24px 0;
}

.banner .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.banner a {
  background: var(--white);
  color: var(--olive);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
}

.testimonial {
  background: var(--white);
  padding: 20px 22px;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
}

.form-panel {
  background: var(--white);
  padding: 26px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(27, 28, 30, 0.15);
  font-family: inherit;
}

.form-panel button {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}

.form-status {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  background: var(--night);
  color: var(--white);
  padding: 40px 0;
}

.footer a {
  color: var(--white);
  font-weight: 600;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer small {
  color: rgba(255, 255, 255, 0.75);
}

.disclaimer {
  background: rgba(255, 255, 255, 0.1);
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: var(--white);
  color: var(--ink);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 360px;
  display: none;
  z-index: 6;
}

.cookie-banner button {
  margin-top: 12px;
  margin-right: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: var(--white);
}

.cookie-reject {
  background: var(--sand);
}

.page-hero {
  background: var(--sky);
  padding: 60px 0 40px;
}

.page-hero h2 {
  font-family: "Playfair Display", serif;
  margin: 0 0 12px;
  font-size: 2.4rem;
}

.legal-content {
  background: var(--white);
  padding: 30px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .offset-card {
    position: static;
    width: 100%;
  }

  .ad-label {
    width: 100%;
    margin-left: 0;
  }
}
