/*
Theme Name: Noir Aesthetics
Theme URI: https://www.thenoiraesthetics.com/
Author: Noir Aesthetics
Author URI: https://www.thenoiraesthetics.com/
Description: Premium single-page marketing and booking theme for Noir Aesthetics — a luxury aesthetic, dental, hair and spa studio in DHA Phase 6, Lahore. Custom service catalog, live booking calculator and email booking requests with calendar invites.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: noir-aesthetics
Tags: one-column, custom-menu, sticky-post, translation-ready
*/

/* ---------------------------------------------------------------------------
   Tokens & base
--------------------------------------------------------------------------- */
:root {
  --noir: #090E11;
  --noir-alt: #0B1216;
  --light: #FBFDFD;
  --light-alt: #F3F8F9;
  --cyan-band: #E9F6F8;
  --card: #FFFFFF;
  --hairline: #E7EFF1;
  --input-border: #D5E2E5;
  --ink: #111A1F;
  --body: #5A6C74;
  --cyan: #17B3C9;
  --cyan-bright: #3ED2E5;
  --cyan-deep: #149FB4;
  --cyan-logo: #1FC1D6;
  --on-cyan: #04191D;
  --error: #D65438;
  --error-on-dark: #FF9E8A;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: Manrope, system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #0A0F12;
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--cyan-deep); text-decoration: none; }
a:hover { color: #0E8496; }
::selection { background: var(--cyan); color: #fff; }

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

button { font-family: var(--sans); }

:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

@keyframes noirMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes noirPulse { 0%, 100% { opacity: .45; transform: scale(1); } 50% { opacity: 1; transform: scale(1.25); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .nr-marquee-track { animation: none; }
  .nr-pill-dot { animation: none; }
}

.nr-page { background: var(--light); overflow-x: clip; }

.nr-container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* Anchor offset for the 76px sticky header */
#about, #services, #book, #gallery { scroll-margin-top: 70px; }

/* ---------------------------------------------------------------------------
   Buttons
--------------------------------------------------------------------------- */
.nr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--cyan);
  color: var(--on-cyan);
  border: none;
  padding: 17px 34px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: background .25s, transform .25s;
}
.nr-btn:hover { background: var(--cyan-bright); color: var(--on-cyan); transform: translateY(-2px); }

.nr-btn--header { padding: 13px 26px; font-size: 12px; }
.nr-btn--header:hover { transform: translateY(-1px); }

.nr-btn--ghost-dark {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .28);
  color: #F6FBFC;
  font-weight: 700;
  transition: border-color .25s, background .25s;
}
.nr-btn--ghost-dark:hover {
  background: rgba(23, 179, 201, .08);
  border-color: var(--cyan-bright);
  color: #F6FBFC;
  transform: none;
}

.nr-btn--noir {
  background: var(--noir);
  color: #F6FBFC;
  font-weight: 700;
  padding: 17px 32px;
}
.nr-btn--noir:hover { background: var(--cyan); color: var(--on-cyan); transform: translateY(-2px); }
.nr-btn--noir .nr-btn-arrow { font-size: 16px; }

/* ---------------------------------------------------------------------------
   Type helpers
--------------------------------------------------------------------------- */
.nr-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.nr-eyebrow--light { color: var(--cyan-deep); }
.nr-eyebrow--dark { color: var(--cyan-bright); }

/* ---------------------------------------------------------------------------
   Image slots / placeholders
--------------------------------------------------------------------------- */
.nr-slot { position: relative; width: 100%; height: 100%; overflow: hidden; }
.nr-slot img { display: block; width: 100%; height: 100%; object-fit: cover; }
.nr-slot--r4 { border-radius: 4px; }

