/* ============================================
   re:Grande — Nail Chip Page
   Inherits palette from style.css
   Distinct motion: card spread, particle drift, gradient lines
   ============================================ */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.nav a.is-active { color: var(--color-accent); position: relative; }
.nav a.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--color-accent);
  animation: nc-navUnderline .6s ease both;
}
@keyframes nc-navUnderline { from { transform: scaleX(0); transform-origin: left; } to { transform: scaleX(1); } }

/* ============================================
   HERO — Collage with floating cards
   ============================================ */
.nc-hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 32px 100px;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(79,184,201,.10) 0%, transparent 60%),
    var(--color-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.nc-hero-bg-text {
  position: absolute;
  bottom: -60px; left: -40px;
  font-family: var(--font-en);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(140px, 18vw, 280px);
  line-height: 0.85;
  color: rgba(79,184,201,.07);
  pointer-events: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
  z-index: 1;
}
/* drifting particles */
.nc-hero-particles {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
}
.nc-hero-particles span {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.5;
  animation: nc-particleDrift 14s linear infinite;
}
.nc-hero-particles span:nth-child(1) { top: 10%; left: 12%; animation-delay: 0s; }
.nc-hero-particles span:nth-child(2) { top: 22%; left: 78%; animation-delay: -3s; opacity: .35; width: 4px; height: 4px; }
.nc-hero-particles span:nth-child(3) { top: 60%; left: 8%; animation-delay: -6s; opacity: .4; }
.nc-hero-particles span:nth-child(4) { top: 80%; left: 60%; animation-delay: -9s; width: 8px; height: 8px; opacity: .25; }
.nc-hero-particles span:nth-child(5) { top: 35%; left: 50%; animation-delay: -2s; width: 5px; height: 5px; opacity: .35; }
.nc-hero-particles span:nth-child(6) { top: 55%; left: 88%; animation-delay: -7s; width: 4px; height: 4px; opacity: .45; }
@keyframes nc-particleDrift {
  0%, 100% { transform: translate(0,0); }
  25%      { transform: translate(20px, -30px); }
  50%      { transform: translate(-10px, -50px); }
  75%      { transform: translate(15px, -25px); }
}
.nc-hero-grid {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.nc-hero-text { min-width: 0; }
.nc-hero-kicker {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.45em;
  color: var(--color-accent-dark);
  text-transform: uppercase;
  position: relative;
  padding-left: 54px;
  margin: 0 0 36px;
  animation: nc-fadeUp 1s ease .1s both;
}
.nc-hero-kicker::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 42px; height: 1px;
  background: var(--color-accent);
}
.nc-hero-title {
  font-family: var(--font-jp-serif);
  font-weight: 300;
  font-size: clamp(30px, 5.4vw, 68px);
  line-height: 1.45;
  letter-spacing: 0.08em;
  margin: 0 0 38px;
  overflow: hidden;
}
.nc-line {
  display: block;
  opacity: 0;
  transform: translateY(40px) skewY(4deg);
  animation: nc-lineUp 1.1s cubic-bezier(.2,.7,.2,1) both;
  transform-origin: left center;
}
.nc-line-1 { animation-delay: .3s; }
.nc-line-2 { animation-delay: .55s; }
.nc-line-3 { animation-delay: .8s; }
.nc-line-4 { animation-delay: 1.05s; }
@keyframes nc-lineUp {
  to { opacity: 1; transform: translateY(0) skewY(0); }
}
.nc-hero-title .accent {
  font-family: var(--font-jp-serif);
  font-style: normal;
  font-weight: 500;
  background: linear-gradient(110deg, var(--color-accent) 0%, var(--color-accent-dark) 50%, var(--color-accent) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  animation: nc-shimmerText 6s linear infinite;
  position: relative;
  display: inline-block;
}
@keyframes nc-shimmerText {
  from { background-position: 0% 0; }
  to   { background-position: -200% 0; }
}
.nc-line-en {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 0.32em;
  letter-spacing: 0.42em;
  color: var(--color-accent-dark);
  text-transform: none;
  margin-top: 22px;
  font-weight: 300;
  opacity: 0.82;
  position: relative;
  display: inline-block;
  padding: 0 36px;
}
.nc-line-en::before,
.nc-line-en::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 22px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.6;
}
.nc-line-en::before { left: 0; }
.nc-line-en::after  { right: 0; }
.nc-hero-lead {
  font-size: 14px;
  line-height: 2.2;
  color: var(--color-text-soft);
  margin: 0 0 44px;
  max-width: 460px;
  letter-spacing: 0.06em;
  animation: nc-fadeUp 1.2s ease 1.0s both;
}
.nc-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 40px;
  background: var(--color-text);
  color: var(--color-bg);
  font-family: var(--font-jp-serif);
  letter-spacing: 0.18em;
  font-size: 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: all .3s ease;
  animation: nc-fadeUp 1.3s ease 1.15s both;
}
.nc-hero-cta:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -10px rgba(79,184,201,.4);
}
@keyframes nc-fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero scattered polaroid collage — no continuous float */
.nc-hero-collage {
  position: relative;
  width: 100%;
  height: 580px;
  justify-self: end;
  max-width: 560px;
  perspective: 1200px;
}
.nc-hero-card {
  position: absolute;
  width: 200px;
  aspect-ratio: 1;
  border-radius: 2px;
  overflow: hidden;
  background: #fff;
  padding: 8px 8px 28px;
  box-shadow: 0 20px 40px -15px rgba(46,42,38,.4),
              0 6px 12px -6px rgba(46,42,38,.2);
  opacity: 0;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease, z-index 0s .5s;
  cursor: pointer;
}
.nc-hero-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.nc-hero-card-1 { top: 12%;  left: 4%;   width: 220px; --r: -10deg; z-index: 3; animation: nc-cardIn .9s ease .35s both; }
.nc-hero-card-2 { top: 0;    right: 8%;  width: 200px; --r:  7deg;  z-index: 4; animation: nc-cardIn .9s ease .55s both; }
.nc-hero-card-3 { top: 38%;  left: 24%;  width: 180px; --r: -3deg;  z-index: 5; animation: nc-cardIn .9s ease .75s both; }
.nc-hero-card-4 { top: 32%;  right: 0;   width: 180px; --r:  12deg; z-index: 2; animation: nc-cardIn .9s ease .95s both; }
.nc-hero-card-5 { bottom: 4%; left: 0;   width: 180px; --r: -8deg;  z-index: 4; animation: nc-cardIn .9s ease 1.15s both; }
.nc-hero-card-6 { bottom: 12%; right: 18%; width: 170px; --r: 4deg; z-index: 3; animation: nc-cardIn .9s ease 1.35s both; }
.nc-hero-card-7 { bottom: 40%; left: 50%; width: 160px; --r: -14deg; z-index: 1; animation: nc-cardIn .9s ease 1.55s both; transform: translateX(-50%) rotate(-14deg); }
@keyframes nc-cardIn {
  0%   { opacity: 0; transform: scale(.5) rotate(var(--r)); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: rotate(var(--r)); }
}
.nc-hero-card-7 {
  /* center-anchored card needs translate baked in */
}
@keyframes nc-cardIn7 {
  0%   { opacity: 0; transform: translateX(-50%) scale(.5) rotate(-14deg); }
  100% { opacity: 1; transform: translateX(-50%) rotate(-14deg); }
}
.nc-hero-card-7 { animation-name: nc-cardIn7; }
.nc-hero-card:hover {
  transform: scale(1.06) rotate(0);
  box-shadow: 0 36px 68px -20px rgba(46,42,38,.5),
              0 10px 20px -8px rgba(46,42,38,.3);
  z-index: 10 !important;
}
.nc-hero-card-7:hover {
  transform: translateX(-50%) scale(1.06) rotate(0);
}
.nc-hero-tag {
  position: absolute;
  top: -16px; right: -16px;
  background: var(--color-accent);
  color: #fff;
  padding: 10px 22px;
  font-family: var(--font-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.18em;
  border-radius: 999px;
  z-index: 6;
  box-shadow: 0 12px 24px -8px rgba(79,184,201,.5);
  white-space: nowrap;
  animation: nc-tagPop 1s ease 1.8s both;
}
@keyframes nc-tagPop {
  0%   { opacity: 0; transform: scale(0) rotate(-30deg); }
  60%  { transform: scale(1.1) rotate(8deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
@media (max-width: 860px) {
  .nc-hero { padding: 110px 24px 80px; }
  .nc-hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .nc-hero-collage { height: 500px; max-width: 420px; margin: 0 auto; }
  .nc-hero-card-1 { width: 170px; }
  .nc-hero-card-2 { width: 160px; }
  .nc-hero-card-3 { width: 150px; }
  .nc-hero-card-4 { width: 150px; }
  .nc-hero-card-5 { width: 150px; }
  .nc-hero-card-6 { width: 140px; }
  .nc-hero-card-7 { width: 140px; }
}

/* ============================================
   Section common
   ============================================ */
.nc-section {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.nc-section .section-en {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.5em;
  color: var(--color-accent-dark);
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 14px;
}
.nc-section .section-title {
  font-family: var(--font-jp-serif);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 36px;
  position: relative;
}
.nc-section .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  transform: translateX(-50%);
  transition: width 1.2s cubic-bezier(.2,.7,.2,1) .3s;
}
.nc-section .section-title.is-visible::after,
.nc-section .reveal.is-visible.section-title::after {
  width: 80px;
}
/* sparkle decorations on section titles */
.nc-section .section-title::before {
  content: '✦';
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
  color: var(--color-accent);
  font-size: 12px;
  opacity: 0;
  animation: nc-titleSparkle 3s ease-in-out infinite 1.5s;
}
@keyframes nc-titleSparkle {
  0%, 100% { opacity: 0; transform: translateY(-50%) scale(.5) rotate(0); }
  50%      { opacity: 0.8; transform: translateY(-50%) scale(1) rotate(180deg); }
}
.nc-section .section-body {
  font-size: 14px;
  line-height: 2.1;
  color: var(--color-text-soft);
  letter-spacing: 0.06em;
  margin: 0 auto 60px;
  max-width: 600px;
}
.nc-section .section-body.center { text-align: center; }
.nc-section .section-body strong { color: var(--color-accent-dark); font-weight: 500; }

/* ============================================
   ORDER FLOW — connected steps
   ============================================ */
.nc-flow { background: var(--color-surface); }
.nc-flow-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  position: relative;
}
.nc-flow-list::before {
  content: '';
  position: absolute;
  top: 28px; left: 6%; right: 6%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--color-accent) 0 4px, transparent 4px 12px);
  z-index: 0;
}
.nc-flow-step {
  text-align: center;
  position: relative;
  padding-top: 65px;
}
.nc-flow-num {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-family: var(--font-en);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all .4s ease;
}
.nc-flow-step:hover .nc-flow-num {
  background: var(--color-accent);
  color: #fff;
  transform: translateX(-50%) scale(1.12);
  box-shadow: 0 12px 24px -8px rgba(79,184,201,.45);
}
.nc-flow-step h3 {
  font-family: var(--font-jp-serif);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
}
.nc-flow-step p {
  font-size: 12px;
  line-height: 1.85;
  color: var(--color-text-soft);
  letter-spacing: 0.04em;
  margin: 0;
}
@media (max-width: 980px) {
  .nc-flow-list { grid-template-columns: repeat(3, 1fr); gap: 30px 18px; }
  .nc-flow-list::before { display: none; }
}
@media (max-width: 540px) {
  .nc-flow-list { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   SIZING METHODS
   ============================================ */
.nc-sizing { background: var(--color-bg); }
.nc-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.nc-blob-1 {
  top: -100px; right: -120px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(224,242,245,.55), transparent 65%);
  animation: nc-blobDrift 14s ease-in-out infinite;
}
.nc-blob-2 {
  bottom: -150px; left: -100px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(244,236,216,.55), transparent 65%);
  animation: nc-blobDrift 16s ease-in-out infinite reverse;
}
@keyframes nc-blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(30px, -20px) scale(1.05); }
}
.nc-sizing .container { position: relative; z-index: 1; }
.nc-sizing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
  align-items: stretch;
}
.nc-sizing-card {
  display: flex;
  flex-direction: column;
}
.nc-sizing-image {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed var(--color-border);
  text-align: center;
}
.nc-sizing-image img {
  max-width: 240px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  margin: 0 auto;
}
.nc-sizing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 50px 44px 44px;
  position: relative;
  transition: transform .4s ease, box-shadow .4s ease;
}
.nc-sizing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -25px rgba(46,42,38,.25);
}
.nc-sizing-recommended {
  background: linear-gradient(180deg, #fff 0%, var(--color-surface) 100%);
  border-color: rgba(79,184,201,.4);
  box-shadow: 0 20px 40px -25px rgba(79,184,201,.3);
}
.nc-sizing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  padding: 6px 18px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 8px 20px -8px rgba(79,184,201,.5);
}
.nc-sizing-en {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin: 0 0 8px;
}
.nc-sizing-card h3 {
  font-family: var(--font-jp-serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin: 0 0 18px;
}
.nc-sizing-desc {
  font-size: 13px;
  line-height: 1.95;
  color: var(--color-text-soft);
  letter-spacing: 0.05em;
  margin: 0 0 26px;
}
.nc-sizing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 10px;
}
.nc-sizing-features li {
  font-size: 13px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1.7;
}
.nc-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 10px;
  flex: 0 0 auto;
  position: relative;
  top: 4px;
}
.nc-sizing-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 0;
  border-top: 1px dashed var(--color-border);
  border-bottom: 1px dashed var(--color-border);
  margin-bottom: 20px;
}
.nc-sizing-price-label {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 12px;
  color: var(--color-accent-dark);
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}
.nc-sizing-price-amount {
  font-family: var(--font-en);
  font-size: 32px;
  color: var(--color-text);
  font-weight: 500;
  line-height: 1;
}
.nc-sizing-price-amount small {
  font-size: 12px;
  font-style: italic;
  color: var(--color-text-soft);
  margin-left: 6px;
}
.nc-sizing-price-free .nc-sizing-price-amount { color: var(--color-accent); }
.nc-sizing-note {
  font-size: 12px;
  color: var(--color-text-soft);
  line-height: 1.85;
  letter-spacing: 0.04em;
  margin: 0;
  text-align: center;
}
.nc-sizing-note strong {
  display: inline-block;
  margin-top: 6px;
  color: var(--color-accent-dark);
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (max-width: 860px) {
  .nc-sizing-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* Embedded measure guide inside Method B card */
.nc-sizing-guide {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px dashed var(--color-border);
}
.nc-sizing-guide-title {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin: 0 0 16px;
  text-align: center;
}
.nc-sizing-guide-body {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
}
.nc-sizing-guide-photo {
  width: 160px;
  height: 160px;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-border);
}
.nc-sizing-guide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nc-sizing-guide-text h4 {
  font-family: var(--font-jp-serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
  color: var(--color-text);
}
.nc-sizing-guide-text p {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-soft);
  letter-spacing: 0.05em;
  margin: 0;
}
.nc-sizing-guide .nc-guide-tip {
  font-size: 13px;
  padding: 14px 18px;
}
.nc-sizing-guide .nc-guide-tip-text {
  font-size: 13px;
  line-height: 1.9;
}
.nc-sizing-guide .nc-guide-tip {
  background: linear-gradient(90deg, rgba(79,184,201,.10) 0%, transparent 100%);
  padding: 12px 14px;
  border-left: 2px solid var(--color-accent);
  border-radius: 2px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.8;
  margin: 0;
  color: var(--color-text);
}

/* ============================================
   SELF MEASURE GUIDE
   ============================================ */
.nc-guide { background: var(--color-surface); }
.nc-guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
/* Single integrated card: photo + text in one container */
.nc-guide-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  margin: 30px auto 0;
  max-width: 760px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(46,42,38,.25);
  border: 1px solid var(--color-border);
}
.nc-guide-card-photo {
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  position: relative;
  border-right: 1px solid var(--color-border);
}
.nc-guide-card-photo::before {
  content: 'Measure';
  position: absolute;
  top: 18px; left: 18px;
  font-family: var(--font-en);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  opacity: 0.7;
}
.nc-guide-card-photo img {
  width: 100%;
  max-width: 160px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 16px 32px -14px rgba(46,42,38,.3);
}
.nc-guide-card-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nc-guide-card-en {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin: 0 0 8px;
}
.nc-guide-card-body h3 {
  font-family: var(--font-jp-serif);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
  color: var(--color-text);
}
.nc-guide-card-desc {
  font-size: 13px;
  line-height: 2;
  color: var(--color-text-soft);
  letter-spacing: 0.05em;
  margin: 0 0 18px;
}
@media (max-width: 720px) {
  .nc-guide-card { grid-template-columns: 1fr; }
  .nc-guide-card-photo { border-right: 0; border-bottom: 1px solid var(--color-border); padding: 28px; }
  .nc-guide-card-photo img { max-width: 130px; }
  .nc-guide-card-body { padding: 28px 26px; }
}
.nc-guide-method {
  background: #fff;
  padding: 36px 36px 32px;
  border-radius: 6px;
  position: relative;
  border: 1px solid var(--color-border);
  transition: transform .4s ease, box-shadow .4s ease;
}
.nc-guide-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -22px rgba(46,42,38,.2);
}
.nc-guide-num {
  position: absolute;
  top: -18px; left: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-en);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px -8px rgba(79,184,201,.45);
}
.nc-guide-method h3 {
  font-family: var(--font-jp-serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin: 8px 0 18px;
}
.nc-guide-method p {
  font-size: 13px;
  line-height: 2;
  color: var(--color-text-soft);
  letter-spacing: 0.05em;
  margin: 0 0 16px;
}
.nc-guide-tip {
  background: linear-gradient(90deg, rgba(79,184,201,.10) 0%, transparent 100%);
  padding: 14px 18px;
  border-left: 2px solid var(--color-accent);
  border-radius: 2px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px !important;
  line-height: 1.85 !important;
  margin: 0 !important;
  color: var(--color-text) !important;
}
.nc-guide-tip-soft {
  background: linear-gradient(90deg, rgba(244,236,216,.6) 0%, transparent 100%);
  border-left-color: var(--color-text-soft);
}
.nc-guide-tip-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-style: italic;
  font-size: 12px;
  flex-shrink: 0;
  font-weight: 600;
  margin-top: 2px;
}
.nc-guide-tip-text {
  flex: 1;
  display: block;
  line-height: 1.85;
}
.nc-guide-tip-soft .nc-guide-tip-icon {
  background: var(--color-text-soft);
}
.nc-guide-tip strong {
  color: var(--color-accent-dark);
  font-weight: 500;
}
/* Circular tape measure photo with decorative frame */
.nc-guide-circle {
  position: relative;
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  margin: 0 auto;
  justify-self: center;
}
.nc-guide-circle-frame {
  position: absolute;
  inset: -14px;
  border: 1px dashed var(--color-accent);
  border-radius: 50%;
  animation: nc-guideRotate 30s linear infinite;
}
.nc-guide-circle-frame::before,
.nc-guide-circle-frame::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 12px rgba(79,184,201,.5);
}
.nc-guide-circle-frame::before { top: -5px; left: 50%; transform: translateX(-50%); }
.nc-guide-circle-frame::after  { bottom: -5px; left: 50%; transform: translateX(-50%); background: var(--color-accent-dark); }
@keyframes nc-guideRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.nc-guide-circle-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #fff;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  box-shadow: 0 30px 60px -25px rgba(46,42,38,.4),
              0 0 0 1px rgba(79,184,201,.18);
}
.nc-guide-circle-inner img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  transition: transform 1.2s ease;
}
.nc-guide-circle:hover .nc-guide-circle-inner img {
  transform: scale(1.05);
}
.nc-guide-circle-tag {
  position: absolute;
  bottom: -10px; right: -10px;
  background: var(--color-text);
  color: var(--color-bg);
  padding: 8px 18px;
  font-family: var(--font-en);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.18em;
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 8px 18px -6px rgba(46,42,38,.35);
}
@media (max-width: 860px) {
  .nc-guide-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ============================================
   TIP COMPARISON
   ============================================ */
.nc-comparison { background: var(--color-bg); }
.nc-shapes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.nc-shapes-grid > .nc-shape-card:nth-child(5),
.nc-shapes-grid > .nc-shape-card:nth-child(6),
.nc-shapes-grid > .nc-shape-card:nth-child(7) {
  /* second row 3 items */
}
.nc-shape-card {
  background: var(--color-surface);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--color-border);
  transition: transform .5s ease, box-shadow .5s ease;
  display: flex;
  flex-direction: column;
}
.nc-shape-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -25px rgba(46,42,38,.3);
}
.nc-shape-photo {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.nc-shape-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease;
}
.nc-shape-card:hover .nc-shape-photo img {
  transform: scale(1.08);
}
.nc-shape-icon {
  aspect-ratio: 1.1 / 1;
  background: linear-gradient(180deg, rgba(224,242,245,.5) 0%, rgba(244,236,216,.4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 24px 20px;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}
.nc-shape-icon::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.4;
  transform: translateX(-50%);
}
.nc-shape-icon svg {
  width: auto;
  height: 78%;
  color: var(--color-accent-dark);
  transition: transform .6s cubic-bezier(.2,.7,.2,1), color .4s ease;
  filter: drop-shadow(0 8px 16px rgba(46,42,38,.12));
}
.nc-shape-card:hover .nc-shape-icon svg {
  transform: translateY(-4px) scale(1.06);
  color: var(--color-accent);
}
.nc-shape-num {
  position: absolute;
  top: 12px; right: 14px;
  font-family: var(--font-en);
  font-style: italic;
  font-size: 18px;
  color: #fff;
  background: rgba(79,184,201,.85);
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  z-index: 2;
}
.nc-shape-text .nc-shape-num {
  position: absolute; top: 16px; left: 16px;
  background: var(--color-accent);
}
.nc-shape-card h3 {
  font-family: var(--font-jp-serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0;
  padding: 18px 20px 8px;
}
.nc-shape-card p {
  font-size: 12px;
  line-height: 1.85;
  color: var(--color-text-soft);
  letter-spacing: 0.04em;
  margin: 0;
  padding: 0 20px 22px;
}
.nc-shape-text {
  background: linear-gradient(135deg, rgba(224,242,245,.5) 0%, var(--color-surface) 100%);
  border: 1px dashed var(--color-accent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  position: relative;
}
.nc-shape-text h3 { padding: 20px 0 8px; text-align: center; }
.nc-shape-text p { padding: 0; text-align: center; }
.nc-shape-coming {
  font-family: var(--font-en) !important;
  font-style: italic !important;
  font-size: 11px !important;
  color: var(--color-accent-dark) !important;
  letter-spacing: 0.15em !important;
  margin-top: 14px !important;
  padding-top: 14px !important;
  border-top: 1px solid var(--color-border);
}
@media (max-width: 980px) {
  .nc-shapes-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .nc-shapes-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

/* ============================================
   SIZE TABLES
   ============================================ */
.nc-tables { background: var(--color-surface); position: relative; }
.nc-tables::before {
  content: '';
  position: absolute;
  top: 80px; left: 8%;
  right: 8%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--color-border) 0 6px, transparent 6px 14px);
  opacity: 0.5;
  pointer-events: none;
}
.nc-tables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 36px;
  margin-top: 70px;
  padding: 30px 0;
  perspective: 1200px;
}
.nc-table-card {
  background: #fff;
  border-radius: 3px;
  margin: 0;
  cursor: zoom-in;
  transition: transform .55s cubic-bezier(.2,.7,.2,1), box-shadow .55s ease;
  position: relative;
  padding: 14px 14px 22px;
  box-shadow: 0 18px 36px -16px rgba(46,42,38,.3),
              0 4px 8px -4px rgba(46,42,38,.15);
  border: 1px solid rgba(0,0,0,.04);
}
/* polaroid scatter rotation */
.nc-table-card:nth-child(1) { transform: rotate(-3deg); }
.nc-table-card:nth-child(2) { transform: rotate(2deg); }
.nc-table-card:nth-child(3) { transform: rotate(-2deg); }
.nc-table-card:nth-child(4) { transform: rotate(4deg); }
.nc-table-card:nth-child(5) { transform: rotate(-4deg); }
.nc-table-card:nth-child(6) { transform: rotate(2deg); }
/* decorative pin/tape */
.nc-table-card::before {
  content: '';
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%) rotate(-8deg);
  width: 50px; height: 16px;
  background: linear-gradient(180deg, rgba(79,184,201,.55) 0%, rgba(79,184,201,.35) 100%);
  border-radius: 1px;
  box-shadow: 0 4px 8px -2px rgba(46,42,38,.18);
  z-index: 2;
  pointer-events: none;
}
.nc-table-card:nth-child(2)::before { transform: translateX(-50%) rotate(6deg); background: linear-gradient(180deg, rgba(244,236,216,.85) 0%, rgba(244,236,216,.6) 100%); }
.nc-table-card:nth-child(3)::before { transform: translateX(-50%) rotate(-4deg); background: linear-gradient(180deg, rgba(254,215,226,.7) 0%, rgba(254,215,226,.5) 100%); }
.nc-table-card:nth-child(4)::before { transform: translateX(-50%) rotate(5deg); background: linear-gradient(180deg, rgba(79,184,201,.55) 0%, rgba(79,184,201,.35) 100%); }
.nc-table-card:nth-child(5)::before { transform: translateX(-50%) rotate(-7deg); background: linear-gradient(180deg, rgba(244,236,216,.85) 0%, rgba(244,236,216,.6) 100%); }
.nc-table-card:nth-child(6)::before { transform: translateX(-50%) rotate(3deg); background: linear-gradient(180deg, rgba(254,215,226,.7) 0%, rgba(254,215,226,.5) 100%); }
.nc-table-card:hover {
  transform: rotate(0) translateY(-12px) scale(1.04) !important;
  box-shadow: 0 40px 70px -22px rgba(46,42,38,.4),
              0 8px 16px -6px rgba(46,42,38,.2);
  z-index: 5;
}
.nc-table-card img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--color-surface);
  border-radius: 2px;
}
.nc-table-card figcaption {
  display: none;
}
/* zoomed lightbox state */
.nc-table-card.is-zoomed {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) !important;
  width: 90vw;
  max-width: 600px;
  z-index: 1000;
  cursor: zoom-out;
  box-shadow: 0 50px 100px -30px rgba(0,0,0,.5);
}
.nc-table-card.is-zoomed::before { display: none; }
.nc-table-card.is-zoomed::after {
  content: '';
  position: fixed;
  top: -100vh; left: -100vw;
  right: -100vw; bottom: -100vh;
  background: rgba(0,0,0,.6);
  z-index: -1;
  cursor: zoom-out;
}
.nc-table-card.is-zoomed {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-width: 600px;
  z-index: 1000;
  cursor: zoom-out;
  box-shadow: 0 50px 100px -30px rgba(0,0,0,.5);
}
.nc-table-card.is-zoomed::before {
  content: '';
  position: fixed;
  top: -100vh; left: -100vw;
  right: -100vw; bottom: -100vh;
  background: rgba(0,0,0,.6);
  z-index: -1;
  cursor: zoom-out;
}
@media (max-width: 860px) {
  .nc-tables-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .nc-tables-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
}

