/* ==========================================================================
   Nitushi design system
   --------------------------------------------------------------------------
   One visual language for the whole site:
   - Homepage hero surfaces are dark (#0a0a0a) with warm ink (#f7f5f2).
   - Interior pages invert the same palette: warm "gallery paper"
     backgrounds with near-black ink, so artwork is always the focus.
   - Georgia serif for display, system sans for UI, letterspaced
     uppercase micro-labels, hairline borders, no border radius.
   ========================================================================== */

:root {
	/* Core palette */
	--nitushi-ink: #f7f5f2;                      /* light ink on dark surfaces */
	--nitushi-ink-dim: rgba(247, 245, 242, 0.78);
	--nitushi-line: rgba(247, 245, 242, 0.28);
	--nitushi-overlay: rgba(10, 10, 10, 0.38);

	--nt-paper: #f7f5f2;                          /* interior background      */
	--nt-paper-2: #efece6;                        /* subtle alt surface       */
	--nt-dark: #0a0a0a;                           /* dark surface (footer)    */
	--nt-text: #1a1815;                           /* body ink on paper        */
	--nt-text-soft: rgba(26, 24, 21, 0.64);
	--nt-hairline: rgba(26, 24, 21, 0.16);
	--nt-hairline-strong: rgba(26, 24, 21, 0.4);
	--nt-error: #9c3b31;
	--nt-success: #3d5c46;

	/* Type */
	--nitushi-font-display: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, serif;
	--nitushi-font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

	/* Layout */
	--nitushi-header-h: 88px;
	--nitushi-gutter: clamp(20px, 5vw, 64px);
	--nt-container: 1200px;
	--nt-section-pad: clamp(64px, 9vw, 128px);

	/* Bridge into Blocksy's variable-driven components so its markup
	   inherits the Nitushi palette without per-component overrides. */
	--theme-font-family: var(--nitushi-font-ui);
	--theme-text-color: var(--nt-text);
	--theme-headings-color: var(--nt-text);
	--theme-link-initial-color: var(--nt-text);
	--theme-link-hover-color: rgba(26, 24, 21, 0.7);
	--theme-palette-color-1: #1a1815;
	--theme-palette-color-2: #3d3a35;
	--theme-palette-color-3: #1a1815;
	--theme-palette-color-4: #7d786f;
	--theme-palette-color-5: #d9d4cb;
	--theme-palette-color-6: var(--nt-paper-2);
	--theme-palette-color-7: var(--nt-paper);
	--theme-palette-color-8: #ffffff;
	--theme-border-radius: 0px;
	--theme-button-border-radius: 0px;
	--theme-button-background-initial-color: #1a1815;
	--theme-button-background-hover-color: #000000;
	--theme-button-text-initial-color: var(--nt-paper);
	--theme-button-text-hover-color: var(--nt-paper);
	--theme-form-field-border-initial-color: var(--nt-hairline-strong);
	--theme-form-field-border-focus-color: var(--nt-text);
	--theme-normal-container-max-width: var(--nt-container);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

body.nitushi-page {
	margin: 0;
	background: var(--nt-paper);
	color: var(--nt-text);
	font-family: var(--nitushi-font-ui);
	-webkit-font-smoothing: antialiased;
}

.nitushi-page h1,
.nitushi-page h2,
.nitushi-page h3 {
	font-family: var(--nitushi-font-display);
	font-weight: 700;
	letter-spacing: 0.005em;
	color: var(--nt-text);
}

.nitushi-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100;
	padding: 12px 20px;
	background: var(--nt-dark);
	color: var(--nitushi-ink);
	font-family: var(--nitushi-font-ui);
	font-size: 13px;
	letter-spacing: 0.08em;
	text-decoration: none;
}

.nitushi-skip-link:focus {
	left: 0;
}

:where(.nitushi-page, .nitushi-hero-page) :focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Header (shared skeleton; variants set the surface variables)
   -------------------------------------------------------------------------- */

.nitushi-header {
	--nt-h-fg: var(--nitushi-ink);
	--nt-h-fg-dim: var(--nitushi-ink-dim);
	--nt-h-line: var(--nitushi-line);
	color: var(--nt-h-fg);
}

.nitushi-header--overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 20;
}

