:root {
  --nr-bg: #eef1f0;
  --nr-bg-tint: #e3e8e6;
  --nr-ink: #14231f;
  --nr-muted: #5c6b66;
  --nr-forest: #14352e;
  --nr-forest-deep: #0d241f;
  --nr-brass: #b08948;
  --nr-brass-soft: #d4b57a;
  --nr-white: #f8faf9;
  --nr-line: rgba(20, 53, 46, 0.12);
  --nr-radius: 18px;
  --nr-font-display: "Fraunces", "Times New Roman", serif;
  --nr-font-body: "Outfit", "Helvetica Neue", sans-serif;
  --nr-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--nr-font-body);
  color: var(--nr-ink);
  background: var(--nr-bg);
}

.page-wrapper,
.main-wrapper {
  background: transparent;
}

.nr-wrap {
  width: min(1600px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Nav */
.nr-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(238, 241, 240, 0.88);
  border-bottom: 1px solid var(--nr-line);
}

/* Content pages — solid black header */
body.nr-page--content .nr-nav {
  background: #0a0a0a;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.nr-page--content .nr-nav__brand,
body.nr-page--content .nr-nav__link {
  color: #fff;
}

body.nr-page--content .nr-nav__link:hover {
  color: #fff;
  opacity: 1;
}

body.nr-page--content .nr-nav__toggle {
  border-color: rgba(255, 255, 255, 0.28);
}

body.nr-page--content .nr-nav__toggle span {
  background: #fff;
}

body.nr-page--content .nr-mobile-nav {
  background: #0a0a0a;
  border-top-color: rgba(255, 255, 255, 0.1);
}

body.nr-page--content .nr-mobile-nav a {
  color: #fff;
}

.nr-nav__inner {
  width: min(1600px, calc(100% - 2.5rem));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nr-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--nr-ink);
}

.nr-nav__mark {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  border: 2px solid var(--nr-brass);
  box-shadow: inset 0 0 0 3px var(--nr-forest);
  background: radial-gradient(circle at 35% 30%, var(--nr-brass-soft), var(--nr-forest));
}

.nr-nav__name {
  font-family: var(--nr-font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nr-nav__links {
  display: flex;
  gap: 1.5rem;
}

.nr-nav__link {
  color: var(--nr-ink);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  opacity: 0.85;
}

.nr-nav__link:hover {
  opacity: 1;
  color: var(--nr-forest);
}

.nr-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nr-nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--nr-line);
  border-radius: 10px;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nr-nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--nr-ink);
}

.nr-mobile-nav {
  border-top: 1px solid var(--nr-line);
  background: var(--nr-bg);
  padding: 1rem 1.25rem 1.5rem;
}

.nr-mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nr-mobile-nav a {
  color: var(--nr-ink);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
}

/* Buttons */
.nr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.35s var(--nr-ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.nr-btn:hover {
  transform: translateY(-2px);
}

.nr-btn--sm {
  min-height: 40px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.nr-btn--solid {
  background: var(--nr-forest);
  color: var(--nr-white);
  border: 1px solid var(--nr-forest);
}

.nr-btn--solid:hover {
  background: var(--nr-forest-deep);
  color: var(--nr-white);
}

.nr-btn--ghost {
  background: transparent;
  color: var(--nr-ink);
  border: 1px solid #b8c0bc;
}

.nr-btn--ghost:hover {
  border-color: #8a9590;
  color: var(--nr-forest);
}

.nr-btn--on-dark {
  background: var(--nr-brass);
  border-color: var(--nr-brass);
  color: var(--nr-forest-deep);
}

.nr-btn--on-dark:hover {
  background: var(--nr-brass-soft);
  color: var(--nr-forest-deep);
}

.nr-text-link {
  color: var(--nr-forest);
  font-weight: 600;
  font-size: 0.9rem;
}

.nr-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nr-brass);
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.nr-lead {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--nr-muted);
  max-width: 38rem;
}

.nr-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(176, 137, 72, 0.18);
  color: var(--nr-brass);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nr-pill--muted {
  background: rgba(20, 53, 46, 0.08);
  color: var(--nr-forest);
}

/* Hero */
.nr-hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(176, 137, 72, 0.22), transparent 55%),
    linear-gradient(160deg, #0d241f 0%, #1a3c34 45%, #243d45 100%);
  color: var(--nr-white);
}

