/* Navanidhi Prime Properties — refined UI */
:root {
  --ink: #0a0e14;
  --ink-soft: #121820;
  --ink-mid: #1a2332;
  --surface: #f3f1eb;
  --surface-2: #fffcf5;
  --cream: #faf8f3;
  --gold: #b8872e;
  --gold-deep: #8a6420;
  --gold-bright: #e8c56a;
  --teal: #1e4d4a;
  --teal-soft: #2a6b66;
  --text: #141a22;
  --text-muted: #5a6470;
  --white: #ffffff;
  --border: rgba(20, 26, 34, 0.08);
  --border-strong: rgba(20, 26, 34, 0.14);
  --shadow-sm: 0 2px 8px rgba(10, 14, 20, 0.06);
  --shadow: 0 16px 48px rgba(10, 14, 20, 0.12);
  --shadow-lg: 0 28px 64px rgba(10, 14, 20, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --font: "Montserrat", system-ui, -apple-system, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

html {
  scroll-behavior: smooth;
}

::selection {
  background: rgba(184, 135, 46, 0.35);
  color: var(--ink);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--surface);
  background-image: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(184, 135, 46, 0.09), transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(30, 77, 74, 0.06), transparent 45%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold-deep);
  text-decoration: none;
  transition: color 0.2s var(--ease-out), opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

a:hover {
  color: var(--gold);
}

a:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out), box-shadow 0.25s var(--ease-out),
    background 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.btn:active {
  transform: scale(0.98);
}

.btn:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.btn--primary {
  background: linear-gradient(145deg, var(--gold-bright), var(--gold) 45%, var(--gold-deep));
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(184, 135, 46, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn--primary:hover {
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(184, 135, 46, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

/* Display typography */
h1,
h2,
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 245, 0.78);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.35s var(--ease-out), background 0.35s var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(255, 252, 245, 0.94);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  min-height: var(--header-h);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.logo-link:hover {
  color: var(--text);
  opacity: 0.88;
}

.logo-link img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.logo-text {
  max-width: 210px;
  line-height: 1.28;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-desktop a {
  position: relative;
  color: var(--text);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 0.2rem;
  border-bottom: none;
}

.nav-desktop a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a:not(.nav-cta)[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-desktop a:not(.nav-cta):hover,
.nav-desktop a:not(.nav-cta)[aria-current="page"] {
  color: var(--gold-deep);
}

.nav-cta {
  background: linear-gradient(145deg, var(--gold-bright), var(--gold) 40%, var(--gold-deep));
  color: var(--ink) !important;
  padding: 0.5rem 1.15rem !important;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(184, 135, 46, 0.35);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  opacity: 1;
  color: var(--ink) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 135, 46, 0.42);
}

.menu-toggle {
  display: none;
  border: none;
  background: linear-gradient(145deg, var(--ink-mid), var(--ink-soft));
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.menu-toggle:hover {
  transform: scale(1.03);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(82vh, 700px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: clamp(4rem, 12vw, 6rem) 1.5rem;
  background: var(--ink) center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 14, 20, 0.82) 0%, rgba(30, 77, 74, 0.45) 42%, rgba(10, 14, 20, 0.75) 100%);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 100%, rgba(232, 197, 106, 0.12), transparent 65%);
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: rgba(232, 197, 106, 0.12);
  border: 1px solid rgba(232, 197, 106, 0.35);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}

.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px var(--gold-bright);
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 600;
  line-height: 1.12;
  text-wrap: balance;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}

.hero .lead {
  margin: 0 auto;
  max-width: 560px;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.65;
  opacity: 0.94;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2rem;
}

.hero-badge {
  display: inline-flex;
  margin-top: 1.75rem;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

/* Sections */
.section {
  position: relative;
  padding: clamp(3.5rem, 9vw, 6rem) 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--cream) 0%, var(--surface-2) 100%);
}

.section-dark {
  position: relative;
  background: linear-gradient(165deg, var(--ink) 0%, var(--ink-mid) 45%, var(--ink-soft) 100%);
  color: var(--surface);
  overflow: hidden;
}

.section-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 197, 106, 0.45), transparent);
}

.section-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 40% at 90% 20%, rgba(232, 197, 106, 0.08), transparent);
  pointer-events: none;
}

.section-dark > .container {
  position: relative;
  z-index: 1;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark p,
.section-dark .muted {
  color: rgba(250, 248, 243, 0.9);
}

.section-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.85rem, 3.8vw, 2.5rem);
  font-weight: 600;
  color: var(--text);
}

.section-dark .section-title {
  color: var(--white);
}

.section-intro {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  max-width: 640px;
  font-size: 1.05rem;
}

.intro-card {
  margin-top: 0.5rem;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.intro-card .prose {
  font-size: 1.02rem;
}

.grid-2 {
  display: grid;
  gap: clamp(2rem, 5vw, 3.75rem);
  align-items: center;
}

@media (min-width: 900px) {
  .grid-2 {
    grid-template-columns: 1.02fr 1fr;
  }
}

.section-dark .grid-2 {
  gap: 2.75rem;
}

.prose p {
  margin: 0 0 1.1rem;
}

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

.muted {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.divider-gold {
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  border-radius: 2px;
  margin: 0.85rem 0 1.35rem;
}

.section-dark .divider-gold {
  opacity: 0.95;
}

.card-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.card-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.75s var(--ease-out);
}

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

.subhead {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal);
  margin: 0 0 0.5rem;
}