.nitushi-header--solid {
	--nt-h-fg: var(--nt-text);
	--nt-h-fg-dim: var(--nt-text-soft);
	--nt-h-line: var(--nt-hairline);
	position: sticky;
	top: 0;
	z-index: 40;
	background: var(--nt-paper);
	border-bottom: 1px solid var(--nt-hairline);
}

/* Centered masthead: the logo sits in the middle of the bar, utilities
   hold the right edge, and the primary nav runs centered on its own
   line beneath (desktop). */

.nitushi-header__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: var(--nitushi-header-h);
	padding: 0 var(--nitushi-gutter);
}

@media (min-width: 768px) {
	.nitushi-header__inner {
		height: 72px;
	}
}

.nitushi-header__logo {
	font-family: var(--nitushi-font-display);
	font-size: clamp(18px, 2.4vw, 22px);
	letter-spacing: 0.18em;
	text-decoration: none;
	color: var(--nt-h-fg);
	white-space: nowrap;
}

.nitushi-header__nav {
	display: flex;
	align-items: center;
	gap: clamp(20px, 3vw, 40px);
}

.nitushi-header__nav a,
.nitushi-header__link {
	font-family: var(--nitushi-font-ui);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--nt-h-fg-dim);
	transition: color 0.2s ease;
}

.nitushi-header__nav a:hover,
.nitushi-header__nav a:focus-visible,
.nitushi-header__link:hover,
.nitushi-header__link:focus-visible {
	color: var(--nt-h-fg);
}

.nitushi-header__actions {
	display: flex;
	align-items: center;
	gap: 18px;
	position: absolute;
	right: var(--nitushi-gutter);
	top: 50%;
	transform: translateY(-50%);
}

.nitushi-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: var(--nt-h-fg);
	background: transparent;
	border: 0;
	padding: 0;
	cursor: pointer;
	text-decoration: none;
	position: relative;
}

.nitushi-cart-count {
	position: absolute;
	top: 2px;
	right: 0;
	min-width: 15px;
	height: 15px;
	padding: 0 3px;
	display: none;
	align-items: center;
	justify-content: center;
	background: var(--nt-h-fg);
	color: var(--nt-paper);
	font-family: var(--nitushi-font-ui);
	font-size: 10px;
	font-weight: 600;
	line-height: 1;
	border-radius: 999px;
}

.nitushi-header--overlay .nitushi-cart-count {
	color: var(--nt-dark);
}

.nitushi-cart-count.is-visible {
	display: inline-flex;
}

.nitushi-header__nav--desktop,
.nitushi-header__actions--desktop {
	display: none;
}

.nitushi-header__actions--mobile {
	display: flex;
}

/* Mobile search sits alone on the left edge, mirroring the bag/menu
   group on the right. */
.nitushi-header__actions--mobile-left {
	display: flex;
	right: auto;
	left: var(--nitushi-gutter);
}

.nitushi-menu-toggle {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 36px;
	height: 36px;
	background: transparent;
	border: 0;
	padding: 0;
	cursor: pointer;
}