.nr-hero--banner {
  background: #0d241f;
}

.nr-hero-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
  cursor: pointer;
}

.nr-hero-banner__track {
  position: absolute;
  inset: 0;
}

.nr-hero-banner__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s var(--nr-ease), visibility 0.9s var(--nr-ease);
  transform: scale(1.04);
}

.nr-hero-banner__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: opacity 0.9s var(--nr-ease), visibility 0.9s var(--nr-ease), transform 6.5s linear;
}

.nr-hero-banner__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.nr-hero-banner__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 20, 17, 0.35) 0%, rgba(8, 20, 17, 0.2) 40%, rgba(8, 20, 17, 0.72) 100%),
    linear-gradient(90deg, rgba(8, 20, 17, 0.55) 0%, rgba(8, 20, 17, 0.12) 55%, transparent 100%);
}

.nr-hero-banner__dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  pointer-events: auto;
}

.nr-hero-banner__dot {
  width: 2.25rem;
  height: 3px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(248, 250, 249, 0.35);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.nr-hero-banner__dot.is-active {
  background: var(--nr-brass-soft);
  transform: scaleX(1.15);
}

.nr-hero-banner__dot:focus-visible {
  outline: 2px solid var(--nr-brass-soft);
  outline-offset: 3px;
}

.nr-hero__media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nr-hero__glow {
  position: absolute;
  width: 55%;
  height: 70%;
  right: -5%;
  top: 10%;
  background: radial-gradient(circle, rgba(212, 181, 122, 0.28), transparent 65%);
  animation: nr-glow 8s ease-in-out infinite alternate;
}

.nr-hero__content {
  position: relative;
  z-index: 2;
  width: min(1600px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 5.5rem 0 3rem;
  animation: nr-rise 0.9s var(--nr-ease) both;
  pointer-events: none;
}

.nr-hero__content a,
.nr-hero__content button {
  pointer-events: auto;
}

.nr-hero__title {
  font-family: var(--nr-font-display);
  font-weight: 550;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 12ch;
  margin: 0 0 1.25rem;
  color: var(--nr-white);
}

.nr-hero__lead {
  max-width: 34rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(248, 250, 249, 0.78);
  margin: 0 0 1.75rem;
}

.nr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.nr-hero .nr-eyebrow {
  color: var(--nr-brass-soft);
}

.nr-hero .nr-btn--ghost {
  color: var(--nr-white);
  border-color: rgba(248, 250, 249, 0.35);
}

.nr-hero .nr-btn--ghost:hover {
  border-color: var(--nr-brass-soft);
  color: var(--nr-brass-soft);
}

.nr-hero .nr-btn--solid {
  background: var(--nr-brass);
  border-color: var(--nr-brass);
  color: var(--nr-forest-deep);
}

.nr-hero .nr-ring-visual {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  animation: nr-float 6s ease-in-out infinite;
}

/* Ring visual */
.nr-ring-visual {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
}

.nr-ring-visual--hero {
  width: min(420px, 48vw);
  height: min(420px, 48vw);
}

.nr-ring-visual--lg {
  width: min(360px, 80vw);
  height: min(360px, 80vw);
}

.nr-ring-visual--sm {
  width: 140px;
  height: 140px;
}

.nr-ring-visual__outer,
.nr-ring-visual__inner,
.nr-ring-visual__core {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
}

.nr-ring-visual__outer {
  width: 100%;
  height: 100%;
  background:
    conic-gradient(from 210deg, var(--nr-brass-soft), #8a6a35, var(--nr-brass), #efe0c0, var(--nr-brass-soft));
  mask: radial-gradient(farthest-side, transparent calc(100% - 28px), #000 calc(100% - 27px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 28px), #000 calc(100% - 27px));
  animation: nr-spin 18s linear infinite;
}

.nr-ring-visual__inner {
  width: 62%;
  height: 62%;
  border: 1px solid rgba(212, 181, 122, 0.45);
  box-shadow: 0 0 40px rgba(176, 137, 72, 0.25);
}

.nr-ring-visual__core {
  width: 18%;
  height: 18%;
  background: radial-gradient(circle at 30% 30%, #fff6e4, var(--nr-brass));
  box-shadow: 0 0 24px rgba(212, 181, 122, 0.55);
}

.nr-featured__visual,
.nr-product-card__visual,
.nr-product-hero__visual {
  background:
    radial-gradient(circle at 40% 30%, rgba(212, 181, 122, 0.2), transparent 50%),
    linear-gradient(160deg, color-mix(in srgb, var(--nr-accent, #1a3c34) 88%, black), var(--nr-accent, #1a3c34));
  border-radius: var(--nr-radius);
  position: relative;
  overflow: hidden;
}

/* Sections */
.nr-section {
  padding: 5rem 0;
}

/* Product categories under banner */
.nr-categories {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background: #fff;
}

.nr-categories__title {
  font-family: var(--nr-font-body);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
  color: #111;
  margin: 0 0 2.25rem;
  letter-spacing: -0.01em;
}

.nr-categories__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .nr-categories__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.nr-category-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 620px;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 8px 28px rgba(20, 35, 31, 0.12);
  transition: transform 0.4s var(--nr-ease), box-shadow 0.4s ease;
}

@media (max-width: 767px) {
  .nr-category-card {
    min-height: 460px;
  }
}

.nr-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(20, 35, 31, 0.18);
  color: #fff;
}

.nr-category-card__media {
  position: absolute;
  inset: 0;
  background-color: var(--nr-accent, #1a3c34);
  background-image: var(--nr-cat-image, none);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--nr-ease);
}

.nr-category-card:hover .nr-category-card__media {
  transform: scale(1.05);
}

.nr-category-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.nr-category-card__body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.5rem 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}

.nr-category-card__name {
  font-family: var(--nr-font-body);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

.nr-category-card__sub {
  font-size: 0.95rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
  max-width: 16rem;
}

.nr-category-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.85rem;
  min-height: 40px;
  padding: 0.55rem 1.35rem;
  border-radius: 6px;
  background: #1d835f;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.25s ease;
}

.nr-category-card:hover .nr-category-card__cta {
  background: #166b4d;
}

/* Brand banner — Learn about our brand */
.nr-brand-banner {
  position: relative;
  min-height: min(560px, 85vw);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #e8ebe9;
}

.nr-brand-banner__bg {
  position: absolute;
  inset: 0;
  background-color: #d8ddd9;
  background-image: var(--nr-brand-image);
  background-size: cover;
  background-position: center right;
}

.nr-brand-banner__frost {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.78) 32%,
    rgba(255, 255, 255, 0.28) 58%,
    rgba(255, 255, 255, 0) 78%
  );
  backdrop-filter: blur(0px);
}

@media (min-width: 768px) {
  .nr-brand-banner__frost {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.72) 28%,
      rgba(255, 255, 255, 0.2) 52%,
      transparent 70%
    );
  }

  .nr-brand-banner__frost::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(48%, 520px);
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    mask-image: linear-gradient(90deg, #000 55%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, #000 55%, transparent 100%);
  }
}

.nr-brand-banner__inner {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0;
  max-width: 28rem;
}

.nr-brand-banner__title {
  font-family: var(--nr-font-body);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  line-height: 1.15;
  color: #111;
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}

.nr-brand-banner__lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #222;
  max-width: 22rem;
}

