
@import url('https://fonts.googleapis.com/css2?family=Limelight&family=JetBrains+Mono:ital,wght@0,300;0,400;0,700;1,300&display=swap');

:root {
  --brand-primary: #2C2C2C;
  --brand-secondary: #3B82F6;
  --brand-accent: #3B82F6;
  --text-color: #111827;
  --bg-color: #FFFFFF;
  --bg-alt: #F8FAFC;
  --font-heading: 'Limelight', cursive;
  --font-body: 'JetBrains Mono', monospace;
  --font-mono: 'JetBrains Mono', monospace;
  --font-size-base: 16px;
  --border-radius: 8px;
  --btn-radius: 4px;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  color: var(--text-color);
  background: var(--brand-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

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

/* NAV */
.ns-nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 22px 32px; display: flex; justify-content: space-between;
  align-items: center; background: var(--brand-primary);
}
.ns-nav-logo {
  font-family: var(--font-heading); font-size: 22px; color: #ffffff;
  letter-spacing: 6px; text-transform: uppercase;
}
.ns-nav-links {
  display: flex; gap: 32px; list-style: none; margin: 0; padding: 0;
}
.ns-nav-links a {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(245,240,235,0.45); transition: color 0.3s ease;
}
.ns-nav-links a:hover, .ns-nav-links a.active { color: var(--bg-color); }
.ns-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  z-index: 1001; background: none; border: none; padding: 0;
}
.ns-hamburger span {
  width: 24px; height: 2px; background: var(--bg-color);
  transition: all 0.3s ease; display: block;
}
.ns-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.ns-hamburger.active span:nth-child(2) { opacity: 0; }
.ns-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.ns-mobile-menu {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: var(--brand-primary); z-index: 999; flex-direction: column;
  justify-content: center; align-items: center; gap: 36px;
}
.ns-mobile-menu.active { display: flex; }
.ns-mobile-menu a {
  font-family: var(--font-heading); font-size: 32px; color: var(--bg-color);
  letter-spacing: 4px; text-transform: uppercase; transition: color 0.3s ease;
}
.ns-mobile-menu a:hover { color: var(--brand-secondary); }

/* BENTO */
.ns-bento { padding: 88px 24px 24px; max-width: 1400px; margin: 0 auto; }

/* SECTION SPACING — 40px breathing room above and below every section */
.ns-hero-bento,
.ns-styles-bento, .ns-duo-bento, .ns-gallery-bento, .ns-test-bento,
.ns-prod-bento, .ns-cta-bento,
.ns-about-header-row, .ns-story-row, .ns-phil-row, .ns-culture-row,
.ns-services-header-row, .ns-svc-row, .ns-svc-cta-row,
.ns-stylists-header-row, .ns-sty-row, .ns-sty-cta-row,
.ns-products-header-row, .ns-filter-row, .ns-prod-grid, .ns-feat-row,
.ns-contact-header-row, .ns-contact-row, .ns-map-row,
.ns-footer-bento {
  padding-top: 40px;
  padding-bottom: 40px;
}

.ns-bc { overflow: hidden; position: relative; border-radius: var(--border-radius); }
.ns-bi img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(30%); transition: filter 0.6s ease, transform 0.6s ease;
}
.ns-bi:hover img { filter: grayscale(0%); transform: scale(1.03); }

/* BUTTONS */
.ns-btn-editorial, .ns-btn-ed {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--text-color);
  border: 2px solid var(--text-color); padding: 16px 32px;
  border-radius: var(--btn-radius); transition: all 0.3s ease;
  width: fit-content; background: none; cursor: pointer;
}
.ns-btn-editorial:hover, .ns-btn-ed:hover {
  background: var(--brand-secondary); border-color: var(--brand-secondary);
  color: var(--bg-color);
}
.ns-link-arrow {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--bg-color);
  display: inline-flex; align-items: center; gap: 8px; transition: color 0.3s ease;
}
.ns-link-arrow:hover { color: var(--brand-secondary); }
.ns-link-dark {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--text-color);
  display: inline-flex; align-items: center; gap: 8px; transition: color 0.3s ease;
}
.ns-link-dark:hover { color: var(--brand-secondary); }

