@font-face {
  font-family: "Noto Sans Local";
  src: url("../fonts/NotoSans-Regular-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0100-017F, U+0180-024F, U+2000-206F, U+20AC;
}

@font-face {
  font-family: "Noto Sans Local";
  src: url("../fonts/NotoSans-Bold-latin.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0100-017F, U+0180-024F, U+2000-206F, U+20AC;
}

@font-face {
  font-family: "Noto Serif Local";
  src: url("../fonts/NotoSerif-Regular-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0100-017F, U+0180-024F, U+2000-206F, U+20AC;
}

@font-face {
  font-family: "Noto Serif Local";
  src: url("../fonts/NotoSerif-Bold-latin.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0100-017F, U+0180-024F, U+2000-206F, U+20AC;
}

:root {
  --bg: #120f0b;
  --bg-soft: #1b1610;
  --surface: #211b14;
  --surface-2: #2a2218;
  --text: #f6efe4;
  --muted: #d0c1a8;
  --accent: #c89a4d;
  --accent-strong: #f4c67c;
  --line: #4a3b28;
  --ok: #97c88e;
  --radius: 18px;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
  animation: none !important;
  transition: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: "Noto Sans Local", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% -10%, rgba(214, 162, 81, 0.28) 0%, transparent 34%),
    radial-gradient(circle at 92% 8%, rgba(152, 111, 53, 0.2) 0%, transparent 28%),
    radial-gradient(circle at 85% 48%, rgba(239, 189, 111, 0.12) 0%, transparent 22%),
    radial-gradient(circle at 22% 100%, rgba(129, 85, 31, 0.16) 0%, transparent 30%),
    linear-gradient(180deg, rgba(36, 25, 13, 0.35) 0%, rgba(18, 15, 11, 0) 18%),
    var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  opacity: 1;
}

body.site-ready {
  opacity: 1;
}

body.is-transitioning {
  opacity: 1;
}

@keyframes soft-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main {
  animation: soft-enter 320ms ease;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

h1,
h2,
h3,
h4 {
  font-family: "Noto Serif Local", Georgia, serif;
  line-height: 1.1;
  margin: 0;
}

p {
  margin: 0 0 0.9rem;
}

p:last-child {
  margin-bottom: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(15, 12, 9, 0.9);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand img {
  width: 214px;
  height: 66px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-strong);
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: rgba(33, 27, 20, 0.96);
  color: var(--text);
  border-radius: 14px;
  width: 52px;
  height: 52px;
  padding: 0;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.menu-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 24px;
}

.menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--accent-strong) 0%, #fff0c8 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.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;
}

.hero {
  min-height: clamp(580px, 78vh, 780px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg, rgba(16, 13, 10, 0.82) 10%, rgba(18, 14, 10, 0.48) 48%, rgba(19, 14, 10, 0.76) 100%),
    radial-gradient(circle at 72% 22%, rgba(236, 180, 98, 0.34) 0%, transparent 22%),
    url("../images/hero-photo.png") center/cover;
  transform: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  padding: clamp(82px, 13vh, 128px) 0 68px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: end;
}

.hero-copy,
.hero-highlight {
  border: 1px solid rgba(233, 188, 111, 0.18);
  background: linear-gradient(165deg, rgba(33, 25, 18, 0.62) 0%, rgba(18, 14, 11, 0.42) 100%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.hero-copy {
  border-radius: 28px;
  padding: clamp(28px, 4vw, 42px);
}

.kicker {
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.45rem, 5.6vw, 5.2rem);
  max-width: 12ch;
  margin-bottom: 18px;
}

.hero p {
  max-width: 58ch;
  color: #f7efe2;
}

.hero-stats {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-shell-stats {
  grid-column: 1 / -1;
  margin-top: 6px;
}

.hero-stat {
  padding: 14px 14px 12px;
  border-radius: 18px;
  border: 1px solid rgba(244, 198, 124, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.hero-stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--accent-strong);
}

.hero-stat span {
  display: block;
  margin-top: 6px;
  color: #e8dcca;
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-stat-wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 16px 18px;
}

.hero-stat-wide strong {
  display: inline;
  flex: 0 0 auto;
  font-size: clamp(1.6rem, 3.4vw, 2.05rem);
  line-height: 1;
}

.hero-stat-wide span {
  display: inline;
  margin-top: 0;
  white-space: nowrap;
  font-size: clamp(0.9rem, 2.3vw, 1.1rem);
  line-height: 1.2;
}

.hero-highlight {
  border-radius: 26px;
  padding: 16px;
}

.hero-feature-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 18px;
  margin: 12px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-feature-copy {
  display: grid;
  gap: 12px;
}

.hero-feature-copy h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.btn-row {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.btn-primary {
  background: linear-gradient(140deg, #b8863f 0%, var(--accent-strong) 100%);
  color: #1e1712;
}

.btn-ghost {
  border: 1px solid #ba9f7b;
  color: #f2e8d8;
  background: rgba(31, 27, 22, 0.56);
}

.section {
  padding: clamp(54px, 9vw, 96px) 0;
}

.section-surface {
  position: relative;
}

.section-featured {
  position: relative;
}

.section-surface::before,
.section-featured::before {
  content: "";
  position: absolute;
  inset: 18px 0;
  background: linear-gradient(180deg, rgba(43, 30, 16, 0.38) 0%, rgba(20, 16, 12, 0.05) 100%);
  pointer-events: none;
}

.section-surface .container,
.section-featured .container {
  position: relative;
  z-index: 1;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-head p {
  color: var(--muted);
  max-width: 48ch;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(48, 37, 23, 0.98) 0%, rgba(26, 20, 15, 0.98) 100%);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

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

.card-jump {
  align-self: flex-start;
  border: 1px solid rgba(244, 198, 124, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-strong);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.card-jump:hover,
.card-jump.active {
  transform: translateY(-1px);
  background: rgba(244, 198, 124, 0.12);
  border-color: rgba(244, 198, 124, 0.38);
}

.card h3 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.card p {
  color: #e4d9c8;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(43, 33, 24, 0.98) 0%, rgba(27, 22, 17, 0.98) 100%);
  padding: 24px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.panel h3 {
  font-size: 1.85rem;
  margin-bottom: 12px;
}

.panel ul {
  margin: 0;
  padding-left: 20px;
  color: #dfd3bf;
}

.panel li + li {
  margin-top: 7px;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.photo-strip.is-carousel-gallery {
  grid-template-columns: 1fr;
}

.photo {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 210px;
}

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

.property-carousel {
  position: relative;
  border: 1px solid rgba(244, 198, 124, 0.22);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(20, 16, 12, 0.76);
  padding: 16px 16px 52px;
}

.carousel-track {
  display: flex;
  column-gap: 12px;
  min-height: 340px;
  transition: transform 260ms ease;
  will-change: transform;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.carousel-track.is-dragging {
  cursor: grabbing;
  transition: none;
}

.carousel-slide {
  flex: 0 0 calc((100% - 24px) / 3);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #17130f;
}

.carousel-slide img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(244, 198, 124, 0.45);
  background: rgba(15, 12, 9, 0.68);
  color: #fff;
  cursor: pointer;
}

.carousel-prev {
  left: 12px;
}

.carousel-next {
  right: 12px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(15, 12, 9, 0.62);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--accent-strong);
}

.carousel-btn:disabled {
  opacity: 0.45;
  cursor: default;
}

.about {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 24px;
  align-items: center;
}

.about figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about article {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(45, 35, 23, 0.98) 0%, rgba(26, 23, 19, 0.98) 100%);
  padding: clamp(20px, 3.2vw, 34px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.story-panel {
  border-radius: 24px;
  border: 1px solid rgba(242, 191, 112, 0.18);
  background:
    radial-gradient(circle at top right, rgba(242, 191, 112, 0.14) 0%, transparent 28%),
    linear-gradient(160deg, rgba(39, 30, 21, 0.98) 0%, rgba(23, 19, 15, 0.98) 100%);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.story-panel h3 {
  font-size: clamp(1.85rem, 3.4vw, 2.45rem);
  margin-bottom: 12px;
}

.story-panel ul {
  margin: 0;
  padding-left: 20px;
  color: #ebdfcd;
}

.story-panel li + li {
  margin-top: 8px;
}

.story-panel-wide {
  grid-column: 1 / -1;
}

.story-panel-wide h3 {
  font-size: clamp(2.3rem, 5vw, 3.2rem);
}

.story-panel-wide p {
  color: #ebdfcd;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.about article h2 {
  margin-bottom: 14px;
}

.about article p + p {
  margin-top: 14px;
  color: #e3d7c5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
}

.contact-card,
.form-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, #2a231b 0%, #1e1914 100%);
  padding: 22px;
}

.contact-list {
  margin-top: 10px;
  display: grid;
  gap: 12px;
}

.contact-item {
  border: 1px solid #4d4336;
  border-radius: 14px;
  padding: 12px;
  background: #2a241d;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

@media (hover: hover) {
  .hero-copy:hover,
  .hero-highlight:hover,
  .card:hover,
  .panel:hover,
  .about article:hover,
  .story-panel:hover,
  .contact-item:hover {
    transform: translateY(-3px);
    border-color: rgba(244, 198, 124, 0.34);
  }
}

.form-grid {
  display: grid;
  gap: 10px;
}

label {
  color: var(--muted);
  font-size: 0.94rem;
}

input,
textarea {
  width: 100%;
  border-radius: 11px;
  border: 1px solid #504536;
  background: #1a1612;
  color: #fff;
  padding: 10px 12px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-hint {
  font-size: 0.88rem;
  color: var(--muted);
}

.posts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.property-card {
  border: 1px solid rgba(241, 193, 117, 0.18);
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(244, 198, 124, 0.12) 0%, transparent 24%),
    linear-gradient(160deg, rgba(44, 34, 23, 0.99) 0%, rgba(24, 19, 14, 0.99) 100%);
  box-shadow: var(--shadow);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.property-card.is-muted {
  opacity: 0.46;
  transform: scale(0.985);
}

.property-card.is-featured {
  border-color: rgba(244, 198, 124, 0.46);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.5);
}

.property-media {
  display: block;
  aspect-ratio: 1.45;
  overflow: hidden;
}

.property-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.property-card:hover .property-media img {
  transform: scale(1.03);
}

.property-body {
  padding: 20px;
}

.property-body h3 {
  margin: 10px 0 6px;
  font-size: clamp(1.85rem, 3vw, 2.3rem);
}

.property-price {
  color: var(--accent-strong);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.property-facts {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.property-facts li {
  border-radius: 999px;
  border: 1px solid rgba(241, 193, 117, 0.18);
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 10px;
  color: #e9dbc6;
  font-size: 0.88rem;
}

.property-anchor {
  position: relative;
  top: -96px;
  visibility: hidden;
}

.post {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, #2b241c 0%, #1c1713 100%);
  display: grid;
  grid-template-rows: 220px auto;
}

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

.post-content {
  padding: 18px;
}

.meta {
  color: var(--accent-strong);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.post h3 {
  margin: 10px 0;
  font-size: 1.85rem;
}

.post p {
  color: #e1d5c2;
}

.post .btn {
  margin-top: 14px;
}

.legal {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: linear-gradient(160deg, rgba(42, 35, 27, 0.98) 0%, rgba(27, 23, 19, 0.98) 100%);
}

.legal h2 {
  margin-bottom: 12px;
}

.legal h3 {
  margin: 20px 0 8px;
  font-size: 1.55rem;
}

.legal p,
.legal li {
  color: #e2d7c5;
}

.legal ul {
  margin: 0;
  padding-left: 20px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 0%, rgba(210, 160, 84, 0.12) 0%, transparent 22%),
    linear-gradient(180deg, #1f1913 0%, #120f0d 100%);
  padding: 44px 0 22px;
  margin-top: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 22px;
}

.footer-col h4 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-col a {
  color: #e8dcc8;
}

.footer-col a:hover {
  color: var(--accent-strong);
}

.brand-mark {
  max-width: 210px;
  margin-bottom: 8px;
}

.lang-switch {
  position: fixed;
  top: 92px;
  right: 18px;
  z-index: 28;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 8px;
  border-radius: 999px;
  border: 1px solid rgba(241, 193, 117, 0.22);
  background: rgba(18, 15, 11, 0.84);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.lang-switch-label {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0 6px 0 4px;
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #f4eadc;
  padding: 7px 10px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

.lang-btn.active {
  background: linear-gradient(140deg, #b8863f 0%, var(--accent-strong) 100%);
  color: #1e1712;
}

.copyright {
  margin-top: 26px;
  border-top: 1px solid #3b332a;
  padding-top: 14px;
  color: #c7b8a0;
  font-size: 0.9rem;
}

.mt-18 {
  margin-top: 18px;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(140deg, #1aa74c 0%, #22c763 100%);
  color: white;
  border-radius: 999px;
  padding: 10px 15px 10px 11px;
  font-weight: 700;
  border: 1px solid #62cb8a;
  box-shadow: var(--shadow);
}

.whatsapp-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.cookie {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 40;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(24, 20, 16, 0.96);
  padding: 14px;
  display: none;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}

.cookie.show {
  display: flex;
}

.cookie p {
  flex: 1;
  min-width: 240px;
  color: #d8cdbd;
  font-size: 0.92rem;
}

.cookie-legal-link {
  color: #e8dcc7;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-legal-link:hover,
.cookie-legal-link:focus-visible {
  color: #ffffff;
}

.reveal,
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .cards,
  .grid-2,
  .about,
  .contact-grid,
  .posts,
  .property-grid,
  .story-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-shell,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #1a1511;
    border-bottom: 1px solid var(--line);
    padding: 14px min(5vw, 24px) 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .nav-wrap {
    gap: 14px;
    justify-content: flex-start;
  }

  .brand {
    margin-right: auto;
    margin-left: -20px;
  }

  .brand img {
    width: 206px;
    height: 64px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 0.98rem;
  }

  .brand img {
    width: 194px;
    height: 60px;
  }

  .brand {
    margin-left: -24px;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-copy,
  .hero-highlight,
  .story-panel,
  .property-body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }

  .property-carousel {
    padding: 14px 46px 44px;
  }

  .carousel-track {
    min-height: 280px;
    column-gap: 12px;
  }

  .carousel-slide {
    flex: 0 0 100%;
  }

  .carousel-slide img {
    min-height: 280px;
    height: 280px;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
  }

  .lang-switch {
    top: auto;
    bottom: 84px;
    right: 14px;
  }

  .lang-switch-label {
    display: none;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding-right: 11px;
  }

  .menu-btn {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 980px) and (min-width: 641px) {
  .property-carousel {
    padding: 14px 14px 48px;
  }

  .carousel-track {
    min-height: 320px;
    column-gap: 12px;
  }

  .carousel-slide {
    flex: 0 0 calc((100% - 12px) / 2);
  }

  .carousel-slide img {
    height: 320px;
  }
}