.nr-brand-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  background: #1d835f;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s var(--nr-ease);
}

.nr-brand-banner__cta:hover {
  background: #166b4d;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 700px) {
  .nr-brand-banner {
    min-height: 480px;
  }

  .nr-brand-banner__bg {
    background-position: 70% center;
  }

  .nr-brand-banner__frost {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.7) 42%,
      rgba(255, 255, 255, 0.25) 70%,
      transparent 100%
    );
  }

  .nr-brand-banner__inner {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    max-width: 100%;
  }
}

.nr-section--tint {
  background: var(--nr-bg-tint);
}

.nr-section__head {
  margin-bottom: 2.5rem;
}

.nr-section__head h2,
.nr-page-hero h1,
.nr-featured h2,
.nr-cta h2,
.nr-product-hero h1,
.nr-prose h2,
.nr-specs h2,
.nr-guide-card h2 {
  font-family: var(--nr-font-display);
  font-weight: 550;
  letter-spacing: -0.02em;
  color: var(--nr-ink);
}

.nr-section__head h2,
.nr-featured h2,
.nr-cta h2,
.nr-specs h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 0.75rem;
}

.nr-section__foot {
  margin-top: 2.5rem;
}

.nr-page-hero {
  padding: 4.5rem 0 2rem;
}

.nr-page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 0.85rem;
}