.nr-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 16px;
  box-sizing: border-box;
  text-align: center;
  background:
    radial-gradient(120% 120% at 30% 20%, #EEF5F6 0%, #E1EBEE 55%, #D6E2E6 100%);
  color: #90A2A9;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  line-height: 1.7;
  position: relative;
}
.nr-ph::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(23, 179, 201, .18);
  pointer-events: none;
}
.nr-ph--dark {
  background:
    radial-gradient(130% 130% at 70% 15%, rgba(23, 179, 201, .10) 0%, rgba(23, 179, 201, 0) 55%),
    linear-gradient(160deg, #0E161A 0%, #0A1013 100%);
  color: rgba(255, 255, 255, .42);
}
.nr-ph--dark::after { border-color: rgba(62, 210, 229, .22); }

/* ---------------------------------------------------------------------------
   Header
--------------------------------------------------------------------------- */
.nr-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 14, 17, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.nr-header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nr-logo { display: flex; align-items: center; color: #fff; }
.nr-logo:hover { color: #fff; }
.nr-logo-svg { height: 46px; width: auto; display: block; }
.nr-nav { display: flex; align-items: center; gap: 38px; }
.nr-nav a {
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .25s;
}
.nr-nav a:hover { color: var(--cyan-logo); }

/* ---------------------------------------------------------------------------
   Hero
--------------------------------------------------------------------------- */
.nr-hero {
  background: linear-gradient(180deg, #090E11 0%, #0B1216 100%);
  position: relative;
  overflow: hidden;
}
.nr-hero-glow {
  position: absolute;
  top: -220px; right: -160px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(23, 179, 201, .14) 0%, rgba(23, 179, 201, 0) 65%);
  pointer-events: none;
}
.nr-hero-grid {
  position: relative;
  padding-top: 96px;
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 72px;
  align-items: center;
}
.nr-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 36px;
}
.nr-pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan-logo);
  animation: noirPulse 2.2s ease-in-out infinite;
}
.nr-hero-tag span:last-child {
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.nr-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(46px, 5.6vw, 82px);
  line-height: 1.04;
  color: #F6FBFC;
  margin: 0 0 28px;
  text-wrap: pretty;
}
.nr-hero h1 em, .nr-em-dark { font-style: italic; color: var(--cyan-bright); }
.nr-hero-sub {
  color: rgba(255, 255, 255, .62);
  font-size: 17px;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 0 40px;
  text-wrap: pretty;
}
.nr-hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }
.nr-hero-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.nr-hero-chips span {
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-left: 2px solid rgba(23, 179, 201, .6);
  padding-left: 12px;
}
.nr-hero-media { position: relative; max-width: 520px; justify-self: center; width: 100%; }
.nr-hero-frame {
  position: absolute;
  top: 22px; left: 22px; right: -22px; bottom: -22px;
  border: 1px solid rgba(31, 193, 214, .35);
  pointer-events: none;
}
.nr-hero-img { position: relative; aspect-ratio: 4 / 5; will-change: transform; }

.nr-diamond { display: inline-block; transform: rotate(45deg); flex: none; }

/* ---------------------------------------------------------------------------
   Partners marquee
--------------------------------------------------------------------------- */
.nr-partners {
  background: var(--light);
  border-bottom: 1px solid var(--hairline);
  padding: 64px 0;
}
.nr-partners-label {
  text-align: center;
  color: #7A8B92;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin: 0 0 40px;
}
.nr-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.nr-marquee-track {
  display: flex;
  gap: 72px;
  width: max-content;
  align-items: center;
  animation: noirMarquee 40s linear infinite;
}
.nr-partner {
  width: 150px;
  height: 56px;
  flex: none;
  opacity: .9;
  transition: opacity .3s;
}
.nr-partner:hover { opacity: 1; }
.nr-partner img { display: block; width: 100%; height: 100%; object-fit: contain; }

/* ---------------------------------------------------------------------------
   Gallery
--------------------------------------------------------------------------- */
.nr-gallery { background: var(--noir); padding: 110px 0; }
.nr-gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.nr-gallery h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.08;
  color: #F6FBFC;
  margin: 0 0 14px;
}
.nr-gallery-lede { color: rgba(255, 255, 255, .58); font-size: 16px; line-height: 1.7; max-width: 520px; margin: 0; }
.nr-gallery-nav { display: flex; gap: 12px; }
.nr-navbtn--dark {
  width: 52px; height: 52px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: transparent;
  color: #F6FBFC;
  font-size: 18px;
  cursor: pointer;
  border-radius: 3px;
  transition: border-color .25s, background .25s;
}
.nr-navbtn--dark:hover { border-color: var(--cyan-bright); background: rgba(23, 179, 201, .1); }
.nr-gallery-scroller {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 max(32px, calc((100vw - 1240px) / 2 + 32px)) 8px;
  scrollbar-width: none;
}
.nr-gallery-scroller::-webkit-scrollbar { display: none; }
.nr-gallery-shot { flex: none; width: min(680px, 78vw); scroll-snap-align: start; margin: 0; }
.nr-gallery-img { aspect-ratio: 16 / 9; }
.nr-gallery-shot figcaption { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.nr-gallery-num { color: var(--cyan-bright); font-family: var(--serif); font-size: 18px; }
.nr-gallery-cap {
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* ---------------------------------------------------------------------------
   Core expertise
--------------------------------------------------------------------------- */
.nr-expertise { background: var(--light); padding: 120px 0; }
.nr-section-head { text-align: center; margin-bottom: 64px; }
.nr-section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.08;
  color: var(--ink);
  margin: 0;
}
.nr-expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 24px;
}
.nr-card {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.nr-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -20px rgba(9, 14, 17, .22);
  border-color: rgba(23, 179, 201, .4);
}
.nr-card-img { aspect-ratio: 4 / 3; }
.nr-card-body { padding: 28px 26px 32px; }
.nr-card-title { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.nr-card-title .nr-diamond { width: 6px; height: 6px; background: var(--cyan); }
.nr-card-title h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  color: var(--ink);
  margin: 0;
}
.nr-card-body p { color: var(--body); font-size: 14.5px; line-height: 1.7; margin: 0; text-wrap: pretty; }

