:root {
  color-scheme: light dark;
  --font-main: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --bg: #f5f5f7;
  --surface: #fbfbfd;
  --surface-soft: rgba(255, 255, 255, 0.72);
  --text: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(0, 0, 0, 0.1);
  --pill: #050505;
  --pill-text: #ffffff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 34px 110px rgba(0, 0, 0, 0.14);
  --gold: #9f7a3b;
  --gold-soft: rgba(159, 122, 59, 0.12);
  --radius: 18px;
}

[data-bs-theme="dark"] {
  --bg: #09090b;
  --surface: #111114;
  --surface-soft: rgba(22, 22, 25, 0.72);
  --text: #f5f5f7;
  --muted: #a1a1a6;
  --line: rgba(255, 255, 255, 0.12);
  --pill: #f5f5f7;
  --pill-text: #09090b;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  --shadow-strong: 0 34px 110px rgba(0, 0, 0, 0.52);
  --gold: #d5b277;
  --gold-soft: rgba(213, 178, 119, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 4%, var(--gold-soft), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(116, 143, 166, 0.14), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0;
}

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

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

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
  padding-top: 112px;
  transition: padding-top 240ms ease;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-soft) 94%, transparent);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.top-bar {
  max-height: 42px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-soft) 96%, transparent);
  color: var(--muted);
  font-size: 12px;
  transition: max-height 260ms ease, opacity 220ms ease, transform 260ms ease;
}

[data-bs-theme="dark"] .top-bar {
  background: color-mix(in srgb, var(--surface-soft) 94%, transparent);
  color: var(--muted);
}

.top-bar-hidden .top-bar {
  max-height: 0;
  opacity: 0;
  transform: translateY(-100%);
}

.top-bar-hidden .site-main {
  padding-top: 72px;
}

.top-bar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-contact,
.top-actions,
.top-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-contact a,
.top-socials a,
.login-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.top-contact a:hover,
.top-socials a:hover,
.login-link:hover {
  color: var(--text);
  opacity: 1;
}

.top-socials {
  gap: 8px;
}

.top-socials a {
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  color: var(--muted);
  font-size: 12px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.top-socials a:hover {
  border-color: color-mix(in srgb, var(--text) 22%, var(--line));
  background: var(--surface);
  transform: translateY(-1px);
}

.login-link {
  min-height: 30px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-login {
  color: var(--text);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-logo {
  display: block;
  width: clamp(136px, 13vw, 178px);
  height: auto;
  max-height: 38px;
  object-fit: contain;
}

.footer-logo {
  width: clamp(156px, 14vw, 210px);
  max-height: 44px;
}

.brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 0 16px color-mix(in srgb, var(--text) 46%, transparent);
}

.navbar-nav {
  gap: 22px;
}

.nav-link {
  position: relative;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 25px 0 22px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 1px;
  background: var(--text);
}

.theme-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
}

.theme-btn {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
}

.theme-btn.active {
  background: var(--text);
  color: var(--bg);
}

.top-theme-switcher {
  border-color: var(--line);
  background: color-mix(in srgb, var(--surface) 74%, transparent);
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--surface) 86%, transparent);
  padding: 4px;
}

.top-theme-switcher .theme-btn {
  width: 28px;
  height: 28px;
  color: var(--muted);
  opacity: 1;
}

.top-theme-switcher .theme-btn.active {
  background: var(--text);
  color: var(--bg);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--text) 18%, transparent);
}

.top-theme-switcher .theme-btn:hover {
  color: var(--text);
}

.navbar-toggler {
  border: 0;
  box-shadow: none;
}

.section {
  padding: clamp(72px, 9vw, 132px) 0;
}

.section-tight {
  padding: clamp(48px, 7vw, 96px) 0;
}

.eyebrow {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(245, 245, 247, 0.84), rgba(245, 245, 247, 0.56), rgba(245, 245, 247, 0.92)),
    linear-gradient(0deg, var(--bg), rgba(245, 245, 247, 0) 35%),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=88");
  background-size: cover;
  background-position: center;
}

