:root {
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Manrope", sans-serif;
  --bg: linear-gradient(135deg, #f6efe6 0%, #eef4f3 55%, #f7f2e8 100%);
  --surface: #fffaf2;
  --surface-strong: #f2e9dd;
  --ink: #14110f;
  --muted: #5a534f;
  --accent: #c7945a;
  --accent-dark: #8f5c2b;
  --sea: #2f5b60;
  --night: #152428;
  --line: rgba(20, 17, 15, 0.12);
  --shadow: 0 30px 60px rgba(20, 17, 15, 0.18);
  --radius: 18px;
  --radius-lg: 28px;
  --gutter: clamp(18px, 4vw, 48px);
  --section-pad: clamp(56px, 9vw, 130px);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(800px 520px at 10% -10%, rgba(199, 148, 90, 0.2), transparent 70%),
    radial-gradient(720px 500px at 90% 10%, rgba(47, 91, 96, 0.2), transparent 70%),
    radial-gradient(520px 360px at 25% 120%, rgba(255, 255, 255, 0.7), transparent 65%);
  pointer-events: none;
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Mobile utility class */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

main {
  position: relative;
  z-index: 1;
}

section {
  padding: var(--section-pad) 0;
  scroll-margin-top: 90px;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  margin: 0.2rem 0 1rem;
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-head {
  max-width: 720px;
  margin-bottom: 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: #f1dfc8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-solid {
  background: var(--accent);
  color: #1b130b;
  box-shadow: 0 14px 24px rgba(199, 148, 90, 0.35);
}

.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(199, 148, 90, 0.4);
}

.btn-ghost {
  background: transparent;
  border-color: currentColor;
  color: currentColor;
}

.btn-light {
  background: #fef6eb;
  color: #2a1a0c;
  border-color: transparent;
}

.text-link {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(255, 250, 242, 0.86);
  border-bottom: 1px solid var(--line);
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  z-index: 200;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  padding: 1rem 0;
}

.fixed-header.show {
  transform: translateY(0);
}

.fixed-header-inner {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem var(--gutter);
}

.brand {
  display: grid;
  gap: 0.15rem;
  font-family: var(--font-heading);
}

.brand-mark {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.brand-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted);
  font-family: var(--font-body);
}

.site-nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  display: flex;
  align-items: center;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  gap: 0.6rem;
}

.hero {
  position: relative;
  color: #fef7ee;
  padding: clamp(120px, 16vw, 200px) 0 90px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(9, 12, 12, 0.65) 0%, rgba(9, 12, 12, 0.4) 45%, rgba(9, 12, 12, 0.7) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

.hero-main {
  max-width: 520px;
}

.hero-logo {
  width: clamp(140px, 20vw, 220px);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.2vw, 3.9rem);
  line-height: 1.1;
  margin: 0.4rem 0 1rem;
}

.hero-meta {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f6e5d3;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.hero-side {
  display: grid;
  gap: 1rem;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 1.8rem;
  min-height: 260px;
  background-image: var(--card-image);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(18, 16, 15, 0.2) 0%, rgba(8, 8, 8, 0.82) 100%);
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.hero-card h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin: 0.4rem 0 0.6rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fef2e6;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
}

.hero-quick {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.quick-link {
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(0, 0, 0, 0.25);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

.intro-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.intro-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.feature-banner {
  position: relative;
  color: #f7f4f0;
}

.feature-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--banner-image);
  background-size: cover;
  background-position: center;
}

.feature-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(9, 13, 13, 0.72), rgba(9, 13, 13, 0.45));
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.banner-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin-bottom: 1rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

.why-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.why-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.2rem 1rem 2.5rem;
  box-shadow: 0 18px 30px rgba(20, 17, 15, 0.08);
  position: relative;
}

.why-list li::before {
  content: "";
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background-image: url('data:image/svg+xml,<svg fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M19.916 4.626a.75.75 0 01.208 1.04l-9 13.5a.75.75 0 01-1.154.114l-6-6a.75.75 0 011.06-1.06l5.353 5.353 8.493-12.739a.75.75 0 011.04-.208z" clip-rule="evenodd"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.amenity-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1rem 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 18px 30px rgba(20, 17, 15, 0.06);
}

.amenity-icon {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.property-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 40px rgba(20, 17, 15, 0.1);
}

.card-media {
  position: relative;
  padding-top: 56%;
  background-image: var(--card-image);
  background-size: cover;
  background-position: center;
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin: 0;
}

.card-body p {
  color: var(--muted);
  margin: 0;
}

.card-stats {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
}

.card-stats li {
  position: relative;
}

.card-stats li {
  background: var(--surface);
  border-radius: 12px;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.card-stats li span {
  display: block;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.9rem;
  letter-spacing: normal;
}

.location {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3));
}

