:root {
  --color-ink: #14324a;
  --color-ink-soft: #35536b;
  --color-accent: #db1d55;
  --color-accent-strong: #b91546;
  --color-accent-soft: #f9d4de;
  --color-orange: #f3a147;
  --color-sand: #f7efe9;
  --color-sand-deep: #f1e2d7;
  --color-card: #fffdfb;
  --color-border: rgba(20, 50, 74, 0.12);
  --color-shadow: rgba(14, 32, 49, 0.12);
  --color-shadow-strong: rgba(14, 32, 49, 0.2);
  --max-width: 1180px;
  --header-height: 88px;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --transition: 180ms ease;
  --font-headline: "Josefin Sans", sans-serif;
  --font-copy: "Bitter", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(243, 161, 71, 0.14), transparent 32%),
    linear-gradient(180deg, #f9f4ef 0%, #fffaf6 26%, #ffffff 100%);
  color: var(--color-ink);
  font-family: var(--font-copy);
  line-height: 1.65;
}

body.nav-open,
body.consent-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.eyebrow,
.footer-eyebrow,
.consent-eyebrow {
  margin: 0 0 12px;
  color: var(--color-accent);
  font-family: var(--font-headline);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 14px;
  color: var(--color-ink);
  font-family: var(--font-headline);
  line-height: 1.06;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 5.35rem);
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.3rem);
}

h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

p {
  margin: 0 0 16px;
}

ul {
  margin: 0;
  padding: 0;
}

