:root {
  --ink: #1c1512;
  --ink-soft: #2a201c;
  --ivory: #f7f1ec;
  --wine: #8a2846;
  --wine-dark: #6d1e37;
  --gold: #c9a15a;
  --gold-light: #ddc08c;
  --blush: #e8d2c9;
  --iris: #9d6fb8;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.15;
}

/* ---------- Nav ---------- */

.nbs-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: rgba(28, 21, 18, 0.72);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease;
}

.nbs-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--ivory);
  text-decoration: none;
}

.nbs-nav__logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  /* Kaynak rozet, kare tuvalin içinde küçük bir kenar boşluğuyla duruyor;
     dairesel çerçeveyi daha dolgun doldursun diye hafifçe büyütülüyor. */
  transform: scale(1.12);
  box-shadow: 0 0 0 2px rgba(201, 161, 90, 0.5);
}

.nbs-nav__logo span {
  color: var(--gold-light);
}

.nbs-nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nbs-nav__links a {
  color: var(--blush);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
}

.nbs-nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width 0.25s ease;
}

.nbs-nav__links a:hover::after {
  width: 100%;
}

.nbs-nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 1120px) {
  .nbs-nav__links {
    position: fixed;
    top: 62px;
    right: 0;
    left: 0;
    background: var(--ink);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nbs-nav__links.nbs-open {
    max-height: 480px;
    overflow-y: auto;
  }
  .nbs-nav__links li {
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nbs-nav__links a {
    display: block;
    padding: 16px 24px;
  }
  .nbs-nav__toggle {
    display: block;
  }
}

/* ---------- Decorative nail-shape blobs ---------- */

.nbs-blob {
  position: absolute;
  border-radius: 50% 50% 48% 52% / 60% 55% 45% 40%;
  filter: blur(2px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Hero ---------- */

.nbs-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at 30% 20%, #2c1c22 0%, var(--ink) 55%, var(--ink) 100%);
  color: var(--ivory);
  overflow: hidden;
  padding-top: 80px;
}

.nbs-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(120deg, var(--wine), var(--iris), var(--gold), var(--iris), var(--wine));
  background-size: 400% 400%;
  opacity: 0.35;
  mix-blend-mode: soft-light;
  animation: nbsHeroShift 18s ease-in-out infinite;
}

@keyframes nbsHeroShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .nbs-hero::after {
    animation: none;
    background-position: 50% 50%;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .nbs-hero::after {
    opacity: 0.22;
    animation-duration: 28s;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
  .nbs-hero::after {
    opacity: 0.42;
    animation-duration: 24s;
  }
}

.nbs-hero .nbs-blob--a {
  width: 420px;
  height: 300px;
  top: 8%;
  right: -80px;
  background: var(--wine);
}

.nbs-hero .nbs-blob--b {
  width: 260px;
  height: 340px;
  bottom: -60px;
  left: -60px;
  background: var(--gold);
}

.nbs-hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.nbs-hero__logo {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 28px;
  box-shadow: 0 0 0 3px rgba(201, 161, 90, 0.55), 0 18px 40px rgba(0, 0, 0, 0.35);
  transform-style: preserve-3d;
  will-change: transform;
}

/* Higher specificity than .nbs-reveal so the tilt stays snappy instead of inheriting its 0.7s reveal transition */
.nbs-hero .nbs-hero__logo {
  transition: transform 0.15s ease-out;
}

/* ---------- Sparkle particles ---------- */

.nbs-hero__sparkles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.nbs-hero__sparkle {
  position: absolute;
  z-index: 1;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light), transparent 70%);
  opacity: 0;
  pointer-events: none;
  animation: nbsSparkleTwinkle 6s ease-in-out infinite;
}

@keyframes nbsSparkleTwinkle {
  0%, 100% { opacity: 0; transform: translateY(0); }
  50% { opacity: 0.85; transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .nbs-hero__sparkle {
    animation: none;
    opacity: 0.4;
  }
  .nbs-hero__logo {
    transition: none;
  }
}

@media (max-width: 768px) {
  .nbs-hero__sparkles .nbs-hero__sparkle:nth-child(n + 5) {
    display: none;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
  .nbs-hero__sparkle {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 8px 2px rgba(221, 192, 140, 0.6);
    animation-name: nbsSparkleTwinkleMobile;
  }
}

@keyframes nbsSparkleTwinkleMobile {
  0%, 100% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-10px); }
}

.nbs-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.nbs-hero__eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold-light);
}