/* ============================================
   SHAPES & SIZES (Combined Tabbed Section)
   ============================================ */
.nc-shapes-table { background: var(--color-bg); }
.nc-st-wrap {
  max-width: 1080px;
  margin: 0 auto;
}
.nc-st-shoutout {
  text-align: center;
  font-family: var(--font-jp-serif);
  font-size: 16px;
  letter-spacing: 0.3em;
  color: #c87a89;
  font-weight: 500;
  margin: 0 0 16px;
  animation: nc-shoutPulse 2s ease-in-out infinite;
}
.nc-st-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  justify-content: center;
}
.nc-st-tab {
  padding: 9px 12px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-family: var(--font-jp-serif);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--color-text);
  cursor: pointer;
  transition: all .3s ease;
  font-weight: 400;
  white-space: nowrap;
}
.nc-st-tab:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-dark);
  transform: translateY(-2px);
}
.nc-st-tab.active {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: 0 8px 18px -6px rgba(79,184,201,.45);
}
.nc-st-tab-popular {
  position: relative;
  background: rgba(254, 215, 226, 0.4);
  border-color: #e5a8b5;
  font-weight: 500;
}
.nc-st-tab-popular .nc-st-tab-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  background: #e5a8b5;
  color: #fff;
  font-family: var(--font-en);
  font-style: italic;
  font-size: 9px;
  letter-spacing: 0.05em;
  border-radius: 999px;
  vertical-align: middle;
  font-weight: 500;
}
.nc-st-tab-popular.active .nc-st-tab-badge {
  background: #fff;
  color: #c87a89;
}
.nc-st-photo { position: relative; }

