/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:        #7EBC87;
  --primary-dark:   #5fa368;
  --white:          #ffffff;
  --off-white:      #F4F4F4;
  --text-dark:      #1A1A1A;
  --text-muted:     #6B6B6B;
  --text-subtle:    #565656;
  --border-light:   rgba(255,255,255,0.25);
  --font-display:   "Playfair Display", Georgia, serif;
  --font-body:      "Poppins", system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; }

/* ── Layout ── */
.nr-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero ── */
.nr-hro {
  position: relative;
  padding: 72px 24px;
  text-align: center;
  overflow: hidden;
}

.nr-hro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.83);
  z-index: 0;
}

.nr-hro__in {
  position: relative;
  z-index: 1;
}

.nr-hro__lg {
  width: 205px;
  margin: 0 auto 28px;
}

.nr-hro__h {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}

.nr-hro__sh {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  color: var(--text-subtle);
  margin-bottom: 32px;
}

/* ── Button ── */
.nr-cta {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.nr-cta:hover  { background: var(--primary-dark); transform: translateY(-1px); }
.nr-cta:active { transform: translateY(0); }

/* ── Overview ── */
.nr-ovw {
  background: var(--off-white);
  padding: 72px 24px;
  text-align: center;
}

.nr-ovw__h {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  color: var(--text-subtle);
  margin-bottom: 36px;
}

/* ── Hours Card ── */
.nr-crd {
  background: var(--primary);
  max-width: 500px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 6px;
  text-align: left;
}

.nr-crd__ttl {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.nr-crd__lbl {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.nr-hr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.nr-hr:last-child { border-bottom: none; }

.nr-hr__dy,
.nr-hr__tm {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
}

.nr-hr__tm {
  font-weight: 500;
  white-space: nowrap;
}

/* ── Highlights ── */
.nr-hlt {
  padding: 80px 24px;
}

.nr-hlt__gd {
  display: flex;
  align-items: center;
  gap: 60px;
}

.nr-hlt__md,
.nr-hlt__ct {
  flex: 1;
}

.nr-hlt__md img {
  width: 100%;
  border-radius: 4px;
}

.nr-hlt__ct {
  text-align: center;
}

.nr-hlt__h {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  color: var(--text-subtle);
  margin-bottom: 16px;
}

.nr-hlt__bd {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ── Footer ── */
.nr-ftr {
  background: var(--primary);
  padding: 24px;
  text-align: center;
}

.nr-ftr__tx {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  opacity: 0.9;
}

/* ── Privacy Page ── */
.nr-prv {
  padding: 64px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.nr-prv__ttl {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.nr-prv__upd {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.nr-prv__sec {
  margin-bottom: 32px;
}

.nr-prv__sec-h {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.nr-prv__sec p,
.nr-prv__sec ul {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

.nr-prv__sec ul {
  padding-left: 20px;
}

.nr-prv__sec ul li {
  margin-bottom: 6px;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .nr-hro        { padding: 40px 20px; }
  .nr-ovw    { padding: 40px 20px; }
  .nr-hlt  { padding: 40px 20px; }

  .nr-crd        { padding: 24px 20px; }

  .nr-hlt__gd {
    flex-direction: column;
    gap: 32px;
  }

  .nr-hlt__md,
  .nr-hlt__ct { width: 100%; }
}