[data-bs-theme="dark"] .hero-media {
  background-image:
    linear-gradient(90deg, rgba(245, 245, 247, 0.84), rgba(245, 245, 247, 0.56), rgba(245, 245, 247, 0.92)),
    linear-gradient(0deg, #f5f5f7, rgba(245, 245, 247, 0) 35%),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=88");
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 7vw 0;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: -42px -48px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.08));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  opacity: 0.72;
}

.hero-title,
.page-title {
  color: var(--text);
  font-size: clamp(42px, 6.2vw, 86px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 0;
}

.hero-lead,
.page-lead {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.55;
  margin: 24px 0 0;
}

.hero .eyebrow,
.hero-title,
.hero-lead,
.hero .btn-quiet,
.scroll-cue {
  color: #1d1d1f;
}

.page-hero {
  padding: clamp(88px, 11vw, 150px) 0 clamp(48px, 7vw, 96px);
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid var(--pill);
  border-radius: 999px;
  background: var(--pill);
  color: var(--pill-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 180ms ease, opacity 180ms ease;
}

.btn-pill:hover {
  color: var(--pill-text);
  opacity: 0.88;
  transform: translateY(-2px);
}

.btn-quiet {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn-quiet:hover {
  color: var(--text);
}

.hero .btn-pill:not(.btn-quiet) {
  background: #050505;
  border-color: #050505;
  color: #ffffff;
}

.hero .btn-quiet,
.hero .btn-quiet:hover {
  color: #1d1d1f;
  border-color: rgba(0, 0, 0, 0.14);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 2;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  min-height: 360px;
  align-items: center;
}

.stat-value {
  display: block;
  color: var(--text);
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.055em;
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-top: 14px;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(42px, 8vw, 108px);
  align-items: center;
}

.split-title,
.section-title {
  color: var(--text);
  font-size: clamp(34px, 4.1vw, 58px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 0;
}

.body-copy {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 24px 0 0;
}

.feature-image {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-number {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.22em;
}

.service-item h3,
.property-card h3,
.journal-card h3 {
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 8px;
}

.service-item p,
.property-card p,
.journal-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 58px;
}

.portfolio-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.portfolio-card.large {
  grid-row: span 2;
  min-height: 640px;
}

.portfolio-card img,
.property-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.portfolio-card:hover img,
.property-card:hover img {
  transform: scale(1.035);
}

.portfolio-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  color: #fff;
  z-index: 1;
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.5));
}

.caption-kicker {
  display: block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.78;
}

.caption-title {
  display: block;
  font-size: 20px;
  margin-top: 8px;
}

.property-grid,
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 54px;
}

.property-card,
.journal-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.property-card:hover,
.journal-card:hover {
  border-color: color-mix(in srgb, var(--gold) 36%, var(--line));
  box-shadow: var(--shadow-strong);
  transform: translateY(-4px);
}

.property-image {
  height: 290px;
  overflow: hidden;
}

.property-content,
.journal-card {
  padding: 24px;
}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 18px;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
}

.circle-link {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.cta-panel {
  display: grid;
  place-items: center;
  min-height: 410px;
  padding: 56px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
  box-shadow: var(--shadow);
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1080;
  display: grid;
  gap: 10px;
}

.floating-contact a {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #050505;
  color: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, opacity 180ms ease;
}

.floating-contact a:hover {
  color: #fff;
  opacity: 0.9;
  transform: translateY(-2px);
}

.floating-contact .whatsapp {
  background: #128c7e;
}

.lead-modal .modal-content {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-strong);
}

.lead-modal .modal-header,
.lead-modal .modal-footer {
  border: 0;
}

.lead-modal .modal-body {
  padding: 0 28px 28px;
}

.lead-modal-visual {
  min-height: 170px;
  background:
    linear-gradient(90deg, rgba(245, 245, 247, 0.32), rgba(245, 245, 247, 0.9)),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=900&q=88") center/cover;
}

.lead-modal h2 {
  color: var(--text);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0 0 12px;
}

.lead-modal p {
  color: var(--muted);
  margin-bottom: 20px;
}