/* Popular banner across the top of the panel */
.nc-st-panel-popular { padding-top: 0 !important; overflow: hidden; }
.nc-st-popular-shout {
  background: linear-gradient(180deg, rgba(254,215,226,.4) 0%, transparent 100%);
  color: #c87a89;
  text-align: center;
  padding: 18px 20px 22px;
  font-family: var(--font-jp-serif);
  font-size: 20px;
  letter-spacing: 0.4em;
  font-weight: 500;
  margin: 0 -60px 30px;
  animation: nc-shoutPulse 2s ease-in-out infinite;
  grid-column: 1 / -1;
}
@keyframes nc-shoutPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
.nc-st-popular-banner {
  background: linear-gradient(90deg, #e5a8b5 0%, #d48a98 50%, #e5a8b5 100%);
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  font-family: var(--font-jp-serif);
  font-size: 15px;
  letter-spacing: 0.2em;
  margin: 0 -60px 40px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  box-shadow: 0 4px 12px -4px rgba(212, 138, 152, 0.4);
}
.nc-st-popular-icon {
  font-size: 13px;
  opacity: 0.85;
  display: inline-block;
  animation: nc-popularStar 2.4s ease-in-out infinite;
}
.nc-st-popular-icon:last-child { animation-delay: 0.6s; }
@keyframes nc-popularStar {
  0%, 100% { transform: scale(0.9) rotate(0); opacity: 0.7; }
  50%      { transform: scale(1.15) rotate(72deg); opacity: 1; }
}
@media (max-width: 860px) {
  .nc-st-popular-banner { margin: 0 -28px 30px; font-size: 13px; padding: 12px 16px; }
}
.nc-st-panel {
  display: none;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 50px 60px;
  animation: ncStFade .5s cubic-bezier(.2,.7,.2,1);
}
.nc-st-panel.active {
  display: grid;
  grid-template-columns: .9fr 1.4fr;
  gap: 50px;
  align-items: center;
}
@keyframes ncStFade {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nc-st-vis {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.nc-st-photo {
  width: 220px;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 22px;
  background: transparent;
  border-radius: 50%;
  box-shadow: 0 24px 48px -20px rgba(46,42,38,.3);
}
.nc-st-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nc-st-name {
  font-family: var(--font-jp-serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  color: var(--color-text);
}
.nc-st-en {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 14px;
  color: var(--color-accent-dark);
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}
.nc-st-desc {
  font-size: 13px;
  line-height: 1.95;
  color: var(--color-text-soft);
  letter-spacing: 0.05em;
  max-width: 220px;
}
.nc-st-table-wrap {
  display: flex;
  flex-direction: column;
}
.nc-st-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  table-layout: fixed;
}
.nc-st-table th:first-child,
.nc-st-table td:first-child { width: 90px; }
.nc-st-table th:nth-child(2),
.nc-st-table td:nth-child(2),
.nc-st-table th:nth-child(3),
.nc-st-table td:nth-child(3) { width: auto; }
.nc-st-table thead th {
  font-family: var(--font-en);
  font-style: italic;
  letter-spacing: 0.18em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  padding: 12px 10px;
  border-bottom: 2px solid var(--color-accent);
  text-align: center;
  font-size: 13px;
}
.nc-st-table tbody td {
  padding: 10px 10px;
  text-align: center;
  border-bottom: 1px dotted var(--color-border);
  letter-spacing: 0.04em;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-jp-sans);
  color: var(--color-text);
}
.nc-st-table tbody tr:last-child td { border-bottom: 0; }
.nc-st-table tbody tr:hover td { background: rgba(79,184,201,.05); }
.nc-st-num {
  font-family: var(--font-jp-sans);
  font-style: normal;
  font-weight: 600;
  color: #fff;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-accent);
  letter-spacing: 0;
  vertical-align: middle;
  line-height: 1;
}
.nc-st-unit {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 12px;
  color: var(--color-text-soft);
  text-align: right;
  margin-top: 14px;
  letter-spacing: 0.15em;
}
.nc-st-empty {
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(79,184,201,.06) 0%, rgba(244,236,216,.4) 100%);
  border: 1px dashed var(--color-accent);
  border-radius: 6px;
  font-size: 14px;
  line-height: 2;
  color: var(--color-text);
  letter-spacing: 0.05em;
}
.nc-st-empty strong {
  color: var(--color-accent-dark);
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (max-width: 860px) {
  .nc-st-panel { padding: 36px 28px; }
  .nc-st-panel.active { grid-template-columns: 1fr; gap: 36px; }
  .nc-st-photo { width: 160px; height: 160px; }
  .nc-st-tab { padding: 9px 13px; font-size: 11.5px; }
  .nc-st-popular-shout { margin: 0 -28px 24px; font-size: 16px; padding: 14px 12px 16px; }
}
@media (max-width: 720px) {
  .nc-st-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 4px 4px 12px;
    margin: 0 -16px 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .nc-st-tab { flex-shrink: 0; scroll-snap-align: start; }
  .nc-st-shoutout { font-size: 14px; letter-spacing: 0.2em; }
}

/* ============================================
   CTA
   ============================================ */
.nc-cta {
  padding: 130px 32px;
  text-align: center;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(79,184,201,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(244,236,216,.6) 0%, transparent 60%),
    var(--color-surface);
  position: relative;
  overflow: hidden;
}
.nc-cta::before, .nc-cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(79,184,201,.18), transparent 70%);
}
.nc-cta::before { top: -80px; left: 5%; width: 280px; height: 280px; animation: nc-blobDrift 10s ease-in-out infinite; }
.nc-cta::after { bottom: -120px; right: 5%; width: 360px; height: 360px; animation: nc-blobDrift 13s ease-in-out infinite reverse; }
.nc-cta-inner { position: relative; z-index: 1; }