.section-dark .subhead {
  color: var(--gold-bright);
}

.heading-accent {
  margin: 1.85rem 0 0.65rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
}

.section-mango {
  background: linear-gradient(180deg, var(--surface-2) 0%, #fff8ee 50%, var(--cream) 100%);
  position: relative;
}

.section-mango::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(255, 252, 245, 1), transparent);
  pointer-events: none;
}

/* Feature lists */
.feature-block {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.feature-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.feature-block h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.75rem);
  font-weight: 600;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.35rem 0 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .feature-list {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-list li {
  position: relative;
  padding: 1.15rem 1.15rem 1.15rem 2.85rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.feature-list li:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: rgba(184, 135, 46, 0.25);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.25rem;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(184, 135, 46, 0.2), rgba(184, 135, 46, 0.35));
  border: 1px solid rgba(184, 135, 46, 0.45);
}

.feature-list li::after {
  content: "✓";
  position: absolute;
  left: 1.35rem;
  top: 1.28rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-deep);
}

.feature-list strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 0.95rem;
}

.section-dark .feature-list strong {
  color: var(--white);
}

.gallery-row {
  display: grid;
  gap: 1.35rem;
  margin-bottom: 3rem;
}

@media (min-width: 720px) {
  .gallery-row {
    grid-template-columns: 1fr 1fr;
  }
}

.gallery-row .card-image {
  border: 1px solid var(--border);
}

/* Mango section layout */
.mango-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .mango-grid {
    grid-template-columns: 1.05fr 1fr;
  }
}

.mango-grid .card-image {
  box-shadow: var(--shadow-lg);
}

/* Contact / About */
.info-box {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.25rem) clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  overflow: hidden;
}

.info-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
}

.info-box:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.info-box h3 {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

/* Inner page hero */
.page-hero-sm {
  position: relative;
  background: linear-gradient(135deg, var(--ink) 0%, var(--teal) 48%, var(--ink-mid) 100%);
  color: var(--white);
  padding: clamp(3rem, 8vw, 4.5rem) 1.5rem;
  text-align: center;
  overflow: hidden;
}

.page-hero-sm::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 0%, rgba(232, 197, 106, 0.2), transparent 55%),
    radial-gradient(ellipse 50% 70% at 100% 100%, rgba(42, 107, 102, 0.35), transparent 50%);
  pointer-events: none;
}

.page-hero-sm .container {
  position: relative;
  z-index: 1;
}

.page-hero-sm h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.page-hero-sm p {
  margin: 0.85rem auto 0;
  max-width: 520px;
  opacity: 0.92;
  font-size: 1.05rem;
}

.page-hero-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

/* Footer */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, var(--ink) 0%, #070a0f 100%);
  color: rgba(255, 255, 255, 0.82);
  padding: 3.5rem 0 2rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--teal-soft), var(--gold-deep));
  opacity: 0.85;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 820px) {
  .footer-grid {
    grid-template-columns: 1.1fr 0.9fr 1fr;
    align-items: start;
  }
}

.site-footer h3 {
  color: var(--white);
  font-size: 0.82rem;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  opacity: 0.95;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer a:hover {
  color: var(--gold-bright);
}

.footer-newsletter label {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.55rem;
  opacity: 0.85;
  font-weight: 500;
}

.footer-newsletter .input-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.35rem;
}

.footer-newsletter input {
  flex: 1;
  min-width: 200px;
  max-width: 320px;
  padding: 0.75rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.footer-newsletter input:focus {
  outline: none;
  border-color: rgba(232, 197, 106, 0.55);
  background: rgba(255, 255, 255, 0.09);
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter button {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold));
  border: none;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-weight: 700;
  font-family: inherit;
  font-size: 0.875rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.footer-newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 135, 46, 0.35);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  text-align: center;
  opacity: 0.65;
  letter-spacing: 0.04em;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.social-row a:hover {
  background: rgba(232, 197, 106, 0.15);
  border-color: rgba(232, 197, 106, 0.35);
  color: var(--gold-bright);
}

/* Quality strip */
.quality-strip {
  position: relative;
  text-align: center;
  padding: clamp(2.25rem, 5vw, 3.25rem) 1.25rem;
  background: linear-gradient(
    120deg,
    rgba(184, 135, 46, 0.12) 0%,
    rgba(30, 77, 74, 0.08) 50%,
    rgba(184, 135, 46, 0.12) 100%
  );
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quality-strip .container {
  position: relative;
}

.quality-strip .subhead {
  color: var(--gold-deep);
}

.quality-strip p:last-child {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 600;
  color: var(--text);
}

/* Mobile nav */
@media (max-width: 900px) {
  :root {
    --header-h: 64px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-desktop {
    display: none;
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    right: 0;
    background: rgba(255, 252, 245, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.35rem 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 0.15rem;
  }

  .nav-desktop.is-open {
    display: flex;
  }

  .nav-desktop a {
    padding: 0.75rem 0.25rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-desktop a::after {
    display: none;
  }

  .nav-desktop a:last-child {
    border-bottom: none;
    margin-top: 0.35rem;
    text-align: center;
    justify-content: center;
  }

  .nav-desktop .nav-cta {
    width: 100%;
    box-sizing: border-box;
  }

  .header-inner {
    position: relative;
  }

  .logo-text {
    font-size: 0.95rem;
    max-width: 160px;
  }
}