/* FOOTER */
.ns-footer-bento {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px; margin-bottom: 24px;
}
.ns-f-cell {
  background: rgba(245,240,235,0.03); border: 1px solid rgba(245,240,235,0.05);
  padding: 36px 32px; border-radius: var(--border-radius);
}
.ns-f-cell h4 {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--brand-secondary); margin-bottom: 20px;
}
.ns-f-cell p {
  font-family: var(--font-mono); font-size: 14px; font-weight: 300;
  color: #F5F0EB; display: block; line-height: 1.9; margin: 0;
}
.ns-f-cell a {
  font-family: var(--font-mono); font-size: 14px; font-weight: 300;
  color: rgba(245,240,235,0.45); display: block; line-height: 1.9;
  transition: color 0.3s ease;
}
.ns-f-cell a:hover { color: var(--bg-color); }
.ns-f-logo {
  font-family: var(--font-heading); font-size: 20px; color: var(--bg-color);
  letter-spacing: 4px; text-transform: uppercase; margin-bottom: 16px;
}
.ns-f-bottom {
  display: flex; justify-content: space-between;
  align-items: center; padding: 24px 8px;
}
.ns-f-bottom p { font-size: 12px; font-weight: 300; color: #F5F0EB; margin: 0; }
.ns-socials { display: flex; gap: 24px; }
.ns-socials a {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(245,240,235,0.25); transition: color 0.3s ease;
}
.ns-socials a:hover { color: var(--brand-accent); }

/* CARD TYPES */
.ns-card-dark {
  background: var(--brand-primary); border: 1px solid rgba(245,240,235,0.07);
  padding: 48px 44px; display: flex; flex-direction: column;
  justify-content: space-between; border-radius: var(--border-radius);
}
.ns-card-dark .ns-num {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 3px; color: var(--brand-secondary);
}
.ns-card-dark h2 {
  font-family: var(--font-heading); font-size: clamp(32px,3.5vw,52px);
  line-height: 1.05; color: var(--bg-color); margin: 0;
}
.ns-card-dark h1 {
  font-family: var(--font-heading); font-size: clamp(32px,3.5vw,52px);
  line-height: 1.05; color: var(--bg-color); margin: 0;
}
.ns-card-dark p {
  font-size: 16px; font-weight: 300; color: #F5F0EB; line-height: 1.8; margin: 0;
}
.ns-card-light {
  background: var(--bg-color); padding: 44px 40px; display: flex;
  flex-direction: column; justify-content: space-between;
  border-radius: var(--border-radius);
}
.ns-card-light .ns-num {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 3px; color: var(--brand-secondary);
}
.ns-card-light h2 {
  font-family: var(--font-heading); font-size: clamp(28px,3vw,44px);
  line-height: 1.05; color: var(--text-color); margin: 0;
}
.ns-card-light p {
  font-size: 15px; font-weight: 300; color: #2c2c2c; line-height: 1.8; margin: 0;
}

/* PAGE HEADER */
.ns-header-card {
  background: var(--bg-color); padding: 56px 52px; display: flex;
  flex-direction: column; justify-content: flex-end; border-radius: var(--border-radius);
}
.ns-header-card h1 {
  font-family: var(--font-heading); font-size: clamp(56px,7vw,100px);
  line-height: 0.92; color: var(--text-color); margin: 0;
}
.ns-header-card h1 .accent { color: var(--brand-secondary); font-style: italic; }
.ns-header-card p {
  font-size: 16px; font-weight: 300; color: #2c2c2c;
  line-height: 1.8; max-width: 600px; margin-top: 20px; margin-bottom: 0;
}

/* GLOBAL ACCENT */
.accent { color: var(--brand-secondary); font-style: italic; }

/* HOME — HERO */
.ns-hero-bento {
  display: grid; grid-template-columns: 5fr 3fr 3fr;
  grid-template-rows: 200px 240px 200px; gap: 16px; margin-bottom: 16px;
}
.ns-hero-text {
  grid-column: 1; grid-row: 1/4; background: var(--bg-color);
  padding: 56px 52px; display: flex; flex-direction: column;
  justify-content: space-between; border-radius: var(--border-radius);
  overflow: hidden; position: relative;
}
.ns-hero-text .ns-eyebrow {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase; color: #3b82f6;
  animation: fadeUp 0.5s ease 0.1s both;
}
.ns-hero-headline {
  font-family: var(--font-heading); font-size: clamp(52px,5.5vw,88px);
  line-height: 0.92; color: var(--text-color); margin: 0;
  animation: fadeUp 0.6s ease 0.2s both;
}
.ns-hero-headline .accent { color: var(--brand-secondary); font-style: italic; }
.ns-hero-subline {
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase; color: var(--text-color);
  margin-top: 16px; animation: fadeUp 0.5s ease 0.35s both;
}
.ns-hero-body {
  font-size: 16px; font-weight: 300; color: #2c2c2c; line-height: 1.8;
  max-width: 360px; animation: fadeUp 0.5s ease 0.45s both;
  font-family: var(--font-mono); margin: 0;
}
.ns-hero-text .ns-btn-editorial { animation: fadeUp 0.5s ease 0.55s both; }
.ns-hi1 { grid-column: 2; grid-row: 1; }
.ns-hi2 { grid-column: 3; grid-row: 1; }
.ns-hi3 { grid-column: 2; grid-row: 2; }
.ns-hi4 { grid-column: 3; grid-row: 2; }
.ns-hi5 { grid-column: 2/4; grid-row: 3; }

/* HOME — STYLES */
.ns-styles-bento {
  display: grid; grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: 380px; gap: 16px; margin-bottom: 16px;
}

/* HOME — DUO */
.ns-duo-bento { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.ns-duo-cell { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 400px; gap: 16px; }

/* HOME — GALLERY */
.ns-gallery-bento {
  display: grid; grid-template-columns: repeat(4,1fr);
  grid-template-rows: 300px 300px; gap: 16px; margin-bottom: 16px;
}
.ns-gallery-bento .ns-bc:nth-child(1) { grid-column: 1/3; }
.ns-gallery-bento .ns-bc:nth-child(4) { grid-column: 1/3; }
.ns-gallery-bento .ns-bc:nth-child(5) { grid-column: 3/5; }
.ns-style-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 28px;
  background: linear-gradient(transparent, rgba(44,44,44,0.85));
  z-index: 2; border-radius: 0 0 var(--border-radius) var(--border-radius);
}
.ns-style-label span {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--brand-accent);
}
.ns-style-label h3 {
  font-family: var(--font-heading); font-size: 24px; color: var(--bg-color); margin: 4px 0 0;
}