/* CTA gallery thumbs on both sides */
.nc-cta-thumbs {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 2;
  pointer-events: auto;
}
.nc-cta-thumbs-left { left: 4vw; }
.nc-cta-thumbs-right { right: 4vw; }
.nc-cta-thumb {
  width: 140px;
  height: 140px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 18px 36px -12px rgba(46,42,38,.4),
              0 6px 12px -6px rgba(46,42,38,.2);
  border: 5px solid #fff;
  background: #fff;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease;
  cursor: pointer;
}
.nc-cta-thumbs-left .nc-cta-thumb:nth-child(1) { transform: rotate(-7deg); }
.nc-cta-thumbs-left .nc-cta-thumb:nth-child(2) { transform: rotate(4deg) translateX(-12px); }
.nc-cta-thumbs-left .nc-cta-thumb:nth-child(3) { transform: rotate(-3deg); }
.nc-cta-thumbs-right .nc-cta-thumb:nth-child(1) { transform: rotate(5deg); }
.nc-cta-thumbs-right .nc-cta-thumb:nth-child(2) { transform: rotate(-4deg) translateX(12px); }
.nc-cta-thumbs-right .nc-cta-thumb:nth-child(3) { transform: rotate(6deg); }
.nc-cta-thumb:hover {
  transform: rotate(0) scale(1.08) !important;
  box-shadow: 0 30px 56px -14px rgba(46,42,38,.5),
              0 10px 20px -8px rgba(46,42,38,.3);
  z-index: 5;
}
.nc-cta-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1100px) {
  .nc-cta-thumb { width: 110px; height: 110px; }
}
@media (max-width: 920px) {
  .nc-cta-thumbs { display: none; }
}
.nc-cta-inner .section-en {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.5em;
  color: var(--color-accent-dark);
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 14px;
}
.nc-cta-title {
  font-family: var(--font-jp-serif);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.5;
  letter-spacing: 0.12em;
  margin: 16px 0 24px;
}
.nc-cta-lead {
  font-size: 14px;
  color: var(--color-text-soft);
  letter-spacing: 0.08em;
  line-height: 2;
  margin: 0 0 40px;
}
.nc-cta-btn {
  display: inline-block;
  padding: 18px 48px;
  background: var(--color-text);
  color: var(--color-bg);
  font-family: var(--font-jp-serif);
  letter-spacing: 0.18em;
  font-size: 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.nc-cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left .8s ease;
}
.nc-cta-btn:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -10px rgba(79,184,201,.4);
}
.nc-cta-btn:hover::before { left: 100%; }