.nbs-hero h1 {
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nbs-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.nbs-hero h1 .nbs-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  animation: nbsWordIn 0.7s ease forwards;
  animation-delay: calc(var(--i) * 0.09s);
}

@keyframes nbsWordIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nbs-hero h1 .nbs-word {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.nbs-hero p {
  margin: 26px 0 36px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(247, 241, 236, 0.82);
  max-width: 520px;
}

.nbs-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nbs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.nbs-btn--primary {
  background: var(--wine);
  color: var(--ivory);
}

.nbs-btn--ghost {
  border-color: rgba(247, 241, 236, 0.35);
  color: var(--ivory);
  background: transparent;
}

.nbs-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.35) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.nbs-btn:hover::before {
  transform: translateX(120%);
}

.nbs-btn--primary:hover {
  background: var(--wine-dark);
}

.nbs-btn--ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.nbs-hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

/* ---------- Section shared ---------- */

.nbs-section {
  padding: 110px 0;
  position: relative;
}

.nbs-section--dark {
  background: var(--ink);
  color: var(--ivory);
}

.nbs-section__label {
  display: block;
  color: var(--wine);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 700;
}

.nbs-section--dark .nbs-section__label {
  color: var(--gold-light);
}

.nbs-section__title {
  font-size: clamp(30px, 4.2vw, 46px);
  max-width: 640px;
  margin-bottom: 18px;
}

.nbs-section__intro {
  max-width: 560px;
  color: #5a4c46;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.nbs-section--dark .nbs-section__intro {
  color: rgba(247, 241, 236, 0.75);
}

.nbs-divider {
  display: block;
  width: 100%;
  height: auto;
  line-height: 0;
}

/* ---------- Reveal animation ---------- */

.nbs-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.nbs-reveal.nbs-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .nbs-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Services ---------- */

.nbs-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .nbs-services {
    grid-template-columns: 1fr;
  }
}

.nbs-service-card {
  background: #fffdfb;
  border: 1px solid rgba(138, 40, 70, 0.1);
  border-radius: 18px;
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.nbs-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(28, 21, 18, 0.08);
  border-color: var(--gold);
}

.nbs-service-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.nbs-service-card h3 {
  font-size: 22px;
  margin-bottom: 18px;
}

.nbs-service-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nbs-service-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14.5px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(28, 21, 18, 0.12);
}

.nbs-service-card li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.nbs-service-card li span:first-child {
  color: #4a3c37;
}

.nbs-service-card li span:last-child {
  font-weight: 700;
  color: var(--wine);
  white-space: nowrap;
}

.nbs-services__note {
  margin-top: 32px;
  font-size: 14px;
  color: #6b5b54;
}

/* ---------- Gallery ---------- */

.nbs-gallery-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 14px 4px 26px;
  margin: 0 -4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.nbs-gallery-carousel::-webkit-scrollbar {
  height: 8px;
}

.nbs-gallery-carousel::-webkit-scrollbar-track {
  background: transparent;
}

.nbs-gallery-carousel::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 999px;
}

.nbs-gallery-carousel::-webkit-scrollbar-thumb:hover {
  background: var(--wine);
}

.nbs-gallery-track {
  display: flex;
  gap: 22px;
  width: max-content;
  scroll-snap-type: x proximity;
}