/* ---------------------------------------------------------------------------
   Catalog band
--------------------------------------------------------------------------- */
.nr-catalog {
  background: var(--cyan-band);
  border-top: 1px solid #D6ECEF;
  border-bottom: 1px solid #D6ECEF;
}
.nr-catalog-inner {
  padding-top: 64px;
  padding-bottom: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.nr-catalog h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 34px;
  color: var(--ink);
  margin: 0 0 8px;
}
.nr-catalog p { color: var(--body); font-size: 15px; margin: 0; }

/* ---------------------------------------------------------------------------
   Why Noir
--------------------------------------------------------------------------- */
.nr-about { background: var(--light); padding: 120px 0; }
.nr-about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 72px;
  align-items: start;
}
.nr-about h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.nr-about h2 em, .nr-em-light { font-style: italic; color: var(--cyan-deep); }
.nr-about-lede {
  color: var(--body);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 40px;
  max-width: 480px;
  text-wrap: pretty;
}
.nr-about-img { aspect-ratio: 3 / 2; max-width: 480px; }
.nr-pillars { display: flex; flex-direction: column; }
.nr-pillar {
  border-top: 1px solid var(--hairline);
  padding: 36px 0;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.nr-pillar-num { font-family: var(--serif); font-size: 44px; color: #BFD9DE; line-height: 1; flex: none; }
.nr-pillar h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--ink);
  margin: 0 0 10px;
}
.nr-pillar p { color: var(--body); font-size: 15px; line-height: 1.7; margin: 0; text-wrap: pretty; }

/* ---------------------------------------------------------------------------
   Stats
--------------------------------------------------------------------------- */
.nr-stats { background: var(--noir); position: relative; overflow: hidden; }
.nr-stats-glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(circle, rgba(23, 179, 201, .1) 0%, rgba(23, 179, 201, 0) 65%);
  pointer-events: none;
}
.nr-stats-inner { position: relative; padding-top: 96px; padding-bottom: 96px; }
.nr-stats h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 3.2vw, 46px);
  color: #F6FBFC;
  text-align: center;
  margin: 0 0 64px;
}
.nr-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}
.nr-stat { text-align: center; border-left: 1px solid rgba(255, 255, 255, .1); padding: 8px 16px; }
.nr-stat-value { font-family: var(--serif); font-size: 58px; color: var(--cyan-bright); margin: 0 0 8px; line-height: 1; }
.nr-stat-label {
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin: 0;
}

/* ---------------------------------------------------------------------------
   Testimonials
--------------------------------------------------------------------------- */
.nr-testimonials { background: var(--light); padding: 120px 0; }
.nr-testimonials-inner { max-width: 880px; margin: 0 auto; padding: 0 32px; text-align: center; }
.nr-testimonials h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 3.8vw, 54px);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 56px;
}
.nr-t-stage { min-height: 190px; display: flex; flex-direction: column; justify-content: center; }
.nr-t-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.5;
  color: #22333B;
  margin: 0 0 28px;
  text-wrap: pretty;
}
.nr-t-name { color: var(--ink); font-size: 14px; font-weight: 700; letter-spacing: .06em; margin: 0; }
.nr-t-role {
  color: #7A8B92;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 6px 0 0;
}
.nr-t-controls { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 44px; }
.nr-navbtn--light {
  width: 48px; height: 48px;
  border: 1px solid var(--input-border);
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  cursor: pointer;
  border-radius: 3px;
  transition: border-color .25s, background .25s;
}
.nr-navbtn--light:hover { border-color: var(--cyan); background: var(--cyan-band); }
.nr-t-dots { display: flex; gap: 10px; }
.nr-t-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  padding: 0;
  background: var(--input-border);
  transition: all .3s;
}
.nr-t-dot.is-active { width: 24px; background: var(--cyan); }