/* CTA title gradient shimmer */
.nc-cta-title {
  background: linear-gradient(110deg, var(--color-text) 0%, var(--color-accent-dark) 50%, var(--color-text) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  animation: nc-ctaTitleShimmer 8s linear infinite;
}
@keyframes nc-ctaTitleShimmer {
  from { background-position: 0% 0; }
  to   { background-position: -200% 0; }
}

/* Number badge in size table: hover bounce */
.nc-st-table tbody tr:hover .nc-st-num {
  transform: scale(1.15);
  box-shadow: 0 6px 14px -4px rgba(79,184,201,.5);
  transition: transform .3s ease, box-shadow .3s ease;
}
.nc-st-num { transition: transform .3s ease, box-shadow .3s ease; }

/* Tab hover ripple */
.nc-st-tab {
  position: relative;
  overflow: hidden;
}
.nc-st-tab::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(79,184,201,.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .5s ease, height .5s ease;
  pointer-events: none;
  z-index: -1;
}
.nc-st-tab:hover::after {
  width: 200px;
  height: 200px;
}

/* Floating decorative elements for sizing section */
.nc-sizing::before,
.nc-sizing::after {
  content: '✦';
  position: absolute;
  font-size: 16px;
  color: var(--color-accent);
  opacity: 0.3;
  pointer-events: none;
  animation: nc-floatSparkle 6s ease-in-out infinite;
  z-index: 1;
}
.nc-sizing::before { top: 12%; left: 6%; animation-delay: 0s; }
.nc-sizing::after { bottom: 12%; right: 6%; animation-delay: 3s; }
@keyframes nc-floatSparkle {
  0%, 100% { transform: translateY(0) rotate(0); opacity: 0.2; }
  50%      { transform: translateY(-20px) rotate(180deg); opacity: 0.6; }
}

/* Method A image subtle shimmer */
.nc-sizing-image {
  position: relative;
}
.nc-sizing-image img {
  transition: transform .6s ease, filter .6s ease;
}
.nc-sizing-image:hover img {
  transform: scale(1.03);
  filter: brightness(1.04);
}