.nitushi-menu-toggle span {
	display: block;
	width: 22px;
	height: 1px;
	background: var(--nt-h-fg);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.nitushi-menu-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.nitushi-menu-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.nitushi-menu-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

/* Fullscreen mobile menu: a dark gallery room of its own. The header
   bar (logo + close) stays visible above it; body scroll is locked
   while open. */

.nitushi-header__nav--mobile {
	position: fixed;
	inset: 0;
	z-index: 90;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0;
	padding: calc(var(--nitushi-header-h) + 16px) var(--nitushi-gutter) 48px;
	background: #0a0a0a;
}

.nitushi-header__nav--mobile[hidden] {
	display: none;
}

.nitushi-header__nav--mobile a {
	font-family: var(--nitushi-font-display);
	font-size: clamp(21px, 6vw, 34px);
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: none;
	color: var(--nitushi-ink);
	padding: 18px 0;
	border-bottom: 1px solid rgba(247, 245, 242, 0.14);
	white-space: nowrap;
}

.nitushi-header__nav--mobile a:last-child {
	border-bottom: 0;
}

/* While the menu is open, the header bar floats over the dark room:
   ink-light logo and close control on every variant. */

body.nt-menu-open {
	overflow: hidden;
}

.nt-menu-open .nitushi-header {
	--nt-h-fg: var(--nitushi-ink);
	--nt-h-fg-dim: var(--nitushi-ink-dim);
	background: transparent;
	border-bottom-color: transparent;
}

.nt-menu-open .nitushi-header__inner {
	position: relative;
	z-index: 95;
}

@media (min-width: 768px) {
	.nitushi-header__nav--desktop {
		display: flex;
		justify-content: center;
		width: 100%;
		padding: 2px var(--nitushi-gutter) 18px;
		transition: padding 0.35s ease;
	}

	.nitushi-header__actions--desktop {
		display: flex;
	}

	.nitushi-header__actions--mobile,
	.nitushi-header__actions--mobile-left {
		display: none;
	}

	.nt-scrolled .nitushi-header__nav--desktop {
		padding-bottom: 12px;
	}
}

/* --------------------------------------------------------------------------
   Search overlay
   -------------------------------------------------------------------------- */

.nitushi-search {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 30;
	background: var(--nt-paper);
	border-top: 1px solid var(--nt-hairline);
	border-bottom: 1px solid var(--nt-hairline);
	box-shadow: 0 24px 48px rgba(10, 10, 10, 0.12);
}

.nitushi-search[hidden] {
	display: none;
}

.nitushi-search__form {
	display: flex;
	align-items: center;
	gap: 16px;
	max-width: var(--nt-container);
	margin: 0 auto;
	padding: 22px var(--nitushi-gutter);
}

.nitushi-search__label {
	position: absolute;
	left: -9999px;
}

.nitushi-search__field {
	flex: 1;
	min-width: 0;
	font-family: var(--nitushi-font-display);
	font-size: clamp(18px, 3vw, 26px);
	color: var(--nt-text);
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--nt-hairline-strong);
	padding: 8px 0;
	outline: none;
}

.nitushi-search__field:focus {
	border-bottom-color: var(--nt-text);
}

.nitushi-search__submit {
	font-family: var(--nitushi-font-ui);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.16em;
	color: var(--nt-paper);
	background: var(--nt-text);
	border: 1px solid var(--nt-text);
	padding: 12px 22px;
	cursor: pointer;
}

.nitushi-search__close {
	font-size: 26px;
	line-height: 1;
	color: var(--nt-text-soft);
	background: transparent;
	border: 0;
	padding: 4px 8px;
	cursor: pointer;
}

.nitushi-search__close:hover {
	color: var(--nt-text);
}

/* --------------------------------------------------------------------------
   Buttons — shared component + WooCommerce/Blocksy mapping
   -------------------------------------------------------------------------- */

.nitushi-btn,
.nitushi-page .wp-element-button,
.nitushi-page button[type="submit"],
.nitushi-page .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-family: var(--nitushi-font-ui);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--nt-paper);
	background: var(--nt-text);
	border: 1px solid var(--nt-text);
	border-radius: 0;
	padding: 16px 30px;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.nitushi-btn:hover,
.nitushi-btn:focus-visible,
.nitushi-page .wp-element-button:hover,
.nitushi-page button[type="submit"]:hover,
.nitushi-page .button:hover {
	background: #000;
	color: var(--nt-paper);
}

.nitushi-btn--ghost {
	color: var(--nt-text);
	background: transparent;
	border-color: var(--nt-hairline-strong);
}

.nitushi-btn--ghost:hover,
.nitushi-btn--ghost:focus-visible {
	background: var(--nt-text);
	color: var(--nt-paper);
	border-color: var(--nt-text);
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.nitushi-page input[type="text"],
.nitushi-page input[type="email"],
.nitushi-page input[type="search"],
.nitushi-page input[type="tel"],
.nitushi-page input[type="password"],
.nitushi-page input[type="number"],
.nitushi-page input[type="url"],
.nitushi-page select,
.nitushi-page textarea {
	font-family: var(--nitushi-font-ui);
	font-size: 15px;
	color: var(--nt-text);
	background: #fff;
	border: 1px solid var(--nt-hairline-strong);
	border-radius: 0;
	padding: 13px 16px;
	width: 100%;
	box-sizing: border-box;
}

/* Blocksy pins selects to a fixed --theme-form-field-height (40px),
   which clips 15px text under our 13px padding — let them size to
   their content instead. */
.nitushi-page select {
	height: auto;
	min-height: 48px;
	line-height: 1.4;
}

.nitushi-page input:focus,
.nitushi-page select:focus,
.nitushi-page textarea:focus {
	border-color: var(--nt-text);
	outline: none;
}

.nitushi-page label {
	font-family: var(--nitushi-font-ui);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--nt-text-soft);
}