/* ---------------------------------------------------------------------------
   Booking
--------------------------------------------------------------------------- */
.nr-booking { background: var(--light-alt); border-top: 1px solid var(--hairline); padding: 120px 0; }
.nr-booking .nr-section-head h2 { font-size: clamp(38px, 4vw, 58px); margin-bottom: 16px; }
.nr-booking-lede { color: var(--body); font-size: 16px; margin: 0; }
.nr-booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 32px;
  align-items: start;
}
.nr-book-card {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 36px 32px;
}
.nr-step-label {
  color: #7A8B92;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.nr-cat-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.nr-cat-pill {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 3px;
  cursor: pointer;
  transition: all .25s;
  border: 1px solid var(--input-border);
  background: #fff;
  color: var(--body);
}
.nr-cat-pill.is-active { border-color: var(--cyan); background: var(--cyan); color: var(--on-cyan); }
.nr-svc-list { display: flex; flex-direction: column; gap: 10px; }
.nr-svc-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: all .25s;
  border: 1px solid var(--hairline);
  background: var(--light);
}
.nr-svc-row.is-selected { border-color: var(--cyan); background: var(--cyan-band); }
.nr-svc-row input[type="checkbox"] {
  width: 17px; height: 17px;
  accent-color: var(--cyan);
  flex: none;
  cursor: pointer;
  margin: 0;
}
.nr-svc-name { flex: 1; color: #22333B; font-size: 15px; font-weight: 500; }
.nr-svc-price { color: var(--cyan-deep); font-size: 14px; font-weight: 700; }
.nr-svc-empty { color: var(--body); font-size: 14px; margin: 0; }

.nr-summary {
  background: var(--noir);
  border-radius: 6px;
  padding: 36px 32px;
  position: sticky;
  top: 100px;
}
.nr-summary .nr-step-label { color: rgba(255, 255, 255, .5); margin-bottom: 22px; }
.nr-sel-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.nr-sel-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding-bottom: 12px;
}
.nr-sel-name { flex: 1; color: rgba(255, 255, 255, .82); font-size: 14px; }
.nr-sel-price { color: var(--cyan-bright); font-size: 14px; font-weight: 700; }
.nr-sel-remove {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .35);
  font-size: 15px;
  cursor: pointer;
  padding: 2px 4px;
  line-height: 1;
  transition: color .25s;
}
.nr-sel-remove:hover { color: var(--cyan-bright); }
.nr-total-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; }
.nr-total-label {
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.nr-total-value { font-family: var(--serif); font-size: 38px; color: var(--cyan-bright); line-height: 1; }
.nr-no-sel {
  color: rgba(255, 255, 255, .45);
  font-size: 14px;
  line-height: 1.6;
  border: 1px dashed rgba(255, 255, 255, .18);
  border-radius: 4px;
  padding: 18px;
  margin: 0 0 28px;
}
.nr-book-form { display: flex; flex-direction: column; gap: 14px; }
.nr-input {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 4px;
  color: #F6FBFC;
  font-family: var(--sans);
  font-size: 14.5px;
  padding: 14px 16px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color .25s;
}
.nr-input::placeholder { color: rgba(255, 255, 255, .45); }
.nr-input:focus { border-color: var(--cyan-bright); }
.nr-input--sm { font-size: 14px; padding: 13px 14px; color-scheme: dark; }
select.nr-input--sm option { color: var(--ink); background: #fff; }
.nr-form-split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.nr-form-error { color: var(--error-on-dark); font-size: 13px; margin: 0; display: none; }
.nr-form-error.is-visible { display: block; }
.nr-book-submit { margin-top: 6px; padding: 17px 24px; transition: background .25s; }
.nr-book-submit:hover { transform: none; }
.nr-book-submit[disabled] { opacity: .6; cursor: wait; }
.nr-book-note { color: rgba(255, 255, 255, .4); font-size: 12.5px; text-align: center; margin: 4px 0 0; }
/* Honeypot — visually gone, still fillable by bots */
.nr-hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.nr-success { text-align: center; padding: 24px 8px; display: none; }
.nr-success.is-visible { display: block; }
.nr-success-ring {
  display: inline-flex;
  width: 56px; height: 56px;
  border: 1px solid var(--cyan-bright);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--cyan-bright);
  font-size: 22px;
  margin-bottom: 22px;
}
.nr-success h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  color: #F6FBFC;
  margin: 0 0 14px;
}
.nr-success p { color: rgba(255, 255, 255, .6); font-size: 15px; line-height: 1.7; margin: 0 0 26px; }
.nr-gcal-wrap { margin-bottom: 16px; }
.nr-gcal-btn {
  display: inline-block;
  background: var(--cyan);
  color: var(--on-cyan);
  padding: 14px 26px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background .25s;
}
.nr-gcal-btn:hover { background: var(--cyan-bright); color: var(--on-cyan); }
.nr-reset-btn {
  border: 1px solid rgba(255, 255, 255, .25);
  background: transparent;
  color: #F6FBFC;
  padding: 13px 26px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: border-color .25s;
}
.nr-reset-btn:hover { border-color: var(--cyan-bright); }

/* ---------------------------------------------------------------------------
   FAQ
--------------------------------------------------------------------------- */
.nr-faq { background: var(--light); padding: 120px 0; }
.nr-faq-inner { max-width: 800px; margin: 0 auto; padding: 0 32px; }
.nr-faq .nr-section-head { margin-bottom: 56px; }
.nr-faq .nr-section-head h2 { font-size: clamp(36px, 3.8vw, 54px); line-height: 1.1; }
.nr-faq-list { display: flex; flex-direction: column; }
.nr-faq-item { border-bottom: 1px solid var(--hairline); }
.nr-faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  cursor: pointer;
  text-align: left;
}
.nr-faq-q span:first-child {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.35;
}
.nr-faq-icon {
  font-size: 22px;
  color: #A9BBC1;
  flex: none;
  transition: transform .3s, color .3s;
  line-height: 1;
}
.nr-faq-item.is-open .nr-faq-icon { color: var(--cyan-deep); transform: rotate(45deg); }
.nr-faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.nr-faq-item.is-open .nr-faq-a { grid-template-rows: 1fr; }
.nr-faq-a-clip { overflow: hidden; }
.nr-faq-a p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  padding: 0 4px 26px;
  max-width: 640px;
  text-wrap: pretty;
}