.lead-modal .btn-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.cta-panel .section-title {
  max-width: 780px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 36px;
  background: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 0.9fr;
  gap: 56px;
}

.footer p,
.footer a,
.footer li {
  color: var(--muted);
  font-size: 13px;
}

.footer h2 {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 22px;
}

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

.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.newsletter input {
  min-height: 46px;
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  padding: 0 18px;
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 36px;
  margin-top: 72px;
  border-top: 1px solid var(--line);
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.contact-card,
.faq-card,
.career-card {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

a.career-card {
  display: block;
  color: inherit;
}

.contact-card h3,
.faq-card h3,
.career-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 10px;
}

.form-control,
.form-select {
  min-height: 48px;
  border-color: var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--text);
  box-shadow: none;
}

.detail-hero {
  padding: clamp(88px, 11vw, 148px) 0 36px;
}

.detail-kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.detail-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-image {
  width: 100%;
  min-height: clamp(340px, 52vw, 680px);
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow-strong);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.detail-sidebar {
  position: sticky;
  top: 104px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.detail-meta-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--surface) 84%, transparent);
}

.detail-meta-grid strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
}

.detail-meta-grid span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.content-stack {
  display: grid;
  gap: 32px;
}

.content-panel {
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.content-panel h2 {
  color: var(--text);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 18px;
}

.content-panel p,
.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.amenity-list,
.timeline-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.amenity-list li,
.timeline-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.amenity-list i,
.timeline-list i {
  color: var(--gold);
  margin-top: 5px;
}

.article-body {
  max-width: 820px;
}

.article-body h2 {
  color: var(--text);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.04em;
  margin: 44px 0 16px;
}

.article-quote {
  padding: 28px;
  border-left: 2px solid var(--gold);
  background: var(--surface);
  color: var(--text);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.18;
}

@media (max-width: 1199.98px) {
  .navbar-nav {
    gap: 14px;
  }
}

@media (max-width: 991.98px) {
  .site-main {
    padding-top: 158px;
  }

  .top-bar-hidden .site-main {
    padding-top: 72px;
  }

  .navbar-collapse {
    border-top: 1px solid var(--line);
    margin-top: 12px;
  }

  .navbar-nav {
    gap: 0;
    padding: 12px 0;
  }

  .brand-logo {
    width: 140px;
  }

  .top-bar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-block: 9px;
  }

  .top-bar {
    max-height: 96px;
  }

  .top-contact,
  .top-actions {
    width: 100%;
    justify-content: space-between;
  }

  .nav-link {
    padding: 11px 0;
  }

  .nav-link.active::after {
    display: none;
  }

  .split-grid,
  .portfolio-grid,
  .property-grid,
  .journal-grid,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
  }

  .stat-row {
    grid-template-columns: repeat(2, 1fr);
    min-height: auto;
  }

  .portfolio-card.large,
  .portfolio-card {
    min-height: 420px;
  }
}

@media (max-width: 575.98px) {
  body {
    font-size: 13px;
  }

  .hero-title,
  .page-title {
    font-size: clamp(38px, 13vw, 56px);
  }

  .site-main {
    padding-top: 148px;
  }

  .top-bar-hidden .site-main {
    padding-top: 72px;
  }

  .top-contact {
    align-items: center;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
    font-size: 10.5px;
    line-height: 1;
  }

  .top-contact a {
    min-width: 0;
    gap: 5px;
  }

  .top-contact a:last-child {
    justify-content: flex-end;
  }

  .top-contact span {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .top-actions {
    align-items: center;
  }

  .login-link span,
  .top-contact span {
    white-space: nowrap;
  }

  .hero-actions,
  .newsletter,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .btn-pill {
    width: 100%;
  }

  .hero-content::before {
    inset: -24px -18px;
    border-radius: 20px;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
  }

  .floating-contact a {
    width: 48px;
    height: 48px;
  }

  .stat-row {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 380px) {
  .top-contact span {
    display: none;
  }

  .top-contact {
    justify-content: flex-start;
  }
}