/* HOME — TESTIMONIALS */
.ns-test-bento { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 16px; }
.ns-test-card {
  background: var(--bg-color); padding: 44px 40px; display: flex;
  flex-direction: column; justify-content: space-between;
  border-radius: var(--border-radius); min-height: 300px;
}
.ns-test-card .ns-qm {
  font-family: var(--font-heading); font-size: 56px;
  color: var(--brand-secondary); line-height: 0.5;
}
.ns-test-card p {
  font-size: 16px; font-weight: 300; font-style: italic;
  line-height: 1.8; color: var(--text-color); margin: 0;
}
.ns-test-card .ns-attr {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--brand-accent);
}

/* HOME — PRODUCTS STRIP */
.ns-prod-bento {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
}
.ns-prod-mini {
  background: var(--bg-alt); border-radius: var(--border-radius);
  display: flex; flex-direction: column; transition: transform 0.3s ease; overflow: hidden;
}
.ns-prod-mini:hover { transform: translateY(-4px); }
.ns-prod-mini-img { flex: 1; overflow: hidden; background: var(--brand-primary); min-height: 160px; }
.ns-prod-mini-img img {
  width: 100%; height: 100%; object-fit: cover;
  mix-blend-mode: luminosity; opacity: 0.65; transition: all 0.5s ease;
}
.ns-prod-mini:hover .ns-prod-mini-img img { mix-blend-mode: normal; opacity: 1; }
.ns-prod-mini-body { padding: 20px; }
.ns-prod-mini-body .ns-tag {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--brand-accent);
}
.ns-prod-mini-body h4 {
  font-family: var(--font-heading); font-size: 17px; margin-top: 6px;
  color: var(--text-color); margin-bottom: 0;
}
.ns-prod-mini-body .ns-price {
  font-family: var(--font-mono); font-size: 15px; font-weight: 700;
  color: var(--brand-secondary); margin-top: 6px;
}

/* HOME — CTA */
.ns-cta-bento {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 340px; gap: 16px; margin-bottom: 16px;
}
.ns-cta-card {
  background: var(--bg-color); padding: 56px 52px; display: flex;
  flex-direction: column; justify-content: center; border-radius: var(--border-radius);
}
.ns-cta-card h2 {
  font-family: var(--font-heading); font-size: clamp(40px,4.5vw,72px);
  line-height: 0.95; color: var(--text-color); margin-bottom: 20px; margin-top: 0;
}
.ns-cta-card h2 .accent { color: var(--brand-secondary); }
.ns-cta-card p {
  font-size: 16px; font-weight: 300; color: #2c2c2c;
  line-height: 1.8; max-width: 420px; margin-bottom: 32px; margin-top: 0;
}