.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

.location-list {
  display: grid;
  gap: 1rem;
}

.location-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  box-shadow: 0 18px 30px rgba(20, 17, 15, 0.06);
}

.location-item h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.location-item p {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
}

.request {
  background: var(--night);
  color: #f7f2ea;
}

.request-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: stretch;
}

.request .section-kicker,
.request .section-lead {
  color: rgba(255, 255, 255, 0.7);
}

.request-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.form-row {
  display: grid;
  gap: 0.5rem;
}

label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
}

input {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.95rem;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

input:focus {
  outline: 2px solid rgba(199, 148, 90, 0.8);
  outline-offset: 2px;
}

.request-visual {
  min-height: 360px;
  border-radius: var(--radius-lg);
  background-image: var(--panel-image);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.request-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 9, 0.1), rgba(9, 9, 9, 0.7));
}

.request-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
}

.site-footer {
  background: #0f1b1f;
  color: #f1ebe2;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 2rem;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin: 0 0 0.6rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: grid;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact p {
  margin: 0 0 0.6rem;
}

.footer-contact a {
  display: inline-flex;
  margin-top: 0.5rem;
  color: #f2e2c8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2rem;
  padding-top: 1.2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .header-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-inner,
  .intro-grid,
  .why-grid,
  .location-grid,
  .request-grid {
    grid-template-columns: 1fr;
  }

  .hero-main {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .card-stats {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .btn-solid,
  .btn-ghost {
    transition: none;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Interest Modal Styles */
.interest-modal-content {
  background: var(--surface);
  padding: 0.2rem 2rem 2rem 2rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.interest-modal-content .close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: var(--muted);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.interest-modal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

@media (max-width: 480px) {
  .interest-modal-content h2 {
    font-size: 1.25rem;
  }
}

.interest-modal-content > p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.75rem;
}

@media (max-width: 480px) {
  .interest-modal-content > p {
    font-size: 0.7rem;
  }
}

.form-group {
  margin-bottom: 0.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.3rem;
  font-size: 0.40rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.4rem;
  border: 2px solid #ccc;
  border-radius: 8px;
  font-size: 0.7rem;
  background: white;
  color: var(--ink);
  transition: border-color 0.3s ease;
  pointer-events: auto;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4CAF50;
}

.phone-input {
  display: flex;
  align-items: center;
}

.phone-prefix {
  background: var(--surface);
  border: 2px solid #ccc;
  border-right: none;
  padding: 0.4rem 0.5rem;
  border-radius: 8px 0 0 8px;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.5rem;
}

.phone-input input {
  border-left: none;
  border-radius: 0 8px 8px 0;
  margin-left: 0;
  padding: 0.4rem;
  flex: 1;
}

.phone-input input:focus {
  border-color: #3fc732;
}

.phone-input:focus-within .phone-prefix {
  border-color: #2ec633;
}

.privacy-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.privacy-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.interest-modal-content .btn {
  width: 100%;
  padding: 0.875rem;
  font-size: 1rem;
  background: #25d366;
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.interest-modal-content .btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* Mobile adjustments for card stats */
@media (max-width: 768px) {
  .card-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .card-stats li {
    margin: 0 0.5rem;
  }
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
  }

  .whatsapp-btn svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

/* Success message styles */
.success-message {
  text-align: center;
  padding: 2rem;
}

.success-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: inline-block;
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
}

.success-message h2 {
  color: var(--ink);
  margin-bottom: 1rem;
}

.success-message p {
  color: var(--muted);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .interest-modal-content {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .success-message {
    padding: 3rem 2rem;
  }
  
  .success-icon {
    font-size: 4rem;
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
  }
}

/* Mobile sticky header always visible after scroll */
@media (max-width: 767px) {
  .site-header {
    position: relative;
  }
  
  .header-inner {
    padding: 0.5rem var(--gutter);
  }
  
  .brand-mark {
    font-size: 1.2rem;
  }
  
  .brand-tag {
    font-size: 0.6rem;
  }
  
  .fixed-header {
    z-index: 200;
  }
  
  .fixed-header-inner {
    gap: 0.4rem;
  }
  
  .fixed-header .btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
}