/* ---------------------------------------------------------------------------
   Footer
--------------------------------------------------------------------------- */
.nr-footer { background: var(--noir); border-top: 1px solid rgba(255, 255, 255, .06); }
.nr-footer-grid {
  padding-top: 88px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 56px;
}
.nr-footer-logo { display: flex; margin-bottom: 22px; color: #fff; }
.nr-footer-logo .nr-logo-svg { height: 62px; }
.nr-footer-blurb {
  color: rgba(255, 255, 255, .55);
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0 0 26px;
  max-width: 280px;
  text-wrap: pretty;
}
.nr-socials { display: flex; gap: 12px; }
.nr-socials a svg { width: 18px; height: 18px; display: block; }
.nr-socials a {
  width: 42px; height: 42px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  transition: border-color .25s, color .25s;
}
.nr-socials a:hover { border-color: var(--cyan-bright); color: var(--cyan-bright); }
.nr-footer-title {
  color: rgba(255, 255, 255, .45);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.nr-footer-links { display: flex; flex-direction: column; gap: 14px; }
.nr-footer-links a { color: rgba(255, 255, 255, .68); font-size: 14.5px; transition: color .25s; }
.nr-footer-links a:hover { color: var(--cyan-bright); }
.nr-footer-contact { display: flex; flex-direction: column; gap: 16px; }
.nr-footer-sub {
  color: rgba(255, 255, 255, .4);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 6px;
}
.nr-footer-phone { color: #F6FBFC; font-size: 16px; font-weight: 600; transition: color .25s; }
.nr-footer-phone:hover { color: var(--cyan-bright); }
.nr-footer-text { color: rgba(255, 255, 255, .68); font-size: 14.5px; margin: 0; }
.nr-footer-map {
  aspect-ratio: 16 / 10;
  margin-bottom: 14px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
}
.nr-footer-map iframe { display: block; width: 100%; height: 100%; border: 0; }
.nr-footer-address { color: rgba(255, 255, 255, .68); font-size: 14px; line-height: 1.6; margin: 0; }
.nr-footer-bottom {
  margin-top: 48px;
  padding-top: 26px;
  padding-bottom: 26px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.nr-footer-copy { color: rgba(255, 255, 255, .4); font-size: 13px; margin: 0; }
.nr-admin-link {
  color: rgba(255, 255, 255, .3);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px;
  transition: color .25s;
}
.nr-admin-link:hover { color: var(--cyan-bright); }

/* ---------------------------------------------------------------------------
   Responsive
--------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .nr-nav { display: none; }
  .nr-container { padding-left: 20px; padding-right: 20px; }
  .nr-testimonials-inner, .nr-faq-inner { padding-left: 20px; padding-right: 20px; }
  .nr-gallery-scroller { padding-left: 20px; padding-right: 20px; }
  .nr-summary { position: static; }
}

/* ---------------------------------------------------------------------------
   Pricing page
--------------------------------------------------------------------------- */
.nr-pricing-hero {
  background: var(--noir);
  text-align: center;
  padding: 140px 0 64px;
}
.nr-pricing-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(42px, 5vw, 72px);
  color: #F6FBFC;
  margin: 0 0 18px;
}
.nr-pricing-lede {
  color: rgba(255, 255, 255, .6);
  font-size: 16px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 34px;
}
.nr-price-cats { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.nr-price-cats a {
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  padding: 10px 22px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: border-color .25s, color .25s;
}
.nr-price-cats a:hover { border-color: var(--cyan-bright); color: var(--cyan-bright); }

.nr-pricing-body { background: var(--light); padding: 72px 0 40px; }
.nr-pricing-empty { text-align: center; color: var(--body); padding: 40px 0 72px; }
.nr-price-group { max-width: 860px; margin: 0 auto 64px; scroll-margin-top: 96px; }
.nr-price-group h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 34px;
  color: var(--ink);
  margin: 0 0 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hairline);
}
.nr-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
}
.nr-price-name { color: var(--ink); font-size: 15.5px; font-weight: 600; }
.nr-price-dots { flex: 1; border-bottom: 1px dotted #B9C9CE; transform: translateY(-4px); }
.nr-price-amt { color: var(--cyan-deep); font-size: 15.5px; font-weight: 800; white-space: nowrap; }
.nr-price-book {
  border: 1px solid var(--input-border);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  white-space: nowrap;
  transition: background .25s, border-color .25s, color .25s;
}
.nr-price-book:hover { background: var(--cyan); border-color: var(--cyan); color: var(--on-cyan); }
@media (max-width: 600px) {
  .nr-price-row { flex-wrap: wrap; }
  .nr-price-dots { display: none; }
  .nr-price-name { flex: 1 1 100%; }
}

.nr-pricing-cta {
  background: var(--noir);
  text-align: center;
  padding: 80px 0;
}
.nr-pricing-cta h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 46px);
  color: #F6FBFC;
  margin: 0 0 14px;
}
.nr-pricing-cta p { color: rgba(255, 255, 255, .6); font-size: 15.5px; margin: 0 0 30px; }