/* ABOUT */
.ns-about-header-row {
  display: grid; grid-template-columns: 3fr 2fr;
  grid-template-rows: 400px; gap: 16px; margin-bottom: 16px;
}
.ns-story-row {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 480px; gap: 16px; margin-bottom: 16px;
}
.ns-story-card {
  background: var(--bg-alt); padding: 56px 52px; display: flex;
  flex-direction: column; justify-content: center; border-radius: var(--border-radius);
}
.ns-story-card h2 {
  font-family: var(--font-heading); font-size: clamp(32px,4vw,48px);
  line-height: 1.05; color: var(--text-color); margin-bottom: 28px; margin-top: 0;
}
.ns-story-card h2 .accent { color: var(--brand-secondary); }
.ns-story-card p {
  font-size: 16px; font-weight: 300; line-height: 1.9;
  color: #2c2c2c; margin-bottom: 16px; margin-top: 0;
}
.ns-phil-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 16px; }
.ns-phil-card {
  background: rgba(245,240,235,0.03); border: 1px solid rgba(245,240,235,0.06);
  padding: 44px 40px; display: flex; flex-direction: column; justify-content: space-between;
  border-radius: var(--border-radius); min-height: 340px; position: relative;
}
.ns-phil-card::before {
  content: ''; position: absolute; top: 0; left: 32px; right: 32px; height: 3px;
  background: var(--brand-secondary); border-radius: 0 0 2px 2px;
}
.ns-phil-card .ns-pnum { font-family: var(--font-heading); font-size: 48px; color: var(--brand-accent); }
.ns-phil-card h3 { font-family: var(--font-heading); font-size: 28px; color: var(--bg-color); margin: 0; }
.ns-phil-card p { font-size: 16px; font-weight: 300; color: #F5F0EB; line-height: 1.8; margin: 0; }
.ns-culture-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr 2fr;
  grid-template-rows: 380px; gap: 16px; margin-bottom: 16px;
}
.ns-culture-card {
  background: var(--bg-color); padding: 48px 44px; display: flex;
  flex-direction: column; justify-content: center; border-radius: var(--border-radius);
}
.ns-culture-card h2 {
  font-family: var(--font-heading); font-size: clamp(28px,3vw,40px);
  line-height: 1.1; color: var(--text-color); margin-bottom: 24px; margin-top: 0;
}
.ns-culture-card p {
  font-size: 16px; font-weight: 300; color: #2c2c2c;
  line-height: 1.8; margin-bottom: 12px; margin-top: 0;
}