.nbs-gallery-thumb {
  scroll-snap-align: start;
  flex: none;
  width: 220px;
  font: inherit;
  text-align: left;
  cursor: pointer;
  background: #fffdfb;
  border: none;
  border-radius: 4px;
  padding: 10px 10px 32px;
  box-shadow: 0 10px 24px rgba(28, 21, 18, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.nbs-gallery-thumb:nth-child(even) {
  transform: rotate(1deg);
}

.nbs-gallery-thumb:nth-child(odd) {
  transform: rotate(-1deg);
}

.nbs-gallery-thumb img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.5s ease;
}

.nbs-gallery-thumb::after {
  content: "🔍";
  position: absolute;
  right: 16px;
  bottom: 8px;
  font-size: 13px;
  opacity: 0.55;
}

.nbs-gallery-thumb:hover,
.nbs-gallery-thumb:focus-visible {
  transform: translateY(-6px) rotate(0deg);
  box-shadow: 0 20px 40px rgba(28, 21, 18, 0.18);
}

.nbs-gallery-thumb:hover img {
  transform: scale(1.06);
}

.nbs-gallery-thumb:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.nbs-gallery__cta {
  text-align: center;
  margin-top: 32px;
}

/* ---------- Lightbox ---------- */

.nbs-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  background: rgba(28, 21, 18, 0.92);
}

.nbs-lightbox.nbs-open {
  display: flex;
}

.nbs-lightbox__img {
  max-width: min(90vw, 900px);
  max-height: 82vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.nbs-lightbox__close,
.nbs-lightbox__nav {
  position: absolute;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 241, 236, 0.12);
  border: 1px solid rgba(247, 241, 236, 0.3);
  border-radius: 50%;
  color: var(--ivory);
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nbs-lightbox__close:hover,
.nbs-lightbox__nav:hover {
  background: rgba(247, 241, 236, 0.22);
}

.nbs-lightbox__close {
  top: 20px;
  right: 20px;
}

.nbs-lightbox__nav--prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.nbs-lightbox__nav--next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.nbs-lightbox__nav--prev:hover,
.nbs-lightbox__nav--next:hover {
  transform: translateY(-50%) scale(1.08);
}

.nbs-lightbox__counter {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(247, 241, 236, 0.75);
  font-size: 13px;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .nbs-lightbox__nav,
  .nbs-lightbox__close {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }
  .nbs-lightbox__nav--prev {
    left: 8px;
  }
  .nbs-lightbox__nav--next {
    right: 8px;
  }
  .nbs-lightbox__close {
    top: 10px;
    right: 10px;
  }
}

.nbs-ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8a2846, #c9a15a);
  color: var(--ivory);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nbs-ig-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(138, 40, 70, 0.28);
}

/* ---------- About ---------- */

.nbs-about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 860px) {
  .nbs-about {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.nbs-about__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(150deg, var(--blush), var(--gold-light));
}

.nbs-about__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nbs-about__signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  color: var(--wine);
  margin-top: 22px;
}

.nbs-about p {
  color: #4a3c37;
  line-height: 1.8;
  font-size: 16px;
}

.nbs-about__quote {
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin: 24px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
}

/* ---------- Testimonials ---------- */

.nbs-testimonials__summary {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.nbs-testimonials__summary-score {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 600;
  color: var(--wine);
  line-height: 1;
}

.nbs-testimonials__summary-stars {
  font-size: 20px;
  letter-spacing: 2px;
}

.nbs-testimonials__summary-count {
  font-size: 15px;
  color: #6b5b54;
}

.nbs-testimonials-panel {
  max-height: 480px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 12px 16px 12px 4px;
  margin-bottom: 40px;
  border: 1px solid rgba(138, 40, 70, 0.12);
  border-radius: 20px;
  background: rgba(255, 253, 251, 0.5);
  box-shadow: inset 0 2px 14px rgba(28, 21, 18, 0.05), 0 14px 34px rgba(28, 21, 18, 0.06);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.nbs-testimonials-panel::-webkit-scrollbar {
  width: 8px;
}

.nbs-testimonials-panel::-webkit-scrollbar-track {
  background: transparent;
}

.nbs-testimonials-panel::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 999px;
}

.nbs-testimonials-panel::-webkit-scrollbar-thumb:hover {
  background: var(--wine);
}

.nbs-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 4px;
}

.nbs-testimonial-card {
  background: #fffdfb;
  border: 1px solid rgba(138, 40, 70, 0.1);
  border-radius: 18px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.nbs-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(28, 21, 18, 0.08);
  border-color: var(--gold);
}

.nbs-star-row {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 2px;
}

.nbs-star--filled {
  color: var(--gold);
}

.nbs-star--empty {
  color: rgba(28, 21, 18, 0.15);
}