/* --------------------------------------------------------------------------
   Shared section primitives (used by page content + homepage sections)
   -------------------------------------------------------------------------- */

.nitushi-container {
	max-width: var(--nt-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--nitushi-gutter);
	padding-right: var(--nitushi-gutter);
}

.nitushi-section {
	padding-top: var(--nt-section-pad);
	padding-bottom: var(--nt-section-pad);
}

.nitushi-eyebrow {
	margin: 0 0 18px;
	font-family: var(--nitushi-font-ui);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--nt-text-soft);
}

.nitushi-section__heading {
	margin: 0 0 24px;
	font-size: clamp(28px, 3.4vw, 44px);
	line-height: 1.15;
}

/* --------------------------------------------------------------------------
   Content prose (pages, posts)
   -------------------------------------------------------------------------- */

.nitushi-page .entry-content {
	font-size: 16px;
	line-height: 1.75;
	color: var(--nt-text);
}

.nitushi-page .entry-content > p,
.nitushi-page .entry-content > ul,
.nitushi-page .entry-content > ol {
	max-width: 72ch;
}

.nitushi-page .entry-content h2 {
	margin-top: 2.2em;
	font-size: clamp(24px, 2.6vw, 32px);
}

.nitushi-page .entry-content h3 {
	margin-top: 1.8em;
	font-size: clamp(19px, 2vw, 23px);
}

.nitushi-page .entry-content a {
	color: var(--nt-text);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
}

.nitushi-page .entry-content a:hover {
	color: var(--nt-text-soft);
}

.nitushi-page .entry-content hr {
	border: 0;
	border-top: 1px solid var(--nt-hairline);
	margin: 3em 0;
}

/* --------------------------------------------------------------------------
   Page titles & breadcrumbs (Blocksy hero-section)
   -------------------------------------------------------------------------- */

.nitushi-page .hero-section .page-title {
	font-family: var(--nitushi-font-display);
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.12;
	letter-spacing: 0.005em;
}

.nitushi-page .ct-breadcrumbs {
	font-family: var(--nitushi-font-ui);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--nt-text-soft);
}

.nitushi-page .ct-breadcrumbs a {
	color: var(--nt-text-soft);
	text-decoration: none;
	transition: color 0.2s ease;
}

.nitushi-page .ct-breadcrumbs a:hover {
	color: var(--nt-text);
}

/* --------------------------------------------------------------------------
   Blog cards (Journal archive)
   -------------------------------------------------------------------------- */

.nitushi-page .entries .entry-card {
	background: #fff;
	border: 1px solid var(--nt-hairline);
	border-radius: 0;
	box-shadow: none;
	padding: clamp(24px, 3.5vw, 40px);
}

.nitushi-page .entries .entry-card .entry-title {
	font-family: var(--nitushi-font-display);
	font-size: clamp(20px, 2.4vw, 26px);
	line-height: 1.3;
}

.nitushi-page .entries .entry-card .entry-title a {
	color: var(--nt-text);
	text-decoration: none;
}

.nitushi-page .entries .entry-card .entry-title a:hover {
	color: var(--nt-text-soft);
}

.nitushi-page .entries .entry-card .entry-excerpt {
	font-size: 15px;
	line-height: 1.7;
	color: var(--nt-text-soft);
}

.nitushi-page .entry-meta,
.nitushi-page .entry-meta a,
.nitushi-page .entry-meta li {
	font-family: var(--nitushi-font-ui);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--nt-text-soft);
}

.nitushi-page .entry-meta a {
	text-decoration: none;
}

.nitushi-page .entry-meta a:hover {
	color: var(--nt-text);
}

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

.nitushi-footer {
	background: var(--nt-dark);
	color: var(--nitushi-ink-dim);
	font-family: var(--nitushi-font-ui);
}

.nitushi-footer__inner {
	display: grid;
	gap: clamp(40px, 6vw, 80px);
	max-width: var(--nt-container);
	margin: 0 auto;
	padding: clamp(56px, 8vw, 96px) var(--nitushi-gutter) clamp(40px, 6vw, 64px);
}

.nitushi-footer__logo {
	font-family: var(--nitushi-font-display);
	font-size: 22px;
	letter-spacing: 0.18em;
	color: var(--nitushi-ink);
	text-decoration: none;
}