/* Generic extra pages */
.nr-page-plain { background: var(--light); padding: 140px 0 96px; }
.nr-page-plain-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--ink);
  margin: 0 0 28px;
}
.nr-page-plain-body { color: var(--body); font-size: 16px; line-height: 1.8; max-width: 760px; }

/* ---------------------------------------------------------------------------
   Floating WhatsApp button
--------------------------------------------------------------------------- */
@keyframes noirWaBreathe {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 22px rgba(0,0,0,.26), 0 0 0 0 rgba(37, 211, 102, .45); }
  50%      { transform: scale(1.055); box-shadow: 0 12px 28px rgba(0,0,0,.30), 0 0 0 12px rgba(37, 211, 102, 0); }
}
.nr-wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 95;
  height: 58px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  animation: noirWaBreathe 3s ease-in-out infinite;
  will-change: transform;
}
.nr-wa-ico {
  flex: none;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nr-wa-ico svg { display: block; }
.nr-wa-label {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  padding-left: 0;
  transition: max-width .35s ease, opacity .3s ease, padding-left .35s ease;
}
.nr-wa-float:hover,
.nr-wa-float:focus-visible {
  color: #fff;
  animation-play-state: paused;
  transform: translateY(-2px);
}
.nr-wa-float:hover .nr-wa-label,
.nr-wa-float:focus-visible .nr-wa-label {
  max-width: 160px;
  opacity: 1;
  padding-left: 18px;
}
.nr-wa-float:hover .nr-wa-ico { padding-right: 4px; }
@media (max-width: 600px) {
  .nr-wa-float { right: 16px; bottom: 16px; height: 54px; }
  .nr-wa-ico { width: 54px; height: 54px; }
}
@media (prefers-reduced-motion: reduce) {
  .nr-wa-float { animation: none; }
}

/* ---------------------------------------------------------------------------
   Booking service list: fixed height + internal scroll for long categories
--------------------------------------------------------------------------- */
.nr-svc-shell { position: relative; }
.nr-svc-list {
  max-height: 428px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: #C4D4D9 transparent;
}
.nr-svc-list::-webkit-scrollbar { width: 6px; }
.nr-svc-list::-webkit-scrollbar-track { background: transparent; }
.nr-svc-list::-webkit-scrollbar-thumb { background: #C4D4D9; border-radius: 999px; }
.nr-svc-list::-webkit-scrollbar-thumb:hover { background: #A8BdC4; }
.nr-svc-fade {
  position: absolute;
  left: 0; right: 8px; bottom: 0;
  height: 58px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--card));
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s;
}
.nr-svc-shell.has-more .nr-svc-fade { opacity: 1; }

/* ---------------------------------------------------------------------------
   Home expertise card link + hover micro-interaction
--------------------------------------------------------------------------- */
.nr-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan-deep);
}
.nr-card-link span { transition: transform .25s ease; }
.nr-card:hover .nr-card-link span,
.nr-card-link:hover span { transform: translateX(4px); }

/* Light ghost button (for light sections) */
.nr-btn--ghost-ink {
  background: transparent;
  border: 1px solid var(--input-border);
  color: var(--ink);
  font-weight: 700;
}
.nr-btn--ghost-ink:hover {
  background: #fff;
  border-color: var(--cyan);
  color: var(--cyan-deep);
  transform: translateY(-2px);
}

/* ---------------------------------------------------------------------------
   Services hub (/services/)
--------------------------------------------------------------------------- */
.nr-hub { background: var(--light); padding: 72px 0 96px; }
.nr-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.nr-hub-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 34px 30px 30px;
  color: var(--ink);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.nr-hub-card:hover {
  color: var(--ink);
  transform: translateY(-6px);
  border-color: rgba(23, 179, 201, .45);
  box-shadow: 0 20px 40px -24px rgba(9, 14, 17, .35);
}
.nr-hub-num {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--cyan-deep);
  line-height: 1;
}
.nr-hub-card h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  color: var(--ink);
  margin: 16px 0 8px;
}
.nr-hub-card p { color: var(--body); font-size: 14.5px; line-height: 1.6; margin: 0 0 18px; flex: 1; }
.nr-hub-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8A9BA2;
  margin-bottom: 14px;
}
.nr-hub-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan-deep);
}
.nr-hub-foot { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 56px; }