.nbs-testimonial-card__text {
  margin: 0;
  color: #4a3c37;
  font-size: 15px;
  line-height: 1.7;
  flex-grow: 1;
}

.nbs-testimonial-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed rgba(28, 21, 18, 0.12);
}

.nbs-testimonial-card__name {
  font-weight: 700;
  color: var(--ink);
  font-size: 14.5px;
}

.nbs-testimonial-card__date {
  font-size: 13px;
  color: #8a7a72;
  white-space: nowrap;
}

.nbs-testimonials__empty {
  color: #6b5b54;
  font-size: 15px;
}

/* ---------- Testimonial form ---------- */

.nbs-testimonial-form-wrap {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(28, 21, 18, 0.1);
  max-width: 520px;
}

.nbs-testimonial-form__title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 8px;
}

.nbs-testimonial-form__note {
  color: #6b5b54;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.nbs-form-row {
  margin-bottom: 18px;
}

.nbs-form-row label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.nbs-form-row input[type="text"],
.nbs-form-row textarea {
  width: 100%;
  border: 1px solid rgba(28, 21, 18, 0.15);
  border-radius: 10px;
  padding: 11px 14px;
  /* 16px altı font boyutu iOS Safari'de dokununca sayfayı otomatik
     yakınlaştırır (zoom) — bu yüzden 16px'in altına inilmiyor. */
  font-size: 16px;
  font-family: inherit;
  color: var(--ink);
  background: #fffdfb;
  outline: none;
  transition: border-color 0.2s ease;
}

.nbs-form-row input[type="text"]:focus,
.nbs-form-row textarea:focus {
  border-color: var(--gold);
}

.nbs-form-row textarea {
  resize: vertical;
  line-height: 1.6;
}

.nbs-star-picker {
  display: inline-flex;
  gap: 4px;
}

.nbs-star-picker__btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 26px;
  line-height: 1;
  color: rgba(28, 21, 18, 0.15);
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}

.nbs-star-picker__btn:hover {
  transform: scale(1.1);
}

.nbs-star-picker__btn.nbs-star-picker__btn--active {
  color: var(--gold);
}

.nbs-form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.nbs-testimonial-form .nbs-btn {
  margin-top: 4px;
}

.nbs-testimonial-form .nbs-btn:disabled {
  opacity: 0.6;
  cursor: default;
}

.nbs-testimonial-form__status {
  margin: 14px 0 0;
  font-size: 14px;
  min-height: 20px;
}

.nbs-testimonial-form__status--success {
  color: #2f7d4f;
}

.nbs-testimonial-form__status--error {
  color: #a33;
}

/* ---------- Hours ---------- */

.nbs-hours {
  max-width: 560px;
  margin: 0 auto;
}

.nbs-hours__row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(247, 241, 236, 0.14);
  font-size: 16px;
}

.nbs-hours__row span:first-child {
  color: rgba(247, 241, 236, 0.75);
}

.nbs-hours__row span:last-child {
  font-weight: 700;
}

.nbs-hours__row--closed span:last-child {
  color: var(--gold-light);
}

.nbs-hours__row--open span:last-child {
  color: var(--blush);
}

/* ---------- Contact ---------- */

.nbs-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 900px) {
  .nbs-contact {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .nbs-contact {
    grid-template-columns: 1fr;
  }
}

.nbs-contact-card {
  background: #fffdfb;
  border-radius: 18px;
  padding: 30px;
  border: 1px solid rgba(138, 40, 70, 0.1);
}

.nbs-contact-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--wine);
}

.nbs-contact-card p {
  margin: 0;
  color: #4a3c37;
  line-height: 1.6;
}

.nbs-contact-card a.nbs-ig-btn {
  margin-top: 16px;
}

/* ---------- Footer ---------- */

.nbs-footer {
  background: var(--ink);
  color: rgba(247, 241, 236, 0.6);
  text-align: center;
  padding: 40px 24px;
  font-size: 13px;
}

.nbs-footer strong {
  color: var(--ivory);
}

.nbs-footer__logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  transform: scale(1.12);
  margin: 0 auto 16px;
  box-shadow: 0 0 0 2px rgba(201, 161, 90, 0.4);
}

.nbs-footer p {
  margin: 0;
}