.nitushi-footer__tagline {
	margin: 16px 0 0;
	max-width: 34ch;
	font-size: 13.5px;
	line-height: 1.7;
	color: var(--nitushi-ink-dim);
}

.nitushi-footer__columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 36px var(--nitushi-gutter);
}

.nitushi-footer__column {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Extra .nitushi-footer qualifier: outranks the interior-page
   `.nitushi-page h2` heading rule (dark serif) on this dark surface. */
.nitushi-footer .nitushi-footer__heading {
	margin: 0 0 6px;
	font-family: var(--nitushi-font-ui);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--nitushi-ink);
}

.nitushi-footer__link {
	font-size: 13.5px;
	color: var(--nitushi-ink-dim);
	text-decoration: none;
	transition: color 0.2s ease;
}

.nitushi-footer__link:hover,
.nitushi-footer__link:focus-visible {
	color: var(--nitushi-ink);
}

.nitushi-footer__legalbar {
	border-top: 1px solid var(--nitushi-line);
}

.nitushi-footer__copy {
	max-width: var(--nt-container);
	margin: 0 auto;
	padding: 22px var(--nitushi-gutter);
	font-size: 12px;
	letter-spacing: 0.06em;
	color: rgba(247, 245, 242, 0.5);
}

@media (min-width: 900px) {
	.nitushi-footer__inner {
		grid-template-columns: minmax(220px, 1fr) 2fr;
	}

	.nitushi-footer__columns {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* --------------------------------------------------------------------------
   Motion vocabulary
   --------------------------------------------------------------------------
   One shared language: slow rise-and-settle reveals, quieter and faster
   for body copy, near-instant for metadata. Everything is armed only by
   the `nt-motion` root class, which motion.js adds exclusively when
   IntersectionObserver exists and reduced motion is NOT requested — so
   content is never hidden for anyone else.
   -------------------------------------------------------------------------- */

.nt-motion [data-reveal] {
	opacity: 0;
	transform: translateY(26px);
	transition:
		opacity 0.9s ease,
		transform 1s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--rv-delay, 0s);
}

.nt-motion [data-reveal="soft"] {
	transform: translateY(12px);
	transition-duration: 0.6s, 0.7s;
}

.nt-motion [data-reveal="fade"] {
	transform: none;
	transition-duration: 1.2s;
}

.nt-motion [data-reveal].is-inview {
	opacity: 1;
	transform: none;
}

/* Display headings: word-by-word rise with a blur settling sharp. */

.nt-motion [data-reveal="words"] {
	opacity: 1;
	transform: none;
}

.nt-motion [data-reveal="words"] .nt-word {
	display: inline-block;
	opacity: 0;
	transform: translateY(0.45em);
	filter: blur(6px);
	transition:
		opacity 0.8s ease,
		transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.9s ease;
	transition-delay: var(--rv-delay, 0s);
}

.nt-motion [data-reveal="words"].is-inview .nt-word {
	opacity: 1;
	transform: none;
	filter: blur(0);
}

/* Header scroll state: the bar quietly compresses once the visitor is
   inside the page; the homepage overlay bar pins and gains a dark
   frosted surface so navigation never disappears mid-exhibition. */

.nitushi-header--solid .nitushi-header__inner {
	transition: height 0.35s ease;
}

.nt-scrolled .nitushi-header--solid .nitushi-header__inner {
	height: 64px;
}

.nitushi-header--overlay {
	transition: background-color 0.4s ease;
}

.nt-scrolled .nitushi-header--overlay {
	position: fixed;
	background: rgba(10, 10, 10, 0.78);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.nt-scrolled .nitushi-header--overlay .nitushi-header__inner {
	height: 64px;
}

/* Underline-draw microinteraction for editorial links and nav. */

.nitushi-header__nav--desktop a {
	background-image: linear-gradient(currentColor, currentColor);
	background-repeat: no-repeat;
	background-position: 0 100%;
	background-size: 0% 1px;
	transition: color 0.2s ease, background-size 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	padding-bottom: 4px;
}

.nitushi-header__nav--desktop a:hover,
.nitushi-header__nav--desktop a:focus-visible {
	background-size: 100% 1px;
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
	.nitushi-header__nav a,
	.nitushi-header__link,
	.nitushi-footer__link,
	.nitushi-btn,
	.nitushi-menu-toggle span {
		transition: none;
	}
}