/* ---------------------------------------------------------------------------
   Service category pages
--------------------------------------------------------------------------- */
.nr-svc-hero {
  background:
    radial-gradient(120% 140% at 80% 0%, rgba(23, 179, 201, .10) 0%, rgba(23, 179, 201, 0) 55%),
    linear-gradient(180deg, #090E11 0%, #0B1216 100%);
  padding: 128px 0 72px;
}
.nr-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 26px;
}
.nr-crumbs a { color: rgba(255, 255, 255, .6); }
.nr-crumbs a:hover { color: var(--cyan-bright); }
.nr-crumbs span[aria-current] { color: rgba(255, 255, 255, .85); }
.nr-svc-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 68px);
  color: #F6FBFC;
  margin: 0 0 18px;
  max-width: 14ch;
}
.nr-svc-lede {
  color: rgba(255, 255, 255, .62);
  font-size: 17px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 0 34px;
}
.nr-svc-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.nr-svc-benefits { background: var(--light); padding: 80px 0; }
.nr-svc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 56px;
  align-items: start;
}
.nr-svc-benefits h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--ink);
  margin: 0 0 18px;
}
.nr-svc-expect { color: var(--body); font-size: 16px; line-height: 1.8; margin: 0; }
.nr-svc-ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.nr-svc-ticks li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.5;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}
.nr-tick {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--cyan-band);
  color: var(--cyan-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.nr-svc-prices { background: var(--light-alt); padding: 80px 0; }
.nr-price-rows--card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 10px 28px;
}

.nr-svc-faq { background: var(--light); padding: 24px 0 88px; }
.nr-svc-faq-inner { max-width: 820px; margin: 0 auto; }
.nr-svc-faq h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--ink);
  text-align: center;
  margin: 0 0 32px;
}

@media (max-width: 900px) {
  .nr-svc-hero { padding-top: 108px; }
  .nr-hub-foot { flex-direction: column; align-items: stretch; }
}

/* ---------------------------------------------------------------------------
   Phase 3/4 polish: header call, nav underline, stats-in-about,
   image hover-zoom, hero ken-burns
--------------------------------------------------------------------------- */

/* Header actions + click-to-call */
.nr-header-actions { display: flex; align-items: center; gap: 20px; }
.nr-header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: color .25s;
}
.nr-header-call:hover { color: var(--cyan-bright); }
.nr-header-call svg { flex: none; }
@media (max-width: 620px) {
  .nr-header-call-num { display: none; }
  .nr-header-actions { gap: 12px; }
}

/* Animated nav underline */
.nr-nav a { position: relative; }
.nr-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -7px;
  height: 1.5px;
  background: var(--cyan-logo);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s cubic-bezier(.2,.6,.2,1);
}
.nr-nav a:hover::after,
.nr-nav a[aria-current]::after { transform: scaleX(1); }

/* Track-record stats, merged into the light "Why Noir" section */
.nr-about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 66px;
  padding-top: 44px;
  border-top: 1px solid var(--hairline);
}
.nr-about-stats .nr-stat { text-align: center; border-left: 0; padding: 0; }
.nr-about-stats .nr-stat-value {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--cyan-deep);
  margin: 0 0 6px;
  line-height: 1;
}
.nr-about-stats .nr-stat-label {
  color: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 700px) {
  .nr-about-stats { grid-template-columns: repeat(2, 1fr); gap: 34px 16px; }
}

/* Slow image zoom on hover (cards, gallery, about) */
.nr-card-img .nr-slot img,
.nr-gallery-img .nr-slot img,
.nr-about-img .nr-slot img {
  transition: transform .7s cubic-bezier(.2,.6,.2,1);
}
.nr-card:hover .nr-card-img .nr-slot img,
.nr-gallery-shot:hover .nr-gallery-img .nr-slot img,
.nr-about-img:hover .nr-slot img { transform: scale(1.06); }

/* Graceful hero ken-burns entrance (only when a real photo is set) */
@keyframes noirHeroIn { from { transform: scale(1.08); } to { transform: scale(1); } }
.nr-hero-img .nr-slot img { animation: noirHeroIn 1.5s cubic-bezier(.2,.6,.2,1) both; }

@media (prefers-reduced-motion: reduce) {
  .nr-card-img .nr-slot img,
  .nr-gallery-img .nr-slot img,
  .nr-about-img .nr-slot img,
  .nr-hero-img .nr-slot img { transition: none; animation: none; }
}