.nr-featured__grid,
.nr-split,
.nr-product-hero__grid,
.nr-quote-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .nr-featured__grid,
  .nr-split,
  .nr-product-hero__grid,
  .nr-quote-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.nr-featured__visual {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.nr-featured__visual .nr-pill {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
}

.nr-product-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .nr-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .nr-product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Inner pages with banner */
body.nr-page--shop,
body.nr-page--banner {
  background: #fff;
}

/* Float header over dark banner (home + inner banner pages) */
body.nr-page--home .page-wrapper,
body.nr-page--banner .page-wrapper {
  overflow: visible;
}

body.nr-page--home .main-wrapper,
body.nr-page--banner .main-wrapper {
  padding-top: 0 !important;
}

body.nr-page--home .nr-nav,
body.nr-page--banner .nr-nav {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

body.nr-page--home .nr-nav__brand,
body.nr-page--banner .nr-nav__brand,
body.nr-page--home .nr-nav__link,
body.nr-page--banner .nr-nav__link {
  color: var(--nr-white);
}

body.nr-page--home .nr-nav__link:hover,
body.nr-page--banner .nr-nav__link:hover {
  color: #fff;
  opacity: 1;
}

body.nr-page--home .nr-nav.is-scrolled,
body.nr-page--home .nr-nav.is-open,
body.nr-page--banner .nr-nav.is-scrolled,
body.nr-page--banner .nr-nav.is-open {
  background: rgba(13, 36, 31, 0.92);
  border-bottom-color: rgba(248, 250, 249, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Inner page banner — title floats on image */
.nr-page-banner {
  position: relative;
  width: 100%;
  background: #0a0a0a;
  line-height: 0;
  overflow: hidden;
}

.nr-page-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(42vw, 544px);
  min-height: 224px;
  object-fit: cover;
  object-position: center;
}

.nr-page-banner__copy {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-top: 4.5rem;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 42%, transparent 70%);
  box-sizing: border-box;
}

.nr-page-banner__copy .nr-wrap {
  width: min(1600px, calc(100% - 2.5rem));
  text-align: left;
}

.nr-page-banner__copy h1 {
  margin: 0 0 0.45rem;
  font-family: var(--nr-font-body);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.8vw, 2.75rem);
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.nr-page-banner__copy p {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

@media (max-width: 699px) {
  .nr-page-banner__copy {
    align-items: flex-end;
    padding-bottom: 1.1rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.15) 55%, transparent 100%);
  }
}

/* Noor Life — app download page */
.nr-app-page {
  padding: 3rem 0 5rem;
  background: #fff;
}

.nr-app-dl {
  display: grid;
  gap: 2rem 2.5rem;
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 920px;
  margin: 0 auto;
}

@media (min-width: 760px) {
  .nr-app-dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.nr-app-dl__item {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
}

.nr-app-dl__card {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #e8f5f0;
  line-height: 0;
}

.nr-app-dl__card img {
  display: block;
  width: 100%;
  height: auto;
}

.nr-app-dl__brand {
  position: absolute;
  right: 0.85rem;
  bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.45rem 0.2rem 0.25rem;
  border-radius: 8px;
  background: rgba(232, 245, 240, 0.96);
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.2;
}

.nr-app-dl__brand::before {
  content: "";
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 6px;
  background:
    radial-gradient(circle at 35% 30%, var(--nr-brass-soft), var(--nr-forest));
  box-shadow: inset 0 0 0 2px var(--nr-brass);
}

.nr-app-dl__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11rem;
  padding: 0.85rem 2.25rem;
  border-radius: 8px;
  background: #1a7a5c;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nr-app-dl__btn:hover {
  background: #15634b;
  transform: translateY(-1px);
}

.nr-shop {
  padding: 2.5rem 0 4.5rem;
  background: #fff;
}

.nr-shop-grid {
  display: grid;
  gap: 1.75rem 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .nr-shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .nr-shop-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1.5rem;
  }
}

.nr-shop-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.nr-shop-card__media {
  position: relative;
  aspect-ratio: 1;
  border-radius: 4px;
  background: #f3f3f3;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.nr-shop-card__media img {
  display: block;
  width: 78%;
  height: 78%;
  object-fit: contain;
  transition: transform 0.45s var(--nr-ease), opacity 0.2s ease;
}

.nr-shop-card:hover .nr-shop-card__media img {
  transform: scale(1.04);
}