/* CONTACT */
.ns-contact-header-row {
  display: grid; grid-template-columns: 3fr 2fr;
  grid-template-rows: 360px; gap: 16px; margin-bottom: 16px;
}
.ns-contact-row { display: grid; grid-template-columns: 3fr 2fr; gap: 16px; margin-bottom: 16px; }
.ns-form-card { background: var(--bg-alt); padding: 52px 48px; border-radius: var(--border-radius); }
.ns-form-card h2 {
  font-family: var(--font-heading); font-size: clamp(28px,3vw,40px);
  line-height: 1.1; margin-bottom: 8px; margin-top: 0; color: var(--text-color);
}
.ns-form-card .ns-sub { font-size: 15px; font-weight: 300; color: #2c2c2c; margin-bottom: 36px; }
.ns-fg { margin-bottom: 24px; }
.ns-fg label {
  display: block; font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--text-color); margin-bottom: 8px;
}
.ns-fg input, .ns-fg select, .ns-fg textarea {
  width: 100%; padding: 14px 16px; font-family: var(--font-mono); font-size: 16px;
  border: 1px solid rgba(44,44,44,0.15); background: var(--bg-color);
  color: var(--text-color); border-radius: var(--btn-radius); outline: none;
  transition: border-color 0.3s ease; -webkit-appearance: none; appearance: none;
}
.ns-fg input:focus, .ns-fg select:focus, .ns-fg textarea:focus { border-color: var(--brand-secondary); }
.ns-fg textarea { min-height: 120px; resize: vertical; }
.ns-fr { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ns-btn-sub {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono);
  font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--bg-color); background: var(--brand-primary); border: none;
  padding: 16px 36px; border-radius: var(--btn-radius); cursor: pointer; transition: background 0.3s ease;
}
.ns-btn-sub:hover { background: var(--brand-secondary); }
.ns-info-stack { display: flex; flex-direction: column; gap: 16px; }
.ns-info-cell {
  background: rgba(245,240,235,0.03); border: 1px solid rgba(245,240,235,0.06);
  padding: 36px 32px; flex: 1; border-radius: var(--border-radius);
}
.ns-info-cell h4 {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--brand-secondary); margin-bottom: 16px; margin-top: 0;
}
.ns-info-cell p, .ns-info-cell a {
  font-family: var(--font-mono); font-size: 17px; font-weight: 300;
  color: #F5F0EB; display: block; line-height: 1.8; transition: color 0.3s ease; margin: 0;
}
.ns-info-cell a:hover { color: var(--brand-accent); }
.ns-info-cell .ns-lg { font-family: var(--font-heading); font-size: 24px; color: var(--bg-color); }
.ns-map-row { display: grid; grid-template-columns: 1fr; grid-template-rows: 320px; gap: 16px; margin-bottom: 16px; }
.ns-map-card {
  background: rgba(245,240,235,0.02); border: 1px solid rgba(245,240,235,0.05);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; border-radius: var(--border-radius);
}
.ns-map-pin {
  width: 40px; height: 40px; border: 3px solid var(--brand-secondary);
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg); position: relative;
}
.ns-map-pin::after {
  content: ''; width: 12px; height: 12px; background: var(--brand-secondary);
  border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.ns-map-card p {
  font-family: var(--font-mono); font-size: 14px; font-weight: 300;
  color: #F5F0EB; letter-spacing: 2px; text-transform: uppercase; margin: 0;
}

/* PRODUCTS */
.ns-products-header-row {
  display: grid; grid-template-columns: 5fr 3fr 3fr;
  grid-template-rows: 220px 220px; gap: 16px; margin-bottom: 16px;
}
.ns-products-header-card {
  grid-column: 1; grid-row: 1/3; background: var(--bg-color);
  padding: 56px 52px; display: flex; flex-direction: column;
  justify-content: space-between; border-radius: var(--border-radius);
}
.ns-products-header-card h1 {
  font-family: var(--font-heading); font-size: 72px;
  line-height: 0.92; color: var(--text-color); margin: 0;
}
.ns-products-header-card h1 .accent { color: var(--brand-secondary); font-style: italic; }
.ns-products-header-card p {
  font-size: 16px; font-weight: 300; color: #2c2c2c; line-height: 1.8; max-width: 420px; margin: 0;
}
.ns-filter-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
.ns-filter-card {
  background: rgba(245,240,235,0.03); border: 1px solid rgba(245,240,235,0.05);
  padding: 24px 32px; display: flex; gap: 32px; flex-wrap: wrap; border-radius: var(--border-radius);
}
.ns-filter-card a {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: rgba(245,240,235,0.3);
  transition: color 0.3s ease; padding-bottom: 6px; border-bottom: 2px solid transparent; cursor: pointer;
}
.ns-filter-card a.active, .ns-filter-card a:hover { color: var(--bg-color); border-bottom-color: var(--brand-secondary); }
.ns-prod-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 16px; }
.ns-prod-card {
  background: var(--bg-alt); border-radius: var(--border-radius);
  display: flex; flex-direction: column; transition: transform 0.3s ease; overflow: hidden;
}
.ns-prod-card:hover { transform: translateY(-6px); }
.ns-prod-card-img { aspect-ratio: 1; overflow: hidden; background: var(--brand-primary); position: relative; }
.ns-prod-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  mix-blend-mode: luminosity; opacity: 0.65; transition: all 0.5s ease;
}
.ns-prod-card:hover .ns-prod-card-img img { mix-blend-mode: normal; opacity: 1; }
.ns-prod-badge {
  position: absolute; top: 16px; left: 16px; background: var(--brand-secondary);
  color: var(--bg-color); font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; padding: 6px 12px;
  border-radius: var(--btn-radius); z-index: 2;
}
.ns-prod-card-body { padding: 24px; }
.ns-prod-card-body .ns-tag {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--brand-accent); margin-bottom: 8px;
}
.ns-prod-card-body h3 {
  font-family: var(--font-heading); font-size: 22px;
  line-height: 1.2; margin-bottom: 8px; margin-top: 0; color: var(--text-color);
}
.ns-prod-card-body .ns-desc {
  font-size: 14px; font-weight: 300; color: #2c2c2c; line-height: 1.6; margin-bottom: 16px; margin-top: 0;
}
.ns-prod-card-body .ns-price {
  font-family: var(--font-mono); font-size: 18px; font-weight: 700; color: var(--brand-secondary);
}
.ns-feat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.ns-feat-card {
  background: var(--bg-color); padding: 56px 52px; display: flex;
  flex-direction: column; justify-content: center; border-radius: var(--border-radius);
}
.ns-feat-card .ns-badge {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--brand-accent); margin-bottom: 24px;
}
.ns-feat-card h2 {
  font-family: var(--font-heading); font-size: clamp(32px,4vw,48px);
  line-height: 1.05; color: var(--text-color); margin-bottom: 20px; margin-top: 0;
}
.ns-feat-card p {
  font-size: 16px; font-weight: 300; color: #2c2c2c;
  line-height: 1.8; margin-bottom: 28px; margin-top: 0; max-width: 420px;
}
.ns-feat-card .ns-feat-price {
  font-family: var(--font-mono); font-size: 32px; font-weight: 700;
  color: var(--brand-secondary); margin-bottom: 32px;
}