.lead {
  max-width: 54rem;
  font-size: clamp(1.05rem, 1.3vw, 1.3rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.86rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #db1d55 0%, #ee4f78 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(219, 29, 85, 0.23);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #c71b4f 0%, #e64670 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--color-ink);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #fff;
  border-color: rgba(20, 50, 74, 0.16);
}

.btn-whatsapp {
  background: rgba(20, 50, 74, 0.07);
  color: var(--color-ink);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(219, 29, 85, 0.35);
  color: var(--color-ink);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(219, 29, 85, 0.6);
  color: var(--color-accent);
}

.btn-text {
  min-height: auto;
  padding: 0;
  color: var(--color-accent);
  border: 0;
  font-size: 0.96rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(255, 250, 246, 0.82);
  border-bottom: 1px solid transparent;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(255, 250, 246, 0.95);
  border-color: rgba(20, 50, 74, 0.08);
  box-shadow: 0 12px 30px rgba(20, 50, 74, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(160px, 18vw, 210px);
  height: auto;
}

.site-nav ul,
.footer-links {
  list-style: none;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a,
.mobile-nav a {
  color: var(--color-ink);
  font-family: var(--font-headline);
  font-size: 1.08rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a.is-active,
.site-nav a:hover,
.mobile-nav a.is-active,
.mobile-nav a:hover {
  color: var(--color-accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(20, 50, 74, 0.16);
  border-radius: 14px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-ink);
  border-radius: 999px;
}

.mobile-nav {
  border-top: 1px solid rgba(20, 50, 74, 0.08);
  background: rgba(255, 250, 246, 0.98);
}

.mobile-nav-inner {
  padding: 18px 0 24px;
}

.mobile-nav ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.mobile-nav a {
  display: inline-flex;
  padding: 6px 0;
}

.mobile-nav-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero {
  position: relative;
  overflow: clip;
}

.hero-home {
  min-height: min(92vh, 850px);
}

.hero-subpage {
  min-height: 520px;
}

.hero-booking,
.hero-utility {
  padding: 96px 0 24px;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(11, 32, 49, 0.82) 0%, rgba(11, 32, 49, 0.62) 42%, rgba(11, 32, 49, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  padding: 130px 0 80px;
  color: #fff;
}

.hero-content h1,
.hero-content h2,
.hero-content h3,
.hero-content p,
.hero-content a {
  color: inherit;
}

.hero-content-compact {
  padding-top: 158px;
  padding-bottom: 70px;
}

.hero-content-narrow {
  max-width: 820px;
  padding: 0;
  color: var(--color-ink);
}

.hero-booking .hero-content,
.hero-utility .hero-content {
  min-height: auto;
}

.hero-actions,
.card-actions,
.cookie-page-actions,
.consent-actions,
.consent-detail-actions,
.cookie-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 26px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.fact-pill {
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 0.95rem;
}

.section {
  padding: 86px 0;
}

.section-tight {
  padding-top: 66px;
}

.section-sand {
  background:
    radial-gradient(circle at top right, rgba(243, 161, 71, 0.14), transparent 26%),
    var(--color-sand);
}

.section-accent {
  background:
    radial-gradient(circle at bottom left, rgba(219, 29, 85, 0.1), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fff6f8 100%);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.feature-grid,
.apartment-grid,
.compare-grid,
.card-grid {
  display: grid;
  gap: 22px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.compare-card,
.story-card,
.notice-card,
.booking-intro-card,
.info-band,
.widget-card,
.cookie-page,
.legal-section {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 42px var(--color-shadow);
}

.feature-card,
.compare-card,
.story-card,
.notice-card,
.legal-section {
  padding: 24px;
}

.feature-card h3,
.story-card h3 {
  margin-bottom: 10px;
}

.feature-card p:last-child,
.story-card p:last-child,
.compare-card p:last-child,
.legal-section p:last-child {
  margin-bottom: 0;
}

.apartment-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.apartment-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 44px rgba(20, 50, 74, 0.12);
}

.apartment-card-image {
  display: block;
  aspect-ratio: 1 / 0.86;
  overflow: hidden;
}

.apartment-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.apartment-card:hover .apartment-card-image img {
  transform: scale(1.04);
}

.apartment-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 24px;
}

.apartment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.apartment-meta span {
  padding: 0.38rem 0.75rem;
  background: var(--color-sand);
  border-radius: 999px;
  font-size: 0.86rem;
}

.apartment-card h3 a,
.compare-card a {
  color: var(--color-ink);
  text-decoration: none;
}

.apartment-card h3 a:hover,
.compare-card a:hover {
  color: var(--color-accent);
}

.compare-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compare-card {
  display: grid;
  gap: 10px;
}

.compare-card strong {
  font-family: var(--font-headline);
  font-size: 1.35rem;
}

.compare-card span {
  color: var(--color-accent);
  font-size: 0.95rem;
}

.apartment-detail-grid,
.split-section,
.footer-grid {
  display: grid;
  gap: 32px;
}

.apartment-detail-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
}

.apartment-detail-media img,
.story-card-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 22px 52px rgba(20, 50, 74, 0.18);
}

.apartment-comfort {
  margin-bottom: 18px;
  color: var(--color-accent);
  font-size: 1.02rem;
  font-weight: 700;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #db1d55 0%, #f08b5b 100%);
  border-radius: 999px;
}

.feature-list-large {
  gap: 12px;
}

.feature-list-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-section {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}

.split-media,
.embed-card {
  height: 100%;
}

.embed-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background:
    linear-gradient(160deg, #f4e7dc 0%, #efe0d6 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 48px rgba(20, 50, 74, 0.14);
}

.embed-fallback,
.embed-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 28px;
}

.embed-placeholder {
  position: relative;
  min-height: 100%;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.embed-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 24, 38, 0.18) 0%, rgba(10, 24, 38, 0.86) 100%);
}

.embed-placeholder > * {
  position: relative;
  z-index: 1;
}

.embed-placeholder .card-actions {
  margin-top: 14px;
}

.embed-placeholder h3 {
  color: #fff;
}

.embed-placeholder p {
  color: rgba(255, 255, 255, 0.9);
}

.embed-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.enquiry-intro {
  display: grid;
  gap: 24px;
}

.booking-intro-card,
.info-band {
  display: grid;
  gap: 26px;
  margin-bottom: 28px;
  padding: 28px;
}

.widget-card {
  padding: 22px;
}

.widget-loader {
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: center;
}

.widget-note {
  margin-top: 14px;
  color: var(--color-ink-soft);
  font-size: 0.95rem;
}

.story-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.story-card-image {
  aspect-ratio: 1 / 0.72;
}