.nr-shop-card__body {
  padding: 0.95rem 0.15rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nr-shop-card__title {
  margin: 0;
  font-family: var(--nr-font-body);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.35;
  color: #1a1a1a;
}

.nr-shop-card__price {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2a9d8f;
}

.nr-shop-card__swatches {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.nr-shop-card__swatch {
  display: block;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--swatch, #ccc);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.nr-shop-card__swatch.is-active {
  outline: 1px solid #1a1a1a;
  outline-offset: 2px;
}

.nr-shop-card__swatch:focus-visible {
  outline: 2px solid #2a9d8f;
  outline-offset: 2px;
}

.nr-shop-card__more {
  font-size: 0.75rem;
  color: #777;
  line-height: 1;
}

/* News module — 3 columns */
.nr-page-hero + .nr-news {
  padding-top: 1.25rem;
}

.nr-news__head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.nr-news__head .nr-lead {
  margin-left: auto;
  margin-right: auto;
}

.nr-news .nr-section__foot {
  text-align: center;
}

.nr-news-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .nr-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .nr-news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nr-news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--nr-line);
  border-radius: var(--nr-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s var(--nr-ease), box-shadow 0.4s ease;
}

.nr-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(20, 35, 31, 0.1);
  color: inherit;
}

.nr-news-card__media {
  aspect-ratio: 16 / 10;
  background: #dce3e0;
  overflow: hidden;
}

.nr-news-card__media--empty {
  background:
    radial-gradient(circle at 40% 30%, rgba(212, 181, 122, 0.35), transparent 55%),
    linear-gradient(160deg, #1a3c34, #243d45);
}

.nr-news-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--nr-ease);
}

.nr-news-card:hover .nr-news-card__media img {
  transform: scale(1.04);
}

.nr-news-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
}

.nr-news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--nr-brass);
}

.nr-news-card__meta time {
  color: var(--nr-muted);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.nr-news-card__body h3 {
  font-family: var(--nr-font-display);
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 0;
  color: var(--nr-ink);
}

.nr-news-card__body p {
  margin: 0;
  color: var(--nr-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
}

.nr-product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: var(--nr-radius);
  overflow: hidden;
  background: var(--nr-white);
  border: 1px solid var(--nr-line);
  transition: transform 0.45s var(--nr-ease), box-shadow 0.45s ease;
}

.nr-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(20, 35, 31, 0.1);
}

.nr-product-card__visual {
  min-height: 180px;
  display: grid;
  place-items: center;
}

.nr-product-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.nr-product-card__body h3 {
  font-family: var(--nr-font-display);
  font-size: 1.25rem;
  margin: 0;
}