/* SERVICES */
.ns-services-header-row {
  display: grid; grid-template-columns: 1fr; grid-template-rows: 340px; gap: 16px; margin-bottom: 16px;
}
.ns-svc-row { display: grid; grid-template-columns: 1fr 2fr; gap: 16px; margin-bottom: 16px; }
.ns-svc-row.rev { grid-template-columns: 2fr 1fr; }
.ns-svc-img { min-height: 440px; }
.ns-svc-card {
  background: var(--bg-color); padding: 52px 48px; display: flex;
  flex-direction: column; justify-content: center; border-radius: var(--border-radius);
}
.ns-svc-card.alt { background: var(--bg-alt); }
.ns-svc-card .ns-snum {
  font-family: var(--font-heading); font-size: 56px; color: var(--brand-secondary);
  line-height: 0.8; margin-bottom: 8px;
}
.ns-svc-card h2 {
  font-family: var(--font-heading); font-size: clamp(32px,4vw,52px);
  line-height: 1; margin-bottom: 20px; margin-top: 0; color: var(--text-color);
}
.ns-svc-card > p {
  font-size: 16px; font-weight: 300; line-height: 1.8;
  color: #2c2c2c; margin-bottom: 32px; margin-top: 0; max-width: 480px;
}
.ns-svc-list { list-style: none; border-top: 1px solid rgba(44,44,44,0.1); padding: 0; margin: 0; }
.ns-svc-list li {
  display: flex; justify-content: space-between; padding: 16px 0;
  border-bottom: 1px solid rgba(44,44,44,0.06); font-size: 16px; color: var(--text-color);
}
.ns-svc-list .ns-pr {
  font-family: var(--font-mono); font-weight: 700; color: var(--brand-secondary);
  font-size: 14px; letter-spacing: 1px;
}
.ns-svc-cta-row {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 340px; gap: 16px; margin-bottom: 16px;
}
.ns-svc-cta-card {
  background: var(--bg-color); padding: 56px 52px; display: flex;
  flex-direction: column; justify-content: center; border-radius: var(--border-radius);
}
.ns-svc-cta-card h2 {
  font-family: var(--font-heading); font-size: clamp(36px,4vw,64px);
  line-height: 0.95; color: var(--text-color); margin-bottom: 20px; margin-top: 0;
}
.ns-svc-cta-card h2 .accent { color: var(--brand-secondary); font-style: normal; }
.ns-svc-cta-card p { font-size: 16px; font-weight: 300; color: #2c2c2c; margin-bottom: 28px; margin-top: 0; }

/* STYLISTS */
.ns-stylists-header-row {
  display: grid; grid-template-columns: 1fr; grid-template-rows: 340px; gap: 16px; margin-bottom: 16px;
}
.ns-sty-row {
  display: grid; grid-template-columns: 5fr 4fr; grid-template-rows: 520px; gap: 16px; margin-bottom: 16px;
}
.ns-sty-row.rev { grid-template-columns: 4fr 5fr; }
.ns-sty-row.rev .ns-sty-img { order: 2; }
.ns-sty-row.rev .ns-sty-card { order: 1; }
.ns-sty-img { min-height: 440px; }
.ns-sty-card {
  padding: 52px 48px; display: flex; flex-direction: column;
  justify-content: center; border-radius: var(--border-radius);
}
.ns-sty-card.light { background: var(--bg-color); }
.ns-sty-card.alt { background: var(--bg-alt); }
.ns-sty-card .ns-snum {
  font-family: var(--font-heading); font-size: 64px; color: var(--brand-secondary);
  line-height: 0.8; margin-bottom: 4px;
}
.ns-sty-card h2 {
  font-family: var(--font-heading); font-size: clamp(36px,4vw,56px);
  line-height: 1; margin-bottom: 6px; margin-top: 0; color: var(--text-color);
}
.ns-sty-card .ns-role {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--brand-accent); margin-bottom: 28px;
}
.ns-sty-card p {
  font-size: 16px; font-weight: 300; line-height: 1.9;
  color: #2c2c2c; margin-bottom: 28px; margin-top: 0; max-width: 460px;
}
.ns-specs { display: flex; flex-wrap: wrap; gap: 10px; }
.ns-specs span {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 10px 16px; border: 1px solid rgba(44,44,44,0.2);
  border-radius: var(--btn-radius); color: var(--text-color);
}
.ns-sty-cta-row {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 340px; gap: 16px; margin-bottom: 16px;
}
.ns-sty-cta-card {
  background: var(--bg-color); padding: 56px 52px; display: flex;
  flex-direction: column; justify-content: center; border-radius: var(--border-radius);
}
.ns-sty-cta-card h2 {
  font-family: var(--font-heading); font-size: clamp(36px,4vw,64px);
  line-height: 0.95; color: var(--text-color); margin-bottom: 20px; margin-top: 0;
}
.ns-sty-cta-card h2 .accent { color: var(--brand-secondary); font-style: normal; }
.ns-sty-cta-card p { font-size: 16px; font-weight: 300; color: #2c2c2c; margin-bottom: 28px; margin-top: 0; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE — TABLET */
@media (max-width: 1024px) {
  .ns-hero-bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto 200px 200px; }
  .ns-hero-text { grid-column: 1/3; grid-row: 1; min-height: 420px; }
  .ns-hi1 { grid-column: 1; grid-row: 2; } .ns-hi2 { grid-column: 2; grid-row: 2; }
  .ns-hi3 { grid-column: 1; grid-row: 3; } .ns-hi4 { grid-column: 2; grid-row: 3; }
  .ns-hi5 { display: none; }
  .ns-styles-bento { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 380px; }
  .ns-styles-bento .ns-card-dark { grid-column: 1/3; }
  .ns-duo-bento { grid-template-columns: 1fr; }
  .ns-gallery-bento { grid-template-columns: 1fr 1fr; }
  .ns-gallery-bento .ns-bc:nth-child(1), .ns-gallery-bento .ns-bc:nth-child(4) { grid-column: auto; }
  .ns-test-bento { grid-template-columns: 1fr; }
  .ns-prod-bento { grid-template-columns: 1fr 1fr; }
  .ns-prod-bento .ns-card-dark { grid-column: 1/3; }
  .ns-cta-bento { grid-template-columns: 1fr; grid-template-rows: auto 300px; }
  .ns-footer-bento { grid-template-columns: 1fr 1fr; }
  .ns-about-header-row { grid-template-columns: 1fr; grid-template-rows: auto 300px; }
  .ns-story-row { grid-template-columns: 1fr; grid-template-rows: auto 400px; }
  .ns-phil-row { grid-template-columns: 1fr; } .ns-phil-card { min-height: 260px; }
  .ns-culture-row { grid-template-columns: 1fr 1fr; grid-template-rows: 260px auto; }
  .ns-culture-card { grid-column: 1/3; }
  .ns-contact-header-row { grid-template-columns: 1fr; grid-template-rows: auto 280px; }
  .ns-contact-row { grid-template-columns: 1fr; }
  .ns-products-header-row { grid-template-columns: 1fr 1fr; grid-template-rows: auto 200px; }
  .ns-products-header-card { grid-column: 1/3; grid-row: 1; }
  .ns-prod-grid { grid-template-columns: 1fr 1fr; }
  .ns-feat-row { grid-template-columns: 1fr; grid-template-rows: 380px auto; }
  .ns-svc-row, .ns-svc-row.rev { grid-template-columns: 1fr; }
  .ns-svc-img { min-height: 320px; }
  .ns-svc-cta-row { grid-template-columns: 1fr; grid-template-rows: auto 300px; }
  .ns-sty-row, .ns-sty-row.rev { grid-template-columns: 1fr; grid-template-rows: 420px auto; }
  .ns-sty-row.rev .ns-sty-img, .ns-sty-row.rev .ns-sty-card { order: unset; }
  .ns-sty-cta-row { grid-template-columns: 1fr; grid-template-rows: auto 300px; }
}