.story-card-image img {
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.story-card-body {
  padding: 24px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  background: linear-gradient(120deg, rgba(219, 29, 85, 0.1) 0%, rgba(240, 139, 91, 0.1) 100%);
  border: 1px solid rgba(219, 29, 85, 0.12);
  border-radius: var(--radius-xl);
}

.legal-layout {
  display: grid;
  gap: 22px;
}

.legal-section p:last-child,
.cookie-setting-detail p:last-child {
  margin-bottom: 0;
}

.cookie-page {
  padding: 28px;
}

.cookie-page-header {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.cookie-page-status {
  color: var(--color-accent);
  font-weight: 700;
}

.cookie-setting {
  padding: 20px 0;
  border-top: 1px solid rgba(20, 50, 74, 0.08);
}

.cookie-setting:first-of-type {
  border-top: 0;
}

.cookie-setting-row,
.consent-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(20, 50, 74, 0.08);
  border-radius: 18px;
  transition: background-color var(--transition), border-color var(--transition);
}

[data-consent-functional-row].is-partial .cookie-setting-row,
[data-consent-functional-row].is-partial.consent-row,
.consent-row.is-partial {
  background: rgba(243, 161, 71, 0.18);
  border-color: rgba(243, 161, 71, 0.52);
}

.cookie-setting-copy,
.consent-row-copy,
.consent-service-copy {
  display: grid;
  gap: 4px;
}

.cookie-setting-copy strong,
.consent-row-copy strong,
.consent-service-copy strong {
  font-family: var(--font-headline);
  font-size: 1.18rem;
}

.cookie-setting-copy span,
.consent-row-copy span,
.consent-service-copy span {
  color: var(--color-ink-soft);
  font-size: 0.95rem;
}

.cookie-setting-detail {
  display: grid;
  gap: 18px;
  padding: 20px 18px 0;
}

.consent-info-card {
  padding: 18px 20px;
  background: #fff7f9;
  border: 1px solid rgba(219, 29, 85, 0.12);
  border-radius: 18px;
}

.consent-info-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-headline);
  font-size: 1.1rem;
}

.consent-service-list {
  display: grid;
  gap: 14px;
}

.consent-service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(20, 50, 74, 0.08);
  border-radius: 18px;
}

.switch {
  position: relative;
  display: inline-flex;
  width: 56px;
  height: 32px;
  flex: 0 0 auto;
}

.switch input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.switch span {
  position: absolute;
  inset: 0;
  background: #d8dde4;
  border-radius: 999px;
  transition: background-color var(--transition);
}

.switch span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(20, 50, 74, 0.16);
  transition: transform var(--transition);
}

.switch input:checked + span,
.switch input:checked ~ span {
  background: linear-gradient(135deg, #db1d55 0%, #ef4d74 100%);
}

.switch input:checked + span::after,
.switch input:checked ~ span::after {
  transform: translateX(24px);
}

.switch.is-disabled {
  opacity: 0.68;
}

.switch.is-disabled input {
  cursor: default;
}

.consent-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(20, 50, 74, 0.12);
  border-radius: 16px;
  background: #fff;
  color: var(--color-ink);
  font-size: 1.65rem;
  line-height: 1;
}

.consent-arrow:hover,
.consent-arrow:focus-visible {
  color: var(--color-accent);
  border-color: rgba(219, 29, 85, 0.34);
}

.consent-root {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.consent-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 38, 0.58);
}

.consent-dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 520px);
  max-height: min(calc(100vh - 40px), 860px);
  margin: 20px auto;
  overflow: auto;
  padding: 28px;
  background: #fffdfb;
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(10, 24, 38, 0.34);
}

.consent-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--color-ink);
  font-size: 2rem;
  line-height: 1;
}

.consent-intro,
.consent-detail-text {
  font-size: 1rem;
  color: var(--color-ink-soft);
}

.consent-links {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}

.consent-links a {
  color: var(--color-ink-soft);
}