.nr-product-card__body p {
  margin: 0;
  color: var(--nr-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
}

.nr-feature-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .nr-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.nr-feature,
.nr-guide-card {
  padding: 1.5rem;
  border-radius: var(--nr-radius);
  background: var(--nr-white);
  border: 1px solid var(--nr-line);
  animation: nr-rise 0.8s var(--nr-ease) both;
  animation-delay: var(--nr-delay, 0ms);
}

.nr-feature__index {
  display: inline-block;
  font-family: var(--nr-font-display);
  color: var(--nr-brass);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.nr-feature h3,
.nr-guide-card h2 {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.nr-feature p,
.nr-guide-card p {
  margin: 0;
  color: var(--nr-muted);
  line-height: 1.55;
}

.nr-app-panel {
  min-height: 280px;
  border-radius: var(--nr-radius);
  background: linear-gradient(160deg, #14352e, #243d45);
  display: grid;
  place-items: center;
  padding: 2rem;
}

.nr-app-panel__screen {
  width: min(240px, 100%);
  background: rgba(248, 250, 249, 0.08);
  border: 1px solid rgba(248, 250, 249, 0.18);
  border-radius: 24px;
  padding: 1.75rem 1.25rem;
  color: var(--nr-white);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: center;
  animation: nr-rise 1s var(--nr-ease) both;
}

.nr-app-panel__count {
  font-family: var(--nr-font-display);
  font-size: 2.8rem;
  color: var(--nr-brass-soft);
}

/* App Life section (reference layout) */
.nr-app-life {
  background: #fff;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.nr-app-life__heading {
  font-family: var(--nr-font-body);
  font-weight: 700;
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  text-align: center;
  color: #111;
  margin: 0 0 1.75rem;
  letter-spacing: -0.01em;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.nr-app-life__panel {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: 18px;
  background-color: #d8efe6;
  background-image:
    radial-gradient(rgba(29, 131, 95, 0.12) 1.2px, transparent 1.2px),
    radial-gradient(rgba(29, 131, 95, 0.08) 1px, transparent 1px);
  background-size: 28px 28px, 14px 14px;
  background-position: 0 0, 7px 7px;
}

@media (min-width: 900px) {
  .nr-app-life__panel {
    grid-template-columns: 30% 70%;
    gap: 2rem;
    padding: 2rem;
  }
}

.nr-app-life__copy h3 {
  font-family: var(--nr-font-body);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  color: #0f5c42;
  margin: 0 0 1rem;
}

.nr-app-life__copy p {
  margin: 0 0 0.9rem;
  color: #3a4a44;
  font-size: 0.95rem;
  line-height: 1.65;
}

.nr-app-life__link {
  display: inline-flex;
  margin-top: 0.5rem;
  color: #1d835f;
  font-weight: 600;
  text-decoration: none;
}

.nr-app-life__link:hover {
  color: #166b4d;
  text-decoration: underline;
}

.nr-app-life__media {
  border-radius: 14px;
  overflow: hidden;
  min-height: 280px;
  width: 100%;
  background: #b7dccf;
}

.nr-app-life__media img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 280px;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16 / 10;
}

/* App feature columns under Life section */
.nr-app-features {
  padding-top: 0;
  padding-bottom: 2.5rem;
  background: #fff;
}

.nr-app-features__grid {
  display: grid;
  gap: 1.5rem 1.25rem;
  grid-template-columns: 1fr;
  padding: 1.5rem 1.25rem 1.25rem;
  border-radius: 18px;
  background-color: #eef7f3;
  background-image:
    radial-gradient(rgba(29, 131, 95, 0.1) 1.2px, transparent 1.2px),
    radial-gradient(rgba(29, 131, 95, 0.06) 1px, transparent 1px);
  background-size: 28px 28px, 14px 14px;
  background-position: 0 0, 7px 7px;
}

@media (min-width: 900px) {
  .nr-app-features__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.75rem 1.5rem 1.5rem;
  }
}

.nr-app-feature {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.nr-app-feature h3 {
  font-family: var(--nr-font-body);
  font-weight: 700;
  font-size: 1.4rem;
  color: #0f5c42;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.nr-app-feature p {
  margin: 0 0 0.85rem;
  color: #4a5a54;
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
}

.nr-app-feature__phone {
  margin: auto auto 0;
  width: 80%;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  height: 440px;
  max-height: 440px;
  background: #0d241f;
}

.nr-app-feature__phone img,
.nr-app-feature__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Custom Tasbih + Download CTA */
.nr-app-cta {
  padding-top: 0;
  padding-bottom: 2.75rem;
  background: #fff;
}

.nr-app-cta__grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .nr-app-cta__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.nr-app-cta__card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.35rem 1.25rem;
  border-radius: 18px;
  background-color: #e8f5ef;
  background-image:
    radial-gradient(rgba(29, 131, 95, 0.1) 1.2px, transparent 1.2px),
    radial-gradient(rgba(29, 131, 95, 0.06) 1px, transparent 1px);
  background-size: 28px 28px, 14px 14px;
  background-position: 0 0, 7px 7px;
  min-height: 100%;
}

.nr-app-cta__card h3 {
  font-family: var(--nr-font-body);
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #0f5c42;
  margin: 0 0 0.55rem;
  line-height: 1.25;
}

.nr-app-cta__card p {
  margin: 0 0 0.9rem;
  color: #3f534b;
  font-size: 0.92rem;
  line-height: 1.5;
}

.nr-app-cta__phones {
  margin-top: auto;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  max-height: 240px;
  background: #d5ebe1;
}

.nr-app-cta__phones img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nr-app-cta__card--download {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 700px) {
  .nr-app-cta__card--download {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
}

.nr-app-cta__download-copy {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nr-app-cta__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.nr-store-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 148px;
  min-height: 48px;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  background: #111;
  color: #fff;
  text-decoration: none;
  line-height: 1.15;
  transition: opacity 0.2s ease;
}

.nr-store-btn:hover {
  opacity: 0.88;
  color: #fff;
}

.nr-store-btn__label {
  font-size: 0.65rem;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

.nr-store-btn__name {
  font-size: 1.05rem;
  font-weight: 600;
}

.nr-app-cta__ready {
  margin: 0 !important;
  font-size: 0.9rem !important;
  color: #0f5c42 !important;
  font-weight: 600;
  text-decoration: none;
}

.nr-app-cta__ready:hover {
  text-decoration: underline;
}

.nr-app-cta__portrait {
  border-radius: 14px;
  overflow: hidden;
  min-height: 200px;
  max-height: 280px;
  height: 100%;
  background: #cfe6db;
}

.nr-app-cta__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

/* Product photo categories — keep subject readable */
.nr-category-card__media {
  background-color: #eceeec;
}

.nr-categories .nr-category-card:nth-child(2) .nr-category-card__media,
.nr-categories .nr-category-card:nth-child(3) .nr-category-card__media {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 35%;
}

.nr-faq__item {
  border-bottom: 1px solid var(--nr-line);
  padding: 1rem 0;
}

.nr-faq__item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.nr-faq__item summary::-webkit-details-marker {
  display: none;
}

.nr-faq__item p {
  margin: 0.75rem 0 0;
  color: var(--nr-muted);
  line-height: 1.55;
}

.nr-cta {
  background: linear-gradient(135deg, #0d241f, #1a3c34 55%, #2a4a3f);
  color: var(--nr-white);
  padding: 4.5rem 0;
}

.nr-cta__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.nr-cta h2 {
  color: var(--nr-white);
  max-width: 18ch;
}

.nr-cta p {
  color: rgba(248, 250, 249, 0.75);
  margin: 0;
}

/* Product detail */
.nr-product-hero {
  padding: 3rem 0 2rem;
}

.nr-product-hero__visual {
  min-height: 420px;
  display: grid;
  place-items: center;
}

.nr-product-hero__visual--photo {
  background: #f3f3f3;
  padding: 2rem;
}

.nr-product-hero__visual--photo img {
  display: block;
  width: min(360px, 80%);
  height: auto;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.nr-product-hero__price {
  margin: 0.15rem 0 1rem;
  font-family: var(--nr-font-display);
  font-size: clamp(1.65rem, 2.4vw, 2rem);
  font-weight: 550;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: var(--nr-brass);
  font-variant-numeric: tabular-nums;
}

.nr-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--nr-muted);
  margin-bottom: 1rem;
}

.nr-breadcrumb a {
  color: var(--nr-forest);
  text-decoration: none;
}

.nr-meta {
  margin: 1rem 0;
}

.nr-meta strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nr-muted);
  margin-bottom: 0.25rem;
}

.nr-meta p {
  margin: 0;
}

.nr-specs table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.25rem;
  background: var(--nr-white);
  border-radius: var(--nr-radius);
  overflow: hidden;
}

.nr-specs th,
.nr-specs td {
  text-align: left;
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid var(--nr-line);
}

.nr-specs th {
  width: 40%;
  color: var(--nr-muted);
  font-weight: 500;
}

.nr-quote-panel {
  background: var(--nr-white);
  border: 1px solid var(--nr-line);
  border-radius: var(--nr-radius);
  padding: 1.5rem;
}

.nr-guide-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .nr-guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.nr-prose {
  max-width: 42rem;
}

.nr-prose p,
.nr-prose li {
  color: var(--nr-muted);
  line-height: 1.65;
}

.nr-prose h2,
.nr-prose h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.35rem;
}

.nr-prose ul {
  padding-left: 1.25rem;
  margin: 0.75rem 0 1.25rem;
}

.nr-prose a {
  color: var(--nr-forest);
}

.nr-prose a.nr-btn--solid {
  color: var(--nr-white);
}

.nr-prose a.nr-btn--solid:hover {
  color: var(--nr-white);
}

.nr-about-body {
  max-width: 48rem;
  width: 100%;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.nr-legal-body {
  max-width: 64rem;
  width: 100%;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.nr-news-article {
  max-width: 64rem;
  width: 100%;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.nr-news-article__hero {
  margin: 0 0 1.75rem;
  border-radius: var(--nr-radius);
  overflow: hidden;
  background: #e8ebe9;
}

.nr-news-article__hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}

/* Back to top — match logo brass */
.top-btn {
  background: var(--nr-brass);
  color: #fff;
  box-shadow: 0 4px 14px rgba(176, 137, 72, 0.45);
}

.top-btn:hover {
  background: var(--nr-brass-soft);
}

/* Footer */
.nr-footer {
  background: var(--nr-forest-deep);
  color: #fff;
  padding: 3.5rem 0 1.5rem;
  margin-top: 0;
}

.nr-footer__inner {
  width: min(1600px, calc(100% - 2.5rem));
  margin: 0 auto 2.5rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .nr-footer__inner {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.nr-footer__logo .nr-nav__name,
.nr-footer__brand,
.nr-footer__tagline,
.nr-footer__contact,
.nr-footer__contact span,
.nr-footer__col h3,
.nr-footer a {
  color: #fff;
}

.nr-footer__bottom,
.nr-footer__bottom p,
.nr-footer__legal a {
  color: rgba(255, 255, 255, 0.55);
}

.nr-footer__tagline {
  max-width: 28rem;
  line-height: 1.55;
  margin: 1rem 0;
}

.nr-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nr-footer__social {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.nr-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  border: 1px solid rgba(212, 181, 122, 0.45);
  color: var(--nr-brass-soft);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nr-footer__social a:hover {
  background: var(--nr-brass);
  border-color: var(--nr-brass);
  color: #0d241f;
  opacity: 1;
  transform: translateY(-2px);
}

.nr-footer__social svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}

.nr-footer a {
  text-decoration: none;
}

.nr-footer a:hover {
  color: #fff;
  opacity: 0.85;
}

.nr-footer__col h3 {
  font-family: var(--nr-font-display);
  font-size: 1.1rem;
  margin: 0 0 0.85rem;
}

.nr-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.nr-footer__bottom {
  width: min(1600px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.nr-footer__legal {
  display: flex;
  gap: 1rem;
}

.nr-footer__bottom p {
  margin: 0;
}

.nr-footer__legal a:hover {
  color: rgba(255, 255, 255, 0.85);
  opacity: 1;
}

/* Inquiry form on Noor pages */
.nr-inquiry-form .heading-style-h4 {
  font-family: var(--nr-font-display);
}

.nr-inquiry-form .button {
  background: var(--nr-forest) !important;
  border-color: var(--nr-forest) !important;
}

@keyframes nr-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes nr-float {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(calc(-50% - 12px)) translateX(-6px); }
}

@keyframes nr-spin {
  to { transform: rotate(360deg); }
}

@keyframes nr-glow {
  from { opacity: 0.7; transform: scale(1); }
  to { opacity: 1; transform: scale(1.08); }
}

@media (max-width: 860px) {
  .nr-nav__links {
    display: none;
  }

  .nr-nav__actions .nr-btn {
    display: none;
  }

  .nr-nav__toggle {
    display: inline-flex;
  }

  body.nr-page--home .nr-nav__toggle,
  body.nr-page--banner .nr-nav__toggle {
    border-color: rgba(248, 250, 249, 0.35);
  }

  body.nr-page--home .nr-nav__toggle span,
  body.nr-page--banner .nr-nav__toggle span {
    background: var(--nr-white);
  }

  body.nr-page--home .nr-mobile-nav,
  body.nr-page--banner .nr-mobile-nav {
    background: rgba(13, 36, 31, 0.98);
    border-top-color: rgba(248, 250, 249, 0.12);
  }

  body.nr-page--home .nr-mobile-nav a,
  body.nr-page--banner .nr-mobile-nav a {
    color: var(--nr-white);
  }

  body.nr-page--home .nr-mobile-nav .nr-btn--solid,
  body.nr-page--banner .nr-mobile-nav .nr-btn--solid {
    color: var(--nr-forest-deep);
    margin-top: 0.5rem;
  }

  .nr-hero {
    min-height: min(88vh, 720px);
  }

  body.nr-page--home .nr-hero--banner {
    min-height: 100svh;
    margin-top: 0;
  }

  body.nr-page--home .nr-hero__content {
    padding: 5rem 0 2.5rem;
  }

  .nr-hero-banner__dots {
    bottom: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nr-hero__content,
  .nr-feature,
  .nr-app-panel__screen,
  .nr-ring-visual__outer,
  .nr-hero .nr-ring-visual,
  .nr-hero__glow,
  .nr-hero-banner__slide,
  .nr-hero-banner__slide.is-active {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