/* ---------------------------------------------------------------------------
   Testimonials → Google reviews CTA
--------------------------------------------------------------------------- */
.nr-t-google {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}
.nr-t-stars { color: #FFC64B; font-size: 18px; letter-spacing: 3px; }
.nr-t-writelink {
  color: var(--body);
  font-size: 13px;
  font-weight: 600;
  transition: color .25s;
}
.nr-t-writelink:hover { color: var(--cyan-deep); }

/* ---------------------------------------------------------------------------
   Blog: listing + single
--------------------------------------------------------------------------- */
.nr-blog { background: var(--light); padding: 72px 0 96px; }
.nr-post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.nr-post-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.nr-post-card:hover {
  transform: translateY(-6px);
  border-color: rgba(23, 179, 201, .4);
  box-shadow: 0 22px 44px -26px rgba(9, 14, 17, .4);
}
.nr-post-thumb { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.nr-post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.6,.2,1); }
.nr-post-card:hover .nr-post-thumb img { transform: scale(1.06); }
.nr-post-thumb-ph {
  display: block;
  width: 100%; height: 100%;
  background:
    radial-gradient(130% 130% at 70% 15%, rgba(23, 179, 201, .14) 0%, rgba(23, 179, 201, 0) 55%),
    linear-gradient(160deg, #12303A 0%, #0C1A20 100%);
}
.nr-post-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.nr-post-cat {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  margin-bottom: 12px;
}
.nr-post-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 12px;
}
.nr-post-title a { color: var(--ink); transition: color .25s; }
.nr-post-title a:hover { color: var(--cyan-deep); }
.nr-post-ex { color: var(--body); font-size: 14.5px; line-height: 1.6; margin: 0 0 18px; flex: 1; }
.nr-post-meta { font-size: 12px; letter-spacing: .04em; color: #8A9BA2; }

.nr-pagination { margin-top: 56px; }
.nr-pagination ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; padding: 0; margin: 0; }
.nr-pagination a, .nr-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px; height: 42px;
  padding: 0 12px;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}
.nr-pagination .current { background: var(--cyan); color: var(--on-cyan); border-color: var(--cyan); }
.nr-pagination a:hover { border-color: var(--cyan); color: var(--cyan-deep); }

/* Single post */
.nr-single-hero {
  background:
    radial-gradient(120% 140% at 80% 0%, rgba(23, 179, 201, .10) 0%, rgba(23, 179, 201, 0) 55%),
    linear-gradient(180deg, #090E11 0%, #0B1216 100%);
  padding: 124px 0 56px;
}
.nr-single-head { max-width: 820px; }
.nr-single-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  margin-bottom: 16px;
}
.nr-single-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.1;
  color: #F6FBFC;
  margin: 0 0 16px;
}
.nr-single-meta { color: rgba(255, 255, 255, .5); font-size: 13px; margin: 0; }
.nr-single-figure { max-width: 900px; margin: -36px auto 0; }
.nr-single-figure img { width: 100%; border-radius: 8px; display: block; }
.nr-single-body {
  max-width: 760px;
  margin: 48px auto 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.85;
}
.nr-single-body p { margin: 0 0 22px; color: #35434A; }
.nr-single-body h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  color: var(--ink);
  margin: 40px 0 14px;
}
.nr-single-body a { color: var(--cyan-deep); text-decoration: underline; }
.nr-single-body ul, .nr-single-body ol { padding-left: 22px; margin: 0 0 22px; color: #35434A; }
.nr-single-body img { border-radius: 8px; height: auto; }
.nr-single-cta {
  max-width: 760px;
  margin: 48px auto 0;
  padding: 40px 0 8px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.nr-single { background: var(--light); padding-bottom: 88px; }

/* ---------------------------------------------------------------------------
   Dedicated booking page (/book/)
--------------------------------------------------------------------------- */
.nr-book-hero {
  background:
    radial-gradient(120% 140% at 80% 0%, rgba(23, 179, 201, .10) 0%, rgba(23, 179, 201, 0) 55%),
    linear-gradient(180deg, #090E11 0%, #0B1216 100%);
  padding: 124px 0 56px;
  text-align: center;
}
.nr-book-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 4.6vw, 64px);
  color: #F6FBFC;
  margin: 0 0 16px;
}
.nr-book-hero-lede {
  color: rgba(255, 255, 255, .62);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 26px;
}
.nr-book-assure {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
}
.nr-book-assure li {
  color: rgba(255, 255, 255, .78);
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nr-book-assure span { color: var(--cyan-bright); font-weight: 800; }

.nr-book-page { background: var(--light); padding: 56px 0 96px; }
.nr-book-page .nr-booking-grid { margin-top: 0; }
.nr-book-help {
  text-align: center;
  margin-top: 40px;
  color: var(--body);
  font-size: 14.5px;
}
.nr-book-help a { color: var(--cyan-deep); font-weight: 700; }
.nr-book-help a:hover { color: #0E8496; }
.nr-book-help span[aria-hidden] { margin: 0 8px; color: #B9C9CE; }