.consent-list {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.consent-actions {
  display: grid;
  gap: 12px;
}

.consent-actions .btn {
  width: 100%;
}

.consent-detail-actions {
  margin-top: 18px;
}

.consent-detail-actions-split,
.cookie-detail-actions-split {
  justify-content: flex-start;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  padding: 54px 0 28px;
}

.site-footer {
  margin-top: 90px;
  background:
    linear-gradient(180deg, rgba(247, 239, 233, 0) 0%, rgba(247, 239, 233, 0.74) 100%),
    #fffaf6;
  border-top: 1px solid rgba(20, 50, 74, 0.08);
}

.footer-title {
  margin: 0 0 12px;
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 700;
}

.footer-contact-list,
.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact-list a {
  color: var(--color-ink-soft);
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact-list a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 28px;
  color: var(--color-ink-soft);
  font-size: 0.92rem;
}

.casa-wdg,
.casa-wdg * {
  box-sizing: border-box;
}

.casa-wdg label,
.casa-wdg .control-label,
.casa-wdg .form-label,
.casa-wdg h1,
.casa-wdg h2,
.casa-wdg h3,
.casa-wdg legend {
  font-family: var(--font-headline) !important;
  color: var(--color-ink) !important;
}

.casa-wdg .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.casa-wdg [class*="col-"] {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.casa-wdg input,
.casa-wdg select,
.casa-wdg textarea,
.casa-wdg .form-control {
  width: 100% !important;
  min-height: 48px;
  border: 1px solid rgba(20, 50, 74, 0.14) !important;
  border-radius: 14px !important;
  box-shadow: none !important;
  background: #fff !important;
  color: var(--color-ink) !important;
}

.casa-wdg textarea {
  min-height: 150px;
  resize: vertical;
}

.casa-wdg input:focus,
.casa-wdg select:focus,
.casa-wdg textarea:focus {
  border-color: rgba(219, 29, 85, 0.5) !important;
  outline: 2px solid rgba(219, 29, 85, 0.12);
  outline-offset: 1px;
}

.casa-wdg .btn,
.casa-wdg button,
.casa-wdg input[type="submit"] {
  min-height: 50px;
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #db1d55 0%, #ef4d74 100%) !important;
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(219, 29, 85, 0.18) !important;
  font-family: var(--font-headline) !important;
  font-weight: 700 !important;
}

.casa-wdg .checkbox,
.casa-wdg .radio {
  position: relative;
  padding-left: 28px !important;
  min-height: 20px;
}

.casa-wdg .checkbox input[type="checkbox"],
.casa-wdg .radio input[type="checkbox"],
.casa-wdg .radio input[type="radio"],
.casa-wdg .checkbox input[type="radio"] {
  position: absolute !important;
  top: 0.2rem;
  left: 0 !important;
  width: 18px !important;
  height: 18px !important;
  min-height: auto;
  margin: 0 !important;
}

.casa-wdg .checkbox label,
.casa-wdg .radio label {
  display: inline !important;
  padding-left: 0 !important;
}

.casa-wdg .help-block,
.casa-wdg .text-muted,
.casa-wdg p {
  color: var(--color-ink-soft) !important;
}

.casa-wdg .panel,
.casa-wdg .well,
.casa-wdg .thumbnail {
  border: 1px solid rgba(20, 50, 74, 0.08) !important;
  border-radius: 18px !important;
  box-shadow: none !important;
}

@media (max-width: 1100px) {
  .feature-grid,
  .apartment-grid,
  .compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-nav,
  .header-actions > .btn:not(.btn-whatsapp),
  .header-actions > .btn-whatsapp {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-home {
    min-height: 760px;
  }

  .apartment-detail-grid,
  .split-section,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .casa-wdg [class*="col-"] {
    width: 100% !important;
    float: none !important;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 78px;
  }

  .container {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .hero-content,
  .hero-content-compact {
    padding-top: 122px;
    padding-bottom: 54px;
  }

  .section,
  .section-tight {
    padding: 62px 0;
  }

  .feature-grid,
  .apartment-grid,
  .compare-grid,
  .card-grid,
  .feature-list-columns,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .consent-dialog {
    width: min(calc(100% - 20px), 520px);
    max-height: calc(100vh - 20px);
    margin: 10px auto;
    padding: 22px 18px;
  }

  .cookie-page,
  .widget-card,
  .feature-card,
  .story-card-body,
  .notice-card,
  .legal-section {
    padding: 20px;
  }

  .cookie-setting-row,
  .consent-row {
    grid-template-columns: auto 1fr;
  }

  .consent-arrow {
    grid-column: 1 / -1;
    width: 100%;
    height: 46px;
  }
}