/* RESPONSIVE — MOBILE */
@media (max-width: 768px) {
  .ns-nav { padding: 16px 20px; }
  .ns-nav-links { display: none; }
  .ns-hamburger { display: flex; }
  .ns-bento { padding: 72px 12px 12px; }
  .ns-hero-bento,
  .ns-styles-bento, .ns-duo-bento, .ns-gallery-bento, .ns-test-bento,
  .ns-prod-bento, .ns-cta-bento,
  .ns-about-header-row, .ns-story-row, .ns-phil-row, .ns-culture-row,
  .ns-services-header-row, .ns-svc-row, .ns-svc-cta-row,
  .ns-stylists-header-row, .ns-sty-row, .ns-sty-cta-row,
  .ns-products-header-row, .ns-filter-row, .ns-prod-grid, .ns-feat-row,
  .ns-contact-header-row, .ns-contact-row, .ns-map-row,
  .ns-footer-bento {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .ns-hero-bento { grid-template-columns: 1fr; grid-template-rows: auto 200px; gap: 12px; margin-bottom: 12px; }
  .ns-hero-text { grid-column: 1; min-height: 380px; padding: 40px 32px; }
  .ns-hi1 { grid-row: 2; grid-column: 1; }
  .ns-hi2, .ns-hi3, .ns-hi4 { display: none; }
  .ns-styles-bento, .ns-duo-bento, .ns-gallery-bento, .ns-test-bento,
  .ns-prod-bento, .ns-cta-bento, .ns-footer-bento { gap: 12px; margin-bottom: 12px; }
  .ns-styles-bento { grid-template-columns: 1fr; grid-template-rows: 200px 340px 200px; }
  .ns-styles-bento .ns-card-dark { grid-column: 1; }
  .ns-duo-cell { grid-template-columns: 1fr; grid-template-rows: 220px auto; }
  .ns-gallery-bento { grid-template-columns: 1fr; grid-template-rows: repeat(4, 240px); }
  .ns-prod-bento { grid-template-columns: 1fr; }
  .ns-prod-bento .ns-card-dark { grid-column: 1; }
  .ns-cta-bento { grid-template-rows: auto 260px; }
  .ns-cta-card { padding: 40px 32px; }
  .ns-footer-bento { grid-template-columns: 1fr; }
  .ns-f-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .ns-about-header-row, .ns-story-row, .ns-phil-row, .ns-culture-row, .ns-footer-bento { gap: 12px; margin-bottom: 12px; }
  .ns-header-card, .ns-story-card, .ns-culture-card { padding: 40px 32px; }
  .ns-culture-row { grid-template-columns: 1fr; grid-template-rows: 200px 200px auto; }
  .ns-culture-card { grid-column: 1; }
  .ns-contact-header-row, .ns-contact-row, .ns-map-row, .ns-footer-bento { gap: 12px; margin-bottom: 12px; }
  .ns-form-card { padding: 36px 28px; }
  .ns-fr { grid-template-columns: 1fr; }
  .ns-map-row { grid-template-rows: 240px; }
  .ns-products-header-row { grid-template-columns: 1fr; grid-template-rows: auto 180px; }
  .ns-products-header-card { grid-column: 1; padding: 40px 32px; }
  .ns-prod-grid { grid-template-columns: 1fr; }
  .ns-feat-card { padding: 40px 32px; }
  .ns-services-header-row, .ns-svc-row, .ns-svc-cta-row, .ns-footer-bento { gap: 12px; margin-bottom: 12px; }
  .ns-svc-card, .ns-svc-cta-card { padding: 40px 32px; }
  .ns-svc-img { min-height: 260px; }
  .ns-stylists-header-row, .ns-sty-row, .ns-sty-cta-row, .ns-footer-bento { gap: 12px; margin-bottom: 12px; }
  .ns-sty-card, .ns-sty-cta-card { padding: 40px 32px; }
  .ns-sty-row, .ns-sty-row.rev { grid-template-rows: 320px auto; }
}
